]>
git.saurik.com Git - redis.git/blob - src/ziplist.c
1 /* The ziplist is a specially encoded dually linked list that is designed
2 * to be very memory efficient. It stores both strings and integer values,
3 * where integers are encoded as actual integers instead of a series of
4 * characters. It allows push and pop operations on either side of the list
5 * in O(1) time. However, because every operation requires a reallocation of
6 * the memory used by the ziplist, the actual complexity is related to the
7 * amount of memory used by the ziplist.
9 * ----------------------------------------------------------------------------
11 * ZIPLIST OVERALL LAYOUT:
12 * The general layout of the ziplist is as follows:
13 * <zlbytes><zltail><zllen><entry><entry><zlend>
15 * <zlbytes> is an unsigned integer to hold the number of bytes that the
16 * ziplist occupies. This value needs to be stored to be able to resize the
17 * entire structure without the need to traverse it first.
19 * <zltail> is the offset to the last entry in the list. This allows a pop
20 * operation on the far side of the list without the need for full traversal.
22 * <zllen> is the number of entries.When this value is larger than 2**16-2,
23 * we need to traverse the entire list to know how many items it holds.
25 * <zlend> is a single byte special value, equal to 255, which indicates the
29 * Every entry in the ziplist is prefixed by a header that contains two pieces
30 * of information. First, the length of the previous entry is stored to be
31 * able to traverse the list from back to front. Second, the encoding with an
32 * optional string length of the entry itself is stored.
34 * The length of the previous entry is encoded in the following way:
35 * If this length is smaller than 254 bytes, it will only consume a single
36 * byte that takes the length as value. When the length is greater than or
37 * equal to 254, it will consume 5 bytes. The first byte is set to 254 to
38 * indicate a larger value is following. The remaining 4 bytes take the
39 * length of the previous entry as value.
41 * The other header field of the entry itself depends on the contents of the
42 * entry. When the entry is a string, the first 2 bits of this header will hold
43 * the type of encoding used to store the length of the string, followed by the
44 * actual length of the string. When the entry is an integer the first 2 bits
45 * are both set to 1. The following 2 bits are used to specify what kind of
46 * integer will be stored after this header. An overview of the different
47 * types and encodings is as follows:
50 * String value with length less than or equal to 63 bytes (6 bits).
51 * |01pppppp|qqqqqqqq| - 2 bytes
52 * String value with length less than or equal to 16383 bytes (14 bits).
53 * |10______|qqqqqqqq|rrrrrrrr|ssssssss|tttttttt| - 5 bytes
54 * String value with length greater than or equal to 16384 bytes.
56 * Integer encoded as int16_t (2 bytes).
58 * Integer encoded as int32_t (4 bytes).
60 * Integer encoded as int64_t (8 bytes).
72 int ll2string(char *s
, size_t len
, long long value
);
75 #define ZIP_BIGLEN 254
77 /* Different encoding/length possibilities */
78 #define ZIP_STR_06B (0 << 6)
79 #define ZIP_STR_14B (1 << 6)
80 #define ZIP_STR_32B (2 << 6)
81 #define ZIP_INT_16B (0xc0 | 0<<4)
82 #define ZIP_INT_32B (0xc0 | 1<<4)
83 #define ZIP_INT_64B (0xc0 | 2<<4)
85 /* Macro's to determine type */
86 #define ZIP_IS_STR(enc) (((enc) & 0xc0) < 0xc0)
87 #define ZIP_IS_INT(enc) (!ZIP_IS_STR(enc) && ((enc) & 0x30) < 0x30)
90 #define ZIPLIST_BYTES(zl) (*((uint32_t*)(zl)))
91 #define ZIPLIST_TAIL_OFFSET(zl) (*((uint32_t*)((zl)+sizeof(uint32_t))))
92 #define ZIPLIST_LENGTH(zl) (*((uint16_t*)((zl)+sizeof(uint32_t)*2)))
93 #define ZIPLIST_HEADER_SIZE (sizeof(uint32_t)*2+sizeof(uint16_t))
94 #define ZIPLIST_ENTRY_HEAD(zl) ((zl)+ZIPLIST_HEADER_SIZE)
95 #define ZIPLIST_ENTRY_TAIL(zl) ((zl)+ZIPLIST_TAIL_OFFSET(zl))
96 #define ZIPLIST_ENTRY_END(zl) ((zl)+ZIPLIST_BYTES(zl)-1)
98 /* We know a positive increment can only be 1 because entries can only be
99 * pushed one at a time. */
100 #define ZIPLIST_INCR_LENGTH(zl,incr) { \
101 if (ZIPLIST_LENGTH(zl) < UINT16_MAX) ZIPLIST_LENGTH(zl)+=incr; }
103 typedef struct zlentry
{
104 unsigned int prevrawlensize
, prevrawlen
;
105 unsigned int lensize
, len
;
106 unsigned int headersize
;
107 unsigned char encoding
;
111 /* Return the encoding pointer to by 'p'. */
112 static unsigned int zipEntryEncoding(unsigned char *p
) {
113 /* String encoding: 2 MSBs */
114 unsigned char b
= p
[0] & 0xc0;
118 /* Integer encoding: 4 MSBs */
124 /* Return bytes needed to store integer encoded by 'encoding' */
125 static unsigned int zipIntSize(unsigned char encoding
) {
127 case ZIP_INT_16B
: return sizeof(int16_t);
128 case ZIP_INT_32B
: return sizeof(int32_t);
129 case ZIP_INT_64B
: return sizeof(int64_t);
134 /* Decode the encoded length pointed by 'p'. If a pointer to 'lensize' is
135 * provided, it is set to the number of bytes required to encode the length. */
136 static unsigned int zipDecodeLength(unsigned char *p
, unsigned int *lensize
) {
137 unsigned char encoding
= zipEntryEncoding(p
);
140 if (ZIP_IS_STR(encoding
)) {
144 if (lensize
) *lensize
= 1;
147 len
= ((p
[0] & 0x3f) << 8) | p
[1];
148 if (lensize
) *lensize
= 2;
151 len
= (p
[1] << 24) | (p
[2] << 16) | (p
[3] << 8) | p
[4];
152 if (lensize
) *lensize
= 5;
158 len
= zipIntSize(encoding
);
159 if (lensize
) *lensize
= 1;
164 /* Encode the length 'l' writing it in 'p'. If p is NULL it just returns
165 * the amount of bytes required to encode such a length. */
166 static unsigned int zipEncodeLength(unsigned char *p
, unsigned char encoding
, unsigned int rawlen
) {
167 unsigned char len
= 1, buf
[5];
169 if (ZIP_IS_STR(encoding
)) {
170 /* Although encoding is given it may not be set for strings,
171 * so we determine it here using the raw length. */
172 if (rawlen
<= 0x3f) {
174 buf
[0] = ZIP_STR_06B
| rawlen
;
175 } else if (rawlen
<= 0x3fff) {
178 buf
[0] = ZIP_STR_14B
| ((rawlen
>> 8) & 0x3f);
179 buf
[1] = rawlen
& 0xff;
183 buf
[0] = ZIP_STR_32B
;
184 buf
[1] = (rawlen
>> 24) & 0xff;
185 buf
[2] = (rawlen
>> 16) & 0xff;
186 buf
[3] = (rawlen
>> 8) & 0xff;
187 buf
[4] = rawlen
& 0xff;
190 /* Implies integer encoding, so length is always 1. */
195 /* Store this length at p */
200 /* Decode the length of the previous element stored at "p". */
201 static unsigned int zipPrevDecodeLength(unsigned char *p
, unsigned int *lensize
) {
202 unsigned int len
= *p
;
203 if (len
< ZIP_BIGLEN
) {
204 if (lensize
) *lensize
= 1;
206 if (lensize
) *lensize
= 1+sizeof(len
);
207 memcpy(&len
,p
+1,sizeof(len
));
212 /* Encode the length of the previous entry and write it to "p". Return the
213 * number of bytes needed to encode this length if "p" is NULL. */
214 static unsigned int zipPrevEncodeLength(unsigned char *p
, unsigned int len
) {
216 return (len
< ZIP_BIGLEN
) ? 1 : sizeof(len
)+1;
218 if (len
< ZIP_BIGLEN
) {
223 memcpy(p
+1,&len
,sizeof(len
));
224 return 1+sizeof(len
);
229 /* Encode the length of the previous entry and write it to "p". This only
230 * uses the larger encoding (required in __ziplistCascadeUpdate). */
231 static void zipPrevEncodeLengthForceLarge(unsigned char *p
, unsigned int len
) {
232 if (p
== NULL
) return;
234 memcpy(p
+1,&len
,sizeof(len
));
237 /* Return the difference in number of bytes needed to store the new length
238 * "len" on the entry pointed to by "p". */
239 static int zipPrevLenByteDiff(unsigned char *p
, unsigned int len
) {
240 unsigned int prevlensize
;
241 zipPrevDecodeLength(p
,&prevlensize
);
242 return zipPrevEncodeLength(NULL
,len
)-prevlensize
;
245 /* Check if string pointed to by 'entry' can be encoded as an integer.
246 * Stores the integer value in 'v' and its encoding in 'encoding'. */
247 static int zipTryEncoding(unsigned char *entry
, unsigned int entrylen
, long long *v
, unsigned char *encoding
) {
252 if (entrylen
>= 32 || entrylen
== 0) return 0;
253 if (entry
[0] == '-' || (entry
[0] >= '0' && entry
[0] <= '9')) {
256 /* Perform a back-and-forth conversion to make sure that
257 * the string turned into an integer is not losing any info. */
258 memcpy(buf
,entry
,entrylen
);
259 buf
[entrylen
] = '\0';
260 value
= strtoll(buf
,&eptr
,10);
261 if (eptr
[0] != '\0') return 0;
262 slen
= ll2string(buf
,32,value
);
263 if (entrylen
!= (unsigned)slen
|| memcmp(buf
,entry
,slen
)) return 0;
265 /* Great, the string can be encoded. Check what's the smallest
266 * of our encoding types that can hold this value. */
267 if (value
>= INT16_MIN
&& value
<= INT16_MAX
) {
268 *encoding
= ZIP_INT_16B
;
269 } else if (value
>= INT32_MIN
&& value
<= INT32_MAX
) {
270 *encoding
= ZIP_INT_32B
;
272 *encoding
= ZIP_INT_64B
;
280 /* Store integer 'value' at 'p', encoded as 'encoding' */
281 static void zipSaveInteger(unsigned char *p
, int64_t value
, unsigned char encoding
) {
285 if (encoding
== ZIP_INT_16B
) {
287 memcpy(p
,&i16
,sizeof(i16
));
288 } else if (encoding
== ZIP_INT_32B
) {
290 memcpy(p
,&i32
,sizeof(i32
));
291 } else if (encoding
== ZIP_INT_64B
) {
293 memcpy(p
,&i64
,sizeof(i64
));
299 /* Read integer encoded as 'encoding' from 'p' */
300 static int64_t zipLoadInteger(unsigned char *p
, unsigned char encoding
) {
304 if (encoding
== ZIP_INT_16B
) {
305 memcpy(&i16
,p
,sizeof(i16
));
307 } else if (encoding
== ZIP_INT_32B
) {
308 memcpy(&i32
,p
,sizeof(i32
));
310 } else if (encoding
== ZIP_INT_64B
) {
311 memcpy(&i64
,p
,sizeof(i64
));
319 /* Return a struct with all information about an entry. */
320 static zlentry
zipEntry(unsigned char *p
) {
322 e
.prevrawlen
= zipPrevDecodeLength(p
,&e
.prevrawlensize
);
323 e
.len
= zipDecodeLength(p
+e
.prevrawlensize
,&e
.lensize
);
324 e
.headersize
= e
.prevrawlensize
+e
.lensize
;
325 e
.encoding
= zipEntryEncoding(p
+e
.prevrawlensize
);
330 /* Return the total number of bytes used by the entry at "p". */
331 static unsigned int zipRawEntryLength(unsigned char *p
) {
332 zlentry e
= zipEntry(p
);
333 return e
.headersize
+ e
.len
;
336 /* Create a new empty ziplist. */
337 unsigned char *ziplistNew(void) {
338 unsigned int bytes
= ZIPLIST_HEADER_SIZE
+1;
339 unsigned char *zl
= zmalloc(bytes
);
340 ZIPLIST_BYTES(zl
) = bytes
;
341 ZIPLIST_TAIL_OFFSET(zl
) = ZIPLIST_HEADER_SIZE
;
342 ZIPLIST_LENGTH(zl
) = 0;
343 zl
[bytes
-1] = ZIP_END
;
347 /* Resize the ziplist. */
348 static unsigned char *ziplistResize(unsigned char *zl
, unsigned int len
) {
349 zl
= zrealloc(zl
,len
);
350 ZIPLIST_BYTES(zl
) = len
;
355 /* When an entry is inserted, we need to set the prevlen field of the next
356 * entry to equal the length of the inserted entry. It can occur that this
357 * length cannot be encoded in 1 byte and the next entry needs to be grow
358 * a bit larger to hold the 5-byte encoded prevlen. This can be done for free,
359 * because this only happens when an entry is already being inserted (which
360 * causes a realloc and memmove). However, encoding the prevlen may require
361 * that this entry is grown as well. This effect may cascade throughout
362 * the ziplist when there are consecutive entries with a size close to
363 * ZIP_BIGLEN, so we need to check that the prevlen can be encoded in every
366 * Note that this effect can also happen in reverse, where the bytes required
367 * to encode the prevlen field can shrink. This effect is deliberately ignored,
368 * because it can cause a "flapping" effect where a chain prevlen fields is
369 * first grown and then shrunk again after consecutive inserts. Rather, the
370 * field is allowed to stay larger than necessary, because a large prevlen
371 * field implies the ziplist is holding large entries anyway.
373 * The pointer "p" points to the first entry that does NOT need to be
374 * updated, i.e. consecutive fields MAY need an update. */
375 static unsigned char *__ziplistCascadeUpdate(unsigned char *zl
, unsigned char *p
) {
376 unsigned int curlen
= ZIPLIST_BYTES(zl
), rawlen
, rawlensize
;
377 unsigned int offset
, noffset
, extra
;
381 while (p
[0] != ZIP_END
) {
383 rawlen
= cur
.headersize
+ cur
.len
;
384 rawlensize
= zipPrevEncodeLength(NULL
,rawlen
);
386 /* Abort if there is no next entry. */
387 if (p
[rawlen
] == ZIP_END
) break;
388 next
= zipEntry(p
+rawlen
);
390 /* Abort when "prevlen" has not changed. */
391 if (next
.prevrawlen
== rawlen
) break;
393 if (next
.prevrawlensize
< rawlensize
) {
394 /* The "prevlen" field of "next" needs more bytes to hold
395 * the raw length of "cur". */
397 extra
= rawlensize
-next
.prevrawlensize
;
398 zl
= ziplistResize(zl
,curlen
+extra
);
399 ZIPLIST_TAIL_OFFSET(zl
) += extra
;
402 /* Move the tail to the back. */
405 memmove(np
+rawlensize
,
406 np
+next
.prevrawlensize
,
407 curlen
-noffset
-next
.prevrawlensize
-1);
408 zipPrevEncodeLength(np
,rawlen
);
410 /* Advance the cursor */
414 if (next
.prevrawlensize
> rawlensize
) {
415 /* This would result in shrinking, which we want to avoid.
416 * So, set "rawlen" in the available bytes. */
417 zipPrevEncodeLengthForceLarge(p
+rawlen
,rawlen
);
419 zipPrevEncodeLength(p
+rawlen
,rawlen
);
422 /* Stop here, as the raw length of "next" has not changed. */
429 /* Delete "num" entries, starting at "p". Returns pointer to the ziplist. */
430 static unsigned char *__ziplistDelete(unsigned char *zl
, unsigned char *p
, unsigned int num
) {
431 unsigned int i
, totlen
, deleted
= 0;
432 int offset
, nextdiff
= 0;
436 for (i
= 0; p
[0] != ZIP_END
&& i
< num
; i
++) {
437 p
+= zipRawEntryLength(p
);
443 if (p
[0] != ZIP_END
) {
444 /* Tricky: storing the prevlen in this entry might reduce or
445 * increase the number of bytes needed, compared to the current
446 * prevlen. Note that we can always store this length because
447 * it was previously stored by an entry that is being deleted. */
448 nextdiff
= zipPrevLenByteDiff(p
,first
.prevrawlen
);
449 zipPrevEncodeLength(p
-nextdiff
,first
.prevrawlen
);
451 /* Update offset for tail */
452 ZIPLIST_TAIL_OFFSET(zl
) -= totlen
;
454 /* When the tail contains more than one entry, we need to take
455 * "nextdiff" in account as well. Otherwise, a change in the
456 * size of prevlen doesn't have an effect on the *tail* offset. */
458 if (p
[tail
.headersize
+tail
.len
] != ZIP_END
)
459 ZIPLIST_TAIL_OFFSET(zl
) += nextdiff
;
461 /* Move tail to the front of the ziplist */
462 memmove(first
.p
,p
-nextdiff
,ZIPLIST_BYTES(zl
)-(p
-zl
)-1+nextdiff
);
464 /* The entire tail was deleted. No need to move memory. */
465 ZIPLIST_TAIL_OFFSET(zl
) = (first
.p
-zl
)-first
.prevrawlen
;
468 /* Resize and update length */
470 zl
= ziplistResize(zl
, ZIPLIST_BYTES(zl
)-totlen
+nextdiff
);
471 ZIPLIST_INCR_LENGTH(zl
,-deleted
);
474 /* When nextdiff != 0, the raw length of the next entry has changed, so
475 * we need to cascade the update throughout the ziplist */
477 zl
= __ziplistCascadeUpdate(zl
,p
);
482 /* Insert item at "p". */
483 static unsigned char *__ziplistInsert(unsigned char *zl
, unsigned char *p
, unsigned char *s
, unsigned int slen
) {
484 unsigned int curlen
= ZIPLIST_BYTES(zl
), reqlen
, prevlen
= 0;
485 unsigned int offset
, nextdiff
= 0;
486 unsigned char encoding
= 0;
490 /* Find out prevlen for the entry that is inserted. */
491 if (p
[0] != ZIP_END
) {
493 prevlen
= entry
.prevrawlen
;
495 unsigned char *ptail
= ZIPLIST_ENTRY_TAIL(zl
);
496 if (ptail
[0] != ZIP_END
) {
497 prevlen
= zipRawEntryLength(ptail
);
501 /* See if the entry can be encoded */
502 if (zipTryEncoding(s
,slen
,&value
,&encoding
)) {
503 /* 'encoding' is set to the appropriate integer encoding */
504 reqlen
= zipIntSize(encoding
);
506 /* 'encoding' is untouched, however zipEncodeLength will use the
507 * string length to figure out how to encode it. */
510 /* We need space for both the length of the previous entry and
511 * the length of the payload. */
512 reqlen
+= zipPrevEncodeLength(NULL
,prevlen
);
513 reqlen
+= zipEncodeLength(NULL
,encoding
,slen
);
515 /* When the insert position is not equal to the tail, we need to
516 * make sure that the next entry can hold this entry's length in
517 * its prevlen field. */
518 nextdiff
= (p
[0] != ZIP_END
) ? zipPrevLenByteDiff(p
,reqlen
) : 0;
520 /* Store offset because a realloc may change the address of zl. */
522 zl
= ziplistResize(zl
,curlen
+reqlen
+nextdiff
);
525 /* Apply memory move when necessary and update tail offset. */
526 if (p
[0] != ZIP_END
) {
527 /* Subtract one because of the ZIP_END bytes */
528 memmove(p
+reqlen
,p
-nextdiff
,curlen
-offset
-1+nextdiff
);
530 /* Encode this entry's raw length in the next entry. */
531 zipPrevEncodeLength(p
+reqlen
,reqlen
);
533 /* Update offset for tail */
534 ZIPLIST_TAIL_OFFSET(zl
) += reqlen
;
536 /* When the tail contains more than one entry, we need to take
537 * "nextdiff" in account as well. Otherwise, a change in the
538 * size of prevlen doesn't have an effect on the *tail* offset. */
539 tail
= zipEntry(p
+reqlen
);
540 if (p
[reqlen
+tail
.headersize
+tail
.len
] != ZIP_END
)
541 ZIPLIST_TAIL_OFFSET(zl
) += nextdiff
;
543 /* This element will be the new tail. */
544 ZIPLIST_TAIL_OFFSET(zl
) = p
-zl
;
547 /* When nextdiff != 0, the raw length of the next entry has changed, so
548 * we need to cascade the update throughout the ziplist */
551 zl
= __ziplistCascadeUpdate(zl
,p
+reqlen
);
555 /* Write the entry */
556 p
+= zipPrevEncodeLength(p
,prevlen
);
557 p
+= zipEncodeLength(p
,encoding
,slen
);
558 if (ZIP_IS_STR(encoding
)) {
561 zipSaveInteger(p
,value
,encoding
);
563 ZIPLIST_INCR_LENGTH(zl
,1);
567 unsigned char *ziplistPush(unsigned char *zl
, unsigned char *s
, unsigned int slen
, int where
) {
569 p
= (where
== ZIPLIST_HEAD
) ? ZIPLIST_ENTRY_HEAD(zl
) : ZIPLIST_ENTRY_END(zl
);
570 return __ziplistInsert(zl
,p
,s
,slen
);
573 /* Returns an offset to use for iterating with ziplistNext. When the given
574 * index is negative, the list is traversed back to front. When the list
575 * doesn't contain an element at the provided index, NULL is returned. */
576 unsigned char *ziplistIndex(unsigned char *zl
, int index
) {
581 p
= ZIPLIST_ENTRY_TAIL(zl
);
582 if (p
[0] != ZIP_END
) {
584 while (entry
.prevrawlen
> 0 && index
--) {
585 p
-= entry
.prevrawlen
;
590 p
= ZIPLIST_ENTRY_HEAD(zl
);
591 while (p
[0] != ZIP_END
&& index
--) {
592 p
+= zipRawEntryLength(p
);
595 return (p
[0] == ZIP_END
|| index
> 0) ? NULL
: p
;
598 /* Return pointer to next entry in ziplist.
600 * zl is the pointer to the ziplist
601 * p is the pointer to the current element
603 * The element after 'p' is returned, otherwise NULL if we are at the end. */
604 unsigned char *ziplistNext(unsigned char *zl
, unsigned char *p
) {
607 /* "p" could be equal to ZIP_END, caused by ziplistDelete,
608 * and we should return NULL. Otherwise, we should return NULL
609 * when the *next* element is ZIP_END (there is no next entry). */
610 if (p
[0] == ZIP_END
) {
613 p
= p
+zipRawEntryLength(p
);
614 return (p
[0] == ZIP_END
) ? NULL
: p
;
618 /* Return pointer to previous entry in ziplist. */
619 unsigned char *ziplistPrev(unsigned char *zl
, unsigned char *p
) {
622 /* Iterating backwards from ZIP_END should return the tail. When "p" is
623 * equal to the first element of the list, we're already at the head,
624 * and should return NULL. */
625 if (p
[0] == ZIP_END
) {
626 p
= ZIPLIST_ENTRY_TAIL(zl
);
627 return (p
[0] == ZIP_END
) ? NULL
: p
;
628 } else if (p
== ZIPLIST_ENTRY_HEAD(zl
)) {
632 assert(entry
.prevrawlen
> 0);
633 return p
-entry
.prevrawlen
;
637 /* Get entry pointer to by 'p' and store in either 'e' or 'v' depending
638 * on the encoding of the entry. 'e' is always set to NULL to be able
639 * to find out whether the string pointer or the integer value was set.
640 * Return 0 if 'p' points to the end of the zipmap, 1 otherwise. */
641 unsigned int ziplistGet(unsigned char *p
, unsigned char **sstr
, unsigned int *slen
, long long *sval
) {
643 if (p
== NULL
|| p
[0] == ZIP_END
) return 0;
644 if (sstr
) *sstr
= NULL
;
647 if (ZIP_IS_STR(entry
.encoding
)) {
650 *sstr
= p
+entry
.headersize
;
654 *sval
= zipLoadInteger(p
+entry
.headersize
,entry
.encoding
);
660 /* Insert an entry at "p". */
661 unsigned char *ziplistInsert(unsigned char *zl
, unsigned char *p
, unsigned char *s
, unsigned int slen
) {
662 return __ziplistInsert(zl
,p
,s
,slen
);
665 /* Delete a single entry from the ziplist, pointed to by *p.
666 * Also update *p in place, to be able to iterate over the
667 * ziplist, while deleting entries. */
668 unsigned char *ziplistDelete(unsigned char *zl
, unsigned char **p
) {
669 unsigned int offset
= *p
-zl
;
670 zl
= __ziplistDelete(zl
,*p
,1);
672 /* Store pointer to current element in p, because ziplistDelete will
673 * do a realloc which might result in a different "zl"-pointer.
674 * When the delete direction is back to front, we might delete the last
675 * entry and end up with "p" pointing to ZIP_END, so check this. */
680 /* Delete a range of entries from the ziplist. */
681 unsigned char *ziplistDeleteRange(unsigned char *zl
, unsigned int index
, unsigned int num
) {
682 unsigned char *p
= ziplistIndex(zl
,index
);
683 return (p
== NULL
) ? zl
: __ziplistDelete(zl
,p
,num
);
686 /* Compare entry pointer to by 'p' with 'entry'. Return 1 if equal. */
687 unsigned int ziplistCompare(unsigned char *p
, unsigned char *sstr
, unsigned int slen
) {
689 unsigned char sencoding
;
690 long long zval
, sval
;
691 if (p
[0] == ZIP_END
) return 0;
694 if (ZIP_IS_STR(entry
.encoding
)) {
696 if (entry
.len
== slen
) {
697 return memcmp(p
+entry
.headersize
,sstr
,slen
) == 0;
702 /* Try to compare encoded values */
703 if (zipTryEncoding(sstr
,slen
,&sval
,&sencoding
)) {
704 if (entry
.encoding
== sencoding
) {
705 zval
= zipLoadInteger(p
+entry
.headersize
,entry
.encoding
);
713 /* Return length of ziplist. */
714 unsigned int ziplistLen(unsigned char *zl
) {
715 unsigned int len
= 0;
716 if (ZIPLIST_LENGTH(zl
) < UINT16_MAX
) {
717 len
= ZIPLIST_LENGTH(zl
);
719 unsigned char *p
= zl
+ZIPLIST_HEADER_SIZE
;
720 while (*p
!= ZIP_END
) {
721 p
+= zipRawEntryLength(p
);
725 /* Re-store length if small enough */
726 if (len
< UINT16_MAX
) ZIPLIST_LENGTH(zl
) = len
;
731 /* Return size in bytes of ziplist. */
732 unsigned int ziplistSize(unsigned char *zl
) {
733 return ZIPLIST_BYTES(zl
);
736 void ziplistRepr(unsigned char *zl
) {
744 "{tail offset %u}\n",
747 ZIPLIST_TAIL_OFFSET(zl
));
748 p
= ZIPLIST_ENTRY_HEAD(zl
);
749 while(*p
!= ZIP_END
) {
764 (unsigned long) (p
-zl
),
765 entry
.headersize
+entry
.len
,
768 entry
.prevrawlensize
,
770 p
+= entry
.headersize
;
771 if (ZIP_IS_STR(entry
.encoding
)) {
772 if (entry
.len
> 40) {
773 if (fwrite(p
,40,1,stdout
) == 0) perror("fwrite");
777 fwrite(p
,entry
.len
,1,stdout
) == 0) perror("fwrite");
780 printf("%lld", (long long) zipLoadInteger(p
,entry
.encoding
));
789 #ifdef ZIPLIST_TEST_MAIN
790 #include <sys/time.h>
794 #define debug(f, ...) { if (DEBUG) printf(f, __VA_ARGS__); }
796 unsigned char *createList() {
797 unsigned char *zl
= ziplistNew();
798 zl
= ziplistPush(zl
, (unsigned char*)"foo", 3, ZIPLIST_TAIL
);
799 zl
= ziplistPush(zl
, (unsigned char*)"quux", 4, ZIPLIST_TAIL
);
800 zl
= ziplistPush(zl
, (unsigned char*)"hello", 5, ZIPLIST_HEAD
);
801 zl
= ziplistPush(zl
, (unsigned char*)"1024", 4, ZIPLIST_TAIL
);
805 unsigned char *createIntList() {
806 unsigned char *zl
= ziplistNew();
810 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), ZIPLIST_TAIL
);
811 sprintf(buf
, "128000");
812 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), ZIPLIST_TAIL
);
813 sprintf(buf
, "-100");
814 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), ZIPLIST_HEAD
);
815 sprintf(buf
, "4294967296");
816 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), ZIPLIST_HEAD
);
817 sprintf(buf
, "non integer");
818 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), ZIPLIST_TAIL
);
819 sprintf(buf
, "much much longer non integer");
820 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), ZIPLIST_TAIL
);
824 long long usec(void) {
826 gettimeofday(&tv
,NULL
);
827 return (((long long)tv
.tv_sec
)*1000000)+tv
.tv_usec
;
830 void stress(int pos
, int num
, int maxsize
, int dnum
) {
833 char posstr
[2][5] = { "HEAD", "TAIL" };
835 for (i
= 0; i
< maxsize
; i
+=dnum
) {
837 for (j
= 0; j
< i
; j
++) {
838 zl
= ziplistPush(zl
,(unsigned char*)"quux",4,ZIPLIST_TAIL
);
841 /* Do num times a push+pop from pos */
843 for (k
= 0; k
< num
; k
++) {
844 zl
= ziplistPush(zl
,(unsigned char*)"quux",4,pos
);
845 zl
= ziplistDeleteRange(zl
,0,1);
847 printf("List size: %8d, bytes: %8d, %dx push+pop (%s): %6lld usec\n",
848 i
,ZIPLIST_BYTES(zl
),num
,posstr
[pos
],usec()-start
);
853 void pop(unsigned char *zl
, int where
) {
854 unsigned char *p
, *vstr
;
858 p
= ziplistIndex(zl
,where
== ZIPLIST_HEAD
? 0 : -1);
859 if (ziplistGet(p
,&vstr
,&vlen
,&vlong
)) {
860 if (where
== ZIPLIST_HEAD
)
861 printf("Pop head: ");
863 printf("Pop tail: ");
866 if (vlen
&& fwrite(vstr
,vlen
,1,stdout
) == 0) perror("fwrite");
868 printf("%lld", vlong
);
871 ziplistDeleteRange(zl
,-1,1);
873 printf("ERROR: Could not pop\n");
878 void randstring(char *target
, unsigned int min
, unsigned int max
) {
879 int p
, len
= min
+rand()%(max
-min
+1);
899 target
[p
++] = minval
+rand()%(maxval
-minval
+1);
904 int main(int argc
, char **argv
) {
905 unsigned char *zl
, *p
;
906 unsigned char *entry
;
910 /* If an argument is given, use it as the random seed. */
912 srand(atoi(argv
[1]));
914 zl
= createIntList();
920 pop(zl
,ZIPLIST_TAIL
);
923 pop(zl
,ZIPLIST_HEAD
);
926 pop(zl
,ZIPLIST_TAIL
);
929 pop(zl
,ZIPLIST_TAIL
);
932 printf("Get element at index 3:\n");
935 p
= ziplistIndex(zl
, 3);
936 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
937 printf("ERROR: Could not access index 3\n");
941 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
944 printf("%lld\n", value
);
949 printf("Get element at index 4 (out of range):\n");
952 p
= ziplistIndex(zl
, 4);
954 printf("No entry\n");
956 printf("ERROR: Out of range index should return NULL, returned offset: %ld\n", p
-zl
);
962 printf("Get element at index -1 (last element):\n");
965 p
= ziplistIndex(zl
, -1);
966 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
967 printf("ERROR: Could not access index -1\n");
971 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
974 printf("%lld\n", value
);
979 printf("Get element at index -4 (first element):\n");
982 p
= ziplistIndex(zl
, -4);
983 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
984 printf("ERROR: Could not access index -4\n");
988 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
991 printf("%lld\n", value
);
996 printf("Get element at index -5 (reverse out of range):\n");
999 p
= ziplistIndex(zl
, -5);
1001 printf("No entry\n");
1003 printf("ERROR: Out of range index should return NULL, returned offset: %ld\n", p
-zl
);
1009 printf("Iterate list from 0 to end:\n");
1012 p
= ziplistIndex(zl
, 0);
1013 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
1016 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
1018 printf("%lld", value
);
1020 p
= ziplistNext(zl
,p
);
1026 printf("Iterate list from 1 to end:\n");
1029 p
= ziplistIndex(zl
, 1);
1030 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
1033 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
1035 printf("%lld", value
);
1037 p
= ziplistNext(zl
,p
);
1043 printf("Iterate list from 2 to end:\n");
1046 p
= ziplistIndex(zl
, 2);
1047 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
1050 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
1052 printf("%lld", value
);
1054 p
= ziplistNext(zl
,p
);
1060 printf("Iterate starting out of range:\n");
1063 p
= ziplistIndex(zl
, 4);
1064 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
1065 printf("No entry\n");
1072 printf("Iterate from back to front:\n");
1075 p
= ziplistIndex(zl
, -1);
1076 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
1079 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
1081 printf("%lld", value
);
1083 p
= ziplistPrev(zl
,p
);
1089 printf("Iterate from back to front, deleting all items:\n");
1092 p
= ziplistIndex(zl
, -1);
1093 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
1096 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0) perror("fwrite");
1098 printf("%lld", value
);
1100 zl
= ziplistDelete(zl
,&p
);
1101 p
= ziplistPrev(zl
,p
);
1107 printf("Delete inclusive range 0,0:\n");
1110 zl
= ziplistDeleteRange(zl
, 0, 1);
1114 printf("Delete inclusive range 0,1:\n");
1117 zl
= ziplistDeleteRange(zl
, 0, 2);
1121 printf("Delete inclusive range 1,2:\n");
1124 zl
= ziplistDeleteRange(zl
, 1, 2);
1128 printf("Delete with start index out of range:\n");
1131 zl
= ziplistDeleteRange(zl
, 5, 1);
1135 printf("Delete with num overflow:\n");
1138 zl
= ziplistDeleteRange(zl
, 1, 5);
1142 printf("Delete foo while iterating:\n");
1145 p
= ziplistIndex(zl
,0);
1146 while (ziplistGet(p
,&entry
,&elen
,&value
)) {
1147 if (entry
&& strncmp("foo",(char*)entry
,elen
) == 0) {
1148 printf("Delete foo\n");
1149 zl
= ziplistDelete(zl
,&p
);
1153 if (elen
&& fwrite(entry
,elen
,1,stdout
) == 0)
1156 printf("%lld",value
);
1158 p
= ziplistNext(zl
,p
);
1166 printf("Regression test for >255 byte strings:\n");
1168 char v1
[257],v2
[257];
1172 zl
= ziplistPush(zl
,(unsigned char*)v1
,strlen(v1
),ZIPLIST_TAIL
);
1173 zl
= ziplistPush(zl
,(unsigned char*)v2
,strlen(v2
),ZIPLIST_TAIL
);
1175 /* Pop values again and compare their value. */
1176 p
= ziplistIndex(zl
,0);
1177 assert(ziplistGet(p
,&entry
,&elen
,&value
));
1178 assert(strncmp(v1
,(char*)entry
,elen
) == 0);
1179 p
= ziplistIndex(zl
,1);
1180 assert(ziplistGet(p
,&entry
,&elen
,&value
));
1181 assert(strncmp(v2
,(char*)entry
,elen
) == 0);
1182 printf("SUCCESS\n\n");
1185 printf("Create long list and check indices:\n");
1190 for (i
= 0; i
< 1000; i
++) {
1191 len
= sprintf(buf
,"%d",i
);
1192 zl
= ziplistPush(zl
,(unsigned char*)buf
,len
,ZIPLIST_TAIL
);
1194 for (i
= 0; i
< 1000; i
++) {
1195 p
= ziplistIndex(zl
,i
);
1196 assert(ziplistGet(p
,NULL
,NULL
,&value
));
1199 p
= ziplistIndex(zl
,-i
-1);
1200 assert(ziplistGet(p
,NULL
,NULL
,&value
));
1201 assert(999-i
== value
);
1203 printf("SUCCESS\n\n");
1206 printf("Compare strings with ziplist entries:\n");
1209 p
= ziplistIndex(zl
,0);
1210 if (!ziplistCompare(p
,(unsigned char*)"hello",5)) {
1211 printf("ERROR: not \"hello\"\n");
1214 if (ziplistCompare(p
,(unsigned char*)"hella",5)) {
1215 printf("ERROR: \"hella\"\n");
1219 p
= ziplistIndex(zl
,3);
1220 if (!ziplistCompare(p
,(unsigned char*)"1024",4)) {
1221 printf("ERROR: not \"1024\"\n");
1224 if (ziplistCompare(p
,(unsigned char*)"1025",4)) {
1225 printf("ERROR: \"1025\"\n");
1228 printf("SUCCESS\n\n");
1231 printf("Stress with random payloads of different encoding:\n");
1239 /* Hold temp vars from ziplist */
1240 unsigned char *sstr
;
1244 /* In the regression for the cascade bug, it was triggered
1245 * with a random seed of 2. */
1248 for (i
= 0; i
< 20000; i
++) {
1251 listSetFreeMethod(ref
,sdsfree
);
1255 for (j
= 0; j
< len
; j
++) {
1256 where
= (rand() & 1) ? ZIPLIST_HEAD
: ZIPLIST_TAIL
;
1257 switch(rand() % 4) {
1259 sprintf(buf
,"%lld",(0LL + rand()) >> 20);
1262 sprintf(buf
,"%lld",(0LL + rand()));
1265 sprintf(buf
,"%lld",(0LL + rand()) << 20);
1268 randstring(buf
,0,256);
1274 /* Add to ziplist */
1275 zl
= ziplistPush(zl
, (unsigned char*)buf
, strlen(buf
), where
);
1277 /* Add to reference list */
1278 if (where
== ZIPLIST_HEAD
) {
1279 listAddNodeHead(ref
,sdsnew(buf
));
1280 } else if (where
== ZIPLIST_TAIL
) {
1281 listAddNodeTail(ref
,sdsnew(buf
));
1287 assert(listLength(ref
) == ziplistLen(zl
));
1288 for (j
= 0; j
< len
; j
++) {
1289 /* Naive way to get elements, but similar to the stresser
1290 * executed from the Tcl test suite. */
1291 p
= ziplistIndex(zl
,j
);
1292 refnode
= listIndex(ref
,j
);
1294 assert(ziplistGet(p
,&sstr
,&slen
,&sval
));
1296 sprintf(buf
,"%lld",sval
);
1298 memcpy(buf
,sstr
,slen
);
1301 assert(strcmp(buf
,listNodeValue(refnode
)) == 0);
1306 printf("SUCCESS\n\n");
1309 printf("Stress with variable ziplist size:\n");
1311 stress(ZIPLIST_HEAD
,100000,16384,256);
1312 stress(ZIPLIST_TAIL
,100000,16384,256);