]>
git.saurik.com Git - redis.git/blob - ziplist.c
2aeffa41f55f65129dfa6d0364c19a3066e4c11a
1 /* Memory layout of a ziplist, containing "foo", "bar", "quux":
2 * <zlbytes><zllen><len>"foo"<len>"bar"<len>"quux"
4 * <zlbytes> is an unsigned integer to hold the number of bytes that
5 * the ziplist occupies. This is stored to not have to traverse the ziplist
6 * to know the new length when pushing.
8 * <zllen> is the number of items in the ziplist. When this value is
9 * greater than 254, we need to traverse the entire list to know
10 * how many items it holds.
12 * <len> is the number of bytes occupied by a single entry. When this
13 * number is greater than 253, the length will occupy 5 bytes, where
14 * the extra bytes contain an unsigned integer to hold the length.
26 /* Important note: the ZIP_END value is used to depict the end of the
27 * ziplist structure. When a pointer contains an entry, the first couple
28 * of bytes contain the encoded length of the previous entry. This length
29 * is encoded as ZIP_ENC_RAW length, so the first two bits will contain 00
30 * and the byte will therefore never have a value of 255. */
32 #define ZIP_BIGLEN 254
36 #define ZIP_ENC_SHORT 1
38 #define ZIP_ENC_LLONG 3
39 #define ZIP_ENCODING(p) ((p)[0] >> 6)
41 /* Length encoding for raw entries */
42 #define ZIP_LEN_INLINE 0
43 #define ZIP_LEN_UINT16 1
44 #define ZIP_LEN_UINT32 2
47 #define ZIPLIST_BYTES(zl) (*((unsigned int*)(zl)))
48 #define ZIPLIST_TAIL_OFFSET(zl) (*((unsigned int*)((zl)+sizeof(unsigned int))))
49 #define ZIPLIST_LENGTH(zl) (*((zl)+2*sizeof(unsigned int)))
50 #define ZIPLIST_HEADER_SIZE (2*sizeof(unsigned int)+1)
51 #define ZIPLIST_ENTRY_HEAD(zl) ((zl)+ZIPLIST_HEADER_SIZE)
52 #define ZIPLIST_ENTRY_TAIL(zl) ((zl)+ZIPLIST_TAIL_OFFSET(zl))
53 #define ZIPLIST_ENTRY_END(zl) ((zl)+ZIPLIST_BYTES(zl)-1)
54 #define ZIPLIST_INCR_LENGTH(zl,incr) { \
55 if (ZIPLIST_LENGTH(zl) < ZIP_BIGLEN) ZIPLIST_LENGTH(zl)+=incr; }
57 typedef struct zlentry
{
58 unsigned int prevrawlensize
, prevrawlen
;
59 unsigned int lensize
, len
;
60 unsigned int headersize
;
61 unsigned char encoding
;
65 /* Return bytes needed to store integer encoded by 'encoding' */
66 static unsigned int zipEncodingSize(char encoding
) {
67 if (encoding
== ZIP_ENC_SHORT
) {
68 return sizeof(short int);
69 } else if (encoding
== ZIP_ENC_INT
) {
71 } else if (encoding
== ZIP_ENC_LLONG
) {
72 return sizeof(long long);
77 /* Decode the encoded length pointed by 'p'. If a pointer to 'lensize' is
78 * provided, it is set to the number of bytes required to encode the length. */
79 static unsigned int zipDecodeLength(unsigned char *p
, unsigned int *lensize
) {
80 unsigned char encoding
= ZIP_ENCODING(p
), lenenc
;
83 if (encoding
== ZIP_ENC_RAW
) {
84 lenenc
= (p
[0] >> 4) & 0x3;
85 if (lenenc
== ZIP_LEN_INLINE
) {
87 if (lensize
) *lensize
= 1;
88 } else if (lenenc
== ZIP_LEN_UINT16
) {
89 len
= p
[1] | (p
[2] << 8);
90 if (lensize
) *lensize
= 3;
92 len
= p
[1] | (p
[2] << 8) | (p
[3] << 16) | (p
[4] << 24);
93 if (lensize
) *lensize
= 5;
96 len
= zipEncodingSize(encoding
);
97 if (lensize
) *lensize
= 1;
102 /* Encode the length 'l' writing it in 'p'. If p is NULL it just returns
103 * the amount of bytes required to encode such a length. */
104 static unsigned int zipEncodeLength(unsigned char *p
, char encoding
, unsigned int rawlen
) {
105 unsigned char len
= 1, lenenc
, buf
[5];
106 if (encoding
== ZIP_ENC_RAW
) {
109 lenenc
= ZIP_LEN_INLINE
;
111 } else if (rawlen
<= 0xffff) {
114 lenenc
= ZIP_LEN_UINT16
;
115 buf
[1] = (rawlen
) & 0xff;
116 buf
[2] = (rawlen
>> 8) & 0xff;
120 lenenc
= ZIP_LEN_UINT32
;
121 buf
[1] = (rawlen
) & 0xff;
122 buf
[2] = (rawlen
>> 8) & 0xff;
123 buf
[3] = (rawlen
>> 16) & 0xff;
124 buf
[4] = (rawlen
>> 24) & 0xff;
126 buf
[0] = (lenenc
<< 4) | (buf
[0] & 0xf);
130 /* Apparently we need to store the length in 'p' */
131 buf
[0] = (encoding
<< 6) | (buf
[0] & 0x3f);
136 /* Decode the length of the previous element stored at "p". */
137 static unsigned int zipPrevDecodeLength(unsigned char *p
, unsigned int *lensize
) {
138 unsigned int len
= *p
;
139 if (len
< ZIP_BIGLEN
) {
140 if (lensize
) *lensize
= 1;
142 if (lensize
) *lensize
= 1+sizeof(len
);
143 memcpy(&len
,p
+1,sizeof(len
));
148 /* Encode the length of the previous entry and write it to "p". Return the
149 * number of bytes needed to encode this length if "p" is NULL. */
150 static unsigned int zipPrevEncodeLength(unsigned char *p
, unsigned int len
) {
152 return (len
< ZIP_BIGLEN
) ? 1 : sizeof(len
)+1;
154 if (len
< ZIP_BIGLEN
) {
159 memcpy(p
+1,&len
,sizeof(len
));
160 return 1+sizeof(len
);
165 /* Return the difference in number of bytes needed to store the new length
166 * "len" on the entry pointed to by "p". */
167 static int zipPrevLenByteDiff(unsigned char *p
, unsigned int len
) {
168 unsigned int prevlensize
;
169 zipPrevDecodeLength(p
,&prevlensize
);
170 return zipPrevEncodeLength(NULL
,len
)-prevlensize
;
173 /* Check if string pointed to by 'entry' can be encoded as an integer.
174 * Stores the integer value in 'v' and its encoding in 'encoding'.
175 * Warning: this function requires a NULL-terminated string! */
176 static int zipTryEncoding(char *entry
, long long *v
, char *encoding
) {
180 if (entry
[0] == '-' || (entry
[0] >= '0' && entry
[0] <= '9')) {
181 value
= strtoll(entry
,&eptr
,10);
182 if (eptr
[0] != '\0') return 0;
183 if (value
>= SHRT_MIN
&& value
<= SHRT_MAX
) {
184 *encoding
= ZIP_ENC_SHORT
;
185 } else if (value
>= INT_MIN
&& value
<= INT_MAX
) {
186 *encoding
= ZIP_ENC_INT
;
188 *encoding
= ZIP_ENC_LLONG
;
196 /* Store integer 'value' at 'p', encoded as 'encoding' */
197 static void zipSaveInteger(unsigned char *p
, long long value
, char encoding
) {
201 if (encoding
== ZIP_ENC_SHORT
) {
203 memcpy(p
,&s
,sizeof(s
));
204 } else if (encoding
== ZIP_ENC_INT
) {
206 memcpy(p
,&i
,sizeof(i
));
207 } else if (encoding
== ZIP_ENC_LLONG
) {
209 memcpy(p
,&l
,sizeof(l
));
215 /* Read integer encoded as 'encoding' from 'p' */
216 static long long zipLoadInteger(unsigned char *p
, char encoding
) {
220 if (encoding
== ZIP_ENC_SHORT
) {
221 memcpy(&s
,p
,sizeof(s
));
223 } else if (encoding
== ZIP_ENC_INT
) {
224 memcpy(&i
,p
,sizeof(i
));
226 } else if (encoding
== ZIP_ENC_LLONG
) {
227 memcpy(&l
,p
,sizeof(l
));
235 /* Return a struct with all information about an entry. */
236 static zlentry
zipEntry(unsigned char *p
) {
238 e
.prevrawlen
= zipPrevDecodeLength(p
,&e
.prevrawlensize
);
239 e
.len
= zipDecodeLength(p
+e
.prevrawlensize
,&e
.lensize
);
240 e
.headersize
= e
.prevrawlensize
+e
.lensize
;
241 e
.encoding
= ZIP_ENCODING(p
+e
.prevrawlensize
);
246 /* Return the total number of bytes used by the entry at "p". */
247 static unsigned int zipRawEntryLength(unsigned char *p
) {
248 zlentry e
= zipEntry(p
);
249 return e
.headersize
+ e
.len
;
252 /* Create a new empty ziplist. */
253 unsigned char *ziplistNew(void) {
254 unsigned int bytes
= ZIPLIST_HEADER_SIZE
+1;
255 unsigned char *zl
= zmalloc(bytes
);
256 ZIPLIST_BYTES(zl
) = bytes
;
257 ZIPLIST_TAIL_OFFSET(zl
) = ZIPLIST_HEADER_SIZE
;
258 ZIPLIST_LENGTH(zl
) = 0;
259 zl
[bytes
-1] = ZIP_END
;
263 /* Resize the ziplist. */
264 static unsigned char *ziplistResize(unsigned char *zl
, unsigned int len
) {
265 zl
= zrealloc(zl
,len
);
266 ZIPLIST_BYTES(zl
) = len
;
271 /* Delete "num" entries, starting at "p". Returns pointer to the ziplist. */
272 static unsigned char *__ziplistDelete(unsigned char *zl
, unsigned char *p
, int num
) {
273 unsigned int i
, totlen
, deleted
= 0;
275 zlentry first
= zipEntry(p
);
276 for (i
= 0; p
[0] != ZIP_END
&& i
< num
; i
++) {
277 p
+= zipRawEntryLength(p
);
283 if (p
[0] != ZIP_END
) {
284 /* Tricky: storing the prevlen in this entry might reduce or
285 * increase the number of bytes needed, compared to the current
286 * prevlen. Note that we can always store this length because
287 * it was previously stored by an entry that is being deleted. */
288 nextdiff
= zipPrevLenByteDiff(p
,first
.prevrawlen
);
289 zipPrevEncodeLength(p
-nextdiff
,first
.prevrawlen
);
291 /* Update offset for tail */
292 ZIPLIST_TAIL_OFFSET(zl
) -= totlen
+nextdiff
;
294 /* Move tail to the front of the ziplist */
295 memmove(first
.p
,p
-nextdiff
,ZIPLIST_BYTES(zl
)-(p
-zl
)-1+nextdiff
);
297 /* The entire tail was deleted. No need to move memory. */
298 ZIPLIST_TAIL_OFFSET(zl
) = (first
.p
-zl
)-first
.prevrawlen
;
301 /* Resize and update length */
302 zl
= ziplistResize(zl
, ZIPLIST_BYTES(zl
)-totlen
+nextdiff
);
303 ZIPLIST_INCR_LENGTH(zl
,-deleted
);
308 /* Insert item at "p". */
309 static unsigned char *__ziplistInsert(unsigned char *zl
, unsigned char *p
, char *s
, unsigned int slen
) {
310 unsigned int curlen
= ZIPLIST_BYTES(zl
), reqlen
, prevlen
= 0;
311 unsigned int offset
, nextdiff
= 0;
313 char encoding
= ZIP_ENC_RAW
;
317 /* Find out prevlen for the entry that is inserted. */
318 if (p
[0] != ZIP_END
) {
320 prevlen
= entry
.prevrawlen
;
322 tail
= ZIPLIST_ENTRY_TAIL(zl
);
323 if (tail
[0] != ZIP_END
) {
324 prevlen
= zipRawEntryLength(tail
);
328 /* See if the entry can be encoded */
329 if (zipTryEncoding(s
,&value
,&encoding
)) {
330 reqlen
= zipEncodingSize(encoding
);
335 /* We need space for both the length of the previous entry and
336 * the length of the payload. */
337 reqlen
+= zipPrevEncodeLength(NULL
,prevlen
);
338 reqlen
+= zipEncodeLength(NULL
,encoding
,slen
);
340 /* When the insert position is not equal to the tail, we need to
341 * make sure that the next entry can hold this entry's length in
342 * its prevlen field. */
343 nextdiff
= (p
[0] != ZIP_END
) ? zipPrevLenByteDiff(p
,reqlen
) : 0;
345 /* Store offset because a realloc may change the address of zl. */
347 zl
= ziplistResize(zl
,curlen
+reqlen
+nextdiff
);
350 /* Apply memory move when necessary and update tail offset. */
351 if (p
[0] != ZIP_END
) {
352 /* Subtract one because of the ZIP_END bytes */
353 memmove(p
+reqlen
,p
-nextdiff
,curlen
-offset
-1+nextdiff
);
354 /* Encode this entry's raw length in the next entry. */
355 zipPrevEncodeLength(p
+reqlen
,reqlen
);
356 /* Update offset for tail */
357 ZIPLIST_TAIL_OFFSET(zl
) += reqlen
+nextdiff
;
359 /* This element will be the new tail. */
360 ZIPLIST_TAIL_OFFSET(zl
) = p
-zl
;
363 /* Write the entry */
364 p
+= zipPrevEncodeLength(p
,prevlen
);
365 p
+= zipEncodeLength(p
,encoding
,slen
);
366 if (encoding
!= ZIP_ENC_RAW
) {
367 zipSaveInteger(p
,value
,encoding
);
371 ZIPLIST_INCR_LENGTH(zl
,1);
375 unsigned char *ziplistPush(unsigned char *zl
, char *s
, unsigned int slen
, int where
) {
377 p
= (where
== ZIPLIST_HEAD
) ? ZIPLIST_ENTRY_HEAD(zl
) : ZIPLIST_ENTRY_END(zl
);
378 return __ziplistInsert(zl
,p
,s
,slen
);
381 unsigned char *ziplistPop(unsigned char *zl
, sds
*target
, int where
) {
385 if (target
) *target
= NULL
;
387 /* Get pointer to element to remove */
388 p
= (where
== ZIPLIST_HEAD
) ? ZIPLIST_ENTRY_HEAD(zl
) : ZIPLIST_ENTRY_TAIL(zl
);
389 if (*p
== ZIP_END
) return zl
;
393 if (entry
.encoding
== ZIP_ENC_RAW
) {
394 *target
= sdsnewlen(p
+entry
.headersize
,entry
.len
);
396 value
= zipLoadInteger(p
+entry
.headersize
,entry
.encoding
);
397 *target
= sdscatprintf(sdsempty(), "%lld", value
);
401 zl
= __ziplistDelete(zl
,p
,1);
405 /* Returns an offset to use for iterating with ziplistNext. When the given
406 * index is negative, the list is traversed back to front. When the list
407 * doesn't contain an element at the provided index, NULL is returned. */
408 unsigned char *ziplistIndex(unsigned char *zl
, int index
) {
413 p
= ZIPLIST_ENTRY_TAIL(zl
);
414 if (p
[0] != ZIP_END
) {
416 while (entry
.prevrawlen
> 0 && index
--) {
417 p
-= entry
.prevrawlen
;
422 p
= ZIPLIST_ENTRY_HEAD(zl
);
423 while (p
[0] != ZIP_END
&& index
--) {
424 p
+= zipRawEntryLength(p
);
427 return (p
[0] == ZIP_END
|| index
> 0) ? NULL
: p
;
430 /* Return pointer to next entry in ziplist. */
431 unsigned char *ziplistNext(unsigned char *zl
, unsigned char *p
) {
433 return (p
[0] == ZIP_END
) ? NULL
: p
+zipRawEntryLength(p
);
436 /* Return pointer to previous entry in ziplist. */
437 unsigned char *ziplistPrev(unsigned char *zl
, unsigned char *p
) {
440 /* Iterating backwards from ZIP_END should return the tail. When "p" is
441 * equal to the first element of the list, we're already at the head,
442 * and should return NULL. */
443 if (p
[0] == ZIP_END
) {
444 p
= ZIPLIST_ENTRY_TAIL(zl
);
445 return (p
[0] == ZIP_END
) ? NULL
: p
;
446 } else if (p
== ZIPLIST_ENTRY_HEAD(zl
)) {
450 return p
-entry
.prevrawlen
;
454 /* Get entry pointer to by 'p' and store in either 'e' or 'v' depending
455 * on the encoding of the entry. 'e' is always set to NULL to be able
456 * to find out whether the string pointer or the integer value was set.
457 * Return 0 if 'p' points to the end of the zipmap, 1 otherwise. */
458 unsigned int ziplistGet(unsigned char *p
, char **sstr
, unsigned int *slen
, long long *sval
) {
460 if (p
== NULL
|| p
[0] == ZIP_END
) return 0;
461 if (sstr
) *sstr
= NULL
;
464 if (entry
.encoding
== ZIP_ENC_RAW
) {
467 *sstr
= (char*)p
+entry
.headersize
;
471 *sval
= zipLoadInteger(p
+entry
.headersize
,entry
.encoding
);
477 /* Insert an entry at "p". */
478 unsigned char *ziplistInsert(unsigned char *zl
, unsigned char *p
, char *s
, unsigned int slen
) {
479 return __ziplistInsert(zl
,p
,s
,slen
);
482 /* Delete a single entry from the ziplist, pointed to by *p.
483 * Also update *p in place, to be able to iterate over the
484 * ziplist, while deleting entries. */
485 unsigned char *ziplistDelete(unsigned char *zl
, unsigned char **p
, int direction
) {
486 unsigned int offset
= *p
-zl
;
487 zl
= __ziplistDelete(zl
,*p
,1);
489 /* Store pointer to current element in p, because ziplistDelete will
490 * do a realloc which might result in a different "zl"-pointer.
491 * When the delete direction is back to front, we might delete the last
492 * entry and end up with "p" pointing to ZIP_END, so check this. */
493 if (*(zl
+offset
) == ZIP_END
&& direction
== ZIPLIST_HEAD
) {
494 *p
= ZIPLIST_ENTRY_TAIL(zl
);
501 /* Delete a range of entries from the ziplist. */
502 unsigned char *ziplistDeleteRange(unsigned char *zl
, unsigned int index
, unsigned int num
) {
503 unsigned char *p
= ziplistIndex(zl
,index
);
504 return (p
== NULL
) ? zl
: __ziplistDelete(zl
,p
,num
);
507 /* Compare entry pointer to by 'p' with 'entry'. Return 1 if equal. */
508 unsigned int ziplistCompare(unsigned char *p
, char *sstr
, unsigned int slen
) {
512 if (p
[0] == ZIP_END
) return 0;
515 if (entry
.encoding
== ZIP_ENC_RAW
) {
517 if (entry
.len
== slen
) {
518 return memcmp(p
+entry
.headersize
,sstr
,slen
) == 0;
523 /* Try to compare encoded values */
524 if (zipTryEncoding(sstr
,&sval
,&sencoding
)) {
525 if (entry
.encoding
== sencoding
) {
526 val
= zipLoadInteger(p
+entry
.headersize
,entry
.encoding
);
534 /* Return length of ziplist. */
535 unsigned int ziplistLen(unsigned char *zl
) {
536 unsigned int len
= 0;
537 if (ZIPLIST_LENGTH(zl
) < ZIP_BIGLEN
) {
538 len
= ZIPLIST_LENGTH(zl
);
540 unsigned char *p
= zl
+ZIPLIST_HEADER_SIZE
;
541 while (*p
!= ZIP_END
) {
542 p
+= zipRawEntryLength(p
);
546 /* Re-store length if small enough */
547 if (len
< ZIP_BIGLEN
) ZIPLIST_LENGTH(zl
) = len
;
552 /* Return size in bytes of ziplist. */
553 unsigned int ziplistSize(unsigned char *zl
) {
554 return ZIPLIST_BYTES(zl
);
557 void ziplistRepr(unsigned char *zl
) {
561 printf("{total bytes %d} {length %u}\n",ZIPLIST_BYTES(zl
), ZIPLIST_LENGTH(zl
));
562 p
= ZIPLIST_ENTRY_HEAD(zl
);
563 while(*p
!= ZIP_END
) {
565 printf("{offset %ld, header %u, payload %u} ",p
-zl
,entry
.headersize
,entry
.len
);
566 p
+= entry
.headersize
;
567 if (entry
.encoding
== ZIP_ENC_RAW
) {
568 fwrite(p
,entry
.len
,1,stdout
);
570 printf("%lld", zipLoadInteger(p
,entry
.encoding
));
578 #ifdef ZIPLIST_TEST_MAIN
580 unsigned char *createList() {
581 unsigned char *zl
= ziplistNew();
582 zl
= ziplistPush(zl
, "foo", 3, ZIPLIST_TAIL
);
583 zl
= ziplistPush(zl
, "quux", 4, ZIPLIST_TAIL
);
584 zl
= ziplistPush(zl
, "hello", 5, ZIPLIST_HEAD
);
585 zl
= ziplistPush(zl
, "1024", 4, ZIPLIST_TAIL
);
589 unsigned char *createIntList() {
590 unsigned char *zl
= ziplistNew();
594 zl
= ziplistPush(zl
, buf
, strlen(buf
), ZIPLIST_TAIL
);
595 sprintf(buf
, "128000");
596 zl
= ziplistPush(zl
, buf
, strlen(buf
), ZIPLIST_TAIL
);
597 sprintf(buf
, "-100");
598 zl
= ziplistPush(zl
, buf
, strlen(buf
), ZIPLIST_HEAD
);
599 sprintf(buf
, "4294967296");
600 zl
= ziplistPush(zl
, buf
, strlen(buf
), ZIPLIST_HEAD
);
601 sprintf(buf
, "non integer");
602 zl
= ziplistPush(zl
, buf
, strlen(buf
), ZIPLIST_TAIL
);
603 sprintf(buf
, "much much longer non integer");
604 zl
= ziplistPush(zl
, buf
, strlen(buf
), ZIPLIST_TAIL
);
608 int main(int argc
, char **argv
) {
609 unsigned char *zl
, *p
;
615 zl
= createIntList();
621 zl
= ziplistPop(zl
, &s
, ZIPLIST_TAIL
);
622 printf("Pop tail: %s (length %ld)\n", s
, sdslen(s
));
625 zl
= ziplistPop(zl
, &s
, ZIPLIST_HEAD
);
626 printf("Pop head: %s (length %ld)\n", s
, sdslen(s
));
629 zl
= ziplistPop(zl
, &s
, ZIPLIST_TAIL
);
630 printf("Pop tail: %s (length %ld)\n", s
, sdslen(s
));
633 zl
= ziplistPop(zl
, &s
, ZIPLIST_TAIL
);
634 printf("Pop tail: %s (length %ld)\n", s
, sdslen(s
));
637 printf("Get element at index 3:\n");
640 p
= ziplistIndex(zl
, 3);
641 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
642 printf("ERROR: Could not access index 3\n");
646 fwrite(entry
,elen
,1,stdout
);
649 printf("%lld\n", value
);
654 printf("Get element at index 4 (out of range):\n");
657 p
= ziplistIndex(zl
, 4);
659 printf("No entry\n");
661 printf("ERROR: Out of range index should return NULL, returned offset: %ld\n", p
-zl
);
667 printf("Get element at index -1 (last element):\n");
670 p
= ziplistIndex(zl
, -1);
671 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
672 printf("ERROR: Could not access index -1\n");
676 fwrite(entry
,elen
,1,stdout
);
679 printf("%lld\n", value
);
684 printf("Get element at index -4 (first element):\n");
687 p
= ziplistIndex(zl
, -4);
688 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
689 printf("ERROR: Could not access index -4\n");
693 fwrite(entry
,elen
,1,stdout
);
696 printf("%lld\n", value
);
701 printf("Get element at index -5 (reverse out of range):\n");
704 p
= ziplistIndex(zl
, -5);
706 printf("No entry\n");
708 printf("ERROR: Out of range index should return NULL, returned offset: %ld\n", p
-zl
);
714 printf("Iterate list from 0 to end:\n");
717 p
= ziplistIndex(zl
, 0);
718 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
721 fwrite(entry
,elen
,1,stdout
);
723 printf("%lld", value
);
725 p
= ziplistNext(zl
,p
);
731 printf("Iterate list from 1 to end:\n");
734 p
= ziplistIndex(zl
, 1);
735 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
738 fwrite(entry
,elen
,1,stdout
);
740 printf("%lld", value
);
742 p
= ziplistNext(zl
,p
);
748 printf("Iterate list from 2 to end:\n");
751 p
= ziplistIndex(zl
, 2);
752 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
755 fwrite(entry
,elen
,1,stdout
);
757 printf("%lld", value
);
759 p
= ziplistNext(zl
,p
);
765 printf("Iterate starting out of range:\n");
768 p
= ziplistIndex(zl
, 4);
769 if (!ziplistGet(p
, &entry
, &elen
, &value
)) {
770 printf("No entry\n");
777 printf("Iterate from back to front:\n");
780 p
= ziplistIndex(zl
, -1);
781 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
784 fwrite(entry
,elen
,1,stdout
);
786 printf("%lld", value
);
788 p
= ziplistPrev(zl
,p
);
794 printf("Iterate from back to front, deleting all items:\n");
797 p
= ziplistIndex(zl
, -1);
798 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
801 fwrite(entry
,elen
,1,stdout
);
803 printf("%lld", value
);
805 zl
= ziplistDelete(zl
,&p
);
806 p
= ziplistPrev(zl
,p
);
812 printf("Delete inclusive range 0,0:\n");
815 zl
= ziplistDeleteRange(zl
, 0, 1);
819 printf("Delete inclusive range 0,1:\n");
822 zl
= ziplistDeleteRange(zl
, 0, 2);
826 printf("Delete inclusive range 1,2:\n");
829 zl
= ziplistDeleteRange(zl
, 1, 2);
833 printf("Delete with start index out of range:\n");
836 zl
= ziplistDeleteRange(zl
, 5, 1);
840 printf("Delete with num overflow:\n");
843 zl
= ziplistDeleteRange(zl
, 1, 5);
847 printf("Delete foo while iterating:\n");
850 p
= ziplistIndex(zl
, 0);
851 while (ziplistGet(p
, &entry
, &elen
, &value
)) {
852 if (entry
&& strncmp("foo", entry
, elen
) == 0) {
853 printf("Delete foo\n");
854 zl
= ziplistDelete(zl
, &p
, ZIPLIST_TAIL
);
858 fwrite(entry
,elen
,1,stdout
);
860 printf("%lld", value
);
870 printf("Create long list and check indices:\n");
875 for (i
= 0; i
< 1000; i
++) {
876 len
= sprintf(buf
,"%d",i
);
877 zl
= ziplistPush(zl
,buf
,len
,ZIPLIST_TAIL
);
879 for (i
= 0; i
< 1000; i
++) {
880 p
= ziplistIndex(zl
,i
);
881 assert(ziplistGet(p
,NULL
,NULL
,&value
));
884 p
= ziplistIndex(zl
,-i
-1);
885 assert(ziplistGet(p
,NULL
,NULL
,&value
));
886 assert(999-i
== value
);
888 printf("SUCCESS\n\n");
891 printf("Compare strings with ziplist entries:\n");
894 p
= ziplistIndex(zl
, 0);
895 if (!ziplistCompare(p
,"hello",5)) {
896 printf("ERROR: not \"hello\"\n");
899 if (ziplistCompare(p
,"hella",5)) {
900 printf("ERROR: \"hella\"\n");
904 p
= ziplistIndex(zl
, 3);
905 if (!ziplistCompare(p
,"1024",4)) {
906 printf("ERROR: not \"1024\"\n");
909 if (ziplistCompare(p
,"1025",4)) {
910 printf("ERROR: \"1025\"\n");