5 /*-----------------------------------------------------------------------------
7 *----------------------------------------------------------------------------*/
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
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"). */
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. */
26 zskiplistNode
*zslCreateNode(int level
, double score
, robj
*obj
) {
27 zskiplistNode
*zn
= zmalloc(sizeof(*zn
));
29 zn
->forward
= zmalloc(sizeof(zskiplistNode
*) * level
);
31 zn
->span
= zmalloc(sizeof(unsigned int) * (level
- 1));
39 zskiplist
*zslCreate(void) {
43 zsl
= zmalloc(sizeof(*zsl
));
46 zsl
->header
= zslCreateNode(ZSKIPLIST_MAXLEVEL
,0,NULL
);
47 for (j
= 0; j
< ZSKIPLIST_MAXLEVEL
; j
++) {
48 zsl
->header
->forward
[j
] = NULL
;
50 /* span has space for ZSKIPLIST_MAXLEVEL-1 elements */
51 if (j
< ZSKIPLIST_MAXLEVEL
-1)
52 zsl
->header
->span
[j
] = 0;
54 zsl
->header
->backward
= NULL
;
59 void zslFreeNode(zskiplistNode
*node
) {
60 decrRefCount(node
->obj
);
66 void zslFree(zskiplist
*zsl
) {
67 zskiplistNode
*node
= zsl
->header
->forward
[0], *next
;
69 zfree(zsl
->header
->forward
);
70 zfree(zsl
->header
->span
);
73 next
= node
->forward
[0];
80 int zslRandomLevel(void) {
82 while ((random()&0xFFFF) < (ZSKIPLIST_P
* 0xFFFF))
84 return (level
<ZSKIPLIST_MAXLEVEL
) ? level
: ZSKIPLIST_MAXLEVEL
;
87 void zslInsert(zskiplist
*zsl
, double score
, robj
*obj
) {
88 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
89 unsigned int rank
[ZSKIPLIST_MAXLEVEL
];
93 for (i
= zsl
->level
-1; i
>= 0; i
--) {
94 /* store rank that is crossed to reach the insert position */
95 rank
[i
] = i
== (zsl
->level
-1) ? 0 : rank
[i
+1];
97 while (x
->forward
[i
] &&
98 (x
->forward
[i
]->score
< score
||
99 (x
->forward
[i
]->score
== score
&&
100 compareStringObjects(x
->forward
[i
]->obj
,obj
) < 0))) {
101 rank
[i
] += i
> 0 ? x
->span
[i
-1] : 1;
106 /* we assume the key is not already inside, since we allow duplicated
107 * scores, and the re-insertion of score and redis object should never
108 * happpen since the caller of zslInsert() should test in the hash table
109 * if the element is already inside or not. */
110 level
= zslRandomLevel();
111 if (level
> zsl
->level
) {
112 for (i
= zsl
->level
; i
< level
; i
++) {
114 update
[i
] = zsl
->header
;
115 update
[i
]->span
[i
-1] = zsl
->length
;
119 x
= zslCreateNode(level
,score
,obj
);
120 for (i
= 0; i
< level
; i
++) {
121 x
->forward
[i
] = update
[i
]->forward
[i
];
122 update
[i
]->forward
[i
] = x
;
124 /* update span covered by update[i] as x is inserted here */
126 x
->span
[i
-1] = update
[i
]->span
[i
-1] - (rank
[0] - rank
[i
]);
127 update
[i
]->span
[i
-1] = (rank
[0] - rank
[i
]) + 1;
131 /* increment span for untouched levels */
132 for (i
= level
; i
< zsl
->level
; i
++) {
133 update
[i
]->span
[i
-1]++;
136 x
->backward
= (update
[0] == zsl
->header
) ? NULL
: update
[0];
138 x
->forward
[0]->backward
= x
;
144 /* Internal function used by zslDelete, zslDeleteByScore and zslDeleteByRank */
145 void zslDeleteNode(zskiplist
*zsl
, zskiplistNode
*x
, zskiplistNode
**update
) {
147 for (i
= 0; i
< zsl
->level
; i
++) {
148 if (update
[i
]->forward
[i
] == x
) {
150 update
[i
]->span
[i
-1] += x
->span
[i
-1] - 1;
152 update
[i
]->forward
[i
] = x
->forward
[i
];
154 /* invariant: i > 0, because update[0]->forward[0]
155 * is always equal to x */
156 update
[i
]->span
[i
-1] -= 1;
160 x
->forward
[0]->backward
= x
->backward
;
162 zsl
->tail
= x
->backward
;
164 while(zsl
->level
> 1 && zsl
->header
->forward
[zsl
->level
-1] == NULL
)
169 /* Delete an element with matching score/object from the skiplist. */
170 int zslDelete(zskiplist
*zsl
, double score
, robj
*obj
) {
171 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
175 for (i
= zsl
->level
-1; i
>= 0; i
--) {
176 while (x
->forward
[i
] &&
177 (x
->forward
[i
]->score
< score
||
178 (x
->forward
[i
]->score
== score
&&
179 compareStringObjects(x
->forward
[i
]->obj
,obj
) < 0)))
183 /* We may have multiple elements with the same score, what we need
184 * is to find the element with both the right score and object. */
186 if (x
&& score
== x
->score
&& equalStringObjects(x
->obj
,obj
)) {
187 zslDeleteNode(zsl
, x
, update
);
191 return 0; /* not found */
193 return 0; /* not found */
196 /* Delete all the elements with score between min and max from the skiplist.
197 * Min and mx are inclusive, so a score >= min || score <= max is deleted.
198 * Note that this function takes the reference to the hash table view of the
199 * sorted set, in order to remove the elements from the hash table too. */
200 unsigned long zslDeleteRangeByScore(zskiplist
*zsl
, double min
, double max
, dict
*dict
) {
201 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
202 unsigned long removed
= 0;
206 for (i
= zsl
->level
-1; i
>= 0; i
--) {
207 while (x
->forward
[i
] && x
->forward
[i
]->score
< min
)
211 /* We may have multiple elements with the same score, what we need
212 * is to find the element with both the right score and object. */
214 while (x
&& x
->score
<= max
) {
215 zskiplistNode
*next
= x
->forward
[0];
216 zslDeleteNode(zsl
, x
, update
);
217 dictDelete(dict
,x
->obj
);
222 return removed
; /* not found */
225 /* Delete all the elements with rank between start and end from the skiplist.
226 * Start and end are inclusive. Note that start and end need to be 1-based */
227 unsigned long zslDeleteRangeByRank(zskiplist
*zsl
, unsigned int start
, unsigned int end
, dict
*dict
) {
228 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
229 unsigned long traversed
= 0, removed
= 0;
233 for (i
= zsl
->level
-1; i
>= 0; i
--) {
234 while (x
->forward
[i
] && (traversed
+ (i
> 0 ? x
->span
[i
-1] : 1)) < start
) {
235 traversed
+= i
> 0 ? x
->span
[i
-1] : 1;
243 while (x
&& traversed
<= end
) {
244 zskiplistNode
*next
= x
->forward
[0];
245 zslDeleteNode(zsl
, x
, update
);
246 dictDelete(dict
,x
->obj
);
255 /* Find the first node having a score equal or greater than the specified one.
256 * Returns NULL if there is no match. */
257 zskiplistNode
*zslFirstWithScore(zskiplist
*zsl
, double score
) {
262 for (i
= zsl
->level
-1; i
>= 0; i
--) {
263 while (x
->forward
[i
] && x
->forward
[i
]->score
< score
)
266 /* We may have multiple elements with the same score, what we need
267 * is to find the element with both the right score and object. */
268 return x
->forward
[0];
271 /* Find the rank for an element by both score and key.
272 * Returns 0 when the element cannot be found, rank otherwise.
273 * Note that the rank is 1-based due to the span of zsl->header to the
275 unsigned long zslistTypeGetRank(zskiplist
*zsl
, double score
, robj
*o
) {
277 unsigned long rank
= 0;
281 for (i
= zsl
->level
-1; i
>= 0; i
--) {
282 while (x
->forward
[i
] &&
283 (x
->forward
[i
]->score
< score
||
284 (x
->forward
[i
]->score
== score
&&
285 compareStringObjects(x
->forward
[i
]->obj
,o
) <= 0))) {
286 rank
+= i
> 0 ? x
->span
[i
-1] : 1;
290 /* x might be equal to zsl->header, so test if obj is non-NULL */
291 if (x
->obj
&& equalStringObjects(x
->obj
,o
)) {
298 /* Finds an element by its rank. The rank argument needs to be 1-based. */
299 zskiplistNode
* zslistTypeGetElementByRank(zskiplist
*zsl
, unsigned long rank
) {
301 unsigned long traversed
= 0;
305 for (i
= zsl
->level
-1; i
>= 0; i
--) {
306 while (x
->forward
[i
] && (traversed
+ (i
>0 ? x
->span
[i
-1] : 1)) <= rank
)
308 traversed
+= i
> 0 ? x
->span
[i
-1] : 1;
311 if (traversed
== rank
) {
318 /*-----------------------------------------------------------------------------
319 * Sorted set commands
320 *----------------------------------------------------------------------------*/
322 /* This generic command implements both ZADD and ZINCRBY.
323 * scoreval is the score if the operation is a ZADD (doincrement == 0) or
324 * the increment if the operation is a ZINCRBY (doincrement == 1). */
325 void zaddGenericCommand(redisClient
*c
, robj
*key
, robj
*ele
, double scoreval
, int doincrement
) {
330 if (isnan(scoreval
)) {
331 addReplySds(c
,sdsnew("-ERR provide score is Not A Number (nan)\r\n"));
335 zsetobj
= lookupKeyWrite(c
->db
,key
);
336 if (zsetobj
== NULL
) {
337 zsetobj
= createZsetObject();
338 dbAdd(c
->db
,key
,zsetobj
);
340 if (zsetobj
->type
!= REDIS_ZSET
) {
341 addReply(c
,shared
.wrongtypeerr
);
347 /* Ok now since we implement both ZADD and ZINCRBY here the code
348 * needs to handle the two different conditions. It's all about setting
349 * '*score', that is, the new score to set, to the right value. */
350 score
= zmalloc(sizeof(double));
354 /* Read the old score. If the element was not present starts from 0 */
355 de
= dictFind(zs
->dict
,ele
);
357 double *oldscore
= dictGetEntryVal(de
);
358 *score
= *oldscore
+ scoreval
;
364 sdsnew("-ERR resulting score is Not A Number (nan)\r\n"));
366 /* Note that we don't need to check if the zset may be empty and
367 * should be removed here, as we can only obtain Nan as score if
368 * there was already an element in the sorted set. */
375 /* What follows is a simple remove and re-insert operation that is common
376 * to both ZADD and ZINCRBY... */
377 if (dictAdd(zs
->dict
,ele
,score
) == DICT_OK
) {
378 /* case 1: New element */
379 incrRefCount(ele
); /* added to hash */
380 zslInsert(zs
->zsl
,*score
,ele
);
381 incrRefCount(ele
); /* added to skiplist */
382 touchWatchedKey(c
->db
,c
->argv
[1]);
385 addReplyDouble(c
,*score
);
387 addReply(c
,shared
.cone
);
392 /* case 2: Score update operation */
393 de
= dictFind(zs
->dict
,ele
);
394 redisAssert(de
!= NULL
);
395 oldscore
= dictGetEntryVal(de
);
396 if (*score
!= *oldscore
) {
399 /* Remove and insert the element in the skip list with new score */
400 deleted
= zslDelete(zs
->zsl
,*oldscore
,ele
);
401 redisAssert(deleted
!= 0);
402 zslInsert(zs
->zsl
,*score
,ele
);
404 /* Update the score in the hash table */
405 dictReplace(zs
->dict
,ele
,score
);
406 touchWatchedKey(c
->db
,c
->argv
[1]);
412 addReplyDouble(c
,*score
);
414 addReply(c
,shared
.czero
);
418 void zaddCommand(redisClient
*c
) {
421 if (getDoubleFromObjectOrReply(c
, c
->argv
[2], &scoreval
, NULL
) != REDIS_OK
) return;
422 zaddGenericCommand(c
,c
->argv
[1],c
->argv
[3],scoreval
,0);
425 void zincrbyCommand(redisClient
*c
) {
428 if (getDoubleFromObjectOrReply(c
, c
->argv
[2], &scoreval
, NULL
) != REDIS_OK
) return;
429 zaddGenericCommand(c
,c
->argv
[1],c
->argv
[3],scoreval
,1);
432 void zremCommand(redisClient
*c
) {
439 if ((zsetobj
= lookupKeyWriteOrReply(c
,c
->argv
[1],shared
.czero
)) == NULL
||
440 checkType(c
,zsetobj
,REDIS_ZSET
)) return;
443 de
= dictFind(zs
->dict
,c
->argv
[2]);
445 addReply(c
,shared
.czero
);
448 /* Delete from the skiplist */
449 oldscore
= dictGetEntryVal(de
);
450 deleted
= zslDelete(zs
->zsl
,*oldscore
,c
->argv
[2]);
451 redisAssert(deleted
!= 0);
453 /* Delete from the hash table */
454 dictDelete(zs
->dict
,c
->argv
[2]);
455 if (htNeedsResize(zs
->dict
)) dictResize(zs
->dict
);
456 if (dictSize(zs
->dict
) == 0) dbDelete(c
->db
,c
->argv
[1]);
457 touchWatchedKey(c
->db
,c
->argv
[1]);
459 addReply(c
,shared
.cone
);
462 void zremrangebyscoreCommand(redisClient
*c
) {
469 if ((getDoubleFromObjectOrReply(c
, c
->argv
[2], &min
, NULL
) != REDIS_OK
) ||
470 (getDoubleFromObjectOrReply(c
, c
->argv
[3], &max
, NULL
) != REDIS_OK
)) return;
472 if ((zsetobj
= lookupKeyWriteOrReply(c
,c
->argv
[1],shared
.czero
)) == NULL
||
473 checkType(c
,zsetobj
,REDIS_ZSET
)) return;
476 deleted
= zslDeleteRangeByScore(zs
->zsl
,min
,max
,zs
->dict
);
477 if (htNeedsResize(zs
->dict
)) dictResize(zs
->dict
);
478 if (dictSize(zs
->dict
) == 0) dbDelete(c
->db
,c
->argv
[1]);
479 if (deleted
) touchWatchedKey(c
->db
,c
->argv
[1]);
480 server
.dirty
+= deleted
;
481 addReplyLongLong(c
,deleted
);
484 void zremrangebyrankCommand(redisClient
*c
) {
492 if ((getLongFromObjectOrReply(c
, c
->argv
[2], &start
, NULL
) != REDIS_OK
) ||
493 (getLongFromObjectOrReply(c
, c
->argv
[3], &end
, NULL
) != REDIS_OK
)) return;
495 if ((zsetobj
= lookupKeyWriteOrReply(c
,c
->argv
[1],shared
.czero
)) == NULL
||
496 checkType(c
,zsetobj
,REDIS_ZSET
)) return;
498 llen
= zs
->zsl
->length
;
500 /* convert negative indexes */
501 if (start
< 0) start
= llen
+start
;
502 if (end
< 0) end
= llen
+end
;
503 if (start
< 0) start
= 0;
505 /* Invariant: start >= 0, so this test will be true when end < 0.
506 * The range is empty when start > end or start >= length. */
507 if (start
> end
|| start
>= llen
) {
508 addReply(c
,shared
.czero
);
511 if (end
>= llen
) end
= llen
-1;
513 /* increment start and end because zsl*Rank functions
514 * use 1-based rank */
515 deleted
= zslDeleteRangeByRank(zs
->zsl
,start
+1,end
+1,zs
->dict
);
516 if (htNeedsResize(zs
->dict
)) dictResize(zs
->dict
);
517 if (dictSize(zs
->dict
) == 0) dbDelete(c
->db
,c
->argv
[1]);
518 if (deleted
) touchWatchedKey(c
->db
,c
->argv
[1]);
519 server
.dirty
+= deleted
;
520 addReplyLongLong(c
, deleted
);
528 int qsortCompareZsetopsrcByCardinality(const void *s1
, const void *s2
) {
529 zsetopsrc
*d1
= (void*) s1
, *d2
= (void*) s2
;
530 unsigned long size1
, size2
;
531 size1
= d1
->dict
? dictSize(d1
->dict
) : 0;
532 size2
= d2
->dict
? dictSize(d2
->dict
) : 0;
533 return size1
- size2
;
536 #define REDIS_AGGR_SUM 1
537 #define REDIS_AGGR_MIN 2
538 #define REDIS_AGGR_MAX 3
539 #define zunionInterDictValue(_e) (dictGetEntryVal(_e) == NULL ? 1.0 : *(double*)dictGetEntryVal(_e))
541 inline static void zunionInterAggregate(double *target
, double val
, int aggregate
) {
542 if (aggregate
== REDIS_AGGR_SUM
) {
543 *target
= *target
+ val
;
544 /* The result of adding two doubles is NaN when one variable
545 * is +inf and the other is -inf. When these numbers are added,
546 * we maintain the convention of the result being 0.0. */
547 if (isnan(*target
)) *target
= 0.0;
548 } else if (aggregate
== REDIS_AGGR_MIN
) {
549 *target
= val
< *target
? val
: *target
;
550 } else if (aggregate
== REDIS_AGGR_MAX
) {
551 *target
= val
> *target
? val
: *target
;
554 redisPanic("Unknown ZUNION/INTER aggregate type");
558 void zunionInterGenericCommand(redisClient
*c
, robj
*dstkey
, int op
) {
560 int aggregate
= REDIS_AGGR_SUM
;
568 /* expect setnum input keys to be given */
569 setnum
= atoi(c
->argv
[2]->ptr
);
571 addReplySds(c
,sdsnew("-ERR at least 1 input key is needed for ZUNIONSTORE/ZINTERSTORE\r\n"));
575 /* test if the expected number of keys would overflow */
576 if (3+setnum
> c
->argc
) {
577 addReply(c
,shared
.syntaxerr
);
581 /* read keys to be used for input */
582 src
= zmalloc(sizeof(zsetopsrc
) * setnum
);
583 for (i
= 0, j
= 3; i
< setnum
; i
++, j
++) {
584 robj
*obj
= lookupKeyWrite(c
->db
,c
->argv
[j
]);
588 if (obj
->type
== REDIS_ZSET
) {
589 src
[i
].dict
= ((zset
*)obj
->ptr
)->dict
;
590 } else if (obj
->type
== REDIS_SET
) {
591 src
[i
].dict
= (obj
->ptr
);
594 addReply(c
,shared
.wrongtypeerr
);
599 /* default all weights to 1 */
603 /* parse optional extra arguments */
605 int remaining
= c
->argc
- j
;
608 if (remaining
>= (setnum
+ 1) && !strcasecmp(c
->argv
[j
]->ptr
,"weights")) {
610 for (i
= 0; i
< setnum
; i
++, j
++, remaining
--) {
611 if (getDoubleFromObjectOrReply(c
, c
->argv
[j
], &src
[i
].weight
, NULL
) != REDIS_OK
)
614 } else if (remaining
>= 2 && !strcasecmp(c
->argv
[j
]->ptr
,"aggregate")) {
616 if (!strcasecmp(c
->argv
[j
]->ptr
,"sum")) {
617 aggregate
= REDIS_AGGR_SUM
;
618 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"min")) {
619 aggregate
= REDIS_AGGR_MIN
;
620 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"max")) {
621 aggregate
= REDIS_AGGR_MAX
;
624 addReply(c
,shared
.syntaxerr
);
630 addReply(c
,shared
.syntaxerr
);
636 /* sort sets from the smallest to largest, this will improve our
637 * algorithm's performance */
638 qsort(src
,setnum
,sizeof(zsetopsrc
),qsortCompareZsetopsrcByCardinality
);
640 dstobj
= createZsetObject();
641 dstzset
= dstobj
->ptr
;
643 if (op
== REDIS_OP_INTER
) {
644 /* skip going over all entries if the smallest zset is NULL or empty */
645 if (src
[0].dict
&& dictSize(src
[0].dict
) > 0) {
646 /* precondition: as src[0].dict is non-empty and the zsets are ordered
647 * from small to large, all src[i > 0].dict are non-empty too */
648 di
= dictGetIterator(src
[0].dict
);
649 while((de
= dictNext(di
)) != NULL
) {
650 double *score
= zmalloc(sizeof(double)), value
;
651 *score
= src
[0].weight
* zunionInterDictValue(de
);
653 for (j
= 1; j
< setnum
; j
++) {
654 dictEntry
*other
= dictFind(src
[j
].dict
,dictGetEntryKey(de
));
656 value
= src
[j
].weight
* zunionInterDictValue(other
);
657 zunionInterAggregate(score
, value
, aggregate
);
663 /* skip entry when not present in every source dict */
667 robj
*o
= dictGetEntryKey(de
);
668 dictAdd(dstzset
->dict
,o
,score
);
669 incrRefCount(o
); /* added to dictionary */
670 zslInsert(dstzset
->zsl
,*score
,o
);
671 incrRefCount(o
); /* added to skiplist */
674 dictReleaseIterator(di
);
676 } else if (op
== REDIS_OP_UNION
) {
677 for (i
= 0; i
< setnum
; i
++) {
678 if (!src
[i
].dict
) continue;
680 di
= dictGetIterator(src
[i
].dict
);
681 while((de
= dictNext(di
)) != NULL
) {
682 /* skip key when already processed */
683 if (dictFind(dstzset
->dict
,dictGetEntryKey(de
)) != NULL
) continue;
685 double *score
= zmalloc(sizeof(double)), value
;
686 *score
= src
[i
].weight
* zunionInterDictValue(de
);
688 /* because the zsets are sorted by size, its only possible
689 * for sets at larger indices to hold this entry */
690 for (j
= (i
+1); j
< setnum
; j
++) {
691 dictEntry
*other
= dictFind(src
[j
].dict
,dictGetEntryKey(de
));
693 value
= src
[j
].weight
* zunionInterDictValue(other
);
694 zunionInterAggregate(score
, value
, aggregate
);
698 robj
*o
= dictGetEntryKey(de
);
699 dictAdd(dstzset
->dict
,o
,score
);
700 incrRefCount(o
); /* added to dictionary */
701 zslInsert(dstzset
->zsl
,*score
,o
);
702 incrRefCount(o
); /* added to skiplist */
704 dictReleaseIterator(di
);
707 /* unknown operator */
708 redisAssert(op
== REDIS_OP_INTER
|| op
== REDIS_OP_UNION
);
711 if (dbDelete(c
->db
,dstkey
)) {
712 touchWatchedKey(c
->db
,dstkey
);
716 if (dstzset
->zsl
->length
) {
717 dbAdd(c
->db
,dstkey
,dstobj
);
718 addReplyLongLong(c
, dstzset
->zsl
->length
);
719 if (!touched
) touchWatchedKey(c
->db
,dstkey
);
722 decrRefCount(dstobj
);
723 addReply(c
, shared
.czero
);
728 void zunionstoreCommand(redisClient
*c
) {
729 zunionInterGenericCommand(c
,c
->argv
[1], REDIS_OP_UNION
);
732 void zinterstoreCommand(redisClient
*c
) {
733 zunionInterGenericCommand(c
,c
->argv
[1], REDIS_OP_INTER
);
736 void zrangeGenericCommand(redisClient
*c
, int reverse
) {
748 if ((getLongFromObjectOrReply(c
, c
->argv
[2], &start
, NULL
) != REDIS_OK
) ||
749 (getLongFromObjectOrReply(c
, c
->argv
[3], &end
, NULL
) != REDIS_OK
)) return;
751 if (c
->argc
== 5 && !strcasecmp(c
->argv
[4]->ptr
,"withscores")) {
753 } else if (c
->argc
>= 5) {
754 addReply(c
,shared
.syntaxerr
);
758 if ((o
= lookupKeyReadOrReply(c
,c
->argv
[1],shared
.emptymultibulk
)) == NULL
759 || checkType(c
,o
,REDIS_ZSET
)) return;
764 /* convert negative indexes */
765 if (start
< 0) start
= llen
+start
;
766 if (end
< 0) end
= llen
+end
;
767 if (start
< 0) start
= 0;
769 /* Invariant: start >= 0, so this test will be true when end < 0.
770 * The range is empty when start > end or start >= length. */
771 if (start
> end
|| start
>= llen
) {
772 addReply(c
,shared
.emptymultibulk
);
775 if (end
>= llen
) end
= llen
-1;
776 rangelen
= (end
-start
)+1;
778 /* check if starting point is trivial, before searching
779 * the element in log(N) time */
781 ln
= start
== 0 ? zsl
->tail
: zslistTypeGetElementByRank(zsl
, llen
-start
);
784 zsl
->header
->forward
[0] : zslistTypeGetElementByRank(zsl
, start
+1);
787 /* Return the result in form of a multi-bulk reply */
788 addReplySds(c
,sdscatprintf(sdsempty(),"*%d\r\n",
789 withscores
? (rangelen
*2) : rangelen
));
790 for (j
= 0; j
< rangelen
; j
++) {
794 addReplyDouble(c
,ln
->score
);
795 ln
= reverse
? ln
->backward
: ln
->forward
[0];
799 void zrangeCommand(redisClient
*c
) {
800 zrangeGenericCommand(c
,0);
803 void zrevrangeCommand(redisClient
*c
) {
804 zrangeGenericCommand(c
,1);
807 /* This command implements both ZRANGEBYSCORE and ZCOUNT.
808 * If justcount is non-zero, just the count is returned. */
809 void genericZrangebyscoreCommand(redisClient
*c
, int justcount
) {
812 int minex
= 0, maxex
= 0; /* are min or max exclusive? */
813 int offset
= 0, limit
= -1;
817 /* Parse the min-max interval. If one of the values is prefixed
818 * by the "(" character, it's considered "open". For instance
819 * ZRANGEBYSCORE zset (1.5 (2.5 will match min < x < max
820 * ZRANGEBYSCORE zset 1.5 2.5 will instead match min <= x <= max */
821 if (((char*)c
->argv
[2]->ptr
)[0] == '(') {
822 min
= strtod((char*)c
->argv
[2]->ptr
+1,NULL
);
825 min
= strtod(c
->argv
[2]->ptr
,NULL
);
827 if (((char*)c
->argv
[3]->ptr
)[0] == '(') {
828 max
= strtod((char*)c
->argv
[3]->ptr
+1,NULL
);
831 max
= strtod(c
->argv
[3]->ptr
,NULL
);
834 /* Parse "WITHSCORES": note that if the command was called with
835 * the name ZCOUNT then we are sure that c->argc == 4, so we'll never
836 * enter the following paths to parse WITHSCORES and LIMIT. */
837 if (c
->argc
== 5 || c
->argc
== 8) {
838 if (strcasecmp(c
->argv
[c
->argc
-1]->ptr
,"withscores") == 0)
843 if (c
->argc
!= (4 + withscores
) && c
->argc
!= (7 + withscores
))
847 sdsnew("-ERR wrong number of arguments for ZRANGEBYSCORE\r\n"));
852 if (c
->argc
== (7 + withscores
) && strcasecmp(c
->argv
[4]->ptr
,"limit")) {
853 addReply(c
,shared
.syntaxerr
);
855 } else if (c
->argc
== (7 + withscores
)) {
856 offset
= atoi(c
->argv
[5]->ptr
);
857 limit
= atoi(c
->argv
[6]->ptr
);
858 if (offset
< 0) offset
= 0;
861 /* Ok, lookup the key and get the range */
862 o
= lookupKeyRead(c
->db
,c
->argv
[1]);
864 addReply(c
,justcount
? shared
.czero
: shared
.emptymultibulk
);
866 if (o
->type
!= REDIS_ZSET
) {
867 addReply(c
,shared
.wrongtypeerr
);
869 zset
*zsetobj
= o
->ptr
;
870 zskiplist
*zsl
= zsetobj
->zsl
;
872 robj
*ele
, *lenobj
= NULL
;
873 unsigned long rangelen
= 0;
875 /* Get the first node with the score >= min, or with
876 * score > min if 'minex' is true. */
877 ln
= zslFirstWithScore(zsl
,min
);
878 while (minex
&& ln
&& ln
->score
== min
) ln
= ln
->forward
[0];
881 /* No element matching the speciifed interval */
882 addReply(c
,justcount
? shared
.czero
: shared
.emptymultibulk
);
886 /* We don't know in advance how many matching elements there
887 * are in the list, so we push this object that will represent
888 * the multi-bulk length in the output buffer, and will "fix"
891 lenobj
= createObject(REDIS_STRING
,NULL
);
893 decrRefCount(lenobj
);
896 while(ln
&& (maxex
? (ln
->score
< max
) : (ln
->score
<= max
))) {
902 if (limit
== 0) break;
907 addReplyDouble(c
,ln
->score
);
911 if (limit
> 0) limit
--;
914 addReplyLongLong(c
,(long)rangelen
);
916 lenobj
->ptr
= sdscatprintf(sdsempty(),"*%lu\r\n",
917 withscores
? (rangelen
*2) : rangelen
);
923 void zrangebyscoreCommand(redisClient
*c
) {
924 genericZrangebyscoreCommand(c
,0);
927 void zcountCommand(redisClient
*c
) {
928 genericZrangebyscoreCommand(c
,1);
931 void zcardCommand(redisClient
*c
) {
935 if ((o
= lookupKeyReadOrReply(c
,c
->argv
[1],shared
.czero
)) == NULL
||
936 checkType(c
,o
,REDIS_ZSET
)) return;
939 addReplyUlong(c
,zs
->zsl
->length
);
942 void zscoreCommand(redisClient
*c
) {
947 if ((o
= lookupKeyReadOrReply(c
,c
->argv
[1],shared
.nullbulk
)) == NULL
||
948 checkType(c
,o
,REDIS_ZSET
)) return;
951 de
= dictFind(zs
->dict
,c
->argv
[2]);
953 addReply(c
,shared
.nullbulk
);
955 double *score
= dictGetEntryVal(de
);
957 addReplyDouble(c
,*score
);
961 void zrankGenericCommand(redisClient
*c
, int reverse
) {
969 if ((o
= lookupKeyReadOrReply(c
,c
->argv
[1],shared
.nullbulk
)) == NULL
||
970 checkType(c
,o
,REDIS_ZSET
)) return;
974 de
= dictFind(zs
->dict
,c
->argv
[2]);
976 addReply(c
,shared
.nullbulk
);
980 score
= dictGetEntryVal(de
);
981 rank
= zslistTypeGetRank(zsl
, *score
, c
->argv
[2]);
984 addReplyLongLong(c
, zsl
->length
- rank
);
986 addReplyLongLong(c
, rank
-1);
989 addReply(c
,shared
.nullbulk
);
993 void zrankCommand(redisClient
*c
) {
994 zrankGenericCommand(c
, 0);
997 void zrevrankCommand(redisClient
*c
) {
998 zrankGenericCommand(c
, 1);