]> git.saurik.com Git - redis.git/blame - src/t_zset.c
Initial work for ziplist backed sorted sets
[redis.git] / src / t_zset.c
CommitLineData
e2641e09 1#include "redis.h"
2
3#include <math.h>
4
5/*-----------------------------------------------------------------------------
6 * Sorted set API
7 *----------------------------------------------------------------------------*/
8
9/* ZSETs are ordered sets using two data structures to hold the same elements
10 * in order to get O(log(N)) INSERT and REMOVE operations into a sorted
11 * data structure.
12 *
13 * The elements are added to an hash table mapping Redis objects to scores.
14 * At the same time the elements are added to a skip list mapping scores
15 * to Redis objects (so objects are sorted by scores in this "view"). */
16
17/* This skiplist implementation is almost a C translation of the original
18 * algorithm described by William Pugh in "Skip Lists: A Probabilistic
19 * Alternative to Balanced Trees", modified in three ways:
20 * a) this implementation allows for repeated values.
21 * b) the comparison is not just by key (our 'score') but by satellite data.
22 * c) there is a back pointer, so it's a doubly linked list with the back
23 * pointers being only at "level 1". This allows to traverse the list
24 * from tail to head, useful for ZREVRANGE. */
25
26zskiplistNode *zslCreateNode(int level, double score, robj *obj) {
2159782b 27 zskiplistNode *zn = zmalloc(sizeof(*zn)+level*sizeof(struct zskiplistLevel));
e2641e09 28 zn->score = score;
29 zn->obj = obj;
30 return zn;
31}
32
33zskiplist *zslCreate(void) {
34 int j;
35 zskiplist *zsl;
36
37 zsl = zmalloc(sizeof(*zsl));
38 zsl->level = 1;
39 zsl->length = 0;
40 zsl->header = zslCreateNode(ZSKIPLIST_MAXLEVEL,0,NULL);
41 for (j = 0; j < ZSKIPLIST_MAXLEVEL; j++) {
2159782b
PN
42 zsl->header->level[j].forward = NULL;
43 zsl->header->level[j].span = 0;
e2641e09 44 }
45 zsl->header->backward = NULL;
46 zsl->tail = NULL;
47 return zsl;
48}
49
50void zslFreeNode(zskiplistNode *node) {
51 decrRefCount(node->obj);
e2641e09 52 zfree(node);
53}
54
55void zslFree(zskiplist *zsl) {
2159782b 56 zskiplistNode *node = zsl->header->level[0].forward, *next;
e2641e09 57
e2641e09 58 zfree(zsl->header);
59 while(node) {
2159782b 60 next = node->level[0].forward;
e2641e09 61 zslFreeNode(node);
62 node = next;
63 }
64 zfree(zsl);
65}
66
67int zslRandomLevel(void) {
68 int level = 1;
69 while ((random()&0xFFFF) < (ZSKIPLIST_P * 0xFFFF))
70 level += 1;
71 return (level<ZSKIPLIST_MAXLEVEL) ? level : ZSKIPLIST_MAXLEVEL;
72}
73
69ef89f2 74zskiplistNode *zslInsert(zskiplist *zsl, double score, robj *obj) {
e2641e09 75 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
76 unsigned int rank[ZSKIPLIST_MAXLEVEL];
77 int i, level;
78
79 x = zsl->header;
80 for (i = zsl->level-1; i >= 0; i--) {
81 /* store rank that is crossed to reach the insert position */
82 rank[i] = i == (zsl->level-1) ? 0 : rank[i+1];
2159782b
PN
83 while (x->level[i].forward &&
84 (x->level[i].forward->score < score ||
85 (x->level[i].forward->score == score &&
86 compareStringObjects(x->level[i].forward->obj,obj) < 0))) {
87 rank[i] += x->level[i].span;
88 x = x->level[i].forward;
e2641e09 89 }
90 update[i] = x;
91 }
92 /* we assume the key is not already inside, since we allow duplicated
93 * scores, and the re-insertion of score and redis object should never
94 * happpen since the caller of zslInsert() should test in the hash table
95 * if the element is already inside or not. */
96 level = zslRandomLevel();
97 if (level > zsl->level) {
98 for (i = zsl->level; i < level; i++) {
99 rank[i] = 0;
100 update[i] = zsl->header;
2159782b 101 update[i]->level[i].span = zsl->length;
e2641e09 102 }
103 zsl->level = level;
104 }
105 x = zslCreateNode(level,score,obj);
106 for (i = 0; i < level; i++) {
2159782b
PN
107 x->level[i].forward = update[i]->level[i].forward;
108 update[i]->level[i].forward = x;
e2641e09 109
110 /* update span covered by update[i] as x is inserted here */
2159782b
PN
111 x->level[i].span = update[i]->level[i].span - (rank[0] - rank[i]);
112 update[i]->level[i].span = (rank[0] - rank[i]) + 1;
e2641e09 113 }
114
115 /* increment span for untouched levels */
116 for (i = level; i < zsl->level; i++) {
2159782b 117 update[i]->level[i].span++;
e2641e09 118 }
119
120 x->backward = (update[0] == zsl->header) ? NULL : update[0];
2159782b
PN
121 if (x->level[0].forward)
122 x->level[0].forward->backward = x;
e2641e09 123 else
124 zsl->tail = x;
125 zsl->length++;
69ef89f2 126 return x;
e2641e09 127}
128
129/* Internal function used by zslDelete, zslDeleteByScore and zslDeleteByRank */
130void zslDeleteNode(zskiplist *zsl, zskiplistNode *x, zskiplistNode **update) {
131 int i;
132 for (i = 0; i < zsl->level; i++) {
2159782b
PN
133 if (update[i]->level[i].forward == x) {
134 update[i]->level[i].span += x->level[i].span - 1;
135 update[i]->level[i].forward = x->level[i].forward;
e2641e09 136 } else {
2159782b 137 update[i]->level[i].span -= 1;
e2641e09 138 }
139 }
2159782b
PN
140 if (x->level[0].forward) {
141 x->level[0].forward->backward = x->backward;
e2641e09 142 } else {
143 zsl->tail = x->backward;
144 }
2159782b 145 while(zsl->level > 1 && zsl->header->level[zsl->level-1].forward == NULL)
e2641e09 146 zsl->level--;
147 zsl->length--;
148}
149
150/* Delete an element with matching score/object from the skiplist. */
151int zslDelete(zskiplist *zsl, double score, robj *obj) {
152 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
153 int i;
154
155 x = zsl->header;
156 for (i = zsl->level-1; i >= 0; i--) {
2159782b
PN
157 while (x->level[i].forward &&
158 (x->level[i].forward->score < score ||
159 (x->level[i].forward->score == score &&
160 compareStringObjects(x->level[i].forward->obj,obj) < 0)))
161 x = x->level[i].forward;
e2641e09 162 update[i] = x;
163 }
164 /* We may have multiple elements with the same score, what we need
165 * is to find the element with both the right score and object. */
2159782b 166 x = x->level[0].forward;
e2641e09 167 if (x && score == x->score && equalStringObjects(x->obj,obj)) {
168 zslDeleteNode(zsl, x, update);
169 zslFreeNode(x);
170 return 1;
171 } else {
172 return 0; /* not found */
173 }
174 return 0; /* not found */
175}
176
91504b6c
PN
177/* Struct to hold a inclusive/exclusive range spec. */
178typedef struct {
179 double min, max;
180 int minex, maxex; /* are min or max exclusive? */
181} zrangespec;
182
45290ad9 183static int zslValueGteMin(double value, zrangespec *spec) {
22b9bf15
PN
184 return spec->minex ? (value > spec->min) : (value >= spec->min);
185}
186
45290ad9 187static int zslValueLteMax(double value, zrangespec *spec) {
22b9bf15
PN
188 return spec->maxex ? (value < spec->max) : (value <= spec->max);
189}
190
df278b8b 191static int zslValueInRange(double value, zrangespec *spec) {
45290ad9 192 return zslValueGteMin(value,spec) && zslValueLteMax(value,spec);
22b9bf15
PN
193}
194
195/* Returns if there is a part of the zset is in range. */
196int zslIsInRange(zskiplist *zsl, zrangespec *range) {
197 zskiplistNode *x;
198
8e1b3277
PN
199 /* Test for ranges that will always be empty. */
200 if (range->min > range->max ||
201 (range->min == range->max && (range->minex || range->maxex)))
202 return 0;
22b9bf15 203 x = zsl->tail;
45290ad9 204 if (x == NULL || !zslValueGteMin(x->score,range))
22b9bf15
PN
205 return 0;
206 x = zsl->header->level[0].forward;
45290ad9 207 if (x == NULL || !zslValueLteMax(x->score,range))
22b9bf15
PN
208 return 0;
209 return 1;
210}
211
212/* Find the first node that is contained in the specified range.
213 * Returns NULL when no element is contained in the range. */
214zskiplistNode *zslFirstInRange(zskiplist *zsl, zrangespec range) {
215 zskiplistNode *x;
216 int i;
217
218 /* If everything is out of range, return early. */
219 if (!zslIsInRange(zsl,&range)) return NULL;
220
221 x = zsl->header;
222 for (i = zsl->level-1; i >= 0; i--) {
223 /* Go forward while *OUT* of range. */
224 while (x->level[i].forward &&
45290ad9 225 !zslValueGteMin(x->level[i].forward->score,&range))
22b9bf15
PN
226 x = x->level[i].forward;
227 }
228
229 /* The tail is in range, so the previous block should always return a
230 * node that is non-NULL and the last one to be out of range. */
231 x = x->level[0].forward;
232 redisAssert(x != NULL && zslValueInRange(x->score,&range));
233 return x;
234}
235
236/* Find the last node that is contained in the specified range.
237 * Returns NULL when no element is contained in the range. */
238zskiplistNode *zslLastInRange(zskiplist *zsl, zrangespec range) {
239 zskiplistNode *x;
240 int i;
241
242 /* If everything is out of range, return early. */
243 if (!zslIsInRange(zsl,&range)) return NULL;
244
245 x = zsl->header;
246 for (i = zsl->level-1; i >= 0; i--) {
247 /* Go forward while *IN* range. */
248 while (x->level[i].forward &&
45290ad9 249 zslValueLteMax(x->level[i].forward->score,&range))
22b9bf15
PN
250 x = x->level[i].forward;
251 }
252
253 /* The header is in range, so the previous block should always return a
254 * node that is non-NULL and in range. */
255 redisAssert(x != NULL && zslValueInRange(x->score,&range));
256 return x;
257}
258
e2641e09 259/* Delete all the elements with score between min and max from the skiplist.
260 * Min and mx are inclusive, so a score >= min || score <= max is deleted.
261 * Note that this function takes the reference to the hash table view of the
262 * sorted set, in order to remove the elements from the hash table too. */
91504b6c 263unsigned long zslDeleteRangeByScore(zskiplist *zsl, zrangespec range, dict *dict) {
e2641e09 264 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
265 unsigned long removed = 0;
266 int i;
267
268 x = zsl->header;
269 for (i = zsl->level-1; i >= 0; i--) {
91504b6c
PN
270 while (x->level[i].forward && (range.minex ?
271 x->level[i].forward->score <= range.min :
272 x->level[i].forward->score < range.min))
273 x = x->level[i].forward;
e2641e09 274 update[i] = x;
275 }
91504b6c
PN
276
277 /* Current node is the last with score < or <= min. */
2159782b 278 x = x->level[0].forward;
91504b6c
PN
279
280 /* Delete nodes while in range. */
281 while (x && (range.maxex ? x->score < range.max : x->score <= range.max)) {
2159782b 282 zskiplistNode *next = x->level[0].forward;
69ef89f2 283 zslDeleteNode(zsl,x,update);
e2641e09 284 dictDelete(dict,x->obj);
285 zslFreeNode(x);
286 removed++;
287 x = next;
288 }
91504b6c 289 return removed;
e2641e09 290}
291
292/* Delete all the elements with rank between start and end from the skiplist.
293 * Start and end are inclusive. Note that start and end need to be 1-based */
294unsigned long zslDeleteRangeByRank(zskiplist *zsl, unsigned int start, unsigned int end, dict *dict) {
295 zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
296 unsigned long traversed = 0, removed = 0;
297 int i;
298
299 x = zsl->header;
300 for (i = zsl->level-1; i >= 0; i--) {
2159782b
PN
301 while (x->level[i].forward && (traversed + x->level[i].span) < start) {
302 traversed += x->level[i].span;
303 x = x->level[i].forward;
e2641e09 304 }
305 update[i] = x;
306 }
307
308 traversed++;
2159782b 309 x = x->level[0].forward;
e2641e09 310 while (x && traversed <= end) {
2159782b 311 zskiplistNode *next = x->level[0].forward;
69ef89f2 312 zslDeleteNode(zsl,x,update);
e2641e09 313 dictDelete(dict,x->obj);
314 zslFreeNode(x);
315 removed++;
316 traversed++;
317 x = next;
318 }
319 return removed;
320}
321
e2641e09 322/* Find the rank for an element by both score and key.
323 * Returns 0 when the element cannot be found, rank otherwise.
324 * Note that the rank is 1-based due to the span of zsl->header to the
325 * first element. */
a3004773 326unsigned long zslGetRank(zskiplist *zsl, double score, robj *o) {
e2641e09 327 zskiplistNode *x;
328 unsigned long rank = 0;
329 int i;
330
331 x = zsl->header;
332 for (i = zsl->level-1; i >= 0; i--) {
2159782b
PN
333 while (x->level[i].forward &&
334 (x->level[i].forward->score < score ||
335 (x->level[i].forward->score == score &&
336 compareStringObjects(x->level[i].forward->obj,o) <= 0))) {
337 rank += x->level[i].span;
338 x = x->level[i].forward;
e2641e09 339 }
340
341 /* x might be equal to zsl->header, so test if obj is non-NULL */
342 if (x->obj && equalStringObjects(x->obj,o)) {
343 return rank;
344 }
345 }
346 return 0;
347}
348
349/* Finds an element by its rank. The rank argument needs to be 1-based. */
a3004773 350zskiplistNode* zslGetElementByRank(zskiplist *zsl, unsigned long rank) {
e2641e09 351 zskiplistNode *x;
352 unsigned long traversed = 0;
353 int i;
354
355 x = zsl->header;
356 for (i = zsl->level-1; i >= 0; i--) {
2159782b 357 while (x->level[i].forward && (traversed + x->level[i].span) <= rank)
e2641e09 358 {
2159782b
PN
359 traversed += x->level[i].span;
360 x = x->level[i].forward;
e2641e09 361 }
362 if (traversed == rank) {
363 return x;
364 }
365 }
366 return NULL;
367}
368
25bb8a44 369/* Populate the rangespec according to the objects min and max. */
7236fdb2
PN
370static int zslParseRange(robj *min, robj *max, zrangespec *spec) {
371 char *eptr;
25bb8a44
PN
372 spec->minex = spec->maxex = 0;
373
374 /* Parse the min-max interval. If one of the values is prefixed
375 * by the "(" character, it's considered "open". For instance
376 * ZRANGEBYSCORE zset (1.5 (2.5 will match min < x < max
377 * ZRANGEBYSCORE zset 1.5 2.5 will instead match min <= x <= max */
378 if (min->encoding == REDIS_ENCODING_INT) {
379 spec->min = (long)min->ptr;
380 } else {
381 if (((char*)min->ptr)[0] == '(') {
7236fdb2
PN
382 spec->min = strtod((char*)min->ptr+1,&eptr);
383 if (eptr[0] != '\0' || isnan(spec->min)) return REDIS_ERR;
25bb8a44
PN
384 spec->minex = 1;
385 } else {
7236fdb2
PN
386 spec->min = strtod((char*)min->ptr,&eptr);
387 if (eptr[0] != '\0' || isnan(spec->min)) return REDIS_ERR;
25bb8a44
PN
388 }
389 }
390 if (max->encoding == REDIS_ENCODING_INT) {
391 spec->max = (long)max->ptr;
392 } else {
393 if (((char*)max->ptr)[0] == '(') {
7236fdb2
PN
394 spec->max = strtod((char*)max->ptr+1,&eptr);
395 if (eptr[0] != '\0' || isnan(spec->max)) return REDIS_ERR;
25bb8a44
PN
396 spec->maxex = 1;
397 } else {
7236fdb2
PN
398 spec->max = strtod((char*)max->ptr,&eptr);
399 if (eptr[0] != '\0' || isnan(spec->max)) return REDIS_ERR;
25bb8a44
PN
400 }
401 }
402
403 return REDIS_OK;
404}
405
21c5b508
PN
406/*-----------------------------------------------------------------------------
407 * Ziplist-backed sorted set API
408 *----------------------------------------------------------------------------*/
409
410double zzlGetScore(unsigned char *sptr) {
411 unsigned char *vstr;
412 unsigned int vlen;
413 long long vlong;
414 char buf[128];
415 double score;
416
417 redisAssert(sptr != NULL);
418 redisAssert(ziplistGet(sptr,&vstr,&vlen,&vlong));
419
420 if (vstr) {
421 memcpy(buf,vstr,vlen);
422 buf[vlen] = '\0';
423 score = strtod(buf,NULL);
424 } else {
425 score = vlong;
426 }
427
428 return score;
429}
430
431/* Compare element in sorted set with given element. */
432int zzlCompareElements(unsigned char *eptr, unsigned char *cstr, unsigned int clen) {
433 unsigned char *vstr;
434 unsigned int vlen;
435 long long vlong;
436 unsigned char vbuf[32];
437 int minlen, cmp;
438
439 redisAssert(ziplistGet(eptr,&vstr,&vlen,&vlong));
440 if (vstr == NULL) {
441 /* Store string representation of long long in buf. */
442 vlen = ll2string((char*)vbuf,sizeof(vbuf),vlong);
443 vstr = vbuf;
444 }
445
446 minlen = (vlen < clen) ? vlen : clen;
447 cmp = memcmp(vstr,cstr,minlen);
448 if (cmp == 0) return vlen-clen;
449 return cmp;
450}
451
452unsigned char *zzlFind(robj *zobj, robj *ele, double *score) {
453 unsigned char *zl = zobj->ptr;
454 unsigned char *eptr = ziplistIndex(zl,0), *sptr;
455
456 ele = getDecodedObject(ele);
457 while (eptr != NULL) {
458 sptr = ziplistNext(zl,eptr);
459 redisAssert(sptr != NULL);
460
461 if (ziplistCompare(eptr,ele->ptr,sdslen(ele->ptr))) {
462 /* Matching element, pull out score. */
463 *score = zzlGetScore(sptr);
464 decrRefCount(ele);
465 return eptr;
466 }
467
468 /* Move to next element. */
469 eptr = ziplistNext(zl,sptr);
470 }
471
472 decrRefCount(ele);
473 return NULL;
474}
475
476/* Delete (element,score) pair from ziplist. Use local copy of eptr because we
477 * don't want to modify the one given as argument. */
478int zzlDelete(robj *zobj, unsigned char *eptr) {
479 unsigned char *zl = zobj->ptr;
480 unsigned char *p = eptr;
481
482 /* TODO: add function to ziplist API to delete N elements from offset. */
483 zl = ziplistDelete(zl,&p);
484 zl = ziplistDelete(zl,&p);
485 zobj->ptr = zl;
486 return REDIS_OK;
487}
488
489int zzlInsertAt(robj *zobj, robj *ele, double score, unsigned char *eptr) {
490 unsigned char *zl = zobj->ptr;
491 unsigned char *sptr;
492 char scorebuf[128];
493 int scorelen;
494 int offset;
495
496 redisAssert(ele->encoding == REDIS_ENCODING_RAW);
497 scorelen = d2string(scorebuf,sizeof(scorebuf),score);
498 if (eptr == NULL) {
499 zl = ziplistPush(zl,ele->ptr,sdslen(ele->ptr),ZIPLIST_TAIL);
500 zl = ziplistPush(zl,(unsigned char*)scorebuf,scorelen,ZIPLIST_TAIL);
501 } else {
502 /* Keep offset relative to zl, as it might be re-allocated. */
503 offset = eptr-zl;
504 zl = ziplistInsert(zl,eptr,ele->ptr,sdslen(ele->ptr));
505 eptr = zl+offset;
506
507 /* Insert score after the element. */
508 redisAssert((sptr = ziplistNext(zl,eptr)) != NULL);
509 zl = ziplistInsert(zl,sptr,(unsigned char*)scorebuf,scorelen);
510 }
511
512 zobj->ptr = zl;
513 return REDIS_OK;
514}
515
516/* Insert (element,score) pair in ziplist. This function assumes the element is
517 * not yet present in the list. */
518int zzlInsert(robj *zobj, robj *ele, double score) {
519 unsigned char *zl = zobj->ptr;
520 unsigned char *eptr = ziplistIndex(zl,0), *sptr;
521 double s;
522 int insert = 0;
523
524 ele = getDecodedObject(ele);
525 while (eptr != NULL) {
526 sptr = ziplistNext(zl,eptr);
527 redisAssert(sptr != NULL);
528 s = zzlGetScore(sptr);
529
530 if (s > score) {
531 /* First element with score larger than score for element to be
532 * inserted. This means we should take its spot in the list to
533 * maintain ordering. */
534 insert = 1;
535 } else if (s == score) {
536 /* Ensure lexicographical ordering for elements. */
537 if (zzlCompareElements(eptr,ele->ptr,sdslen(ele->ptr)) < 0)
538 insert = 1;
539 }
540
541 if (insert) {
542 zzlInsertAt(zobj,ele,score,eptr);
543 break;
544 }
545
546 /* Move to next element. */
547 eptr = ziplistNext(zl,sptr);
548 }
549
550 /* Push on tail of list when it was not yet inserted. */
551 if (!insert)
552 zzlInsertAt(zobj,ele,score,eptr);
553
554 decrRefCount(ele);
555 return REDIS_OK;
556}
25bb8a44 557
e2641e09 558/*-----------------------------------------------------------------------------
559 * Sorted set commands
560 *----------------------------------------------------------------------------*/
561
69ef89f2
PN
562/* This generic command implements both ZADD and ZINCRBY. */
563void zaddGenericCommand(redisClient *c, robj *key, robj *ele, double score, int incr) {
21c5b508
PN
564 static char *nanerr = "resulting score is not a number (NaN)";
565 robj *zobj;
566 robj *curobj;
567 double curscore = 0.0;
568
569 zobj = lookupKeyWrite(c->db,key);
570 if (zobj == NULL) {
571 zobj = createZsetZiplistObject();
572 dbAdd(c->db,key,zobj);
e2641e09 573 } else {
21c5b508 574 if (zobj->type != REDIS_ZSET) {
e2641e09 575 addReply(c,shared.wrongtypeerr);
576 return;
577 }
578 }
e2641e09 579
21c5b508
PN
580 if (zobj->encoding == REDIS_ENCODING_ZIPLIST) {
581 unsigned char *eptr;
582
583 if ((eptr = zzlFind(zobj,ele,&curscore)) != NULL) {
584 if (incr) {
585 score += curscore;
586 if (isnan(score)) {
587 addReplyError(c,nanerr);
588 /* Don't need to check if the sorted set is empty, because
589 * we know it has at least one element. */
590 return;
591 }
592 }
593
594 /* Remove and re-insert when score changed. */
595 if (score != curscore) {
596 redisAssert(zzlDelete(zobj,eptr) == REDIS_OK);
597 redisAssert(zzlInsert(zobj,ele,score) == REDIS_OK);
598
599 signalModifiedKey(c->db,key);
600 server.dirty++;
601 }
602
603 if (incr) /* ZINCRBY */
604 addReplyDouble(c,score);
605 else /* ZADD */
606 addReply(c,shared.czero);
607 } else {
608 redisAssert(zzlInsert(zobj,ele,score) == REDIS_OK);
69ef89f2 609
21c5b508
PN
610 signalModifiedKey(c->db,key);
611 server.dirty++;
69ef89f2 612
21c5b508
PN
613 if (incr) /* ZINCRBY */
614 addReplyDouble(c,score);
615 else /* ZADD */
616 addReply(c,shared.cone);
617 }
618 } else if (zobj->encoding == REDIS_ENCODING_RAW) {
619 zset *zs = zobj->ptr;
620 zskiplistNode *znode;
e2641e09 621 dictEntry *de;
e2641e09 622
e2641e09 623 de = dictFind(zs->dict,ele);
21c5b508
PN
624 if (de != NULL) {
625 curobj = dictGetEntryKey(de);
626 curscore = *(double*)dictGetEntryVal(de);
627
628 if (incr) {
629 score += curscore;
630 if (isnan(score)) {
631 addReplyError(c,nanerr);
632 /* Don't need to check if the sorted set is empty, because
633 * we know it has at least one element. */
634 return;
635 }
636 }
637
638 /* Remove and re-insert when score changed. We can safely delete
639 * the key object from the skiplist, since the dictionary still has
640 * a reference to it. */
641 if (score != curscore) {
642 redisAssert(zslDelete(zs->zsl,curscore,curobj));
643 znode = zslInsert(zs->zsl,score,curobj);
644 incrRefCount(curobj); /* Re-inserted in skiplist. */
645 dictGetEntryVal(de) = &znode->score; /* Update score ptr. */
646
647 signalModifiedKey(c->db,key);
648 server.dirty++;
649 }
650
651 if (incr) /* ZINCRBY */
652 addReplyDouble(c,score);
653 else /* ZADD */
654 addReply(c,shared.czero);
655 } else {
656 znode = zslInsert(zs->zsl,score,ele);
657 incrRefCount(ele); /* Inserted in skiplist. */
658 redisAssert(dictAdd(zs->dict,ele,&znode->score) == DICT_OK);
659 incrRefCount(ele); /* Added to dictionary. */
660
661 signalModifiedKey(c->db,key);
e2641e09 662 server.dirty++;
21c5b508
PN
663
664 if (incr) /* ZINCRBY */
665 addReplyDouble(c,score);
666 else /* ZADD */
667 addReply(c,shared.cone);
e2641e09 668 }
21c5b508
PN
669 } else {
670 redisPanic("Unknown sorted set encoding");
e2641e09 671 }
672}
673
674void zaddCommand(redisClient *c) {
675 double scoreval;
673e1fb7 676 if (getDoubleFromObjectOrReply(c,c->argv[2],&scoreval,NULL) != REDIS_OK) return;
75b41de8 677 c->argv[3] = tryObjectEncoding(c->argv[3]);
e2641e09 678 zaddGenericCommand(c,c->argv[1],c->argv[3],scoreval,0);
679}
680
681void zincrbyCommand(redisClient *c) {
682 double scoreval;
673e1fb7 683 if (getDoubleFromObjectOrReply(c,c->argv[2],&scoreval,NULL) != REDIS_OK) return;
75b41de8 684 c->argv[3] = tryObjectEncoding(c->argv[3]);
e2641e09 685 zaddGenericCommand(c,c->argv[1],c->argv[3],scoreval,1);
686}
687
688void zremCommand(redisClient *c) {
689 robj *zsetobj;
690 zset *zs;
691 dictEntry *de;
69ef89f2 692 double curscore;
e2641e09 693 int deleted;
694
695 if ((zsetobj = lookupKeyWriteOrReply(c,c->argv[1],shared.czero)) == NULL ||
696 checkType(c,zsetobj,REDIS_ZSET)) return;
697
698 zs = zsetobj->ptr;
75b41de8 699 c->argv[2] = tryObjectEncoding(c->argv[2]);
e2641e09 700 de = dictFind(zs->dict,c->argv[2]);
701 if (de == NULL) {
702 addReply(c,shared.czero);
703 return;
704 }
705 /* Delete from the skiplist */
69ef89f2
PN
706 curscore = *(double*)dictGetEntryVal(de);
707 deleted = zslDelete(zs->zsl,curscore,c->argv[2]);
e2641e09 708 redisAssert(deleted != 0);
709
710 /* Delete from the hash table */
711 dictDelete(zs->dict,c->argv[2]);
712 if (htNeedsResize(zs->dict)) dictResize(zs->dict);
713 if (dictSize(zs->dict) == 0) dbDelete(c->db,c->argv[1]);
cea8c5cd 714 signalModifiedKey(c->db,c->argv[1]);
e2641e09 715 server.dirty++;
716 addReply(c,shared.cone);
717}
718
719void zremrangebyscoreCommand(redisClient *c) {
91504b6c 720 zrangespec range;
e2641e09 721 long deleted;
91504b6c 722 robj *o;
e2641e09 723 zset *zs;
724
91504b6c 725 /* Parse the range arguments. */
7236fdb2
PN
726 if (zslParseRange(c->argv[2],c->argv[3],&range) != REDIS_OK) {
727 addReplyError(c,"min or max is not a double");
728 return;
729 }
e2641e09 730
91504b6c
PN
731 if ((o = lookupKeyWriteOrReply(c,c->argv[1],shared.czero)) == NULL ||
732 checkType(c,o,REDIS_ZSET)) return;
e2641e09 733
91504b6c
PN
734 zs = o->ptr;
735 deleted = zslDeleteRangeByScore(zs->zsl,range,zs->dict);
e2641e09 736 if (htNeedsResize(zs->dict)) dictResize(zs->dict);
737 if (dictSize(zs->dict) == 0) dbDelete(c->db,c->argv[1]);
cea8c5cd 738 if (deleted) signalModifiedKey(c->db,c->argv[1]);
e2641e09 739 server.dirty += deleted;
740 addReplyLongLong(c,deleted);
741}
742
743void zremrangebyrankCommand(redisClient *c) {
744 long start;
745 long end;
746 int llen;
747 long deleted;
748 robj *zsetobj;
749 zset *zs;
750
751 if ((getLongFromObjectOrReply(c, c->argv[2], &start, NULL) != REDIS_OK) ||
752 (getLongFromObjectOrReply(c, c->argv[3], &end, NULL) != REDIS_OK)) return;
753
754 if ((zsetobj = lookupKeyWriteOrReply(c,c->argv[1],shared.czero)) == NULL ||
755 checkType(c,zsetobj,REDIS_ZSET)) return;
756 zs = zsetobj->ptr;
757 llen = zs->zsl->length;
758
759 /* convert negative indexes */
760 if (start < 0) start = llen+start;
761 if (end < 0) end = llen+end;
762 if (start < 0) start = 0;
e2641e09 763
d0a4e24e
PN
764 /* Invariant: start >= 0, so this test will be true when end < 0.
765 * The range is empty when start > end or start >= length. */
e2641e09 766 if (start > end || start >= llen) {
767 addReply(c,shared.czero);
768 return;
769 }
770 if (end >= llen) end = llen-1;
771
772 /* increment start and end because zsl*Rank functions
773 * use 1-based rank */
774 deleted = zslDeleteRangeByRank(zs->zsl,start+1,end+1,zs->dict);
775 if (htNeedsResize(zs->dict)) dictResize(zs->dict);
776 if (dictSize(zs->dict) == 0) dbDelete(c->db,c->argv[1]);
cea8c5cd 777 if (deleted) signalModifiedKey(c->db,c->argv[1]);
e2641e09 778 server.dirty += deleted;
779 addReplyLongLong(c, deleted);
780}
781
782typedef struct {
783 dict *dict;
784 double weight;
785} zsetopsrc;
786
787int qsortCompareZsetopsrcByCardinality(const void *s1, const void *s2) {
788 zsetopsrc *d1 = (void*) s1, *d2 = (void*) s2;
789 unsigned long size1, size2;
790 size1 = d1->dict ? dictSize(d1->dict) : 0;
791 size2 = d2->dict ? dictSize(d2->dict) : 0;
792 return size1 - size2;
793}
794
795#define REDIS_AGGR_SUM 1
796#define REDIS_AGGR_MIN 2
797#define REDIS_AGGR_MAX 3
798#define zunionInterDictValue(_e) (dictGetEntryVal(_e) == NULL ? 1.0 : *(double*)dictGetEntryVal(_e))
799
800inline static void zunionInterAggregate(double *target, double val, int aggregate) {
801 if (aggregate == REDIS_AGGR_SUM) {
802 *target = *target + val;
d9e28bcf
PN
803 /* The result of adding two doubles is NaN when one variable
804 * is +inf and the other is -inf. When these numbers are added,
805 * we maintain the convention of the result being 0.0. */
806 if (isnan(*target)) *target = 0.0;
e2641e09 807 } else if (aggregate == REDIS_AGGR_MIN) {
808 *target = val < *target ? val : *target;
809 } else if (aggregate == REDIS_AGGR_MAX) {
810 *target = val > *target ? val : *target;
811 } else {
812 /* safety net */
813 redisPanic("Unknown ZUNION/INTER aggregate type");
814 }
815}
816
817void zunionInterGenericCommand(redisClient *c, robj *dstkey, int op) {
818 int i, j, setnum;
819 int aggregate = REDIS_AGGR_SUM;
820 zsetopsrc *src;
821 robj *dstobj;
822 zset *dstzset;
69ef89f2 823 zskiplistNode *znode;
e2641e09 824 dictIterator *di;
825 dictEntry *de;
8c1420ff 826 int touched = 0;
e2641e09 827
828 /* expect setnum input keys to be given */
829 setnum = atoi(c->argv[2]->ptr);
830 if (setnum < 1) {
3ab20376
PN
831 addReplyError(c,
832 "at least 1 input key is needed for ZUNIONSTORE/ZINTERSTORE");
e2641e09 833 return;
834 }
835
836 /* test if the expected number of keys would overflow */
837 if (3+setnum > c->argc) {
838 addReply(c,shared.syntaxerr);
839 return;
840 }
841
842 /* read keys to be used for input */
843 src = zmalloc(sizeof(zsetopsrc) * setnum);
844 for (i = 0, j = 3; i < setnum; i++, j++) {
845 robj *obj = lookupKeyWrite(c->db,c->argv[j]);
846 if (!obj) {
847 src[i].dict = NULL;
848 } else {
849 if (obj->type == REDIS_ZSET) {
850 src[i].dict = ((zset*)obj->ptr)->dict;
851 } else if (obj->type == REDIS_SET) {
852 src[i].dict = (obj->ptr);
853 } else {
854 zfree(src);
855 addReply(c,shared.wrongtypeerr);
856 return;
857 }
858 }
859
860 /* default all weights to 1 */
861 src[i].weight = 1.0;
862 }
863
864 /* parse optional extra arguments */
865 if (j < c->argc) {
866 int remaining = c->argc - j;
867
868 while (remaining) {
869 if (remaining >= (setnum + 1) && !strcasecmp(c->argv[j]->ptr,"weights")) {
870 j++; remaining--;
871 for (i = 0; i < setnum; i++, j++, remaining--) {
673e1fb7
PN
872 if (getDoubleFromObjectOrReply(c,c->argv[j],&src[i].weight,
873 "weight value is not a double") != REDIS_OK)
874 {
875 zfree(src);
e2641e09 876 return;
673e1fb7 877 }
e2641e09 878 }
879 } else if (remaining >= 2 && !strcasecmp(c->argv[j]->ptr,"aggregate")) {
880 j++; remaining--;
881 if (!strcasecmp(c->argv[j]->ptr,"sum")) {
882 aggregate = REDIS_AGGR_SUM;
883 } else if (!strcasecmp(c->argv[j]->ptr,"min")) {
884 aggregate = REDIS_AGGR_MIN;
885 } else if (!strcasecmp(c->argv[j]->ptr,"max")) {
886 aggregate = REDIS_AGGR_MAX;
887 } else {
888 zfree(src);
889 addReply(c,shared.syntaxerr);
890 return;
891 }
892 j++; remaining--;
893 } else {
894 zfree(src);
895 addReply(c,shared.syntaxerr);
896 return;
897 }
898 }
899 }
900
901 /* sort sets from the smallest to largest, this will improve our
902 * algorithm's performance */
903 qsort(src,setnum,sizeof(zsetopsrc),qsortCompareZsetopsrcByCardinality);
904
905 dstobj = createZsetObject();
906 dstzset = dstobj->ptr;
907
908 if (op == REDIS_OP_INTER) {
909 /* skip going over all entries if the smallest zset is NULL or empty */
910 if (src[0].dict && dictSize(src[0].dict) > 0) {
911 /* precondition: as src[0].dict is non-empty and the zsets are ordered
912 * from small to large, all src[i > 0].dict are non-empty too */
913 di = dictGetIterator(src[0].dict);
914 while((de = dictNext(di)) != NULL) {
d433ebc6 915 double score, value;
e2641e09 916
50a9fad5 917 score = src[0].weight * zunionInterDictValue(de);
e2641e09 918 for (j = 1; j < setnum; j++) {
919 dictEntry *other = dictFind(src[j].dict,dictGetEntryKey(de));
920 if (other) {
921 value = src[j].weight * zunionInterDictValue(other);
d433ebc6 922 zunionInterAggregate(&score,value,aggregate);
e2641e09 923 } else {
924 break;
925 }
926 }
927
d433ebc6
PN
928 /* Only continue when present in every source dict. */
929 if (j == setnum) {
e2641e09 930 robj *o = dictGetEntryKey(de);
d433ebc6 931 znode = zslInsert(dstzset->zsl,score,o);
e2641e09 932 incrRefCount(o); /* added to skiplist */
69ef89f2
PN
933 dictAdd(dstzset->dict,o,&znode->score);
934 incrRefCount(o); /* added to dictionary */
e2641e09 935 }
936 }
937 dictReleaseIterator(di);
938 }
939 } else if (op == REDIS_OP_UNION) {
940 for (i = 0; i < setnum; i++) {
941 if (!src[i].dict) continue;
942
943 di = dictGetIterator(src[i].dict);
944 while((de = dictNext(di)) != NULL) {
d433ebc6
PN
945 double score, value;
946
e2641e09 947 /* skip key when already processed */
d433ebc6
PN
948 if (dictFind(dstzset->dict,dictGetEntryKey(de)) != NULL)
949 continue;
e2641e09 950
d433ebc6
PN
951 /* initialize score */
952 score = src[i].weight * zunionInterDictValue(de);
e2641e09 953
954 /* because the zsets are sorted by size, its only possible
955 * for sets at larger indices to hold this entry */
956 for (j = (i+1); j < setnum; j++) {
957 dictEntry *other = dictFind(src[j].dict,dictGetEntryKey(de));
958 if (other) {
959 value = src[j].weight * zunionInterDictValue(other);
d433ebc6 960 zunionInterAggregate(&score,value,aggregate);
e2641e09 961 }
962 }
963
964 robj *o = dictGetEntryKey(de);
d433ebc6 965 znode = zslInsert(dstzset->zsl,score,o);
e2641e09 966 incrRefCount(o); /* added to skiplist */
69ef89f2
PN
967 dictAdd(dstzset->dict,o,&znode->score);
968 incrRefCount(o); /* added to dictionary */
e2641e09 969 }
970 dictReleaseIterator(di);
971 }
972 } else {
973 /* unknown operator */
974 redisAssert(op == REDIS_OP_INTER || op == REDIS_OP_UNION);
975 }
976
8c1420ff 977 if (dbDelete(c->db,dstkey)) {
cea8c5cd 978 signalModifiedKey(c->db,dstkey);
8c1420ff 979 touched = 1;
980 server.dirty++;
981 }
e2641e09 982 if (dstzset->zsl->length) {
983 dbAdd(c->db,dstkey,dstobj);
984 addReplyLongLong(c, dstzset->zsl->length);
cea8c5cd 985 if (!touched) signalModifiedKey(c->db,dstkey);
cbf7e107 986 server.dirty++;
e2641e09 987 } else {
988 decrRefCount(dstobj);
989 addReply(c, shared.czero);
990 }
991 zfree(src);
992}
993
994void zunionstoreCommand(redisClient *c) {
995 zunionInterGenericCommand(c,c->argv[1], REDIS_OP_UNION);
996}
997
998void zinterstoreCommand(redisClient *c) {
999 zunionInterGenericCommand(c,c->argv[1], REDIS_OP_INTER);
1000}
1001
1002void zrangeGenericCommand(redisClient *c, int reverse) {
1003 robj *o;
1004 long start;
1005 long end;
1006 int withscores = 0;
1007 int llen;
1008 int rangelen, j;
1009 zset *zsetobj;
1010 zskiplist *zsl;
1011 zskiplistNode *ln;
1012 robj *ele;
1013
1014 if ((getLongFromObjectOrReply(c, c->argv[2], &start, NULL) != REDIS_OK) ||
1015 (getLongFromObjectOrReply(c, c->argv[3], &end, NULL) != REDIS_OK)) return;
1016
1017 if (c->argc == 5 && !strcasecmp(c->argv[4]->ptr,"withscores")) {
1018 withscores = 1;
1019 } else if (c->argc >= 5) {
1020 addReply(c,shared.syntaxerr);
1021 return;
1022 }
1023
1024 if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.emptymultibulk)) == NULL
1025 || checkType(c,o,REDIS_ZSET)) return;
1026 zsetobj = o->ptr;
1027 zsl = zsetobj->zsl;
1028 llen = zsl->length;
1029
1030 /* convert negative indexes */
1031 if (start < 0) start = llen+start;
1032 if (end < 0) end = llen+end;
1033 if (start < 0) start = 0;
e2641e09 1034
d0a4e24e
PN
1035 /* Invariant: start >= 0, so this test will be true when end < 0.
1036 * The range is empty when start > end or start >= length. */
e2641e09 1037 if (start > end || start >= llen) {
e2641e09 1038 addReply(c,shared.emptymultibulk);
1039 return;
1040 }
1041 if (end >= llen) end = llen-1;
1042 rangelen = (end-start)+1;
1043
1044 /* check if starting point is trivial, before searching
1045 * the element in log(N) time */
1046 if (reverse) {
a3004773 1047 ln = start == 0 ? zsl->tail : zslGetElementByRank(zsl, llen-start);
e2641e09 1048 } else {
1049 ln = start == 0 ?
a3004773 1050 zsl->header->level[0].forward : zslGetElementByRank(zsl, start+1);
e2641e09 1051 }
1052
1053 /* Return the result in form of a multi-bulk reply */
0537e7bf 1054 addReplyMultiBulkLen(c,withscores ? (rangelen*2) : rangelen);
e2641e09 1055 for (j = 0; j < rangelen; j++) {
1056 ele = ln->obj;
1057 addReplyBulk(c,ele);
1058 if (withscores)
1059 addReplyDouble(c,ln->score);
2159782b 1060 ln = reverse ? ln->backward : ln->level[0].forward;
e2641e09 1061 }
1062}
1063
1064void zrangeCommand(redisClient *c) {
1065 zrangeGenericCommand(c,0);
1066}
1067
1068void zrevrangeCommand(redisClient *c) {
1069 zrangeGenericCommand(c,1);
1070}
1071
25bb8a44
PN
1072/* This command implements ZRANGEBYSCORE, ZREVRANGEBYSCORE and ZCOUNT.
1073 * If "justcount", only the number of elements in the range is returned. */
1074void genericZrangebyscoreCommand(redisClient *c, int reverse, int justcount) {
1075 zrangespec range;
1076 robj *o, *emptyreply;
1077 zset *zsetobj;
1078 zskiplist *zsl;
1079 zskiplistNode *ln;
e2641e09 1080 int offset = 0, limit = -1;
1081 int withscores = 0;
25bb8a44
PN
1082 unsigned long rangelen = 0;
1083 void *replylen = NULL;
22b9bf15 1084 int minidx, maxidx;
e2641e09 1085
25bb8a44 1086 /* Parse the range arguments. */
22b9bf15
PN
1087 if (reverse) {
1088 /* Range is given as [max,min] */
1089 maxidx = 2; minidx = 3;
1090 } else {
1091 /* Range is given as [min,max] */
1092 minidx = 2; maxidx = 3;
1093 }
1094
1095 if (zslParseRange(c->argv[minidx],c->argv[maxidx],&range) != REDIS_OK) {
7236fdb2
PN
1096 addReplyError(c,"min or max is not a double");
1097 return;
1098 }
25bb8a44
PN
1099
1100 /* Parse optional extra arguments. Note that ZCOUNT will exactly have
1101 * 4 arguments, so we'll never enter the following code path. */
1102 if (c->argc > 4) {
1103 int remaining = c->argc - 4;
1104 int pos = 4;
1105
1106 while (remaining) {
1107 if (remaining >= 1 && !strcasecmp(c->argv[pos]->ptr,"withscores")) {
1108 pos++; remaining--;
1109 withscores = 1;
1110 } else if (remaining >= 3 && !strcasecmp(c->argv[pos]->ptr,"limit")) {
1111 offset = atoi(c->argv[pos+1]->ptr);
1112 limit = atoi(c->argv[pos+2]->ptr);
1113 pos += 3; remaining -= 3;
1114 } else {
1115 addReply(c,shared.syntaxerr);
1116 return;
1117 }
1118 }
e2641e09 1119 }
25bb8a44
PN
1120
1121 /* Ok, lookup the key and get the range */
1122 emptyreply = justcount ? shared.czero : shared.emptymultibulk;
1123 if ((o = lookupKeyReadOrReply(c,c->argv[1],emptyreply)) == NULL ||
1124 checkType(c,o,REDIS_ZSET)) return;
1125 zsetobj = o->ptr;
1126 zsl = zsetobj->zsl;
1127
22b9bf15 1128 /* If reversed, get the last node in range as starting point. */
25bb8a44 1129 if (reverse) {
22b9bf15 1130 ln = zslLastInRange(zsl,range);
e2641e09 1131 } else {
22b9bf15 1132 ln = zslFirstInRange(zsl,range);
e2641e09 1133 }
1134
25bb8a44
PN
1135 /* No "first" element in the specified interval. */
1136 if (ln == NULL) {
1137 addReply(c,emptyreply);
e2641e09 1138 return;
1139 }
1140
22b9bf15
PN
1141 /* We don't know in advance how many matching elements there are in the
1142 * list, so we push this object that will represent the multi-bulk length
1143 * in the output buffer, and will "fix" it later */
25bb8a44
PN
1144 if (!justcount)
1145 replylen = addDeferredMultiBulkLength(c);
e2641e09 1146
25bb8a44
PN
1147 /* If there is an offset, just traverse the number of elements without
1148 * checking the score because that is done in the next loop. */
1149 while(ln && offset--) {
22b9bf15 1150 ln = reverse ? ln->backward : ln->level[0].forward;
25bb8a44 1151 }
e2641e09 1152
25bb8a44 1153 while (ln && limit--) {
22b9bf15 1154 /* Abort when the node is no longer in range. */
25bb8a44 1155 if (reverse) {
45290ad9 1156 if (!zslValueGteMin(ln->score,&range)) break;
25bb8a44 1157 } else {
45290ad9 1158 if (!zslValueLteMax(ln->score,&range)) break;
e2641e09 1159 }
25bb8a44
PN
1160
1161 /* Do our magic */
1162 rangelen++;
1163 if (!justcount) {
1164 addReplyBulk(c,ln->obj);
1165 if (withscores)
1166 addReplyDouble(c,ln->score);
1167 }
1168
22b9bf15
PN
1169 /* Move to next node */
1170 ln = reverse ? ln->backward : ln->level[0].forward;
25bb8a44
PN
1171 }
1172
1173 if (justcount) {
1174 addReplyLongLong(c,(long)rangelen);
1175 } else {
1176 setDeferredMultiBulkLength(c,replylen,
1177 withscores ? (rangelen*2) : rangelen);
e2641e09 1178 }
1179}
1180
1181void zrangebyscoreCommand(redisClient *c) {
25bb8a44
PN
1182 genericZrangebyscoreCommand(c,0,0);
1183}
1184
1185void zrevrangebyscoreCommand(redisClient *c) {
1186 genericZrangebyscoreCommand(c,1,0);
e2641e09 1187}
1188
1189void zcountCommand(redisClient *c) {
25bb8a44 1190 genericZrangebyscoreCommand(c,0,1);
e2641e09 1191}
1192
1193void zcardCommand(redisClient *c) {
1194 robj *o;
1195 zset *zs;
1196
1197 if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL ||
1198 checkType(c,o,REDIS_ZSET)) return;
1199
1200 zs = o->ptr;
b70d3555 1201 addReplyLongLong(c,zs->zsl->length);
e2641e09 1202}
1203
1204void zscoreCommand(redisClient *c) {
1205 robj *o;
1206 zset *zs;
1207 dictEntry *de;
1208
1209 if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.nullbulk)) == NULL ||
1210 checkType(c,o,REDIS_ZSET)) return;
1211
1212 zs = o->ptr;
75b41de8 1213 c->argv[2] = tryObjectEncoding(c->argv[2]);
e2641e09 1214 de = dictFind(zs->dict,c->argv[2]);
1215 if (!de) {
1216 addReply(c,shared.nullbulk);
1217 } else {
1218 double *score = dictGetEntryVal(de);
1219
1220 addReplyDouble(c,*score);
1221 }
1222}
1223
1224void zrankGenericCommand(redisClient *c, int reverse) {
1225 robj *o;
1226 zset *zs;
1227 zskiplist *zsl;
1228 dictEntry *de;
1229 unsigned long rank;
1230 double *score;
1231
1232 if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.nullbulk)) == NULL ||
1233 checkType(c,o,REDIS_ZSET)) return;
1234
1235 zs = o->ptr;
1236 zsl = zs->zsl;
75b41de8 1237 c->argv[2] = tryObjectEncoding(c->argv[2]);
e2641e09 1238 de = dictFind(zs->dict,c->argv[2]);
1239 if (!de) {
1240 addReply(c,shared.nullbulk);
1241 return;
1242 }
1243
1244 score = dictGetEntryVal(de);
a3004773 1245 rank = zslGetRank(zsl, *score, c->argv[2]);
e2641e09 1246 if (rank) {
1247 if (reverse) {
1248 addReplyLongLong(c, zsl->length - rank);
1249 } else {
1250 addReplyLongLong(c, rank-1);
1251 }
1252 } else {
1253 addReply(c,shared.nullbulk);
1254 }
1255}
1256
1257void zrankCommand(redisClient *c) {
1258 zrankGenericCommand(c, 0);
1259}
1260
1261void zrevrankCommand(redisClient *c) {
1262 zrankGenericCommand(c, 1);
1263}