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
)+level
*sizeof(struct zskiplistLevel
));
33 zskiplist
*zslCreate(void) {
37 zsl
= zmalloc(sizeof(*zsl
));
40 zsl
->header
= zslCreateNode(ZSKIPLIST_MAXLEVEL
,0,NULL
);
41 for (j
= 0; j
< ZSKIPLIST_MAXLEVEL
; j
++) {
42 zsl
->header
->level
[j
].forward
= NULL
;
43 zsl
->header
->level
[j
].span
= 0;
45 zsl
->header
->backward
= NULL
;
50 void zslFreeNode(zskiplistNode
*node
) {
51 decrRefCount(node
->obj
);
55 void zslFree(zskiplist
*zsl
) {
56 zskiplistNode
*node
= zsl
->header
->level
[0].forward
, *next
;
60 next
= node
->level
[0].forward
;
67 int zslRandomLevel(void) {
69 while ((random()&0xFFFF) < (ZSKIPLIST_P
* 0xFFFF))
71 return (level
<ZSKIPLIST_MAXLEVEL
) ? level
: ZSKIPLIST_MAXLEVEL
;
74 zskiplistNode
*zslInsert(zskiplist
*zsl
, double score
, robj
*obj
) {
75 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
76 unsigned int rank
[ZSKIPLIST_MAXLEVEL
];
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];
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
;
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
++) {
100 update
[i
] = zsl
->header
;
101 update
[i
]->level
[i
].span
= zsl
->length
;
105 x
= zslCreateNode(level
,score
,obj
);
106 for (i
= 0; i
< level
; i
++) {
107 x
->level
[i
].forward
= update
[i
]->level
[i
].forward
;
108 update
[i
]->level
[i
].forward
= x
;
110 /* update span covered by update[i] as x is inserted here */
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;
115 /* increment span for untouched levels */
116 for (i
= level
; i
< zsl
->level
; i
++) {
117 update
[i
]->level
[i
].span
++;
120 x
->backward
= (update
[0] == zsl
->header
) ? NULL
: update
[0];
121 if (x
->level
[0].forward
)
122 x
->level
[0].forward
->backward
= x
;
129 /* Internal function used by zslDelete, zslDeleteByScore and zslDeleteByRank */
130 void zslDeleteNode(zskiplist
*zsl
, zskiplistNode
*x
, zskiplistNode
**update
) {
132 for (i
= 0; i
< zsl
->level
; i
++) {
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
;
137 update
[i
]->level
[i
].span
-= 1;
140 if (x
->level
[0].forward
) {
141 x
->level
[0].forward
->backward
= x
->backward
;
143 zsl
->tail
= x
->backward
;
145 while(zsl
->level
> 1 && zsl
->header
->level
[zsl
->level
-1].forward
== NULL
)
150 /* Delete an element with matching score/object from the skiplist. */
151 int zslDelete(zskiplist
*zsl
, double score
, robj
*obj
) {
152 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
156 for (i
= zsl
->level
-1; i
>= 0; i
--) {
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
;
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. */
166 x
= x
->level
[0].forward
;
167 if (x
&& score
== x
->score
&& equalStringObjects(x
->obj
,obj
)) {
168 zslDeleteNode(zsl
, x
, update
);
172 return 0; /* not found */
174 return 0; /* not found */
177 /* Struct to hold a inclusive/exclusive range spec. */
180 int minex
, maxex
; /* are min or max exclusive? */
183 static int zslValueGteMin(double value
, zrangespec
*spec
) {
184 return spec
->minex
? (value
> spec
->min
) : (value
>= spec
->min
);
187 static int zslValueLteMax(double value
, zrangespec
*spec
) {
188 return spec
->maxex
? (value
< spec
->max
) : (value
<= spec
->max
);
191 static int zslValueInRange(double value
, zrangespec
*spec
) {
192 return zslValueGteMin(value
,spec
) && zslValueLteMax(value
,spec
);
195 /* Returns if there is a part of the zset is in range. */
196 int zslIsInRange(zskiplist
*zsl
, zrangespec
*range
) {
199 /* Test for ranges that will always be empty. */
200 if (range
->min
> range
->max
||
201 (range
->min
== range
->max
&& (range
->minex
|| range
->maxex
)))
204 if (x
== NULL
|| !zslValueGteMin(x
->score
,range
))
206 x
= zsl
->header
->level
[0].forward
;
207 if (x
== NULL
|| !zslValueLteMax(x
->score
,range
))
212 /* Find the first node that is contained in the specified range.
213 * Returns NULL when no element is contained in the range. */
214 zskiplistNode
*zslFirstInRange(zskiplist
*zsl
, zrangespec range
) {
218 /* If everything is out of range, return early. */
219 if (!zslIsInRange(zsl
,&range
)) return NULL
;
222 for (i
= zsl
->level
-1; i
>= 0; i
--) {
223 /* Go forward while *OUT* of range. */
224 while (x
->level
[i
].forward
&&
225 !zslValueGteMin(x
->level
[i
].forward
->score
,&range
))
226 x
= x
->level
[i
].forward
;
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
));
236 /* Find the last node that is contained in the specified range.
237 * Returns NULL when no element is contained in the range. */
238 zskiplistNode
*zslLastInRange(zskiplist
*zsl
, zrangespec range
) {
242 /* If everything is out of range, return early. */
243 if (!zslIsInRange(zsl
,&range
)) return NULL
;
246 for (i
= zsl
->level
-1; i
>= 0; i
--) {
247 /* Go forward while *IN* range. */
248 while (x
->level
[i
].forward
&&
249 zslValueLteMax(x
->level
[i
].forward
->score
,&range
))
250 x
= x
->level
[i
].forward
;
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
));
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. */
263 unsigned long zslDeleteRangeByScore(zskiplist
*zsl
, zrangespec range
, dict
*dict
) {
264 zskiplistNode
*update
[ZSKIPLIST_MAXLEVEL
], *x
;
265 unsigned long removed
= 0;
269 for (i
= zsl
->level
-1; i
>= 0; i
--) {
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
;
277 /* Current node is the last with score < or <= min. */
278 x
= x
->level
[0].forward
;
280 /* Delete nodes while in range. */
281 while (x
&& (range
.maxex
? x
->score
< range
.max
: x
->score
<= range
.max
)) {
282 zskiplistNode
*next
= x
->level
[0].forward
;
283 zslDeleteNode(zsl
,x
,update
);
284 dictDelete(dict
,x
->obj
);
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 */
294 unsigned 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;
300 for (i
= zsl
->level
-1; i
>= 0; i
--) {
301 while (x
->level
[i
].forward
&& (traversed
+ x
->level
[i
].span
) < start
) {
302 traversed
+= x
->level
[i
].span
;
303 x
= x
->level
[i
].forward
;
309 x
= x
->level
[0].forward
;
310 while (x
&& traversed
<= end
) {
311 zskiplistNode
*next
= x
->level
[0].forward
;
312 zslDeleteNode(zsl
,x
,update
);
313 dictDelete(dict
,x
->obj
);
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
326 unsigned long zslGetRank(zskiplist
*zsl
, double score
, robj
*o
) {
328 unsigned long rank
= 0;
332 for (i
= zsl
->level
-1; i
>= 0; i
--) {
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
;
341 /* x might be equal to zsl->header, so test if obj is non-NULL */
342 if (x
->obj
&& equalStringObjects(x
->obj
,o
)) {
349 /* Finds an element by its rank. The rank argument needs to be 1-based. */
350 zskiplistNode
* zslGetElementByRank(zskiplist
*zsl
, unsigned long rank
) {
352 unsigned long traversed
= 0;
356 for (i
= zsl
->level
-1; i
>= 0; i
--) {
357 while (x
->level
[i
].forward
&& (traversed
+ x
->level
[i
].span
) <= rank
)
359 traversed
+= x
->level
[i
].span
;
360 x
= x
->level
[i
].forward
;
362 if (traversed
== rank
) {
369 /* Populate the rangespec according to the objects min and max. */
370 static int zslParseRange(robj
*min
, robj
*max
, zrangespec
*spec
) {
372 spec
->minex
= spec
->maxex
= 0;
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
;
381 if (((char*)min
->ptr
)[0] == '(') {
382 spec
->min
= strtod((char*)min
->ptr
+1,&eptr
);
383 if (eptr
[0] != '\0' || isnan(spec
->min
)) return REDIS_ERR
;
386 spec
->min
= strtod((char*)min
->ptr
,&eptr
);
387 if (eptr
[0] != '\0' || isnan(spec
->min
)) return REDIS_ERR
;
390 if (max
->encoding
== REDIS_ENCODING_INT
) {
391 spec
->max
= (long)max
->ptr
;
393 if (((char*)max
->ptr
)[0] == '(') {
394 spec
->max
= strtod((char*)max
->ptr
+1,&eptr
);
395 if (eptr
[0] != '\0' || isnan(spec
->max
)) return REDIS_ERR
;
398 spec
->max
= strtod((char*)max
->ptr
,&eptr
);
399 if (eptr
[0] != '\0' || isnan(spec
->max
)) return REDIS_ERR
;
406 /*-----------------------------------------------------------------------------
407 * Ziplist-backed sorted set API
408 *----------------------------------------------------------------------------*/
410 double zzlGetScore(unsigned char *sptr
) {
417 redisAssert(sptr
!= NULL
);
418 redisAssert(ziplistGet(sptr
,&vstr
,&vlen
,&vlong
));
421 memcpy(buf
,vstr
,vlen
);
423 score
= strtod(buf
,NULL
);
431 /* Compare element in sorted set with given element. */
432 int zzlCompareElements(unsigned char *eptr
, unsigned char *cstr
, unsigned int clen
) {
436 unsigned char vbuf
[32];
439 redisAssert(ziplistGet(eptr
,&vstr
,&vlen
,&vlong
));
441 /* Store string representation of long long in buf. */
442 vlen
= ll2string((char*)vbuf
,sizeof(vbuf
),vlong
);
446 minlen
= (vlen
< clen
) ? vlen
: clen
;
447 cmp
= memcmp(vstr
,cstr
,minlen
);
448 if (cmp
== 0) return vlen
-clen
;
452 unsigned int zzlLength(robj
*zobj
) {
453 unsigned char *zl
= zobj
->ptr
;
454 return ziplistLen(zl
)/2;
457 /* Move to next entry based on the values in eptr and sptr. Both are set to
458 * NULL when there is no next entry. */
459 void zzlNext(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
) {
460 unsigned char *_eptr
, *_sptr
;
461 redisAssert(*eptr
!= NULL
&& *sptr
!= NULL
);
463 _eptr
= ziplistNext(zl
,*sptr
);
465 _sptr
= ziplistNext(zl
,_eptr
);
466 redisAssert(_sptr
!= NULL
);
476 /* Move to the previous entry based on the values in eptr and sptr. Both are
477 * set to NULL when there is no next entry. */
478 void zzlPrev(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
) {
479 unsigned char *_eptr
, *_sptr
;
480 redisAssert(*eptr
!= NULL
&& *sptr
!= NULL
);
482 _sptr
= ziplistPrev(zl
,*eptr
);
484 _eptr
= ziplistPrev(zl
,_sptr
);
485 redisAssert(_eptr
!= NULL
);
487 /* No previous entry. */
495 /* Returns if there is a part of the zset is in range. Should only be used
496 * internally by zzlFirstInRange and zzlLastInRange. */
497 int zzlIsInRange(unsigned char *zl
, zrangespec
*range
) {
501 /* Test for ranges that will always be empty. */
502 if (range
->min
> range
->max
||
503 (range
->min
== range
->max
&& (range
->minex
|| range
->maxex
)))
506 p
= ziplistIndex(zl
,-1); /* Last score. */
507 redisAssert(p
!= NULL
);
508 score
= zzlGetScore(p
);
509 if (!zslValueGteMin(score
,range
))
512 p
= ziplistIndex(zl
,1); /* First score. */
513 redisAssert(p
!= NULL
);
514 score
= zzlGetScore(p
);
515 if (!zslValueLteMax(score
,range
))
521 /* Find pointer to the first element contained in the specified range.
522 * Returns NULL when no element is contained in the range. */
523 unsigned char *zzlFirstInRange(robj
*zobj
, zrangespec range
) {
524 unsigned char *zl
= zobj
->ptr
;
525 unsigned char *eptr
= ziplistIndex(zl
,0), *sptr
;
528 /* If everything is out of range, return early. */
529 if (!zzlIsInRange(zl
,&range
)) return NULL
;
531 while (eptr
!= NULL
) {
532 sptr
= ziplistNext(zl
,eptr
);
533 redisAssert(sptr
!= NULL
);
535 score
= zzlGetScore(sptr
);
536 if (zslValueGteMin(score
,&range
))
539 /* Move to next element. */
540 eptr
= ziplistNext(zl
,sptr
);
546 /* Find pointer to the last element contained in the specified range.
547 * Returns NULL when no element is contained in the range. */
548 unsigned char *zzlLastInRange(robj
*zobj
, zrangespec range
) {
549 unsigned char *zl
= zobj
->ptr
;
550 unsigned char *eptr
= ziplistIndex(zl
,-2), *sptr
;
553 /* If everything is out of range, return early. */
554 if (!zzlIsInRange(zl
,&range
)) return NULL
;
556 while (eptr
!= NULL
) {
557 sptr
= ziplistNext(zl
,eptr
);
558 redisAssert(sptr
!= NULL
);
560 score
= zzlGetScore(sptr
);
561 if (zslValueLteMax(score
,&range
))
564 /* Move to previous element by moving to the score of previous element.
565 * When this returns NULL, we know there also is no element. */
566 sptr
= ziplistPrev(zl
,eptr
);
568 redisAssert((eptr
= ziplistPrev(zl
,sptr
)) != NULL
);
576 unsigned char *zzlFind(robj
*zobj
, robj
*ele
, double *score
) {
577 unsigned char *zl
= zobj
->ptr
;
578 unsigned char *eptr
= ziplistIndex(zl
,0), *sptr
;
580 ele
= getDecodedObject(ele
);
581 while (eptr
!= NULL
) {
582 sptr
= ziplistNext(zl
,eptr
);
583 redisAssert(sptr
!= NULL
);
585 if (ziplistCompare(eptr
,ele
->ptr
,sdslen(ele
->ptr
))) {
586 /* Matching element, pull out score. */
587 if (score
!= NULL
) *score
= zzlGetScore(sptr
);
592 /* Move to next element. */
593 eptr
= ziplistNext(zl
,sptr
);
600 /* Delete (element,score) pair from ziplist. Use local copy of eptr because we
601 * don't want to modify the one given as argument. */
602 int zzlDelete(robj
*zobj
, unsigned char *eptr
) {
603 unsigned char *zl
= zobj
->ptr
;
604 unsigned char *p
= eptr
;
606 /* TODO: add function to ziplist API to delete N elements from offset. */
607 zl
= ziplistDelete(zl
,&p
);
608 zl
= ziplistDelete(zl
,&p
);
613 int zzlInsertAt(robj
*zobj
, robj
*ele
, double score
, unsigned char *eptr
) {
614 unsigned char *zl
= zobj
->ptr
;
620 redisAssert(ele
->encoding
== REDIS_ENCODING_RAW
);
621 scorelen
= d2string(scorebuf
,sizeof(scorebuf
),score
);
623 zl
= ziplistPush(zl
,ele
->ptr
,sdslen(ele
->ptr
),ZIPLIST_TAIL
);
624 zl
= ziplistPush(zl
,(unsigned char*)scorebuf
,scorelen
,ZIPLIST_TAIL
);
626 /* Keep offset relative to zl, as it might be re-allocated. */
628 zl
= ziplistInsert(zl
,eptr
,ele
->ptr
,sdslen(ele
->ptr
));
631 /* Insert score after the element. */
632 redisAssert((sptr
= ziplistNext(zl
,eptr
)) != NULL
);
633 zl
= ziplistInsert(zl
,sptr
,(unsigned char*)scorebuf
,scorelen
);
640 /* Insert (element,score) pair in ziplist. This function assumes the element is
641 * not yet present in the list. */
642 int zzlInsert(robj
*zobj
, robj
*ele
, double score
) {
643 unsigned char *zl
= zobj
->ptr
;
644 unsigned char *eptr
= ziplistIndex(zl
,0), *sptr
;
647 ele
= getDecodedObject(ele
);
648 while (eptr
!= NULL
) {
649 sptr
= ziplistNext(zl
,eptr
);
650 redisAssert(sptr
!= NULL
);
651 s
= zzlGetScore(sptr
);
654 /* First element with score larger than score for element to be
655 * inserted. This means we should take its spot in the list to
656 * maintain ordering. */
657 zzlInsertAt(zobj
,ele
,score
,eptr
);
659 } else if (s
== score
) {
660 /* Ensure lexicographical ordering for elements. */
661 if (zzlCompareElements(eptr
,ele
->ptr
,sdslen(ele
->ptr
)) > 0) {
662 zzlInsertAt(zobj
,ele
,score
,eptr
);
667 /* Move to next element. */
668 eptr
= ziplistNext(zl
,sptr
);
671 /* Push on tail of list when it was not yet inserted. */
673 zzlInsertAt(zobj
,ele
,score
,NULL
);
679 unsigned long zzlDeleteRangeByScore(robj
*zobj
, zrangespec range
) {
680 unsigned char *zl
= zobj
->ptr
;
681 unsigned char *eptr
, *sptr
;
683 unsigned long deleted
= 0;
685 eptr
= zzlFirstInRange(zobj
,range
);
686 if (eptr
== NULL
) return deleted
;
689 /* When the tail of the ziplist is deleted, eptr will point to the sentinel
690 * byte and ziplistNext will return NULL. */
691 while ((sptr
= ziplistNext(zl
,eptr
)) != NULL
) {
692 score
= zzlGetScore(sptr
);
693 if (zslValueLteMax(score
,&range
)) {
694 /* Delete both the element and the score. */
695 zl
= ziplistDelete(zl
,&eptr
);
696 zl
= ziplistDelete(zl
,&eptr
);
699 /* No longer in range. */
707 /* Delete all the elements with rank between start and end from the skiplist.
708 * Start and end are inclusive. Note that start and end need to be 1-based */
709 unsigned long zzlDeleteRangeByRank(robj
*zobj
, unsigned int start
, unsigned int end
) {
710 unsigned int num
= (end
-start
)+1;
711 zobj
->ptr
= ziplistDeleteRange(zobj
->ptr
,2*(start
-1),2*num
);
715 /*-----------------------------------------------------------------------------
716 * Common sorted set API
717 *----------------------------------------------------------------------------*/
719 int zsLength(robj
*zobj
) {
721 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
722 length
= zzlLength(zobj
);
723 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
724 length
= ((zset
*)zobj
->ptr
)->zsl
->length
;
726 redisPanic("Unknown sorted set encoding");
731 void zsConvert(robj
*zobj
, int encoding
) {
733 zskiplistNode
*node
, *next
;
737 if (zobj
->encoding
== encoding
) return;
738 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
739 unsigned char *zl
= zobj
->ptr
;
740 unsigned char *eptr
, *sptr
;
745 if (encoding
!= REDIS_ENCODING_RAW
)
746 redisPanic("Unknown target encoding");
748 zs
= zmalloc(sizeof(*zs
));
749 zs
->dict
= dictCreate(&zsetDictType
,NULL
);
750 zs
->zsl
= zslCreate();
752 eptr
= ziplistIndex(zl
,0);
753 redisAssert(eptr
!= NULL
);
754 sptr
= ziplistNext(zl
,eptr
);
755 redisAssert(sptr
!= NULL
);
757 while (eptr
!= NULL
) {
758 score
= zzlGetScore(sptr
);
759 redisAssert(ziplistGet(eptr
,&vstr
,&vlen
,&vlong
));
761 ele
= createStringObjectFromLongLong(vlong
);
763 ele
= createStringObject((char*)vstr
,vlen
);
765 /* Has incremented refcount since it was just created. */
766 node
= zslInsert(zs
->zsl
,score
,ele
);
767 redisAssert(dictAdd(zs
->dict
,ele
,&node
->score
) == DICT_OK
);
768 incrRefCount(ele
); /* Added to dictionary. */
769 zzlNext(zl
,&eptr
,&sptr
);
774 zobj
->encoding
= REDIS_ENCODING_RAW
;
775 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
776 unsigned char *zl
= ziplistNew();
778 if (encoding
!= REDIS_ENCODING_ZIPLIST
)
779 redisPanic("Unknown target encoding");
781 /* Approach similar to zslFree(), since we want to free the skiplist at
782 * the same time as creating the ziplist. */
784 dictRelease(zs
->dict
);
785 node
= zs
->zsl
->header
->level
[0].forward
;
786 zfree(zs
->zsl
->header
);
789 /* Immediately store pointer to ziplist in object because it will
790 * change because of reallocations when pushing to the ziplist. */
794 ele
= getDecodedObject(node
->obj
);
795 redisAssert(zzlInsertAt(zobj
,ele
,node
->score
,NULL
) == REDIS_OK
);
798 next
= node
->level
[0].forward
;
804 zobj
->encoding
= REDIS_ENCODING_ZIPLIST
;
806 redisPanic("Unknown sorted set encoding");
810 /*-----------------------------------------------------------------------------
811 * Sorted set commands
812 *----------------------------------------------------------------------------*/
814 /* This generic command implements both ZADD and ZINCRBY. */
815 void zaddGenericCommand(redisClient
*c
, int incr
) {
816 static char *nanerr
= "resulting score is not a number (NaN)";
817 robj
*key
= c
->argv
[1];
821 double score
, curscore
= 0.0;
823 if (getDoubleFromObjectOrReply(c
,c
->argv
[2],&score
,NULL
) != REDIS_OK
)
826 zobj
= lookupKeyWrite(c
->db
,key
);
828 if (server
.zset_max_ziplist_entries
== 0 ||
829 server
.zset_max_ziplist_value
< sdslen(c
->argv
[3]->ptr
))
831 zobj
= createZsetObject();
833 zobj
= createZsetZiplistObject();
835 dbAdd(c
->db
,key
,zobj
);
837 if (zobj
->type
!= REDIS_ZSET
) {
838 addReply(c
,shared
.wrongtypeerr
);
843 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
846 /* Prefer non-encoded element when dealing with ziplists. */
848 if ((eptr
= zzlFind(zobj
,ele
,&curscore
)) != NULL
) {
852 addReplyError(c
,nanerr
);
853 /* Don't need to check if the sorted set is empty, because
854 * we know it has at least one element. */
859 /* Remove and re-insert when score changed. */
860 if (score
!= curscore
) {
861 redisAssert(zzlDelete(zobj
,eptr
) == REDIS_OK
);
862 redisAssert(zzlInsert(zobj
,ele
,score
) == REDIS_OK
);
864 signalModifiedKey(c
->db
,key
);
868 if (incr
) /* ZINCRBY */
869 addReplyDouble(c
,score
);
871 addReply(c
,shared
.czero
);
873 /* Optimize: check if the element is too large or the list becomes
874 * too long *before* executing zzlInsert. */
875 redisAssert(zzlInsert(zobj
,ele
,score
) == REDIS_OK
);
876 if (zzlLength(zobj
) > server
.zset_max_ziplist_entries
)
877 zsConvert(zobj
,REDIS_ENCODING_RAW
);
878 if (sdslen(ele
->ptr
) > server
.zset_max_ziplist_value
)
879 zsConvert(zobj
,REDIS_ENCODING_RAW
);
881 signalModifiedKey(c
->db
,key
);
884 if (incr
) /* ZINCRBY */
885 addReplyDouble(c
,score
);
887 addReply(c
,shared
.cone
);
889 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
890 zset
*zs
= zobj
->ptr
;
891 zskiplistNode
*znode
;
894 ele
= c
->argv
[3] = tryObjectEncoding(c
->argv
[3]);
895 de
= dictFind(zs
->dict
,ele
);
897 curobj
= dictGetEntryKey(de
);
898 curscore
= *(double*)dictGetEntryVal(de
);
903 addReplyError(c
,nanerr
);
904 /* Don't need to check if the sorted set is empty, because
905 * we know it has at least one element. */
910 /* Remove and re-insert when score changed. We can safely delete
911 * the key object from the skiplist, since the dictionary still has
912 * a reference to it. */
913 if (score
!= curscore
) {
914 redisAssert(zslDelete(zs
->zsl
,curscore
,curobj
));
915 znode
= zslInsert(zs
->zsl
,score
,curobj
);
916 incrRefCount(curobj
); /* Re-inserted in skiplist. */
917 dictGetEntryVal(de
) = &znode
->score
; /* Update score ptr. */
919 signalModifiedKey(c
->db
,key
);
923 if (incr
) /* ZINCRBY */
924 addReplyDouble(c
,score
);
926 addReply(c
,shared
.czero
);
928 znode
= zslInsert(zs
->zsl
,score
,ele
);
929 incrRefCount(ele
); /* Inserted in skiplist. */
930 redisAssert(dictAdd(zs
->dict
,ele
,&znode
->score
) == DICT_OK
);
931 incrRefCount(ele
); /* Added to dictionary. */
933 signalModifiedKey(c
->db
,key
);
936 if (incr
) /* ZINCRBY */
937 addReplyDouble(c
,score
);
939 addReply(c
,shared
.cone
);
942 redisPanic("Unknown sorted set encoding");
946 void zaddCommand(redisClient
*c
) {
947 zaddGenericCommand(c
,0);
950 void zincrbyCommand(redisClient
*c
) {
951 zaddGenericCommand(c
,1);
954 void zremCommand(redisClient
*c
) {
955 robj
*key
= c
->argv
[1];
956 robj
*ele
= c
->argv
[2];
959 if ((zobj
= lookupKeyWriteOrReply(c
,key
,shared
.czero
)) == NULL
||
960 checkType(c
,zobj
,REDIS_ZSET
)) return;
962 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
965 if ((eptr
= zzlFind(zobj
,ele
,NULL
)) != NULL
) {
966 redisAssert(zzlDelete(zobj
,eptr
) == REDIS_OK
);
967 if (zzlLength(zobj
) == 0) dbDelete(c
->db
,key
);
969 addReply(c
,shared
.czero
);
972 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
973 zset
*zs
= zobj
->ptr
;
977 de
= dictFind(zs
->dict
,ele
);
979 /* Delete from the skiplist */
980 score
= *(double*)dictGetEntryVal(de
);
981 redisAssert(zslDelete(zs
->zsl
,score
,ele
));
983 /* Delete from the hash table */
984 dictDelete(zs
->dict
,ele
);
985 if (htNeedsResize(zs
->dict
)) dictResize(zs
->dict
);
986 if (dictSize(zs
->dict
) == 0) dbDelete(c
->db
,key
);
988 addReply(c
,shared
.czero
);
992 redisPanic("Unknown sorted set encoding");
995 signalModifiedKey(c
->db
,key
);
997 addReply(c
,shared
.cone
);
1000 void zremrangebyscoreCommand(redisClient
*c
) {
1001 robj
*key
= c
->argv
[1];
1004 unsigned long deleted
;
1006 /* Parse the range arguments. */
1007 if (zslParseRange(c
->argv
[2],c
->argv
[3],&range
) != REDIS_OK
) {
1008 addReplyError(c
,"min or max is not a double");
1012 if ((zobj
= lookupKeyWriteOrReply(c
,key
,shared
.czero
)) == NULL
||
1013 checkType(c
,zobj
,REDIS_ZSET
)) return;
1015 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
1016 deleted
= zzlDeleteRangeByScore(zobj
,range
);
1017 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
1018 zset
*zs
= zobj
->ptr
;
1019 deleted
= zslDeleteRangeByScore(zs
->zsl
,range
,zs
->dict
);
1020 if (htNeedsResize(zs
->dict
)) dictResize(zs
->dict
);
1021 if (dictSize(zs
->dict
) == 0) dbDelete(c
->db
,key
);
1023 redisPanic("Unknown sorted set encoding");
1026 if (deleted
) signalModifiedKey(c
->db
,key
);
1027 server
.dirty
+= deleted
;
1028 addReplyLongLong(c
,deleted
);
1031 void zremrangebyrankCommand(redisClient
*c
) {
1032 robj
*key
= c
->argv
[1];
1037 unsigned long deleted
;
1039 if ((getLongFromObjectOrReply(c
, c
->argv
[2], &start
, NULL
) != REDIS_OK
) ||
1040 (getLongFromObjectOrReply(c
, c
->argv
[3], &end
, NULL
) != REDIS_OK
)) return;
1042 if ((zobj
= lookupKeyWriteOrReply(c
,key
,shared
.czero
)) == NULL
||
1043 checkType(c
,zobj
,REDIS_ZSET
)) return;
1045 /* Sanitize indexes. */
1046 llen
= zsLength(zobj
);
1047 if (start
< 0) start
= llen
+start
;
1048 if (end
< 0) end
= llen
+end
;
1049 if (start
< 0) start
= 0;
1051 /* Invariant: start >= 0, so this test will be true when end < 0.
1052 * The range is empty when start > end or start >= length. */
1053 if (start
> end
|| start
>= llen
) {
1054 addReply(c
,shared
.czero
);
1057 if (end
>= llen
) end
= llen
-1;
1059 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
1060 /* Correct for 1-based rank. */
1061 deleted
= zzlDeleteRangeByRank(zobj
,start
+1,end
+1);
1062 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
1063 zset
*zs
= zobj
->ptr
;
1065 /* Correct for 1-based rank. */
1066 deleted
= zslDeleteRangeByRank(zs
->zsl
,start
+1,end
+1,zs
->dict
);
1067 if (htNeedsResize(zs
->dict
)) dictResize(zs
->dict
);
1068 if (dictSize(zs
->dict
) == 0) dbDelete(c
->db
,key
);
1070 redisPanic("Unknown sorted set encoding");
1073 if (deleted
) signalModifiedKey(c
->db
,key
);
1074 server
.dirty
+= deleted
;
1075 addReplyLongLong(c
,deleted
);
1083 int qsortCompareZsetopsrcByCardinality(const void *s1
, const void *s2
) {
1084 zsetopsrc
*d1
= (void*) s1
, *d2
= (void*) s2
;
1085 unsigned long size1
, size2
;
1086 size1
= d1
->dict
? dictSize(d1
->dict
) : 0;
1087 size2
= d2
->dict
? dictSize(d2
->dict
) : 0;
1088 return size1
- size2
;
1091 #define REDIS_AGGR_SUM 1
1092 #define REDIS_AGGR_MIN 2
1093 #define REDIS_AGGR_MAX 3
1094 #define zunionInterDictValue(_e) (dictGetEntryVal(_e) == NULL ? 1.0 : *(double*)dictGetEntryVal(_e))
1096 inline static void zunionInterAggregate(double *target
, double val
, int aggregate
) {
1097 if (aggregate
== REDIS_AGGR_SUM
) {
1098 *target
= *target
+ val
;
1099 /* The result of adding two doubles is NaN when one variable
1100 * is +inf and the other is -inf. When these numbers are added,
1101 * we maintain the convention of the result being 0.0. */
1102 if (isnan(*target
)) *target
= 0.0;
1103 } else if (aggregate
== REDIS_AGGR_MIN
) {
1104 *target
= val
< *target
? val
: *target
;
1105 } else if (aggregate
== REDIS_AGGR_MAX
) {
1106 *target
= val
> *target
? val
: *target
;
1109 redisPanic("Unknown ZUNION/INTER aggregate type");
1113 void zunionInterGenericCommand(redisClient
*c
, robj
*dstkey
, int op
) {
1115 int aggregate
= REDIS_AGGR_SUM
;
1119 zskiplistNode
*znode
;
1124 /* expect setnum input keys to be given */
1125 setnum
= atoi(c
->argv
[2]->ptr
);
1128 "at least 1 input key is needed for ZUNIONSTORE/ZINTERSTORE");
1132 /* test if the expected number of keys would overflow */
1133 if (3+setnum
> c
->argc
) {
1134 addReply(c
,shared
.syntaxerr
);
1138 /* read keys to be used for input */
1139 src
= zmalloc(sizeof(zsetopsrc
) * setnum
);
1140 for (i
= 0, j
= 3; i
< setnum
; i
++, j
++) {
1141 robj
*obj
= lookupKeyWrite(c
->db
,c
->argv
[j
]);
1145 if (obj
->type
== REDIS_ZSET
) {
1146 src
[i
].dict
= ((zset
*)obj
->ptr
)->dict
;
1147 } else if (obj
->type
== REDIS_SET
) {
1148 src
[i
].dict
= (obj
->ptr
);
1151 addReply(c
,shared
.wrongtypeerr
);
1156 /* default all weights to 1 */
1157 src
[i
].weight
= 1.0;
1160 /* parse optional extra arguments */
1162 int remaining
= c
->argc
- j
;
1165 if (remaining
>= (setnum
+ 1) && !strcasecmp(c
->argv
[j
]->ptr
,"weights")) {
1167 for (i
= 0; i
< setnum
; i
++, j
++, remaining
--) {
1168 if (getDoubleFromObjectOrReply(c
,c
->argv
[j
],&src
[i
].weight
,
1169 "weight value is not a double") != REDIS_OK
)
1175 } else if (remaining
>= 2 && !strcasecmp(c
->argv
[j
]->ptr
,"aggregate")) {
1177 if (!strcasecmp(c
->argv
[j
]->ptr
,"sum")) {
1178 aggregate
= REDIS_AGGR_SUM
;
1179 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"min")) {
1180 aggregate
= REDIS_AGGR_MIN
;
1181 } else if (!strcasecmp(c
->argv
[j
]->ptr
,"max")) {
1182 aggregate
= REDIS_AGGR_MAX
;
1185 addReply(c
,shared
.syntaxerr
);
1191 addReply(c
,shared
.syntaxerr
);
1197 /* sort sets from the smallest to largest, this will improve our
1198 * algorithm's performance */
1199 qsort(src
,setnum
,sizeof(zsetopsrc
),qsortCompareZsetopsrcByCardinality
);
1201 dstobj
= createZsetObject();
1202 dstzset
= dstobj
->ptr
;
1204 if (op
== REDIS_OP_INTER
) {
1205 /* skip going over all entries if the smallest zset is NULL or empty */
1206 if (src
[0].dict
&& dictSize(src
[0].dict
) > 0) {
1207 /* precondition: as src[0].dict is non-empty and the zsets are ordered
1208 * from small to large, all src[i > 0].dict are non-empty too */
1209 di
= dictGetIterator(src
[0].dict
);
1210 while((de
= dictNext(di
)) != NULL
) {
1211 double score
, value
;
1213 score
= src
[0].weight
* zunionInterDictValue(de
);
1214 for (j
= 1; j
< setnum
; j
++) {
1215 dictEntry
*other
= dictFind(src
[j
].dict
,dictGetEntryKey(de
));
1217 value
= src
[j
].weight
* zunionInterDictValue(other
);
1218 zunionInterAggregate(&score
,value
,aggregate
);
1224 /* Only continue when present in every source dict. */
1226 robj
*o
= dictGetEntryKey(de
);
1227 znode
= zslInsert(dstzset
->zsl
,score
,o
);
1228 incrRefCount(o
); /* added to skiplist */
1229 dictAdd(dstzset
->dict
,o
,&znode
->score
);
1230 incrRefCount(o
); /* added to dictionary */
1233 dictReleaseIterator(di
);
1235 } else if (op
== REDIS_OP_UNION
) {
1236 for (i
= 0; i
< setnum
; i
++) {
1237 if (!src
[i
].dict
) continue;
1239 di
= dictGetIterator(src
[i
].dict
);
1240 while((de
= dictNext(di
)) != NULL
) {
1241 double score
, value
;
1243 /* skip key when already processed */
1244 if (dictFind(dstzset
->dict
,dictGetEntryKey(de
)) != NULL
)
1247 /* initialize score */
1248 score
= src
[i
].weight
* zunionInterDictValue(de
);
1250 /* because the zsets are sorted by size, its only possible
1251 * for sets at larger indices to hold this entry */
1252 for (j
= (i
+1); j
< setnum
; j
++) {
1253 dictEntry
*other
= dictFind(src
[j
].dict
,dictGetEntryKey(de
));
1255 value
= src
[j
].weight
* zunionInterDictValue(other
);
1256 zunionInterAggregate(&score
,value
,aggregate
);
1260 robj
*o
= dictGetEntryKey(de
);
1261 znode
= zslInsert(dstzset
->zsl
,score
,o
);
1262 incrRefCount(o
); /* added to skiplist */
1263 dictAdd(dstzset
->dict
,o
,&znode
->score
);
1264 incrRefCount(o
); /* added to dictionary */
1266 dictReleaseIterator(di
);
1269 /* unknown operator */
1270 redisAssert(op
== REDIS_OP_INTER
|| op
== REDIS_OP_UNION
);
1273 if (dbDelete(c
->db
,dstkey
)) {
1274 signalModifiedKey(c
->db
,dstkey
);
1278 if (dstzset
->zsl
->length
) {
1279 dbAdd(c
->db
,dstkey
,dstobj
);
1280 addReplyLongLong(c
, dstzset
->zsl
->length
);
1281 if (!touched
) signalModifiedKey(c
->db
,dstkey
);
1284 decrRefCount(dstobj
);
1285 addReply(c
, shared
.czero
);
1290 void zunionstoreCommand(redisClient
*c
) {
1291 zunionInterGenericCommand(c
,c
->argv
[1], REDIS_OP_UNION
);
1294 void zinterstoreCommand(redisClient
*c
) {
1295 zunionInterGenericCommand(c
,c
->argv
[1], REDIS_OP_INTER
);
1298 void zrangeGenericCommand(redisClient
*c
, int reverse
) {
1299 robj
*key
= c
->argv
[1];
1307 if ((getLongFromObjectOrReply(c
, c
->argv
[2], &start
, NULL
) != REDIS_OK
) ||
1308 (getLongFromObjectOrReply(c
, c
->argv
[3], &end
, NULL
) != REDIS_OK
)) return;
1310 if (c
->argc
== 5 && !strcasecmp(c
->argv
[4]->ptr
,"withscores")) {
1312 } else if (c
->argc
>= 5) {
1313 addReply(c
,shared
.syntaxerr
);
1317 if ((zobj
= lookupKeyReadOrReply(c
,key
,shared
.emptymultibulk
)) == NULL
1318 || checkType(c
,zobj
,REDIS_ZSET
)) return;
1320 /* Sanitize indexes. */
1321 llen
= zsLength(zobj
);
1322 if (start
< 0) start
= llen
+start
;
1323 if (end
< 0) end
= llen
+end
;
1324 if (start
< 0) start
= 0;
1326 /* Invariant: start >= 0, so this test will be true when end < 0.
1327 * The range is empty when start > end or start >= length. */
1328 if (start
> end
|| start
>= llen
) {
1329 addReply(c
,shared
.emptymultibulk
);
1332 if (end
>= llen
) end
= llen
-1;
1333 rangelen
= (end
-start
)+1;
1335 /* Return the result in form of a multi-bulk reply */
1336 addReplyMultiBulkLen(c
, withscores
? (rangelen
*2) : rangelen
);
1338 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
1339 unsigned char *zl
= zobj
->ptr
;
1340 unsigned char *eptr
, *sptr
;
1341 unsigned char *vstr
;
1346 eptr
= ziplistIndex(zl
,-2-(2*start
));
1348 eptr
= ziplistIndex(zl
,2*start
);
1350 redisAssert(eptr
!= NULL
);
1351 sptr
= ziplistNext(zl
,eptr
);
1353 while (rangelen
--) {
1354 redisAssert(eptr
!= NULL
&& sptr
!= NULL
);
1355 redisAssert(ziplistGet(eptr
,&vstr
,&vlen
,&vlong
));
1357 addReplyBulkLongLong(c
,vlong
);
1359 addReplyBulkCBuffer(c
,vstr
,vlen
);
1362 addReplyDouble(c
,zzlGetScore(sptr
));
1365 zzlPrev(zl
,&eptr
,&sptr
);
1367 zzlNext(zl
,&eptr
,&sptr
);
1370 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
1371 zset
*zs
= zobj
->ptr
;
1372 zskiplist
*zsl
= zs
->zsl
;
1376 /* Check if starting point is trivial, before doing log(N) lookup. */
1380 ln
= zslGetElementByRank(zsl
,llen
-start
);
1382 ln
= zsl
->header
->level
[0].forward
;
1384 ln
= zslGetElementByRank(zsl
,start
+1);
1388 redisAssert(ln
!= NULL
);
1390 addReplyBulk(c
,ele
);
1392 addReplyDouble(c
,ln
->score
);
1393 ln
= reverse
? ln
->backward
: ln
->level
[0].forward
;
1396 redisPanic("Unknown sorted set encoding");
1400 void zrangeCommand(redisClient
*c
) {
1401 zrangeGenericCommand(c
,0);
1404 void zrevrangeCommand(redisClient
*c
) {
1405 zrangeGenericCommand(c
,1);
1408 /* This command implements ZRANGEBYSCORE, ZREVRANGEBYSCORE and ZCOUNT.
1409 * If "justcount", only the number of elements in the range is returned. */
1410 void genericZrangebyscoreCommand(redisClient
*c
, int reverse
, int justcount
) {
1412 robj
*key
= c
->argv
[1];
1413 robj
*emptyreply
, *zobj
;
1414 int offset
= 0, limit
= -1;
1416 unsigned long rangelen
= 0;
1417 void *replylen
= NULL
;
1420 /* Parse the range arguments. */
1422 /* Range is given as [max,min] */
1423 maxidx
= 2; minidx
= 3;
1425 /* Range is given as [min,max] */
1426 minidx
= 2; maxidx
= 3;
1429 if (zslParseRange(c
->argv
[minidx
],c
->argv
[maxidx
],&range
) != REDIS_OK
) {
1430 addReplyError(c
,"min or max is not a double");
1434 /* Parse optional extra arguments. Note that ZCOUNT will exactly have
1435 * 4 arguments, so we'll never enter the following code path. */
1437 int remaining
= c
->argc
- 4;
1441 if (remaining
>= 1 && !strcasecmp(c
->argv
[pos
]->ptr
,"withscores")) {
1444 } else if (remaining
>= 3 && !strcasecmp(c
->argv
[pos
]->ptr
,"limit")) {
1445 offset
= atoi(c
->argv
[pos
+1]->ptr
);
1446 limit
= atoi(c
->argv
[pos
+2]->ptr
);
1447 pos
+= 3; remaining
-= 3;
1449 addReply(c
,shared
.syntaxerr
);
1455 /* Ok, lookup the key and get the range */
1456 emptyreply
= justcount
? shared
.czero
: shared
.emptymultibulk
;
1457 if ((zobj
= lookupKeyReadOrReply(c
,key
,emptyreply
)) == NULL
||
1458 checkType(c
,zobj
,REDIS_ZSET
)) return;
1460 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
1461 unsigned char *zl
= zobj
->ptr
;
1462 unsigned char *eptr
, *sptr
;
1463 unsigned char *vstr
;
1468 /* If reversed, get the last node in range as starting point. */
1470 eptr
= zzlLastInRange(zobj
,range
);
1472 eptr
= zzlFirstInRange(zobj
,range
);
1474 /* No "first" element in the specified interval. */
1476 addReply(c
,emptyreply
);
1480 /* Get score pointer for the first element. */
1481 redisAssert(eptr
!= NULL
);
1482 sptr
= ziplistNext(zl
,eptr
);
1484 /* We don't know in advance how many matching elements there are in the
1485 * list, so we push this object that will represent the multi-bulk
1486 * length in the output buffer, and will "fix" it later */
1488 replylen
= addDeferredMultiBulkLength(c
);
1490 /* If there is an offset, just traverse the number of elements without
1491 * checking the score because that is done in the next loop. */
1492 while (eptr
&& offset
--)
1494 zzlPrev(zl
,&eptr
,&sptr
);
1496 zzlNext(zl
,&eptr
,&sptr
);
1498 while (eptr
&& limit
--) {
1499 score
= zzlGetScore(sptr
);
1501 /* Abort when the node is no longer in range. */
1503 if (!zslValueGteMin(score
,&range
)) break;
1505 if (!zslValueLteMax(score
,&range
)) break;
1511 redisAssert(ziplistGet(eptr
,&vstr
,&vlen
,&vlong
));
1513 addReplyBulkLongLong(c
,vlong
);
1515 addReplyBulkCBuffer(c
,vstr
,vlen
);
1518 addReplyDouble(c
,score
);
1521 /* Move to next node */
1523 zzlPrev(zl
,&eptr
,&sptr
);
1525 zzlNext(zl
,&eptr
,&sptr
);
1527 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
1528 zset
*zs
= zobj
->ptr
;
1529 zskiplist
*zsl
= zs
->zsl
;
1532 /* If reversed, get the last node in range as starting point. */
1534 ln
= zslLastInRange(zsl
,range
);
1536 ln
= zslFirstInRange(zsl
,range
);
1538 /* No "first" element in the specified interval. */
1540 addReply(c
,emptyreply
);
1544 /* We don't know in advance how many matching elements there are in the
1545 * list, so we push this object that will represent the multi-bulk
1546 * length in the output buffer, and will "fix" it later */
1548 replylen
= addDeferredMultiBulkLength(c
);
1550 /* If there is an offset, just traverse the number of elements without
1551 * checking the score because that is done in the next loop. */
1552 while (ln
&& offset
--)
1553 ln
= reverse
? ln
->backward
: ln
->level
[0].forward
;
1555 while (ln
&& limit
--) {
1556 /* Abort when the node is no longer in range. */
1558 if (!zslValueGteMin(ln
->score
,&range
)) break;
1560 if (!zslValueLteMax(ln
->score
,&range
)) break;
1566 addReplyBulk(c
,ln
->obj
);
1568 addReplyDouble(c
,ln
->score
);
1571 /* Move to next node */
1572 ln
= reverse
? ln
->backward
: ln
->level
[0].forward
;
1575 redisPanic("Unknown sorted set encoding");
1579 addReplyLongLong(c
,(long)rangelen
);
1581 if (withscores
) rangelen
*= 2;
1582 setDeferredMultiBulkLength(c
,replylen
,rangelen
);
1586 void zrangebyscoreCommand(redisClient
*c
) {
1587 genericZrangebyscoreCommand(c
,0,0);
1590 void zrevrangebyscoreCommand(redisClient
*c
) {
1591 genericZrangebyscoreCommand(c
,1,0);
1594 void zcountCommand(redisClient
*c
) {
1595 genericZrangebyscoreCommand(c
,0,1);
1598 void zcardCommand(redisClient
*c
) {
1599 robj
*key
= c
->argv
[1];
1602 if ((zobj
= lookupKeyReadOrReply(c
,key
,shared
.czero
)) == NULL
||
1603 checkType(c
,zobj
,REDIS_ZSET
)) return;
1605 addReplyLongLong(c
,zzlLength(zobj
));
1608 void zscoreCommand(redisClient
*c
) {
1609 robj
*key
= c
->argv
[1];
1613 if ((zobj
= lookupKeyReadOrReply(c
,key
,shared
.nullbulk
)) == NULL
||
1614 checkType(c
,zobj
,REDIS_ZSET
)) return;
1616 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
1617 if (zzlFind(zobj
,c
->argv
[2],&score
) != NULL
)
1618 addReplyDouble(c
,score
);
1620 addReply(c
,shared
.nullbulk
);
1621 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
1622 zset
*zs
= zobj
->ptr
;
1625 c
->argv
[2] = tryObjectEncoding(c
->argv
[2]);
1626 de
= dictFind(zs
->dict
,c
->argv
[2]);
1628 score
= *(double*)dictGetEntryVal(de
);
1629 addReplyDouble(c
,score
);
1631 addReply(c
,shared
.nullbulk
);
1634 redisPanic("Unknown sorted set encoding");
1638 void zrankGenericCommand(redisClient
*c
, int reverse
) {
1639 robj
*key
= c
->argv
[1];
1640 robj
*ele
= c
->argv
[2];
1645 if ((zobj
= lookupKeyReadOrReply(c
,key
,shared
.nullbulk
)) == NULL
||
1646 checkType(c
,zobj
,REDIS_ZSET
)) return;
1647 llen
= zsLength(zobj
);
1649 redisAssert(ele
->encoding
== REDIS_ENCODING_RAW
);
1650 if (zobj
->encoding
== REDIS_ENCODING_ZIPLIST
) {
1651 unsigned char *zl
= zobj
->ptr
;
1652 unsigned char *eptr
, *sptr
;
1654 eptr
= ziplistIndex(zl
,0);
1655 redisAssert(eptr
!= NULL
);
1656 sptr
= ziplistNext(zl
,eptr
);
1657 redisAssert(sptr
!= NULL
);
1660 while(eptr
!= NULL
) {
1661 if (ziplistCompare(eptr
,ele
->ptr
,sdslen(ele
->ptr
)))
1664 zzlNext(zl
,&eptr
,&sptr
);
1669 addReplyLongLong(c
,llen
-rank
);
1671 addReplyLongLong(c
,rank
-1);
1673 addReply(c
,shared
.nullbulk
);
1675 } else if (zobj
->encoding
== REDIS_ENCODING_RAW
) {
1676 zset
*zs
= zobj
->ptr
;
1677 zskiplist
*zsl
= zs
->zsl
;
1681 ele
= c
->argv
[2] = tryObjectEncoding(c
->argv
[2]);
1682 de
= dictFind(zs
->dict
,ele
);
1684 score
= *(double*)dictGetEntryVal(de
);
1685 rank
= zslGetRank(zsl
,score
,ele
);
1686 redisAssert(rank
); /* Existing elements always have a rank. */
1688 addReplyLongLong(c
,llen
-rank
);
1690 addReplyLongLong(c
,rank
-1);
1692 addReply(c
,shared
.nullbulk
);
1695 redisPanic("Unknown sorted set encoding");
1699 void zrankCommand(redisClient
*c
) {
1700 zrankGenericCommand(c
, 0);
1703 void zrevrankCommand(redisClient
*c
) {
1704 zrankGenericCommand(c
, 1);