2010-06-21 18:07:48 -04:00
|
|
|
#include "redis.h"
|
2011-11-12 13:27:35 -05:00
|
|
|
#include <math.h> /* isnan(), isinf() */
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
* String Commands
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
2010-12-14 08:20:51 -05:00
|
|
|
static int checkStringLength(redisClient *c, long long size) {
|
|
|
|
if (size > 512*1024*1024) {
|
|
|
|
addReplyError(c,"string exceeds maximum allowed size (512MB)");
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-10 11:52:02 -05:00
|
|
|
void setGenericCommand(redisClient *c, int nx, robj *key, robj *val, robj *expire, int unit) {
|
|
|
|
long long milliseconds = 0; /* initialized to avoid an harmness warning */
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
if (expire) {
|
2011-11-10 11:52:02 -05:00
|
|
|
if (getLongLongFromObjectOrReply(c, expire, &milliseconds, NULL) != REDIS_OK)
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
2011-11-10 11:52:02 -05:00
|
|
|
if (milliseconds <= 0) {
|
2010-09-02 13:52:24 -04:00
|
|
|
addReplyError(c,"invalid expire time in SETEX");
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-11-10 11:52:02 -05:00
|
|
|
if (unit == UNIT_SECONDS) milliseconds *= 1000;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2011-06-14 09:34:27 -04:00
|
|
|
if (lookupKeyWrite(c->db,key) != NULL && nx) {
|
|
|
|
addReply(c,shared.czero);
|
|
|
|
return;
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2011-06-14 09:34:27 -04:00
|
|
|
setKey(c->db,key,val);
|
2010-06-21 18:07:48 -04:00
|
|
|
server.dirty++;
|
2011-11-10 11:52:02 -05:00
|
|
|
if (expire) setExpire(c->db,key,mstime()+milliseconds);
|
2010-06-21 18:07:48 -04:00
|
|
|
addReply(c, nx ? shared.cone : shared.ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setCommand(redisClient *c) {
|
2010-10-17 11:21:41 -04:00
|
|
|
c->argv[2] = tryObjectEncoding(c->argv[2]);
|
2011-11-10 11:52:02 -05:00
|
|
|
setGenericCommand(c,0,c->argv[1],c->argv[2],NULL,0);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void setnxCommand(redisClient *c) {
|
2010-10-17 11:21:41 -04:00
|
|
|
c->argv[2] = tryObjectEncoding(c->argv[2]);
|
2011-11-10 11:52:02 -05:00
|
|
|
setGenericCommand(c,1,c->argv[1],c->argv[2],NULL,0);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void setexCommand(redisClient *c) {
|
2010-10-17 11:21:41 -04:00
|
|
|
c->argv[3] = tryObjectEncoding(c->argv[3]);
|
2011-11-10 11:52:02 -05:00
|
|
|
setGenericCommand(c,0,c->argv[1],c->argv[3],c->argv[2],UNIT_SECONDS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void psetexCommand(redisClient *c) {
|
|
|
|
c->argv[3] = tryObjectEncoding(c->argv[3]);
|
|
|
|
setGenericCommand(c,0,c->argv[1],c->argv[3],c->argv[2],UNIT_MILLISECONDS);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int getGenericCommand(redisClient *c) {
|
|
|
|
robj *o;
|
|
|
|
|
|
|
|
if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.nullbulk)) == NULL)
|
|
|
|
return REDIS_OK;
|
|
|
|
|
|
|
|
if (o->type != REDIS_STRING) {
|
|
|
|
addReply(c,shared.wrongtypeerr);
|
|
|
|
return REDIS_ERR;
|
|
|
|
} else {
|
|
|
|
addReplyBulk(c,o);
|
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void getCommand(redisClient *c) {
|
|
|
|
getGenericCommand(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void getsetCommand(redisClient *c) {
|
|
|
|
if (getGenericCommand(c) == REDIS_ERR) return;
|
2010-10-17 11:21:41 -04:00
|
|
|
c->argv[2] = tryObjectEncoding(c->argv[2]);
|
2011-06-14 09:34:27 -04:00
|
|
|
setKey(c->db,c->argv[1],c->argv[2]);
|
2010-06-21 18:07:48 -04:00
|
|
|
server.dirty++;
|
2010-12-09 10:39:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int getBitOffsetFromArgument(redisClient *c, robj *o, size_t *offset) {
|
|
|
|
long long loffset;
|
|
|
|
char *err = "bit offset is not an integer or out of range";
|
|
|
|
|
|
|
|
if (getLongLongFromObjectOrReply(c,o,&loffset,err) != REDIS_OK)
|
|
|
|
return REDIS_ERR;
|
|
|
|
|
2010-12-14 11:46:20 -05:00
|
|
|
/* Limit offset to 512MB in bytes */
|
|
|
|
if ((loffset < 0) || ((unsigned long long)loffset >> 3) >= (512*1024*1024))
|
2010-12-09 10:39:33 -05:00
|
|
|
{
|
|
|
|
addReplyError(c,err);
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
*offset = (size_t)loffset;
|
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setbitCommand(redisClient *c) {
|
|
|
|
robj *o;
|
2010-12-10 05:58:14 -05:00
|
|
|
char *err = "bit is not an integer or out of range";
|
2010-12-09 10:39:33 -05:00
|
|
|
size_t bitoffset;
|
2010-12-14 18:42:32 -05:00
|
|
|
int byte, bit;
|
|
|
|
int byteval, bitval;
|
|
|
|
long on;
|
2010-12-09 10:39:33 -05:00
|
|
|
|
|
|
|
if (getBitOffsetFromArgument(c,c->argv[2],&bitoffset) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
|
2010-12-14 18:42:32 -05:00
|
|
|
if (getLongFromObjectOrReply(c,c->argv[3],&on,err) != REDIS_OK)
|
2010-12-10 05:58:14 -05:00
|
|
|
return;
|
|
|
|
|
2010-12-14 18:42:32 -05:00
|
|
|
/* Bits can only be set or cleared... */
|
|
|
|
if (on & ~1) {
|
2010-12-10 05:58:14 -05:00
|
|
|
addReplyError(c,err);
|
2010-12-09 10:39:33 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
o = lookupKeyWrite(c->db,c->argv[1]);
|
|
|
|
if (o == NULL) {
|
2010-12-10 05:58:14 -05:00
|
|
|
o = createObject(REDIS_STRING,sdsempty());
|
2010-12-09 10:39:33 -05:00
|
|
|
dbAdd(c->db,c->argv[1],o);
|
|
|
|
} else {
|
|
|
|
if (checkType(c,o,REDIS_STRING)) return;
|
|
|
|
|
|
|
|
/* Create a copy when the object is shared or encoded. */
|
|
|
|
if (o->refcount != 1 || o->encoding != REDIS_ENCODING_RAW) {
|
|
|
|
robj *decoded = getDecodedObject(o);
|
|
|
|
o = createStringObject(decoded->ptr, sdslen(decoded->ptr));
|
|
|
|
decrRefCount(decoded);
|
2011-06-14 09:34:27 -04:00
|
|
|
dbOverwrite(c->db,c->argv[1],o);
|
2010-12-09 10:39:33 -05:00
|
|
|
}
|
|
|
|
}
|
2010-12-10 05:58:14 -05:00
|
|
|
|
2010-12-14 18:42:32 -05:00
|
|
|
/* Grow sds value to the right length if necessary */
|
2010-12-10 05:58:14 -05:00
|
|
|
byte = bitoffset >> 3;
|
2010-12-10 06:16:16 -05:00
|
|
|
o->ptr = sdsgrowzero(o->ptr,byte+1);
|
2010-12-10 05:58:14 -05:00
|
|
|
|
2010-12-14 18:42:32 -05:00
|
|
|
/* Get current values */
|
|
|
|
byteval = ((char*)o->ptr)[byte];
|
|
|
|
bit = 7 - (bitoffset & 0x7);
|
|
|
|
bitval = byteval & (1 << bit);
|
|
|
|
|
|
|
|
/* Update byte with new bit value and return original value */
|
|
|
|
byteval &= ~(1 << bit);
|
|
|
|
byteval |= ((on & 0x1) << bit);
|
|
|
|
((char*)o->ptr)[byte] = byteval;
|
2010-12-29 13:39:42 -05:00
|
|
|
signalModifiedKey(c->db,c->argv[1]);
|
2010-12-09 10:39:33 -05:00
|
|
|
server.dirty++;
|
2010-12-14 18:42:32 -05:00
|
|
|
addReply(c, bitval ? shared.cone : shared.czero);
|
2010-12-09 10:39:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void getbitCommand(redisClient *c) {
|
|
|
|
robj *o;
|
|
|
|
char llbuf[32];
|
2010-12-14 18:42:32 -05:00
|
|
|
size_t bitoffset;
|
|
|
|
size_t byte, bit;
|
|
|
|
size_t bitval = 0;
|
2010-12-09 10:39:33 -05:00
|
|
|
|
|
|
|
if (getBitOffsetFromArgument(c,c->argv[2],&bitoffset) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL ||
|
|
|
|
checkType(c,o,REDIS_STRING)) return;
|
|
|
|
|
|
|
|
byte = bitoffset >> 3;
|
2010-12-14 18:42:32 -05:00
|
|
|
bit = 7 - (bitoffset & 0x7);
|
2010-12-09 10:39:33 -05:00
|
|
|
if (o->encoding != REDIS_ENCODING_RAW) {
|
|
|
|
if (byte < (size_t)ll2string(llbuf,sizeof(llbuf),(long)o->ptr))
|
2010-12-14 18:42:32 -05:00
|
|
|
bitval = llbuf[byte] & (1 << bit);
|
2010-12-09 10:39:33 -05:00
|
|
|
} else {
|
|
|
|
if (byte < sdslen(o->ptr))
|
2010-12-14 18:42:32 -05:00
|
|
|
bitval = ((char*)o->ptr)[byte] & (1 << bit);
|
2010-12-09 10:39:33 -05:00
|
|
|
}
|
2010-12-14 18:42:32 -05:00
|
|
|
|
|
|
|
addReply(c, bitval ? shared.cone : shared.czero);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2010-12-14 08:20:51 -05:00
|
|
|
void setrangeCommand(redisClient *c) {
|
|
|
|
robj *o;
|
|
|
|
long offset;
|
|
|
|
sds value = c->argv[3]->ptr;
|
|
|
|
|
|
|
|
if (getLongFromObjectOrReply(c,c->argv[2],&offset,NULL) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
|
2010-12-15 05:30:50 -05:00
|
|
|
if (offset < 0) {
|
|
|
|
addReplyError(c,"offset is out of range");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-12-14 08:20:51 -05:00
|
|
|
o = lookupKeyWrite(c->db,c->argv[1]);
|
|
|
|
if (o == NULL) {
|
|
|
|
/* Return 0 when setting nothing on a non-existing string */
|
|
|
|
if (sdslen(value) == 0) {
|
|
|
|
addReply(c,shared.czero);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return when the resulting string exceeds allowed size */
|
|
|
|
if (checkStringLength(c,offset+sdslen(value)) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
o = createObject(REDIS_STRING,sdsempty());
|
|
|
|
dbAdd(c->db,c->argv[1],o);
|
|
|
|
} else {
|
2010-12-15 05:49:04 -05:00
|
|
|
size_t olen;
|
2010-12-14 08:20:51 -05:00
|
|
|
|
|
|
|
/* Key exists, check type */
|
|
|
|
if (checkType(c,o,REDIS_STRING))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Return existing string length when setting nothing */
|
2010-12-15 05:49:04 -05:00
|
|
|
olen = stringObjectLen(o);
|
2010-12-14 08:20:51 -05:00
|
|
|
if (sdslen(value) == 0) {
|
|
|
|
addReplyLongLong(c,olen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return when the resulting string exceeds allowed size */
|
|
|
|
if (checkStringLength(c,offset+sdslen(value)) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Create a copy when the object is shared or encoded. */
|
|
|
|
if (o->refcount != 1 || o->encoding != REDIS_ENCODING_RAW) {
|
|
|
|
robj *decoded = getDecodedObject(o);
|
|
|
|
o = createStringObject(decoded->ptr, sdslen(decoded->ptr));
|
|
|
|
decrRefCount(decoded);
|
2011-06-14 09:34:27 -04:00
|
|
|
dbOverwrite(c->db,c->argv[1],o);
|
2010-12-14 08:20:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sdslen(value) > 0) {
|
|
|
|
o->ptr = sdsgrowzero(o->ptr,offset+sdslen(value));
|
|
|
|
memcpy((char*)o->ptr+offset,value,sdslen(value));
|
2010-12-29 13:39:42 -05:00
|
|
|
signalModifiedKey(c->db,c->argv[1]);
|
2010-12-14 08:20:51 -05:00
|
|
|
server.dirty++;
|
|
|
|
}
|
|
|
|
addReplyLongLong(c,sdslen(o->ptr));
|
|
|
|
}
|
|
|
|
|
2010-12-14 09:10:58 -05:00
|
|
|
void getrangeCommand(redisClient *c) {
|
|
|
|
robj *o;
|
|
|
|
long start, end;
|
|
|
|
char *str, llbuf[32];
|
|
|
|
size_t strlen;
|
|
|
|
|
|
|
|
if (getLongFromObjectOrReply(c,c->argv[2],&start,NULL) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
if (getLongFromObjectOrReply(c,c->argv[3],&end,NULL) != REDIS_OK)
|
|
|
|
return;
|
2011-03-04 10:22:50 -05:00
|
|
|
if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.emptybulk)) == NULL ||
|
2010-12-14 09:10:58 -05:00
|
|
|
checkType(c,o,REDIS_STRING)) return;
|
|
|
|
|
|
|
|
if (o->encoding == REDIS_ENCODING_INT) {
|
|
|
|
str = llbuf;
|
|
|
|
strlen = ll2string(llbuf,sizeof(llbuf),(long)o->ptr);
|
|
|
|
} else {
|
|
|
|
str = o->ptr;
|
|
|
|
strlen = sdslen(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert negative indexes */
|
|
|
|
if (start < 0) start = strlen+start;
|
|
|
|
if (end < 0) end = strlen+end;
|
|
|
|
if (start < 0) start = 0;
|
|
|
|
if (end < 0) end = 0;
|
|
|
|
if ((unsigned)end >= strlen) end = strlen-1;
|
|
|
|
|
|
|
|
/* Precondition: end >= 0 && end < strlen, so the only condition where
|
|
|
|
* nothing can be returned is: start > end. */
|
|
|
|
if (start > end) {
|
2011-03-04 10:22:50 -05:00
|
|
|
addReply(c,shared.emptybulk);
|
2010-12-14 09:10:58 -05:00
|
|
|
} else {
|
|
|
|
addReplyBulkCBuffer(c,(char*)str+start,end-start+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
void mgetCommand(redisClient *c) {
|
|
|
|
int j;
|
|
|
|
|
2010-09-02 06:38:34 -04:00
|
|
|
addReplyMultiBulkLen(c,c->argc-1);
|
2010-06-21 18:07:48 -04:00
|
|
|
for (j = 1; j < c->argc; j++) {
|
|
|
|
robj *o = lookupKeyRead(c->db,c->argv[j]);
|
|
|
|
if (o == NULL) {
|
|
|
|
addReply(c,shared.nullbulk);
|
|
|
|
} else {
|
|
|
|
if (o->type != REDIS_STRING) {
|
|
|
|
addReply(c,shared.nullbulk);
|
|
|
|
} else {
|
|
|
|
addReplyBulk(c,o);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void msetGenericCommand(redisClient *c, int nx) {
|
|
|
|
int j, busykeys = 0;
|
|
|
|
|
|
|
|
if ((c->argc % 2) == 0) {
|
2010-09-02 13:52:24 -04:00
|
|
|
addReplyError(c,"wrong number of arguments for MSET");
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Handle the NX flag. The MSETNX semantic is to return zero and don't
|
|
|
|
* set nothing at all if at least one already key exists. */
|
|
|
|
if (nx) {
|
|
|
|
for (j = 1; j < c->argc; j += 2) {
|
|
|
|
if (lookupKeyWrite(c->db,c->argv[j]) != NULL) {
|
|
|
|
busykeys++;
|
|
|
|
}
|
|
|
|
}
|
2011-06-14 09:34:27 -04:00
|
|
|
if (busykeys) {
|
|
|
|
addReply(c, shared.czero);
|
|
|
|
return;
|
|
|
|
}
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 1; j < c->argc; j += 2) {
|
|
|
|
c->argv[j+1] = tryObjectEncoding(c->argv[j+1]);
|
2011-06-14 09:34:27 -04:00
|
|
|
setKey(c->db,c->argv[j],c->argv[j+1]);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
server.dirty += (c->argc-1)/2;
|
|
|
|
addReply(c, nx ? shared.cone : shared.ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
void msetCommand(redisClient *c) {
|
|
|
|
msetGenericCommand(c,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void msetnxCommand(redisClient *c) {
|
|
|
|
msetGenericCommand(c,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void incrDecrCommand(redisClient *c, long long incr) {
|
2010-12-19 06:22:12 -05:00
|
|
|
long long value, oldvalue;
|
2011-06-14 09:34:27 -04:00
|
|
|
robj *o, *new;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
o = lookupKeyWrite(c->db,c->argv[1]);
|
|
|
|
if (o != NULL && checkType(c,o,REDIS_STRING)) return;
|
|
|
|
if (getLongLongFromObjectOrReply(c,o,&value,NULL) != REDIS_OK) return;
|
|
|
|
|
2010-12-19 06:22:12 -05:00
|
|
|
oldvalue = value;
|
2010-06-21 18:07:48 -04:00
|
|
|
value += incr;
|
2010-12-19 06:22:12 -05:00
|
|
|
if ((incr < 0 && value > oldvalue) || (incr > 0 && value < oldvalue)) {
|
|
|
|
addReplyError(c,"increment or decrement would overflow");
|
|
|
|
return;
|
|
|
|
}
|
2011-06-14 09:34:27 -04:00
|
|
|
new = createStringObjectFromLongLong(value);
|
|
|
|
if (o)
|
|
|
|
dbOverwrite(c->db,c->argv[1],new);
|
|
|
|
else
|
|
|
|
dbAdd(c->db,c->argv[1],new);
|
2010-12-29 13:39:42 -05:00
|
|
|
signalModifiedKey(c->db,c->argv[1]);
|
2010-06-21 18:07:48 -04:00
|
|
|
server.dirty++;
|
|
|
|
addReply(c,shared.colon);
|
2011-06-14 09:34:27 -04:00
|
|
|
addReply(c,new);
|
2010-06-21 18:07:48 -04:00
|
|
|
addReply(c,shared.crlf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void incrCommand(redisClient *c) {
|
|
|
|
incrDecrCommand(c,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void decrCommand(redisClient *c) {
|
|
|
|
incrDecrCommand(c,-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void incrbyCommand(redisClient *c) {
|
|
|
|
long long incr;
|
|
|
|
|
|
|
|
if (getLongLongFromObjectOrReply(c, c->argv[2], &incr, NULL) != REDIS_OK) return;
|
|
|
|
incrDecrCommand(c,incr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void decrbyCommand(redisClient *c) {
|
|
|
|
long long incr;
|
|
|
|
|
|
|
|
if (getLongLongFromObjectOrReply(c, c->argv[2], &incr, NULL) != REDIS_OK) return;
|
|
|
|
incrDecrCommand(c,-incr);
|
|
|
|
}
|
|
|
|
|
2011-11-12 13:27:35 -05:00
|
|
|
void incrbyfloatCommand(redisClient *c) {
|
|
|
|
long double incr, value;
|
|
|
|
robj *o, *new;
|
|
|
|
|
|
|
|
o = lookupKeyWrite(c->db,c->argv[1]);
|
|
|
|
if (o != NULL && checkType(c,o,REDIS_STRING)) return;
|
|
|
|
if (getLongDoubleFromObjectOrReply(c,o,&value,NULL) != REDIS_OK ||
|
|
|
|
getLongDoubleFromObjectOrReply(c,c->argv[2],&incr,NULL) != REDIS_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
value += incr;
|
|
|
|
if (isnan(value) || isinf(value)) {
|
|
|
|
addReplyError(c,"increment would produce NaN or Infinity");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
new = createStringObjectFromLongDouble(value);
|
|
|
|
if (o)
|
|
|
|
dbOverwrite(c->db,c->argv[1],new);
|
|
|
|
else
|
|
|
|
dbAdd(c->db,c->argv[1],new);
|
|
|
|
signalModifiedKey(c->db,c->argv[1]);
|
|
|
|
server.dirty++;
|
|
|
|
addReplyBulk(c,new);
|
|
|
|
}
|
|
|
|
|
2010-06-21 18:07:48 -04:00
|
|
|
void appendCommand(redisClient *c) {
|
|
|
|
size_t totlen;
|
2010-12-09 11:16:10 -05:00
|
|
|
robj *o, *append;
|
2010-06-21 18:07:48 -04:00
|
|
|
|
|
|
|
o = lookupKeyWrite(c->db,c->argv[1]);
|
|
|
|
if (o == NULL) {
|
|
|
|
/* Create the key */
|
2010-12-15 05:40:36 -05:00
|
|
|
c->argv[2] = tryObjectEncoding(c->argv[2]);
|
|
|
|
dbAdd(c->db,c->argv[1],c->argv[2]);
|
2010-06-21 18:07:48 -04:00
|
|
|
incrRefCount(c->argv[2]);
|
|
|
|
totlen = stringObjectLen(c->argv[2]);
|
|
|
|
} else {
|
2010-12-15 05:40:36 -05:00
|
|
|
/* Key exists, check type */
|
|
|
|
if (checkType(c,o,REDIS_STRING))
|
2010-06-21 18:07:48 -04:00
|
|
|
return;
|
2010-12-09 11:16:10 -05:00
|
|
|
|
2010-12-15 05:40:36 -05:00
|
|
|
/* "append" is an argument, so always an sds */
|
|
|
|
append = c->argv[2];
|
|
|
|
totlen = stringObjectLen(o)+sdslen(append->ptr);
|
|
|
|
if (checkStringLength(c,totlen) != REDIS_OK)
|
2010-12-09 11:16:10 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* If the object is shared or encoded, we have to make a copy */
|
2010-06-21 18:07:48 -04:00
|
|
|
if (o->refcount != 1 || o->encoding != REDIS_ENCODING_RAW) {
|
|
|
|
robj *decoded = getDecodedObject(o);
|
|
|
|
o = createStringObject(decoded->ptr, sdslen(decoded->ptr));
|
|
|
|
decrRefCount(decoded);
|
2011-06-14 09:34:27 -04:00
|
|
|
dbOverwrite(c->db,c->argv[1],o);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
2010-12-09 11:16:10 -05:00
|
|
|
|
|
|
|
/* Append the value */
|
|
|
|
o->ptr = sdscatlen(o->ptr,append->ptr,sdslen(append->ptr));
|
2010-06-21 18:07:48 -04:00
|
|
|
totlen = sdslen(o->ptr);
|
|
|
|
}
|
2010-12-29 13:39:42 -05:00
|
|
|
signalModifiedKey(c->db,c->argv[1]);
|
2010-06-21 18:07:48 -04:00
|
|
|
server.dirty++;
|
2010-09-02 08:30:56 -04:00
|
|
|
addReplyLongLong(c,totlen);
|
2010-06-21 18:07:48 -04:00
|
|
|
}
|
|
|
|
|
2010-07-27 04:09:26 -04:00
|
|
|
void strlenCommand(redisClient *c) {
|
|
|
|
robj *o;
|
|
|
|
if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL ||
|
|
|
|
checkType(c,o,REDIS_STRING)) return;
|
2010-12-15 05:49:04 -05:00
|
|
|
addReplyLongLong(c,stringObjectLen(o));
|
2010-07-27 04:09:26 -04:00
|
|
|
}
|
2010-12-14 04:31:11 -05:00
|
|
|
|