]>
Commit | Line | Data |
---|---|---|
c4705381 PN |
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. | |
11ac6ff6 | 8 | * |
c4705381 | 9 | * ---------------------------------------------------------------------------- |
11ac6ff6 | 10 | * |
c4705381 PN |
11 | * ZIPLIST OVERALL LAYOUT: |
12 | * The general layout of the ziplist is as follows: | |
13 | * <zlbytes><zltail><zllen><entry><entry><zlend> | |
11ac6ff6 | 14 | * |
c4705381 PN |
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. | |
18 | * | |
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. | |
21 | * | |
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. | |
24 | * | |
25 | * <zlend> is a single byte special value, equal to 255, which indicates the | |
26 | * end of the list. | |
27 | * | |
28 | * ZIPLIST ENTRIES: | |
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. | |
33 | * | |
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. | |
40 | * | |
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: | |
48 | * | |
49 | * |00pppppp| - 1 byte | |
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. | |
55 | * |1100____| - 1 byte | |
56 | * Integer encoded as int16_t (2 bytes). | |
57 | * |1101____| - 1 byte | |
58 | * Integer encoded as int32_t (4 bytes). | |
59 | * |1110____| - 1 byte | |
60 | * Integer encoded as int64_t (8 bytes). | |
11ac6ff6 PN |
61 | */ |
62 | ||
63 | #include <stdio.h> | |
29b14d5f | 64 | #include <stdlib.h> |
11ac6ff6 | 65 | #include <string.h> |
e1f93d4b | 66 | #include <stdint.h> |
11ac6ff6 | 67 | #include <assert.h> |
29b14d5f | 68 | #include <limits.h> |
11ac6ff6 | 69 | #include "zmalloc.h" |
11ac6ff6 | 70 | #include "ziplist.h" |
11ac6ff6 | 71 | |
61712508 | 72 | int ll2string(char *s, size_t len, long long value); |
73 | ||
37fff074 | 74 | #define ZIP_END 255 |
aa549962 | 75 | #define ZIP_BIGLEN 254 |
37fff074 | 76 | |
c4705381 PN |
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) | |
37fff074 | 84 | |
c4705381 PN |
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) | |
37fff074 PN |
88 | |
89 | /* Utility macros */ | |
e1f93d4b PN |
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) | |
97 | ||
98 | /* We know a positive increment can only be 1 because entries can only be | |
99 | * pushed one at a time. */ | |
f6eb1747 | 100 | #define ZIPLIST_INCR_LENGTH(zl,incr) { \ |
e1f93d4b | 101 | if (ZIPLIST_LENGTH(zl) < UINT16_MAX) ZIPLIST_LENGTH(zl)+=incr; } |
11ac6ff6 | 102 | |
a5456b2c PN |
103 | typedef struct zlentry { |
104 | unsigned int prevrawlensize, prevrawlen; | |
105 | unsigned int lensize, len; | |
106 | unsigned int headersize; | |
107 | unsigned char encoding; | |
0c0d0564 | 108 | unsigned char *p; |
a5456b2c PN |
109 | } zlentry; |
110 | ||
c4705381 PN |
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; | |
115 | if (b < 0xc0) { | |
116 | return b; | |
117 | } else { | |
118 | /* Integer encoding: 4 MSBs */ | |
119 | return p[0] & 0xf0; | |
120 | } | |
121 | assert(NULL); | |
122 | } | |
123 | ||
37fff074 | 124 | /* Return bytes needed to store integer encoded by 'encoding' */ |
c4705381 PN |
125 | static unsigned int zipIntSize(unsigned char encoding) { |
126 | switch(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); | |
37fff074 PN |
130 | } |
131 | assert(NULL); | |
132 | } | |
133 | ||
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) { | |
c4705381 | 137 | unsigned char encoding = zipEntryEncoding(p); |
37fff074 PN |
138 | unsigned int len; |
139 | ||
c4705381 PN |
140 | if (ZIP_IS_STR(encoding)) { |
141 | switch(encoding) { | |
142 | case ZIP_STR_06B: | |
143 | len = p[0] & 0x3f; | |
37fff074 | 144 | if (lensize) *lensize = 1; |
c4705381 PN |
145 | break; |
146 | case ZIP_STR_14B: | |
b0d605c1 | 147 | len = ((p[0] & 0x3f) << 8) | p[1]; |
c4705381 PN |
148 | if (lensize) *lensize = 2; |
149 | break; | |
150 | case ZIP_STR_32B: | |
151 | len = (p[1] << 24) | (p[2] << 16) | (p[3] << 8) | p[4]; | |
37fff074 | 152 | if (lensize) *lensize = 5; |
c4705381 PN |
153 | break; |
154 | default: | |
155 | assert(NULL); | |
37fff074 PN |
156 | } |
157 | } else { | |
c4705381 | 158 | len = zipIntSize(encoding); |
37fff074 PN |
159 | if (lensize) *lensize = 1; |
160 | } | |
161 | return len; | |
162 | } | |
163 | ||
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. */ | |
c4705381 PN |
166 | static unsigned int zipEncodeLength(unsigned char *p, unsigned char encoding, unsigned int rawlen) { |
167 | unsigned char len = 1, buf[5]; | |
168 | ||
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) { | |
37fff074 | 173 | if (!p) return len; |
c4705381 PN |
174 | buf[0] = ZIP_STR_06B | rawlen; |
175 | } else if (rawlen <= 0x3fff) { | |
176 | len += 1; | |
37fff074 | 177 | if (!p) return len; |
c4705381 PN |
178 | buf[0] = ZIP_STR_14B | ((rawlen >> 8) & 0x3f); |
179 | buf[1] = rawlen & 0xff; | |
37fff074 PN |
180 | } else { |
181 | len += 4; | |
182 | if (!p) return len; | |
c4705381 PN |
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; | |
37fff074 | 188 | } |
c4705381 PN |
189 | } else { |
190 | /* Implies integer encoding, so length is always 1. */ | |
191 | if (!p) return len; | |
192 | buf[0] = encoding; | |
37fff074 | 193 | } |
37fff074 | 194 | |
c4705381 | 195 | /* Store this length at p */ |
37fff074 PN |
196 | memcpy(p,buf,len); |
197 | return len; | |
198 | } | |
199 | ||
7b1f85c0 PN |
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; | |
205 | } else { | |
206 | if (lensize) *lensize = 1+sizeof(len); | |
207 | memcpy(&len,p+1,sizeof(len)); | |
208 | } | |
209 | return len; | |
210 | } | |
211 | ||
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) { | |
215 | if (p == NULL) { | |
216 | return (len < ZIP_BIGLEN) ? 1 : sizeof(len)+1; | |
217 | } else { | |
218 | if (len < ZIP_BIGLEN) { | |
219 | p[0] = len; | |
220 | return 1; | |
221 | } else { | |
222 | p[0] = ZIP_BIGLEN; | |
223 | memcpy(p+1,&len,sizeof(len)); | |
224 | return 1+sizeof(len); | |
225 | } | |
226 | } | |
227 | } | |
228 | ||
169d2ef1 PN |
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; | |
233 | p[0] = ZIP_BIGLEN; | |
234 | memcpy(p+1,&len,sizeof(len)); | |
235 | } | |
236 | ||
dcb9cf4e PN |
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; | |
7b1f85c0 PN |
241 | zipPrevDecodeLength(p,&prevlensize); |
242 | return zipPrevEncodeLength(NULL,len)-prevlensize; | |
dcb9cf4e PN |
243 | } |
244 | ||
37fff074 | 245 | /* Check if string pointed to by 'entry' can be encoded as an integer. |
61712508 | 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) { | |
37fff074 PN |
248 | long long value; |
249 | char *eptr; | |
61712508 | 250 | char buf[32]; |
37fff074 | 251 | |
61712508 | 252 | if (entrylen >= 32 || entrylen == 0) return 0; |
37fff074 | 253 | if (entry[0] == '-' || (entry[0] >= '0' && entry[0] <= '9')) { |
61712508 | 254 | int slen; |
255 | ||
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); | |
37fff074 | 261 | if (eptr[0] != '\0') return 0; |
61712508 | 262 | slen = ll2string(buf,32,value); |
263 | if (entrylen != (unsigned)slen || memcmp(buf,entry,slen)) return 0; | |
264 | ||
265 | /* Great, the string can be encoded. Check what's the smallest | |
266 | * of our encoding types that can hold this value. */ | |
e1f93d4b | 267 | if (value >= INT16_MIN && value <= INT16_MAX) { |
c4705381 | 268 | *encoding = ZIP_INT_16B; |
e1f93d4b | 269 | } else if (value >= INT32_MIN && value <= INT32_MAX) { |
c4705381 | 270 | *encoding = ZIP_INT_32B; |
37fff074 | 271 | } else { |
c4705381 | 272 | *encoding = ZIP_INT_64B; |
37fff074 PN |
273 | } |
274 | *v = value; | |
275 | return 1; | |
276 | } | |
277 | return 0; | |
278 | } | |
279 | ||
280 | /* Store integer 'value' at 'p', encoded as 'encoding' */ | |
e1f93d4b PN |
281 | static void zipSaveInteger(unsigned char *p, int64_t value, unsigned char encoding) { |
282 | int16_t i16; | |
283 | int32_t i32; | |
284 | int64_t i64; | |
c4705381 | 285 | if (encoding == ZIP_INT_16B) { |
e1f93d4b PN |
286 | i16 = value; |
287 | memcpy(p,&i16,sizeof(i16)); | |
c4705381 | 288 | } else if (encoding == ZIP_INT_32B) { |
e1f93d4b PN |
289 | i32 = value; |
290 | memcpy(p,&i32,sizeof(i32)); | |
c4705381 | 291 | } else if (encoding == ZIP_INT_64B) { |
e1f93d4b PN |
292 | i64 = value; |
293 | memcpy(p,&i64,sizeof(i64)); | |
37fff074 PN |
294 | } else { |
295 | assert(NULL); | |
296 | } | |
297 | } | |
298 | ||
299 | /* Read integer encoded as 'encoding' from 'p' */ | |
e1f93d4b PN |
300 | static int64_t zipLoadInteger(unsigned char *p, unsigned char encoding) { |
301 | int16_t i16; | |
302 | int32_t i32; | |
303 | int64_t i64, ret; | |
c4705381 | 304 | if (encoding == ZIP_INT_16B) { |
e1f93d4b PN |
305 | memcpy(&i16,p,sizeof(i16)); |
306 | ret = i16; | |
c4705381 | 307 | } else if (encoding == ZIP_INT_32B) { |
e1f93d4b PN |
308 | memcpy(&i32,p,sizeof(i32)); |
309 | ret = i32; | |
c4705381 | 310 | } else if (encoding == ZIP_INT_64B) { |
e1f93d4b PN |
311 | memcpy(&i64,p,sizeof(i64)); |
312 | ret = i64; | |
37fff074 PN |
313 | } else { |
314 | assert(NULL); | |
315 | } | |
316 | return ret; | |
317 | } | |
318 | ||
a5456b2c PN |
319 | /* Return a struct with all information about an entry. */ |
320 | static zlentry zipEntry(unsigned char *p) { | |
321 | zlentry e; | |
7b1f85c0 | 322 | e.prevrawlen = zipPrevDecodeLength(p,&e.prevrawlensize); |
a5456b2c PN |
323 | e.len = zipDecodeLength(p+e.prevrawlensize,&e.lensize); |
324 | e.headersize = e.prevrawlensize+e.lensize; | |
c4705381 | 325 | e.encoding = zipEntryEncoding(p+e.prevrawlensize); |
0c0d0564 | 326 | e.p = p; |
a5456b2c PN |
327 | return e; |
328 | } | |
329 | ||
bb57b965 | 330 | /* Return the total number of bytes used by the entry at "p". */ |
37fff074 | 331 | static unsigned int zipRawEntryLength(unsigned char *p) { |
bb57b965 PN |
332 | zlentry e = zipEntry(p); |
333 | return e.headersize + e.len; | |
37fff074 PN |
334 | } |
335 | ||
11ac6ff6 PN |
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; | |
dcb9cf4e | 341 | ZIPLIST_TAIL_OFFSET(zl) = ZIPLIST_HEADER_SIZE; |
11ac6ff6 PN |
342 | ZIPLIST_LENGTH(zl) = 0; |
343 | zl[bytes-1] = ZIP_END; | |
344 | return zl; | |
345 | } | |
346 | ||
37fff074 | 347 | /* Resize the ziplist. */ |
11ac6ff6 | 348 | static unsigned char *ziplistResize(unsigned char *zl, unsigned int len) { |
37fff074 | 349 | zl = zrealloc(zl,len); |
11ac6ff6 PN |
350 | ZIPLIST_BYTES(zl) = len; |
351 | zl[len-1] = ZIP_END; | |
352 | return zl; | |
353 | } | |
354 | ||
169d2ef1 PN |
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 | |
364 | * consecutive entry. | |
365 | * | |
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. | |
372 | * | |
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; | |
378 | unsigned char *np; | |
379 | zlentry cur, next; | |
380 | ||
381 | while (p[0] != ZIP_END) { | |
382 | cur = zipEntry(p); | |
383 | rawlen = cur.headersize + cur.len; | |
384 | rawlensize = zipPrevEncodeLength(NULL,rawlen); | |
385 | ||
386 | /* Abort if there is no next entry. */ | |
387 | if (p[rawlen] == ZIP_END) break; | |
388 | next = zipEntry(p+rawlen); | |
389 | ||
390 | /* Abort when "prevlen" has not changed. */ | |
391 | if (next.prevrawlen == rawlen) break; | |
392 | ||
393 | if (next.prevrawlensize < rawlensize) { | |
394 | /* The "prevlen" field of "next" needs more bytes to hold | |
395 | * the raw length of "cur". */ | |
396 | offset = p-zl; | |
397 | extra = rawlensize-next.prevrawlensize; | |
398 | zl = ziplistResize(zl,curlen+extra); | |
399 | ZIPLIST_TAIL_OFFSET(zl) += extra; | |
400 | p = zl+offset; | |
401 | ||
402 | /* Move the tail to the back. */ | |
403 | np = p+rawlen; | |
404 | noffset = np-zl; | |
405 | memmove(np+rawlensize, | |
406 | np+next.prevrawlensize, | |
407 | curlen-noffset-next.prevrawlensize-1); | |
408 | zipPrevEncodeLength(np,rawlen); | |
409 | ||
410 | /* Advance the cursor */ | |
411 | p += rawlen; | |
306c6a02 | 412 | curlen += extra; |
169d2ef1 PN |
413 | } else { |
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); | |
418 | } else { | |
419 | zipPrevEncodeLength(p+rawlen,rawlen); | |
420 | } | |
421 | ||
422 | /* Stop here, as the raw length of "next" has not changed. */ | |
423 | break; | |
424 | } | |
425 | } | |
426 | return zl; | |
427 | } | |
428 | ||
0c0d0564 | 429 | /* Delete "num" entries, starting at "p". Returns pointer to the ziplist. */ |
b6eb9703 | 430 | static unsigned char *__ziplistDelete(unsigned char *zl, unsigned char *p, unsigned int num) { |
0c0d0564 | 431 | unsigned int i, totlen, deleted = 0; |
169d2ef1 PN |
432 | int offset, nextdiff = 0; |
433 | zlentry first, tail; | |
434 | ||
435 | first = zipEntry(p); | |
0c0d0564 PN |
436 | for (i = 0; p[0] != ZIP_END && i < num; i++) { |
437 | p += zipRawEntryLength(p); | |
438 | deleted++; | |
439 | } | |
440 | ||
441 | totlen = p-first.p; | |
442 | if (totlen > 0) { | |
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); | |
7b1f85c0 | 449 | zipPrevEncodeLength(p-nextdiff,first.prevrawlen); |
0c0d0564 PN |
450 | |
451 | /* Update offset for tail */ | |
169d2ef1 PN |
452 | ZIPLIST_TAIL_OFFSET(zl) -= totlen; |
453 | ||
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. */ | |
457 | tail = zipEntry(p); | |
458 | if (p[tail.headersize+tail.len] != ZIP_END) | |
459 | ZIPLIST_TAIL_OFFSET(zl) += nextdiff; | |
0c0d0564 PN |
460 | |
461 | /* Move tail to the front of the ziplist */ | |
462 | memmove(first.p,p-nextdiff,ZIPLIST_BYTES(zl)-(p-zl)-1+nextdiff); | |
463 | } else { | |
464 | /* The entire tail was deleted. No need to move memory. */ | |
465 | ZIPLIST_TAIL_OFFSET(zl) = (first.p-zl)-first.prevrawlen; | |
466 | } | |
467 | ||
468 | /* Resize and update length */ | |
169d2ef1 | 469 | offset = first.p-zl; |
0c0d0564 PN |
470 | zl = ziplistResize(zl, ZIPLIST_BYTES(zl)-totlen+nextdiff); |
471 | ZIPLIST_INCR_LENGTH(zl,-deleted); | |
169d2ef1 PN |
472 | p = zl+offset; |
473 | ||
474 | /* When nextdiff != 0, the raw length of the next entry has changed, so | |
475 | * we need to cascade the update throughout the ziplist */ | |
476 | if (nextdiff != 0) | |
477 | zl = __ziplistCascadeUpdate(zl,p); | |
0c0d0564 PN |
478 | } |
479 | return zl; | |
11ac6ff6 PN |
480 | } |
481 | ||
6435c767 | 482 | /* Insert item at "p". */ |
b6eb9703 | 483 | static unsigned char *__ziplistInsert(unsigned char *zl, unsigned char *p, unsigned char *s, unsigned int slen) { |
6435c767 PN |
484 | unsigned int curlen = ZIPLIST_BYTES(zl), reqlen, prevlen = 0; |
485 | unsigned int offset, nextdiff = 0; | |
c4705381 | 486 | unsigned char encoding = 0; |
29b14d5f | 487 | long long value; |
169d2ef1 | 488 | zlentry entry, tail; |
11ac6ff6 | 489 | |
6435c767 PN |
490 | /* Find out prevlen for the entry that is inserted. */ |
491 | if (p[0] != ZIP_END) { | |
492 | entry = zipEntry(p); | |
493 | prevlen = entry.prevrawlen; | |
dcb9cf4e | 494 | } else { |
169d2ef1 PN |
495 | unsigned char *ptail = ZIPLIST_ENTRY_TAIL(zl); |
496 | if (ptail[0] != ZIP_END) { | |
497 | prevlen = zipRawEntryLength(ptail); | |
6435c767 | 498 | } |
dcb9cf4e PN |
499 | } |
500 | ||
29b14d5f | 501 | /* See if the entry can be encoded */ |
61712508 | 502 | if (zipTryEncoding(s,slen,&value,&encoding)) { |
c4705381 PN |
503 | /* 'encoding' is set to the appropriate integer encoding */ |
504 | reqlen = zipIntSize(encoding); | |
29b14d5f | 505 | } else { |
c4705381 PN |
506 | /* 'encoding' is untouched, however zipEncodeLength will use the |
507 | * string length to figure out how to encode it. */ | |
6435c767 | 508 | reqlen = slen; |
29b14d5f | 509 | } |
dcb9cf4e PN |
510 | /* We need space for both the length of the previous entry and |
511 | * the length of the payload. */ | |
7b1f85c0 | 512 | reqlen += zipPrevEncodeLength(NULL,prevlen); |
6435c767 PN |
513 | reqlen += zipEncodeLength(NULL,encoding,slen); |
514 | ||
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. */ | |
177a0a0b | 518 | nextdiff = (p[0] != ZIP_END) ? zipPrevLenByteDiff(p,reqlen) : 0; |
6435c767 PN |
519 | |
520 | /* Store offset because a realloc may change the address of zl. */ | |
521 | offset = p-zl; | |
522 | zl = ziplistResize(zl,curlen+reqlen+nextdiff); | |
523 | p = zl+offset; | |
524 | ||
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); | |
169d2ef1 | 529 | |
6435c767 | 530 | /* Encode this entry's raw length in the next entry. */ |
7b1f85c0 | 531 | zipPrevEncodeLength(p+reqlen,reqlen); |
169d2ef1 | 532 | |
6435c767 | 533 | /* Update offset for tail */ |
169d2ef1 PN |
534 | ZIPLIST_TAIL_OFFSET(zl) += reqlen; |
535 | ||
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; | |
11ac6ff6 | 542 | } else { |
6435c767 PN |
543 | /* This element will be the new tail. */ |
544 | ZIPLIST_TAIL_OFFSET(zl) = p-zl; | |
dcb9cf4e PN |
545 | } |
546 | ||
169d2ef1 PN |
547 | /* When nextdiff != 0, the raw length of the next entry has changed, so |
548 | * we need to cascade the update throughout the ziplist */ | |
549 | if (nextdiff != 0) { | |
550 | offset = p-zl; | |
551 | zl = __ziplistCascadeUpdate(zl,p+reqlen); | |
552 | p = zl+offset; | |
553 | } | |
554 | ||
11ac6ff6 | 555 | /* Write the entry */ |
7b1f85c0 | 556 | p += zipPrevEncodeLength(p,prevlen); |
6435c767 | 557 | p += zipEncodeLength(p,encoding,slen); |
c4705381 | 558 | if (ZIP_IS_STR(encoding)) { |
6435c767 | 559 | memcpy(p,s,slen); |
c4705381 PN |
560 | } else { |
561 | zipSaveInteger(p,value,encoding); | |
29b14d5f | 562 | } |
f6eb1747 | 563 | ZIPLIST_INCR_LENGTH(zl,1); |
11ac6ff6 PN |
564 | return zl; |
565 | } | |
566 | ||
b6eb9703 | 567 | unsigned char *ziplistPush(unsigned char *zl, unsigned char *s, unsigned int slen, int where) { |
6435c767 | 568 | unsigned char *p; |
1ce81fa5 | 569 | p = (where == ZIPLIST_HEAD) ? ZIPLIST_ENTRY_HEAD(zl) : ZIPLIST_ENTRY_END(zl); |
6435c767 PN |
570 | return __ziplistInsert(zl,p,s,slen); |
571 | } | |
572 | ||
c03206fd PN |
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) { | |
577 | unsigned char *p; | |
578 | zlentry entry; | |
579 | if (index < 0) { | |
580 | index = (-index)-1; | |
581 | p = ZIPLIST_ENTRY_TAIL(zl); | |
582 | if (p[0] != ZIP_END) { | |
583 | entry = zipEntry(p); | |
584 | while (entry.prevrawlen > 0 && index--) { | |
585 | p -= entry.prevrawlen; | |
586 | entry = zipEntry(p); | |
587 | } | |
588 | } | |
589 | } else { | |
590 | p = ZIPLIST_ENTRY_HEAD(zl); | |
591 | while (p[0] != ZIP_END && index--) { | |
592 | p += zipRawEntryLength(p); | |
593 | } | |
08253bf4 | 594 | } |
177a0a0b | 595 | return (p[0] == ZIP_END || index > 0) ? NULL : p; |
08253bf4 PN |
596 | } |
597 | ||
75d8978e | 598 | /* Return pointer to next entry in ziplist. */ |
8632fb30 PN |
599 | unsigned char *ziplistNext(unsigned char *zl, unsigned char *p) { |
600 | ((void) zl); | |
d71b9865 PN |
601 | |
602 | /* "p" could be equal to ZIP_END, caused by ziplistDelete, | |
603 | * and we should return NULL. Otherwise, we should return NULL | |
604 | * when the *next* element is ZIP_END (there is no next entry). */ | |
605 | if (p[0] == ZIP_END) { | |
606 | return NULL; | |
607 | } else { | |
608 | p = p+zipRawEntryLength(p); | |
609 | return (p[0] == ZIP_END) ? NULL : p; | |
610 | } | |
75d8978e PN |
611 | } |
612 | ||
033fb554 | 613 | /* Return pointer to previous entry in ziplist. */ |
8632fb30 PN |
614 | unsigned char *ziplistPrev(unsigned char *zl, unsigned char *p) { |
615 | zlentry entry; | |
616 | ||
617 | /* Iterating backwards from ZIP_END should return the tail. When "p" is | |
618 | * equal to the first element of the list, we're already at the head, | |
619 | * and should return NULL. */ | |
620 | if (p[0] == ZIP_END) { | |
621 | p = ZIPLIST_ENTRY_TAIL(zl); | |
622 | return (p[0] == ZIP_END) ? NULL : p; | |
623 | } else if (p == ZIPLIST_ENTRY_HEAD(zl)) { | |
624 | return NULL; | |
625 | } else { | |
626 | entry = zipEntry(p); | |
169d2ef1 | 627 | assert(entry.prevrawlen > 0); |
8632fb30 PN |
628 | return p-entry.prevrawlen; |
629 | } | |
033fb554 PN |
630 | } |
631 | ||
75d8978e PN |
632 | /* Get entry pointer to by 'p' and store in either 'e' or 'v' depending |
633 | * on the encoding of the entry. 'e' is always set to NULL to be able | |
634 | * to find out whether the string pointer or the integer value was set. | |
635 | * Return 0 if 'p' points to the end of the zipmap, 1 otherwise. */ | |
b6eb9703 | 636 | unsigned int ziplistGet(unsigned char *p, unsigned char **sstr, unsigned int *slen, long long *sval) { |
a5456b2c | 637 | zlentry entry; |
c03206fd | 638 | if (p == NULL || p[0] == ZIP_END) return 0; |
03e52931 | 639 | if (sstr) *sstr = NULL; |
dcb9cf4e | 640 | |
a5456b2c | 641 | entry = zipEntry(p); |
c4705381 | 642 | if (ZIP_IS_STR(entry.encoding)) { |
03e52931 PN |
643 | if (sstr) { |
644 | *slen = entry.len; | |
b6eb9703 | 645 | *sstr = p+entry.headersize; |
75d8978e PN |
646 | } |
647 | } else { | |
03e52931 PN |
648 | if (sval) { |
649 | *sval = zipLoadInteger(p+entry.headersize,entry.encoding); | |
75d8978e | 650 | } |
08253bf4 | 651 | } |
75d8978e | 652 | return 1; |
08253bf4 PN |
653 | } |
654 | ||
033fb554 | 655 | /* Insert an entry at "p". */ |
b6eb9703 | 656 | unsigned char *ziplistInsert(unsigned char *zl, unsigned char *p, unsigned char *s, unsigned int slen) { |
033fb554 | 657 | return __ziplistInsert(zl,p,s,slen); |
779deb60 PN |
658 | } |
659 | ||
0f10458c PN |
660 | /* Delete a single entry from the ziplist, pointed to by *p. |
661 | * Also update *p in place, to be able to iterate over the | |
662 | * ziplist, while deleting entries. */ | |
6a8e35ad | 663 | unsigned char *ziplistDelete(unsigned char *zl, unsigned char **p) { |
0c0d0564 PN |
664 | unsigned int offset = *p-zl; |
665 | zl = __ziplistDelete(zl,*p,1); | |
0f10458c | 666 | |
0c0d0564 | 667 | /* Store pointer to current element in p, because ziplistDelete will |
0f3dfa87 PN |
668 | * do a realloc which might result in a different "zl"-pointer. |
669 | * When the delete direction is back to front, we might delete the last | |
670 | * entry and end up with "p" pointing to ZIP_END, so check this. */ | |
6a8e35ad | 671 | *p = zl+offset; |
0f10458c PN |
672 | return zl; |
673 | } | |
674 | ||
033fb554 PN |
675 | /* Delete a range of entries from the ziplist. */ |
676 | unsigned char *ziplistDeleteRange(unsigned char *zl, unsigned int index, unsigned int num) { | |
677 | unsigned char *p = ziplistIndex(zl,index); | |
678 | return (p == NULL) ? zl : __ziplistDelete(zl,p,num); | |
679 | } | |
680 | ||
c09c2c3b | 681 | /* Compare entry pointer to by 'p' with 'entry'. Return 1 if equal. */ |
b6eb9703 | 682 | unsigned int ziplistCompare(unsigned char *p, unsigned char *sstr, unsigned int slen) { |
a5456b2c | 683 | zlentry entry; |
b6eb9703 PN |
684 | unsigned char sencoding; |
685 | long long zval, sval; | |
177a0a0b | 686 | if (p[0] == ZIP_END) return 0; |
c09c2c3b | 687 | |
a5456b2c | 688 | entry = zipEntry(p); |
c4705381 | 689 | if (ZIP_IS_STR(entry.encoding)) { |
c09c2c3b | 690 | /* Raw compare */ |
a5456b2c | 691 | if (entry.len == slen) { |
03e52931 | 692 | return memcmp(p+entry.headersize,sstr,slen) == 0; |
c09c2c3b PN |
693 | } else { |
694 | return 0; | |
695 | } | |
c4aace90 | 696 | } else { |
d593c488 | 697 | /* Try to compare encoded values */ |
61712508 | 698 | if (zipTryEncoding(sstr,slen,&sval,&sencoding)) { |
d593c488 | 699 | if (entry.encoding == sencoding) { |
b6eb9703 PN |
700 | zval = zipLoadInteger(p+entry.headersize,entry.encoding); |
701 | return zval == sval; | |
d593c488 | 702 | } |
c4aace90 | 703 | } |
c09c2c3b | 704 | } |
c4aace90 | 705 | return 0; |
c09c2c3b PN |
706 | } |
707 | ||
6205b463 PN |
708 | /* Return length of ziplist. */ |
709 | unsigned int ziplistLen(unsigned char *zl) { | |
710 | unsigned int len = 0; | |
e1f93d4b | 711 | if (ZIPLIST_LENGTH(zl) < UINT16_MAX) { |
6205b463 PN |
712 | len = ZIPLIST_LENGTH(zl); |
713 | } else { | |
714 | unsigned char *p = zl+ZIPLIST_HEADER_SIZE; | |
715 | while (*p != ZIP_END) { | |
716 | p += zipRawEntryLength(p); | |
717 | len++; | |
718 | } | |
719 | ||
720 | /* Re-store length if small enough */ | |
e1f93d4b | 721 | if (len < UINT16_MAX) ZIPLIST_LENGTH(zl) = len; |
6205b463 PN |
722 | } |
723 | return len; | |
724 | } | |
725 | ||
4812cf28 PN |
726 | /* Return size in bytes of ziplist. */ |
727 | unsigned int ziplistSize(unsigned char *zl) { | |
728 | return ZIPLIST_BYTES(zl); | |
729 | } | |
730 | ||
11ac6ff6 | 731 | void ziplistRepr(unsigned char *zl) { |
c8d9e7f4 | 732 | unsigned char *p; |
169d2ef1 | 733 | int index = 0; |
c8d9e7f4 | 734 | zlentry entry; |
11ac6ff6 | 735 | |
169d2ef1 PN |
736 | printf( |
737 | "{total bytes %d} " | |
738 | "{length %u}\n" | |
739 | "{tail offset %u}\n", | |
740 | ZIPLIST_BYTES(zl), | |
741 | ZIPLIST_LENGTH(zl), | |
742 | ZIPLIST_TAIL_OFFSET(zl)); | |
1ce81fa5 | 743 | p = ZIPLIST_ENTRY_HEAD(zl); |
11ac6ff6 | 744 | while(*p != ZIP_END) { |
c8d9e7f4 | 745 | entry = zipEntry(p); |
169d2ef1 PN |
746 | printf( |
747 | "{" | |
748 | "addr 0x%08lx, " | |
749 | "index %2d, " | |
750 | "offset %5ld, " | |
751 | "rl: %5u, " | |
752 | "hs %2u, " | |
753 | "pl: %5u, " | |
754 | "pls: %2u, " | |
755 | "payload %5u" | |
756 | "} ", | |
757 | (long unsigned int)p, | |
758 | index, | |
759 | p-zl, | |
760 | entry.headersize+entry.len, | |
761 | entry.headersize, | |
762 | entry.prevrawlen, | |
763 | entry.prevrawlensize, | |
764 | entry.len); | |
c8d9e7f4 | 765 | p += entry.headersize; |
c4705381 | 766 | if (ZIP_IS_STR(entry.encoding)) { |
169d2ef1 PN |
767 | if (entry.len > 40) { |
768 | fwrite(p,40,1,stdout); | |
769 | printf("..."); | |
770 | } else { | |
771 | fwrite(p,entry.len,1,stdout); | |
772 | } | |
29b14d5f | 773 | } else { |
3688d7f3 | 774 | printf("%lld", (long long) zipLoadInteger(p,entry.encoding)); |
29b14d5f | 775 | } |
11ac6ff6 | 776 | printf("\n"); |
c8d9e7f4 | 777 | p += entry.len; |
169d2ef1 | 778 | index++; |
11ac6ff6 PN |
779 | } |
780 | printf("{end}\n\n"); | |
781 | } | |
782 | ||
783 | #ifdef ZIPLIST_TEST_MAIN | |
ffc15852 | 784 | #include <sys/time.h> |
306c6a02 PN |
785 | #include "adlist.h" |
786 | #include "sds.h" | |
787 | ||
788 | #define debug(f, ...) { if (DEBUG) printf(f, __VA_ARGS__); } | |
11ac6ff6 | 789 | |
08253bf4 PN |
790 | unsigned char *createList() { |
791 | unsigned char *zl = ziplistNew(); | |
b84186ff PN |
792 | zl = ziplistPush(zl, (unsigned char*)"foo", 3, ZIPLIST_TAIL); |
793 | zl = ziplistPush(zl, (unsigned char*)"quux", 4, ZIPLIST_TAIL); | |
794 | zl = ziplistPush(zl, (unsigned char*)"hello", 5, ZIPLIST_HEAD); | |
795 | zl = ziplistPush(zl, (unsigned char*)"1024", 4, ZIPLIST_TAIL); | |
08253bf4 PN |
796 | return zl; |
797 | } | |
798 | ||
29b14d5f PN |
799 | unsigned char *createIntList() { |
800 | unsigned char *zl = ziplistNew(); | |
801 | char buf[32]; | |
802 | ||
803 | sprintf(buf, "100"); | |
b84186ff | 804 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), ZIPLIST_TAIL); |
29b14d5f | 805 | sprintf(buf, "128000"); |
b84186ff | 806 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), ZIPLIST_TAIL); |
29b14d5f | 807 | sprintf(buf, "-100"); |
b84186ff | 808 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), ZIPLIST_HEAD); |
29b14d5f | 809 | sprintf(buf, "4294967296"); |
b84186ff | 810 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), ZIPLIST_HEAD); |
29b14d5f | 811 | sprintf(buf, "non integer"); |
b84186ff | 812 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), ZIPLIST_TAIL); |
29b14d5f | 813 | sprintf(buf, "much much longer non integer"); |
b84186ff | 814 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), ZIPLIST_TAIL); |
29b14d5f PN |
815 | return zl; |
816 | } | |
817 | ||
ffc15852 PN |
818 | long long usec(void) { |
819 | struct timeval tv; | |
820 | gettimeofday(&tv,NULL); | |
821 | return (((long long)tv.tv_sec)*1000000)+tv.tv_usec; | |
822 | } | |
823 | ||
824 | void stress(int pos, int num, int maxsize, int dnum) { | |
825 | int i,j,k; | |
826 | unsigned char *zl; | |
827 | char posstr[2][5] = { "HEAD", "TAIL" }; | |
828 | long long start; | |
829 | for (i = 0; i < maxsize; i+=dnum) { | |
830 | zl = ziplistNew(); | |
831 | for (j = 0; j < i; j++) { | |
832 | zl = ziplistPush(zl,(unsigned char*)"quux",4,ZIPLIST_TAIL); | |
833 | } | |
834 | ||
835 | /* Do num times a push+pop from pos */ | |
836 | start = usec(); | |
837 | for (k = 0; k < num; k++) { | |
838 | zl = ziplistPush(zl,(unsigned char*)"quux",4,pos); | |
839 | zl = ziplistDeleteRange(zl,0,1); | |
840 | } | |
841 | printf("List size: %8d, bytes: %8d, %dx push+pop (%s): %6lld usec\n", | |
842 | i,ZIPLIST_BYTES(zl),num,posstr[pos],usec()-start); | |
843 | zfree(zl); | |
844 | } | |
845 | } | |
846 | ||
306974f5 PN |
847 | void pop(unsigned char *zl, int where) { |
848 | unsigned char *p, *vstr; | |
849 | unsigned int vlen; | |
850 | long long vlong; | |
851 | ||
852 | p = ziplistIndex(zl,where == ZIPLIST_HEAD ? 0 : -1); | |
853 | if (ziplistGet(p,&vstr,&vlen,&vlong)) { | |
854 | if (where == ZIPLIST_HEAD) | |
855 | printf("Pop head: "); | |
856 | else | |
857 | printf("Pop tail: "); | |
858 | ||
859 | if (vstr) | |
860 | fwrite(vstr,vlen,1,stdout); | |
861 | else | |
862 | printf("%lld", vlong); | |
863 | ||
864 | printf("\n"); | |
865 | ziplistDeleteRange(zl,-1,1); | |
866 | } else { | |
867 | printf("ERROR: Could not pop\n"); | |
868 | exit(1); | |
869 | } | |
870 | } | |
871 | ||
306c6a02 PN |
872 | void randstring(char *target, unsigned int min, unsigned int max) { |
873 | int p, len = min+rand()%(max-min+1); | |
874 | int minval, maxval; | |
875 | switch(rand() % 3) { | |
876 | case 0: | |
877 | minval = 0; | |
878 | maxval = 255; | |
879 | break; | |
880 | case 1: | |
881 | minval = 48; | |
882 | maxval = 122; | |
883 | break; | |
884 | case 2: | |
885 | minval = 48; | |
886 | maxval = 52; | |
887 | break; | |
888 | default: | |
889 | assert(NULL); | |
890 | } | |
891 | ||
892 | while(p < len) | |
893 | target[p++] = minval+rand()%(maxval-minval+1); | |
894 | return; | |
895 | } | |
896 | ||
897 | ||
08253bf4 | 898 | int main(int argc, char **argv) { |
a24ba809 | 899 | unsigned char *zl, *p; |
b84186ff | 900 | unsigned char *entry; |
335d16bc | 901 | unsigned int elen; |
75d8978e | 902 | long long value; |
08253bf4 | 903 | |
84403fe7 PN |
904 | /* If an argument is given, use it as the random seed. */ |
905 | if (argc == 2) | |
906 | srand(atoi(argv[1])); | |
907 | ||
29b14d5f PN |
908 | zl = createIntList(); |
909 | ziplistRepr(zl); | |
910 | ||
08253bf4 | 911 | zl = createList(); |
11ac6ff6 PN |
912 | ziplistRepr(zl); |
913 | ||
306974f5 | 914 | pop(zl,ZIPLIST_TAIL); |
11ac6ff6 PN |
915 | ziplistRepr(zl); |
916 | ||
306974f5 | 917 | pop(zl,ZIPLIST_HEAD); |
11ac6ff6 PN |
918 | ziplistRepr(zl); |
919 | ||
306974f5 | 920 | pop(zl,ZIPLIST_TAIL); |
dcb9cf4e PN |
921 | ziplistRepr(zl); |
922 | ||
306974f5 | 923 | pop(zl,ZIPLIST_TAIL); |
dcb9cf4e PN |
924 | ziplistRepr(zl); |
925 | ||
c03206fd PN |
926 | printf("Get element at index 3:\n"); |
927 | { | |
928 | zl = createList(); | |
929 | p = ziplistIndex(zl, 3); | |
930 | if (!ziplistGet(p, &entry, &elen, &value)) { | |
931 | printf("ERROR: Could not access index 3\n"); | |
932 | return 1; | |
933 | } | |
934 | if (entry) { | |
935 | fwrite(entry,elen,1,stdout); | |
936 | printf("\n"); | |
937 | } else { | |
938 | printf("%lld\n", value); | |
939 | } | |
940 | printf("\n"); | |
941 | } | |
942 | ||
943 | printf("Get element at index 4 (out of range):\n"); | |
944 | { | |
945 | zl = createList(); | |
946 | p = ziplistIndex(zl, 4); | |
947 | if (p == NULL) { | |
948 | printf("No entry\n"); | |
949 | } else { | |
950 | printf("ERROR: Out of range index should return NULL, returned offset: %ld\n", p-zl); | |
951 | return 1; | |
952 | } | |
953 | printf("\n"); | |
954 | } | |
955 | ||
956 | printf("Get element at index -1 (last element):\n"); | |
957 | { | |
958 | zl = createList(); | |
959 | p = ziplistIndex(zl, -1); | |
960 | if (!ziplistGet(p, &entry, &elen, &value)) { | |
961 | printf("ERROR: Could not access index -1\n"); | |
962 | return 1; | |
963 | } | |
964 | if (entry) { | |
965 | fwrite(entry,elen,1,stdout); | |
966 | printf("\n"); | |
967 | } else { | |
968 | printf("%lld\n", value); | |
969 | } | |
970 | printf("\n"); | |
971 | } | |
972 | ||
973 | printf("Get element at index -4 (first element):\n"); | |
974 | { | |
975 | zl = createList(); | |
976 | p = ziplistIndex(zl, -4); | |
977 | if (!ziplistGet(p, &entry, &elen, &value)) { | |
978 | printf("ERROR: Could not access index -4\n"); | |
979 | return 1; | |
980 | } | |
981 | if (entry) { | |
982 | fwrite(entry,elen,1,stdout); | |
983 | printf("\n"); | |
984 | } else { | |
985 | printf("%lld\n", value); | |
986 | } | |
987 | printf("\n"); | |
988 | } | |
989 | ||
990 | printf("Get element at index -5 (reverse out of range):\n"); | |
991 | { | |
992 | zl = createList(); | |
993 | p = ziplistIndex(zl, -5); | |
994 | if (p == NULL) { | |
995 | printf("No entry\n"); | |
996 | } else { | |
997 | printf("ERROR: Out of range index should return NULL, returned offset: %ld\n", p-zl); | |
998 | return 1; | |
999 | } | |
1000 | printf("\n"); | |
1001 | } | |
1002 | ||
08253bf4 PN |
1003 | printf("Iterate list from 0 to end:\n"); |
1004 | { | |
1005 | zl = createList(); | |
1006 | p = ziplistIndex(zl, 0); | |
75d8978e | 1007 | while (ziplistGet(p, &entry, &elen, &value)) { |
335d16bc | 1008 | printf("Entry: "); |
75d8978e PN |
1009 | if (entry) { |
1010 | fwrite(entry,elen,1,stdout); | |
1011 | } else { | |
1012 | printf("%lld", value); | |
1013 | } | |
8632fb30 | 1014 | p = ziplistNext(zl,p); |
75d8978e | 1015 | printf("\n"); |
08253bf4 PN |
1016 | } |
1017 | printf("\n"); | |
1018 | } | |
1019 | ||
1020 | printf("Iterate list from 1 to end:\n"); | |
1021 | { | |
1022 | zl = createList(); | |
1023 | p = ziplistIndex(zl, 1); | |
75d8978e | 1024 | while (ziplistGet(p, &entry, &elen, &value)) { |
335d16bc | 1025 | printf("Entry: "); |
75d8978e PN |
1026 | if (entry) { |
1027 | fwrite(entry,elen,1,stdout); | |
1028 | } else { | |
1029 | printf("%lld", value); | |
1030 | } | |
8632fb30 | 1031 | p = ziplistNext(zl,p); |
75d8978e | 1032 | printf("\n"); |
08253bf4 PN |
1033 | } |
1034 | printf("\n"); | |
1035 | } | |
1036 | ||
1037 | printf("Iterate list from 2 to end:\n"); | |
1038 | { | |
1039 | zl = createList(); | |
1040 | p = ziplistIndex(zl, 2); | |
75d8978e | 1041 | while (ziplistGet(p, &entry, &elen, &value)) { |
335d16bc | 1042 | printf("Entry: "); |
75d8978e PN |
1043 | if (entry) { |
1044 | fwrite(entry,elen,1,stdout); | |
1045 | } else { | |
1046 | printf("%lld", value); | |
1047 | } | |
8632fb30 | 1048 | p = ziplistNext(zl,p); |
75d8978e | 1049 | printf("\n"); |
08253bf4 PN |
1050 | } |
1051 | printf("\n"); | |
1052 | } | |
1053 | ||
1054 | printf("Iterate starting out of range:\n"); | |
1055 | { | |
1056 | zl = createList(); | |
75d8978e PN |
1057 | p = ziplistIndex(zl, 4); |
1058 | if (!ziplistGet(p, &entry, &elen, &value)) { | |
08253bf4 PN |
1059 | printf("No entry\n"); |
1060 | } else { | |
1061 | printf("ERROR\n"); | |
1062 | } | |
779deb60 PN |
1063 | printf("\n"); |
1064 | } | |
1065 | ||
0f3dfa87 PN |
1066 | printf("Iterate from back to front:\n"); |
1067 | { | |
1068 | zl = createList(); | |
1069 | p = ziplistIndex(zl, -1); | |
1070 | while (ziplistGet(p, &entry, &elen, &value)) { | |
1071 | printf("Entry: "); | |
1072 | if (entry) { | |
1073 | fwrite(entry,elen,1,stdout); | |
1074 | } else { | |
1075 | printf("%lld", value); | |
1076 | } | |
8632fb30 | 1077 | p = ziplistPrev(zl,p); |
0f3dfa87 PN |
1078 | printf("\n"); |
1079 | } | |
1080 | printf("\n"); | |
1081 | } | |
1082 | ||
1083 | printf("Iterate from back to front, deleting all items:\n"); | |
1084 | { | |
1085 | zl = createList(); | |
1086 | p = ziplistIndex(zl, -1); | |
1087 | while (ziplistGet(p, &entry, &elen, &value)) { | |
1088 | printf("Entry: "); | |
1089 | if (entry) { | |
1090 | fwrite(entry,elen,1,stdout); | |
1091 | } else { | |
1092 | printf("%lld", value); | |
1093 | } | |
8632fb30 PN |
1094 | zl = ziplistDelete(zl,&p); |
1095 | p = ziplistPrev(zl,p); | |
0f3dfa87 PN |
1096 | printf("\n"); |
1097 | } | |
1098 | printf("\n"); | |
1099 | } | |
1100 | ||
779deb60 PN |
1101 | printf("Delete inclusive range 0,0:\n"); |
1102 | { | |
1103 | zl = createList(); | |
ba5b4bde | 1104 | zl = ziplistDeleteRange(zl, 0, 1); |
779deb60 PN |
1105 | ziplistRepr(zl); |
1106 | } | |
1107 | ||
1108 | printf("Delete inclusive range 0,1:\n"); | |
1109 | { | |
1110 | zl = createList(); | |
ba5b4bde | 1111 | zl = ziplistDeleteRange(zl, 0, 2); |
779deb60 PN |
1112 | ziplistRepr(zl); |
1113 | } | |
1114 | ||
1115 | printf("Delete inclusive range 1,2:\n"); | |
1116 | { | |
1117 | zl = createList(); | |
ba5b4bde | 1118 | zl = ziplistDeleteRange(zl, 1, 2); |
779deb60 PN |
1119 | ziplistRepr(zl); |
1120 | } | |
1121 | ||
1122 | printf("Delete with start index out of range:\n"); | |
1123 | { | |
1124 | zl = createList(); | |
ba5b4bde | 1125 | zl = ziplistDeleteRange(zl, 5, 1); |
779deb60 PN |
1126 | ziplistRepr(zl); |
1127 | } | |
1128 | ||
1129 | printf("Delete with num overflow:\n"); | |
1130 | { | |
1131 | zl = createList(); | |
ba5b4bde | 1132 | zl = ziplistDeleteRange(zl, 1, 5); |
779deb60 | 1133 | ziplistRepr(zl); |
08253bf4 PN |
1134 | } |
1135 | ||
0f10458c PN |
1136 | printf("Delete foo while iterating:\n"); |
1137 | { | |
1138 | zl = createList(); | |
b84186ff PN |
1139 | p = ziplistIndex(zl,0); |
1140 | while (ziplistGet(p,&entry,&elen,&value)) { | |
1141 | if (entry && strncmp("foo",(char*)entry,elen) == 0) { | |
0f10458c | 1142 | printf("Delete foo\n"); |
b84186ff | 1143 | zl = ziplistDelete(zl,&p); |
0f10458c PN |
1144 | } else { |
1145 | printf("Entry: "); | |
75d8978e PN |
1146 | if (entry) { |
1147 | fwrite(entry,elen,1,stdout); | |
1148 | } else { | |
b84186ff | 1149 | printf("%lld",value); |
75d8978e | 1150 | } |
b84186ff | 1151 | p = ziplistNext(zl,p); |
75d8978e | 1152 | printf("\n"); |
0f10458c PN |
1153 | } |
1154 | } | |
1155 | printf("\n"); | |
1156 | ziplistRepr(zl); | |
c09c2c3b PN |
1157 | } |
1158 | ||
b0d605c1 PN |
1159 | printf("Regression test for >255 byte strings:\n"); |
1160 | { | |
1161 | char v1[257],v2[257]; | |
1162 | memset(v1,'x',256); | |
1163 | memset(v2,'y',256); | |
1164 | zl = ziplistNew(); | |
1165 | zl = ziplistPush(zl,(unsigned char*)v1,strlen(v1),ZIPLIST_TAIL); | |
1166 | zl = ziplistPush(zl,(unsigned char*)v2,strlen(v2),ZIPLIST_TAIL); | |
1167 | ||
1168 | /* Pop values again and compare their value. */ | |
1169 | p = ziplistIndex(zl,0); | |
1170 | assert(ziplistGet(p,&entry,&elen,&value)); | |
306c6a02 | 1171 | assert(strncmp(v1,(char*)entry,elen) == 0); |
b0d605c1 PN |
1172 | p = ziplistIndex(zl,1); |
1173 | assert(ziplistGet(p,&entry,&elen,&value)); | |
306c6a02 | 1174 | assert(strncmp(v2,(char*)entry,elen) == 0); |
b0d605c1 PN |
1175 | printf("SUCCESS\n\n"); |
1176 | } | |
1177 | ||
dbaa41c6 PN |
1178 | printf("Create long list and check indices:\n"); |
1179 | { | |
1180 | zl = ziplistNew(); | |
1181 | char buf[32]; | |
1182 | int i,len; | |
1183 | for (i = 0; i < 1000; i++) { | |
1184 | len = sprintf(buf,"%d",i); | |
b84186ff | 1185 | zl = ziplistPush(zl,(unsigned char*)buf,len,ZIPLIST_TAIL); |
dbaa41c6 PN |
1186 | } |
1187 | for (i = 0; i < 1000; i++) { | |
1188 | p = ziplistIndex(zl,i); | |
1189 | assert(ziplistGet(p,NULL,NULL,&value)); | |
1190 | assert(i == value); | |
1191 | ||
1192 | p = ziplistIndex(zl,-i-1); | |
1193 | assert(ziplistGet(p,NULL,NULL,&value)); | |
1194 | assert(999-i == value); | |
1195 | } | |
1196 | printf("SUCCESS\n\n"); | |
1197 | } | |
1198 | ||
c09c2c3b PN |
1199 | printf("Compare strings with ziplist entries:\n"); |
1200 | { | |
1201 | zl = createList(); | |
b84186ff PN |
1202 | p = ziplistIndex(zl,0); |
1203 | if (!ziplistCompare(p,(unsigned char*)"hello",5)) { | |
dcb9cf4e | 1204 | printf("ERROR: not \"hello\"\n"); |
a24ba809 | 1205 | return 1; |
c09c2c3b | 1206 | } |
b84186ff | 1207 | if (ziplistCompare(p,(unsigned char*)"hella",5)) { |
dcb9cf4e | 1208 | printf("ERROR: \"hella\"\n"); |
a24ba809 | 1209 | return 1; |
c09c2c3b PN |
1210 | } |
1211 | ||
b84186ff PN |
1212 | p = ziplistIndex(zl,3); |
1213 | if (!ziplistCompare(p,(unsigned char*)"1024",4)) { | |
dcb9cf4e | 1214 | printf("ERROR: not \"1024\"\n"); |
a24ba809 | 1215 | return 1; |
c09c2c3b | 1216 | } |
b84186ff | 1217 | if (ziplistCompare(p,(unsigned char*)"1025",4)) { |
dcb9cf4e | 1218 | printf("ERROR: \"1025\"\n"); |
a24ba809 | 1219 | return 1; |
c09c2c3b | 1220 | } |
169d2ef1 PN |
1221 | printf("SUCCESS\n\n"); |
1222 | } | |
1223 | ||
1224 | printf("Stress with random payloads of different encoding:\n"); | |
1225 | { | |
306c6a02 | 1226 | int i,j,len,where; |
169d2ef1 | 1227 | unsigned char *p; |
306c6a02 PN |
1228 | char buf[1024]; |
1229 | list *ref; | |
1230 | listNode *refnode; | |
1231 | ||
1232 | /* Hold temp vars from ziplist */ | |
1233 | unsigned char *sstr; | |
1234 | unsigned int slen; | |
1235 | long long sval; | |
1236 | ||
1237 | /* In the regression for the cascade bug, it was triggered | |
1238 | * with a random seed of 2. */ | |
1239 | srand(2); | |
1240 | ||
1241 | for (i = 0; i < 20000; i++) { | |
1242 | zl = ziplistNew(); | |
1243 | ref = listCreate(); | |
1244 | listSetFreeMethod(ref,sdsfree); | |
1245 | len = rand() % 256; | |
1246 | ||
1247 | /* Create lists */ | |
1248 | for (j = 0; j < len; j++) { | |
1249 | where = (rand() & 1) ? ZIPLIST_HEAD : ZIPLIST_TAIL; | |
1250 | switch(rand() % 4) { | |
1251 | case 0: | |
1252 | sprintf(buf,"%lld",(0LL + rand()) >> 20); | |
1253 | break; | |
1254 | case 1: | |
1255 | sprintf(buf,"%lld",(0LL + rand())); | |
1256 | break; | |
1257 | case 2: | |
1258 | sprintf(buf,"%lld",(0LL + rand()) << 20); | |
1259 | break; | |
1260 | case 3: | |
1261 | randstring(buf,0,256); | |
1262 | break; | |
1263 | default: | |
1264 | assert(NULL); | |
1265 | } | |
1266 | ||
1267 | /* Add to ziplist */ | |
169d2ef1 | 1268 | zl = ziplistPush(zl, (unsigned char*)buf, strlen(buf), where); |
169d2ef1 | 1269 | |
306c6a02 PN |
1270 | /* Add to reference list */ |
1271 | if (where == ZIPLIST_HEAD) { | |
1272 | listAddNodeHead(ref,sdsnew(buf)); | |
1273 | } else if (where == ZIPLIST_TAIL) { | |
1274 | listAddNodeTail(ref,sdsnew(buf)); | |
1275 | } else { | |
1276 | assert(NULL); | |
1277 | } | |
169d2ef1 PN |
1278 | } |
1279 | ||
306c6a02 PN |
1280 | assert(listLength(ref) == ziplistLen(zl)); |
1281 | for (j = 0; j < len; j++) { | |
1282 | /* Naive way to get elements, but similar to the stresser | |
1283 | * executed from the Tcl test suite. */ | |
1284 | p = ziplistIndex(zl,j); | |
1285 | refnode = listIndex(ref,j); | |
1286 | ||
1287 | assert(ziplistGet(p,&sstr,&slen,&sval)); | |
1288 | if (sstr == NULL) { | |
1289 | sprintf(buf,"%lld",sval); | |
1290 | } else { | |
1291 | memcpy(buf,sstr,slen); | |
1292 | buf[slen] = '\0'; | |
1293 | } | |
1294 | assert(strcmp(buf,listNodeValue(refnode)) == 0); | |
1295 | } | |
1296 | zfree(zl); | |
1297 | listRelease(ref); | |
169d2ef1 PN |
1298 | } |
1299 | printf("SUCCESS\n\n"); | |
0f10458c PN |
1300 | } |
1301 | ||
ffc15852 PN |
1302 | printf("Stress with variable ziplist size:\n"); |
1303 | { | |
1304 | stress(ZIPLIST_HEAD,100000,16384,256); | |
1305 | stress(ZIPLIST_TAIL,100000,16384,256); | |
1306 | } | |
1307 | ||
11ac6ff6 PN |
1308 | return 0; |
1309 | } | |
ffc15852 | 1310 | |
11ac6ff6 | 1311 | #endif |