mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 16:21:03 +00:00
Fix DEBUG DIGEST, SORT and AOF rewrite
This commit is contained in:
parent
9ec4ea20a7
commit
dddf5335f4
36
src/aof.c
36
src/aof.c
@ -429,12 +429,43 @@ int rewriteAppendOnlyFile(char *filename) {
|
|||||||
}
|
}
|
||||||
} else if (o->type == REDIS_ZSET) {
|
} else if (o->type == REDIS_ZSET) {
|
||||||
/* Emit the ZADDs needed to rebuild the sorted set */
|
/* Emit the ZADDs needed to rebuild the sorted set */
|
||||||
|
char cmd[]="*4\r\n$4\r\nZADD\r\n";
|
||||||
|
|
||||||
|
if (o->encoding == REDIS_ENCODING_ZIPLIST) {
|
||||||
|
unsigned char *zl = o->ptr;
|
||||||
|
unsigned char *eptr, *sptr;
|
||||||
|
unsigned char *vstr;
|
||||||
|
unsigned int vlen;
|
||||||
|
long long vll;
|
||||||
|
double score;
|
||||||
|
|
||||||
|
eptr = ziplistIndex(zl,0);
|
||||||
|
redisAssert(eptr != NULL);
|
||||||
|
sptr = ziplistNext(zl,eptr);
|
||||||
|
redisAssert(sptr != NULL);
|
||||||
|
|
||||||
|
while (eptr != NULL) {
|
||||||
|
redisAssert(ziplistGet(eptr,&vstr,&vlen,&vll));
|
||||||
|
score = zzlGetScore(sptr);
|
||||||
|
|
||||||
|
if (fwrite(cmd,sizeof(cmd)-1,1,fp) == 0) goto werr;
|
||||||
|
if (fwriteBulkObject(fp,&key) == 0) goto werr;
|
||||||
|
if (fwriteBulkDouble(fp,score) == 0) goto werr;
|
||||||
|
if (vstr != NULL) {
|
||||||
|
if (fwriteBulkString(fp,(char*)vstr,vlen) == 0)
|
||||||
|
goto werr;
|
||||||
|
} else {
|
||||||
|
if (fwriteBulkLongLong(fp,vll) == 0)
|
||||||
|
goto werr;
|
||||||
|
}
|
||||||
|
zzlNext(zl,&eptr,&sptr);
|
||||||
|
}
|
||||||
|
} else if (o->encoding == REDIS_ENCODING_RAW) {
|
||||||
zset *zs = o->ptr;
|
zset *zs = o->ptr;
|
||||||
dictIterator *di = dictGetIterator(zs->dict);
|
dictIterator *di = dictGetIterator(zs->dict);
|
||||||
dictEntry *de;
|
dictEntry *de;
|
||||||
|
|
||||||
while((de = dictNext(di)) != NULL) {
|
while((de = dictNext(di)) != NULL) {
|
||||||
char cmd[]="*4\r\n$4\r\nZADD\r\n";
|
|
||||||
robj *eleobj = dictGetEntryKey(de);
|
robj *eleobj = dictGetEntryKey(de);
|
||||||
double *score = dictGetEntryVal(de);
|
double *score = dictGetEntryVal(de);
|
||||||
|
|
||||||
@ -444,6 +475,9 @@ int rewriteAppendOnlyFile(char *filename) {
|
|||||||
if (fwriteBulkObject(fp,eleobj) == 0) goto werr;
|
if (fwriteBulkObject(fp,eleobj) == 0) goto werr;
|
||||||
}
|
}
|
||||||
dictReleaseIterator(di);
|
dictReleaseIterator(di);
|
||||||
|
} else {
|
||||||
|
redisPanic("Unknown sorted set encoding");
|
||||||
|
}
|
||||||
} else if (o->type == REDIS_HASH) {
|
} else if (o->type == REDIS_HASH) {
|
||||||
char cmd[]="*4\r\n$4\r\nHSET\r\n";
|
char cmd[]="*4\r\n$4\r\nHSET\r\n";
|
||||||
|
|
||||||
|
37
src/debug.c
37
src/debug.c
@ -127,6 +127,39 @@ void computeDatasetDigest(unsigned char *final) {
|
|||||||
}
|
}
|
||||||
setTypeReleaseIterator(si);
|
setTypeReleaseIterator(si);
|
||||||
} else if (o->type == REDIS_ZSET) {
|
} else if (o->type == REDIS_ZSET) {
|
||||||
|
unsigned char eledigest[20];
|
||||||
|
|
||||||
|
if (o->encoding == REDIS_ENCODING_ZIPLIST) {
|
||||||
|
unsigned char *zl = o->ptr;
|
||||||
|
unsigned char *eptr, *sptr;
|
||||||
|
unsigned char *vstr;
|
||||||
|
unsigned int vlen;
|
||||||
|
long long vll;
|
||||||
|
double score;
|
||||||
|
|
||||||
|
eptr = ziplistIndex(zl,0);
|
||||||
|
redisAssert(eptr != NULL);
|
||||||
|
sptr = ziplistNext(zl,eptr);
|
||||||
|
redisAssert(sptr != NULL);
|
||||||
|
|
||||||
|
while (eptr != NULL) {
|
||||||
|
redisAssert(ziplistGet(eptr,&vstr,&vlen,&vll));
|
||||||
|
score = zzlGetScore(sptr);
|
||||||
|
|
||||||
|
memset(eledigest,0,20);
|
||||||
|
if (vstr != NULL) {
|
||||||
|
mixDigest(eledigest,vstr,vlen);
|
||||||
|
} else {
|
||||||
|
ll2string(buf,sizeof(buf),vll);
|
||||||
|
mixDigest(eledigest,buf,strlen(buf));
|
||||||
|
}
|
||||||
|
|
||||||
|
snprintf(buf,sizeof(buf),"%.17g",score);
|
||||||
|
mixDigest(eledigest,buf,strlen(buf));
|
||||||
|
xorDigest(digest,eledigest,20);
|
||||||
|
zzlNext(zl,&eptr,&sptr);
|
||||||
|
}
|
||||||
|
} else if (o->encoding == REDIS_ENCODING_RAW) {
|
||||||
zset *zs = o->ptr;
|
zset *zs = o->ptr;
|
||||||
dictIterator *di = dictGetIterator(zs->dict);
|
dictIterator *di = dictGetIterator(zs->dict);
|
||||||
dictEntry *de;
|
dictEntry *de;
|
||||||
@ -134,7 +167,6 @@ void computeDatasetDigest(unsigned char *final) {
|
|||||||
while((de = dictNext(di)) != NULL) {
|
while((de = dictNext(di)) != NULL) {
|
||||||
robj *eleobj = dictGetEntryKey(de);
|
robj *eleobj = dictGetEntryKey(de);
|
||||||
double *score = dictGetEntryVal(de);
|
double *score = dictGetEntryVal(de);
|
||||||
unsigned char eledigest[20];
|
|
||||||
|
|
||||||
snprintf(buf,sizeof(buf),"%.17g",*score);
|
snprintf(buf,sizeof(buf),"%.17g",*score);
|
||||||
memset(eledigest,0,20);
|
memset(eledigest,0,20);
|
||||||
@ -143,6 +175,9 @@ void computeDatasetDigest(unsigned char *final) {
|
|||||||
xorDigest(digest,eledigest,20);
|
xorDigest(digest,eledigest,20);
|
||||||
}
|
}
|
||||||
dictReleaseIterator(di);
|
dictReleaseIterator(di);
|
||||||
|
} else {
|
||||||
|
redisPanic("Unknown sorted set encoding");
|
||||||
|
}
|
||||||
} else if (o->type == REDIS_HASH) {
|
} else if (o->type == REDIS_HASH) {
|
||||||
hashTypeIterator *hi;
|
hashTypeIterator *hi;
|
||||||
robj *obj;
|
robj *obj;
|
||||||
|
@ -800,6 +800,9 @@ zskiplist *zslCreate(void);
|
|||||||
void zslFree(zskiplist *zsl);
|
void zslFree(zskiplist *zsl);
|
||||||
zskiplistNode *zslInsert(zskiplist *zsl, double score, robj *obj);
|
zskiplistNode *zslInsert(zskiplist *zsl, double score, robj *obj);
|
||||||
unsigned char *zzlInsert(unsigned char *zl, robj *ele, double score);
|
unsigned char *zzlInsert(unsigned char *zl, robj *ele, double score);
|
||||||
|
double zzlGetScore(unsigned char *sptr);
|
||||||
|
void zzlNext(unsigned char *zl, unsigned char **eptr, unsigned char **sptr);
|
||||||
|
void zzlPrev(unsigned char *zl, unsigned char **eptr, unsigned char **sptr);
|
||||||
unsigned int zsetLength(robj *zobj);
|
unsigned int zsetLength(robj *zobj);
|
||||||
void zsetConvert(robj *zobj, int encoding);
|
void zsetConvert(robj *zobj, int encoding);
|
||||||
|
|
||||||
|
@ -199,6 +199,9 @@ void sortCommand(redisClient *c) {
|
|||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Destructively convert encoded sorted sets for SORT. */
|
||||||
|
if (sortval->type == REDIS_ZSET) zsetConvert(sortval, REDIS_ENCODING_RAW);
|
||||||
|
|
||||||
/* Load the sorting vector with all the objects to sort */
|
/* Load the sorting vector with all the objects to sort */
|
||||||
switch(sortval->type) {
|
switch(sortval->type) {
|
||||||
case REDIS_LIST: vectorlen = listTypeLength(sortval); break;
|
case REDIS_LIST: vectorlen = listTypeLength(sortval); break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user