]> git.saurik.com Git - redis.git/blame - src/t_set.c
Updated to unstable
[redis.git] / src / t_set.c
CommitLineData
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. */
10robj *setTypeCreate(robj *value) {
ec7e1389 11 if (isObjectRepresentableAsLongLong(value,NULL) == REDIS_OK)
96ffb2fe
PN
12 return createIntsetObject();
13 return createSetObject();
14}
15
16int 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 50int 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
69int 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 83setTypeIterator *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 97void 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. */
114int 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. */
133robj *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. */
165int 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
177unsigned 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 190void 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 219void 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
243void 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])) {
b3a96d45 252 deleted++;
3738ff5f 253 if (setTypeSize(set) == 0) {
254 dbDelete(c->db,c->argv[1]);
255 break;
256 }
b3a96d45 257 }
258 }
259 if (deleted) {
cea8c5cd 260 signalModifiedKey(c->db,c->argv[1]);
b3a96d45 261 server.dirty += deleted;
e2641e09 262 }
b3a96d45 263 addReplyLongLong(c,deleted);
e2641e09 264}
265
266void smoveCommand(redisClient *c) {
96ffb2fe 267 robj *srcset, *dstset, *ele;
e2641e09 268 srcset = lookupKeyWrite(c->db,c->argv[1]);
269 dstset = lookupKeyWrite(c->db,c->argv[2]);
75b41de8 270 ele = c->argv[3] = tryObjectEncoding(c->argv[3]);
e2641e09 271
96ffb2fe
PN
272 /* If the source key does not exist return 0 */
273 if (srcset == NULL) {
274 addReply(c,shared.czero);
e2641e09 275 return;
276 }
96ffb2fe
PN
277
278 /* If the source key has the wrong type, or the destination key
279 * is set and has the wrong type, return with an error. */
280 if (checkType(c,srcset,REDIS_SET) ||
281 (dstset && checkType(c,dstset,REDIS_SET))) return;
282
283 /* If srcset and dstset are equal, SMOVE is a no-op */
284 if (srcset == dstset) {
285 addReply(c,shared.cone);
e2641e09 286 return;
287 }
96ffb2fe
PN
288
289 /* If the element cannot be removed from the src set, return 0. */
290 if (!setTypeRemove(srcset,ele)) {
e2641e09 291 addReply(c,shared.czero);
292 return;
293 }
96ffb2fe
PN
294
295 /* Remove the src set from the database when empty */
296 if (setTypeSize(srcset) == 0) dbDelete(c->db,c->argv[1]);
cea8c5cd 297 signalModifiedKey(c->db,c->argv[1]);
298 signalModifiedKey(c->db,c->argv[2]);
e2641e09 299 server.dirty++;
96ffb2fe
PN
300
301 /* Create the destination set when it doesn't exist */
e2641e09 302 if (!dstset) {
96ffb2fe 303 dstset = setTypeCreate(ele);
e2641e09 304 dbAdd(c->db,c->argv[2],dstset);
305 }
96ffb2fe
PN
306
307 /* An extra key has changed when ele was successfully added to dstset */
308 if (setTypeAdd(dstset,ele)) server.dirty++;
e2641e09 309 addReply(c,shared.cone);
310}
311
312void sismemberCommand(redisClient *c) {
313 robj *set;
314
315 if ((set = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL ||
316 checkType(c,set,REDIS_SET)) return;
317
75b41de8 318 c->argv[2] = tryObjectEncoding(c->argv[2]);
96ffb2fe 319 if (setTypeIsMember(set,c->argv[2]))
e2641e09 320 addReply(c,shared.cone);
321 else
322 addReply(c,shared.czero);
323}
324
325void scardCommand(redisClient *c) {
326 robj *o;
e2641e09 327
328 if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL ||
329 checkType(c,o,REDIS_SET)) return;
330
b70d3555 331 addReplyLongLong(c,setTypeSize(o));
e2641e09 332}
333
334void spopCommand(redisClient *c) {
96ffb2fe 335 robj *set, *ele;
1b508da7 336 int64_t llele;
a5be65f7 337 int encoding;
e2641e09 338
339 if ((set = lookupKeyWriteOrReply(c,c->argv[1],shared.nullbulk)) == NULL ||
340 checkType(c,set,REDIS_SET)) return;
341
a5be65f7 342 encoding = setTypeRandomElement(set,&ele,&llele);
343 if (encoding == REDIS_ENCODING_INTSET) {
30318c1d 344 ele = createStringObjectFromLongLong(llele);
a5be65f7 345 set->ptr = intsetRemove(set->ptr,llele,NULL);
e2641e09 346 } else {
30318c1d 347 incrRefCount(ele);
a5be65f7 348 setTypeRemove(set,ele);
e2641e09 349 }
30318c1d 350
351 /* Change argv to replicate as SREM */
352 c->argc = 3;
353 c->argv = zrealloc(c->argv,sizeof(robj*)*(c->argc));
354
355 /* Overwrite SREM with SPOP (same length) */
356 redisAssert(sdslen(c->argv[0]->ptr) == 4);
357 memcpy(c->argv[0]->ptr, "SREM", 4);
358
359 /* Popped element already has incremented refcount */
360 c->argv[2] = ele;
361
362 addReplyBulk(c,ele);
a5be65f7 363 if (setTypeSize(set) == 0) dbDelete(c->db,c->argv[1]);
cea8c5cd 364 signalModifiedKey(c->db,c->argv[1]);
a5be65f7 365 server.dirty++;
e2641e09 366}
367
368void srandmemberCommand(redisClient *c) {
96ffb2fe 369 robj *set, *ele;
1b508da7 370 int64_t llele;
a5be65f7 371 int encoding;
e2641e09 372
373 if ((set = lookupKeyReadOrReply(c,c->argv[1],shared.nullbulk)) == NULL ||
374 checkType(c,set,REDIS_SET)) return;
375
a5be65f7 376 encoding = setTypeRandomElement(set,&ele,&llele);
377 if (encoding == REDIS_ENCODING_INTSET) {
378 addReplyBulkLongLong(c,llele);
e2641e09 379 } else {
e2641e09 380 addReplyBulk(c,ele);
381 }
382}
383
384int qsortCompareSetsByCardinality(const void *s1, const void *s2) {
96ffb2fe 385 return setTypeSize(*(robj**)s1)-setTypeSize(*(robj**)s2);
e2641e09 386}
387
96ffb2fe
PN
388void sinterGenericCommand(redisClient *c, robj **setkeys, unsigned long setnum, robj *dstkey) {
389 robj **sets = zmalloc(sizeof(robj*)*setnum);
cb72d0f1 390 setTypeIterator *si;
1b508da7 391 robj *eleobj, *dstset = NULL;
392 int64_t intobj;
b301c1fc 393 void *replylen = NULL;
e2641e09 394 unsigned long j, cardinality = 0;
1b508da7 395 int encoding;
e2641e09 396
96ffb2fe
PN
397 for (j = 0; j < setnum; j++) {
398 robj *setobj = dstkey ?
399 lookupKeyWrite(c->db,setkeys[j]) :
400 lookupKeyRead(c->db,setkeys[j]);
e2641e09 401 if (!setobj) {
96ffb2fe 402 zfree(sets);
e2641e09 403 if (dstkey) {
5b4bff9c 404 if (dbDelete(c->db,dstkey)) {
cea8c5cd 405 signalModifiedKey(c->db,dstkey);
e2641e09 406 server.dirty++;
5b4bff9c 407 }
e2641e09 408 addReply(c,shared.czero);
409 } else {
410 addReply(c,shared.emptymultibulk);
411 }
412 return;
413 }
96ffb2fe
PN
414 if (checkType(c,setobj,REDIS_SET)) {
415 zfree(sets);
e2641e09 416 return;
417 }
96ffb2fe 418 sets[j] = setobj;
e2641e09 419 }
420 /* Sort sets from the smallest to largest, this will improve our
421 * algorithm's performace */
96ffb2fe 422 qsort(sets,setnum,sizeof(robj*),qsortCompareSetsByCardinality);
e2641e09 423
424 /* The first thing we should output is the total number of elements...
425 * since this is a multi-bulk write, but at this stage we don't know
426 * the intersection set size, so we use a trick, append an empty object
427 * to the output list and save the pointer to later modify it with the
428 * right length */
429 if (!dstkey) {
b301c1fc 430 replylen = addDeferredMultiBulkLength(c);
e2641e09 431 } else {
432 /* If we have a target key where to store the resulting set
433 * create this key with an empty set inside */
96ffb2fe 434 dstset = createIntsetObject();
e2641e09 435 }
436
437 /* Iterate all the elements of the first (smallest) set, and test
438 * the element against all the other sets, if at least one set does
439 * not include the element it is discarded */
96ffb2fe 440 si = setTypeInitIterator(sets[0]);
1b508da7 441 while((encoding = setTypeNext(si,&eleobj,&intobj)) != -1) {
442 for (j = 1; j < setnum; j++) {
dd1eefa4 443 if (sets[j] == sets[0]) continue;
1b508da7 444 if (encoding == REDIS_ENCODING_INTSET) {
445 /* intset with intset is simple... and fast */
446 if (sets[j]->encoding == REDIS_ENCODING_INTSET &&
447 !intsetFind((intset*)sets[j]->ptr,intobj))
448 {
449 break;
450 /* in order to compare an integer with an object we
451 * have to use the generic function, creating an object
452 * for this */
453 } else if (sets[j]->encoding == REDIS_ENCODING_HT) {
454 eleobj = createStringObjectFromLongLong(intobj);
455 if (!setTypeIsMember(sets[j],eleobj)) {
456 decrRefCount(eleobj);
457 break;
458 }
459 decrRefCount(eleobj);
460 }
461 } else if (encoding == REDIS_ENCODING_HT) {
462 /* Optimization... if the source object is integer
463 * encoded AND the target set is an intset, we can get
464 * a much faster path. */
465 if (eleobj->encoding == REDIS_ENCODING_INT &&
466 sets[j]->encoding == REDIS_ENCODING_INTSET &&
467 !intsetFind((intset*)sets[j]->ptr,(long)eleobj->ptr))
468 {
469 break;
470 /* else... object to object check is easy as we use the
471 * type agnostic API here. */
472 } else if (!setTypeIsMember(sets[j],eleobj)) {
473 break;
474 }
475 }
476 }
96ffb2fe
PN
477
478 /* Only take action when all sets contain the member */
479 if (j == setnum) {
480 if (!dstkey) {
1b508da7 481 if (encoding == REDIS_ENCODING_HT)
482 addReplyBulk(c,eleobj);
483 else
484 addReplyBulkLongLong(c,intobj);
96ffb2fe
PN
485 cardinality++;
486 } else {
1b508da7 487 if (encoding == REDIS_ENCODING_INTSET) {
488 eleobj = createStringObjectFromLongLong(intobj);
489 setTypeAdd(dstset,eleobj);
490 decrRefCount(eleobj);
491 } else {
492 setTypeAdd(dstset,eleobj);
493 }
96ffb2fe 494 }
e2641e09 495 }
496 }
96ffb2fe 497 setTypeReleaseIterator(si);
e2641e09 498
499 if (dstkey) {
500 /* Store the resulting set into the target, if the intersection
501 * is not an empty set. */
502 dbDelete(c->db,dstkey);
96ffb2fe 503 if (setTypeSize(dstset) > 0) {
e2641e09 504 dbAdd(c->db,dstkey,dstset);
96ffb2fe 505 addReplyLongLong(c,setTypeSize(dstset));
e2641e09 506 } else {
507 decrRefCount(dstset);
508 addReply(c,shared.czero);
509 }
cea8c5cd 510 signalModifiedKey(c->db,dstkey);
e2641e09 511 server.dirty++;
512 } else {
b301c1fc 513 setDeferredMultiBulkLength(c,replylen,cardinality);
e2641e09 514 }
96ffb2fe 515 zfree(sets);
e2641e09 516}
517
518void sinterCommand(redisClient *c) {
519 sinterGenericCommand(c,c->argv+1,c->argc-1,NULL);
520}
521
522void sinterstoreCommand(redisClient *c) {
523 sinterGenericCommand(c,c->argv+2,c->argc-2,c->argv[1]);
524}
525
96ffb2fe
PN
526#define REDIS_OP_UNION 0
527#define REDIS_OP_DIFF 1
528#define REDIS_OP_INTER 2
e2641e09 529
96ffb2fe
PN
530void sunionDiffGenericCommand(redisClient *c, robj **setkeys, int setnum, robj *dstkey, int op) {
531 robj **sets = zmalloc(sizeof(robj*)*setnum);
cb72d0f1 532 setTypeIterator *si;
96ffb2fe
PN
533 robj *ele, *dstset = NULL;
534 int j, cardinality = 0;
e2641e09 535
96ffb2fe
PN
536 for (j = 0; j < setnum; j++) {
537 robj *setobj = dstkey ?
538 lookupKeyWrite(c->db,setkeys[j]) :
539 lookupKeyRead(c->db,setkeys[j]);
e2641e09 540 if (!setobj) {
96ffb2fe 541 sets[j] = NULL;
e2641e09 542 continue;
543 }
96ffb2fe
PN
544 if (checkType(c,setobj,REDIS_SET)) {
545 zfree(sets);
e2641e09 546 return;
547 }
96ffb2fe 548 sets[j] = setobj;
e2641e09 549 }
550
551 /* We need a temp set object to store our union. If the dstkey
552 * is not NULL (that is, we are inside an SUNIONSTORE operation) then
553 * this set object will be the resulting object to set into the target key*/
96ffb2fe 554 dstset = createIntsetObject();
e2641e09 555
556 /* Iterate all the elements of all the sets, add every element a single
557 * time to the result set */
96ffb2fe
PN
558 for (j = 0; j < setnum; j++) {
559 if (op == REDIS_OP_DIFF && j == 0 && !sets[j]) break; /* result set is empty */
560 if (!sets[j]) continue; /* non existing keys are like empty sets */
e2641e09 561
96ffb2fe 562 si = setTypeInitIterator(sets[j]);
1b508da7 563 while((ele = setTypeNextObject(si)) != NULL) {
e2641e09 564 if (op == REDIS_OP_UNION || j == 0) {
96ffb2fe 565 if (setTypeAdd(dstset,ele)) {
e2641e09 566 cardinality++;
567 }
568 } else if (op == REDIS_OP_DIFF) {
96ffb2fe 569 if (setTypeRemove(dstset,ele)) {
e2641e09 570 cardinality--;
571 }
572 }
96ffb2fe 573 decrRefCount(ele);
e2641e09 574 }
96ffb2fe 575 setTypeReleaseIterator(si);
e2641e09 576
96ffb2fe 577 /* Exit when result set is empty. */
e2641e09 578 if (op == REDIS_OP_DIFF && cardinality == 0) break;
579 }
580
581 /* Output the content of the resulting set, if not in STORE mode */
582 if (!dstkey) {
0537e7bf 583 addReplyMultiBulkLen(c,cardinality);
96ffb2fe 584 si = setTypeInitIterator(dstset);
1b508da7 585 while((ele = setTypeNextObject(si)) != NULL) {
e2641e09 586 addReplyBulk(c,ele);
96ffb2fe 587 decrRefCount(ele);
e2641e09 588 }
96ffb2fe 589 setTypeReleaseIterator(si);
e2641e09 590 decrRefCount(dstset);
591 } else {
592 /* If we have a target key where to store the resulting set
593 * create this key with the result set inside */
594 dbDelete(c->db,dstkey);
96ffb2fe 595 if (setTypeSize(dstset) > 0) {
e2641e09 596 dbAdd(c->db,dstkey,dstset);
96ffb2fe 597 addReplyLongLong(c,setTypeSize(dstset));
e2641e09 598 } else {
599 decrRefCount(dstset);
600 addReply(c,shared.czero);
601 }
cea8c5cd 602 signalModifiedKey(c->db,dstkey);
e2641e09 603 server.dirty++;
604 }
96ffb2fe 605 zfree(sets);
e2641e09 606}
607
608void sunionCommand(redisClient *c) {
609 sunionDiffGenericCommand(c,c->argv+1,c->argc-1,NULL,REDIS_OP_UNION);
610}
611
612void sunionstoreCommand(redisClient *c) {
613 sunionDiffGenericCommand(c,c->argv+2,c->argc-2,c->argv[1],REDIS_OP_UNION);
614}
615
616void sdiffCommand(redisClient *c) {
617 sunionDiffGenericCommand(c,c->argv+1,c->argc-1,NULL,REDIS_OP_DIFF);
618}
619
620void sdiffstoreCommand(redisClient *c) {
621 sunionDiffGenericCommand(c,c->argv+2,c->argc-2,c->argv[1],REDIS_OP_DIFF);
622}