]>
git.saurik.com Git - redis.git/blob - src/intset.c
7 /* Note that these encodings are ordered, so:
8 * INTSET_ENC_INT16 < INTSET_ENC_INT32 < INTSET_ENC_INT64. */
9 #define INTSET_ENC_INT16 (sizeof(int16_t))
10 #define INTSET_ENC_INT32 (sizeof(int32_t))
11 #define INTSET_ENC_INT64 (sizeof(int64_t))
13 /* Return the required encoding for the provided value. */
14 static uint8_t _intsetValueEncoding(int64_t v
) {
15 if (v
< INT32_MIN
|| v
> INT32_MAX
)
16 return INTSET_ENC_INT64
;
17 else if (v
< INT16_MIN
|| v
> INT16_MAX
)
18 return INTSET_ENC_INT32
;
19 return INTSET_ENC_INT16
;
22 /* Return the value at pos, given an encoding. */
23 static int64_t _intsetGetEncoded(intset
*is
, int pos
, uint8_t enc
) {
24 if (enc
== INTSET_ENC_INT64
)
25 return ((int64_t*)is
->contents
)[pos
];
26 else if (enc
== INTSET_ENC_INT32
)
27 return ((int32_t*)is
->contents
)[pos
];
28 return ((int16_t*)is
->contents
)[pos
];
31 /* Return the value at pos, using the configured encoding. */
32 static int64_t _intsetGet(intset
*is
, int pos
) {
33 return _intsetGetEncoded(is
,pos
,is
->encoding
);
36 /* Set the value at pos, using the configured encoding. */
37 static void _intsetSet(intset
*is
, int pos
, int64_t value
) {
38 if (is
->encoding
== INTSET_ENC_INT64
)
39 ((int64_t*)is
->contents
)[pos
] = value
;
40 else if (is
->encoding
== INTSET_ENC_INT32
)
41 ((int32_t*)is
->contents
)[pos
] = value
;
43 ((int16_t*)is
->contents
)[pos
] = value
;
46 /* Create an empty intset. */
47 intset
*intsetNew(void) {
48 intset
*is
= zmalloc(sizeof(intset
));
49 is
->encoding
= INTSET_ENC_INT16
;
54 /* Resize the intset */
55 static intset
*intsetResize(intset
*is
, uint32_t len
) {
56 uint32_t size
= len
*is
->encoding
;
57 is
= zrealloc(is
,sizeof(intset
)+size
);
61 /* Search for the position of "value". Return 1 when the value was found and
62 * sets "pos" to the position of the value within the intset. Return 0 when
63 * the value is not present in the intset and sets "pos" to the position
64 * where "value" can be inserted. */
65 static uint8_t intsetSearch(intset
*is
, int64_t value
, uint32_t *pos
) {
66 int min
= 0, max
= is
->length
-1, mid
= -1;
69 /* The value can never be found when the set is empty */
70 if (is
->length
== 0) {
74 /* Check for the case where we know we cannot find the value,
75 * but do know the insert position. */
76 if (value
> _intsetGet(is
,is
->length
-1)) {
77 if (pos
) *pos
= is
->length
;
79 } else if (value
< _intsetGet(is
,0)) {
87 cur
= _intsetGet(is
,mid
);
90 } else if (value
< cur
) {
106 /* Upgrades the intset to a larger encoding and inserts the given integer. */
107 static intset
*intsetUpgradeAndAdd(intset
*is
, int64_t value
) {
108 uint8_t curenc
= is
->encoding
;
109 uint8_t newenc
= _intsetValueEncoding(value
);
110 int length
= is
->length
;
111 int prepend
= value
< 0 ? 1 : 0;
113 /* First set new encoding and resize */
114 is
->encoding
= newenc
;
115 is
= intsetResize(is
,is
->length
+1);
117 /* Upgrade back-to-front so we don't overwrite values.
118 * Note that the "prepend" variable is used to make sure we have an empty
119 * space at either the beginning or the end of the intset. */
121 _intsetSet(is
,length
+prepend
,_intsetGetEncoded(is
,length
,curenc
));
123 /* Set the value at the beginning or the end. */
125 _intsetSet(is
,0,value
);
127 _intsetSet(is
,is
->length
,value
);
132 static void intsetMoveTail(intset
*is
, uint32_t from
, uint32_t to
) {
134 uint32_t bytes
= is
->length
-from
;
135 if (is
->encoding
== INTSET_ENC_INT64
) {
136 src
= (int64_t*)is
->contents
+from
;
137 dst
= (int64_t*)is
->contents
+to
;
138 bytes
*= sizeof(int64_t);
139 } else if (is
->encoding
== INTSET_ENC_INT32
) {
140 src
= (int32_t*)is
->contents
+from
;
141 dst
= (int32_t*)is
->contents
+to
;
142 bytes
*= sizeof(int32_t);
144 src
= (int16_t*)is
->contents
+from
;
145 dst
= (int16_t*)is
->contents
+to
;
146 bytes
*= sizeof(int16_t);
148 memmove(dst
,src
,bytes
);
151 /* Insert an integer in the intset */
152 intset
*intsetAdd(intset
*is
, int64_t value
, uint8_t *success
) {
153 uint8_t valenc
= _intsetValueEncoding(value
);
154 uint32_t pos
, offset
;
155 if (success
) *success
= 1;
157 /* Upgrade encoding if necessary. If we need to upgrade, we know that
158 * this value should be either appended (if > 0) or prepended (if < 0),
159 * because it lies outside the range of existing values. */
160 if (valenc
> is
->encoding
) {
161 /* This always succeeds, so we don't need to curry *success. */
162 return intsetUpgradeAndAdd(is
,value
);
164 /* Abort if the value is already present in the set.
165 * This call will populate "pos" with the right position to insert
166 * the value when it cannot be found. */
167 if (intsetSearch(is
,value
,&pos
)) {
168 if (success
) *success
= 0;
172 is
= intsetResize(is
,is
->length
+1);
173 if (pos
< is
->length
) intsetMoveTail(is
,pos
,pos
+1);
176 _intsetSet(is
,pos
,value
);
181 /* Delete integer from intset */
182 intset
*intsetRemove(intset
*is
, int64_t value
, uint8_t *success
) {
183 uint8_t valenc
= _intsetValueEncoding(value
);
185 if (success
) *success
= 0;
187 if (valenc
<= is
->encoding
&& intsetSearch(is
,value
,&pos
)) {
188 /* We know we can delete */
189 if (success
) *success
= 1;
191 /* Overwrite value with tail and update length */
192 if (pos
< (is
->length
-1)) intsetMoveTail(is
,pos
+1,pos
);
193 is
= intsetResize(is
,is
->length
-1);
199 /* Determine whether a value belongs to this set */
200 uint8_t intsetFind(intset
*is
, int64_t value
) {
201 uint8_t valenc
= _intsetValueEncoding(value
);
202 return valenc
<= is
->encoding
&& intsetSearch(is
,value
,NULL
);
205 /* Return random member */
206 int64_t intsetRandom(intset
*is
) {
207 return _intsetGet(is
,rand()%is
->length
);
210 /* Sets the value to the value at the given position. When this position is
211 * out of range the function returns 0, when in range it returns 1. */
212 uint8_t intsetGet(intset
*is
, uint32_t pos
, int64_t *value
) {
213 if (pos
< is
->length
) {
214 *value
= _intsetGet(is
,pos
);
220 /* Return intset length */
221 uint32_t intsetLen(intset
*is
) {
225 #ifdef INTSET_TEST_MAIN
226 #include <sys/time.h>
228 void intsetRepr(intset
*is
) {
230 for (i
= 0; i
< is
->length
; i
++) {
231 printf("%lld\n", (uint64_t)_intsetGet(is
,i
));
236 void error(char *err
) {
245 long long usec(void) {
247 gettimeofday(&tv
,NULL
);
248 return (((long long)tv
.tv_sec
)*1000000)+tv
.tv_usec
;
251 #define assert(_e) ((_e)?(void)0:(_assert(#_e,__FILE__,__LINE__),exit(1)))
252 void _assert(char *estr
, char *file
, int line
) {
253 printf("\n\n=== ASSERTION FAILED ===\n");
254 printf("==> %s:%d '%s' is not true\n",file
,line
,estr
);
257 intset
*createSet(int bits
, int size
) {
258 uint64_t mask
= (1<<bits
)-1;
260 intset
*is
= intsetNew();
262 for (i
= 0; i
< size
; i
++) {
264 value
= (rand()*rand()) & mask
;
266 value
= rand() & mask
;
268 is
= intsetAdd(is
,value
,NULL
);
273 void checkConsistency(intset
*is
) {
276 for (i
= 0; i
< (is
->length
-1); i
++) {
277 if (is
->encoding
== INTSET_ENC_INT16
) {
278 int16_t *i16
= (int16_t*)is
->contents
;
279 assert(i16
[i
] < i16
[i
+1]);
280 } else if (is
->encoding
== INTSET_ENC_INT32
) {
281 int32_t *i32
= (int32_t*)is
->contents
;
282 assert(i32
[i
] < i32
[i
+1]);
284 int64_t *i64
= (int64_t*)is
->contents
;
285 assert(i64
[i
] < i64
[i
+1]);
290 int main(int argc
, char **argv
) {
296 printf("Value encodings: "); {
297 assert(_intsetValueEncoding(-32768) == INTSET_ENC_INT16
);
298 assert(_intsetValueEncoding(+32767) == INTSET_ENC_INT16
);
299 assert(_intsetValueEncoding(-32769) == INTSET_ENC_INT32
);
300 assert(_intsetValueEncoding(+32768) == INTSET_ENC_INT32
);
301 assert(_intsetValueEncoding(-2147483648) == INTSET_ENC_INT32
);
302 assert(_intsetValueEncoding(+2147483647) == INTSET_ENC_INT32
);
303 assert(_intsetValueEncoding(-2147483649) == INTSET_ENC_INT64
);
304 assert(_intsetValueEncoding(+2147483648) == INTSET_ENC_INT64
);
305 assert(_intsetValueEncoding(-9223372036854775808ull) == INTSET_ENC_INT64
);
306 assert(_intsetValueEncoding(+9223372036854775807ull) == INTSET_ENC_INT64
);
310 printf("Basic adding: "); {
312 is
= intsetAdd(is
,5,&success
); assert(success
);
313 is
= intsetAdd(is
,6,&success
); assert(success
);
314 is
= intsetAdd(is
,4,&success
); assert(success
);
315 is
= intsetAdd(is
,4,&success
); assert(!success
);
319 printf("Large number of random adds: "); {
322 for (i
= 0; i
< 1024; i
++) {
323 is
= intsetAdd(is
,rand()%0x800
,&success
);
324 if (success
) inserts
++;
326 assert(is
->length
== inserts
);
327 checkConsistency(is
);
331 printf("Upgrade from int16 to int32: "); {
333 is
= intsetAdd(is
,32,NULL
);
334 assert(is
->encoding
== INTSET_ENC_INT16
);
335 is
= intsetAdd(is
,65535,NULL
);
336 assert(is
->encoding
== INTSET_ENC_INT32
);
337 assert(intsetFind(is
,32));
338 assert(intsetFind(is
,65535));
339 checkConsistency(is
);
342 is
= intsetAdd(is
,32,NULL
);
343 assert(is
->encoding
== INTSET_ENC_INT16
);
344 is
= intsetAdd(is
,-65535,NULL
);
345 assert(is
->encoding
== INTSET_ENC_INT32
);
346 assert(intsetFind(is
,32));
347 assert(intsetFind(is
,-65535));
348 checkConsistency(is
);
352 printf("Upgrade from int16 to int64: "); {
354 is
= intsetAdd(is
,32,NULL
);
355 assert(is
->encoding
== INTSET_ENC_INT16
);
356 is
= intsetAdd(is
,4294967295,NULL
);
357 assert(is
->encoding
== INTSET_ENC_INT64
);
358 assert(intsetFind(is
,32));
359 assert(intsetFind(is
,4294967295));
360 checkConsistency(is
);
363 is
= intsetAdd(is
,32,NULL
);
364 assert(is
->encoding
== INTSET_ENC_INT16
);
365 is
= intsetAdd(is
,-4294967295,NULL
);
366 assert(is
->encoding
== INTSET_ENC_INT64
);
367 assert(intsetFind(is
,32));
368 assert(intsetFind(is
,-4294967295));
369 checkConsistency(is
);
373 printf("Upgrade from int32 to int64: "); {
375 is
= intsetAdd(is
,65535,NULL
);
376 assert(is
->encoding
== INTSET_ENC_INT32
);
377 is
= intsetAdd(is
,4294967295,NULL
);
378 assert(is
->encoding
== INTSET_ENC_INT64
);
379 assert(intsetFind(is
,65535));
380 assert(intsetFind(is
,4294967295));
381 checkConsistency(is
);
384 is
= intsetAdd(is
,65535,NULL
);
385 assert(is
->encoding
== INTSET_ENC_INT32
);
386 is
= intsetAdd(is
,-4294967295,NULL
);
387 assert(is
->encoding
== INTSET_ENC_INT64
);
388 assert(intsetFind(is
,65535));
389 assert(intsetFind(is
,-4294967295));
390 checkConsistency(is
);
394 printf("Stress lookups: "); {
395 long num
= 100000, size
= 10000;
398 is
= createSet(bits
,size
);
399 checkConsistency(is
);
402 for (i
= 0; i
< num
; i
++) intsetSearch(is
,rand() % ((1<<bits
)-1),NULL
);
403 printf("%ld lookups, %ld element set, %lldusec\n",num
,size
,usec()-start
);
406 printf("Stress add+delete: "); {
409 for (i
= 0; i
< 0xffff; i
++) {
411 is
= intsetAdd(is
,v1
,NULL
);
412 assert(intsetFind(is
,v1
));
415 is
= intsetRemove(is
,v2
,NULL
);
416 assert(!intsetFind(is
,v2
));
418 checkConsistency(is
);