2012-11-08 12:25:23 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
|
|
|
|
* Copyright (c) 2009-2012, Pieter Noordhuis <pcnoordhuis at gmail dot com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Redis nor the names of its contributors may be used
|
|
|
|
* to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
* Sorted set API
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* ZSETs are ordered sets using two data structures to hold the same elements
|
|
|
|
* in order to get O(log(N)) INSERT and REMOVE operations into a sorted
|
|
|
|
* data structure.
|
|
|
|
*
|
2013-12-05 10:35:32 -05:00
|
|
|
* The elements are added to a hash table mapping Redis objects to scores.
|
2010-06-21 18:07:48 -04:00
|
|
|
* At the same time the elements are added to a skip list mapping scores
|
2015-08-04 03:20:55 -04:00
|
|
|
* to Redis objects (so objects are sorted by scores in this "view").
|
|
|
|
*
|
|
|
|
* Note that the SDS string representing the element is the same in both
|
|
|
|
* the hash table and skiplist in order to save memory. What we do in order
|
|
|
|
* to manage the shared SDS string more easily is to free the SDS string
|
|
|
|
* only in zslFreeNode(). The dictionary has no value free method set.
|
|
|
|
* So we should always remove an element from the dictionary, and later from
|
|
|
|
* the skiplist.
|
|
|
|
*
|
|
|
|
* This skiplist implementation is almost a C translation of the original
|
2010-06-21 18:07:48 -04:00
|
|
|
* algorithm described by William Pugh in "Skip Lists: A Probabilistic
|
|
|
|
* Alternative to Balanced Trees", modified in three ways:
|
2012-01-11 14:25:41 -05:00
|
|
|
* a) this implementation allows for repeated scores.
|
2010-06-21 18:07:48 -04:00
|
|
|
* b) the comparison is not just by key (our 'score') but by satellite data.
|
|
|
|
* c) there is a back pointer, so it's a doubly linked list with the back
|
|
|
|
* pointers being only at "level 1". This allows to traverse the list
|
|
|
|
* from tail to head, useful for ZREVRANGE. */
|
|
|
|
|
2015-07-26 09:14:57 -04:00
|
|
|
#include "server.h"
|
2012-11-08 12:25:23 -05:00
|
|
|
#include <math.h>
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
* Skiplist implementation of the low level API
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
2016-04-21 05:17:00 -04:00
|
|
|
int zslLexValueGteMin(sds value, zlexrangespec *spec);
|
|
|
|
int zslLexValueLteMax(sds value, zlexrangespec *spec);
|
2014-04-17 08:47:52 -04:00
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Create a skiplist node with the specified number of levels.
|
|
|
|
* The SDS string 'ele' is referenced by the node after the call. */
|
|
|
|
zskiplistNode *zslCreateNode(int level, double score, sds ele) {
|
|
|
|
zskiplistNode *zn =
|
|
|
|
zmalloc(sizeof(*zn)+level*sizeof(struct zskiplistLevel));
|
2010-06-21 18:07:48 -04:00
|
|
|
zn->score = score;
|
2015-08-04 03:20:55 -04:00
|
|
|
zn->ele = ele;
|
2010-06-21 18:07:48 -04:00
|
|
|
return zn;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Create a new skiplist. */
|
2010-06-21 18:07:48 -04:00
|
|
|
zskiplist *zslCreate(void) {
|
|
|
|
int j;
|
|
|
|
zskiplist *zsl;
|
|
|
|
|
|
|
|
zsl = zmalloc(sizeof(*zsl));
|
|
|
|
zsl->level = 1;
|
|
|
|
zsl->length = 0;
|
|
|
|
zsl->header = zslCreateNode(ZSKIPLIST_MAXLEVEL,0,NULL);
|
|
|
|
for (j = 0; j < ZSKIPLIST_MAXLEVEL; j++) {
|
2010-08-03 13:21:16 -04:00
|
|
|
zsl->header->level[j].forward = NULL;
|
|
|
|
zsl->header->level[j].span = 0;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
zsl->header->backward = NULL;
|
|
|
|
zsl->tail = NULL;
|
|
|
|
return zsl;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Free the specified skiplist node. The referenced SDS string representation
|
|
|
|
* of the element is freed too, unless node->ele is set to NULL before calling
|
|
|
|
* this function. */
|
2010-06-21 18:07:48 -04:00
|
|
|
void zslFreeNode(zskiplistNode *node) {
|
2015-08-04 03:20:55 -04:00
|
|
|
sdsfree(node->ele);
|
2010-06-21 18:07:48 -04:00
|
|
|
zfree(node);
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Free a whole skiplist. */
|
2010-06-21 18:07:48 -04:00
|
|
|
void zslFree(zskiplist *zsl) {
|
2010-08-03 13:21:16 -04:00
|
|
|
zskiplistNode *node = zsl->header->level[0].forward, *next;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
zfree(zsl->header);
|
|
|
|
while(node) {
|
2010-08-03 13:21:16 -04:00
|
|
|
next = node->level[0].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
zslFreeNode(node);
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
zfree(zsl);
|
|
|
|
}
|
|
|
|
|
2012-01-16 03:39:04 -05:00
|
|
|
/* Returns a random level for the new skiplist node we are going to create.
|
|
|
|
* The return value of this function is between 1 and ZSKIPLIST_MAXLEVEL
|
|
|
|
* (both inclusive), with a powerlaw-alike distribution where higher
|
|
|
|
* levels are less likely to be returned. */
|
2010-06-21 18:07:48 -04:00
|
|
|
int zslRandomLevel(void) {
|
|
|
|
int level = 1;
|
|
|
|
while ((random()&0xFFFF) < (ZSKIPLIST_P * 0xFFFF))
|
|
|
|
level += 1;
|
|
|
|
return (level<ZSKIPLIST_MAXLEVEL) ? level : ZSKIPLIST_MAXLEVEL;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Insert a new node in the skiplist. Assumes the element does not already
|
|
|
|
* exist (up to the caller to enforce that). The skiplist takes ownership
|
|
|
|
* of the passed SDS string 'ele'. */
|
|
|
|
zskiplistNode *zslInsert(zskiplist *zsl, double score, sds ele) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
|
|
|
|
unsigned int rank[ZSKIPLIST_MAXLEVEL];
|
|
|
|
int i, level;
|
|
|
|
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(!isnan(score));
|
2010-06-21 18:07:48 -04:00
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
/* store rank that is crossed to reach the insert position */
|
|
|
|
rank[i] = i == (zsl->level-1) ? 0 : rank[i+1];
|
2010-08-03 13:21:16 -04:00
|
|
|
while (x->level[i].forward &&
|
2015-08-04 03:20:55 -04:00
|
|
|
(x->level[i].forward->score < score ||
|
|
|
|
(x->level[i].forward->score == score &&
|
|
|
|
sdscmp(x->level[i].forward->ele,ele) < 0)))
|
|
|
|
{
|
2010-08-03 13:21:16 -04:00
|
|
|
rank[i] += x->level[i].span;
|
|
|
|
x = x->level[i].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
update[i] = x;
|
|
|
|
}
|
2015-08-04 03:20:55 -04:00
|
|
|
/* we assume the element is not already inside, since we allow duplicated
|
|
|
|
* scores, reinserting the same element should never happen since the
|
|
|
|
* caller of zslInsert() should test in the hash table if the element is
|
|
|
|
* already inside or not. */
|
2010-06-21 18:07:48 -04:00
|
|
|
level = zslRandomLevel();
|
|
|
|
if (level > zsl->level) {
|
|
|
|
for (i = zsl->level; i < level; i++) {
|
|
|
|
rank[i] = 0;
|
|
|
|
update[i] = zsl->header;
|
2010-08-03 13:21:16 -04:00
|
|
|
update[i]->level[i].span = zsl->length;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
zsl->level = level;
|
|
|
|
}
|
2015-08-04 03:20:55 -04:00
|
|
|
x = zslCreateNode(level,score,ele);
|
2010-06-21 18:07:48 -04:00
|
|
|
for (i = 0; i < level; i++) {
|
2010-08-03 13:21:16 -04:00
|
|
|
x->level[i].forward = update[i]->level[i].forward;
|
|
|
|
update[i]->level[i].forward = x;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
/* update span covered by update[i] as x is inserted here */
|
2010-08-03 13:21:16 -04:00
|
|
|
x->level[i].span = update[i]->level[i].span - (rank[0] - rank[i]);
|
|
|
|
update[i]->level[i].span = (rank[0] - rank[i]) + 1;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* increment span for untouched levels */
|
|
|
|
for (i = level; i < zsl->level; i++) {
|
2010-08-03 13:21:16 -04:00
|
|
|
update[i]->level[i].span++;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
x->backward = (update[0] == zsl->header) ? NULL : update[0];
|
2010-08-03 13:21:16 -04:00
|
|
|
if (x->level[0].forward)
|
|
|
|
x->level[0].forward->backward = x;
|
2010-06-21 18:07:48 -04:00
|
|
|
else
|
|
|
|
zsl->tail = x;
|
|
|
|
zsl->length++;
|
2010-08-03 14:49:53 -04:00
|
|
|
return x;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2020-04-14 04:52:40 -04:00
|
|
|
/* Internal function used by zslDelete, zslDeleteRangeByScore and
|
|
|
|
* zslDeleteRangeByRank. */
|
2010-06-21 18:07:48 -04:00
|
|
|
void zslDeleteNode(zskiplist *zsl, zskiplistNode *x, zskiplistNode **update) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < zsl->level; i++) {
|
2010-08-03 13:21:16 -04:00
|
|
|
if (update[i]->level[i].forward == x) {
|
|
|
|
update[i]->level[i].span += x->level[i].span - 1;
|
|
|
|
update[i]->level[i].forward = x->level[i].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
} else {
|
2010-08-03 13:21:16 -04:00
|
|
|
update[i]->level[i].span -= 1;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
}
|
2010-08-03 13:21:16 -04:00
|
|
|
if (x->level[0].forward) {
|
|
|
|
x->level[0].forward->backward = x->backward;
|
2010-06-21 18:07:48 -04:00
|
|
|
} else {
|
|
|
|
zsl->tail = x->backward;
|
|
|
|
}
|
2010-08-03 13:21:16 -04:00
|
|
|
while(zsl->level > 1 && zsl->header->level[zsl->level-1].forward == NULL)
|
2010-06-21 18:07:48 -04:00
|
|
|
zsl->level--;
|
|
|
|
zsl->length--;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Delete an element with matching score/element from the skiplist.
|
|
|
|
* The function returns 1 if the node was found and deleted, otherwise
|
|
|
|
* 0 is returned.
|
|
|
|
*
|
|
|
|
* If 'node' is NULL the deleted node is freed by zslFreeNode(), otherwise
|
|
|
|
* it is not freed (but just unlinked) and *node is set to the node pointer,
|
|
|
|
* so that it is possible for the caller to reuse the node (including the
|
|
|
|
* referenced SDS string at node->ele). */
|
|
|
|
int zslDelete(zskiplist *zsl, double score, sds ele, zskiplistNode **node) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
2010-08-03 13:21:16 -04:00
|
|
|
while (x->level[i].forward &&
|
2015-08-04 03:20:55 -04:00
|
|
|
(x->level[i].forward->score < score ||
|
|
|
|
(x->level[i].forward->score == score &&
|
|
|
|
sdscmp(x->level[i].forward->ele,ele) < 0)))
|
|
|
|
{
|
2010-08-03 13:21:16 -04:00
|
|
|
x = x->level[i].forward;
|
2015-08-04 03:20:55 -04:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
update[i] = x;
|
|
|
|
}
|
|
|
|
/* We may have multiple elements with the same score, what we need
|
|
|
|
* is to find the element with both the right score and object. */
|
2010-08-03 13:21:16 -04:00
|
|
|
x = x->level[0].forward;
|
2015-08-04 03:20:55 -04:00
|
|
|
if (x && score == x->score && sdscmp(x->ele,ele) == 0) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zslDeleteNode(zsl, x, update);
|
2015-08-04 03:20:55 -04:00
|
|
|
if (!node)
|
|
|
|
zslFreeNode(x);
|
|
|
|
else
|
|
|
|
*node = x;
|
2010-06-21 18:07:48 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0; /* not found */
|
|
|
|
}
|
|
|
|
|
Squash merging 125 typo/grammar/comment/doc PRs (#7773)
List of squashed commits or PRs
===============================
commit 66801ea
Author: hwware <wen.hui.ware@gmail.com>
Date: Mon Jan 13 00:54:31 2020 -0500
typo fix in acl.c
commit 46f55db
Author: Itamar Haber <itamar@redislabs.com>
Date: Sun Sep 6 18:24:11 2020 +0300
Updates a couple of comments
Specifically:
* RM_AutoMemory completed instead of pointing to docs
* Updated link to custom type doc
commit 61a2aa0
Author: xindoo <xindoo@qq.com>
Date: Tue Sep 1 19:24:59 2020 +0800
Correct errors in code comments
commit a5871d1
Author: yz1509 <pro-756@qq.com>
Date: Tue Sep 1 18:36:06 2020 +0800
fix typos in module.c
commit 41eede7
Author: bookug <bookug@qq.com>
Date: Sat Aug 15 01:11:33 2020 +0800
docs: fix typos in comments
commit c303c84
Author: lazy-snail <ws.niu@outlook.com>
Date: Fri Aug 7 11:15:44 2020 +0800
fix spelling in redis.conf
commit 1eb76bf
Author: zhujian <zhujianxyz@gmail.com>
Date: Thu Aug 6 15:22:10 2020 +0800
add a missing 'n' in comment
commit 1530ec2
Author: Daniel Dai <764122422@qq.com>
Date: Mon Jul 27 00:46:35 2020 -0400
fix spelling in tracking.c
commit e517b31
Author: Hunter-Chen <huntcool001@gmail.com>
Date: Fri Jul 17 22:33:32 2020 +0800
Update redis.conf
Co-authored-by: Itamar Haber <itamar@redislabs.com>
commit c300eff
Author: Hunter-Chen <huntcool001@gmail.com>
Date: Fri Jul 17 22:33:23 2020 +0800
Update redis.conf
Co-authored-by: Itamar Haber <itamar@redislabs.com>
commit 4c058a8
Author: 陈浩鹏 <chenhaopeng@heytea.com>
Date: Thu Jun 25 19:00:56 2020 +0800
Grammar fix and clarification
commit 5fcaa81
Author: bodong.ybd <bodong.ybd@alibaba-inc.com>
Date: Fri Jun 19 10:09:00 2020 +0800
Fix typos
commit 4caca9a
Author: Pruthvi P <pruthvi@ixigo.com>
Date: Fri May 22 00:33:22 2020 +0530
Fix typo eviciton => eviction
commit b2a25f6
Author: Brad Dunbar <dunbarb2@gmail.com>
Date: Sun May 17 12:39:59 2020 -0400
Fix a typo.
commit 12842ae
Author: hwware <wen.hui.ware@gmail.com>
Date: Sun May 3 17:16:59 2020 -0400
fix spelling in redis conf
commit ddba07c
Author: Chris Lamb <chris@chris-lamb.co.uk>
Date: Sat May 2 23:25:34 2020 +0100
Correct a "conflicts" spelling error.
commit 8fc7bf2
Author: Nao YONASHIRO <yonashiro@r.recruit.co.jp>
Date: Thu Apr 30 10:25:27 2020 +0900
docs: fix EXPIRE_FAST_CYCLE_DURATION to ACTIVE_EXPIRE_CYCLE_FAST_DURATION
commit 9b2b67a
Author: Brad Dunbar <dunbarb2@gmail.com>
Date: Fri Apr 24 11:46:22 2020 -0400
Fix a typo.
commit 0746f10
Author: devilinrust <63737265+devilinrust@users.noreply.github.com>
Date: Thu Apr 16 00:17:53 2020 +0200
Fix typos in server.c
commit 92b588d
Author: benjessop12 <56115861+benjessop12@users.noreply.github.com>
Date: Mon Apr 13 13:43:55 2020 +0100
Fix spelling mistake in lazyfree.c
commit 1da37aa
Merge: 2d4ba28 af347a8
Author: hwware <wen.hui.ware@gmail.com>
Date: Thu Mar 5 22:41:31 2020 -0500
Merge remote-tracking branch 'upstream/unstable' into expiretypofix
commit 2d4ba28
Author: hwware <wen.hui.ware@gmail.com>
Date: Mon Mar 2 00:09:40 2020 -0500
fix typo in expire.c
commit 1a746f7
Author: SennoYuki <minakami1yuki@gmail.com>
Date: Thu Feb 27 16:54:32 2020 +0800
fix typo
commit 8599b1a
Author: dongheejeong <donghee950403@gmail.com>
Date: Sun Feb 16 20:31:43 2020 +0000
Fix typo in server.c
commit f38d4e8
Author: hwware <wen.hui.ware@gmail.com>
Date: Sun Feb 2 22:58:38 2020 -0500
fix typo in evict.c
commit fe143fc
Author: Leo Murillo <leonardo.murillo@gmail.com>
Date: Sun Feb 2 01:57:22 2020 -0600
Fix a few typos in redis.conf
commit 1ab4d21
Author: viraja1 <anchan.viraj@gmail.com>
Date: Fri Dec 27 17:15:58 2019 +0530
Fix typo in Latency API docstring
commit ca1f70e
Author: gosth <danxuedexing@qq.com>
Date: Wed Dec 18 15:18:02 2019 +0800
fix typo in sort.c
commit a57c06b
Author: ZYunH <zyunhjob@163.com>
Date: Mon Dec 16 22:28:46 2019 +0800
fix-zset-typo
commit b8c92b5
Author: git-hulk <hulk.website@gmail.com>
Date: Mon Dec 16 15:51:42 2019 +0800
FIX: typo in cluster.c, onformation->information
commit 9dd981c
Author: wujm2007 <jim.wujm@gmail.com>
Date: Mon Dec 16 09:37:52 2019 +0800
Fix typo
commit e132d7a
Author: Sebastien Williams-Wynn <s.williamswynn.mail@gmail.com>
Date: Fri Nov 15 00:14:07 2019 +0000
Minor typo change
commit 47f44d5
Author: happynote3966 <01ssrmikururudevice01@gmail.com>
Date: Mon Nov 11 22:08:48 2019 +0900
fix comment typo in redis-cli.c
commit b8bdb0d
Author: fulei <fulei@kuaishou.com>
Date: Wed Oct 16 18:00:17 2019 +0800
Fix a spelling mistake of comments in defragDictBucketCallback
commit 0def46a
Author: fulei <fulei@kuaishou.com>
Date: Wed Oct 16 13:09:27 2019 +0800
fix some spelling mistakes of comments in defrag.c
commit f3596fd
Author: Phil Rajchgot <tophil@outlook.com>
Date: Sun Oct 13 02:02:32 2019 -0400
Typo and grammar fixes
Redis and its documentation are great -- just wanted to submit a few corrections in the spirit of Hacktoberfest. Thanks for all your work on this project. I use it all the time and it works beautifully.
commit 2b928cd
Author: KangZhiDong <worldkzd@gmail.com>
Date: Sun Sep 1 07:03:11 2019 +0800
fix typos
commit 33aea14
Author: Axlgrep <axlgrep@gmail.com>
Date: Tue Aug 27 11:02:18 2019 +0800
Fixed eviction spelling issues
commit e282a80
Author: Simen Flatby <simen@oms.no>
Date: Tue Aug 20 15:25:51 2019 +0200
Update comments to reflect prop name
In the comments the prop is referenced as replica-validity-factor,
but it is really named cluster-replica-validity-factor.
commit 74d1f9a
Author: Jim Green <jimgreen2013@qq.com>
Date: Tue Aug 20 20:00:31 2019 +0800
fix comment error, the code is ok
commit eea1407
Author: Liao Tonglang <liaotonglang@gmail.com>
Date: Fri May 31 10:16:18 2019 +0800
typo fix
fix cna't to can't
commit 0da553c
Author: KAWACHI Takashi <tkawachi@gmail.com>
Date: Wed Jul 17 00:38:16 2019 +0900
Fix typo
commit 7fc8fb6
Author: Michael Prokop <mika@grml.org>
Date: Tue May 28 17:58:42 2019 +0200
Typo fixes
s/familar/familiar/
s/compatiblity/compatibility/
s/ ot / to /
s/itsef/itself/
commit 5f46c9d
Author: zhumoing <34539422+zhumoing@users.noreply.github.com>
Date: Tue May 21 21:16:50 2019 +0800
typo-fixes
typo-fixes
commit 321dfe1
Author: wxisme <850885154@qq.com>
Date: Sat Mar 16 15:10:55 2019 +0800
typo fix
commit b4fb131
Merge: 267e0e6 3df1eb8
Author: Nikitas Bastas <nikitasbst@gmail.com>
Date: Fri Feb 8 22:55:45 2019 +0200
Merge branch 'unstable' of antirez/redis into unstable
commit 267e0e6
Author: Nikitas Bastas <nikitasbst@gmail.com>
Date: Wed Jan 30 21:26:04 2019 +0200
Minor typo fix
commit 30544e7
Author: inshal96 <39904558+inshal96@users.noreply.github.com>
Date: Fri Jan 4 16:54:50 2019 +0500
remove an extra 'a' in the comments
commit 337969d
Author: BrotherGao <yangdongheng11@gmail.com>
Date: Sat Dec 29 12:37:29 2018 +0800
fix typo in redis.conf
commit 9f4b121
Merge: 423a030 e504583
Author: BrotherGao <yangdongheng@xiaomi.com>
Date: Sat Dec 29 11:41:12 2018 +0800
Merge branch 'unstable' of antirez/redis into unstable
commit 423a030
Merge: 42b02b7 46a51cd
Author: 杨东衡 <yangdongheng@xiaomi.com>
Date: Tue Dec 4 23:56:11 2018 +0800
Merge branch 'unstable' of antirez/redis into unstable
commit 42b02b7
Merge: 68c0e6e b8febe6
Author: Dongheng Yang <yangdongheng11@gmail.com>
Date: Sun Oct 28 15:54:23 2018 +0800
Merge pull request #1 from antirez/unstable
update local data
commit 714b589
Author: Christian <crifei93@gmail.com>
Date: Fri Dec 28 01:17:26 2018 +0100
fix typo "resulution"
commit e23259d
Author: garenchan <1412950785@qq.com>
Date: Wed Dec 26 09:58:35 2018 +0800
fix typo: segfauls -> segfault
commit a9359f8
Author: xjp <jianping_xie@aliyun.com>
Date: Tue Dec 18 17:31:44 2018 +0800
Fixed REDISMODULE_H spell bug
commit a12c3e4
Author: jdiaz <jrd.palacios@gmail.com>
Date: Sat Dec 15 23:39:52 2018 -0600
Fixes hyperloglog hash function comment block description
commit 770eb11
Author: 林上耀 <1210tom@163.com>
Date: Sun Nov 25 17:16:10 2018 +0800
fix typo
commit fd97fbb
Author: Chris Lamb <chris@chris-lamb.co.uk>
Date: Fri Nov 23 17:14:01 2018 +0100
Correct "unsupported" typo.
commit a85522d
Author: Jungnam Lee <jungnam.lee@oracle.com>
Date: Thu Nov 8 23:01:29 2018 +0900
fix typo in test comments
commit ade8007
Author: Arun Kumar <palerdot@users.noreply.github.com>
Date: Tue Oct 23 16:56:35 2018 +0530
Fixed grammatical typo
Fixed typo for word 'dictionary'
commit 869ee39
Author: Hamid Alaei <hamid.a85@gmail.com>
Date: Sun Aug 12 16:40:02 2018 +0430
fix documentations: (ThreadSafeContextStart/Stop -> ThreadSafeContextLock/Unlock), minor typo
commit f89d158
Author: Mayank Jain <mayankjain255@gmail.com>
Date: Tue Jul 31 23:01:21 2018 +0530
Updated README.md with some spelling corrections.
Made correction in spelling of some misspelled words.
commit 892198e
Author: dsomeshwar <someshwar.dhayalan@gmail.com>
Date: Sat Jul 21 23:23:04 2018 +0530
typo fix
commit 8a4d780
Author: Itamar Haber <itamar@redislabs.com>
Date: Mon Apr 30 02:06:52 2018 +0300
Fixes some typos
commit e3acef6
Author: Noah Rosamilia <ivoahivoah@gmail.com>
Date: Sat Mar 3 23:41:21 2018 -0500
Fix typo in /deps/README.md
commit 04442fb
Author: WuYunlong <xzsyeb@126.com>
Date: Sat Mar 3 10:32:42 2018 +0800
Fix typo in readSyncBulkPayload() comment.
commit 9f36880
Author: WuYunlong <xzsyeb@126.com>
Date: Sat Mar 3 10:20:37 2018 +0800
replication.c comment: run_id -> replid.
commit f866b4a
Author: Francesco 'makevoid' Canessa <makevoid@gmail.com>
Date: Thu Feb 22 22:01:56 2018 +0000
fix comment typo in server.c
commit 0ebc69b
Author: 줍 <jubee0124@gmail.com>
Date: Mon Feb 12 16:38:48 2018 +0900
Fix typo in redis.conf
Fix `five behaviors` to `eight behaviors` in [this sentence ](antirez/redis@unstable/redis.conf#L564)
commit b50a620
Author: martinbroadhurst <martinbroadhurst@users.noreply.github.com>
Date: Thu Dec 28 12:07:30 2017 +0000
Fix typo in valgrind.sup
commit 7d8f349
Author: Peter Boughton <peter@sorcerersisle.com>
Date: Mon Nov 27 19:52:19 2017 +0000
Update CONTRIBUTING; refer doc updates to redis-doc repo.
commit 02dec7e
Author: Klauswk <klauswk1@hotmail.com>
Date: Tue Oct 24 16:18:38 2017 -0200
Fix typo in comment
commit e1efbc8
Author: chenshi <baiwfg2@gmail.com>
Date: Tue Oct 3 18:26:30 2017 +0800
Correct two spelling errors of comments
commit 93327d8
Author: spacewander <spacewanderlzx@gmail.com>
Date: Wed Sep 13 16:47:24 2017 +0800
Update the comment for OBJ_ENCODING_EMBSTR_SIZE_LIMIT's value
The value of OBJ_ENCODING_EMBSTR_SIZE_LIMIT is 44 now instead of 39.
commit 63d361f
Author: spacewander <spacewanderlzx@gmail.com>
Date: Tue Sep 12 15:06:42 2017 +0800
Fix <prevlen> related doc in ziplist.c
According to the definition of ZIP_BIG_PREVLEN and other related code,
the guard of single byte <prevlen> should be 254 instead of 255.
commit ebe228d
Author: hanael80 <hanael80@gmail.com>
Date: Tue Aug 15 09:09:40 2017 +0900
Fix typo
commit 6b696e6
Author: Matt Robenolt <matt@ydekproductions.com>
Date: Mon Aug 14 14:50:47 2017 -0700
Fix typo in LATENCY DOCTOR output
commit a2ec6ae
Author: caosiyang <caosiyang@qiyi.com>
Date: Tue Aug 15 14:15:16 2017 +0800
Fix a typo: form => from
commit 3ab7699
Author: caosiyang <caosiyang@qiyi.com>
Date: Thu Aug 10 18:40:33 2017 +0800
Fix a typo: replicationFeedSlavesFromMaster() => replicationFeedSlavesFromMasterStream()
commit 72d43ef
Author: caosiyang <caosiyang@qiyi.com>
Date: Tue Aug 8 15:57:25 2017 +0800
fix a typo: servewr => server
commit 707c958
Author: Bo Cai <charpty@gmail.com>
Date: Wed Jul 26 21:49:42 2017 +0800
redis-cli.c typo: conut -> count.
Signed-off-by: Bo Cai <charpty@gmail.com>
commit b9385b2
Author: JackDrogon <jack.xsuperman@gmail.com>
Date: Fri Jun 30 14:22:31 2017 +0800
Fix some spell problems
commit 20d9230
Author: akosel <aaronjkosel@gmail.com>
Date: Sun Jun 4 19:35:13 2017 -0500
Fix typo
commit b167bfc
Author: Krzysiek Witkowicz <krzysiekwitkowicz@gmail.com>
Date: Mon May 22 21:32:27 2017 +0100
Fix #4008 small typo in comment
commit 2b78ac8
Author: Jake Clarkson <jacobwclarkson@gmail.com>
Date: Wed Apr 26 15:49:50 2017 +0100
Correct typo in tests/unit/hyperloglog.tcl
commit b0f1cdb
Author: Qi Luo <qiluo-msft@users.noreply.github.com>
Date: Wed Apr 19 14:25:18 2017 -0700
Fix typo
commit a90b0f9
Author: charsyam <charsyam@naver.com>
Date: Thu Mar 16 18:19:53 2017 +0900
fix typos
fix typos
fix typos
commit 8430a79
Author: Richard Hart <richardhart92@gmail.com>
Date: Mon Mar 13 22:17:41 2017 -0400
Fixed log message typo in listenToPort.
commit 481a1c2
Author: Vinod Kumar <kumar003vinod@gmail.com>
Date: Sun Jan 15 23:04:51 2017 +0530
src/db.c: Correct "save" -> "safe" typo
commit 586b4d3
Author: wangshaonan <wshn13@gmail.com>
Date: Wed Dec 21 20:28:27 2016 +0800
Fix typo they->the in helloworld.c
commit c1c4b5e
Author: Jenner <hypxm@qq.com>
Date: Mon Dec 19 16:39:46 2016 +0800
typo error
commit 1ee1a3f
Author: tielei <43289893@qq.com>
Date: Mon Jul 18 13:52:25 2016 +0800
fix some comments
commit 11a41fb
Author: Otto Kekäläinen <otto@seravo.fi>
Date: Sun Jul 3 10:23:55 2016 +0100
Fix spelling in documentation and comments
commit 5fb5d82
Author: francischan <f1ancis621@gmail.com>
Date: Tue Jun 28 00:19:33 2016 +0800
Fix outdated comments about redis.c file.
It should now refer to server.c file.
commit 6b254bc
Author: lmatt-bit <lmatt123n@gmail.com>
Date: Thu Apr 21 21:45:58 2016 +0800
Refine the comment of dictRehashMilliseconds func
SLAVECONF->REPLCONF in comment - by andyli029
commit ee9869f
Author: clark.kang <charsyam@naver.com>
Date: Tue Mar 22 11:09:51 2016 +0900
fix typos
commit f7b3b11
Author: Harisankar H <harisankarh@gmail.com>
Date: Wed Mar 9 11:49:42 2016 +0530
Typo correction: "faield" --> "failed"
Typo correction: "faield" --> "failed"
commit 3fd40fc
Author: Itamar Haber <itamar@redislabs.com>
Date: Thu Feb 25 10:31:51 2016 +0200
Fixes a typo in comments
commit 621c160
Author: Prayag Verma <prayag.verma@gmail.com>
Date: Mon Feb 1 12:36:20 2016 +0530
Fix typo in Readme.md
Spelling mistakes -
`eviciton` > `eviction`
`familar` > `familiar`
commit d7d07d6
Author: WonCheol Lee <toctoc21c@gmail.com>
Date: Wed Dec 30 15:11:34 2015 +0900
Typo fixed
commit a4dade7
Author: Felix Bünemann <buenemann@louis.info>
Date: Mon Dec 28 11:02:55 2015 +0100
[ci skip] Improve supervised upstart config docs
This mentions that "expect stop" is required for supervised upstart
to work correctly. See http://upstart.ubuntu.com/cookbook/#expect-stop
for an explanation.
commit d9caba9
Author: daurnimator <quae@daurnimator.com>
Date: Mon Dec 21 18:30:03 2015 +1100
README: Remove trailing whitespace
commit 72d42e5
Author: daurnimator <quae@daurnimator.com>
Date: Mon Dec 21 18:29:32 2015 +1100
README: Fix typo. th => the
commit dd6e957
Author: daurnimator <quae@daurnimator.com>
Date: Mon Dec 21 18:29:20 2015 +1100
README: Fix typo. familar => familiar
commit 3a12b23
Author: daurnimator <quae@daurnimator.com>
Date: Mon Dec 21 18:28:54 2015 +1100
README: Fix typo. eviciton => eviction
commit 2d1d03b
Author: daurnimator <quae@daurnimator.com>
Date: Mon Dec 21 18:21:45 2015 +1100
README: Fix typo. sever => server
commit 3973b06
Author: Itamar Haber <itamar@garantiadata.com>
Date: Sat Dec 19 17:01:20 2015 +0200
Typo fix
commit 4f2e460
Author: Steve Gao <fu@2token.com>
Date: Fri Dec 4 10:22:05 2015 +0800
Update README - fix typos
commit b21667c
Author: binyan <binbin.yan@nokia.com>
Date: Wed Dec 2 22:48:37 2015 +0800
delete redundancy color judge in sdscatcolor
commit 88894c7
Author: binyan <binbin.yan@nokia.com>
Date: Wed Dec 2 22:14:42 2015 +0800
the example output shoule be HelloWorld
commit 2763470
Author: binyan <binbin.yan@nokia.com>
Date: Wed Dec 2 17:41:39 2015 +0800
modify error word keyevente
Signed-off-by: binyan <binbin.yan@nokia.com>
commit 0847b3d
Author: Bruno Martins <bscmartins@gmail.com>
Date: Wed Nov 4 11:37:01 2015 +0000
typo
commit bbb9e9e
Author: dawedawe <dawedawe@gmx.de>
Date: Fri Mar 27 00:46:41 2015 +0100
typo: zimap -> zipmap
commit 5ed297e
Author: Axel Advento <badwolf.bloodseeker.rev@gmail.com>
Date: Tue Mar 3 15:58:29 2015 +0800
Fix 'salve' typos to 'slave'
commit edec9d6
Author: LudwikJaniuk <ludvig.janiuk@gmail.com>
Date: Wed Jun 12 14:12:47 2019 +0200
Update README.md
Co-Authored-By: Qix <Qix-@users.noreply.github.com>
commit 692a7af
Author: LudwikJaniuk <ludvig.janiuk@gmail.com>
Date: Tue May 28 14:32:04 2019 +0200
grammar
commit d962b0a
Author: Nick Frost <nickfrostatx@gmail.com>
Date: Wed Jul 20 15:17:12 2016 -0700
Minor grammar fix
commit 24fff01aaccaf5956973ada8c50ceb1462e211c6 (typos)
Author: Chad Miller <chadm@squareup.com>
Date: Tue Sep 8 13:46:11 2020 -0400
Fix faulty comment about operation of unlink()
commit 3cd5c1f3326c52aa552ada7ec797c6bb16452355
Author: Kevin <kevin.xgr@gmail.com>
Date: Wed Nov 20 00:13:50 2019 +0800
Fix typo in server.c.
From a83af59 Mon Sep 17 00:00:00 2001
From: wuwo <wuwo@wacai.com>
Date: Fri, 17 Mar 2017 20:37:45 +0800
Subject: [PATCH] falure to failure
From c961896 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=B7=A6=E6=87=B6?= <veficos@gmail.com>
Date: Sat, 27 May 2017 15:33:04 +0800
Subject: [PATCH] fix typo
From e600ef2 Mon Sep 17 00:00:00 2001
From: "rui.zou" <rui.zou@yunify.com>
Date: Sat, 30 Sep 2017 12:38:15 +0800
Subject: [PATCH] fix a typo
From c7d07fa Mon Sep 17 00:00:00 2001
From: Alexandre Perrin <alex@kaworu.ch>
Date: Thu, 16 Aug 2018 10:35:31 +0200
Subject: [PATCH] deps README.md typo
From b25cb67 Mon Sep 17 00:00:00 2001
From: Guy Korland <gkorland@gmail.com>
Date: Wed, 26 Sep 2018 10:55:37 +0300
Subject: [PATCH 1/2] fix typos in header
From ad28ca6 Mon Sep 17 00:00:00 2001
From: Guy Korland <gkorland@gmail.com>
Date: Wed, 26 Sep 2018 11:02:36 +0300
Subject: [PATCH 2/2] fix typos
commit 34924cdedd8552466fc22c1168d49236cb7ee915
Author: Adrian Lynch <adi_ady_ade@hotmail.com>
Date: Sat Apr 4 21:59:15 2015 +0100
Typos fixed
commit fd2a1e7
Author: Jan <jsteemann@users.noreply.github.com>
Date: Sat Oct 27 19:13:01 2018 +0200
Fix typos
Fix typos
commit e14e47c1a234b53b0e103c5f6a1c61481cbcbb02
Author: Andy Lester <andy@petdance.com>
Date: Fri Aug 2 22:30:07 2019 -0500
Fix multiple misspellings of "following"
commit 79b948ce2dac6b453fe80995abbcaac04c213d5a
Author: Andy Lester <andy@petdance.com>
Date: Fri Aug 2 22:24:28 2019 -0500
Fix misspelling of create-cluster
commit 1fffde52666dc99ab35efbd31071a4c008cb5a71
Author: Andy Lester <andy@petdance.com>
Date: Wed Jul 31 17:57:56 2019 -0500
Fix typos
commit 204c9ba9651e9e05fd73936b452b9a30be456cfe
Author: Xiaobo Zhu <xiaobo.zhu@shopee.com>
Date: Tue Aug 13 22:19:25 2019 +0800
fix typos
Squashed commit of the following:
commit 1d9aaf8
Author: danmedani <danmedani@gmail.com>
Date: Sun Aug 2 11:40:26 2015 -0700
README typo fix.
Squashed commit of the following:
commit 32bfa7c
Author: Erik Dubbelboer <erik@dubbelboer.com>
Date: Mon Jul 6 21:15:08 2015 +0200
Fixed grammer
Squashed commit of the following:
commit b24f69c
Author: Sisir Koppaka <sisir.koppaka@gmail.com>
Date: Mon Mar 2 22:38:45 2015 -0500
utils/hashtable/rehashing.c: Fix typos
Squashed commit of the following:
commit 4e04082
Author: Erik Dubbelboer <erik@dubbelboer.com>
Date: Mon Mar 23 08:22:21 2015 +0000
Small config file documentation improvements
Squashed commit of the following:
commit acb8773
Author: ctd1500 <ctd1500@gmail.com>
Date: Fri May 8 01:52:48 2015 -0700
Typo and grammar fixes in readme
commit 2eb75b6
Author: ctd1500 <ctd1500@gmail.com>
Date: Fri May 8 01:36:18 2015 -0700
fixed redis.conf comment
Squashed commit of the following:
commit a8249a2
Author: Masahiko Sawada <sawada.mshk@gmail.com>
Date: Fri Dec 11 11:39:52 2015 +0530
Revise correction of typos.
Squashed commit of the following:
commit 3c02028
Author: zhaojun11 <zhaojun11@jd.com>
Date: Wed Jan 17 19:05:28 2018 +0800
Fix typos include two code typos in cluster.c and latency.c
Squashed commit of the following:
commit 9dba47c
Author: q191201771 <191201771@qq.com>
Date: Sat Jan 4 11:31:04 2020 +0800
fix function listCreate comment in adlist.c
Update src/server.c
commit 2c7c2cb536e78dd211b1ac6f7bda00f0f54faaeb
Author: charpty <charpty@gmail.com>
Date: Tue May 1 23:16:59 2018 +0800
server.c typo: modules system dictionary type comment
Signed-off-by: charpty <charpty@gmail.com>
commit a8395323fb63cb59cb3591cb0f0c8edb7c29a680
Author: Itamar Haber <itamar@redislabs.com>
Date: Sun May 6 00:25:18 2018 +0300
Updates test_helper.tcl's help with undocumented options
Specifically:
* Host
* Port
* Client
commit bde6f9ced15755cd6407b4af7d601b030f36d60b
Author: wxisme <850885154@qq.com>
Date: Wed Aug 8 15:19:19 2018 +0800
fix comments in deps files
commit 3172474ba991532ab799ee1873439f3402412331
Author: wxisme <850885154@qq.com>
Date: Wed Aug 8 14:33:49 2018 +0800
fix some comments
commit 01b6f2b6858b5cf2ce4ad5092d2c746e755f53f0
Author: Thor Juhasz <thor@juhasz.pro>
Date: Sun Nov 18 14:37:41 2018 +0100
Minor fixes to comments
Found some parts a little unclear on a first read, which prompted me to have a better look at the file and fix some minor things I noticed.
Fixing minor typos and grammar. There are no changes to configuration options.
These changes are only meant to help the user better understand the explanations to the various configuration options
2020-09-10 06:43:38 -04:00
|
|
|
/* Update the score of an element inside the sorted set skiplist.
|
2018-08-01 12:27:56 -04:00
|
|
|
* Note that the element must exist and must match 'score'.
|
|
|
|
* This function does not update the score in the hash table side, the
|
|
|
|
* caller should take care of it.
|
|
|
|
*
|
2018-08-01 12:53:06 -04:00
|
|
|
* Note that this function attempts to just update the node, in case after
|
|
|
|
* the score update, the node would be exactly at the same position.
|
|
|
|
* Otherwise the skiplist is modified by removing and re-adding a new
|
|
|
|
* element, which is more costly.
|
|
|
|
*
|
2018-08-01 12:27:56 -04:00
|
|
|
* The function returns the updated element skiplist node pointer. */
|
2018-08-01 12:50:31 -04:00
|
|
|
zskiplistNode *zslUpdateScore(zskiplist *zsl, double curscore, sds ele, double newscore) {
|
|
|
|
zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
|
|
|
|
int i;
|
|
|
|
|
2018-08-01 12:54:15 -04:00
|
|
|
/* We need to seek to element to update to start: this is useful anyway,
|
|
|
|
* we'll have to update or remove it. */
|
2018-08-01 12:50:31 -04:00
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
while (x->level[i].forward &&
|
|
|
|
(x->level[i].forward->score < curscore ||
|
|
|
|
(x->level[i].forward->score == curscore &&
|
|
|
|
sdscmp(x->level[i].forward->ele,ele) < 0)))
|
|
|
|
{
|
|
|
|
x = x->level[i].forward;
|
|
|
|
}
|
|
|
|
update[i] = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Jump to our element: note that this function assumes that the
|
|
|
|
* element with the matching score exists. */
|
|
|
|
x = x->level[0].forward;
|
|
|
|
serverAssert(x && curscore == x->score && sdscmp(x->ele,ele) == 0);
|
|
|
|
|
|
|
|
/* If the node, after the score update, would be still exactly
|
|
|
|
* at the same position, we can just update the score without
|
|
|
|
* actually removing and re-inserting the element in the skiplist. */
|
2018-08-01 13:01:40 -04:00
|
|
|
if ((x->backward == NULL || x->backward->score < newscore) &&
|
|
|
|
(x->level[0].forward == NULL || x->level[0].forward->score > newscore))
|
2018-08-01 12:50:31 -04:00
|
|
|
{
|
|
|
|
x->score = newscore;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No way to reuse the old node: we need to remove and insert a new
|
|
|
|
* one at a different place. */
|
|
|
|
zslDeleteNode(zsl, x, update);
|
|
|
|
zskiplistNode *newnode = zslInsert(zsl,newscore,x->ele);
|
|
|
|
/* We reused the old node x->ele SDS string, free the node now
|
|
|
|
* since zslInsert created a new one. */
|
|
|
|
x->ele = NULL;
|
|
|
|
zslFreeNode(x);
|
|
|
|
return newnode;
|
|
|
|
}
|
|
|
|
|
2016-04-19 11:02:24 -04:00
|
|
|
int zslValueGteMin(double value, zrangespec *spec) {
|
2010-12-07 17:21:05 -05:00
|
|
|
return spec->minex ? (value > spec->min) : (value >= spec->min);
|
|
|
|
}
|
|
|
|
|
2014-05-12 14:38:17 -04:00
|
|
|
int zslValueLteMax(double value, zrangespec *spec) {
|
2010-12-07 17:21:05 -05:00
|
|
|
return spec->maxex ? (value < spec->max) : (value <= spec->max);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns if there is a part of the zset is in range. */
|
|
|
|
int zslIsInRange(zskiplist *zsl, zrangespec *range) {
|
|
|
|
zskiplistNode *x;
|
|
|
|
|
2011-01-17 05:10:30 -05:00
|
|
|
/* Test for ranges that will always be empty. */
|
|
|
|
if (range->min > range->max ||
|
|
|
|
(range->min == range->max && (range->minex || range->maxex)))
|
|
|
|
return 0;
|
2010-12-07 17:21:05 -05:00
|
|
|
x = zsl->tail;
|
2011-02-10 05:49:59 -05:00
|
|
|
if (x == NULL || !zslValueGteMin(x->score,range))
|
2010-12-07 17:21:05 -05:00
|
|
|
return 0;
|
|
|
|
x = zsl->header->level[0].forward;
|
2011-02-10 05:49:59 -05:00
|
|
|
if (x == NULL || !zslValueLteMax(x->score,range))
|
2010-12-07 17:21:05 -05:00
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the first node that is contained in the specified range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-17 08:30:12 -04:00
|
|
|
zskiplistNode *zslFirstInRange(zskiplist *zsl, zrangespec *range) {
|
2010-12-07 17:21:05 -05:00
|
|
|
zskiplistNode *x;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zslIsInRange(zsl,range)) return NULL;
|
2010-12-07 17:21:05 -05:00
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
/* Go forward while *OUT* of range. */
|
|
|
|
while (x->level[i].forward &&
|
2014-04-17 08:30:12 -04:00
|
|
|
!zslValueGteMin(x->level[i].forward->score,range))
|
2010-12-07 17:21:05 -05:00
|
|
|
x = x->level[i].forward;
|
|
|
|
}
|
|
|
|
|
2011-03-11 12:17:53 -05:00
|
|
|
/* This is an inner range, so the next node cannot be NULL. */
|
2010-12-07 17:21:05 -05:00
|
|
|
x = x->level[0].forward;
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(x != NULL);
|
2011-03-11 12:17:53 -05:00
|
|
|
|
|
|
|
/* Check if score <= max. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zslValueLteMax(x->score,range)) return NULL;
|
2010-12-07 17:21:05 -05:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the last node that is contained in the specified range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-17 08:30:12 -04:00
|
|
|
zskiplistNode *zslLastInRange(zskiplist *zsl, zrangespec *range) {
|
2010-12-07 17:21:05 -05:00
|
|
|
zskiplistNode *x;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zslIsInRange(zsl,range)) return NULL;
|
2010-12-07 17:21:05 -05:00
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
/* Go forward while *IN* range. */
|
|
|
|
while (x->level[i].forward &&
|
2014-04-17 08:30:12 -04:00
|
|
|
zslValueLteMax(x->level[i].forward->score,range))
|
2010-12-07 17:21:05 -05:00
|
|
|
x = x->level[i].forward;
|
|
|
|
}
|
|
|
|
|
2011-03-11 12:17:53 -05:00
|
|
|
/* This is an inner range, so this node cannot be NULL. */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(x != NULL);
|
2011-03-11 12:17:53 -05:00
|
|
|
|
|
|
|
/* Check if score >= min. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zslValueGteMin(x->score,range)) return NULL;
|
2010-12-07 17:21:05 -05:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
/* Delete all the elements with score between min and max from the skiplist.
|
2020-11-22 07:56:45 -05:00
|
|
|
* Both min and max can be inclusive or exclusive (see range->minex and
|
|
|
|
* range->maxex). When inclusive a score >= min && score <= max is deleted.
|
2010-06-21 18:07:48 -04:00
|
|
|
* Note that this function takes the reference to the hash table view of the
|
|
|
|
* sorted set, in order to remove the elements from the hash table too. */
|
2014-04-17 08:30:12 -04:00
|
|
|
unsigned long zslDeleteRangeByScore(zskiplist *zsl, zrangespec *range, dict *dict) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
|
|
|
|
unsigned long removed = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
2021-04-01 01:50:23 -04:00
|
|
|
while (x->level[i].forward &&
|
|
|
|
!zslValueGteMin(x->level[i].forward->score, range))
|
2010-10-13 15:43:58 -04:00
|
|
|
x = x->level[i].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
update[i] = x;
|
|
|
|
}
|
2010-10-13 15:43:58 -04:00
|
|
|
|
|
|
|
/* Current node is the last with score < or <= min. */
|
2010-08-03 13:21:16 -04:00
|
|
|
x = x->level[0].forward;
|
2010-10-13 15:43:58 -04:00
|
|
|
|
|
|
|
/* Delete nodes while in range. */
|
2021-04-01 01:50:23 -04:00
|
|
|
while (x && zslValueLteMax(x->score, range)) {
|
2010-08-03 13:21:16 -04:00
|
|
|
zskiplistNode *next = x->level[0].forward;
|
2010-08-03 14:49:53 -04:00
|
|
|
zslDeleteNode(zsl,x,update);
|
2015-08-04 03:20:55 -04:00
|
|
|
dictDelete(dict,x->ele);
|
|
|
|
zslFreeNode(x); /* Here is where x->ele is actually released. */
|
2010-06-21 18:07:48 -04:00
|
|
|
removed++;
|
|
|
|
x = next;
|
|
|
|
}
|
2010-10-13 15:43:58 -04:00
|
|
|
return removed;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2014-04-17 08:47:52 -04:00
|
|
|
unsigned long zslDeleteRangeByLex(zskiplist *zsl, zlexrangespec *range, dict *dict) {
|
|
|
|
zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
|
|
|
|
unsigned long removed = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
while (x->level[i].forward &&
|
2015-08-04 03:20:55 -04:00
|
|
|
!zslLexValueGteMin(x->level[i].forward->ele,range))
|
2014-04-17 08:47:52 -04:00
|
|
|
x = x->level[i].forward;
|
|
|
|
update[i] = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Current node is the last with score < or <= min. */
|
|
|
|
x = x->level[0].forward;
|
|
|
|
|
|
|
|
/* Delete nodes while in range. */
|
2015-08-04 03:20:55 -04:00
|
|
|
while (x && zslLexValueLteMax(x->ele,range)) {
|
2014-04-17 08:47:52 -04:00
|
|
|
zskiplistNode *next = x->level[0].forward;
|
|
|
|
zslDeleteNode(zsl,x,update);
|
2015-08-04 03:20:55 -04:00
|
|
|
dictDelete(dict,x->ele);
|
|
|
|
zslFreeNode(x); /* Here is where x->ele is actually released. */
|
2014-04-17 08:47:52 -04:00
|
|
|
removed++;
|
|
|
|
x = next;
|
|
|
|
}
|
|
|
|
return removed;
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
/* Delete all the elements with rank between start and end from the skiplist.
|
|
|
|
* Start and end are inclusive. Note that start and end need to be 1-based */
|
|
|
|
unsigned long zslDeleteRangeByRank(zskiplist *zsl, unsigned int start, unsigned int end, dict *dict) {
|
|
|
|
zskiplistNode *update[ZSKIPLIST_MAXLEVEL], *x;
|
|
|
|
unsigned long traversed = 0, removed = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
2010-08-03 13:21:16 -04:00
|
|
|
while (x->level[i].forward && (traversed + x->level[i].span) < start) {
|
|
|
|
traversed += x->level[i].span;
|
|
|
|
x = x->level[i].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
update[i] = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
traversed++;
|
2010-08-03 13:21:16 -04:00
|
|
|
x = x->level[0].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
while (x && traversed <= end) {
|
2010-08-03 13:21:16 -04:00
|
|
|
zskiplistNode *next = x->level[0].forward;
|
2010-08-03 14:49:53 -04:00
|
|
|
zslDeleteNode(zsl,x,update);
|
2015-08-04 03:20:55 -04:00
|
|
|
dictDelete(dict,x->ele);
|
2010-06-21 18:07:48 -04:00
|
|
|
zslFreeNode(x);
|
|
|
|
removed++;
|
|
|
|
traversed++;
|
|
|
|
x = next;
|
|
|
|
}
|
|
|
|
return removed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the rank for an element by both score and key.
|
|
|
|
* Returns 0 when the element cannot be found, rank otherwise.
|
|
|
|
* Note that the rank is 1-based due to the span of zsl->header to the
|
|
|
|
* first element. */
|
2015-08-04 03:20:55 -04:00
|
|
|
unsigned long zslGetRank(zskiplist *zsl, double score, sds ele) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zskiplistNode *x;
|
|
|
|
unsigned long rank = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
2010-08-03 13:21:16 -04:00
|
|
|
while (x->level[i].forward &&
|
|
|
|
(x->level[i].forward->score < score ||
|
|
|
|
(x->level[i].forward->score == score &&
|
2015-08-04 03:20:55 -04:00
|
|
|
sdscmp(x->level[i].forward->ele,ele) <= 0))) {
|
2010-08-03 13:21:16 -04:00
|
|
|
rank += x->level[i].span;
|
|
|
|
x = x->level[i].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* x might be equal to zsl->header, so test if obj is non-NULL */
|
2015-08-04 03:20:55 -04:00
|
|
|
if (x->ele && sdscmp(x->ele,ele) == 0) {
|
2010-06-21 18:07:48 -04:00
|
|
|
return rank;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finds an element by its rank. The rank argument needs to be 1-based. */
|
2010-12-09 04:37:35 -05:00
|
|
|
zskiplistNode* zslGetElementByRank(zskiplist *zsl, unsigned long rank) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zskiplistNode *x;
|
|
|
|
unsigned long traversed = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
2010-08-03 13:21:16 -04:00
|
|
|
while (x->level[i].forward && (traversed + x->level[i].span) <= rank)
|
2010-06-21 18:07:48 -04:00
|
|
|
{
|
2010-08-03 13:21:16 -04:00
|
|
|
traversed += x->level[i].span;
|
|
|
|
x = x->level[i].forward;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
if (traversed == rank) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-09-16 08:35:25 -04:00
|
|
|
/* Populate the rangespec according to the objects min and max. */
|
2010-10-13 15:58:21 -04:00
|
|
|
static int zslParseRange(robj *min, robj *max, zrangespec *spec) {
|
|
|
|
char *eptr;
|
2010-09-16 08:35:25 -04:00
|
|
|
spec->minex = spec->maxex = 0;
|
|
|
|
|
|
|
|
/* Parse the min-max interval. If one of the values is prefixed
|
|
|
|
* by the "(" character, it's considered "open". For instance
|
|
|
|
* ZRANGEBYSCORE zset (1.5 (2.5 will match min < x < max
|
|
|
|
* ZRANGEBYSCORE zset 1.5 2.5 will instead match min <= x <= max */
|
2015-07-26 09:28:00 -04:00
|
|
|
if (min->encoding == OBJ_ENCODING_INT) {
|
2010-09-16 08:35:25 -04:00
|
|
|
spec->min = (long)min->ptr;
|
|
|
|
} else {
|
|
|
|
if (((char*)min->ptr)[0] == '(') {
|
2010-10-13 15:58:21 -04:00
|
|
|
spec->min = strtod((char*)min->ptr+1,&eptr);
|
2015-07-26 17:17:55 -04:00
|
|
|
if (eptr[0] != '\0' || isnan(spec->min)) return C_ERR;
|
2010-09-16 08:35:25 -04:00
|
|
|
spec->minex = 1;
|
|
|
|
} else {
|
2010-10-13 15:58:21 -04:00
|
|
|
spec->min = strtod((char*)min->ptr,&eptr);
|
2015-07-26 17:17:55 -04:00
|
|
|
if (eptr[0] != '\0' || isnan(spec->min)) return C_ERR;
|
2010-09-16 08:35:25 -04:00
|
|
|
}
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
if (max->encoding == OBJ_ENCODING_INT) {
|
2010-09-16 08:35:25 -04:00
|
|
|
spec->max = (long)max->ptr;
|
|
|
|
} else {
|
|
|
|
if (((char*)max->ptr)[0] == '(') {
|
2010-10-13 15:58:21 -04:00
|
|
|
spec->max = strtod((char*)max->ptr+1,&eptr);
|
2015-07-26 17:17:55 -04:00
|
|
|
if (eptr[0] != '\0' || isnan(spec->max)) return C_ERR;
|
2010-09-16 08:35:25 -04:00
|
|
|
spec->maxex = 1;
|
|
|
|
} else {
|
2010-10-13 15:58:21 -04:00
|
|
|
spec->max = strtod((char*)max->ptr,&eptr);
|
2015-07-26 17:17:55 -04:00
|
|
|
if (eptr[0] != '\0' || isnan(spec->max)) return C_ERR;
|
2010-09-16 08:35:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2010-09-16 08:35:25 -04:00
|
|
|
}
|
|
|
|
|
2012-02-04 02:11:31 -05:00
|
|
|
/* ------------------------ Lexicographic ranges ---------------------------- */
|
|
|
|
|
|
|
|
/* Parse max or min argument of ZRANGEBYLEX.
|
|
|
|
* (foo means foo (open interval)
|
|
|
|
* [foo means foo (closed interval)
|
|
|
|
* - means the min string possible
|
|
|
|
* + means the max string possible
|
|
|
|
*
|
|
|
|
* If the string is valid the *dest pointer is set to the redis object
|
2018-07-01 01:24:50 -04:00
|
|
|
* that will be used for the comparison, and ex will be set to 0 or 1
|
2015-07-26 17:17:55 -04:00
|
|
|
* respectively if the item is exclusive or inclusive. C_OK will be
|
2012-02-04 02:11:31 -05:00
|
|
|
* returned.
|
|
|
|
*
|
2015-07-26 17:17:55 -04:00
|
|
|
* If the string is not a valid range C_ERR is returned, and the value
|
2012-02-04 02:11:31 -05:00
|
|
|
* of *dest and *ex is undefined. */
|
2015-08-04 03:20:55 -04:00
|
|
|
int zslParseLexRangeItem(robj *item, sds *dest, int *ex) {
|
2012-02-04 02:11:31 -05:00
|
|
|
char *c = item->ptr;
|
|
|
|
|
|
|
|
switch(c[0]) {
|
|
|
|
case '+':
|
2015-07-26 17:17:55 -04:00
|
|
|
if (c[1] != '\0') return C_ERR;
|
2018-03-06 07:34:44 -05:00
|
|
|
*ex = 1;
|
2012-02-04 02:11:31 -05:00
|
|
|
*dest = shared.maxstring;
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2012-02-04 02:11:31 -05:00
|
|
|
case '-':
|
2015-07-26 17:17:55 -04:00
|
|
|
if (c[1] != '\0') return C_ERR;
|
2018-03-06 07:34:44 -05:00
|
|
|
*ex = 1;
|
2012-02-04 02:11:31 -05:00
|
|
|
*dest = shared.minstring;
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2012-02-04 02:11:31 -05:00
|
|
|
case '(':
|
|
|
|
*ex = 1;
|
2015-08-04 03:20:55 -04:00
|
|
|
*dest = sdsnewlen(c+1,sdslen(c)-1);
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2012-02-04 02:11:31 -05:00
|
|
|
case '[':
|
|
|
|
*ex = 0;
|
2015-08-04 03:20:55 -04:00
|
|
|
*dest = sdsnewlen(c+1,sdslen(c)-1);
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2012-02-04 02:11:31 -05:00
|
|
|
default:
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_ERR;
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-10 08:39:33 -04:00
|
|
|
/* Free a lex range structure, must be called only after zslParseLexRange()
|
2015-08-04 03:20:55 -04:00
|
|
|
* populated the structure with success (C_OK returned). */
|
|
|
|
void zslFreeLexRange(zlexrangespec *spec) {
|
|
|
|
if (spec->min != shared.minstring &&
|
|
|
|
spec->min != shared.maxstring) sdsfree(spec->min);
|
|
|
|
if (spec->max != shared.minstring &&
|
|
|
|
spec->max != shared.maxstring) sdsfree(spec->max);
|
|
|
|
}
|
|
|
|
|
2016-04-21 03:27:13 -04:00
|
|
|
/* Populate the lex rangespec according to the objects min and max.
|
2014-04-16 17:55:58 -04:00
|
|
|
*
|
2015-07-26 17:17:55 -04:00
|
|
|
* Return C_OK on success. On error C_ERR is returned.
|
2014-04-16 17:55:58 -04:00
|
|
|
* When OK is returned the structure must be freed with zslFreeLexRange(),
|
|
|
|
* otherwise no release is needed. */
|
2016-04-21 03:27:13 -04:00
|
|
|
int zslParseLexRange(robj *min, robj *max, zlexrangespec *spec) {
|
2014-04-16 17:55:58 -04:00
|
|
|
/* The range can't be valid if objects are integer encoded.
|
|
|
|
* Every item must start with ( or [. */
|
2015-07-26 09:28:00 -04:00
|
|
|
if (min->encoding == OBJ_ENCODING_INT ||
|
2015-07-26 17:17:55 -04:00
|
|
|
max->encoding == OBJ_ENCODING_INT) return C_ERR;
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
spec->min = spec->max = NULL;
|
2015-07-26 17:17:55 -04:00
|
|
|
if (zslParseLexRangeItem(min, &spec->min, &spec->minex) == C_ERR ||
|
|
|
|
zslParseLexRangeItem(max, &spec->max, &spec->maxex) == C_ERR) {
|
2015-08-04 03:20:55 -04:00
|
|
|
zslFreeLexRange(spec);
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_ERR;
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* This is just a wrapper to sdscmp() that is able to
|
2012-02-04 02:11:31 -05:00
|
|
|
* handle shared.minstring and shared.maxstring as the equivalent of
|
|
|
|
* -inf and +inf for strings */
|
2015-08-04 03:20:55 -04:00
|
|
|
int sdscmplex(sds a, sds b) {
|
|
|
|
if (a == b) return 0;
|
2012-02-04 02:11:31 -05:00
|
|
|
if (a == shared.minstring || b == shared.maxstring) return -1;
|
|
|
|
if (a == shared.maxstring || b == shared.minstring) return 1;
|
2015-08-04 03:20:55 -04:00
|
|
|
return sdscmp(a,b);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
2016-04-21 05:17:00 -04:00
|
|
|
int zslLexValueGteMin(sds value, zlexrangespec *spec) {
|
2012-02-04 02:11:31 -05:00
|
|
|
return spec->minex ?
|
2015-08-04 03:20:55 -04:00
|
|
|
(sdscmplex(value,spec->min) > 0) :
|
|
|
|
(sdscmplex(value,spec->min) >= 0);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
2016-04-21 05:17:00 -04:00
|
|
|
int zslLexValueLteMax(sds value, zlexrangespec *spec) {
|
2012-02-04 02:11:31 -05:00
|
|
|
return spec->maxex ?
|
2015-08-04 03:20:55 -04:00
|
|
|
(sdscmplex(value,spec->max) < 0) :
|
|
|
|
(sdscmplex(value,spec->max) <= 0);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns if there is a part of the zset is in the lex range. */
|
|
|
|
int zslIsInLexRange(zskiplist *zsl, zlexrangespec *range) {
|
|
|
|
zskiplistNode *x;
|
|
|
|
|
|
|
|
/* Test for ranges that will always be empty. */
|
2018-03-06 07:34:44 -05:00
|
|
|
int cmp = sdscmplex(range->min,range->max);
|
|
|
|
if (cmp > 0 || (cmp == 0 && (range->minex || range->maxex)))
|
2012-02-04 02:11:31 -05:00
|
|
|
return 0;
|
|
|
|
x = zsl->tail;
|
2015-08-04 03:20:55 -04:00
|
|
|
if (x == NULL || !zslLexValueGteMin(x->ele,range))
|
2012-02-04 02:11:31 -05:00
|
|
|
return 0;
|
|
|
|
x = zsl->header->level[0].forward;
|
2015-08-04 03:20:55 -04:00
|
|
|
if (x == NULL || !zslLexValueLteMax(x->ele,range))
|
2012-02-04 02:11:31 -05:00
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the first node that is contained in the specified lex range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-17 08:30:12 -04:00
|
|
|
zskiplistNode *zslFirstInLexRange(zskiplist *zsl, zlexrangespec *range) {
|
2012-02-04 02:11:31 -05:00
|
|
|
zskiplistNode *x;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zslIsInLexRange(zsl,range)) return NULL;
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
/* Go forward while *OUT* of range. */
|
|
|
|
while (x->level[i].forward &&
|
2015-08-04 03:20:55 -04:00
|
|
|
!zslLexValueGteMin(x->level[i].forward->ele,range))
|
2012-02-04 02:11:31 -05:00
|
|
|
x = x->level[i].forward;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is an inner range, so the next node cannot be NULL. */
|
|
|
|
x = x->level[0].forward;
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(x != NULL);
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
/* Check if score <= max. */
|
2015-08-04 03:20:55 -04:00
|
|
|
if (!zslLexValueLteMax(x->ele,range)) return NULL;
|
2012-02-04 02:11:31 -05:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the last node that is contained in the specified range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-17 08:30:12 -04:00
|
|
|
zskiplistNode *zslLastInLexRange(zskiplist *zsl, zlexrangespec *range) {
|
2012-02-04 02:11:31 -05:00
|
|
|
zskiplistNode *x;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zslIsInLexRange(zsl,range)) return NULL;
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
x = zsl->header;
|
|
|
|
for (i = zsl->level-1; i >= 0; i--) {
|
|
|
|
/* Go forward while *IN* range. */
|
|
|
|
while (x->level[i].forward &&
|
2015-08-04 03:20:55 -04:00
|
|
|
zslLexValueLteMax(x->level[i].forward->ele,range))
|
2012-02-04 02:11:31 -05:00
|
|
|
x = x->level[i].forward;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is an inner range, so this node cannot be NULL. */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(x != NULL);
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
/* Check if score >= min. */
|
2015-08-04 03:20:55 -04:00
|
|
|
if (!zslLexValueGteMin(x->ele,range)) return NULL;
|
2012-02-04 02:11:31 -05:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2011-03-08 10:44:22 -05:00
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
* Ziplist-backed sorted set API
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
2021-01-29 03:47:28 -05:00
|
|
|
double zzlStrtod(unsigned char *vstr, unsigned int vlen) {
|
|
|
|
char buf[128];
|
|
|
|
if (vlen > sizeof(buf))
|
|
|
|
vlen = sizeof(buf);
|
|
|
|
memcpy(buf,vstr,vlen);
|
|
|
|
buf[vlen] = '\0';
|
|
|
|
return strtod(buf,NULL);
|
|
|
|
}
|
|
|
|
|
2011-03-08 10:44:22 -05:00
|
|
|
double zzlGetScore(unsigned char *sptr) {
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
|
|
|
double score;
|
|
|
|
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(sptr != NULL);
|
|
|
|
serverAssert(ziplistGet(sptr,&vstr,&vlen,&vlong));
|
2011-03-08 10:44:22 -05:00
|
|
|
|
|
|
|
if (vstr) {
|
2021-01-29 03:47:28 -05:00
|
|
|
score = zzlStrtod(vstr,vlen);
|
2011-03-08 10:44:22 -05:00
|
|
|
} else {
|
|
|
|
score = vlong;
|
|
|
|
}
|
|
|
|
|
|
|
|
return score;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* Return a ziplist element as an SDS string. */
|
|
|
|
sds ziplistGetObject(unsigned char *sptr) {
|
2012-02-04 02:11:31 -05:00
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
|
|
|
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(sptr != NULL);
|
|
|
|
serverAssert(ziplistGet(sptr,&vstr,&vlen,&vlong));
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
if (vstr) {
|
2015-08-04 03:20:55 -04:00
|
|
|
return sdsnewlen((char*)vstr,vlen);
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2015-08-04 03:20:55 -04:00
|
|
|
return sdsfromlonglong(vlong);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-08 10:44:22 -05:00
|
|
|
/* Compare element in sorted set with given element. */
|
|
|
|
int zzlCompareElements(unsigned char *eptr, unsigned char *cstr, unsigned int clen) {
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
|
|
|
unsigned char vbuf[32];
|
|
|
|
int minlen, cmp;
|
|
|
|
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(ziplistGet(eptr,&vstr,&vlen,&vlong));
|
2011-03-08 10:44:22 -05:00
|
|
|
if (vstr == NULL) {
|
|
|
|
/* Store string representation of long long in buf. */
|
|
|
|
vlen = ll2string((char*)vbuf,sizeof(vbuf),vlong);
|
|
|
|
vstr = vbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
minlen = (vlen < clen) ? vlen : clen;
|
|
|
|
cmp = memcmp(vstr,cstr,minlen);
|
|
|
|
if (cmp == 0) return vlen-clen;
|
|
|
|
return cmp;
|
|
|
|
}
|
|
|
|
|
2011-03-10 10:17:14 -05:00
|
|
|
unsigned int zzlLength(unsigned char *zl) {
|
2011-03-08 11:11:15 -05:00
|
|
|
return ziplistLen(zl)/2;
|
|
|
|
}
|
|
|
|
|
2011-03-09 05:06:25 -05:00
|
|
|
/* Move to next entry based on the values in eptr and sptr. Both are set to
|
|
|
|
* NULL when there is no next entry. */
|
|
|
|
void zzlNext(unsigned char *zl, unsigned char **eptr, unsigned char **sptr) {
|
|
|
|
unsigned char *_eptr, *_sptr;
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(*eptr != NULL && *sptr != NULL);
|
2011-03-09 05:06:25 -05:00
|
|
|
|
|
|
|
_eptr = ziplistNext(zl,*sptr);
|
|
|
|
if (_eptr != NULL) {
|
|
|
|
_sptr = ziplistNext(zl,_eptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(_sptr != NULL);
|
2011-03-09 05:06:25 -05:00
|
|
|
} else {
|
|
|
|
/* No next entry. */
|
|
|
|
_sptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*eptr = _eptr;
|
|
|
|
*sptr = _sptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to the previous entry based on the values in eptr and sptr. Both are
|
2021-06-10 08:39:33 -04:00
|
|
|
* set to NULL when there is no prev entry. */
|
2011-03-09 05:06:25 -05:00
|
|
|
void zzlPrev(unsigned char *zl, unsigned char **eptr, unsigned char **sptr) {
|
|
|
|
unsigned char *_eptr, *_sptr;
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(*eptr != NULL && *sptr != NULL);
|
2011-03-09 05:06:25 -05:00
|
|
|
|
|
|
|
_sptr = ziplistPrev(zl,*eptr);
|
|
|
|
if (_sptr != NULL) {
|
|
|
|
_eptr = ziplistPrev(zl,_sptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(_eptr != NULL);
|
2011-03-09 05:06:25 -05:00
|
|
|
} else {
|
|
|
|
/* No previous entry. */
|
|
|
|
_eptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*eptr = _eptr;
|
|
|
|
*sptr = _sptr;
|
|
|
|
}
|
|
|
|
|
2011-03-08 16:23:56 -05:00
|
|
|
/* Returns if there is a part of the zset is in range. Should only be used
|
|
|
|
* internally by zzlFirstInRange and zzlLastInRange. */
|
|
|
|
int zzlIsInRange(unsigned char *zl, zrangespec *range) {
|
|
|
|
unsigned char *p;
|
|
|
|
double score;
|
|
|
|
|
|
|
|
/* Test for ranges that will always be empty. */
|
|
|
|
if (range->min > range->max ||
|
|
|
|
(range->min == range->max && (range->minex || range->maxex)))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = ziplistIndex(zl,-1); /* Last score. */
|
2012-02-22 03:52:10 -05:00
|
|
|
if (p == NULL) return 0; /* Empty sorted set */
|
2011-03-08 16:23:56 -05:00
|
|
|
score = zzlGetScore(p);
|
|
|
|
if (!zslValueGteMin(score,range))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = ziplistIndex(zl,1); /* First score. */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(p != NULL);
|
2011-03-08 16:23:56 -05:00
|
|
|
score = zzlGetScore(p);
|
|
|
|
if (!zslValueLteMax(score,range))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find pointer to the first element contained in the specified range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-17 08:30:12 -04:00
|
|
|
unsigned char *zzlFirstInRange(unsigned char *zl, zrangespec *range) {
|
2011-03-08 16:23:56 -05:00
|
|
|
unsigned char *eptr = ziplistIndex(zl,0), *sptr;
|
|
|
|
double score;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zzlIsInRange(zl,range)) return NULL;
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
while (eptr != NULL) {
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(sptr != NULL);
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
score = zzlGetScore(sptr);
|
2014-04-17 08:30:12 -04:00
|
|
|
if (zslValueGteMin(score,range)) {
|
2011-03-11 12:17:53 -05:00
|
|
|
/* Check if score <= max. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (zslValueLteMax(score,range))
|
2011-03-11 12:17:53 -05:00
|
|
|
return eptr;
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
/* Move to next element. */
|
|
|
|
eptr = ziplistNext(zl,sptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find pointer to the last element contained in the specified range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-17 08:30:12 -04:00
|
|
|
unsigned char *zzlLastInRange(unsigned char *zl, zrangespec *range) {
|
2011-03-08 16:23:56 -05:00
|
|
|
unsigned char *eptr = ziplistIndex(zl,-2), *sptr;
|
|
|
|
double score;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (!zzlIsInRange(zl,range)) return NULL;
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
while (eptr != NULL) {
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(sptr != NULL);
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
score = zzlGetScore(sptr);
|
2014-04-17 08:30:12 -04:00
|
|
|
if (zslValueLteMax(score,range)) {
|
2011-03-11 12:17:53 -05:00
|
|
|
/* Check if score >= min. */
|
2014-04-17 08:30:12 -04:00
|
|
|
if (zslValueGteMin(score,range))
|
2011-03-11 12:17:53 -05:00
|
|
|
return eptr;
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
/* Move to previous element by moving to the score of previous element.
|
|
|
|
* When this returns NULL, we know there also is no element. */
|
|
|
|
sptr = ziplistPrev(zl,eptr);
|
|
|
|
if (sptr != NULL)
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert((eptr = ziplistPrev(zl,sptr)) != NULL);
|
2011-03-08 16:23:56 -05:00
|
|
|
else
|
|
|
|
eptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-04-21 05:17:00 -04:00
|
|
|
int zzlLexValueGteMin(unsigned char *p, zlexrangespec *spec) {
|
2015-08-04 03:20:55 -04:00
|
|
|
sds value = ziplistGetObject(p);
|
2012-02-04 02:11:31 -05:00
|
|
|
int res = zslLexValueGteMin(value,spec);
|
2015-08-04 03:20:55 -04:00
|
|
|
sdsfree(value);
|
2012-02-04 02:11:31 -05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-04-21 05:17:00 -04:00
|
|
|
int zzlLexValueLteMax(unsigned char *p, zlexrangespec *spec) {
|
2015-08-04 03:20:55 -04:00
|
|
|
sds value = ziplistGetObject(p);
|
2012-02-04 02:11:31 -05:00
|
|
|
int res = zslLexValueLteMax(value,spec);
|
2015-08-04 03:20:55 -04:00
|
|
|
sdsfree(value);
|
2012-02-04 02:11:31 -05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns if there is a part of the zset is in range. Should only be used
|
|
|
|
* internally by zzlFirstInRange and zzlLastInRange. */
|
|
|
|
int zzlIsInLexRange(unsigned char *zl, zlexrangespec *range) {
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
/* Test for ranges that will always be empty. */
|
2018-03-06 07:34:44 -05:00
|
|
|
int cmp = sdscmplex(range->min,range->max);
|
|
|
|
if (cmp > 0 || (cmp == 0 && (range->minex || range->maxex)))
|
2012-02-04 02:11:31 -05:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = ziplistIndex(zl,-2); /* Last element. */
|
|
|
|
if (p == NULL) return 0;
|
|
|
|
if (!zzlLexValueGteMin(p,range))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = ziplistIndex(zl,0); /* First element. */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(p != NULL);
|
2012-02-04 02:11:31 -05:00
|
|
|
if (!zzlLexValueLteMax(p,range))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find pointer to the first element contained in the specified lex range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-16 17:55:58 -04:00
|
|
|
unsigned char *zzlFirstInLexRange(unsigned char *zl, zlexrangespec *range) {
|
2012-02-04 02:11:31 -05:00
|
|
|
unsigned char *eptr = ziplistIndex(zl,0), *sptr;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-16 17:55:58 -04:00
|
|
|
if (!zzlIsInLexRange(zl,range)) return NULL;
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
while (eptr != NULL) {
|
2014-04-16 17:55:58 -04:00
|
|
|
if (zzlLexValueGteMin(eptr,range)) {
|
2012-02-04 02:11:31 -05:00
|
|
|
/* Check if score <= max. */
|
2014-04-16 17:55:58 -04:00
|
|
|
if (zzlLexValueLteMax(eptr,range))
|
2012-02-04 02:11:31 -05:00
|
|
|
return eptr;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to next element. */
|
|
|
|
sptr = ziplistNext(zl,eptr); /* This element score. Skip it. */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(sptr != NULL);
|
2012-02-04 02:11:31 -05:00
|
|
|
eptr = ziplistNext(zl,sptr); /* Next element. */
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find pointer to the last element contained in the specified lex range.
|
|
|
|
* Returns NULL when no element is contained in the range. */
|
2014-04-16 17:55:58 -04:00
|
|
|
unsigned char *zzlLastInLexRange(unsigned char *zl, zlexrangespec *range) {
|
2012-02-04 02:11:31 -05:00
|
|
|
unsigned char *eptr = ziplistIndex(zl,-2), *sptr;
|
|
|
|
|
|
|
|
/* If everything is out of range, return early. */
|
2014-04-16 17:55:58 -04:00
|
|
|
if (!zzlIsInLexRange(zl,range)) return NULL;
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
while (eptr != NULL) {
|
2014-04-16 17:55:58 -04:00
|
|
|
if (zzlLexValueLteMax(eptr,range)) {
|
2012-02-04 02:11:31 -05:00
|
|
|
/* Check if score >= min. */
|
2014-04-16 17:55:58 -04:00
|
|
|
if (zzlLexValueGteMin(eptr,range))
|
2012-02-04 02:11:31 -05:00
|
|
|
return eptr;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to previous element by moving to the score of previous element.
|
|
|
|
* When this returns NULL, we know there also is no element. */
|
|
|
|
sptr = ziplistPrev(zl,eptr);
|
|
|
|
if (sptr != NULL)
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert((eptr = ziplistPrev(zl,sptr)) != NULL);
|
2012-02-04 02:11:31 -05:00
|
|
|
else
|
|
|
|
eptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
unsigned char *zzlFind(unsigned char *zl, sds ele, double *score) {
|
2011-03-08 10:44:22 -05:00
|
|
|
unsigned char *eptr = ziplistIndex(zl,0), *sptr;
|
|
|
|
|
|
|
|
while (eptr != NULL) {
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2015-08-04 03:20:55 -04:00
|
|
|
serverAssert(sptr != NULL);
|
2011-03-08 10:44:22 -05:00
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
if (ziplistCompare(eptr,(unsigned char*)ele,sdslen(ele))) {
|
2011-03-08 10:44:22 -05:00
|
|
|
/* Matching element, pull out score. */
|
2011-03-08 11:11:15 -05:00
|
|
|
if (score != NULL) *score = zzlGetScore(sptr);
|
2011-03-08 10:44:22 -05:00
|
|
|
return eptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to next element. */
|
|
|
|
eptr = ziplistNext(zl,sptr);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete (element,score) pair from ziplist. Use local copy of eptr because we
|
|
|
|
* don't want to modify the one given as argument. */
|
2011-03-11 11:06:07 -05:00
|
|
|
unsigned char *zzlDelete(unsigned char *zl, unsigned char *eptr) {
|
2011-03-08 10:44:22 -05:00
|
|
|
unsigned char *p = eptr;
|
|
|
|
|
|
|
|
/* TODO: add function to ziplist API to delete N elements from offset. */
|
|
|
|
zl = ziplistDelete(zl,&p);
|
|
|
|
zl = ziplistDelete(zl,&p);
|
2011-03-11 11:06:07 -05:00
|
|
|
return zl;
|
2011-03-08 10:44:22 -05:00
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
unsigned char *zzlInsertAt(unsigned char *zl, unsigned char *eptr, sds ele, double score) {
|
2011-03-08 10:44:22 -05:00
|
|
|
unsigned char *sptr;
|
|
|
|
char scorebuf[128];
|
|
|
|
int scorelen;
|
2011-03-13 13:15:57 -04:00
|
|
|
size_t offset;
|
2011-03-08 10:44:22 -05:00
|
|
|
|
|
|
|
scorelen = d2string(scorebuf,sizeof(scorebuf),score);
|
|
|
|
if (eptr == NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
zl = ziplistPush(zl,(unsigned char*)ele,sdslen(ele),ZIPLIST_TAIL);
|
2011-03-08 10:44:22 -05:00
|
|
|
zl = ziplistPush(zl,(unsigned char*)scorebuf,scorelen,ZIPLIST_TAIL);
|
|
|
|
} else {
|
|
|
|
/* Keep offset relative to zl, as it might be re-allocated. */
|
|
|
|
offset = eptr-zl;
|
2015-08-04 03:20:55 -04:00
|
|
|
zl = ziplistInsert(zl,eptr,(unsigned char*)ele,sdslen(ele));
|
2011-03-08 10:44:22 -05:00
|
|
|
eptr = zl+offset;
|
|
|
|
|
|
|
|
/* Insert score after the element. */
|
2015-08-04 03:20:55 -04:00
|
|
|
serverAssert((sptr = ziplistNext(zl,eptr)) != NULL);
|
2011-03-08 10:44:22 -05:00
|
|
|
zl = ziplistInsert(zl,sptr,(unsigned char*)scorebuf,scorelen);
|
|
|
|
}
|
2011-03-11 11:06:07 -05:00
|
|
|
return zl;
|
2011-03-08 10:44:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Insert (element,score) pair in ziplist. This function assumes the element is
|
|
|
|
* not yet present in the list. */
|
2015-08-04 03:20:55 -04:00
|
|
|
unsigned char *zzlInsert(unsigned char *zl, sds ele, double score) {
|
2011-03-08 10:44:22 -05:00
|
|
|
unsigned char *eptr = ziplistIndex(zl,0), *sptr;
|
|
|
|
double s;
|
|
|
|
|
|
|
|
while (eptr != NULL) {
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2015-08-04 03:20:55 -04:00
|
|
|
serverAssert(sptr != NULL);
|
2011-03-08 10:44:22 -05:00
|
|
|
s = zzlGetScore(sptr);
|
|
|
|
|
|
|
|
if (s > score) {
|
|
|
|
/* First element with score larger than score for element to be
|
|
|
|
* inserted. This means we should take its spot in the list to
|
|
|
|
* maintain ordering. */
|
2011-03-11 11:06:07 -05:00
|
|
|
zl = zzlInsertAt(zl,eptr,ele,score);
|
2011-03-08 10:44:22 -05:00
|
|
|
break;
|
2011-03-08 15:36:43 -05:00
|
|
|
} else if (s == score) {
|
|
|
|
/* Ensure lexicographical ordering for elements. */
|
2015-08-04 03:20:55 -04:00
|
|
|
if (zzlCompareElements(eptr,(unsigned char*)ele,sdslen(ele)) > 0) {
|
2011-03-11 11:06:07 -05:00
|
|
|
zl = zzlInsertAt(zl,eptr,ele,score);
|
2011-03-08 15:36:43 -05:00
|
|
|
break;
|
|
|
|
}
|
2011-03-08 10:44:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to next element. */
|
|
|
|
eptr = ziplistNext(zl,sptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Push on tail of list when it was not yet inserted. */
|
2011-03-08 15:36:43 -05:00
|
|
|
if (eptr == NULL)
|
2011-03-11 11:06:07 -05:00
|
|
|
zl = zzlInsertAt(zl,NULL,ele,score);
|
|
|
|
return zl;
|
2011-03-08 10:44:22 -05:00
|
|
|
}
|
2010-09-16 08:35:25 -04:00
|
|
|
|
2014-04-17 08:30:12 -04:00
|
|
|
unsigned char *zzlDeleteRangeByScore(unsigned char *zl, zrangespec *range, unsigned long *deleted) {
|
2011-03-08 16:23:56 -05:00
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
double score;
|
2011-03-11 11:06:07 -05:00
|
|
|
unsigned long num = 0;
|
2011-03-08 16:23:56 -05:00
|
|
|
|
2011-03-11 11:06:07 -05:00
|
|
|
if (deleted != NULL) *deleted = 0;
|
2011-03-08 16:23:56 -05:00
|
|
|
|
2011-03-11 11:06:07 -05:00
|
|
|
eptr = zzlFirstInRange(zl,range);
|
|
|
|
if (eptr == NULL) return zl;
|
2011-03-08 16:23:56 -05:00
|
|
|
|
|
|
|
/* When the tail of the ziplist is deleted, eptr will point to the sentinel
|
|
|
|
* byte and ziplistNext will return NULL. */
|
|
|
|
while ((sptr = ziplistNext(zl,eptr)) != NULL) {
|
|
|
|
score = zzlGetScore(sptr);
|
2014-04-17 08:30:12 -04:00
|
|
|
if (zslValueLteMax(score,range)) {
|
2011-03-08 16:23:56 -05:00
|
|
|
/* Delete both the element and the score. */
|
|
|
|
zl = ziplistDelete(zl,&eptr);
|
|
|
|
zl = ziplistDelete(zl,&eptr);
|
2011-03-11 11:06:07 -05:00
|
|
|
num++;
|
2011-03-08 16:23:56 -05:00
|
|
|
} else {
|
|
|
|
/* No longer in range. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-11 11:06:07 -05:00
|
|
|
if (deleted != NULL) *deleted = num;
|
|
|
|
return zl;
|
2011-03-08 16:23:56 -05:00
|
|
|
}
|
|
|
|
|
2014-04-17 08:47:52 -04:00
|
|
|
unsigned char *zzlDeleteRangeByLex(unsigned char *zl, zlexrangespec *range, unsigned long *deleted) {
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
unsigned long num = 0;
|
|
|
|
|
|
|
|
if (deleted != NULL) *deleted = 0;
|
|
|
|
|
|
|
|
eptr = zzlFirstInLexRange(zl,range);
|
|
|
|
if (eptr == NULL) return zl;
|
|
|
|
|
|
|
|
/* When the tail of the ziplist is deleted, eptr will point to the sentinel
|
|
|
|
* byte and ziplistNext will return NULL. */
|
|
|
|
while ((sptr = ziplistNext(zl,eptr)) != NULL) {
|
|
|
|
if (zzlLexValueLteMax(eptr,range)) {
|
|
|
|
/* Delete both the element and the score. */
|
|
|
|
zl = ziplistDelete(zl,&eptr);
|
|
|
|
zl = ziplistDelete(zl,&eptr);
|
|
|
|
num++;
|
|
|
|
} else {
|
|
|
|
/* No longer in range. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deleted != NULL) *deleted = num;
|
|
|
|
return zl;
|
|
|
|
}
|
|
|
|
|
2011-03-09 04:30:55 -05:00
|
|
|
/* Delete all the elements with rank between start and end from the skiplist.
|
|
|
|
* Start and end are inclusive. Note that start and end need to be 1-based */
|
2011-03-11 11:06:07 -05:00
|
|
|
unsigned char *zzlDeleteRangeByRank(unsigned char *zl, unsigned int start, unsigned int end, unsigned long *deleted) {
|
2011-03-09 04:30:55 -05:00
|
|
|
unsigned int num = (end-start)+1;
|
2011-03-11 11:06:07 -05:00
|
|
|
if (deleted) *deleted = num;
|
|
|
|
zl = ziplistDeleteRange(zl,2*(start-1),2*num);
|
|
|
|
return zl;
|
2011-03-09 04:30:55 -05:00
|
|
|
}
|
|
|
|
|
2011-03-08 18:00:19 -05:00
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
* Common sorted set API
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
2017-12-08 02:37:08 -05:00
|
|
|
unsigned long zsetLength(const robj *zobj) {
|
|
|
|
unsigned long length = 0;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-03-10 10:17:14 -05:00
|
|
|
length = zzlLength(zobj->ptr);
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2016-06-20 16:08:06 -04:00
|
|
|
length = ((const zset*)zobj->ptr)->zsl->length;
|
2011-03-08 18:00:19 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-08 18:00:19 -05:00
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2011-03-10 11:50:13 -05:00
|
|
|
void zsetConvert(robj *zobj, int encoding) {
|
2011-03-09 10:13:06 -05:00
|
|
|
zset *zs;
|
|
|
|
zskiplistNode *node, *next;
|
2015-08-04 03:20:55 -04:00
|
|
|
sds ele;
|
2011-03-09 10:13:06 -05:00
|
|
|
double score;
|
|
|
|
|
|
|
|
if (zobj->encoding == encoding) return;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-03-09 10:13:06 -05:00
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (encoding != OBJ_ENCODING_SKIPLIST)
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown target encoding");
|
2011-03-09 10:13:06 -05:00
|
|
|
|
|
|
|
zs = zmalloc(sizeof(*zs));
|
|
|
|
zs->dict = dictCreate(&zsetDictType,NULL);
|
|
|
|
zs->zsl = zslCreate();
|
|
|
|
|
|
|
|
eptr = ziplistIndex(zl,0);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(NULL,zobj,eptr != NULL);
|
2011-03-09 10:13:06 -05:00
|
|
|
sptr = ziplistNext(zl,eptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(NULL,zobj,sptr != NULL);
|
2011-03-09 10:13:06 -05:00
|
|
|
|
|
|
|
while (eptr != NULL) {
|
|
|
|
score = zzlGetScore(sptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(NULL,zobj,ziplistGet(eptr,&vstr,&vlen,&vlong));
|
2011-03-09 10:13:06 -05:00
|
|
|
if (vstr == NULL)
|
2015-08-04 03:20:55 -04:00
|
|
|
ele = sdsfromlonglong(vlong);
|
2011-03-09 10:13:06 -05:00
|
|
|
else
|
2015-08-04 03:20:55 -04:00
|
|
|
ele = sdsnewlen((char*)vstr,vlen);
|
2011-03-09 10:13:06 -05:00
|
|
|
|
|
|
|
node = zslInsert(zs->zsl,score,ele);
|
2015-08-04 03:20:55 -04:00
|
|
|
serverAssert(dictAdd(zs->dict,ele,&node->score) == DICT_OK);
|
2011-03-09 10:13:06 -05:00
|
|
|
zzlNext(zl,&eptr,&sptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
zfree(zobj->ptr);
|
|
|
|
zobj->ptr = zs;
|
2015-07-26 09:28:00 -04:00
|
|
|
zobj->encoding = OBJ_ENCODING_SKIPLIST;
|
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-03-09 10:13:06 -05:00
|
|
|
unsigned char *zl = ziplistNew();
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (encoding != OBJ_ENCODING_ZIPLIST)
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown target encoding");
|
2011-03-09 10:13:06 -05:00
|
|
|
|
|
|
|
/* Approach similar to zslFree(), since we want to free the skiplist at
|
|
|
|
* the same time as creating the ziplist. */
|
|
|
|
zs = zobj->ptr;
|
|
|
|
dictRelease(zs->dict);
|
|
|
|
node = zs->zsl->header->level[0].forward;
|
|
|
|
zfree(zs->zsl->header);
|
|
|
|
zfree(zs->zsl);
|
|
|
|
|
|
|
|
while (node) {
|
2015-08-04 03:20:55 -04:00
|
|
|
zl = zzlInsertAt(zl,NULL,node->ele,node->score);
|
2011-03-09 10:13:06 -05:00
|
|
|
next = node->level[0].forward;
|
|
|
|
zslFreeNode(node);
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
zfree(zs);
|
2011-03-11 11:06:07 -05:00
|
|
|
zobj->ptr = zl;
|
2015-07-26 09:28:00 -04:00
|
|
|
zobj->encoding = OBJ_ENCODING_ZIPLIST;
|
2011-03-09 10:13:06 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-09 10:13:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-18 04:24:11 -05:00
|
|
|
/* Convert the sorted set object into a ziplist if it is not already a ziplist
|
|
|
|
* and if the number of elements and the maximum element size is within the
|
|
|
|
* expected ranges. */
|
|
|
|
void zsetConvertToZiplistIfNeeded(robj *zobj, size_t maxelelen) {
|
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) return;
|
|
|
|
zset *zset = zobj->ptr;
|
|
|
|
|
|
|
|
if (zset->zsl->length <= server.zset_max_ziplist_entries &&
|
|
|
|
maxelelen <= server.zset_max_ziplist_value)
|
|
|
|
zsetConvert(zobj,OBJ_ENCODING_ZIPLIST);
|
|
|
|
}
|
|
|
|
|
2015-06-22 11:26:36 -04:00
|
|
|
/* Return (by reference) the score of the specified member of the sorted set
|
2015-07-26 17:17:55 -04:00
|
|
|
* storing it into *score. If the element does not exist C_ERR is returned
|
|
|
|
* otherwise C_OK is returned and *score is correctly populated.
|
|
|
|
* If 'zobj' or 'member' is NULL, C_ERR is returned. */
|
2015-08-04 03:20:55 -04:00
|
|
|
int zsetScore(robj *zobj, sds member, double *score) {
|
2015-07-26 17:17:55 -04:00
|
|
|
if (!zobj || !member) return C_ERR;
|
2015-06-22 11:26:36 -04:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2015-07-26 17:17:55 -04:00
|
|
|
if (zzlFind(zobj->ptr, member, score) == NULL) return C_ERR;
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2015-06-22 11:26:36 -04:00
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
dictEntry *de = dictFind(zs->dict, member);
|
2015-07-26 17:17:55 -04:00
|
|
|
if (de == NULL) return C_ERR;
|
2015-06-22 11:26:36 -04:00
|
|
|
*score = *(double*)dictGetVal(de);
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2015-06-22 11:26:36 -04:00
|
|
|
}
|
2015-07-26 17:17:55 -04:00
|
|
|
return C_OK;
|
2015-06-22 11:26:36 -04:00
|
|
|
}
|
|
|
|
|
2016-04-14 06:48:34 -04:00
|
|
|
/* Add a new element or update the score of an existing element in a sorted
|
|
|
|
* set, regardless of its encoding.
|
|
|
|
*
|
2021-03-10 09:09:43 -05:00
|
|
|
* The set of flags change the command behavior.
|
2016-04-14 06:48:34 -04:00
|
|
|
*
|
|
|
|
* The input flags are the following:
|
|
|
|
*
|
|
|
|
* ZADD_INCR: Increment the current element score by 'score' instead of updating
|
|
|
|
* the current element score. If the element does not exist, we
|
|
|
|
* assume 0 as previous score.
|
|
|
|
* ZADD_NX: Perform the operation only if the element does not exist.
|
|
|
|
* ZADD_XX: Perform the operation only if the element already exist.
|
2020-09-23 14:56:16 -04:00
|
|
|
* ZADD_GT: Perform the operation on existing elements only if the new score is
|
|
|
|
* greater than the current score.
|
|
|
|
* ZADD_LT: Perform the operation on existing elements only if the new score is
|
|
|
|
* less than the current score.
|
2016-04-14 06:48:34 -04:00
|
|
|
*
|
|
|
|
* When ZADD_INCR is used, the new score of the element is stored in
|
|
|
|
* '*newscore' if 'newscore' is not NULL.
|
|
|
|
*
|
|
|
|
* The returned flags are the following:
|
|
|
|
*
|
|
|
|
* ZADD_NAN: The resulting score is not a number.
|
|
|
|
* ZADD_ADDED: The element was added (not present before the call).
|
|
|
|
* ZADD_UPDATED: The element score was updated.
|
|
|
|
* ZADD_NOP: No operation was performed because of NX or XX.
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
|
|
|
* The function returns 1 on success, and sets the appropriate flags
|
|
|
|
* ADDED or UPDATED to signal what happened during the operation (note that
|
|
|
|
* none could be set if we re-added an element using the same score it used
|
|
|
|
* to have, or in the case a zero increment is used).
|
|
|
|
*
|
2020-04-14 05:23:44 -04:00
|
|
|
* The function returns 0 on error, currently only when the increment
|
2016-04-14 06:48:34 -04:00
|
|
|
* produces a NAN condition, or when the 'score' value is NAN since the
|
|
|
|
* start.
|
|
|
|
*
|
2020-04-14 05:23:44 -04:00
|
|
|
* The command as a side effect of adding a new element may convert the sorted
|
2016-04-14 06:48:34 -04:00
|
|
|
* set internal encoding from ziplist to hashtable+skiplist.
|
|
|
|
*
|
2020-04-14 05:23:44 -04:00
|
|
|
* Memory management of 'ele':
|
2016-04-14 06:48:34 -04:00
|
|
|
*
|
|
|
|
* The function does not take ownership of the 'ele' SDS string, but copies
|
|
|
|
* it if needed. */
|
2021-03-10 09:09:43 -05:00
|
|
|
int zsetAdd(robj *zobj, double score, sds ele, int in_flags, int *out_flags, double *newscore) {
|
2016-04-14 06:48:34 -04:00
|
|
|
/* Turn options into simple to check vars. */
|
2021-03-10 09:09:43 -05:00
|
|
|
int incr = (in_flags & ZADD_IN_INCR) != 0;
|
|
|
|
int nx = (in_flags & ZADD_IN_NX) != 0;
|
|
|
|
int xx = (in_flags & ZADD_IN_XX) != 0;
|
|
|
|
int gt = (in_flags & ZADD_IN_GT) != 0;
|
|
|
|
int lt = (in_flags & ZADD_IN_LT) != 0;
|
|
|
|
*out_flags = 0; /* We'll return our response flags. */
|
2016-04-14 06:48:34 -04:00
|
|
|
double curscore;
|
|
|
|
|
|
|
|
/* NaN as input is an error regardless of all the other parameters. */
|
|
|
|
if (isnan(score)) {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags = ZADD_OUT_NAN;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the sorted set according to its encoding. */
|
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
unsigned char *eptr;
|
|
|
|
|
|
|
|
if ((eptr = zzlFind(zobj->ptr,ele,&curscore)) != NULL) {
|
|
|
|
/* NX? Return, same element already exists. */
|
|
|
|
if (nx) {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_NOP;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prepare the score for the increment if needed. */
|
|
|
|
if (incr) {
|
|
|
|
score += curscore;
|
|
|
|
if (isnan(score)) {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_NAN;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 02:33:53 -04:00
|
|
|
/* GT/LT? Only update if score is greater/less than current. */
|
|
|
|
if ((lt && score >= curscore) || (gt && score <= curscore)) {
|
|
|
|
*out_flags |= ZADD_OUT_NOP;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newscore) *newscore = score;
|
|
|
|
|
2016-04-14 06:48:34 -04:00
|
|
|
/* Remove and re-insert when score changed. */
|
2021-04-01 02:33:53 -04:00
|
|
|
if (score != curscore) {
|
2016-04-14 06:48:34 -04:00
|
|
|
zobj->ptr = zzlDelete(zobj->ptr,eptr);
|
|
|
|
zobj->ptr = zzlInsert(zobj->ptr,ele,score);
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_UPDATED;
|
2016-04-14 06:48:34 -04:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
} else if (!xx) {
|
|
|
|
/* Optimize: check if the element is too large or the list
|
|
|
|
* becomes too long *before* executing zzlInsert. */
|
|
|
|
zobj->ptr = zzlInsert(zobj->ptr,ele,score);
|
2019-07-24 04:22:26 -04:00
|
|
|
if (zzlLength(zobj->ptr) > server.zset_max_ziplist_entries ||
|
|
|
|
sdslen(ele) > server.zset_max_ziplist_value)
|
2016-04-14 06:48:34 -04:00
|
|
|
zsetConvert(zobj,OBJ_ENCODING_SKIPLIST);
|
2016-04-17 23:35:54 -04:00
|
|
|
if (newscore) *newscore = score;
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_ADDED;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 1;
|
|
|
|
} else {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_NOP;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplistNode *znode;
|
|
|
|
dictEntry *de;
|
|
|
|
|
|
|
|
de = dictFind(zs->dict,ele);
|
|
|
|
if (de != NULL) {
|
|
|
|
/* NX? Return, same element already exists. */
|
|
|
|
if (nx) {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_NOP;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 1;
|
|
|
|
}
|
2021-04-01 02:33:53 -04:00
|
|
|
|
2016-04-14 06:48:34 -04:00
|
|
|
curscore = *(double*)dictGetVal(de);
|
|
|
|
|
|
|
|
/* Prepare the score for the increment if needed. */
|
|
|
|
if (incr) {
|
|
|
|
score += curscore;
|
|
|
|
if (isnan(score)) {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_NAN;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 02:33:53 -04:00
|
|
|
/* GT/LT? Only update if score is greater/less than current. */
|
|
|
|
if ((lt && score >= curscore) || (gt && score <= curscore)) {
|
|
|
|
*out_flags |= ZADD_OUT_NOP;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newscore) *newscore = score;
|
|
|
|
|
2016-04-14 06:48:34 -04:00
|
|
|
/* Remove and re-insert when score changes. */
|
2021-04-01 02:33:53 -04:00
|
|
|
if (score != curscore) {
|
2018-08-01 12:27:56 -04:00
|
|
|
znode = zslUpdateScore(zs->zsl,curscore,ele,score);
|
2016-04-14 06:48:34 -04:00
|
|
|
/* Note that we did not removed the original element from
|
|
|
|
* the hash table representing the sorted set, so we just
|
|
|
|
* update the score. */
|
|
|
|
dictGetVal(de) = &znode->score; /* Update score ptr. */
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_UPDATED;
|
2016-04-14 06:48:34 -04:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
} else if (!xx) {
|
|
|
|
ele = sdsdup(ele);
|
|
|
|
znode = zslInsert(zs->zsl,score,ele);
|
|
|
|
serverAssert(dictAdd(zs->dict,ele,&znode->score) == DICT_OK);
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_ADDED;
|
2016-04-17 23:35:54 -04:00
|
|
|
if (newscore) *newscore = score;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 1;
|
|
|
|
} else {
|
2021-03-10 09:09:43 -05:00
|
|
|
*out_flags |= ZADD_OUT_NOP;
|
2016-04-14 06:48:34 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
serverPanic("Unknown sorted set encoding");
|
|
|
|
}
|
|
|
|
return 0; /* Never reached. */
|
|
|
|
}
|
|
|
|
|
2020-11-15 07:14:25 -05:00
|
|
|
/* Deletes the element 'ele' from the sorted set encoded as a skiplist+dict,
|
|
|
|
* returning 1 if the element existed and was deleted, 0 otherwise (the
|
|
|
|
* element was not there). It does not resize the dict after deleting the
|
|
|
|
* element. */
|
|
|
|
static int zsetRemoveFromSkiplist(zset *zs, sds ele) {
|
|
|
|
dictEntry *de;
|
|
|
|
double score;
|
|
|
|
|
|
|
|
de = dictUnlink(zs->dict,ele);
|
|
|
|
if (de != NULL) {
|
|
|
|
/* Get the score in order to delete from the skiplist later. */
|
|
|
|
score = *(double*)dictGetVal(de);
|
|
|
|
|
|
|
|
/* Delete from the hash table and later from the skiplist.
|
|
|
|
* Note that the order is important: deleting from the skiplist
|
|
|
|
* actually releases the SDS string representing the element,
|
|
|
|
* which is shared between the skiplist and the hash table, so
|
|
|
|
* we need to delete from the skiplist as the final step. */
|
|
|
|
dictFreeUnlinkedEntry(zs->dict,de);
|
|
|
|
|
|
|
|
/* Delete from skiplist. */
|
|
|
|
int retval = zslDelete(zs->zsl,score,ele,NULL);
|
|
|
|
serverAssert(retval);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-04-15 09:20:25 -04:00
|
|
|
/* Delete the element 'ele' from the sorted set, returning 1 if the element
|
|
|
|
* existed and was deleted, 0 otherwise (the element was not there). */
|
|
|
|
int zsetDel(robj *zobj, sds ele) {
|
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
unsigned char *eptr;
|
|
|
|
|
|
|
|
if ((eptr = zzlFind(zobj->ptr,ele,NULL)) != NULL) {
|
|
|
|
zobj->ptr = zzlDelete(zobj->ptr,eptr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zset *zs = zobj->ptr;
|
2020-11-15 07:14:25 -05:00
|
|
|
if (zsetRemoveFromSkiplist(zs, ele)) {
|
2016-04-15 09:20:25 -04:00
|
|
|
if (htNeedsResize(zs->dict)) dictResize(zs->dict);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
serverPanic("Unknown sorted set encoding");
|
|
|
|
}
|
|
|
|
return 0; /* No such element found. */
|
|
|
|
}
|
|
|
|
|
2016-04-15 06:46:18 -04:00
|
|
|
/* Given a sorted set object returns the 0-based rank of the object or
|
|
|
|
* -1 if the object does not exist.
|
|
|
|
*
|
|
|
|
* For rank we mean the position of the element in the sorted collection
|
|
|
|
* of elements. So the first element has rank 0, the second rank 1, and so
|
|
|
|
* forth up to length-1 elements.
|
|
|
|
*
|
|
|
|
* If 'reverse' is false, the rank is returned considering as first element
|
|
|
|
* the one with the lowest score. Otherwise if 'reverse' is non-zero
|
|
|
|
* the rank is computed considering as element with rank 0 the one with
|
|
|
|
* the highest score. */
|
|
|
|
long zsetRank(robj *zobj, sds ele, int reverse) {
|
|
|
|
unsigned long llen;
|
|
|
|
unsigned long rank;
|
|
|
|
|
|
|
|
llen = zsetLength(zobj);
|
|
|
|
|
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
|
|
|
|
eptr = ziplistIndex(zl,0);
|
|
|
|
serverAssert(eptr != NULL);
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
|
|
|
serverAssert(sptr != NULL);
|
|
|
|
|
|
|
|
rank = 1;
|
|
|
|
while(eptr != NULL) {
|
|
|
|
if (ziplistCompare(eptr,(unsigned char*)ele,sdslen(ele)))
|
|
|
|
break;
|
|
|
|
rank++;
|
|
|
|
zzlNext(zl,&eptr,&sptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eptr != NULL) {
|
|
|
|
if (reverse)
|
|
|
|
return llen-rank;
|
|
|
|
else
|
|
|
|
return rank-1;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
dictEntry *de;
|
|
|
|
double score;
|
|
|
|
|
|
|
|
de = dictFind(zs->dict,ele);
|
|
|
|
if (de != NULL) {
|
|
|
|
score = *(double*)dictGetVal(de);
|
|
|
|
rank = zslGetRank(zsl,score,ele);
|
|
|
|
/* Existing elements always have a rank. */
|
|
|
|
serverAssert(rank != 0);
|
|
|
|
if (reverse)
|
|
|
|
return llen-rank;
|
|
|
|
else
|
|
|
|
return rank-1;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
serverPanic("Unknown sorted set encoding");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 05:03:05 -05:00
|
|
|
/* This is a helper function for the COPY command.
|
|
|
|
* Duplicate a sorted set object, with the guarantee that the returned object
|
|
|
|
* has the same encoding as the original one.
|
|
|
|
*
|
|
|
|
* The resulting object always has refcount set to 1 */
|
|
|
|
robj *zsetDup(robj *o) {
|
|
|
|
robj *zobj;
|
|
|
|
zset *zs;
|
|
|
|
zset *new_zs;
|
|
|
|
|
|
|
|
serverAssert(o->type == OBJ_ZSET);
|
|
|
|
|
|
|
|
/* Create a new sorted set object that have the same encoding as the original object's encoding */
|
2020-11-24 14:40:58 -05:00
|
|
|
if (o->encoding == OBJ_ENCODING_ZIPLIST) {
|
2020-11-17 05:03:05 -05:00
|
|
|
unsigned char *zl = o->ptr;
|
|
|
|
size_t sz = ziplistBlobLen(zl);
|
|
|
|
unsigned char *new_zl = zmalloc(sz);
|
|
|
|
memcpy(new_zl, zl, sz);
|
2020-11-24 14:40:58 -05:00
|
|
|
zobj = createObject(OBJ_ZSET, new_zl);
|
|
|
|
zobj->encoding = OBJ_ENCODING_ZIPLIST;
|
|
|
|
} else if (o->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zobj = createZsetObject();
|
2020-11-17 05:03:05 -05:00
|
|
|
zs = o->ptr;
|
|
|
|
new_zs = zobj->ptr;
|
2020-11-24 14:40:58 -05:00
|
|
|
dictExpand(new_zs->dict,dictSize(zs->dict));
|
2020-11-17 05:03:05 -05:00
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *ln;
|
|
|
|
sds ele;
|
|
|
|
long llen = zsetLength(o);
|
|
|
|
|
|
|
|
/* We copy the skiplist elements from the greatest to the
|
|
|
|
* smallest (that's trivial since the elements are already ordered in
|
|
|
|
* the skiplist): this improves the load process, since the next loaded
|
|
|
|
* element will always be the smaller, so adding to the skiplist
|
|
|
|
* will always immediately stop at the head, making the insertion
|
|
|
|
* O(1) instead of O(log(N)). */
|
|
|
|
ln = zsl->tail;
|
|
|
|
while (llen--) {
|
|
|
|
ele = ln->ele;
|
|
|
|
sds new_ele = sdsdup(ele);
|
|
|
|
zskiplistNode *znode = zslInsert(new_zs->zsl,ln->score,new_ele);
|
|
|
|
dictAdd(new_zs->dict,new_ele,&znode->score);
|
|
|
|
ln = ln->backward;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
serverPanic("Unknown sorted set encoding");
|
|
|
|
}
|
|
|
|
return zobj;
|
|
|
|
}
|
|
|
|
|
2021-06-10 08:39:33 -04:00
|
|
|
/* callback for to check the ziplist doesn't have duplicate records */
|
2020-11-02 02:35:37 -05:00
|
|
|
static int _zsetZiplistValidateIntegrity(unsigned char *p, void *userdata) {
|
|
|
|
struct {
|
|
|
|
long count;
|
|
|
|
dict *fields;
|
|
|
|
} *data = userdata;
|
|
|
|
|
|
|
|
/* Even records are field names, add to dict and check that's not a dup */
|
2020-12-09 10:05:05 -05:00
|
|
|
if (((data->count) & 1) == 0) {
|
2020-11-02 02:35:37 -05:00
|
|
|
unsigned char *str;
|
|
|
|
unsigned int slen;
|
|
|
|
long long vll;
|
|
|
|
if (!ziplistGet(p, &str, &slen, &vll))
|
|
|
|
return 0;
|
|
|
|
sds field = str? sdsnewlen(str, slen): sdsfromlonglong(vll);;
|
|
|
|
if (dictAdd(data->fields, field, NULL) != DICT_OK) {
|
|
|
|
/* Duplicate, return an error */
|
|
|
|
sdsfree(field);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(data->count)++;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-04-14 08:46:54 -04:00
|
|
|
/* Validate the integrity of the data structure.
|
2020-11-02 02:35:37 -05:00
|
|
|
* when `deep` is 0, only the integrity of the header is validated.
|
|
|
|
* when `deep` is 1, we scan all the entries one by one. */
|
|
|
|
int zsetZiplistValidateIntegrity(unsigned char *zl, size_t size, int deep) {
|
|
|
|
if (!deep)
|
|
|
|
return ziplistValidateIntegrity(zl, size, 0, NULL, NULL);
|
|
|
|
|
|
|
|
/* Keep track of the field names to locate duplicate ones */
|
|
|
|
struct {
|
|
|
|
long count;
|
|
|
|
dict *fields;
|
|
|
|
} data = {0, dictCreate(&hashDictType, NULL)};
|
|
|
|
|
|
|
|
int ret = ziplistValidateIntegrity(zl, size, 1, _zsetZiplistValidateIntegrity, &data);
|
|
|
|
|
|
|
|
/* make sure we have an even number of records. */
|
|
|
|
if (data.count & 1)
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
dictRelease(data.fields);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-01-29 03:47:28 -05:00
|
|
|
/* Create a new sds string from the ziplist entry. */
|
|
|
|
sds zsetSdsFromZiplistEntry(ziplistEntry *e) {
|
|
|
|
return e->sval ? sdsnewlen(e->sval, e->slen) : sdsfromlonglong(e->lval);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reply with bulk string from the ziplist entry. */
|
|
|
|
void zsetReplyFromZiplistEntry(client *c, ziplistEntry *e) {
|
|
|
|
if (e->sval)
|
|
|
|
addReplyBulkCBuffer(c, e->sval, e->slen);
|
|
|
|
else
|
|
|
|
addReplyBulkLongLong(c, e->lval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Return random element from a non empty zset.
|
|
|
|
* 'key' and 'val' will be set to hold the element.
|
|
|
|
* The memory in `key` is not to be freed or modified by the caller.
|
|
|
|
* 'score' can be NULL in which case it's not extracted. */
|
|
|
|
void zsetTypeRandomElement(robj *zsetobj, unsigned long zsetsize, ziplistEntry *key, double *score) {
|
|
|
|
if (zsetobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zset *zs = zsetobj->ptr;
|
|
|
|
dictEntry *de = dictGetFairRandomKey(zs->dict);
|
|
|
|
sds s = dictGetKey(de);
|
|
|
|
key->sval = (unsigned char*)s;
|
|
|
|
key->slen = sdslen(s);
|
|
|
|
if (score)
|
|
|
|
*score = *(double*)dictGetVal(de);
|
|
|
|
} else if (zsetobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
ziplistEntry val;
|
|
|
|
ziplistRandomPair(zsetobj->ptr, zsetsize, key, &val);
|
|
|
|
if (score) {
|
|
|
|
if (val.sval) {
|
|
|
|
*score = zzlStrtod(val.sval,val.slen);
|
|
|
|
} else {
|
|
|
|
*score = (double)val.lval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
serverPanic("Unknown zset encoding");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
/*-----------------------------------------------------------------------------
|
2014-06-26 12:48:40 -04:00
|
|
|
* Sorted set commands
|
2010-06-21 18:07:48 -04:00
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
2010-08-03 14:49:53 -04:00
|
|
|
/* This generic command implements both ZADD and ZINCRBY. */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zaddGenericCommand(client *c, int flags) {
|
2011-03-08 10:44:22 -05:00
|
|
|
static char *nanerr = "resulting score is not a number (NaN)";
|
2011-03-08 10:51:41 -05:00
|
|
|
robj *key = c->argv[1];
|
2011-03-08 10:44:22 -05:00
|
|
|
robj *zobj;
|
2015-08-04 03:20:55 -04:00
|
|
|
sds ele;
|
2016-04-14 06:48:34 -04:00
|
|
|
double score = 0, *scores = NULL;
|
2021-03-10 09:09:43 -05:00
|
|
|
int j, elements, ch = 0;
|
2015-05-29 03:59:42 -04:00
|
|
|
int scoreidx = 0;
|
|
|
|
/* The following vars are used in order to track what the command actually
|
|
|
|
* did during the execution, to reply to the client and to trigger the
|
|
|
|
* notification of keyspace change. */
|
|
|
|
int added = 0; /* Number of new elements added. */
|
|
|
|
int updated = 0; /* Number of elements with updated score. */
|
|
|
|
int processed = 0; /* Number of elements processed, may remain zero with
|
|
|
|
options like XX. */
|
2015-05-28 12:06:16 -04:00
|
|
|
|
|
|
|
/* Parse options. At the end 'scoreidx' is set to the argument position
|
|
|
|
* of the score of the first score-element pair. */
|
|
|
|
scoreidx = 2;
|
|
|
|
while(scoreidx < c->argc) {
|
|
|
|
char *opt = c->argv[scoreidx]->ptr;
|
2021-03-10 09:09:43 -05:00
|
|
|
if (!strcasecmp(opt,"nx")) flags |= ZADD_IN_NX;
|
|
|
|
else if (!strcasecmp(opt,"xx")) flags |= ZADD_IN_XX;
|
|
|
|
else if (!strcasecmp(opt,"ch")) ch = 1; /* Return num of elements added or updated. */
|
|
|
|
else if (!strcasecmp(opt,"incr")) flags |= ZADD_IN_INCR;
|
|
|
|
else if (!strcasecmp(opt,"gt")) flags |= ZADD_IN_GT;
|
|
|
|
else if (!strcasecmp(opt,"lt")) flags |= ZADD_IN_LT;
|
2015-05-28 12:06:16 -04:00
|
|
|
else break;
|
|
|
|
scoreidx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Turn options into simple to check vars. */
|
2021-03-10 09:09:43 -05:00
|
|
|
int incr = (flags & ZADD_IN_INCR) != 0;
|
|
|
|
int nx = (flags & ZADD_IN_NX) != 0;
|
|
|
|
int xx = (flags & ZADD_IN_XX) != 0;
|
|
|
|
int gt = (flags & ZADD_IN_GT) != 0;
|
|
|
|
int lt = (flags & ZADD_IN_LT) != 0;
|
2011-03-08 10:51:41 -05:00
|
|
|
|
2015-05-28 12:06:16 -04:00
|
|
|
/* After the options, we expect to have an even number of args, since
|
|
|
|
* we expect any number of score-element pairs. */
|
|
|
|
elements = c->argc-scoreidx;
|
2016-12-02 11:19:36 -05:00
|
|
|
if (elements % 2 || !elements) {
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
2011-03-08 10:51:41 -05:00
|
|
|
return;
|
2011-05-31 11:47:34 -04:00
|
|
|
}
|
2015-05-28 12:06:16 -04:00
|
|
|
elements /= 2; /* Now this holds the number of score-element pairs. */
|
|
|
|
|
|
|
|
/* Check for incompatible options. */
|
|
|
|
if (nx && xx) {
|
|
|
|
addReplyError(c,
|
|
|
|
"XX and NX options at the same time are not compatible");
|
|
|
|
return;
|
|
|
|
}
|
2020-09-23 14:56:16 -04:00
|
|
|
|
|
|
|
if ((gt && nx) || (lt && nx) || (gt && lt)) {
|
|
|
|
addReplyError(c,
|
|
|
|
"GT, LT, and/or NX options at the same time are not compatible");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Note that XX is compatible with either GT or LT */
|
2015-05-28 12:06:16 -04:00
|
|
|
|
|
|
|
if (incr && elements > 1) {
|
|
|
|
addReplyError(c,
|
|
|
|
"INCR option supports a single increment-element pair");
|
|
|
|
return;
|
|
|
|
}
|
2011-05-31 11:47:34 -04:00
|
|
|
|
|
|
|
/* Start parsing all the scores, we need to emit any syntax error
|
|
|
|
* before executing additions to the sorted set, as the command should
|
|
|
|
* either execute fully or nothing at all. */
|
|
|
|
scores = zmalloc(sizeof(double)*elements);
|
|
|
|
for (j = 0; j < elements; j++) {
|
2015-05-28 12:06:16 -04:00
|
|
|
if (getDoubleFromObjectOrReply(c,c->argv[scoreidx+j*2],&scores[j],NULL)
|
2015-07-26 17:17:55 -04:00
|
|
|
!= C_OK) goto cleanup;
|
2011-05-31 11:47:34 -04:00
|
|
|
}
|
2011-03-08 10:44:22 -05:00
|
|
|
|
2011-05-31 11:47:34 -04:00
|
|
|
/* Lookup the key and create the sorted set if does not exist. */
|
2011-03-08 10:44:22 -05:00
|
|
|
zobj = lookupKeyWrite(c->db,key);
|
2020-08-11 23:04:54 -04:00
|
|
|
if (checkType(c,zobj,OBJ_ZSET)) goto cleanup;
|
2011-03-08 10:44:22 -05:00
|
|
|
if (zobj == NULL) {
|
2015-05-29 03:59:42 -04:00
|
|
|
if (xx) goto reply_to_client; /* No key + XX option: nothing to do. */
|
2011-03-09 10:13:06 -05:00
|
|
|
if (server.zset_max_ziplist_entries == 0 ||
|
2015-06-02 06:12:57 -04:00
|
|
|
server.zset_max_ziplist_value < sdslen(c->argv[scoreidx+1]->ptr))
|
2011-03-09 10:13:06 -05:00
|
|
|
{
|
|
|
|
zobj = createZsetObject();
|
|
|
|
} else {
|
|
|
|
zobj = createZsetZiplistObject();
|
|
|
|
}
|
2011-03-08 10:44:22 -05:00
|
|
|
dbAdd(c->db,key,zobj);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2011-05-31 11:47:34 -04:00
|
|
|
for (j = 0; j < elements; j++) {
|
2016-04-14 06:48:34 -04:00
|
|
|
double newscore;
|
2011-05-31 11:47:34 -04:00
|
|
|
score = scores[j];
|
2021-03-10 09:09:43 -05:00
|
|
|
int retflags = 0;
|
2011-05-31 11:47:34 -04:00
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
ele = c->argv[scoreidx+1+j*2]->ptr;
|
2021-03-10 09:09:43 -05:00
|
|
|
int retval = zsetAdd(zobj, score, ele, flags, &retflags, &newscore);
|
2016-04-14 06:48:34 -04:00
|
|
|
if (retval == 0) {
|
|
|
|
addReplyError(c,nanerr);
|
|
|
|
goto cleanup;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2021-03-10 09:09:43 -05:00
|
|
|
if (retflags & ZADD_OUT_ADDED) added++;
|
|
|
|
if (retflags & ZADD_OUT_UPDATED) updated++;
|
|
|
|
if (!(retflags & ZADD_OUT_NOP)) processed++;
|
2016-04-14 06:48:34 -04:00
|
|
|
score = newscore;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2016-04-14 06:48:34 -04:00
|
|
|
server.dirty += (added+updated);
|
2015-05-29 03:59:42 -04:00
|
|
|
|
|
|
|
reply_to_client:
|
|
|
|
if (incr) { /* ZINCRBY or INCR option. */
|
|
|
|
if (processed)
|
|
|
|
addReplyDouble(c,score);
|
|
|
|
else
|
2018-11-30 03:41:54 -05:00
|
|
|
addReplyNull(c);
|
2015-05-29 03:59:42 -04:00
|
|
|
} else { /* ZADD. */
|
2015-05-29 05:32:22 -04:00
|
|
|
addReplyLongLong(c,ch ? added+updated : added);
|
2015-05-29 03:59:42 -04:00
|
|
|
}
|
2013-01-24 10:20:53 -05:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
zfree(scores);
|
|
|
|
if (added || updated) {
|
2020-04-21 04:51:46 -04:00
|
|
|
signalModifiedKey(c,c->db,key);
|
2015-07-27 03:41:48 -04:00
|
|
|
notifyKeyspaceEvent(NOTIFY_ZSET,
|
2013-01-25 07:19:08 -05:00
|
|
|
incr ? "zincr" : "zadd", key, c->db->id);
|
2013-01-24 10:20:53 -05:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zaddCommand(client *c) {
|
2021-03-10 09:09:43 -05:00
|
|
|
zaddGenericCommand(c,ZADD_IN_NONE);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zincrbyCommand(client *c) {
|
2021-03-10 09:09:43 -05:00
|
|
|
zaddGenericCommand(c,ZADD_IN_INCR);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zremCommand(client *c) {
|
2011-03-08 11:11:15 -05:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
2013-01-24 10:20:53 -05:00
|
|
|
int deleted = 0, keyremoved = 0, j;
|
2011-03-08 11:11:15 -05:00
|
|
|
|
|
|
|
if ((zobj = lookupKeyWriteOrReply(c,key,shared.czero)) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c,zobj,OBJ_ZSET)) return;
|
2011-03-08 11:11:15 -05:00
|
|
|
|
2016-04-15 09:20:25 -04:00
|
|
|
for (j = 2; j < c->argc; j++) {
|
|
|
|
if (zsetDel(zobj,c->argv[j]->ptr)) deleted++;
|
|
|
|
if (zsetLength(zobj) == 0) {
|
|
|
|
dbDelete(c->db,key);
|
|
|
|
keyremoved = 1;
|
|
|
|
break;
|
2011-03-08 11:11:15 -05:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2011-05-31 14:15:18 -04:00
|
|
|
if (deleted) {
|
2015-07-27 03:41:48 -04:00
|
|
|
notifyKeyspaceEvent(NOTIFY_ZSET,"zrem",key,c->db->id);
|
2013-01-25 07:19:08 -05:00
|
|
|
if (keyremoved)
|
2015-07-27 03:41:48 -04:00
|
|
|
notifyKeyspaceEvent(NOTIFY_GENERIC,"del",key,c->db->id);
|
2020-04-21 04:51:46 -04:00
|
|
|
signalModifiedKey(c,c->db,key);
|
2011-05-31 14:15:18 -04:00
|
|
|
server.dirty += deleted;
|
|
|
|
}
|
|
|
|
addReplyLongLong(c,deleted);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
typedef enum {
|
|
|
|
ZRANGE_AUTO = 0,
|
|
|
|
ZRANGE_RANK,
|
|
|
|
ZRANGE_SCORE,
|
|
|
|
ZRANGE_LEX,
|
|
|
|
} zrange_type;
|
|
|
|
|
2014-04-17 08:19:14 -04:00
|
|
|
/* Implements ZREMRANGEBYRANK, ZREMRANGEBYSCORE, ZREMRANGEBYLEX commands. */
|
2021-01-07 03:58:53 -05:00
|
|
|
void zremrangeGenericCommand(client *c, zrange_type rangetype) {
|
2011-03-08 16:23:56 -05:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
2013-01-24 10:20:53 -05:00
|
|
|
int keyremoved = 0;
|
2014-11-13 23:35:10 -05:00
|
|
|
unsigned long deleted = 0;
|
2014-04-17 08:19:14 -04:00
|
|
|
zrangespec range;
|
2014-04-17 08:47:52 -04:00
|
|
|
zlexrangespec lexrange;
|
2014-04-17 08:19:14 -04:00
|
|
|
long start, end, llen;
|
2021-01-07 03:58:53 -05:00
|
|
|
char *notify_type = NULL;
|
2014-04-17 08:19:14 -04:00
|
|
|
|
|
|
|
/* Step 1: Parse the range. */
|
|
|
|
if (rangetype == ZRANGE_RANK) {
|
2021-01-07 03:58:53 -05:00
|
|
|
notify_type = "zremrangebyrank";
|
2015-07-26 17:17:55 -04:00
|
|
|
if ((getLongFromObjectOrReply(c,c->argv[2],&start,NULL) != C_OK) ||
|
|
|
|
(getLongFromObjectOrReply(c,c->argv[3],&end,NULL) != C_OK))
|
2014-04-17 08:19:14 -04:00
|
|
|
return;
|
|
|
|
} else if (rangetype == ZRANGE_SCORE) {
|
2021-01-07 03:58:53 -05:00
|
|
|
notify_type = "zremrangebyscore";
|
2015-07-26 17:17:55 -04:00
|
|
|
if (zslParseRange(c->argv[2],c->argv[3],&range) != C_OK) {
|
2014-04-17 08:19:14 -04:00
|
|
|
addReplyError(c,"min or max is not a float");
|
|
|
|
return;
|
|
|
|
}
|
2014-04-17 08:47:52 -04:00
|
|
|
} else if (rangetype == ZRANGE_LEX) {
|
2021-01-07 03:58:53 -05:00
|
|
|
notify_type = "zremrangebylex";
|
2015-07-26 17:17:55 -04:00
|
|
|
if (zslParseLexRange(c->argv[2],c->argv[3],&lexrange) != C_OK) {
|
2014-04-17 08:47:52 -04:00
|
|
|
addReplyError(c,"min or max not valid string range item");
|
|
|
|
return;
|
|
|
|
}
|
2021-01-07 03:58:53 -05:00
|
|
|
} else {
|
|
|
|
serverPanic("unknown rangetype %d", (int)rangetype);
|
2010-10-13 15:58:21 -04:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2014-04-17 08:19:14 -04:00
|
|
|
/* Step 2: Lookup & range sanity checks if needed. */
|
2011-03-08 16:23:56 -05:00
|
|
|
if ((zobj = lookupKeyWriteOrReply(c,key,shared.czero)) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c,zobj,OBJ_ZSET)) goto cleanup;
|
2011-03-08 16:23:56 -05:00
|
|
|
|
2014-04-17 08:19:14 -04:00
|
|
|
if (rangetype == ZRANGE_RANK) {
|
|
|
|
/* Sanitize indexes. */
|
|
|
|
llen = zsetLength(zobj);
|
|
|
|
if (start < 0) start = llen+start;
|
|
|
|
if (end < 0) end = llen+end;
|
|
|
|
if (start < 0) start = 0;
|
|
|
|
|
|
|
|
/* Invariant: start >= 0, so this test will be true when end < 0.
|
|
|
|
* The range is empty when start > end or start >= length. */
|
|
|
|
if (start > end || start >= llen) {
|
|
|
|
addReply(c,shared.czero);
|
2014-04-18 07:01:04 -04:00
|
|
|
goto cleanup;
|
2014-04-17 08:19:14 -04:00
|
|
|
}
|
|
|
|
if (end >= llen) end = llen-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Step 3: Perform the range deletion operation. */
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2014-04-17 08:19:14 -04:00
|
|
|
switch(rangetype) {
|
2021-01-07 03:58:53 -05:00
|
|
|
case ZRANGE_AUTO:
|
2014-04-17 08:19:14 -04:00
|
|
|
case ZRANGE_RANK:
|
|
|
|
zobj->ptr = zzlDeleteRangeByRank(zobj->ptr,start+1,end+1,&deleted);
|
|
|
|
break;
|
|
|
|
case ZRANGE_SCORE:
|
2014-04-17 08:30:12 -04:00
|
|
|
zobj->ptr = zzlDeleteRangeByScore(zobj->ptr,&range,&deleted);
|
2014-04-17 08:19:14 -04:00
|
|
|
break;
|
2014-04-17 08:47:52 -04:00
|
|
|
case ZRANGE_LEX:
|
|
|
|
zobj->ptr = zzlDeleteRangeByLex(zobj->ptr,&lexrange,&deleted);
|
|
|
|
break;
|
2014-04-17 08:19:14 -04:00
|
|
|
}
|
2013-01-24 10:20:53 -05:00
|
|
|
if (zzlLength(zobj->ptr) == 0) {
|
|
|
|
dbDelete(c->db,key);
|
|
|
|
keyremoved = 1;
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-03-08 16:23:56 -05:00
|
|
|
zset *zs = zobj->ptr;
|
2014-04-17 08:19:14 -04:00
|
|
|
switch(rangetype) {
|
2021-01-07 03:58:53 -05:00
|
|
|
case ZRANGE_AUTO:
|
2014-04-17 08:19:14 -04:00
|
|
|
case ZRANGE_RANK:
|
|
|
|
deleted = zslDeleteRangeByRank(zs->zsl,start+1,end+1,zs->dict);
|
|
|
|
break;
|
|
|
|
case ZRANGE_SCORE:
|
2014-04-17 08:30:12 -04:00
|
|
|
deleted = zslDeleteRangeByScore(zs->zsl,&range,zs->dict);
|
2014-04-17 08:19:14 -04:00
|
|
|
break;
|
2014-04-17 08:47:52 -04:00
|
|
|
case ZRANGE_LEX:
|
|
|
|
deleted = zslDeleteRangeByLex(zs->zsl,&lexrange,zs->dict);
|
|
|
|
break;
|
2014-04-17 08:19:14 -04:00
|
|
|
}
|
2011-03-08 16:23:56 -05:00
|
|
|
if (htNeedsResize(zs->dict)) dictResize(zs->dict);
|
2013-01-24 10:20:53 -05:00
|
|
|
if (dictSize(zs->dict) == 0) {
|
|
|
|
dbDelete(c->db,key);
|
|
|
|
keyremoved = 1;
|
|
|
|
}
|
2011-03-08 16:23:56 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-08 16:23:56 -05:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2014-04-17 08:19:14 -04:00
|
|
|
/* Step 4: Notifications and reply. */
|
2013-01-24 10:20:53 -05:00
|
|
|
if (deleted) {
|
2020-04-21 04:51:46 -04:00
|
|
|
signalModifiedKey(c,c->db,key);
|
2021-01-07 03:58:53 -05:00
|
|
|
notifyKeyspaceEvent(NOTIFY_ZSET,notify_type,key,c->db->id);
|
2013-01-25 07:19:08 -05:00
|
|
|
if (keyremoved)
|
2015-07-27 03:41:48 -04:00
|
|
|
notifyKeyspaceEvent(NOTIFY_GENERIC,"del",key,c->db->id);
|
2013-01-24 10:20:53 -05:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
server.dirty += deleted;
|
|
|
|
addReplyLongLong(c,deleted);
|
2014-04-18 07:01:04 -04:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (rangetype == ZRANGE_LEX) zslFreeLexRange(&lexrange);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zremrangebyrankCommand(client *c) {
|
2014-04-17 08:19:14 -04:00
|
|
|
zremrangeGenericCommand(c,ZRANGE_RANK);
|
|
|
|
}
|
2011-03-09 04:30:55 -05:00
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zremrangebyscoreCommand(client *c) {
|
2014-04-17 08:19:14 -04:00
|
|
|
zremrangeGenericCommand(c,ZRANGE_SCORE);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zremrangebylexCommand(client *c) {
|
2014-04-17 08:47:52 -04:00
|
|
|
zremrangeGenericCommand(c,ZRANGE_LEX);
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
typedef struct {
|
2011-03-10 10:34:52 -05:00
|
|
|
robj *subject;
|
|
|
|
int type; /* Set, sorted set */
|
|
|
|
int encoding;
|
2010-06-21 18:07:48 -04:00
|
|
|
double weight;
|
2011-03-10 10:34:52 -05:00
|
|
|
|
|
|
|
union {
|
|
|
|
/* Set iterators. */
|
|
|
|
union _iterset {
|
|
|
|
struct {
|
|
|
|
intset *is;
|
|
|
|
int ii;
|
|
|
|
} is;
|
|
|
|
struct {
|
|
|
|
dict *dict;
|
|
|
|
dictIterator *di;
|
|
|
|
dictEntry *de;
|
|
|
|
} ht;
|
|
|
|
} set;
|
|
|
|
|
|
|
|
/* Sorted set iterators. */
|
|
|
|
union _iterzset {
|
|
|
|
struct {
|
|
|
|
unsigned char *zl;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
} zl;
|
|
|
|
struct {
|
|
|
|
zset *zs;
|
|
|
|
zskiplistNode *node;
|
|
|
|
} sl;
|
|
|
|
} zset;
|
|
|
|
} iter;
|
2010-06-21 18:07:48 -04:00
|
|
|
} zsetopsrc;
|
|
|
|
|
2011-03-10 10:34:52 -05:00
|
|
|
|
|
|
|
/* Use dirty flags for pointers that need to be cleaned up in the next
|
|
|
|
* iteration over the zsetopval. The dirty flag for the long long value is
|
|
|
|
* special, since long long values don't need cleanup. Instead, it means that
|
|
|
|
* we already checked that "ell" holds a long long, or tried to convert another
|
|
|
|
* representation into a long long value. When this was successful,
|
|
|
|
* OPVAL_VALID_LL is set as well. */
|
2015-08-04 03:20:55 -04:00
|
|
|
#define OPVAL_DIRTY_SDS 1
|
2011-03-10 10:34:52 -05:00
|
|
|
#define OPVAL_DIRTY_LL 2
|
|
|
|
#define OPVAL_VALID_LL 4
|
|
|
|
|
|
|
|
/* Store value retrieved from the iterator. */
|
|
|
|
typedef struct {
|
|
|
|
int flags;
|
|
|
|
unsigned char _buf[32]; /* Private buffer. */
|
2015-08-04 03:20:55 -04:00
|
|
|
sds ele;
|
2011-03-10 10:34:52 -05:00
|
|
|
unsigned char *estr;
|
|
|
|
unsigned int elen;
|
|
|
|
long long ell;
|
|
|
|
double score;
|
|
|
|
} zsetopval;
|
|
|
|
|
|
|
|
typedef union _iterset iterset;
|
|
|
|
typedef union _iterzset iterzset;
|
|
|
|
|
|
|
|
void zuiInitIterator(zsetopsrc *op) {
|
|
|
|
if (op->subject == NULL)
|
|
|
|
return;
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->type == OBJ_SET) {
|
2011-03-10 10:34:52 -05:00
|
|
|
iterset *it = &op->iter.set;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_INTSET) {
|
2011-03-10 10:34:52 -05:00
|
|
|
it->is.is = op->subject->ptr;
|
|
|
|
it->is.ii = 0;
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_HT) {
|
2011-03-10 10:34:52 -05:00
|
|
|
it->ht.dict = op->subject->ptr;
|
|
|
|
it->ht.di = dictGetIterator(op->subject->ptr);
|
|
|
|
it->ht.de = dictNext(it->ht.di);
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->type == OBJ_ZSET) {
|
2020-12-03 03:12:07 -05:00
|
|
|
/* Sorted sets are traversed in reverse order to optimize for
|
|
|
|
* the insertion of the elements in a new list as in
|
|
|
|
* ZDIFF/ZINTER/ZUNION */
|
2011-03-10 10:34:52 -05:00
|
|
|
iterzset *it = &op->iter.zset;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-03-10 10:34:52 -05:00
|
|
|
it->zl.zl = op->subject->ptr;
|
2020-12-03 03:12:07 -05:00
|
|
|
it->zl.eptr = ziplistIndex(it->zl.zl,-2);
|
2011-03-10 10:34:52 -05:00
|
|
|
if (it->zl.eptr != NULL) {
|
|
|
|
it->zl.sptr = ziplistNext(it->zl.zl,it->zl.eptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(it->zl.sptr != NULL);
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-03-10 10:34:52 -05:00
|
|
|
it->sl.zs = op->subject->ptr;
|
2020-12-03 03:12:07 -05:00
|
|
|
it->sl.node = it->sl.zs->zsl->tail;
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unsupported type");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void zuiClearIterator(zsetopsrc *op) {
|
|
|
|
if (op->subject == NULL)
|
|
|
|
return;
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->type == OBJ_SET) {
|
2011-03-10 10:34:52 -05:00
|
|
|
iterset *it = &op->iter.set;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_INTSET) {
|
2015-07-27 03:41:48 -04:00
|
|
|
UNUSED(it); /* skip */
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_HT) {
|
2011-03-10 10:34:52 -05:00
|
|
|
dictReleaseIterator(it->ht.di);
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->type == OBJ_ZSET) {
|
2011-03-10 10:34:52 -05:00
|
|
|
iterzset *it = &op->iter.zset;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_ZIPLIST) {
|
2015-07-27 03:41:48 -04:00
|
|
|
UNUSED(it); /* skip */
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_SKIPLIST) {
|
2015-07-27 03:41:48 -04:00
|
|
|
UNUSED(it); /* skip */
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unsupported type");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 02:37:08 -05:00
|
|
|
unsigned long zuiLength(zsetopsrc *op) {
|
2011-03-10 10:34:52 -05:00
|
|
|
if (op->subject == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->type == OBJ_SET) {
|
|
|
|
if (op->encoding == OBJ_ENCODING_INTSET) {
|
2013-08-16 09:26:44 -04:00
|
|
|
return intsetLen(op->subject->ptr);
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_HT) {
|
2013-08-16 09:26:44 -04:00
|
|
|
dict *ht = op->subject->ptr;
|
|
|
|
return dictSize(ht);
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->type == OBJ_ZSET) {
|
|
|
|
if (op->encoding == OBJ_ENCODING_ZIPLIST) {
|
2013-08-16 09:26:44 -04:00
|
|
|
return zzlLength(op->subject->ptr);
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_SKIPLIST) {
|
2013-08-16 09:26:44 -04:00
|
|
|
zset *zs = op->subject->ptr;
|
|
|
|
return zs->zsl->length;
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unsupported type");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the current value is valid. If so, store it in the passed structure
|
|
|
|
* and move to the next element. If not valid, this means we have reached the
|
|
|
|
* end of the structure and can abort. */
|
|
|
|
int zuiNext(zsetopsrc *op, zsetopval *val) {
|
|
|
|
if (op->subject == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
if (val->flags & OPVAL_DIRTY_SDS)
|
|
|
|
sdsfree(val->ele);
|
2011-03-10 10:34:52 -05:00
|
|
|
|
2012-02-21 04:06:04 -05:00
|
|
|
memset(val,0,sizeof(zsetopval));
|
2011-03-10 10:34:52 -05:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->type == OBJ_SET) {
|
2011-03-10 10:34:52 -05:00
|
|
|
iterset *it = &op->iter.set;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_INTSET) {
|
2012-05-23 05:02:38 -04:00
|
|
|
int64_t ell;
|
2012-04-24 05:11:55 -04:00
|
|
|
|
|
|
|
if (!intsetGet(it->is.is,it->is.ii,&ell))
|
2011-03-10 10:34:52 -05:00
|
|
|
return 0;
|
2012-05-23 05:02:38 -04:00
|
|
|
val->ell = ell;
|
2011-03-10 10:34:52 -05:00
|
|
|
val->score = 1.0;
|
|
|
|
|
|
|
|
/* Move to next element. */
|
|
|
|
it->is.ii++;
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_HT) {
|
2011-03-10 10:34:52 -05:00
|
|
|
if (it->ht.de == NULL)
|
|
|
|
return 0;
|
2011-11-08 11:07:55 -05:00
|
|
|
val->ele = dictGetKey(it->ht.de);
|
2011-03-10 10:34:52 -05:00
|
|
|
val->score = 1.0;
|
|
|
|
|
|
|
|
/* Move to next element. */
|
|
|
|
it->ht.de = dictNext(it->ht.di);
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->type == OBJ_ZSET) {
|
2011-03-10 10:34:52 -05:00
|
|
|
iterzset *it = &op->iter.zset;
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-03-10 10:34:52 -05:00
|
|
|
/* No need to check both, but better be explicit. */
|
|
|
|
if (it->zl.eptr == NULL || it->zl.sptr == NULL)
|
|
|
|
return 0;
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssert(ziplistGet(it->zl.eptr,&val->estr,&val->elen,&val->ell));
|
2011-03-10 10:34:52 -05:00
|
|
|
val->score = zzlGetScore(it->zl.sptr);
|
|
|
|
|
2020-12-03 03:12:07 -05:00
|
|
|
/* Move to next element (going backwards, see zuiInitIterator). */
|
|
|
|
zzlPrev(it->zl.zl,&it->zl.eptr,&it->zl.sptr);
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-03-10 10:34:52 -05:00
|
|
|
if (it->sl.node == NULL)
|
|
|
|
return 0;
|
2015-08-04 03:20:55 -04:00
|
|
|
val->ele = it->sl.node->ele;
|
2011-03-10 10:34:52 -05:00
|
|
|
val->score = it->sl.node->score;
|
|
|
|
|
2020-12-03 03:12:07 -05:00
|
|
|
/* Move to next element. (going backwards, see zuiInitIterator) */
|
|
|
|
it->sl.node = it->sl.node->backward;
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unsupported type");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int zuiLongLongFromValue(zsetopval *val) {
|
|
|
|
if (!(val->flags & OPVAL_DIRTY_LL)) {
|
|
|
|
val->flags |= OPVAL_DIRTY_LL;
|
|
|
|
|
|
|
|
if (val->ele != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
if (string2ll(val->ele,sdslen(val->ele),&val->ell))
|
2011-03-10 10:34:52 -05:00
|
|
|
val->flags |= OPVAL_VALID_LL;
|
|
|
|
} else if (val->estr != NULL) {
|
|
|
|
if (string2ll((char*)val->estr,val->elen,&val->ell))
|
|
|
|
val->flags |= OPVAL_VALID_LL;
|
|
|
|
} else {
|
|
|
|
/* The long long was already set, flag as valid. */
|
|
|
|
val->flags |= OPVAL_VALID_LL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return val->flags & OPVAL_VALID_LL;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
sds zuiSdsFromValue(zsetopval *val) {
|
2011-03-10 10:34:52 -05:00
|
|
|
if (val->ele == NULL) {
|
|
|
|
if (val->estr != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
val->ele = sdsnewlen((char*)val->estr,val->elen);
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
2015-08-04 03:20:55 -04:00
|
|
|
val->ele = sdsfromlonglong(val->ell);
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-08-04 03:20:55 -04:00
|
|
|
val->flags |= OPVAL_DIRTY_SDS;
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
return val->ele;
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
/* This is different from zuiSdsFromValue since returns a new SDS string
|
|
|
|
* which is up to the caller to free. */
|
|
|
|
sds zuiNewSdsFromValue(zsetopval *val) {
|
|
|
|
if (val->flags & OPVAL_DIRTY_SDS) {
|
|
|
|
/* We have already one to return! */
|
|
|
|
sds ele = val->ele;
|
|
|
|
val->flags &= ~OPVAL_DIRTY_SDS;
|
|
|
|
val->ele = NULL;
|
|
|
|
return ele;
|
|
|
|
} else if (val->ele) {
|
|
|
|
return sdsdup(val->ele);
|
|
|
|
} else if (val->estr) {
|
|
|
|
return sdsnewlen((char*)val->estr,val->elen);
|
|
|
|
} else {
|
|
|
|
return sdsfromlonglong(val->ell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-10 10:34:52 -05:00
|
|
|
int zuiBufferFromValue(zsetopval *val) {
|
|
|
|
if (val->estr == NULL) {
|
|
|
|
if (val->ele != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
val->elen = sdslen(val->ele);
|
|
|
|
val->estr = (unsigned char*)val->ele;
|
2011-03-10 10:34:52 -05:00
|
|
|
} else {
|
|
|
|
val->elen = ll2string((char*)val->_buf,sizeof(val->_buf),val->ell);
|
|
|
|
val->estr = val->_buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find value pointed to by val in the source pointer to by op. When found,
|
|
|
|
* return 1 and store its score in target. Return 0 otherwise. */
|
|
|
|
int zuiFind(zsetopsrc *op, zsetopval *val, double *score) {
|
|
|
|
if (op->subject == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->type == OBJ_SET) {
|
|
|
|
if (op->encoding == OBJ_ENCODING_INTSET) {
|
2013-08-16 09:26:44 -04:00
|
|
|
if (zuiLongLongFromValue(val) &&
|
|
|
|
intsetFind(op->subject->ptr,val->ell))
|
|
|
|
{
|
2011-03-10 10:34:52 -05:00
|
|
|
*score = 1.0;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_HT) {
|
2013-08-16 09:26:44 -04:00
|
|
|
dict *ht = op->subject->ptr;
|
2015-08-04 03:20:55 -04:00
|
|
|
zuiSdsFromValue(val);
|
2013-08-16 09:26:44 -04:00
|
|
|
if (dictFind(ht,val->ele) != NULL) {
|
2011-03-10 10:34:52 -05:00
|
|
|
*score = 1.0;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->type == OBJ_ZSET) {
|
2015-08-04 03:20:55 -04:00
|
|
|
zuiSdsFromValue(val);
|
2011-03-10 10:34:52 -05:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (op->encoding == OBJ_ENCODING_ZIPLIST) {
|
2013-08-16 09:26:44 -04:00
|
|
|
if (zzlFind(op->subject->ptr,val->ele,score) != NULL) {
|
2011-03-10 10:34:52 -05:00
|
|
|
/* Score is already set by zzlFind. */
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (op->encoding == OBJ_ENCODING_SKIPLIST) {
|
2013-08-16 09:26:44 -04:00
|
|
|
zset *zs = op->subject->ptr;
|
2011-03-10 10:34:52 -05:00
|
|
|
dictEntry *de;
|
2013-08-16 09:26:44 -04:00
|
|
|
if ((de = dictFind(zs->dict,val->ele)) != NULL) {
|
2011-11-08 11:07:55 -05:00
|
|
|
*score = *(double*)dictGetVal(de);
|
2011-03-10 10:34:52 -05:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unsupported type");
|
2011-03-10 10:34:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int zuiCompareByCardinality(const void *s1, const void *s2) {
|
2017-12-08 02:37:08 -05:00
|
|
|
unsigned long first = zuiLength((zsetopsrc*)s1);
|
|
|
|
unsigned long second = zuiLength((zsetopsrc*)s2);
|
|
|
|
if (first > second) return 1;
|
|
|
|
if (first < second) return -1;
|
|
|
|
return 0;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2020-11-15 07:14:25 -05:00
|
|
|
static int zuiCompareByRevCardinality(const void *s1, const void *s2) {
|
|
|
|
return zuiCompareByCardinality(s1, s2) * -1;
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
#define REDIS_AGGR_SUM 1
|
|
|
|
#define REDIS_AGGR_MIN 2
|
|
|
|
#define REDIS_AGGR_MAX 3
|
2011-11-08 11:07:55 -05:00
|
|
|
#define zunionInterDictValue(_e) (dictGetVal(_e) == NULL ? 1.0 : *(double*)dictGetVal(_e))
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
inline static void zunionInterAggregate(double *target, double val, int aggregate) {
|
|
|
|
if (aggregate == REDIS_AGGR_SUM) {
|
|
|
|
*target = *target + val;
|
2010-07-29 15:31:58 -04:00
|
|
|
/* The result of adding two doubles is NaN when one variable
|
|
|
|
* is +inf and the other is -inf. When these numbers are added,
|
|
|
|
* we maintain the convention of the result being 0.0. */
|
|
|
|
if (isnan(*target)) *target = 0.0;
|
2010-06-21 18:07:48 -04:00
|
|
|
} else if (aggregate == REDIS_AGGR_MIN) {
|
|
|
|
*target = val < *target ? val : *target;
|
|
|
|
} else if (aggregate == REDIS_AGGR_MAX) {
|
|
|
|
*target = val > *target ? val : *target;
|
|
|
|
} else {
|
|
|
|
/* safety net */
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown ZUNION/INTER aggregate type");
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-15 07:14:25 -05:00
|
|
|
static int zsetDictGetMaxElementLength(dict *d) {
|
|
|
|
dictIterator *di;
|
|
|
|
dictEntry *de;
|
|
|
|
size_t maxelelen = 0;
|
|
|
|
|
|
|
|
di = dictGetIterator(d);
|
|
|
|
|
|
|
|
while((de = dictNext(di)) != NULL) {
|
|
|
|
sds ele = dictGetKey(de);
|
|
|
|
if (sdslen(ele) > maxelelen) maxelelen = sdslen(ele);
|
|
|
|
}
|
|
|
|
|
|
|
|
dictReleaseIterator(di);
|
|
|
|
|
|
|
|
return maxelelen;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zdiffAlgorithm1(zsetopsrc *src, long setnum, zset *dstzset, size_t *maxelelen) {
|
|
|
|
/* DIFF Algorithm 1:
|
|
|
|
*
|
|
|
|
* We perform the diff by iterating all the elements of the first set,
|
|
|
|
* and only adding it to the target set if the element does not exist
|
|
|
|
* into all the other sets.
|
|
|
|
*
|
|
|
|
* This way we perform at max N*M operations, where N is the size of
|
|
|
|
* the first set, and M the number of sets.
|
|
|
|
*
|
|
|
|
* There is also a O(K*log(K)) cost for adding the resulting elements
|
|
|
|
* to the target set, where K is the final size of the target set.
|
|
|
|
*
|
|
|
|
* The final complexity of this algorithm is O(N*M + K*log(K)). */
|
|
|
|
int j;
|
|
|
|
zsetopval zval;
|
|
|
|
zskiplistNode *znode;
|
|
|
|
sds tmp;
|
|
|
|
|
|
|
|
/* With algorithm 1 it is better to order the sets to subtract
|
|
|
|
* by decreasing size, so that we are more likely to find
|
|
|
|
* duplicated elements ASAP. */
|
|
|
|
qsort(src+1,setnum-1,sizeof(zsetopsrc),zuiCompareByRevCardinality);
|
|
|
|
|
|
|
|
memset(&zval, 0, sizeof(zval));
|
|
|
|
zuiInitIterator(&src[0]);
|
|
|
|
while (zuiNext(&src[0],&zval)) {
|
|
|
|
double value;
|
|
|
|
int exists = 0;
|
|
|
|
|
|
|
|
for (j = 1; j < setnum; j++) {
|
|
|
|
/* It is not safe to access the zset we are
|
|
|
|
* iterating, so explicitly check for equal object.
|
|
|
|
* This check isn't really needed anymore since we already
|
|
|
|
* check for a duplicate set in the zsetChooseDiffAlgorithm
|
|
|
|
* function, but we're leaving it for future-proofing. */
|
|
|
|
if (src[j].subject == src[0].subject ||
|
|
|
|
zuiFind(&src[j],&zval,&value)) {
|
|
|
|
exists = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!exists) {
|
|
|
|
tmp = zuiNewSdsFromValue(&zval);
|
|
|
|
znode = zslInsert(dstzset->zsl,zval.score,tmp);
|
|
|
|
dictAdd(dstzset->dict,tmp,&znode->score);
|
|
|
|
if (sdslen(tmp) > *maxelelen) *maxelelen = sdslen(tmp);
|
|
|
|
}
|
|
|
|
}
|
2020-11-16 09:37:15 -05:00
|
|
|
zuiClearIterator(&src[0]);
|
2020-11-15 07:14:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void zdiffAlgorithm2(zsetopsrc *src, long setnum, zset *dstzset, size_t *maxelelen) {
|
|
|
|
/* DIFF Algorithm 2:
|
|
|
|
*
|
|
|
|
* Add all the elements of the first set to the auxiliary set.
|
|
|
|
* Then remove all the elements of all the next sets from it.
|
|
|
|
*
|
|
|
|
|
|
|
|
* This is O(L + (N-K)log(N)) where L is the sum of all the elements in every
|
|
|
|
* set, N is the size of the first set, and K is the size of the result set.
|
|
|
|
*
|
|
|
|
* Note that from the (L-N) dict searches, (N-K) got to the zsetRemoveFromSkiplist
|
|
|
|
* which costs log(N)
|
|
|
|
*
|
|
|
|
* There is also a O(K) cost at the end for finding the largest element
|
|
|
|
* size, but this doesn't change the algorithm complexity since K < L, and
|
|
|
|
* O(2L) is the same as O(L). */
|
|
|
|
int j;
|
|
|
|
int cardinality = 0;
|
|
|
|
zsetopval zval;
|
|
|
|
zskiplistNode *znode;
|
|
|
|
sds tmp;
|
|
|
|
|
|
|
|
for (j = 0; j < setnum; j++) {
|
|
|
|
if (zuiLength(&src[j]) == 0) continue;
|
|
|
|
|
|
|
|
memset(&zval, 0, sizeof(zval));
|
|
|
|
zuiInitIterator(&src[j]);
|
|
|
|
while (zuiNext(&src[j],&zval)) {
|
|
|
|
if (j == 0) {
|
|
|
|
tmp = zuiNewSdsFromValue(&zval);
|
|
|
|
znode = zslInsert(dstzset->zsl,zval.score,tmp);
|
|
|
|
dictAdd(dstzset->dict,tmp,&znode->score);
|
|
|
|
cardinality++;
|
|
|
|
} else {
|
2020-11-16 09:37:15 -05:00
|
|
|
tmp = zuiSdsFromValue(&zval);
|
2020-11-15 07:14:25 -05:00
|
|
|
if (zsetRemoveFromSkiplist(dstzset, tmp)) {
|
|
|
|
cardinality--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Exit if result set is empty as any additional removal
|
|
|
|
* of elements will have no effect. */
|
|
|
|
if (cardinality == 0) break;
|
|
|
|
}
|
2020-11-16 09:37:15 -05:00
|
|
|
zuiClearIterator(&src[j]);
|
2020-11-15 07:14:25 -05:00
|
|
|
|
|
|
|
if (cardinality == 0) break;
|
|
|
|
}
|
|
|
|
|
2021-06-10 08:39:33 -04:00
|
|
|
/* Resize dict if needed after removing multiple elements */
|
2020-11-15 07:14:25 -05:00
|
|
|
if (htNeedsResize(dstzset->dict)) dictResize(dstzset->dict);
|
|
|
|
|
|
|
|
/* Using this algorithm, we can't calculate the max element as we go,
|
|
|
|
* we have to iterate through all elements to find the max one after. */
|
|
|
|
*maxelelen = zsetDictGetMaxElementLength(dstzset->dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int zsetChooseDiffAlgorithm(zsetopsrc *src, long setnum) {
|
|
|
|
int j;
|
|
|
|
|
|
|
|
/* Select what DIFF algorithm to use.
|
|
|
|
*
|
|
|
|
* Algorithm 1 is O(N*M + K*log(K)) where N is the size of the
|
|
|
|
* first set, M the total number of sets, and K is the size of the
|
|
|
|
* result set.
|
|
|
|
*
|
|
|
|
* Algorithm 2 is O(L + (N-K)log(N)) where L is the total number of elements
|
|
|
|
* in all the sets, N is the size of the first set, and K is the size of the
|
|
|
|
* result set.
|
|
|
|
*
|
|
|
|
* We compute what is the best bet with the current input here. */
|
|
|
|
long long algo_one_work = 0;
|
|
|
|
long long algo_two_work = 0;
|
|
|
|
|
|
|
|
for (j = 0; j < setnum; j++) {
|
|
|
|
/* If any other set is equal to the first set, there is nothing to be
|
|
|
|
* done, since we would remove all elements anyway. */
|
|
|
|
if (j > 0 && src[0].subject == src[j].subject) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
algo_one_work += zuiLength(&src[0]);
|
|
|
|
algo_two_work += zuiLength(&src[j]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Algorithm 1 has better constant times and performs less operations
|
|
|
|
* if there are elements in common. Give it some advantage. */
|
|
|
|
algo_one_work /= 2;
|
|
|
|
return (algo_one_work <= algo_two_work) ? 1 : 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zdiff(zsetopsrc *src, long setnum, zset *dstzset, size_t *maxelelen) {
|
|
|
|
/* Skip everything if the smallest input is empty. */
|
|
|
|
if (zuiLength(&src[0]) > 0) {
|
|
|
|
int diff_algo = zsetChooseDiffAlgorithm(src, setnum);
|
|
|
|
if (diff_algo == 1) {
|
|
|
|
zdiffAlgorithm1(src, setnum, dstzset, maxelelen);
|
|
|
|
} else if (diff_algo == 2) {
|
|
|
|
zdiffAlgorithm2(src, setnum, dstzset, maxelelen);
|
|
|
|
} else if (diff_algo != 0) {
|
|
|
|
serverPanic("Unknown algorithm");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
dictType setAccumulatorDictType = {
|
|
|
|
dictSdsHash, /* hash function */
|
|
|
|
NULL, /* key dup */
|
|
|
|
NULL, /* val dup */
|
|
|
|
dictSdsKeyCompare, /* key compare */
|
|
|
|
NULL, /* key destructor */
|
Limit the main db and expires dictionaries to expand (#7954)
As we know, redis may reject user's requests or evict some keys if
used memory is over maxmemory. Dictionaries expanding may make
things worse, some big dictionaries, such as main db and expires dict,
may eat huge memory at once for allocating a new big hash table and be
far more than maxmemory after expanding.
There are related issues: #4213 #4583
More details, when expand dict in redis, we will allocate a new big
ht[1] that generally is double of ht[0], The size of ht[1] will be
very big if ht[0] already is big. For db dict, if we have more than
64 million keys, we need to cost 1GB for ht[1] when dict expands.
If the sum of used memory and new hash table of dict needed exceeds
maxmemory, we shouldn't allow the dict to expand. Because, if we
enable keys eviction, we still couldn't add much more keys after
eviction and rehashing, what's worse, redis will keep less keys when
redis only remains a little memory for storing new hash table instead
of users' data. Moreover users can't write data in redis if disable
keys eviction.
What this commit changed ?
Add a new member function expandAllowed for dict type, it provide a way
for caller to allow expand or not. We expose two parameters for this
function: more memory needed for expanding and dict current load factor,
users can implement a function to make a decision by them.
For main db dict and expires dict type, these dictionaries may be very
big and cost huge memory for expanding, so we implement a judgement
function: we can stop dict to expand provisionally if used memory will
be over maxmemory after dict expands, but to guarantee the performance
of redis, we still allow dict to expand if dict load factor exceeds the
safe load factor.
Add test cases to verify we don't allow main db to expand when left
memory is not enough, so that avoid keys eviction.
Other changes:
For new hash table size when expand. Before this commit, the size is
that double used of dict and later _dictNextPower. Actually we aim to
control a dict load factor between 0.5 and 1.0. Now we replace *2 with
+1, since the first check is that used >= size, the outcome of before
will usually be the same as _dictNextPower(used+1). The only case where
it'll differ is when dict_can_resize is false during fork, so that later
the _dictNextPower(used*2) will cause the dict to jump to *4 (i.e.
_dictNextPower(1025*2) will return 4096).
Fix rehash test cases due to changing algorithm of new hash table size
when expand.
2020-12-06 04:53:04 -05:00
|
|
|
NULL, /* val destructor */
|
|
|
|
NULL /* allow to expand */
|
2015-08-04 03:20:55 -04:00
|
|
|
};
|
|
|
|
|
2020-11-15 07:14:25 -05:00
|
|
|
/* The zunionInterDiffGenericCommand() function is called in order to implement the
|
|
|
|
* following commands: ZUNION, ZINTER, ZDIFF, ZUNIONSTORE, ZINTERSTORE, ZDIFFSTORE.
|
2020-09-11 04:59:15 -04:00
|
|
|
*
|
2020-11-15 07:14:25 -05:00
|
|
|
* 'numkeysIndex' parameter position of key number. for ZUNION/ZINTER/ZDIFF command,
|
|
|
|
* this value is 1, for ZUNIONSTORE/ZINTERSTORE/ZDIFFSTORE command, this value is 2.
|
2020-09-11 04:59:15 -04:00
|
|
|
*
|
2020-11-15 07:14:25 -05:00
|
|
|
* 'op' SET_OP_INTER, SET_OP_UNION or SET_OP_DIFF.
|
2020-09-11 04:59:15 -04:00
|
|
|
*/
|
2020-11-15 07:14:25 -05:00
|
|
|
void zunionInterDiffGenericCommand(client *c, robj *dstkey, int numkeysIndex, int op) {
|
2011-12-19 06:29:46 -05:00
|
|
|
int i, j;
|
|
|
|
long setnum;
|
2010-06-21 18:07:48 -04:00
|
|
|
int aggregate = REDIS_AGGR_SUM;
|
|
|
|
zsetopsrc *src;
|
2011-03-10 10:34:52 -05:00
|
|
|
zsetopval zval;
|
2015-08-04 03:20:55 -04:00
|
|
|
sds tmp;
|
2017-12-08 02:37:08 -05:00
|
|
|
size_t maxelelen = 0;
|
2010-06-21 18:07:48 -04:00
|
|
|
robj *dstobj;
|
|
|
|
zset *dstzset;
|
2010-08-03 14:49:53 -04:00
|
|
|
zskiplistNode *znode;
|
2020-09-11 04:59:15 -04:00
|
|
|
int withscores = 0;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
/* expect setnum input keys to be given */
|
2020-09-11 04:59:15 -04:00
|
|
|
if ((getLongFromObjectOrReply(c, c->argv[numkeysIndex], &setnum, NULL) != C_OK))
|
2011-12-19 06:29:46 -05:00
|
|
|
return;
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
if (setnum < 1) {
|
2021-04-15 11:36:51 -04:00
|
|
|
addReplyErrorFormat(c,
|
|
|
|
"at least 1 input key is needed for %s", c->cmd->name);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* test if the expected number of keys would overflow */
|
2020-09-11 04:59:15 -04:00
|
|
|
if (setnum > (c->argc-(numkeysIndex+1))) {
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* read keys to be used for input */
|
2011-03-10 10:34:52 -05:00
|
|
|
src = zcalloc(sizeof(zsetopsrc) * setnum);
|
2020-09-11 04:59:15 -04:00
|
|
|
for (i = 0, j = numkeysIndex+1; i < setnum; i++, j++) {
|
2021-01-13 04:58:12 -05:00
|
|
|
robj *obj = dstkey ?
|
|
|
|
lookupKeyWrite(c->db,c->argv[j]) :
|
|
|
|
lookupKeyRead(c->db,c->argv[j]);
|
2011-03-10 10:34:52 -05:00
|
|
|
if (obj != NULL) {
|
2015-07-26 09:28:00 -04:00
|
|
|
if (obj->type != OBJ_ZSET && obj->type != OBJ_SET) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zfree(src);
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.wrongtypeerr);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-03-10 10:34:52 -05:00
|
|
|
|
|
|
|
src[i].subject = obj;
|
|
|
|
src[i].type = obj->type;
|
|
|
|
src[i].encoding = obj->encoding;
|
|
|
|
} else {
|
|
|
|
src[i].subject = NULL;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2011-03-10 10:34:52 -05:00
|
|
|
/* Default all weights to 1. */
|
2010-06-21 18:07:48 -04:00
|
|
|
src[i].weight = 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parse optional extra arguments */
|
|
|
|
if (j < c->argc) {
|
|
|
|
int remaining = c->argc - j;
|
|
|
|
|
|
|
|
while (remaining) {
|
2020-11-15 07:14:25 -05:00
|
|
|
if (op != SET_OP_DIFF &&
|
|
|
|
remaining >= (setnum + 1) &&
|
2015-08-04 03:20:55 -04:00
|
|
|
!strcasecmp(c->argv[j]->ptr,"weights"))
|
|
|
|
{
|
2010-06-21 18:07:48 -04:00
|
|
|
j++; remaining--;
|
|
|
|
for (i = 0; i < setnum; i++, j++, remaining--) {
|
2010-07-29 16:13:31 -04:00
|
|
|
if (getDoubleFromObjectOrReply(c,c->argv[j],&src[i].weight,
|
2015-07-26 17:17:55 -04:00
|
|
|
"weight value is not a float") != C_OK)
|
2010-07-29 16:13:31 -04:00
|
|
|
{
|
|
|
|
zfree(src);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
2010-07-29 16:13:31 -04:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2020-11-15 07:14:25 -05:00
|
|
|
} else if (op != SET_OP_DIFF &&
|
|
|
|
remaining >= 2 &&
|
2015-08-04 03:20:55 -04:00
|
|
|
!strcasecmp(c->argv[j]->ptr,"aggregate"))
|
|
|
|
{
|
2010-06-21 18:07:48 -04:00
|
|
|
j++; remaining--;
|
|
|
|
if (!strcasecmp(c->argv[j]->ptr,"sum")) {
|
|
|
|
aggregate = REDIS_AGGR_SUM;
|
|
|
|
} else if (!strcasecmp(c->argv[j]->ptr,"min")) {
|
|
|
|
aggregate = REDIS_AGGR_MIN;
|
|
|
|
} else if (!strcasecmp(c->argv[j]->ptr,"max")) {
|
|
|
|
aggregate = REDIS_AGGR_MAX;
|
|
|
|
} else {
|
|
|
|
zfree(src);
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
j++; remaining--;
|
2020-09-11 04:59:15 -04:00
|
|
|
} else if (remaining >= 1 &&
|
2020-11-15 07:14:25 -05:00
|
|
|
!dstkey &&
|
2020-09-11 04:59:15 -04:00
|
|
|
!strcasecmp(c->argv[j]->ptr,"withscores"))
|
|
|
|
{
|
|
|
|
j++; remaining--;
|
|
|
|
withscores = 1;
|
2010-06-21 18:07:48 -04:00
|
|
|
} else {
|
|
|
|
zfree(src);
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-15 07:14:25 -05:00
|
|
|
if (op != SET_OP_DIFF) {
|
|
|
|
/* sort sets from the smallest to largest, this will improve our
|
|
|
|
* algorithm's performance */
|
|
|
|
qsort(src,setnum,sizeof(zsetopsrc),zuiCompareByCardinality);
|
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
dstobj = createZsetObject();
|
|
|
|
dstzset = dstobj->ptr;
|
2011-04-06 10:39:18 -04:00
|
|
|
memset(&zval, 0, sizeof(zval));
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2015-07-27 03:41:48 -04:00
|
|
|
if (op == SET_OP_INTER) {
|
2011-03-10 10:34:52 -05:00
|
|
|
/* Skip everything if the smallest input is empty. */
|
|
|
|
if (zuiLength(&src[0]) > 0) {
|
|
|
|
/* Precondition: as src[0] is non-empty and the inputs are ordered
|
|
|
|
* by size, all src[i > 0] are non-empty too. */
|
2013-08-16 09:26:44 -04:00
|
|
|
zuiInitIterator(&src[0]);
|
2011-03-10 10:34:52 -05:00
|
|
|
while (zuiNext(&src[0],&zval)) {
|
2010-09-16 09:36:36 -04:00
|
|
|
double score, value;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2011-03-10 10:34:52 -05:00
|
|
|
score = src[0].weight * zval.score;
|
2011-12-23 03:27:31 -05:00
|
|
|
if (isnan(score)) score = 0;
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
for (j = 1; j < setnum; j++) {
|
2011-05-24 04:35:48 -04:00
|
|
|
/* It is not safe to access the zset we are
|
2011-05-15 11:28:06 -04:00
|
|
|
* iterating, so explicitly check for equal object. */
|
2011-05-15 09:33:01 -04:00
|
|
|
if (src[j].subject == src[0].subject) {
|
|
|
|
value = zval.score*src[j].weight;
|
|
|
|
zunionInterAggregate(&score,value,aggregate);
|
|
|
|
} else if (zuiFind(&src[j],&zval,&value)) {
|
2011-03-10 10:34:52 -05:00
|
|
|
value *= src[j].weight;
|
2010-09-16 09:36:36 -04:00
|
|
|
zunionInterAggregate(&score,value,aggregate);
|
2010-06-21 18:07:48 -04:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-10 10:34:52 -05:00
|
|
|
/* Only continue when present in every input. */
|
2010-09-16 09:36:36 -04:00
|
|
|
if (j == setnum) {
|
2015-08-04 03:20:55 -04:00
|
|
|
tmp = zuiNewSdsFromValue(&zval);
|
2011-03-10 10:34:52 -05:00
|
|
|
znode = zslInsert(dstzset->zsl,score,tmp);
|
|
|
|
dictAdd(dstzset->dict,tmp,&znode->score);
|
2015-08-04 03:20:55 -04:00
|
|
|
if (sdslen(tmp) > maxelelen) maxelelen = sdslen(tmp);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-16 09:26:44 -04:00
|
|
|
zuiClearIterator(&src[0]);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2015-07-27 03:41:48 -04:00
|
|
|
} else if (op == SET_OP_UNION) {
|
2015-08-04 03:20:55 -04:00
|
|
|
dict *accumulator = dictCreate(&setAccumulatorDictType,NULL);
|
2014-06-06 12:04:04 -04:00
|
|
|
dictIterator *di;
|
2016-05-09 11:01:09 -04:00
|
|
|
dictEntry *de, *existing;
|
2014-06-06 12:04:04 -04:00
|
|
|
double score;
|
|
|
|
|
|
|
|
if (setnum) {
|
|
|
|
/* Our union is at least as large as the largest set.
|
|
|
|
* Resize the dictionary ASAP to avoid useless rehashing. */
|
2014-06-06 12:59:17 -04:00
|
|
|
dictExpand(accumulator,zuiLength(&src[setnum-1]));
|
2014-06-06 12:04:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Step 1: Create a dictionary of elements -> aggregated-scores
|
|
|
|
* by iterating one sorted set after the other. */
|
2010-06-21 18:07:48 -04:00
|
|
|
for (i = 0; i < setnum; i++) {
|
2014-06-06 12:04:04 -04:00
|
|
|
if (zuiLength(&src[i]) == 0) continue;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2013-08-16 09:26:44 -04:00
|
|
|
zuiInitIterator(&src[i]);
|
2011-03-10 10:34:52 -05:00
|
|
|
while (zuiNext(&src[i],&zval)) {
|
2014-06-06 12:04:04 -04:00
|
|
|
/* Initialize value */
|
2011-03-10 10:34:52 -05:00
|
|
|
score = src[i].weight * zval.score;
|
2011-12-23 03:27:31 -05:00
|
|
|
if (isnan(score)) score = 0;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2014-06-06 12:04:04 -04:00
|
|
|
/* Search for this element in the accumulating dictionary. */
|
2016-05-09 11:01:09 -04:00
|
|
|
de = dictAddRaw(accumulator,zuiSdsFromValue(&zval),&existing);
|
2014-06-06 12:04:04 -04:00
|
|
|
/* If we don't have it, we need to create a new entry. */
|
2016-05-09 11:01:09 -04:00
|
|
|
if (!existing) {
|
2015-08-04 03:20:55 -04:00
|
|
|
tmp = zuiNewSdsFromValue(&zval);
|
2014-06-06 12:04:04 -04:00
|
|
|
/* Remember the longest single element encountered,
|
|
|
|
* to understand if it's possible to convert to ziplist
|
|
|
|
* at the end. */
|
2015-08-04 03:20:55 -04:00
|
|
|
if (sdslen(tmp) > maxelelen) maxelelen = sdslen(tmp);
|
2016-05-09 11:01:09 -04:00
|
|
|
/* Update the element with its initial score. */
|
|
|
|
dictSetKey(accumulator, de, tmp);
|
2014-06-06 12:04:04 -04:00
|
|
|
dictSetDoubleVal(de,score);
|
|
|
|
} else {
|
|
|
|
/* Update the score with the score of the new instance
|
|
|
|
* of the element found in the current sorted set.
|
|
|
|
*
|
|
|
|
* Here we access directly the dictEntry double
|
|
|
|
* value inside the union as it is a big speedup
|
|
|
|
* compared to using the getDouble/setDouble API. */
|
2016-05-09 11:01:09 -04:00
|
|
|
zunionInterAggregate(&existing->v.d,score,aggregate);
|
2012-06-05 15:50:10 -04:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2013-08-16 09:26:44 -04:00
|
|
|
zuiClearIterator(&src[i]);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2014-06-06 12:04:04 -04:00
|
|
|
|
|
|
|
/* Step 2: convert the dictionary into the final sorted set. */
|
|
|
|
di = dictGetIterator(accumulator);
|
|
|
|
|
|
|
|
/* We now are aware of the final size of the resulting sorted set,
|
|
|
|
* let's resize the dictionary embedded inside the sorted set to the
|
|
|
|
* right size, in order to save rehashing time. */
|
|
|
|
dictExpand(dstzset->dict,dictSize(accumulator));
|
|
|
|
|
|
|
|
while((de = dictNext(di)) != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
sds ele = dictGetKey(de);
|
2014-06-06 12:04:04 -04:00
|
|
|
score = dictGetDoubleVal(de);
|
|
|
|
znode = zslInsert(dstzset->zsl,score,ele);
|
|
|
|
dictAdd(dstzset->dict,ele,&znode->score);
|
|
|
|
}
|
|
|
|
dictReleaseIterator(di);
|
|
|
|
dictRelease(accumulator);
|
2020-11-15 07:14:25 -05:00
|
|
|
} else if (op == SET_OP_DIFF) {
|
|
|
|
zdiff(src, setnum, dstzset, &maxelelen);
|
2010-06-21 18:07:48 -04:00
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown operator");
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2020-09-11 04:59:15 -04:00
|
|
|
if (dstkey) {
|
|
|
|
if (dstzset->zsl->length) {
|
|
|
|
zsetConvertToZiplistIfNeeded(dstobj, maxelelen);
|
|
|
|
setKey(c, c->db, dstkey, dstobj);
|
|
|
|
addReplyLongLong(c, zsetLength(dstobj));
|
|
|
|
notifyKeyspaceEvent(NOTIFY_ZSET,
|
2020-11-15 07:14:25 -05:00
|
|
|
(op == SET_OP_UNION) ? "zunionstore" :
|
|
|
|
(op == SET_OP_INTER ? "zinterstore" : "zdiffstore"),
|
2020-09-11 04:59:15 -04:00
|
|
|
dstkey, c->db->id);
|
2016-05-09 02:12:38 -04:00
|
|
|
server.dirty++;
|
2020-09-11 04:59:15 -04:00
|
|
|
} else {
|
|
|
|
addReply(c, shared.czero);
|
|
|
|
if (dbDelete(c->db, dstkey)) {
|
|
|
|
signalModifiedKey(c, c->db, dstkey);
|
|
|
|
notifyKeyspaceEvent(NOTIFY_GENERIC, "del", dstkey, c->db->id);
|
|
|
|
server.dirty++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unsigned long length = dstzset->zsl->length;
|
|
|
|
zskiplist *zsl = dstzset->zsl;
|
|
|
|
zskiplistNode *zn = zsl->header->level[0].forward;
|
2021-01-26 10:55:32 -05:00
|
|
|
/* In case of WITHSCORES, respond with a single array in RESP2, and
|
|
|
|
* nested arrays in RESP3. We can't use a map response type since the
|
|
|
|
* client library needs to know to respect the order. */
|
2020-09-11 04:59:15 -04:00
|
|
|
if (withscores && c->resp == 2)
|
|
|
|
addReplyArrayLen(c, length*2);
|
|
|
|
else
|
|
|
|
addReplyArrayLen(c, length);
|
|
|
|
|
|
|
|
while (zn != NULL) {
|
|
|
|
if (withscores && c->resp > 2) addReplyArrayLen(c,2);
|
|
|
|
addReplyBulkCBuffer(c,zn->ele,sdslen(zn->ele));
|
|
|
|
if (withscores) addReplyDouble(c,zn->score);
|
|
|
|
zn = zn->level[0].forward;
|
2016-05-09 02:12:38 -04:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2020-07-11 08:52:41 -04:00
|
|
|
decrRefCount(dstobj);
|
2010-06-21 18:07:48 -04:00
|
|
|
zfree(src);
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zunionstoreCommand(client *c) {
|
2020-11-15 07:14:25 -05:00
|
|
|
zunionInterDiffGenericCommand(c, c->argv[1], 2, SET_OP_UNION);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zinterstoreCommand(client *c) {
|
2020-11-15 07:14:25 -05:00
|
|
|
zunionInterDiffGenericCommand(c, c->argv[1], 2, SET_OP_INTER);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zdiffstoreCommand(client *c) {
|
|
|
|
zunionInterDiffGenericCommand(c, c->argv[1], 2, SET_OP_DIFF);
|
2020-09-11 04:59:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void zunionCommand(client *c) {
|
2020-11-15 07:14:25 -05:00
|
|
|
zunionInterDiffGenericCommand(c, NULL, 1, SET_OP_UNION);
|
2020-09-11 04:59:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void zinterCommand(client *c) {
|
2020-11-15 07:14:25 -05:00
|
|
|
zunionInterDiffGenericCommand(c, NULL, 1, SET_OP_INTER);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zdiffCommand(client *c) {
|
|
|
|
zunionInterDiffGenericCommand(c, NULL, 1, SET_OP_DIFF);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
typedef enum {
|
|
|
|
ZRANGE_DIRECTION_AUTO = 0,
|
|
|
|
ZRANGE_DIRECTION_FORWARD,
|
|
|
|
ZRANGE_DIRECTION_REVERSE
|
|
|
|
} zrange_direction;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
ZRANGE_CONSUMER_TYPE_CLIENT = 0,
|
|
|
|
ZRANGE_CONSUMER_TYPE_INTERNAL
|
|
|
|
} zrange_consumer_type;
|
|
|
|
|
|
|
|
typedef struct zrange_result_handler zrange_result_handler;
|
|
|
|
|
|
|
|
typedef void (*zrangeResultBeginFunction)(zrange_result_handler *c);
|
|
|
|
typedef void (*zrangeResultFinalizeFunction)(
|
|
|
|
zrange_result_handler *c, size_t result_count);
|
|
|
|
typedef void (*zrangeResultEmitCBufferFunction)(
|
|
|
|
zrange_result_handler *c, const void *p, size_t len, double score);
|
|
|
|
typedef void (*zrangeResultEmitLongLongFunction)(
|
|
|
|
zrange_result_handler *c, long long ll, double score);
|
|
|
|
|
|
|
|
void zrangeGenericCommand (zrange_result_handler *handler, int argc_start, int store,
|
|
|
|
zrange_type rangetype, zrange_direction direction);
|
|
|
|
|
|
|
|
/* Interface struct for ZRANGE/ZRANGESTORE generic implementation.
|
|
|
|
* There is one implementation of this interface that sends a RESP reply to clients.
|
|
|
|
* and one implementation that stores the range result into a zset object. */
|
|
|
|
struct zrange_result_handler {
|
|
|
|
zrange_consumer_type type;
|
|
|
|
client *client;
|
|
|
|
robj *dstkey;
|
|
|
|
robj *dstobj;
|
|
|
|
void *userdata;
|
|
|
|
int withscores;
|
|
|
|
int should_emit_array_length;
|
|
|
|
zrangeResultBeginFunction beginResultEmission;
|
|
|
|
zrangeResultFinalizeFunction finalizeResultEmission;
|
|
|
|
zrangeResultEmitCBufferFunction emitResultFromCBuffer;
|
|
|
|
zrangeResultEmitLongLongFunction emitResultFromLongLong;
|
|
|
|
};
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* Result handler methods for responding the ZRANGE to clients. */
|
|
|
|
static void zrangeResultBeginClient(zrange_result_handler *handler) {
|
|
|
|
handler->userdata = addReplyDeferredLen(handler->client);
|
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
static void zrangeResultEmitCBufferToClient(zrange_result_handler *handler,
|
|
|
|
const void *value, size_t value_length_in_bytes, double score)
|
|
|
|
{
|
|
|
|
if (handler->should_emit_array_length) {
|
|
|
|
addReplyArrayLen(handler->client, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
addReplyBulkCBuffer(handler->client, value, value_length_in_bytes);
|
|
|
|
|
|
|
|
if (handler->withscores) {
|
|
|
|
addReplyDouble(handler->client, score);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultEmitLongLongToClient(zrange_result_handler *handler,
|
|
|
|
long long value, double score)
|
|
|
|
{
|
|
|
|
if (handler->should_emit_array_length) {
|
|
|
|
addReplyArrayLen(handler->client, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
addReplyBulkLongLong(handler->client, value);
|
|
|
|
|
|
|
|
if (handler->withscores) {
|
|
|
|
addReplyDouble(handler->client, score);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultFinalizeClient(zrange_result_handler *handler,
|
|
|
|
size_t result_count)
|
|
|
|
{
|
2021-01-26 10:55:32 -05:00
|
|
|
/* In case of WITHSCORES, respond with a single array in RESP2, and
|
|
|
|
* nested arrays in RESP3. We can't use a map response type since the
|
|
|
|
* client library needs to know to respect the order. */
|
2021-01-07 03:58:53 -05:00
|
|
|
if (handler->withscores && (handler->client->resp == 2)) {
|
|
|
|
result_count *= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
setDeferredArrayLen(handler->client, handler->userdata, result_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Result handler methods for storing the ZRANGESTORE to a zset. */
|
|
|
|
static void zrangeResultBeginStore(zrange_result_handler *handler)
|
|
|
|
{
|
|
|
|
handler->dstobj = createZsetZiplistObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultEmitCBufferForStore(zrange_result_handler *handler,
|
|
|
|
const void *value, size_t value_length_in_bytes, double score)
|
|
|
|
{
|
|
|
|
double newscore;
|
|
|
|
int retflags = 0;
|
|
|
|
sds ele = sdsnewlen(value, value_length_in_bytes);
|
2021-03-10 09:09:43 -05:00
|
|
|
int retval = zsetAdd(handler->dstobj, score, ele, ZADD_IN_NONE, &retflags, &newscore);
|
2021-01-07 03:58:53 -05:00
|
|
|
sdsfree(ele);
|
|
|
|
serverAssert(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultEmitLongLongForStore(zrange_result_handler *handler,
|
|
|
|
long long value, double score)
|
|
|
|
{
|
|
|
|
double newscore;
|
|
|
|
int retflags = 0;
|
|
|
|
sds ele = sdsfromlonglong(value);
|
2021-03-10 09:09:43 -05:00
|
|
|
int retval = zsetAdd(handler->dstobj, score, ele, ZADD_IN_NONE, &retflags, &newscore);
|
2021-01-07 03:58:53 -05:00
|
|
|
sdsfree(ele);
|
|
|
|
serverAssert(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultFinalizeStore(zrange_result_handler *handler, size_t result_count)
|
|
|
|
{
|
|
|
|
if (result_count) {
|
|
|
|
setKey(handler->client, handler->client->db, handler->dstkey, handler->dstobj);
|
|
|
|
addReplyLongLong(handler->client, result_count);
|
|
|
|
notifyKeyspaceEvent(NOTIFY_ZSET, "zrangestore", handler->dstkey, handler->client->db->id);
|
|
|
|
server.dirty++;
|
|
|
|
} else {
|
|
|
|
addReply(handler->client, shared.czero);
|
|
|
|
if (dbDelete(handler->client->db, handler->dstkey)) {
|
|
|
|
signalModifiedKey(handler->client, handler->client->db, handler->dstkey);
|
|
|
|
notifyKeyspaceEvent(NOTIFY_GENERIC, "del", handler->dstkey, handler->client->db->id);
|
|
|
|
server.dirty++;
|
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2021-01-07 03:58:53 -05:00
|
|
|
decrRefCount(handler->dstobj);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the consumer interface type with the requested type. */
|
|
|
|
static void zrangeResultHandlerInit(zrange_result_handler *handler,
|
|
|
|
client *client, zrange_consumer_type type)
|
|
|
|
{
|
|
|
|
memset(handler, 0, sizeof(*handler));
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->client = client;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ZRANGE_CONSUMER_TYPE_CLIENT:
|
|
|
|
handler->beginResultEmission = zrangeResultBeginClient;
|
|
|
|
handler->finalizeResultEmission = zrangeResultFinalizeClient;
|
|
|
|
handler->emitResultFromCBuffer = zrangeResultEmitCBufferToClient;
|
|
|
|
handler->emitResultFromLongLong = zrangeResultEmitLongLongToClient;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ZRANGE_CONSUMER_TYPE_INTERNAL:
|
|
|
|
handler->beginResultEmission = zrangeResultBeginStore;
|
|
|
|
handler->finalizeResultEmission = zrangeResultFinalizeStore;
|
|
|
|
handler->emitResultFromCBuffer = zrangeResultEmitCBufferForStore;
|
|
|
|
handler->emitResultFromLongLong = zrangeResultEmitLongLongForStore;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultHandlerScoreEmissionEnable(zrange_result_handler *handler) {
|
|
|
|
handler->withscores = 1;
|
|
|
|
handler->should_emit_array_length = (handler->client->resp > 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zrangeResultHandlerDestinationKeySet (zrange_result_handler *handler,
|
|
|
|
robj *dstkey)
|
|
|
|
{
|
|
|
|
handler->dstkey = dstkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This command implements ZRANGE, ZREVRANGE. */
|
|
|
|
void genericZrangebyrankCommand(zrange_result_handler *handler,
|
|
|
|
robj *zobj, long start, long end, int withscores, int reverse) {
|
|
|
|
|
|
|
|
client *c = handler->client;
|
|
|
|
long llen;
|
|
|
|
long rangelen;
|
|
|
|
size_t result_cardinality;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2011-03-08 18:00:19 -05:00
|
|
|
/* Sanitize indexes. */
|
2011-03-10 11:50:13 -05:00
|
|
|
llen = zsetLength(zobj);
|
2010-06-21 18:07:48 -04:00
|
|
|
if (start < 0) start = llen+start;
|
|
|
|
if (end < 0) end = llen+end;
|
|
|
|
if (start < 0) start = 0;
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->beginResultEmission(handler);
|
|
|
|
|
2010-07-05 15:16:33 -04:00
|
|
|
/* Invariant: start >= 0, so this test will be true when end < 0.
|
|
|
|
* The range is empty when start > end or start >= length. */
|
2010-06-21 18:07:48 -04:00
|
|
|
if (start > end || start >= llen) {
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->finalizeResultEmission(handler, 0);
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (end >= llen) end = llen-1;
|
|
|
|
rangelen = (end-start)+1;
|
2021-01-07 03:58:53 -05:00
|
|
|
result_cardinality = rangelen;
|
2011-03-08 18:00:19 -05:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-03-08 18:00:19 -05:00
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
2021-01-07 03:58:53 -05:00
|
|
|
double score = 0.0;
|
2011-03-08 18:00:19 -05:00
|
|
|
|
|
|
|
if (reverse)
|
|
|
|
eptr = ziplistIndex(zl,-2-(2*start));
|
|
|
|
else
|
|
|
|
eptr = ziplistIndex(zl,2*start);
|
|
|
|
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,eptr != NULL);
|
2011-03-09 05:06:25 -05:00
|
|
|
sptr = ziplistNext(zl,eptr);
|
|
|
|
|
2011-03-08 18:00:19 -05:00
|
|
|
while (rangelen--) {
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,eptr != NULL && sptr != NULL);
|
|
|
|
serverAssertWithInfo(c,zobj,ziplistGet(eptr,&vstr,&vlen,&vlong));
|
2018-11-08 10:24:54 -05:00
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
if (withscores) /* don't bother to extract the score if it's gonna be ignored. */
|
|
|
|
score = zzlGetScore(sptr);
|
|
|
|
|
|
|
|
if (vstr == NULL) {
|
|
|
|
handler->emitResultFromLongLong(handler, vlong, score);
|
|
|
|
} else {
|
|
|
|
handler->emitResultFromCBuffer(handler, vstr, vlen, score);
|
|
|
|
}
|
2011-03-08 18:00:19 -05:00
|
|
|
|
2011-03-09 05:06:25 -05:00
|
|
|
if (reverse)
|
|
|
|
zzlPrev(zl,&eptr,&sptr);
|
|
|
|
else
|
|
|
|
zzlNext(zl,&eptr,&sptr);
|
2011-03-08 18:00:19 -05:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-03-08 18:00:19 -05:00
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *ln;
|
|
|
|
|
|
|
|
/* Check if starting point is trivial, before doing log(N) lookup. */
|
|
|
|
if (reverse) {
|
|
|
|
ln = zsl->tail;
|
|
|
|
if (start > 0)
|
|
|
|
ln = zslGetElementByRank(zsl,llen-start);
|
|
|
|
} else {
|
|
|
|
ln = zsl->header->level[0].forward;
|
|
|
|
if (start > 0)
|
|
|
|
ln = zslGetElementByRank(zsl,start+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while(rangelen--) {
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,ln != NULL);
|
2021-01-07 03:58:53 -05:00
|
|
|
sds ele = ln->ele;
|
|
|
|
handler->emitResultFromCBuffer(handler, ele, sdslen(ele), ln->score);
|
2011-03-08 18:00:19 -05:00
|
|
|
ln = reverse ? ln->backward : ln->level[0].forward;
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2021-01-07 03:58:53 -05:00
|
|
|
|
|
|
|
handler->finalizeResultEmission(handler, result_cardinality);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ZRANGESTORE <dst> <src> <min> <max> [BYSCORE | BYLEX] [REV] [LIMIT offset count] */
|
|
|
|
void zrangestoreCommand (client *c) {
|
|
|
|
robj *dstkey = c->argv[1];
|
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_INTERNAL);
|
|
|
|
zrangeResultHandlerDestinationKeySet(&handler, dstkey);
|
|
|
|
zrangeGenericCommand(&handler, 2, 1, ZRANGE_AUTO, ZRANGE_DIRECTION_AUTO);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* ZRANGE <key> <min> <max> [BYSCORE | BYLEX] [REV] [WITHSCORES] [LIMIT offset count] */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrangeCommand(client *c) {
|
2021-01-07 03:58:53 -05:00
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT);
|
|
|
|
zrangeGenericCommand(&handler, 1, 0, ZRANGE_AUTO, ZRANGE_DIRECTION_AUTO);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* ZREVRANGE <key> <min> <max> [WITHSCORES] */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrevrangeCommand(client *c) {
|
2021-01-07 03:58:53 -05:00
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT);
|
|
|
|
zrangeGenericCommand(&handler, 1, 0, ZRANGE_RANK, ZRANGE_DIRECTION_REVERSE);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2011-10-03 08:23:31 -04:00
|
|
|
/* This command implements ZRANGEBYSCORE, ZREVRANGEBYSCORE. */
|
2021-01-07 03:58:53 -05:00
|
|
|
void genericZrangebyscoreCommand(zrange_result_handler *handler,
|
2021-01-25 23:58:03 -05:00
|
|
|
zrangespec *range, robj *zobj, long offset, long limit,
|
|
|
|
int reverse) {
|
2010-12-07 17:21:05 -05:00
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
client *c = handler->client;
|
|
|
|
unsigned long rangelen = 0;
|
2010-09-16 08:35:25 -04:00
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->beginResultEmission(handler);
|
2010-09-16 08:35:25 -04:00
|
|
|
|
2020-11-17 11:35:56 -05:00
|
|
|
/* For invalid offset, return directly. */
|
|
|
|
if (offset > 0 && offset >= (long)zsetLength(zobj)) {
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->finalizeResultEmission(handler, 0);
|
2020-11-17 11:35:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-03-09 05:29:21 -05:00
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2011-03-09 05:29:21 -05:00
|
|
|
/* If reversed, get the last node in range as starting point. */
|
2011-10-03 08:23:31 -04:00
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
eptr = zzlLastInRange(zl,range);
|
2011-10-03 08:23:31 -04:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
eptr = zzlFirstInRange(zl,range);
|
2011-03-09 05:29:21 -05:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2011-03-09 05:29:21 -05:00
|
|
|
/* Get score pointer for the first element. */
|
2021-01-07 03:58:53 -05:00
|
|
|
if (eptr)
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
/* If there is an offset, just traverse the number of elements without
|
|
|
|
* checking the score because that is done in the next loop. */
|
2011-10-03 08:23:31 -04:00
|
|
|
while (eptr && offset--) {
|
|
|
|
if (reverse) {
|
2011-03-09 05:29:21 -05:00
|
|
|
zzlPrev(zl,&eptr,&sptr);
|
2011-10-03 08:23:31 -04:00
|
|
|
} else {
|
2011-03-09 05:29:21 -05:00
|
|
|
zzlNext(zl,&eptr,&sptr);
|
2011-10-03 08:23:31 -04:00
|
|
|
}
|
|
|
|
}
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
while (eptr && limit--) {
|
2021-01-07 03:58:53 -05:00
|
|
|
double score = zzlGetScore(sptr);
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
/* Abort when the node is no longer in range. */
|
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zslValueGteMin(score,range)) break;
|
2011-03-09 05:29:21 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zslValueLteMax(score,range)) break;
|
2011-03-09 05:29:21 -05:00
|
|
|
}
|
|
|
|
|
2018-11-08 10:24:54 -05:00
|
|
|
/* We know the element exists, so ziplistGet should always
|
|
|
|
* succeed */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,ziplistGet(eptr,&vstr,&vlen,&vlong));
|
2011-10-03 08:23:31 -04:00
|
|
|
|
2011-03-09 05:29:21 -05:00
|
|
|
rangelen++;
|
2011-10-03 08:23:31 -04:00
|
|
|
if (vstr == NULL) {
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->emitResultFromLongLong(handler, vlong, score);
|
2011-10-03 08:23:31 -04:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->emitResultFromCBuffer(handler, vstr, vlen, score);
|
2011-10-03 08:23:31 -04:00
|
|
|
}
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
/* Move to next node */
|
2011-10-03 08:23:31 -04:00
|
|
|
if (reverse) {
|
2011-03-09 05:29:21 -05:00
|
|
|
zzlPrev(zl,&eptr,&sptr);
|
2011-10-03 08:23:31 -04:00
|
|
|
} else {
|
2011-03-09 05:29:21 -05:00
|
|
|
zzlNext(zl,&eptr,&sptr);
|
2011-10-03 08:23:31 -04:00
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-03-09 05:29:21 -05:00
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *ln;
|
2010-09-16 08:35:25 -04:00
|
|
|
|
2011-03-09 05:29:21 -05:00
|
|
|
/* If reversed, get the last node in range as starting point. */
|
2011-10-03 08:23:31 -04:00
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
ln = zslLastInRange(zsl,range);
|
2011-10-03 08:23:31 -04:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
ln = zslFirstInRange(zsl,range);
|
2011-10-03 08:23:31 -04:00
|
|
|
}
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
/* If there is an offset, just traverse the number of elements without
|
|
|
|
* checking the score because that is done in the next loop. */
|
2011-10-03 08:23:31 -04:00
|
|
|
while (ln && offset--) {
|
|
|
|
if (reverse) {
|
|
|
|
ln = ln->backward;
|
|
|
|
} else {
|
|
|
|
ln = ln->level[0].forward;
|
|
|
|
}
|
|
|
|
}
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
while (ln && limit--) {
|
|
|
|
/* Abort when the node is no longer in range. */
|
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zslValueGteMin(ln->score,range)) break;
|
2011-03-09 05:29:21 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zslValueLteMax(ln->score,range)) break;
|
2011-03-09 05:29:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
rangelen++;
|
2021-01-25 23:58:03 -05:00
|
|
|
handler->emitResultFromCBuffer(handler, ln->ele, sdslen(ln->ele), ln->score);
|
2011-03-09 05:29:21 -05:00
|
|
|
|
|
|
|
/* Move to next node */
|
2011-10-03 08:23:31 -04:00
|
|
|
if (reverse) {
|
|
|
|
ln = ln->backward;
|
|
|
|
} else {
|
|
|
|
ln = ln->level[0].forward;
|
|
|
|
}
|
2011-03-09 05:29:21 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2010-09-16 08:35:25 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->finalizeResultEmission(handler, rangelen);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* ZRANGEBYSCORE <key> <min> <max> [WITHSCORES] [LIMIT offset count] */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrangebyscoreCommand(client *c) {
|
2021-01-07 03:58:53 -05:00
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT);
|
|
|
|
zrangeGenericCommand(&handler, 1, 0, ZRANGE_SCORE, ZRANGE_DIRECTION_FORWARD);
|
2010-09-16 08:35:25 -04:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* ZREVRANGEBYSCORE <key> <min> <max> [WITHSCORES] [LIMIT offset count] */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrevrangebyscoreCommand(client *c) {
|
2021-01-07 03:58:53 -05:00
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT);
|
|
|
|
zrangeGenericCommand(&handler, 1, 0, ZRANGE_SCORE, ZRANGE_DIRECTION_REVERSE);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zcountCommand(client *c) {
|
2011-10-03 08:14:43 -04:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
|
|
|
zrangespec range;
|
2017-12-08 02:37:08 -05:00
|
|
|
unsigned long count = 0;
|
2011-10-03 08:14:43 -04:00
|
|
|
|
|
|
|
/* Parse the range arguments */
|
2015-07-26 17:17:55 -04:00
|
|
|
if (zslParseRange(c->argv[2],c->argv[3],&range) != C_OK) {
|
2011-11-14 09:34:44 -05:00
|
|
|
addReplyError(c,"min or max is not a float");
|
2011-10-03 08:14:43 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup the sorted set */
|
|
|
|
if ((zobj = lookupKeyReadOrReply(c, key, shared.czero)) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c, zobj, OBJ_ZSET)) return;
|
2011-10-03 08:14:43 -04:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2011-10-03 08:14:43 -04:00
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
double score;
|
|
|
|
|
|
|
|
/* Use the first element in range as the starting point */
|
2014-04-17 08:30:12 -04:00
|
|
|
eptr = zzlFirstInRange(zl,&range);
|
2011-10-03 08:14:43 -04:00
|
|
|
|
|
|
|
/* No "first" element */
|
|
|
|
if (eptr == NULL) {
|
|
|
|
addReply(c, shared.czero);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First element is in range */
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
|
|
|
score = zzlGetScore(sptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,zslValueLteMax(score,&range));
|
2011-10-03 08:14:43 -04:00
|
|
|
|
|
|
|
/* Iterate over elements in range */
|
|
|
|
while (eptr) {
|
|
|
|
score = zzlGetScore(sptr);
|
|
|
|
|
|
|
|
/* Abort when the node is no longer in range. */
|
|
|
|
if (!zslValueLteMax(score,&range)) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
zzlNext(zl,&eptr,&sptr);
|
|
|
|
}
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2011-10-03 08:14:43 -04:00
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *zn;
|
|
|
|
unsigned long rank;
|
|
|
|
|
|
|
|
/* Find first element in range */
|
2014-04-17 08:30:12 -04:00
|
|
|
zn = zslFirstInRange(zsl, &range);
|
2011-10-03 08:14:43 -04:00
|
|
|
|
|
|
|
/* Use rank of first element, if any, to determine preliminary count */
|
|
|
|
if (zn != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
rank = zslGetRank(zsl, zn->score, zn->ele);
|
2011-10-03 08:14:43 -04:00
|
|
|
count = (zsl->length - (rank - 1));
|
|
|
|
|
|
|
|
/* Find last element in range */
|
2014-04-17 08:30:12 -04:00
|
|
|
zn = zslLastInRange(zsl, &range);
|
2011-10-03 08:14:43 -04:00
|
|
|
|
|
|
|
/* Use rank of last element, if any, to determine the actual count */
|
|
|
|
if (zn != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
rank = zslGetRank(zsl, zn->score, zn->ele);
|
2011-10-03 08:14:43 -04:00
|
|
|
count -= (zsl->length - rank);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2014-04-16 06:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
addReplyLongLong(c, count);
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zlexcountCommand(client *c) {
|
2014-04-16 06:17:00 -04:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
|
|
|
zlexrangespec range;
|
2017-12-08 02:37:08 -05:00
|
|
|
unsigned long count = 0;
|
2014-04-16 06:17:00 -04:00
|
|
|
|
|
|
|
/* Parse the range arguments */
|
2015-07-26 17:17:55 -04:00
|
|
|
if (zslParseLexRange(c->argv[2],c->argv[3],&range) != C_OK) {
|
2014-04-16 06:17:00 -04:00
|
|
|
addReplyError(c,"min or max not valid string range item");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup the sorted set */
|
|
|
|
if ((zobj = lookupKeyReadOrReply(c, key, shared.czero)) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c, zobj, OBJ_ZSET))
|
2014-04-16 17:55:58 -04:00
|
|
|
{
|
|
|
|
zslFreeLexRange(&range);
|
|
|
|
return;
|
|
|
|
}
|
2014-04-16 06:17:00 -04:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2014-04-16 06:17:00 -04:00
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
|
|
|
|
/* Use the first element in range as the starting point */
|
2014-04-16 17:55:58 -04:00
|
|
|
eptr = zzlFirstInLexRange(zl,&range);
|
2014-04-16 06:17:00 -04:00
|
|
|
|
|
|
|
/* No "first" element */
|
|
|
|
if (eptr == NULL) {
|
2014-04-16 17:55:58 -04:00
|
|
|
zslFreeLexRange(&range);
|
2014-04-16 06:17:00 -04:00
|
|
|
addReply(c, shared.czero);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First element is in range */
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,zzlLexValueLteMax(eptr,&range));
|
2014-04-16 06:17:00 -04:00
|
|
|
|
|
|
|
/* Iterate over elements in range */
|
|
|
|
while (eptr) {
|
|
|
|
/* Abort when the node is no longer in range. */
|
|
|
|
if (!zzlLexValueLteMax(eptr,&range)) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
zzlNext(zl,&eptr,&sptr);
|
|
|
|
}
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2014-04-16 06:17:00 -04:00
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *zn;
|
|
|
|
unsigned long rank;
|
|
|
|
|
|
|
|
/* Find first element in range */
|
2014-04-17 08:30:12 -04:00
|
|
|
zn = zslFirstInLexRange(zsl, &range);
|
2014-04-16 06:17:00 -04:00
|
|
|
|
|
|
|
/* Use rank of first element, if any, to determine preliminary count */
|
|
|
|
if (zn != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
rank = zslGetRank(zsl, zn->score, zn->ele);
|
2014-04-16 06:17:00 -04:00
|
|
|
count = (zsl->length - (rank - 1));
|
|
|
|
|
|
|
|
/* Find last element in range */
|
2014-04-17 08:30:12 -04:00
|
|
|
zn = zslLastInLexRange(zsl, &range);
|
2014-04-16 06:17:00 -04:00
|
|
|
|
|
|
|
/* Use rank of last element, if any, to determine the actual count */
|
|
|
|
if (zn != NULL) {
|
2015-08-04 03:20:55 -04:00
|
|
|
rank = zslGetRank(zsl, zn->score, zn->ele);
|
2014-04-16 06:17:00 -04:00
|
|
|
count -= (zsl->length - rank);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2011-10-03 08:14:43 -04:00
|
|
|
}
|
|
|
|
|
2014-04-16 17:55:58 -04:00
|
|
|
zslFreeLexRange(&range);
|
2011-10-03 08:14:43 -04:00
|
|
|
addReplyLongLong(c, count);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2012-02-04 02:11:31 -05:00
|
|
|
/* This command implements ZRANGEBYLEX, ZREVRANGEBYLEX. */
|
2021-01-07 03:58:53 -05:00
|
|
|
void genericZrangebylexCommand(zrange_result_handler *handler,
|
|
|
|
zlexrangespec *range, robj *zobj, int withscores, long offset, long limit,
|
|
|
|
int reverse)
|
|
|
|
{
|
|
|
|
client *c = handler->client;
|
2012-02-04 02:11:31 -05:00
|
|
|
unsigned long rangelen = 0;
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->beginResultEmission(handler);
|
2012-02-04 02:11:31 -05:00
|
|
|
|
2015-07-26 09:28:00 -04:00
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
2012-02-04 02:11:31 -05:00
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
|
|
|
|
|
|
|
/* If reversed, get the last node in range as starting point. */
|
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
eptr = zzlLastInLexRange(zl,range);
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
eptr = zzlFirstInLexRange(zl,range);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get score pointer for the first element. */
|
2021-01-07 03:58:53 -05:00
|
|
|
if (eptr)
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
/* If there is an offset, just traverse the number of elements without
|
|
|
|
* checking the score because that is done in the next loop. */
|
|
|
|
while (eptr && offset--) {
|
|
|
|
if (reverse) {
|
|
|
|
zzlPrev(zl,&eptr,&sptr);
|
|
|
|
} else {
|
|
|
|
zzlNext(zl,&eptr,&sptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (eptr && limit--) {
|
2021-01-07 03:58:53 -05:00
|
|
|
double score = 0;
|
|
|
|
if (withscores) /* don't bother to extract the score if it's gonna be ignored. */
|
|
|
|
score = zzlGetScore(sptr);
|
|
|
|
|
2012-02-04 02:11:31 -05:00
|
|
|
/* Abort when the node is no longer in range. */
|
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zzlLexValueGteMin(eptr,range)) break;
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zzlLexValueLteMax(eptr,range)) break;
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We know the element exists, so ziplistGet should always
|
|
|
|
* succeed. */
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,zobj,ziplistGet(eptr,&vstr,&vlen,&vlong));
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
rangelen++;
|
|
|
|
if (vstr == NULL) {
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->emitResultFromLongLong(handler, vlong, score);
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->emitResultFromCBuffer(handler, vstr, vlen, score);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to next node */
|
|
|
|
if (reverse) {
|
|
|
|
zzlPrev(zl,&eptr,&sptr);
|
|
|
|
} else {
|
|
|
|
zzlNext(zl,&eptr,&sptr);
|
|
|
|
}
|
|
|
|
}
|
2015-07-26 09:28:00 -04:00
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
2012-02-04 02:11:31 -05:00
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *ln;
|
|
|
|
|
|
|
|
/* If reversed, get the last node in range as starting point. */
|
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
ln = zslLastInLexRange(zsl,range);
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
ln = zslFirstInLexRange(zsl,range);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If there is an offset, just traverse the number of elements without
|
|
|
|
* checking the score because that is done in the next loop. */
|
|
|
|
while (ln && offset--) {
|
|
|
|
if (reverse) {
|
|
|
|
ln = ln->backward;
|
|
|
|
} else {
|
|
|
|
ln = ln->level[0].forward;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (ln && limit--) {
|
|
|
|
/* Abort when the node is no longer in range. */
|
|
|
|
if (reverse) {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zslLexValueGteMin(ln->ele,range)) break;
|
2012-02-04 02:11:31 -05:00
|
|
|
} else {
|
2021-01-07 03:58:53 -05:00
|
|
|
if (!zslLexValueLteMax(ln->ele,range)) break;
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
rangelen++;
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->emitResultFromCBuffer(handler, ln->ele, sdslen(ln->ele), ln->score);
|
2012-02-04 02:11:31 -05:00
|
|
|
|
|
|
|
/* Move to next node */
|
|
|
|
if (reverse) {
|
|
|
|
ln = ln->backward;
|
|
|
|
} else {
|
|
|
|
ln = ln->level[0].forward;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2015-07-27 03:41:48 -04:00
|
|
|
serverPanic("Unknown sorted set encoding");
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
handler->finalizeResultEmission(handler, rangelen);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* ZRANGEBYLEX <key> <min> <max> [LIMIT offset count] */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrangebylexCommand(client *c) {
|
2021-01-07 03:58:53 -05:00
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT);
|
|
|
|
zrangeGenericCommand(&handler, 1, 0, ZRANGE_LEX, ZRANGE_DIRECTION_FORWARD);
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* ZREVRANGEBYLEX <key> <min> <max> [LIMIT offset count] */
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrevrangebylexCommand(client *c) {
|
2021-01-07 03:58:53 -05:00
|
|
|
zrange_result_handler handler;
|
|
|
|
zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT);
|
|
|
|
zrangeGenericCommand(&handler, 1, 0, ZRANGE_LEX, ZRANGE_DIRECTION_REVERSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function handles ZRANGE and ZRANGESTORE, and also the deprecated
|
|
|
|
* Z[REV]RANGE[BYPOS|BYLEX] commands.
|
|
|
|
*
|
|
|
|
* The simple ZRANGE and ZRANGESTORE can take _AUTO in rangetype and direction,
|
|
|
|
* other command pass explicit value.
|
|
|
|
*
|
|
|
|
* The argc_start points to the src key argument, so following syntax is like:
|
|
|
|
* <src> <min> <max> [BYSCORE | BYLEX] [REV] [WITHSCORES] [LIMIT offset count]
|
|
|
|
*/
|
|
|
|
void zrangeGenericCommand(zrange_result_handler *handler, int argc_start, int store,
|
|
|
|
zrange_type rangetype, zrange_direction direction)
|
|
|
|
{
|
|
|
|
client *c = handler->client;
|
|
|
|
robj *key = c->argv[argc_start];
|
|
|
|
robj *zobj;
|
|
|
|
zrangespec range;
|
|
|
|
zlexrangespec lexrange;
|
|
|
|
int minidx = argc_start + 1;
|
|
|
|
int maxidx = argc_start + 2;
|
|
|
|
|
|
|
|
/* Options common to all */
|
|
|
|
long opt_start = 0;
|
|
|
|
long opt_end = 0;
|
|
|
|
int opt_withscores = 0;
|
|
|
|
long opt_offset = 0;
|
|
|
|
long opt_limit = -1;
|
|
|
|
|
|
|
|
/* Step 1: Skip the <src> <min> <max> args and parse remaining optional arguments. */
|
|
|
|
for (int j=argc_start + 3; j < c->argc; j++) {
|
|
|
|
int leftargs = c->argc-j-1;
|
|
|
|
if (!store && !strcasecmp(c->argv[j]->ptr,"withscores")) {
|
|
|
|
opt_withscores = 1;
|
|
|
|
} else if (!strcasecmp(c->argv[j]->ptr,"limit") && leftargs >= 2) {
|
|
|
|
if ((getLongFromObjectOrReply(c, c->argv[j+1], &opt_offset, NULL) != C_OK) ||
|
|
|
|
(getLongFromObjectOrReply(c, c->argv[j+2], &opt_limit, NULL) != C_OK))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
j += 2;
|
|
|
|
} else if (direction == ZRANGE_DIRECTION_AUTO &&
|
|
|
|
!strcasecmp(c->argv[j]->ptr,"rev"))
|
|
|
|
{
|
|
|
|
direction = ZRANGE_DIRECTION_REVERSE;
|
|
|
|
} else if (rangetype == ZRANGE_AUTO &&
|
|
|
|
!strcasecmp(c->argv[j]->ptr,"bylex"))
|
|
|
|
{
|
|
|
|
rangetype = ZRANGE_LEX;
|
|
|
|
} else if (rangetype == ZRANGE_AUTO &&
|
|
|
|
!strcasecmp(c->argv[j]->ptr,"byscore"))
|
|
|
|
{
|
|
|
|
rangetype = ZRANGE_SCORE;
|
|
|
|
} else {
|
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-10 08:39:33 -04:00
|
|
|
/* Use defaults if not overridden by arguments. */
|
2021-01-07 03:58:53 -05:00
|
|
|
if (direction == ZRANGE_DIRECTION_AUTO)
|
|
|
|
direction = ZRANGE_DIRECTION_FORWARD;
|
|
|
|
if (rangetype == ZRANGE_AUTO)
|
|
|
|
rangetype = ZRANGE_RANK;
|
|
|
|
|
|
|
|
/* Check for conflicting arguments. */
|
|
|
|
if (opt_limit != -1 && rangetype == ZRANGE_RANK) {
|
|
|
|
addReplyError(c,"syntax error, LIMIT is only supported in combination with either BYSCORE or BYLEX");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (opt_withscores && rangetype == ZRANGE_LEX) {
|
|
|
|
addReplyError(c,"syntax error, WITHSCORES not supported in combination with BYLEX");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (direction == ZRANGE_DIRECTION_REVERSE &&
|
|
|
|
((ZRANGE_SCORE == rangetype) || (ZRANGE_LEX == rangetype)))
|
|
|
|
{
|
|
|
|
/* Range is given as [max,min] */
|
|
|
|
int tmp = maxidx;
|
|
|
|
maxidx = minidx;
|
|
|
|
minidx = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Step 2: Parse the range. */
|
|
|
|
switch (rangetype) {
|
|
|
|
case ZRANGE_AUTO:
|
|
|
|
case ZRANGE_RANK:
|
|
|
|
/* Z[REV]RANGE, ZRANGESTORE [REV]RANGE */
|
|
|
|
if ((getLongFromObjectOrReply(c, c->argv[minidx], &opt_start,NULL) != C_OK) ||
|
|
|
|
(getLongFromObjectOrReply(c, c->argv[maxidx], &opt_end,NULL) != C_OK))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ZRANGE_SCORE:
|
|
|
|
/* Z[REV]RANGEBYSCORE, ZRANGESTORE [REV]RANGEBYSCORE */
|
|
|
|
if (zslParseRange(c->argv[minidx], c->argv[maxidx], &range) != C_OK) {
|
|
|
|
addReplyError(c, "min or max is not a float");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ZRANGE_LEX:
|
|
|
|
/* Z[REV]RANGEBYLEX, ZRANGESTORE [REV]RANGEBYLEX */
|
|
|
|
if (zslParseLexRange(c->argv[minidx], c->argv[maxidx], &lexrange) != C_OK) {
|
|
|
|
addReplyError(c, "min or max not valid string range item");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt_withscores || store) {
|
|
|
|
zrangeResultHandlerScoreEmissionEnable(handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Step 3: Lookup the key and get the range. */
|
2021-01-13 04:58:12 -05:00
|
|
|
zobj = handler->dstkey ?
|
|
|
|
lookupKeyWrite(c->db,key) :
|
|
|
|
lookupKeyRead(c->db,key);
|
|
|
|
if (zobj == NULL) {
|
|
|
|
addReply(c,shared.emptyarray);
|
2021-01-07 03:58:53 -05:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2021-01-13 04:58:12 -05:00
|
|
|
if (checkType(c,zobj,OBJ_ZSET)) goto cleanup;
|
|
|
|
|
2021-01-07 03:58:53 -05:00
|
|
|
/* Step 4: Pass this to the command-specific handler. */
|
|
|
|
switch (rangetype) {
|
|
|
|
case ZRANGE_AUTO:
|
|
|
|
case ZRANGE_RANK:
|
|
|
|
genericZrangebyrankCommand(handler, zobj, opt_start, opt_end,
|
|
|
|
opt_withscores || store, direction == ZRANGE_DIRECTION_REVERSE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ZRANGE_SCORE:
|
2021-01-25 23:58:03 -05:00
|
|
|
genericZrangebyscoreCommand(handler, &range, zobj, opt_offset,
|
|
|
|
opt_limit, direction == ZRANGE_DIRECTION_REVERSE);
|
2021-01-07 03:58:53 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZRANGE_LEX:
|
|
|
|
genericZrangebylexCommand(handler, &lexrange, zobj, opt_withscores || store,
|
|
|
|
opt_offset, opt_limit, direction == ZRANGE_DIRECTION_REVERSE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Instead of returning here, we'll just fall-through the clean-up. */
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
if (rangetype == ZRANGE_LEX) {
|
|
|
|
zslFreeLexRange(&lexrange);
|
|
|
|
}
|
2012-02-04 02:11:31 -05:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zcardCommand(client *c) {
|
2011-03-09 06:37:59 -05:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2011-03-09 06:37:59 -05:00
|
|
|
if ((zobj = lookupKeyReadOrReply(c,key,shared.czero)) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c,zobj,OBJ_ZSET)) return;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2011-03-10 11:50:13 -05:00
|
|
|
addReplyLongLong(c,zsetLength(zobj));
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zscoreCommand(client *c) {
|
2011-03-09 06:37:59 -05:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
|
|
|
double score;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2018-11-30 03:41:54 -05:00
|
|
|
if ((zobj = lookupKeyReadOrReply(c,key,shared.null[c->resp])) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c,zobj,OBJ_ZSET)) return;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2015-08-04 03:20:55 -04:00
|
|
|
if (zsetScore(zobj,c->argv[2]->ptr,&score) == C_ERR) {
|
2018-11-30 03:41:54 -05:00
|
|
|
addReplyNull(c);
|
2011-03-09 06:37:59 -05:00
|
|
|
} else {
|
2015-06-22 11:26:36 -04:00
|
|
|
addReplyDouble(c,score);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-04 10:49:33 -04:00
|
|
|
void zmscoreCommand(client *c) {
|
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *zobj;
|
|
|
|
double score;
|
|
|
|
zobj = lookupKeyRead(c->db,key);
|
2020-08-11 23:04:54 -04:00
|
|
|
if (checkType(c,zobj,OBJ_ZSET)) return;
|
2020-08-04 10:49:33 -04:00
|
|
|
|
|
|
|
addReplyArrayLen(c,c->argc - 2);
|
|
|
|
for (int j = 2; j < c->argc; j++) {
|
|
|
|
/* Treat a missing set the same way as an empty set */
|
|
|
|
if (zobj == NULL || zsetScore(zobj,c->argv[j]->ptr,&score) == C_ERR) {
|
|
|
|
addReplyNull(c);
|
|
|
|
} else {
|
|
|
|
addReplyDouble(c,score);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrankGenericCommand(client *c, int reverse) {
|
2011-03-09 06:37:59 -05:00
|
|
|
robj *key = c->argv[1];
|
|
|
|
robj *ele = c->argv[2];
|
|
|
|
robj *zobj;
|
2016-04-15 06:46:18 -04:00
|
|
|
long rank;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2018-11-30 03:41:54 -05:00
|
|
|
if ((zobj = lookupKeyReadOrReply(c,key,shared.null[c->resp])) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c,zobj,OBJ_ZSET)) return;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
2015-07-26 09:29:53 -04:00
|
|
|
serverAssertWithInfo(c,ele,sdsEncodedObject(ele));
|
2016-04-15 06:46:18 -04:00
|
|
|
rank = zsetRank(zobj,ele->ptr,reverse);
|
|
|
|
if (rank >= 0) {
|
|
|
|
addReplyLongLong(c,rank);
|
2010-06-21 18:07:48 -04:00
|
|
|
} else {
|
2018-11-30 03:41:54 -05:00
|
|
|
addReplyNull(c);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrankCommand(client *c) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zrankGenericCommand(c, 0);
|
|
|
|
}
|
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zrevrankCommand(client *c) {
|
2010-06-21 18:07:48 -04:00
|
|
|
zrankGenericCommand(c, 1);
|
|
|
|
}
|
2013-10-28 06:36:42 -04:00
|
|
|
|
2015-07-26 09:20:46 -04:00
|
|
|
void zscanCommand(client *c) {
|
2013-10-28 06:36:42 -04:00
|
|
|
robj *o;
|
2013-11-05 09:47:50 -05:00
|
|
|
unsigned long cursor;
|
2013-10-28 06:36:42 -04:00
|
|
|
|
2015-07-26 17:17:55 -04:00
|
|
|
if (parseScanCursorOrReply(c,c->argv[2],&cursor) == C_ERR) return;
|
2013-10-28 08:20:03 -04:00
|
|
|
if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.emptyscan)) == NULL ||
|
2015-07-26 09:28:00 -04:00
|
|
|
checkType(c,o,OBJ_ZSET)) return;
|
2013-11-05 09:47:50 -05:00
|
|
|
scanGenericCommand(c,o,cursor);
|
2013-10-28 06:36:42 -04:00
|
|
|
}
|
2018-04-29 19:10:42 -04:00
|
|
|
|
|
|
|
/* This command implements the generic zpop operation, used by:
|
2018-05-11 12:00:32 -04:00
|
|
|
* ZPOPMIN, ZPOPMAX, BZPOPMIN and BZPOPMAX. This function is also used
|
|
|
|
* inside blocked.c in the unblocking stage of BZPOPMIN and BZPOPMAX.
|
|
|
|
*
|
|
|
|
* If 'emitkey' is true also the key name is emitted, useful for the blocking
|
|
|
|
* behavior of BZPOP[MIN|MAX], since we can block into multiple keys.
|
|
|
|
*
|
|
|
|
* The synchronous version instead does not need to emit the key, but may
|
|
|
|
* use the 'count' argument to return multiple items if available. */
|
|
|
|
void genericZpopCommand(client *c, robj **keyv, int keyc, int where, int emitkey, robj *countarg) {
|
2018-04-29 19:10:42 -04:00
|
|
|
int idx;
|
2018-05-22 09:31:22 -04:00
|
|
|
robj *key = NULL;
|
|
|
|
robj *zobj = NULL;
|
2018-04-29 19:10:42 -04:00
|
|
|
sds ele;
|
|
|
|
double score;
|
2018-05-11 12:00:32 -04:00
|
|
|
long count = 1;
|
|
|
|
|
|
|
|
/* If a count argument as passed, parse it or return an error. */
|
|
|
|
if (countarg) {
|
|
|
|
if (getLongFromObjectOrReply(c,countarg,&count,NULL) != C_OK)
|
|
|
|
return;
|
2019-01-23 04:11:57 -05:00
|
|
|
if (count <= 0) {
|
2019-03-14 12:51:14 -04:00
|
|
|
addReply(c,shared.emptyarray);
|
2019-01-23 04:11:57 -05:00
|
|
|
return;
|
|
|
|
}
|
2018-05-11 12:00:32 -04:00
|
|
|
}
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2018-05-11 11:31:46 -04:00
|
|
|
/* Check type and break on the first error, otherwise identify candidate. */
|
2018-04-29 19:10:42 -04:00
|
|
|
idx = 0;
|
|
|
|
while (idx < keyc) {
|
|
|
|
key = keyv[idx++];
|
|
|
|
zobj = lookupKeyWrite(c->db,key);
|
|
|
|
if (!zobj) continue;
|
|
|
|
if (checkType(c,zobj,OBJ_ZSET)) return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-05-11 11:31:46 -04:00
|
|
|
/* No candidate for zpopping, return empty. */
|
2018-04-29 19:10:42 -04:00
|
|
|
if (!zobj) {
|
2019-09-02 06:50:47 -04:00
|
|
|
addReply(c,shared.emptyarray);
|
2018-04-29 19:10:42 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-08 10:24:54 -05:00
|
|
|
void *arraylen_ptr = addReplyDeferredLen(c);
|
2021-06-16 02:29:57 -04:00
|
|
|
long result_count = 0;
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
/* We emit the key only for the blocking variant. */
|
|
|
|
if (emitkey) addReplyBulk(c,key);
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2021-06-16 02:29:57 -04:00
|
|
|
/* Respond with a single (flat) array in RESP2 or if countarg is not
|
|
|
|
* provided (returning a single element). In RESP3, when countarg is
|
|
|
|
* provided, use nested array. */
|
|
|
|
int use_nested_array = c->resp > 2 && countarg != NULL;
|
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
/* Remove the element. */
|
|
|
|
do {
|
|
|
|
if (zobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
unsigned char *zl = zobj->ptr;
|
|
|
|
unsigned char *eptr, *sptr;
|
|
|
|
unsigned char *vstr;
|
|
|
|
unsigned int vlen;
|
|
|
|
long long vlong;
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
/* Get the first or last element in the sorted set. */
|
|
|
|
eptr = ziplistIndex(zl,where == ZSET_MAX ? -2 : 0);
|
|
|
|
serverAssertWithInfo(c,zobj,eptr != NULL);
|
|
|
|
serverAssertWithInfo(c,zobj,ziplistGet(eptr,&vstr,&vlen,&vlong));
|
|
|
|
if (vstr == NULL)
|
|
|
|
ele = sdsfromlonglong(vlong);
|
|
|
|
else
|
|
|
|
ele = sdsnewlen(vstr,vlen);
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
/* Get the score. */
|
|
|
|
sptr = ziplistNext(zl,eptr);
|
|
|
|
serverAssertWithInfo(c,zobj,sptr != NULL);
|
|
|
|
score = zzlGetScore(sptr);
|
|
|
|
} else if (zobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zset *zs = zobj->ptr;
|
|
|
|
zskiplist *zsl = zs->zsl;
|
|
|
|
zskiplistNode *zln;
|
|
|
|
|
|
|
|
/* Get the first or last element in the sorted set. */
|
|
|
|
zln = (where == ZSET_MAX ? zsl->tail :
|
|
|
|
zsl->header->level[0].forward);
|
|
|
|
|
|
|
|
/* There must be an element in the sorted set. */
|
|
|
|
serverAssertWithInfo(c,zobj,zln != NULL);
|
|
|
|
ele = sdsdup(zln->ele);
|
|
|
|
score = zln->score;
|
|
|
|
} else {
|
|
|
|
serverPanic("Unknown sorted set encoding");
|
|
|
|
}
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
serverAssertWithInfo(c,zobj,zsetDel(zobj,ele));
|
|
|
|
server.dirty++;
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2021-06-16 02:29:57 -04:00
|
|
|
if (result_count == 0) { /* Do this only for the first iteration. */
|
2018-05-11 12:00:32 -04:00
|
|
|
char *events[2] = {"zpopmin","zpopmax"};
|
|
|
|
notifyKeyspaceEvent(NOTIFY_ZSET,events[where],key,c->db->id);
|
2020-04-21 04:51:46 -04:00
|
|
|
signalModifiedKey(c,c->db,key);
|
2018-05-11 12:00:32 -04:00
|
|
|
}
|
2018-04-29 19:10:42 -04:00
|
|
|
|
2021-06-16 02:29:57 -04:00
|
|
|
if (use_nested_array) {
|
|
|
|
addReplyArrayLen(c,2);
|
|
|
|
}
|
2018-05-11 12:00:32 -04:00
|
|
|
addReplyBulkCBuffer(c,ele,sdslen(ele));
|
2018-06-05 11:01:47 -04:00
|
|
|
addReplyDouble(c,score);
|
2018-05-11 12:00:32 -04:00
|
|
|
sdsfree(ele);
|
2021-06-16 02:29:57 -04:00
|
|
|
++result_count;
|
2018-05-11 12:00:32 -04:00
|
|
|
|
|
|
|
/* Remove the key, if indeed needed. */
|
|
|
|
if (zsetLength(zobj) == 0) {
|
|
|
|
dbDelete(c->db,key);
|
|
|
|
notifyKeyspaceEvent(NOTIFY_GENERIC,"del",key,c->db->id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while(--count);
|
|
|
|
|
2021-06-16 02:29:57 -04:00
|
|
|
if (!use_nested_array) {
|
|
|
|
result_count *= 2;
|
|
|
|
}
|
|
|
|
setDeferredArrayLen(c,arraylen_ptr,result_count + (emitkey != 0));
|
2018-04-29 19:10:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
/* ZPOPMIN key [<count>] */
|
2018-05-11 11:31:46 -04:00
|
|
|
void zpopminCommand(client *c) {
|
2018-05-11 12:00:32 -04:00
|
|
|
if (c->argc > 3) {
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
2018-05-11 12:00:32 -04:00
|
|
|
return;
|
|
|
|
}
|
2018-05-22 09:31:22 -04:00
|
|
|
genericZpopCommand(c,&c->argv[1],1,ZSET_MIN,0,
|
2018-05-11 12:00:32 -04:00
|
|
|
c->argc == 3 ? c->argv[2] : NULL);
|
2018-04-29 19:10:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-11 12:00:32 -04:00
|
|
|
/* ZMAXPOP key [<count>] */
|
2018-05-11 11:31:46 -04:00
|
|
|
void zpopmaxCommand(client *c) {
|
2018-05-11 12:00:32 -04:00
|
|
|
if (c->argc > 3) {
|
2020-12-23 22:06:25 -05:00
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
2018-05-11 12:00:32 -04:00
|
|
|
return;
|
|
|
|
}
|
2018-05-22 09:31:22 -04:00
|
|
|
genericZpopCommand(c,&c->argv[1],1,ZSET_MAX,0,
|
2018-05-11 12:00:32 -04:00
|
|
|
c->argc == 3 ? c->argv[2] : NULL);
|
2018-04-29 19:10:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-11 11:31:46 -04:00
|
|
|
/* BZPOPMIN / BZPOPMAX actual implementation. */
|
|
|
|
void blockingGenericZpopCommand(client *c, int where) {
|
2018-04-29 19:10:42 -04:00
|
|
|
robj *o;
|
|
|
|
mstime_t timeout;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
if (getTimeoutFromObjectOrReply(c,c->argv[c->argc-1],&timeout,UNIT_SECONDS)
|
|
|
|
!= C_OK) return;
|
|
|
|
|
|
|
|
for (j = 1; j < c->argc-1; j++) {
|
|
|
|
o = lookupKeyWrite(c->db,c->argv[j]);
|
2020-08-11 23:04:54 -04:00
|
|
|
if (checkType(c,o,OBJ_ZSET)) return;
|
2018-04-29 19:10:42 -04:00
|
|
|
if (o != NULL) {
|
2020-08-11 23:04:54 -04:00
|
|
|
if (zsetLength(o) != 0) {
|
|
|
|
/* Non empty zset, this is like a normal ZPOP[MIN|MAX]. */
|
|
|
|
genericZpopCommand(c,&c->argv[j],1,where,1,NULL);
|
|
|
|
/* Replicate it as an ZPOP[MIN|MAX] instead of BZPOP[MIN|MAX]. */
|
|
|
|
rewriteClientCommandVector(c,2,
|
|
|
|
where == ZSET_MAX ? shared.zpopmax : shared.zpopmin,
|
|
|
|
c->argv[j]);
|
2018-04-29 19:10:42 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Unified MULTI, LUA, and RM_Call with respect to blocking commands (#8025)
Blocking command should not be used with MULTI, LUA, and RM_Call. This is because,
the caller, who executes the command in this context, expects a reply.
Today, LUA and MULTI have a special (and different) treatment to blocking commands:
LUA - Most commands are marked with no-script flag which are checked when executing
and command from LUA, commands that are not marked (like XREAD) verify that their
blocking mode is not used inside LUA (by checking the CLIENT_LUA client flag).
MULTI - Command that is going to block, first verify that the client is not inside
multi (by checking the CLIENT_MULTI client flag). If the client is inside multi, they
return a result which is a match to the empty key with no timeout (for example blpop
inside MULTI will act as lpop)
For modules that perform RM_Call with blocking command, the returned results type is
REDISMODULE_REPLY_UNKNOWN and the caller can not really know what happened.
Disadvantages of the current state are:
No unified approach, LUA, MULTI, and RM_Call, each has a different treatment
Module can not safely execute blocking command (and get reply or error).
Though It is true that modules are not like LUA or MULTI and should be smarter not
to execute blocking commands on RM_Call, sometimes you want to execute a command base
on client input (for example if you create a module that provides a new scripting
language like javascript or python).
While modules (on modules command) can check for REDISMODULE_CTX_FLAGS_LUA or
REDISMODULE_CTX_FLAGS_MULTI to know not to block the client, there is no way to
check if the command came from another module using RM_Call. So there is no way
for a module to know not to block another module RM_Call execution.
This commit adds a way to unify the treatment for blocking clients by introducing
a new CLIENT_DENY_BLOCKING client flag. On LUA, MULTI, and RM_Call the new flag
turned on to signify that the client should not be blocked. A blocking command
verifies that the flag is turned off before blocking. If a blocking command sees
that the CLIENT_DENY_BLOCKING flag is on, it's not blocking and return results
which are matches to empty key with no timeout (as MULTI does today).
The new flag is checked on the following commands:
List blocking commands: BLPOP, BRPOP, BRPOPLPUSH, BLMOVE,
Zset blocking commands: BZPOPMIN, BZPOPMAX
Stream blocking commands: XREAD, XREADGROUP
SUBSCRIBE, PSUBSCRIBE, MONITOR
In addition, the new flag is turned on inside the AOF client, we do not want to
block the AOF client to prevent deadlocks and commands ordering issues (and there
is also an existing assert in the code that verifies it).
To keep backward compatibility on LUA, all the no-script flags on existing commands
were kept untouched. In addition, a LUA special treatment on XREAD and XREADGROUP was kept.
To keep backward compatibility on MULTI (which today allows SUBSCRIBE, and PSUBSCRIBE).
We added a special treatment on those commands to allow executing them on MULTI.
The only backward compatibility issue that this PR introduces is that now MONITOR
is not allowed inside MULTI.
Tests were added to verify blocking commands are not blocking the client on LUA, MULTI,
or RM_Call. Tests were added to verify the module can check for CLIENT_DENY_BLOCKING flag.
Co-authored-by: Oran Agra <oran@redislabs.com>
Co-authored-by: Itamar Haber <itamar@redislabs.com>
2020-11-17 11:58:55 -05:00
|
|
|
/* If we are not allowed to block the client and the zset is empty the only thing
|
2018-04-29 19:10:42 -04:00
|
|
|
* we can do is treating it as a timeout (even with timeout 0). */
|
Unified MULTI, LUA, and RM_Call with respect to blocking commands (#8025)
Blocking command should not be used with MULTI, LUA, and RM_Call. This is because,
the caller, who executes the command in this context, expects a reply.
Today, LUA and MULTI have a special (and different) treatment to blocking commands:
LUA - Most commands are marked with no-script flag which are checked when executing
and command from LUA, commands that are not marked (like XREAD) verify that their
blocking mode is not used inside LUA (by checking the CLIENT_LUA client flag).
MULTI - Command that is going to block, first verify that the client is not inside
multi (by checking the CLIENT_MULTI client flag). If the client is inside multi, they
return a result which is a match to the empty key with no timeout (for example blpop
inside MULTI will act as lpop)
For modules that perform RM_Call with blocking command, the returned results type is
REDISMODULE_REPLY_UNKNOWN and the caller can not really know what happened.
Disadvantages of the current state are:
No unified approach, LUA, MULTI, and RM_Call, each has a different treatment
Module can not safely execute blocking command (and get reply or error).
Though It is true that modules are not like LUA or MULTI and should be smarter not
to execute blocking commands on RM_Call, sometimes you want to execute a command base
on client input (for example if you create a module that provides a new scripting
language like javascript or python).
While modules (on modules command) can check for REDISMODULE_CTX_FLAGS_LUA or
REDISMODULE_CTX_FLAGS_MULTI to know not to block the client, there is no way to
check if the command came from another module using RM_Call. So there is no way
for a module to know not to block another module RM_Call execution.
This commit adds a way to unify the treatment for blocking clients by introducing
a new CLIENT_DENY_BLOCKING client flag. On LUA, MULTI, and RM_Call the new flag
turned on to signify that the client should not be blocked. A blocking command
verifies that the flag is turned off before blocking. If a blocking command sees
that the CLIENT_DENY_BLOCKING flag is on, it's not blocking and return results
which are matches to empty key with no timeout (as MULTI does today).
The new flag is checked on the following commands:
List blocking commands: BLPOP, BRPOP, BRPOPLPUSH, BLMOVE,
Zset blocking commands: BZPOPMIN, BZPOPMAX
Stream blocking commands: XREAD, XREADGROUP
SUBSCRIBE, PSUBSCRIBE, MONITOR
In addition, the new flag is turned on inside the AOF client, we do not want to
block the AOF client to prevent deadlocks and commands ordering issues (and there
is also an existing assert in the code that verifies it).
To keep backward compatibility on LUA, all the no-script flags on existing commands
were kept untouched. In addition, a LUA special treatment on XREAD and XREADGROUP was kept.
To keep backward compatibility on MULTI (which today allows SUBSCRIBE, and PSUBSCRIBE).
We added a special treatment on those commands to allow executing them on MULTI.
The only backward compatibility issue that this PR introduces is that now MONITOR
is not allowed inside MULTI.
Tests were added to verify blocking commands are not blocking the client on LUA, MULTI,
or RM_Call. Tests were added to verify the module can check for CLIENT_DENY_BLOCKING flag.
Co-authored-by: Oran Agra <oran@redislabs.com>
Co-authored-by: Itamar Haber <itamar@redislabs.com>
2020-11-17 11:58:55 -05:00
|
|
|
if (c->flags & CLIENT_DENY_BLOCKING) {
|
2018-11-30 10:36:55 -05:00
|
|
|
addReplyNullArray(c);
|
2018-04-29 19:10:42 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the keys do not exist we must block */
|
2020-10-08 01:33:17 -04:00
|
|
|
blockForKeys(c,BLOCKED_ZSET,c->argv + 1,c->argc - 2,timeout,NULL,NULL,NULL);
|
2018-04-29 19:10:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-11 11:31:46 -04:00
|
|
|
// BZPOPMIN key [key ...] timeout
|
|
|
|
void bzpopminCommand(client *c) {
|
|
|
|
blockingGenericZpopCommand(c,ZSET_MIN);
|
2018-04-29 19:10:42 -04:00
|
|
|
}
|
|
|
|
|
2018-05-11 11:31:46 -04:00
|
|
|
// BZPOPMAX key [key ...] timeout
|
|
|
|
void bzpopmaxCommand(client *c) {
|
|
|
|
blockingGenericZpopCommand(c,ZSET_MAX);
|
2018-04-29 19:10:42 -04:00
|
|
|
}
|
2021-01-29 03:47:28 -05:00
|
|
|
|
2021-02-07 09:55:11 -05:00
|
|
|
static void zarndmemberReplyWithZiplist(client *c, unsigned int count, ziplistEntry *keys, ziplistEntry *vals) {
|
|
|
|
for (unsigned long i = 0; i < count; i++) {
|
|
|
|
if (vals && c->resp > 2)
|
|
|
|
addReplyArrayLen(c,2);
|
|
|
|
if (keys[i].sval)
|
|
|
|
addReplyBulkCBuffer(c, keys[i].sval, keys[i].slen);
|
|
|
|
else
|
|
|
|
addReplyBulkLongLong(c, keys[i].lval);
|
|
|
|
if (vals) {
|
|
|
|
if (vals[i].sval) {
|
|
|
|
addReplyDouble(c, zzlStrtod(vals[i].sval,vals[i].slen));
|
|
|
|
} else
|
|
|
|
addReplyDouble(c, vals[i].lval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 03:47:28 -05:00
|
|
|
/* How many times bigger should be the zset compared to the requested size
|
|
|
|
* for us to not use the "remove elements" strategy? Read later in the
|
|
|
|
* implementation for more info. */
|
|
|
|
#define ZRANDMEMBER_SUB_STRATEGY_MUL 3
|
|
|
|
|
2021-02-05 08:56:20 -05:00
|
|
|
/* If client is trying to ask for a very large number of random elements,
|
|
|
|
* queuing may consume an unlimited amount of memory, so we want to limit
|
|
|
|
* the number of randoms per time. */
|
|
|
|
#define ZRANDMEMBER_RANDOM_SAMPLE_LIMIT 1000
|
|
|
|
|
2021-01-29 03:47:28 -05:00
|
|
|
void zrandmemberWithCountCommand(client *c, long l, int withscores) {
|
|
|
|
unsigned long count, size;
|
|
|
|
int uniq = 1;
|
|
|
|
robj *zsetobj;
|
|
|
|
|
|
|
|
if ((zsetobj = lookupKeyReadOrReply(c, c->argv[1], shared.null[c->resp]))
|
|
|
|
== NULL || checkType(c, zsetobj, OBJ_ZSET)) return;
|
|
|
|
size = zsetLength(zsetobj);
|
|
|
|
|
|
|
|
if(l >= 0) {
|
|
|
|
count = (unsigned long) l;
|
|
|
|
} else {
|
|
|
|
count = -l;
|
|
|
|
uniq = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If count is zero, serve it ASAP to avoid special cases later. */
|
|
|
|
if (count == 0) {
|
|
|
|
addReply(c,shared.emptyarray);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CASE 1: The count was negative, so the extraction method is just:
|
|
|
|
* "return N random elements" sampling the whole set every time.
|
|
|
|
* This case is trivial and can be served without auxiliary data
|
|
|
|
* structures. This case is the only one that also needs to return the
|
|
|
|
* elements in random order. */
|
|
|
|
if (!uniq || count == 1) {
|
|
|
|
if (withscores && c->resp == 2)
|
|
|
|
addReplyArrayLen(c, count*2);
|
|
|
|
else
|
|
|
|
addReplyArrayLen(c, count);
|
|
|
|
if (zsetobj->encoding == OBJ_ENCODING_SKIPLIST) {
|
|
|
|
zset *zs = zsetobj->ptr;
|
|
|
|
while (count--) {
|
|
|
|
dictEntry *de = dictGetFairRandomKey(zs->dict);
|
|
|
|
sds key = dictGetKey(de);
|
|
|
|
if (withscores && c->resp > 2)
|
|
|
|
addReplyArrayLen(c,2);
|
|
|
|
addReplyBulkCBuffer(c, key, sdslen(key));
|
|
|
|
if (withscores)
|
|
|
|
addReplyDouble(c, dictGetDoubleVal(de));
|
|
|
|
}
|
|
|
|
} else if (zsetobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
ziplistEntry *keys, *vals = NULL;
|
2021-02-05 08:56:20 -05:00
|
|
|
unsigned long limit, sample_count;
|
|
|
|
limit = count > ZRANDMEMBER_RANDOM_SAMPLE_LIMIT ? ZRANDMEMBER_RANDOM_SAMPLE_LIMIT : count;
|
|
|
|
keys = zmalloc(sizeof(ziplistEntry)*limit);
|
2021-01-29 03:47:28 -05:00
|
|
|
if (withscores)
|
2021-02-05 08:56:20 -05:00
|
|
|
vals = zmalloc(sizeof(ziplistEntry)*limit);
|
|
|
|
while (count) {
|
|
|
|
sample_count = count > limit ? limit : count;
|
|
|
|
count -= sample_count;
|
|
|
|
ziplistRandomPairs(zsetobj->ptr, sample_count, keys, vals);
|
2021-02-07 09:55:11 -05:00
|
|
|
zarndmemberReplyWithZiplist(c, sample_count, keys, vals);
|
2021-01-29 03:47:28 -05:00
|
|
|
}
|
|
|
|
zfree(keys);
|
|
|
|
zfree(vals);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
zsetopsrc src;
|
|
|
|
zsetopval zval;
|
|
|
|
src.subject = zsetobj;
|
|
|
|
src.type = zsetobj->type;
|
|
|
|
src.encoding = zsetobj->encoding;
|
|
|
|
zuiInitIterator(&src);
|
|
|
|
memset(&zval, 0, sizeof(zval));
|
|
|
|
|
|
|
|
/* Initiate reply count, RESP3 responds with nested array, RESP2 with flat one. */
|
|
|
|
long reply_size = count < size ? count : size;
|
|
|
|
if (withscores && c->resp == 2)
|
|
|
|
addReplyArrayLen(c, reply_size*2);
|
|
|
|
else
|
|
|
|
addReplyArrayLen(c, reply_size);
|
|
|
|
|
|
|
|
/* CASE 2:
|
|
|
|
* The number of requested elements is greater than the number of
|
|
|
|
* elements inside the zset: simply return the whole zset. */
|
|
|
|
if (count >= size) {
|
|
|
|
while (zuiNext(&src, &zval)) {
|
|
|
|
if (withscores && c->resp > 2)
|
|
|
|
addReplyArrayLen(c,2);
|
|
|
|
addReplyBulkSds(c, zuiNewSdsFromValue(&zval));
|
|
|
|
if (withscores)
|
|
|
|
addReplyDouble(c, zval.score);
|
|
|
|
}
|
2021-06-06 05:13:00 -04:00
|
|
|
zuiClearIterator(&src);
|
2021-01-29 03:47:28 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CASE 3:
|
|
|
|
* The number of elements inside the zset is not greater than
|
|
|
|
* ZRANDMEMBER_SUB_STRATEGY_MUL times the number of requested elements.
|
|
|
|
* In this case we create a dict from scratch with all the elements, and
|
|
|
|
* subtract random elements to reach the requested number of elements.
|
|
|
|
*
|
|
|
|
* This is done because if the number of requested elements is just
|
|
|
|
* a bit less than the number of elements in the set, the natural approach
|
|
|
|
* used into CASE 4 is highly inefficient. */
|
|
|
|
if (count*ZRANDMEMBER_SUB_STRATEGY_MUL > size) {
|
|
|
|
dict *d = dictCreate(&sdsReplyDictType, NULL);
|
2021-02-22 08:00:59 -05:00
|
|
|
dictExpand(d, size);
|
2021-01-29 03:47:28 -05:00
|
|
|
/* Add all the elements into the temporary dictionary. */
|
|
|
|
while (zuiNext(&src, &zval)) {
|
|
|
|
sds key = zuiNewSdsFromValue(&zval);
|
|
|
|
dictEntry *de = dictAddRaw(d, key, NULL);
|
|
|
|
serverAssert(de);
|
|
|
|
if (withscores)
|
|
|
|
dictSetDoubleVal(de, zval.score);
|
|
|
|
}
|
|
|
|
serverAssert(dictSize(d) == size);
|
|
|
|
|
|
|
|
/* Remove random elements to reach the right count. */
|
|
|
|
while (size > count) {
|
|
|
|
dictEntry *de;
|
|
|
|
de = dictGetRandomKey(d);
|
|
|
|
dictUnlink(d,dictGetKey(de));
|
|
|
|
sdsfree(dictGetKey(de));
|
|
|
|
dictFreeUnlinkedEntry(d,de);
|
|
|
|
size--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reply with what's in the dict and release memory */
|
|
|
|
dictIterator *di;
|
|
|
|
dictEntry *de;
|
|
|
|
di = dictGetIterator(d);
|
|
|
|
while ((de = dictNext(di)) != NULL) {
|
|
|
|
if (withscores && c->resp > 2)
|
|
|
|
addReplyArrayLen(c,2);
|
|
|
|
addReplyBulkSds(c, dictGetKey(de));
|
|
|
|
if (withscores)
|
|
|
|
addReplyDouble(c, dictGetDoubleVal(de));
|
|
|
|
}
|
|
|
|
|
|
|
|
dictReleaseIterator(di);
|
|
|
|
dictRelease(d);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CASE 4: We have a big zset compared to the requested number of elements.
|
|
|
|
* In this case we can simply get random elements from the zset and add
|
|
|
|
* to the temporary set, trying to eventually get enough unique elements
|
|
|
|
* to reach the specified count. */
|
|
|
|
else {
|
2021-02-07 09:55:11 -05:00
|
|
|
if (zsetobj->encoding == OBJ_ENCODING_ZIPLIST) {
|
|
|
|
/* it is inefficient to repeatedly pick one random element from a
|
|
|
|
* ziplist. so we use this instead: */
|
|
|
|
ziplistEntry *keys, *vals = NULL;
|
|
|
|
keys = zmalloc(sizeof(ziplistEntry)*count);
|
|
|
|
if (withscores)
|
|
|
|
vals = zmalloc(sizeof(ziplistEntry)*count);
|
|
|
|
serverAssert(ziplistRandomPairsUnique(zsetobj->ptr, count, keys, vals) == count);
|
|
|
|
zarndmemberReplyWithZiplist(c, count, keys, vals);
|
|
|
|
zfree(keys);
|
|
|
|
zfree(vals);
|
2021-06-06 05:13:00 -04:00
|
|
|
zuiClearIterator(&src);
|
2021-02-07 09:55:11 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hashtable encoding (generic implementation) */
|
2021-01-29 03:47:28 -05:00
|
|
|
unsigned long added = 0;
|
|
|
|
dict *d = dictCreate(&hashDictType, NULL);
|
2021-02-22 08:00:59 -05:00
|
|
|
dictExpand(d, count);
|
2021-01-29 03:47:28 -05:00
|
|
|
|
|
|
|
while (added < count) {
|
|
|
|
ziplistEntry key;
|
|
|
|
double score;
|
|
|
|
zsetTypeRandomElement(zsetobj, size, &key, withscores ? &score: NULL);
|
|
|
|
|
|
|
|
/* Try to add the object to the dictionary. If it already exists
|
|
|
|
* free it, otherwise increment the number of objects we have
|
|
|
|
* in the result dictionary. */
|
|
|
|
sds skey = zsetSdsFromZiplistEntry(&key);
|
|
|
|
if (dictAdd(d,skey,NULL) != DICT_OK) {
|
|
|
|
sdsfree(skey);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
added++;
|
|
|
|
|
|
|
|
if (withscores && c->resp > 2)
|
|
|
|
addReplyArrayLen(c,2);
|
|
|
|
zsetReplyFromZiplistEntry(c, &key);
|
|
|
|
if (withscores)
|
|
|
|
addReplyDouble(c, score);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release memory */
|
|
|
|
dictRelease(d);
|
|
|
|
}
|
2021-06-06 05:13:00 -04:00
|
|
|
zuiClearIterator(&src);
|
2021-01-29 03:47:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ZRANDMEMBER [<count> WITHSCORES] */
|
|
|
|
void zrandmemberCommand(client *c) {
|
|
|
|
long l;
|
|
|
|
int withscores = 0;
|
|
|
|
robj *zset;
|
|
|
|
ziplistEntry ele;
|
|
|
|
|
|
|
|
if (c->argc >= 3) {
|
|
|
|
if (getLongFromObjectOrReply(c,c->argv[2],&l,NULL) != C_OK) return;
|
|
|
|
if (c->argc > 4 || (c->argc == 4 && strcasecmp(c->argv[3]->ptr,"withscores"))) {
|
|
|
|
addReplyErrorObject(c,shared.syntaxerr);
|
|
|
|
return;
|
|
|
|
} else if (c->argc == 4)
|
|
|
|
withscores = 1;
|
|
|
|
zrandmemberWithCountCommand(c, l, withscores);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle variant without <count> argument. Reply with simple bulk string */
|
|
|
|
if ((zset = lookupKeyReadOrReply(c,c->argv[1],shared.null[c->resp]))== NULL ||
|
|
|
|
checkType(c,zset,OBJ_ZSET)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
zsetTypeRandomElement(zset, zsetLength(zset), &ele,NULL);
|
|
|
|
zsetReplyFromZiplistEntry(c,&ele);
|
|
|
|
}
|