]> git.saurik.com Git - redis.git/blob - zipmap.c
7f6268b4827fd1f48b8a68901bb24a1b2852a4f1
[redis.git] / zipmap.c
1 /* String -> String Map data structure optimized for size.
2 * This file implements a data structure mapping strings to other strings
3 * implementing an O(n) lookup data structure designed to be very memory
4 * efficient.
5 *
6 * The Redis Hash type uses this data structure for hashes composed of a small
7 * number of elements, to switch to an hash table once a given number of
8 * elements is reached.
9 *
10 * Given that many times Redis Hashes are used to represent objects composed
11 * of few fields, this is a very big win in terms of used memory.
12 *
13 * --------------------------------------------------------------------------
14 *
15 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are met:
20 *
21 * * Redistributions of source code must retain the above copyright notice,
22 * this list of conditions and the following disclaimer.
23 * * Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 * * Neither the name of Redis nor the names of its contributors may be used
27 * to endorse or promote products derived from this software without
28 * specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
31 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
34 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
35 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
36 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
37 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
38 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 * POSSIBILITY OF SUCH DAMAGE.
41 */
42
43 /* Memory layout of a zipmap, for the map "foo" => "bar", "hello" => "world":
44 *
45 * <zmlen><len>"foo"<len><free>"bar"<len>"hello"<len><free>"world"
46 *
47 * <zmlen> is 1 byte length that holds the current size of the zipmap.
48 * When the zipmap length is greater than or equal to 254, this value
49 * is not used and the zipmap needs to be traversed to find out the length.
50 *
51 * <len> is the length of the following string (key or value).
52 * <len> lengths are encoded in a single value or in a 5 bytes value.
53 * If the first byte value (as an unsigned 8 bit value) is between 0 and
54 * 252, it's a single-byte length. If it is 253 then a four bytes unsigned
55 * integer follows (in the host byte ordering). A value fo 255 is used to
56 * signal the end of the hash. The special value 254 is used to mark
57 * empty space that can be used to add new key/value pairs.
58 *
59 * <free> is the number of free unused bytes
60 * after the string, resulting from modification of values associated to a
61 * key (for instance if "foo" is set to "bar', and later "foo" will be se to
62 * "hi", I'll have a free byte to use if the value will enlarge again later,
63 * or even in order to add a key/value pair if it fits.
64 *
65 * <free> is always an unsigned 8 bit number, because if after an
66 * update operation there are more than a few free bytes, the zipmap will be
67 * reallocated to make sure it is as small as possible.
68 *
69 * The most compact representation of the above two elements hash is actually:
70 *
71 * "\x02\x03foo\x03\x00bar\x05hello\x05\x00world\xff"
72 *
73 * Note that because keys and values are prefixed length "objects",
74 * the lookup will take O(N) where N is the number of elements
75 * in the zipmap and *not* the number of bytes needed to represent the zipmap.
76 * This lowers the constant times considerably.
77 */
78
79 #include <stdio.h>
80 #include <string.h>
81 #include <assert.h>
82 #include "zmalloc.h"
83
84 #define ZIPMAP_BIGLEN 254
85 #define ZIPMAP_END 255
86
87 /* The following defines the max value for the <free> field described in the
88 * comments above, that is, the max number of trailing bytes in a value. */
89 #define ZIPMAP_VALUE_MAX_FREE 4
90
91 /* The following macro returns the number of bytes needed to encode the length
92 * for the integer value _l, that is, 1 byte for lengths < ZIPMAP_BIGLEN and
93 * 5 bytes for all the other lengths. */
94 #define ZIPMAP_LEN_BYTES(_l) (((_l) < ZIPMAP_BIGLEN) ? 1 : sizeof(unsigned int)+1)
95
96 /* Create a new empty zipmap. */
97 unsigned char *zipmapNew(void) {
98 unsigned char *zm = zmalloc(2);
99
100 zm[0] = 0; /* Length */
101 zm[1] = ZIPMAP_END;
102 return zm;
103 }
104
105 /* Decode the encoded length pointed by 'p' */
106 static unsigned int zipmapDecodeLength(unsigned char *p) {
107 unsigned int len = *p;
108
109 if (len < ZIPMAP_BIGLEN) return len;
110 memcpy(&len,p+1,sizeof(unsigned int));
111 return len;
112 }
113
114 /* Encode the length 'l' writing it in 'p'. If p is NULL it just returns
115 * the amount of bytes required to encode such a length. */
116 static unsigned int zipmapEncodeLength(unsigned char *p, unsigned int len) {
117 if (p == NULL) {
118 return ZIPMAP_LEN_BYTES(len);
119 } else {
120 if (len < ZIPMAP_BIGLEN) {
121 p[0] = len;
122 return 1;
123 } else {
124 p[0] = ZIPMAP_BIGLEN;
125 memcpy(p+1,&len,sizeof(len));
126 return 1+sizeof(len);
127 }
128 }
129 }
130
131 /* Search for a matching key, returning a pointer to the entry inside the
132 * zipmap. Returns NULL if the key is not found.
133 *
134 * If NULL is returned, and totlen is not NULL, it is set to the entire
135 * size of the zimap, so that the calling function will be able to
136 * reallocate the original zipmap to make room for more entries. */
137 static unsigned char *zipmapLookupRaw(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned int *totlen) {
138 unsigned char *p = zm+1, *k = NULL;
139 unsigned int l;
140
141 while(*p != ZIPMAP_END) {
142 unsigned char free;
143
144 /* Match or skip the key */
145 l = zipmapDecodeLength(p);
146 if (k == NULL && l == klen && !memcmp(p+1,key,l)) {
147 /* Only return when the user doesn't care
148 * for the total length of the zipmap. */
149 if (totlen != NULL) {
150 k = p;
151 } else {
152 return p;
153 }
154 }
155 p += zipmapEncodeLength(NULL,l) + l;
156 /* Skip the value as well */
157 l = zipmapDecodeLength(p);
158 p += zipmapEncodeLength(NULL,l);
159 free = p[0];
160 p += l+1+free; /* +1 to skip the free byte */
161 }
162 if (totlen != NULL) *totlen = (unsigned int)(p-zm)+1;
163 return k;
164 }
165
166 static unsigned long zipmapRequiredLength(unsigned int klen, unsigned int vlen) {
167 unsigned int l;
168
169 l = klen+vlen+3;
170 if (klen >= ZIPMAP_BIGLEN) l += 4;
171 if (vlen >= ZIPMAP_BIGLEN) l += 4;
172 return l;
173 }
174
175 /* Return the total amount used by a key (encoded length + payload) */
176 static unsigned int zipmapRawKeyLength(unsigned char *p) {
177 unsigned int l = zipmapDecodeLength(p);
178
179 return zipmapEncodeLength(NULL,l) + l;
180 }
181
182 /* Return the total amount used by a value
183 * (encoded length + single byte free count + payload) */
184 static unsigned int zipmapRawValueLength(unsigned char *p) {
185 unsigned int l = zipmapDecodeLength(p);
186 unsigned int used;
187
188 used = zipmapEncodeLength(NULL,l);
189 used += p[used] + 1 + l;
190 return used;
191 }
192
193 /* If 'p' points to a key, this function returns the total amount of
194 * bytes used to store this entry (entry = key + associated value + trailing
195 * free space if any). */
196 static unsigned int zipmapRawEntryLength(unsigned char *p) {
197 unsigned int l = zipmapRawKeyLength(p);
198 return l + zipmapRawValueLength(p+l);
199 }
200
201 static inline unsigned char *zipmapResize(unsigned char *zm, unsigned int len) {
202 zm = zrealloc(zm, len);
203 zm[len-1] = ZIPMAP_END;
204 return zm;
205 }
206
207 /* Set key to value, creating the key if it does not already exist.
208 * If 'update' is not NULL, *update is set to 1 if the key was
209 * already preset, otherwise to 0. */
210 unsigned char *zipmapSet(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned char *val, unsigned int vlen, int *update) {
211 unsigned int zmlen;
212 unsigned int freelen, reqlen = zipmapRequiredLength(klen,vlen);
213 unsigned int empty, vempty;
214 unsigned char *p;
215
216 freelen = reqlen;
217 if (update) *update = 0;
218 p = zipmapLookupRaw(zm,key,klen,&zmlen);
219 if (p == NULL) {
220 /* Key not found: enlarge */
221 zm = zipmapResize(zm, zmlen+reqlen);
222 p = zm+zmlen-1;
223 zmlen = zmlen+reqlen;
224
225 /* Increase zipmap length (this is an insert) */
226 if (zm[0] < ZIPMAP_BIGLEN) zm[0]++;
227 } else {
228 /* Key found. Is there enough space for the new value? */
229 /* Compute the total length: */
230 if (update) *update = 1;
231 freelen = zipmapRawEntryLength(p);
232 if (freelen < reqlen) {
233 /* Move remaining entries to the current position, so this
234 * pair can be appended. Note: the +1 in memmove is caused
235 * by the end-of-zipmap byte. */
236 memmove(p, p+freelen, zmlen-((p-zm)+freelen+1));
237 zm = zipmapResize(zm, zmlen-freelen+reqlen);
238 p = zm+zmlen-1-freelen;
239 zmlen = zmlen-1-freelen+reqlen;
240 freelen = reqlen;
241 }
242 }
243
244 /* Ok we have a suitable block where to write the new key/value
245 * entry. */
246 empty = freelen-reqlen;
247 /* If there is too much free space mark it as a free block instead
248 * of adding it as trailing empty space for the value, as we want
249 * zipmaps to be very space efficient. */
250 if (empty >= ZIPMAP_VALUE_MAX_FREE) {
251 memmove(p+reqlen, p+freelen, zmlen-((p-zm)+freelen+1));
252 zmlen -= empty;
253 zm = zipmapResize(zm, zmlen);
254 vempty = 0;
255 } else {
256 vempty = empty;
257 }
258
259 /* Just write the key + value and we are done. */
260 /* Key: */
261 p += zipmapEncodeLength(p,klen);
262 memcpy(p,key,klen);
263 p += klen;
264 /* Value: */
265 p += zipmapEncodeLength(p,vlen);
266 *p++ = vempty;
267 memcpy(p,val,vlen);
268 return zm;
269 }
270
271 /* Remove the specified key. If 'deleted' is not NULL the pointed integer is
272 * set to 0 if the key was not found, to 1 if it was found and deleted. */
273 unsigned char *zipmapDel(unsigned char *zm, unsigned char *key, unsigned int klen, int *deleted) {
274 unsigned int zmlen, freelen;
275 unsigned char *p = zipmapLookupRaw(zm,key,klen,&zmlen);
276 if (p) {
277 freelen = zipmapRawEntryLength(p);
278 memmove(p, p+freelen, zmlen-((p-zm)+freelen+1));
279 zm = zipmapResize(zm, zmlen-freelen);
280
281 /* Decrease zipmap length */
282 if (zm[0] < ZIPMAP_BIGLEN) zm[0]--;
283
284 if (deleted) *deleted = 1;
285 } else {
286 if (deleted) *deleted = 0;
287 }
288 return zm;
289 }
290
291 /* Call it before to iterate trought elements via zipmapNext() */
292 unsigned char *zipmapRewind(unsigned char *zm) {
293 return zm+1;
294 }
295
296 /* This function is used to iterate through all the zipmap elements.
297 * In the first call the first argument is the pointer to the zipmap + 1.
298 * In the next calls what zipmapNext returns is used as first argument.
299 * Example:
300 *
301 * unsigned char *i = zipmapRewind(my_zipmap);
302 * while((i = zipmapNext(i,&key,&klen,&value,&vlen)) != NULL) {
303 * printf("%d bytes key at $p\n", klen, key);
304 * printf("%d bytes value at $p\n", vlen, value);
305 * }
306 */
307 unsigned char *zipmapNext(unsigned char *zm, unsigned char **key, unsigned int *klen, unsigned char **value, unsigned int *vlen) {
308 if (zm[0] == ZIPMAP_END) return NULL;
309 if (key) {
310 *key = zm;
311 *klen = zipmapDecodeLength(zm);
312 *key += ZIPMAP_LEN_BYTES(*klen);
313 }
314 zm += zipmapRawKeyLength(zm);
315 if (value) {
316 *value = zm+1;
317 *vlen = zipmapDecodeLength(zm);
318 *value += ZIPMAP_LEN_BYTES(*vlen);
319 }
320 zm += zipmapRawValueLength(zm);
321 return zm;
322 }
323
324 /* Search a key and retrieve the pointer and len of the associated value.
325 * If the key is found the function returns 1, otherwise 0. */
326 int zipmapGet(unsigned char *zm, unsigned char *key, unsigned int klen, unsigned char **value, unsigned int *vlen) {
327 unsigned char *p;
328
329 if ((p = zipmapLookupRaw(zm,key,klen,NULL)) == NULL) return 0;
330 p += zipmapRawKeyLength(p);
331 *vlen = zipmapDecodeLength(p);
332 *value = p + ZIPMAP_LEN_BYTES(*vlen) + 1;
333 return 1;
334 }
335
336 /* Return 1 if the key exists, otherwise 0 is returned. */
337 int zipmapExists(unsigned char *zm, unsigned char *key, unsigned int klen) {
338 return zipmapLookupRaw(zm,key,klen,NULL) != NULL;
339 }
340
341 /* Return the number of entries inside a zipmap */
342 unsigned int zipmapLen(unsigned char *zm) {
343 unsigned int len = 0;
344 if (zm[0] < ZIPMAP_BIGLEN) {
345 len = zm[0];
346 } else {
347 unsigned char *p = zipmapRewind(zm);
348 while((p = zipmapNext(p,NULL,NULL,NULL,NULL)) != NULL) len++;
349
350 /* Re-store length if small enough */
351 if (len < ZIPMAP_BIGLEN) zm[0] = len;
352 }
353 return len;
354 }
355
356 void zipmapRepr(unsigned char *p) {
357 unsigned int l;
358
359 printf("{status %u}",*p++);
360 while(1) {
361 if (p[0] == ZIPMAP_END) {
362 printf("{end}");
363 break;
364 } else {
365 unsigned char e;
366
367 l = zipmapDecodeLength(p);
368 printf("{key %u}",l);
369 p += zipmapEncodeLength(NULL,l);
370 fwrite(p,l,1,stdout);
371 p += l;
372
373 l = zipmapDecodeLength(p);
374 printf("{value %u}",l);
375 p += zipmapEncodeLength(NULL,l);
376 e = *p++;
377 fwrite(p,l,1,stdout);
378 p += l+e;
379 if (e) {
380 printf("[");
381 while(e--) printf(".");
382 printf("]");
383 }
384 }
385 }
386 printf("\n");
387 }
388
389 #ifdef ZIPMAP_TEST_MAIN
390 int main(void) {
391 unsigned char *zm;
392
393 zm = zipmapNew();
394
395 zm = zipmapSet(zm,(unsigned char*) "name",4, (unsigned char*) "foo",3,NULL);
396 zm = zipmapSet(zm,(unsigned char*) "surname",7, (unsigned char*) "foo",3,NULL);
397 zm = zipmapSet(zm,(unsigned char*) "age",3, (unsigned char*) "foo",3,NULL);
398 zipmapRepr(zm);
399 exit(1);
400
401 zm = zipmapSet(zm,(unsigned char*) "hello",5, (unsigned char*) "world!",6,NULL);
402 zm = zipmapSet(zm,(unsigned char*) "foo",3, (unsigned char*) "bar",3,NULL);
403 zm = zipmapSet(zm,(unsigned char*) "foo",3, (unsigned char*) "!",1,NULL);
404 zipmapRepr(zm);
405 zm = zipmapSet(zm,(unsigned char*) "foo",3, (unsigned char*) "12345",5,NULL);
406 zipmapRepr(zm);
407 zm = zipmapSet(zm,(unsigned char*) "new",3, (unsigned char*) "xx",2,NULL);
408 zm = zipmapSet(zm,(unsigned char*) "noval",5, (unsigned char*) "",0,NULL);
409 zipmapRepr(zm);
410 zm = zipmapDel(zm,(unsigned char*) "new",3,NULL);
411 zipmapRepr(zm);
412 printf("\nPerform a direct lookup:\n");
413 {
414 unsigned char *value;
415 unsigned int vlen;
416
417 if (zipmapGet(zm,(unsigned char*) "foo",3,&value,&vlen)) {
418 printf(" foo is associated to the %d bytes value: %.*s\n",
419 vlen, vlen, value);
420 }
421 }
422 printf("\nIterate trought elements:\n");
423 {
424 unsigned char *i = zipmapRewind(zm);
425 unsigned char *key, *value;
426 unsigned int klen, vlen;
427
428 while((i = zipmapNext(i,&key,&klen,&value,&vlen)) != NULL) {
429 printf(" %d:%.*s => %d:%.*s\n", klen, klen, key, vlen, vlen, value);
430 }
431 }
432 return 0;
433 }
434 #endif