]>
Commit | Line | Data |
---|---|---|
e2641e09 | 1 | #include "redis.h" |
2 | ||
3 | /*----------------------------------------------------------------------------- | |
4 | * Set Commands | |
5 | *----------------------------------------------------------------------------*/ | |
6 | ||
96ffb2fe PN |
7 | /* Factory method to return a set that *can* hold "value". When the object has |
8 | * an integer-encodable value, an intset will be returned. Otherwise a regular | |
9 | * hash table. */ | |
10 | robj *setTypeCreate(robj *value) { | |
ec7e1389 | 11 | if (isObjectRepresentableAsLongLong(value,NULL) == REDIS_OK) |
96ffb2fe PN |
12 | return createIntsetObject(); |
13 | return createSetObject(); | |
14 | } | |
15 | ||
16 | int setTypeAdd(robj *subject, robj *value) { | |
17 | long long llval; | |
18 | if (subject->encoding == REDIS_ENCODING_HT) { | |
19 | if (dictAdd(subject->ptr,value,NULL) == DICT_OK) { | |
20 | incrRefCount(value); | |
21 | return 1; | |
22 | } | |
23 | } else if (subject->encoding == REDIS_ENCODING_INTSET) { | |
ec7e1389 | 24 | if (isObjectRepresentableAsLongLong(value,&llval) == REDIS_OK) { |
96ffb2fe PN |
25 | uint8_t success = 0; |
26 | subject->ptr = intsetAdd(subject->ptr,llval,&success); | |
27 | if (success) { | |
28 | /* Convert to regular set when the intset contains | |
29 | * too many entries. */ | |
30 | if (intsetLen(subject->ptr) > server.set_max_intset_entries) | |
31 | setTypeConvert(subject,REDIS_ENCODING_HT); | |
32 | return 1; | |
33 | } | |
34 | } else { | |
35 | /* Failed to get integer from object, convert to regular set. */ | |
36 | setTypeConvert(subject,REDIS_ENCODING_HT); | |
37 | ||
38 | /* The set *was* an intset and this value is not integer | |
39 | * encodable, so dictAdd should always work. */ | |
40 | redisAssert(dictAdd(subject->ptr,value,NULL) == DICT_OK); | |
41 | incrRefCount(value); | |
42 | return 1; | |
43 | } | |
44 | } else { | |
45 | redisPanic("Unknown set encoding"); | |
46 | } | |
47 | return 0; | |
48 | } | |
49 | ||
a5be65f7 | 50 | int setTypeRemove(robj *setobj, robj *value) { |
96ffb2fe | 51 | long long llval; |
a5be65f7 | 52 | if (setobj->encoding == REDIS_ENCODING_HT) { |
53 | if (dictDelete(setobj->ptr,value) == DICT_OK) { | |
54 | if (htNeedsResize(setobj->ptr)) dictResize(setobj->ptr); | |
96ffb2fe PN |
55 | return 1; |
56 | } | |
a5be65f7 | 57 | } else if (setobj->encoding == REDIS_ENCODING_INTSET) { |
ec7e1389 | 58 | if (isObjectRepresentableAsLongLong(value,&llval) == REDIS_OK) { |
a5be65f7 | 59 | int success; |
60 | setobj->ptr = intsetRemove(setobj->ptr,llval,&success); | |
96ffb2fe PN |
61 | if (success) return 1; |
62 | } | |
63 | } else { | |
64 | redisPanic("Unknown set encoding"); | |
65 | } | |
66 | return 0; | |
67 | } | |
68 | ||
69 | int setTypeIsMember(robj *subject, robj *value) { | |
70 | long long llval; | |
71 | if (subject->encoding == REDIS_ENCODING_HT) { | |
72 | return dictFind((dict*)subject->ptr,value) != NULL; | |
73 | } else if (subject->encoding == REDIS_ENCODING_INTSET) { | |
ec7e1389 | 74 | if (isObjectRepresentableAsLongLong(value,&llval) == REDIS_OK) { |
96ffb2fe PN |
75 | return intsetFind((intset*)subject->ptr,llval); |
76 | } | |
77 | } else { | |
78 | redisPanic("Unknown set encoding"); | |
79 | } | |
80 | return 0; | |
81 | } | |
82 | ||
cb72d0f1 | 83 | setTypeIterator *setTypeInitIterator(robj *subject) { |
740eee1c | 84 | setTypeIterator *si = zmalloc(sizeof(setTypeIterator)); |
96ffb2fe PN |
85 | si->subject = subject; |
86 | si->encoding = subject->encoding; | |
87 | if (si->encoding == REDIS_ENCODING_HT) { | |
88 | si->di = dictGetIterator(subject->ptr); | |
89 | } else if (si->encoding == REDIS_ENCODING_INTSET) { | |
90 | si->ii = 0; | |
91 | } else { | |
92 | redisPanic("Unknown set encoding"); | |
93 | } | |
94 | return si; | |
95 | } | |
96 | ||
cb72d0f1 | 97 | void setTypeReleaseIterator(setTypeIterator *si) { |
96ffb2fe PN |
98 | if (si->encoding == REDIS_ENCODING_HT) |
99 | dictReleaseIterator(si->di); | |
100 | zfree(si); | |
101 | } | |
102 | ||
103 | /* Move to the next entry in the set. Returns the object at the current | |
1b508da7 | 104 | * position. |
105 | * | |
106 | * Since set elements can be internally be stored as redis objects or | |
107 | * simple arrays of integers, setTypeNext returns the encoding of the | |
108 | * set object you are iterating, and will populate the appropriate pointer | |
109 | * (eobj) or (llobj) accordingly. | |
110 | * | |
111 | * When there are no longer elements -1 is returned. | |
112 | * Returned objects ref count is not incremented, so this function is | |
113 | * copy on write friendly. */ | |
114 | int setTypeNext(setTypeIterator *si, robj **objele, int64_t *llele) { | |
96ffb2fe PN |
115 | if (si->encoding == REDIS_ENCODING_HT) { |
116 | dictEntry *de = dictNext(si->di); | |
1b508da7 | 117 | if (de == NULL) return -1; |
118 | *objele = dictGetEntryKey(de); | |
96ffb2fe | 119 | } else if (si->encoding == REDIS_ENCODING_INTSET) { |
1b508da7 | 120 | if (!intsetGet(si->subject->ptr,si->ii++,llele)) |
121 | return -1; | |
96ffb2fe | 122 | } |
1b508da7 | 123 | return si->encoding; |
96ffb2fe PN |
124 | } |
125 | ||
1b508da7 | 126 | /* The not copy on write friendly version but easy to use version |
127 | * of setTypeNext() is setTypeNextObject(), returning new objects | |
128 | * or incrementing the ref count of returned objects. So if you don't | |
129 | * retain a pointer to this object you should call decrRefCount() against it. | |
130 | * | |
131 | * This function is the way to go for write operations where COW is not | |
132 | * an issue as the result will be anyway of incrementing the ref count. */ | |
133 | robj *setTypeNextObject(setTypeIterator *si) { | |
134 | int64_t intele; | |
135 | robj *objele; | |
136 | int encoding; | |
137 | ||
138 | encoding = setTypeNext(si,&objele,&intele); | |
139 | switch(encoding) { | |
140 | case -1: return NULL; | |
141 | case REDIS_ENCODING_INTSET: | |
142 | return createStringObjectFromLongLong(intele); | |
143 | case REDIS_ENCODING_HT: | |
144 | incrRefCount(objele); | |
145 | return objele; | |
146 | default: | |
147 | redisPanic("Unsupported encoding"); | |
148 | } | |
149 | return NULL; /* just to suppress warnings */ | |
150 | } | |
96ffb2fe | 151 | |
a5be65f7 | 152 | /* Return random element from a non empty set. |
1b508da7 | 153 | * The returned element can be a int64_t value if the set is encoded |
a5be65f7 | 154 | * as an "intset" blob of integers, or a redis object if the set |
155 | * is a regular set. | |
156 | * | |
157 | * The caller provides both pointers to be populated with the right | |
158 | * object. The return value of the function is the object->encoding | |
159 | * field of the object and is used by the caller to check if the | |
1b508da7 | 160 | * int64_t pointer or the redis object pointere was populated. |
a5be65f7 | 161 | * |
162 | * When an object is returned (the set was a real set) the ref count | |
163 | * of the object is not incremented so this function can be considered | |
1b508da7 | 164 | * copy on write friendly. */ |
165 | int setTypeRandomElement(robj *setobj, robj **objele, int64_t *llele) { | |
a5be65f7 | 166 | if (setobj->encoding == REDIS_ENCODING_HT) { |
167 | dictEntry *de = dictGetRandomKey(setobj->ptr); | |
168 | *objele = dictGetEntryKey(de); | |
169 | } else if (setobj->encoding == REDIS_ENCODING_INTSET) { | |
170 | *llele = intsetRandom(setobj->ptr); | |
96ffb2fe PN |
171 | } else { |
172 | redisPanic("Unknown set encoding"); | |
173 | } | |
a5be65f7 | 174 | return setobj->encoding; |
96ffb2fe PN |
175 | } |
176 | ||
177 | unsigned long setTypeSize(robj *subject) { | |
178 | if (subject->encoding == REDIS_ENCODING_HT) { | |
179 | return dictSize((dict*)subject->ptr); | |
180 | } else if (subject->encoding == REDIS_ENCODING_INTSET) { | |
181 | return intsetLen((intset*)subject->ptr); | |
182 | } else { | |
183 | redisPanic("Unknown set encoding"); | |
184 | } | |
185 | } | |
186 | ||
187 | /* Convert the set to specified encoding. The resulting dict (when converting | |
188 | * to a hashtable) is presized to hold the number of elements in the original | |
189 | * set. */ | |
1b508da7 | 190 | void setTypeConvert(robj *setobj, int enc) { |
cb72d0f1 | 191 | setTypeIterator *si; |
1b508da7 | 192 | redisAssert(setobj->type == REDIS_SET && |
193 | setobj->encoding == REDIS_ENCODING_INTSET); | |
96ffb2fe PN |
194 | |
195 | if (enc == REDIS_ENCODING_HT) { | |
1b508da7 | 196 | int64_t intele; |
96ffb2fe | 197 | dict *d = dictCreate(&setDictType,NULL); |
1b508da7 | 198 | robj *element; |
199 | ||
96ffb2fe | 200 | /* Presize the dict to avoid rehashing */ |
1b508da7 | 201 | dictExpand(d,intsetLen(setobj->ptr)); |
96ffb2fe | 202 | |
1b508da7 | 203 | /* To add the elements we extract integers and create redis objects */ |
204 | si = setTypeInitIterator(setobj); | |
205 | while (setTypeNext(si,NULL,&intele) != -1) { | |
206 | element = createStringObjectFromLongLong(intele); | |
96ffb2fe | 207 | redisAssert(dictAdd(d,element,NULL) == DICT_OK); |
1b508da7 | 208 | } |
96ffb2fe PN |
209 | setTypeReleaseIterator(si); |
210 | ||
1b508da7 | 211 | setobj->encoding = REDIS_ENCODING_HT; |
212 | zfree(setobj->ptr); | |
213 | setobj->ptr = d; | |
96ffb2fe PN |
214 | } else { |
215 | redisPanic("Unsupported set conversion"); | |
216 | } | |
217 | } | |
218 | ||
e2641e09 | 219 | void saddCommand(redisClient *c) { |
220 | robj *set; | |
22f294d2 | 221 | int j, added = 0; |
e2641e09 | 222 | |
223 | set = lookupKeyWrite(c->db,c->argv[1]); | |
224 | if (set == NULL) { | |
96ffb2fe | 225 | set = setTypeCreate(c->argv[2]); |
e2641e09 | 226 | dbAdd(c->db,c->argv[1],set); |
227 | } else { | |
228 | if (set->type != REDIS_SET) { | |
229 | addReply(c,shared.wrongtypeerr); | |
230 | return; | |
231 | } | |
232 | } | |
22f294d2 | 233 | |
234 | for (j = 2; j < c->argc; j++) { | |
235 | c->argv[j] = tryObjectEncoding(c->argv[j]); | |
236 | if (setTypeAdd(set,c->argv[j])) added++; | |
e2641e09 | 237 | } |
22f294d2 | 238 | if (added) signalModifiedKey(c->db,c->argv[1]); |
239 | server.dirty += added; | |
240 | addReplyLongLong(c,added); | |
e2641e09 | 241 | } |
242 | ||
243 | void sremCommand(redisClient *c) { | |
244 | robj *set; | |
b3a96d45 | 245 | int j, deleted = 0; |
e2641e09 | 246 | |
247 | if ((set = lookupKeyWriteOrReply(c,c->argv[1],shared.czero)) == NULL || | |
248 | checkType(c,set,REDIS_SET)) return; | |
249 | ||
b3a96d45 | 250 | for (j = 2; j < c->argc; j++) { |
251 | if (setTypeRemove(set,c->argv[j])) { | |
252 | if (setTypeSize(set) == 0) dbDelete(c->db,c->argv[1]); | |
253 | deleted++; | |
254 | } | |
255 | } | |
256 | if (deleted) { | |
cea8c5cd | 257 | signalModifiedKey(c->db,c->argv[1]); |
b3a96d45 | 258 | server.dirty += deleted; |
e2641e09 | 259 | } |
b3a96d45 | 260 | addReplyLongLong(c,deleted); |
e2641e09 | 261 | } |
262 | ||
263 | void smoveCommand(redisClient *c) { | |
96ffb2fe | 264 | robj *srcset, *dstset, *ele; |
e2641e09 | 265 | srcset = lookupKeyWrite(c->db,c->argv[1]); |
266 | dstset = lookupKeyWrite(c->db,c->argv[2]); | |
75b41de8 | 267 | ele = c->argv[3] = tryObjectEncoding(c->argv[3]); |
e2641e09 | 268 | |
96ffb2fe PN |
269 | /* If the source key does not exist return 0 */ |
270 | if (srcset == NULL) { | |
271 | addReply(c,shared.czero); | |
e2641e09 | 272 | return; |
273 | } | |
96ffb2fe PN |
274 | |
275 | /* If the source key has the wrong type, or the destination key | |
276 | * is set and has the wrong type, return with an error. */ | |
277 | if (checkType(c,srcset,REDIS_SET) || | |
278 | (dstset && checkType(c,dstset,REDIS_SET))) return; | |
279 | ||
280 | /* If srcset and dstset are equal, SMOVE is a no-op */ | |
281 | if (srcset == dstset) { | |
282 | addReply(c,shared.cone); | |
e2641e09 | 283 | return; |
284 | } | |
96ffb2fe PN |
285 | |
286 | /* If the element cannot be removed from the src set, return 0. */ | |
287 | if (!setTypeRemove(srcset,ele)) { | |
e2641e09 | 288 | addReply(c,shared.czero); |
289 | return; | |
290 | } | |
96ffb2fe PN |
291 | |
292 | /* Remove the src set from the database when empty */ | |
293 | if (setTypeSize(srcset) == 0) dbDelete(c->db,c->argv[1]); | |
cea8c5cd | 294 | signalModifiedKey(c->db,c->argv[1]); |
295 | signalModifiedKey(c->db,c->argv[2]); | |
e2641e09 | 296 | server.dirty++; |
96ffb2fe PN |
297 | |
298 | /* Create the destination set when it doesn't exist */ | |
e2641e09 | 299 | if (!dstset) { |
96ffb2fe | 300 | dstset = setTypeCreate(ele); |
e2641e09 | 301 | dbAdd(c->db,c->argv[2],dstset); |
302 | } | |
96ffb2fe PN |
303 | |
304 | /* An extra key has changed when ele was successfully added to dstset */ | |
305 | if (setTypeAdd(dstset,ele)) server.dirty++; | |
e2641e09 | 306 | addReply(c,shared.cone); |
307 | } | |
308 | ||
309 | void sismemberCommand(redisClient *c) { | |
310 | robj *set; | |
311 | ||
312 | if ((set = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL || | |
313 | checkType(c,set,REDIS_SET)) return; | |
314 | ||
75b41de8 | 315 | c->argv[2] = tryObjectEncoding(c->argv[2]); |
96ffb2fe | 316 | if (setTypeIsMember(set,c->argv[2])) |
e2641e09 | 317 | addReply(c,shared.cone); |
318 | else | |
319 | addReply(c,shared.czero); | |
320 | } | |
321 | ||
322 | void scardCommand(redisClient *c) { | |
323 | robj *o; | |
e2641e09 | 324 | |
325 | if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL || | |
326 | checkType(c,o,REDIS_SET)) return; | |
327 | ||
b70d3555 | 328 | addReplyLongLong(c,setTypeSize(o)); |
e2641e09 | 329 | } |
330 | ||
331 | void spopCommand(redisClient *c) { | |
96ffb2fe | 332 | robj *set, *ele; |
1b508da7 | 333 | int64_t llele; |
a5be65f7 | 334 | int encoding; |
e2641e09 | 335 | |
336 | if ((set = lookupKeyWriteOrReply(c,c->argv[1],shared.nullbulk)) == NULL || | |
337 | checkType(c,set,REDIS_SET)) return; | |
338 | ||
a5be65f7 | 339 | encoding = setTypeRandomElement(set,&ele,&llele); |
340 | if (encoding == REDIS_ENCODING_INTSET) { | |
30318c1d | 341 | ele = createStringObjectFromLongLong(llele); |
a5be65f7 | 342 | set->ptr = intsetRemove(set->ptr,llele,NULL); |
e2641e09 | 343 | } else { |
30318c1d | 344 | incrRefCount(ele); |
a5be65f7 | 345 | setTypeRemove(set,ele); |
e2641e09 | 346 | } |
30318c1d | 347 | |
348 | /* Change argv to replicate as SREM */ | |
349 | c->argc = 3; | |
350 | c->argv = zrealloc(c->argv,sizeof(robj*)*(c->argc)); | |
351 | ||
352 | /* Overwrite SREM with SPOP (same length) */ | |
353 | redisAssert(sdslen(c->argv[0]->ptr) == 4); | |
354 | memcpy(c->argv[0]->ptr, "SREM", 4); | |
355 | ||
356 | /* Popped element already has incremented refcount */ | |
357 | c->argv[2] = ele; | |
358 | ||
359 | addReplyBulk(c,ele); | |
a5be65f7 | 360 | if (setTypeSize(set) == 0) dbDelete(c->db,c->argv[1]); |
cea8c5cd | 361 | signalModifiedKey(c->db,c->argv[1]); |
a5be65f7 | 362 | server.dirty++; |
e2641e09 | 363 | } |
364 | ||
365 | void srandmemberCommand(redisClient *c) { | |
96ffb2fe | 366 | robj *set, *ele; |
1b508da7 | 367 | int64_t llele; |
a5be65f7 | 368 | int encoding; |
e2641e09 | 369 | |
370 | if ((set = lookupKeyReadOrReply(c,c->argv[1],shared.nullbulk)) == NULL || | |
371 | checkType(c,set,REDIS_SET)) return; | |
372 | ||
a5be65f7 | 373 | encoding = setTypeRandomElement(set,&ele,&llele); |
374 | if (encoding == REDIS_ENCODING_INTSET) { | |
375 | addReplyBulkLongLong(c,llele); | |
e2641e09 | 376 | } else { |
e2641e09 | 377 | addReplyBulk(c,ele); |
378 | } | |
379 | } | |
380 | ||
381 | int qsortCompareSetsByCardinality(const void *s1, const void *s2) { | |
96ffb2fe | 382 | return setTypeSize(*(robj**)s1)-setTypeSize(*(robj**)s2); |
e2641e09 | 383 | } |
384 | ||
96ffb2fe PN |
385 | void sinterGenericCommand(redisClient *c, robj **setkeys, unsigned long setnum, robj *dstkey) { |
386 | robj **sets = zmalloc(sizeof(robj*)*setnum); | |
cb72d0f1 | 387 | setTypeIterator *si; |
1b508da7 | 388 | robj *eleobj, *dstset = NULL; |
389 | int64_t intobj; | |
b301c1fc | 390 | void *replylen = NULL; |
e2641e09 | 391 | unsigned long j, cardinality = 0; |
1b508da7 | 392 | int encoding; |
e2641e09 | 393 | |
96ffb2fe PN |
394 | for (j = 0; j < setnum; j++) { |
395 | robj *setobj = dstkey ? | |
396 | lookupKeyWrite(c->db,setkeys[j]) : | |
397 | lookupKeyRead(c->db,setkeys[j]); | |
e2641e09 | 398 | if (!setobj) { |
96ffb2fe | 399 | zfree(sets); |
e2641e09 | 400 | if (dstkey) { |
5b4bff9c | 401 | if (dbDelete(c->db,dstkey)) { |
cea8c5cd | 402 | signalModifiedKey(c->db,dstkey); |
e2641e09 | 403 | server.dirty++; |
5b4bff9c | 404 | } |
e2641e09 | 405 | addReply(c,shared.czero); |
406 | } else { | |
407 | addReply(c,shared.emptymultibulk); | |
408 | } | |
409 | return; | |
410 | } | |
96ffb2fe PN |
411 | if (checkType(c,setobj,REDIS_SET)) { |
412 | zfree(sets); | |
e2641e09 | 413 | return; |
414 | } | |
96ffb2fe | 415 | sets[j] = setobj; |
e2641e09 | 416 | } |
417 | /* Sort sets from the smallest to largest, this will improve our | |
418 | * algorithm's performace */ | |
96ffb2fe | 419 | qsort(sets,setnum,sizeof(robj*),qsortCompareSetsByCardinality); |
e2641e09 | 420 | |
421 | /* The first thing we should output is the total number of elements... | |
422 | * since this is a multi-bulk write, but at this stage we don't know | |
423 | * the intersection set size, so we use a trick, append an empty object | |
424 | * to the output list and save the pointer to later modify it with the | |
425 | * right length */ | |
426 | if (!dstkey) { | |
b301c1fc | 427 | replylen = addDeferredMultiBulkLength(c); |
e2641e09 | 428 | } else { |
429 | /* If we have a target key where to store the resulting set | |
430 | * create this key with an empty set inside */ | |
96ffb2fe | 431 | dstset = createIntsetObject(); |
e2641e09 | 432 | } |
433 | ||
434 | /* Iterate all the elements of the first (smallest) set, and test | |
435 | * the element against all the other sets, if at least one set does | |
436 | * not include the element it is discarded */ | |
96ffb2fe | 437 | si = setTypeInitIterator(sets[0]); |
1b508da7 | 438 | while((encoding = setTypeNext(si,&eleobj,&intobj)) != -1) { |
439 | for (j = 1; j < setnum; j++) { | |
440 | if (encoding == REDIS_ENCODING_INTSET) { | |
441 | /* intset with intset is simple... and fast */ | |
442 | if (sets[j]->encoding == REDIS_ENCODING_INTSET && | |
443 | !intsetFind((intset*)sets[j]->ptr,intobj)) | |
444 | { | |
445 | break; | |
446 | /* in order to compare an integer with an object we | |
447 | * have to use the generic function, creating an object | |
448 | * for this */ | |
449 | } else if (sets[j]->encoding == REDIS_ENCODING_HT) { | |
450 | eleobj = createStringObjectFromLongLong(intobj); | |
451 | if (!setTypeIsMember(sets[j],eleobj)) { | |
452 | decrRefCount(eleobj); | |
453 | break; | |
454 | } | |
455 | decrRefCount(eleobj); | |
456 | } | |
457 | } else if (encoding == REDIS_ENCODING_HT) { | |
458 | /* Optimization... if the source object is integer | |
459 | * encoded AND the target set is an intset, we can get | |
460 | * a much faster path. */ | |
461 | if (eleobj->encoding == REDIS_ENCODING_INT && | |
462 | sets[j]->encoding == REDIS_ENCODING_INTSET && | |
463 | !intsetFind((intset*)sets[j]->ptr,(long)eleobj->ptr)) | |
464 | { | |
465 | break; | |
466 | /* else... object to object check is easy as we use the | |
467 | * type agnostic API here. */ | |
468 | } else if (!setTypeIsMember(sets[j],eleobj)) { | |
469 | break; | |
470 | } | |
471 | } | |
472 | } | |
96ffb2fe PN |
473 | |
474 | /* Only take action when all sets contain the member */ | |
475 | if (j == setnum) { | |
476 | if (!dstkey) { | |
1b508da7 | 477 | if (encoding == REDIS_ENCODING_HT) |
478 | addReplyBulk(c,eleobj); | |
479 | else | |
480 | addReplyBulkLongLong(c,intobj); | |
96ffb2fe PN |
481 | cardinality++; |
482 | } else { | |
1b508da7 | 483 | if (encoding == REDIS_ENCODING_INTSET) { |
484 | eleobj = createStringObjectFromLongLong(intobj); | |
485 | setTypeAdd(dstset,eleobj); | |
486 | decrRefCount(eleobj); | |
487 | } else { | |
488 | setTypeAdd(dstset,eleobj); | |
489 | } | |
96ffb2fe | 490 | } |
e2641e09 | 491 | } |
492 | } | |
96ffb2fe | 493 | setTypeReleaseIterator(si); |
e2641e09 | 494 | |
495 | if (dstkey) { | |
496 | /* Store the resulting set into the target, if the intersection | |
497 | * is not an empty set. */ | |
498 | dbDelete(c->db,dstkey); | |
96ffb2fe | 499 | if (setTypeSize(dstset) > 0) { |
e2641e09 | 500 | dbAdd(c->db,dstkey,dstset); |
96ffb2fe | 501 | addReplyLongLong(c,setTypeSize(dstset)); |
e2641e09 | 502 | } else { |
503 | decrRefCount(dstset); | |
504 | addReply(c,shared.czero); | |
505 | } | |
cea8c5cd | 506 | signalModifiedKey(c->db,dstkey); |
e2641e09 | 507 | server.dirty++; |
508 | } else { | |
b301c1fc | 509 | setDeferredMultiBulkLength(c,replylen,cardinality); |
e2641e09 | 510 | } |
96ffb2fe | 511 | zfree(sets); |
e2641e09 | 512 | } |
513 | ||
514 | void sinterCommand(redisClient *c) { | |
515 | sinterGenericCommand(c,c->argv+1,c->argc-1,NULL); | |
516 | } | |
517 | ||
518 | void sinterstoreCommand(redisClient *c) { | |
519 | sinterGenericCommand(c,c->argv+2,c->argc-2,c->argv[1]); | |
520 | } | |
521 | ||
96ffb2fe PN |
522 | #define REDIS_OP_UNION 0 |
523 | #define REDIS_OP_DIFF 1 | |
524 | #define REDIS_OP_INTER 2 | |
e2641e09 | 525 | |
96ffb2fe PN |
526 | void sunionDiffGenericCommand(redisClient *c, robj **setkeys, int setnum, robj *dstkey, int op) { |
527 | robj **sets = zmalloc(sizeof(robj*)*setnum); | |
cb72d0f1 | 528 | setTypeIterator *si; |
96ffb2fe PN |
529 | robj *ele, *dstset = NULL; |
530 | int j, cardinality = 0; | |
e2641e09 | 531 | |
96ffb2fe PN |
532 | for (j = 0; j < setnum; j++) { |
533 | robj *setobj = dstkey ? | |
534 | lookupKeyWrite(c->db,setkeys[j]) : | |
535 | lookupKeyRead(c->db,setkeys[j]); | |
e2641e09 | 536 | if (!setobj) { |
96ffb2fe | 537 | sets[j] = NULL; |
e2641e09 | 538 | continue; |
539 | } | |
96ffb2fe PN |
540 | if (checkType(c,setobj,REDIS_SET)) { |
541 | zfree(sets); | |
e2641e09 | 542 | return; |
543 | } | |
96ffb2fe | 544 | sets[j] = setobj; |
e2641e09 | 545 | } |
546 | ||
547 | /* We need a temp set object to store our union. If the dstkey | |
548 | * is not NULL (that is, we are inside an SUNIONSTORE operation) then | |
549 | * this set object will be the resulting object to set into the target key*/ | |
96ffb2fe | 550 | dstset = createIntsetObject(); |
e2641e09 | 551 | |
552 | /* Iterate all the elements of all the sets, add every element a single | |
553 | * time to the result set */ | |
96ffb2fe PN |
554 | for (j = 0; j < setnum; j++) { |
555 | if (op == REDIS_OP_DIFF && j == 0 && !sets[j]) break; /* result set is empty */ | |
556 | if (!sets[j]) continue; /* non existing keys are like empty sets */ | |
e2641e09 | 557 | |
96ffb2fe | 558 | si = setTypeInitIterator(sets[j]); |
1b508da7 | 559 | while((ele = setTypeNextObject(si)) != NULL) { |
e2641e09 | 560 | if (op == REDIS_OP_UNION || j == 0) { |
96ffb2fe | 561 | if (setTypeAdd(dstset,ele)) { |
e2641e09 | 562 | cardinality++; |
563 | } | |
564 | } else if (op == REDIS_OP_DIFF) { | |
96ffb2fe | 565 | if (setTypeRemove(dstset,ele)) { |
e2641e09 | 566 | cardinality--; |
567 | } | |
568 | } | |
96ffb2fe | 569 | decrRefCount(ele); |
e2641e09 | 570 | } |
96ffb2fe | 571 | setTypeReleaseIterator(si); |
e2641e09 | 572 | |
96ffb2fe | 573 | /* Exit when result set is empty. */ |
e2641e09 | 574 | if (op == REDIS_OP_DIFF && cardinality == 0) break; |
575 | } | |
576 | ||
577 | /* Output the content of the resulting set, if not in STORE mode */ | |
578 | if (!dstkey) { | |
0537e7bf | 579 | addReplyMultiBulkLen(c,cardinality); |
96ffb2fe | 580 | si = setTypeInitIterator(dstset); |
1b508da7 | 581 | while((ele = setTypeNextObject(si)) != NULL) { |
e2641e09 | 582 | addReplyBulk(c,ele); |
96ffb2fe | 583 | decrRefCount(ele); |
e2641e09 | 584 | } |
96ffb2fe | 585 | setTypeReleaseIterator(si); |
e2641e09 | 586 | decrRefCount(dstset); |
587 | } else { | |
588 | /* If we have a target key where to store the resulting set | |
589 | * create this key with the result set inside */ | |
590 | dbDelete(c->db,dstkey); | |
96ffb2fe | 591 | if (setTypeSize(dstset) > 0) { |
e2641e09 | 592 | dbAdd(c->db,dstkey,dstset); |
96ffb2fe | 593 | addReplyLongLong(c,setTypeSize(dstset)); |
e2641e09 | 594 | } else { |
595 | decrRefCount(dstset); | |
596 | addReply(c,shared.czero); | |
597 | } | |
cea8c5cd | 598 | signalModifiedKey(c->db,dstkey); |
e2641e09 | 599 | server.dirty++; |
600 | } | |
96ffb2fe | 601 | zfree(sets); |
e2641e09 | 602 | } |
603 | ||
604 | void sunionCommand(redisClient *c) { | |
605 | sunionDiffGenericCommand(c,c->argv+1,c->argc-1,NULL,REDIS_OP_UNION); | |
606 | } | |
607 | ||
608 | void sunionstoreCommand(redisClient *c) { | |
609 | sunionDiffGenericCommand(c,c->argv+2,c->argc-2,c->argv[1],REDIS_OP_UNION); | |
610 | } | |
611 | ||
612 | void sdiffCommand(redisClient *c) { | |
613 | sunionDiffGenericCommand(c,c->argv+1,c->argc-1,NULL,REDIS_OP_DIFF); | |
614 | } | |
615 | ||
616 | void sdiffstoreCommand(redisClient *c) { | |
617 | sunionDiffGenericCommand(c,c->argv+2,c->argc-2,c->argv[1],REDIS_OP_DIFF); | |
618 | } |