2010-05-18 15:45:36 +00:00
|
|
|
/*
|
2011-04-21 20:46:23 +00:00
|
|
|
* Copyright (c) 2009-2011, Salvatore Sanfilippo <antirez at gmail dot com>
|
|
|
|
* Copyright (c) 2010-2011, Pieter Noordhuis <pcnoordhuis at gmail dot com>
|
2010-12-16 21:08:39 +00:00
|
|
|
*
|
2010-05-18 15:45:36 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-04-21 14:23:58 +00:00
|
|
|
#include "fmacros.h"
|
2010-05-18 15:11:09 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2010-09-20 16:02:28 +00:00
|
|
|
#include <assert.h>
|
2010-09-24 16:38:14 +00:00
|
|
|
#include <errno.h>
|
2010-12-02 15:18:30 +00:00
|
|
|
#include <ctype.h>
|
2010-05-18 15:11:09 +00:00
|
|
|
|
|
|
|
#include "hiredis.h"
|
2010-11-02 16:09:26 +00:00
|
|
|
#include "net.h"
|
2010-05-18 15:11:09 +00:00
|
|
|
#include "sds.h"
|
|
|
|
|
2010-10-30 15:47:19 +00:00
|
|
|
static redisReply *createReplyObject(int type);
|
2010-10-31 13:44:36 +00:00
|
|
|
static void *createStringObject(const redisReadTask *task, char *str, size_t len);
|
|
|
|
static void *createArrayObject(const redisReadTask *task, int elements);
|
|
|
|
static void *createIntegerObject(const redisReadTask *task, long long value);
|
|
|
|
static void *createNilObject(const redisReadTask *task);
|
2010-05-18 15:11:09 +00:00
|
|
|
|
2011-04-20 11:15:58 +00:00
|
|
|
/* Default set of functions to build the reply. Keep in mind that such a
|
|
|
|
* function returning NULL is interpreted as OOM. */
|
2010-10-30 14:36:08 +00:00
|
|
|
static redisReplyObjectFunctions defaultFunctions = {
|
2010-09-20 20:04:35 +00:00
|
|
|
createStringObject,
|
|
|
|
createArrayObject,
|
|
|
|
createIntegerObject,
|
|
|
|
createNilObject,
|
|
|
|
freeReplyObject
|
|
|
|
};
|
|
|
|
|
2010-05-18 15:11:09 +00:00
|
|
|
/* Create a reply object */
|
2010-10-30 15:47:19 +00:00
|
|
|
static redisReply *createReplyObject(int type) {
|
2011-04-20 11:15:58 +00:00
|
|
|
redisReply *r = calloc(1,sizeof(*r));
|
|
|
|
|
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
2010-05-18 15:11:09 +00:00
|
|
|
|
|
|
|
r->type = type;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free a reply object */
|
2010-09-20 20:04:35 +00:00
|
|
|
void freeReplyObject(void *reply) {
|
|
|
|
redisReply *r = reply;
|
2010-05-18 15:11:09 +00:00
|
|
|
size_t j;
|
|
|
|
|
|
|
|
switch(r->type) {
|
|
|
|
case REDIS_REPLY_INTEGER:
|
|
|
|
break; /* Nothing to free */
|
|
|
|
case REDIS_REPLY_ARRAY:
|
2011-06-09 07:23:54 +00:00
|
|
|
if (r->element != NULL) {
|
2011-04-20 11:15:58 +00:00
|
|
|
for (j = 0; j < r->elements; j++)
|
|
|
|
if (r->element[j] != NULL)
|
|
|
|
freeReplyObject(r->element[j]);
|
|
|
|
free(r->element);
|
|
|
|
}
|
2010-05-18 15:11:09 +00:00
|
|
|
break;
|
2010-11-26 13:47:01 +00:00
|
|
|
case REDIS_REPLY_ERROR:
|
|
|
|
case REDIS_REPLY_STATUS:
|
|
|
|
case REDIS_REPLY_STRING:
|
2011-04-20 11:15:58 +00:00
|
|
|
if (r->str != NULL)
|
|
|
|
free(r->str);
|
2010-05-18 15:11:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(r);
|
|
|
|
}
|
|
|
|
|
2010-10-31 13:44:36 +00:00
|
|
|
static void *createStringObject(const redisReadTask *task, char *str, size_t len) {
|
2011-04-20 11:15:58 +00:00
|
|
|
redisReply *r, *parent;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
r = createReplyObject(task->type);
|
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
buf = malloc(len+1);
|
|
|
|
if (buf == NULL) {
|
|
|
|
freeReplyObject(r);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(task->type == REDIS_REPLY_ERROR ||
|
2010-09-20 16:02:28 +00:00
|
|
|
task->type == REDIS_REPLY_STATUS ||
|
|
|
|
task->type == REDIS_REPLY_STRING);
|
|
|
|
|
2010-10-30 15:47:19 +00:00
|
|
|
/* Copy string value */
|
2011-04-20 11:15:58 +00:00
|
|
|
memcpy(buf,str,len);
|
|
|
|
buf[len] = '\0';
|
|
|
|
r->str = buf;
|
2010-10-30 15:47:19 +00:00
|
|
|
r->len = len;
|
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
if (task->parent) {
|
2011-04-20 11:15:58 +00:00
|
|
|
parent = task->parent->obj;
|
2010-09-20 16:02:28 +00:00
|
|
|
assert(parent->type == REDIS_REPLY_ARRAY);
|
|
|
|
parent->element[task->idx] = r;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-10-31 13:44:36 +00:00
|
|
|
static void *createArrayObject(const redisReadTask *task, int elements) {
|
2011-04-20 11:15:58 +00:00
|
|
|
redisReply *r, *parent;
|
|
|
|
|
|
|
|
r = createReplyObject(REDIS_REPLY_ARRAY);
|
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2011-06-09 07:23:54 +00:00
|
|
|
if (elements > 0) {
|
|
|
|
r->element = calloc(elements,sizeof(redisReply*));
|
|
|
|
if (r->element == NULL) {
|
|
|
|
freeReplyObject(r);
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
r->elements = elements;
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
if (task->parent) {
|
2011-04-20 11:15:58 +00:00
|
|
|
parent = task->parent->obj;
|
2010-09-20 16:02:28 +00:00
|
|
|
assert(parent->type == REDIS_REPLY_ARRAY);
|
|
|
|
parent->element[task->idx] = r;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-10-31 13:44:36 +00:00
|
|
|
static void *createIntegerObject(const redisReadTask *task, long long value) {
|
2011-04-20 11:15:58 +00:00
|
|
|
redisReply *r, *parent;
|
|
|
|
|
|
|
|
r = createReplyObject(REDIS_REPLY_INTEGER);
|
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
r->integer = value;
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
if (task->parent) {
|
2011-04-20 11:15:58 +00:00
|
|
|
parent = task->parent->obj;
|
2010-09-20 16:02:28 +00:00
|
|
|
assert(parent->type == REDIS_REPLY_ARRAY);
|
|
|
|
parent->element[task->idx] = r;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-10-31 13:44:36 +00:00
|
|
|
static void *createNilObject(const redisReadTask *task) {
|
2011-04-20 11:15:58 +00:00
|
|
|
redisReply *r, *parent;
|
|
|
|
|
|
|
|
r = createReplyObject(REDIS_REPLY_NIL);
|
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
if (task->parent) {
|
2011-04-20 11:15:58 +00:00
|
|
|
parent = task->parent->obj;
|
2010-09-20 16:02:28 +00:00
|
|
|
assert(parent->type == REDIS_REPLY_ARRAY);
|
|
|
|
parent->element[task->idx] = r;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-04-21 14:01:27 +00:00
|
|
|
static void __redisReaderSetError(redisReader *r, int type, const char *str) {
|
2011-04-20 14:54:12 +00:00
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if (r->reply != NULL && r->fn && r->fn->freeObject) {
|
|
|
|
r->fn->freeObject(r->reply);
|
|
|
|
r->reply = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear input buffer on errors. */
|
|
|
|
if (r->buf != NULL) {
|
|
|
|
sdsfree(r->buf);
|
|
|
|
r->buf = NULL;
|
|
|
|
r->pos = r->len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset task stack. */
|
|
|
|
r->ridx = -1;
|
|
|
|
|
|
|
|
/* Set error. */
|
|
|
|
r->err = type;
|
|
|
|
len = strlen(str);
|
|
|
|
len = len < (sizeof(r->errstr)-1) ? len : (sizeof(r->errstr)-1);
|
|
|
|
memcpy(r->errstr,str,len);
|
|
|
|
r->errstr[len] = '\0';
|
|
|
|
}
|
|
|
|
|
2011-04-21 20:39:19 +00:00
|
|
|
static size_t chrtos(char *buf, size_t size, char byte) {
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
switch(byte) {
|
|
|
|
case '\\':
|
|
|
|
case '"':
|
|
|
|
len = snprintf(buf,size,"\"\\%c\"",byte);
|
|
|
|
break;
|
|
|
|
case '\n': len = snprintf(buf,size,"\"\\n\""); break;
|
|
|
|
case '\r': len = snprintf(buf,size,"\"\\r\""); break;
|
|
|
|
case '\t': len = snprintf(buf,size,"\"\\t\""); break;
|
|
|
|
case '\a': len = snprintf(buf,size,"\"\\a\""); break;
|
|
|
|
case '\b': len = snprintf(buf,size,"\"\\b\""); break;
|
|
|
|
default:
|
|
|
|
if (isprint(byte))
|
|
|
|
len = snprintf(buf,size,"\"%c\"",byte);
|
|
|
|
else
|
|
|
|
len = snprintf(buf,size,"\"\\x%02x\"",(unsigned char)byte);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2011-04-21 14:01:27 +00:00
|
|
|
static void __redisReaderSetErrorProtocolByte(redisReader *r, char byte) {
|
2011-04-20 14:54:12 +00:00
|
|
|
char cbuf[8], sbuf[128];
|
|
|
|
|
|
|
|
chrtos(cbuf,sizeof(cbuf),byte);
|
|
|
|
snprintf(sbuf,sizeof(sbuf),
|
|
|
|
"Protocol error, got %s as reply type byte", cbuf);
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetError(r,REDIS_ERR_PROTOCOL,sbuf);
|
2011-04-20 14:54:12 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 14:01:27 +00:00
|
|
|
static void __redisReaderSetErrorOOM(redisReader *r) {
|
|
|
|
__redisReaderSetError(r,REDIS_ERR_OOM,"Out of memory");
|
2011-04-20 14:54:12 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 07:50:19 +00:00
|
|
|
static char *readBytes(redisReader *r, unsigned int bytes) {
|
2010-09-19 16:47:05 +00:00
|
|
|
char *p;
|
2010-11-26 14:25:19 +00:00
|
|
|
if (r->len-r->pos >= bytes) {
|
2010-09-19 16:47:05 +00:00
|
|
|
p = r->buf+r->pos;
|
|
|
|
r->pos += bytes;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-05-18 15:11:09 +00:00
|
|
|
|
2010-11-26 12:49:15 +00:00
|
|
|
/* Find pointer to \r\n. */
|
|
|
|
static char *seekNewline(char *s, size_t len) {
|
|
|
|
int pos = 0;
|
|
|
|
int _len = len-1;
|
|
|
|
|
|
|
|
/* Position should be < len-1 because the character at "pos" should be
|
|
|
|
* followed by a \n. Note that strchr cannot be used because it doesn't
|
|
|
|
* allow to search a limited length and the buffer that is being searched
|
|
|
|
* might not have a trailing NULL character. */
|
|
|
|
while (pos < _len) {
|
|
|
|
while(pos < _len && s[pos] != '\r') pos++;
|
|
|
|
if (s[pos] != '\r') {
|
|
|
|
/* Not found. */
|
|
|
|
return NULL;
|
2010-11-04 22:52:47 +00:00
|
|
|
} else {
|
2010-11-26 12:49:15 +00:00
|
|
|
if (s[pos+1] == '\n') {
|
|
|
|
/* Found. */
|
|
|
|
return s+pos;
|
|
|
|
} else {
|
|
|
|
/* Continue searching. */
|
|
|
|
pos++;
|
|
|
|
}
|
2010-11-04 22:52:47 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-26 12:49:15 +00:00
|
|
|
return NULL;
|
2010-11-04 12:26:22 +00:00
|
|
|
}
|
|
|
|
|
2010-11-26 13:48:04 +00:00
|
|
|
/* Read a long long value starting at *s, under the assumption that it will be
|
|
|
|
* terminated by \r\n. Ambiguously returns -1 for unexpected input. */
|
|
|
|
static long long readLongLong(char *s) {
|
|
|
|
long long v = 0;
|
|
|
|
int dec, mult = 1;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
if (*s == '-') {
|
|
|
|
mult = -1;
|
|
|
|
s++;
|
|
|
|
} else if (*s == '+') {
|
|
|
|
mult = 1;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((c = *(s++)) != '\r') {
|
|
|
|
dec = c - '0';
|
|
|
|
if (dec >= 0 && dec < 10) {
|
|
|
|
v *= 10;
|
|
|
|
v += dec;
|
|
|
|
} else {
|
|
|
|
/* Should not happen... */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mult*v;
|
|
|
|
}
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
static char *readLine(redisReader *r, int *_len) {
|
2010-11-04 12:26:22 +00:00
|
|
|
char *p, *s;
|
2010-09-19 16:47:05 +00:00
|
|
|
int len;
|
2010-11-04 12:26:22 +00:00
|
|
|
|
|
|
|
p = r->buf+r->pos;
|
2010-11-26 12:49:15 +00:00
|
|
|
s = seekNewline(p,(r->len-r->pos));
|
2010-09-19 16:47:05 +00:00
|
|
|
if (s != NULL) {
|
|
|
|
len = s-(r->buf+r->pos);
|
|
|
|
r->pos += len+2; /* skip \r\n */
|
|
|
|
if (_len) *_len = len;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-10-31 13:42:48 +00:00
|
|
|
static void moveToNextTask(redisReader *r) {
|
|
|
|
redisReadTask *cur, *prv;
|
2010-11-04 12:26:45 +00:00
|
|
|
while (r->ridx >= 0) {
|
|
|
|
/* Return a.s.a.p. when the stack is now empty. */
|
|
|
|
if (r->ridx == 0) {
|
|
|
|
r->ridx--;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur = &(r->rstack[r->ridx]);
|
|
|
|
prv = &(r->rstack[r->ridx-1]);
|
|
|
|
assert(prv->type == REDIS_REPLY_ARRAY);
|
|
|
|
if (cur->idx == prv->elements-1) {
|
|
|
|
r->ridx--;
|
|
|
|
} else {
|
|
|
|
/* Reset the type because the next item can be anything */
|
|
|
|
assert(cur->idx < prv->elements);
|
|
|
|
cur->type = -1;
|
|
|
|
cur->elements = -1;
|
|
|
|
cur->idx++;
|
|
|
|
return;
|
|
|
|
}
|
2010-10-31 13:42:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
static int processLineItem(redisReader *r) {
|
2010-10-31 13:42:48 +00:00
|
|
|
redisReadTask *cur = &(r->rstack[r->ridx]);
|
2010-09-20 16:02:28 +00:00
|
|
|
void *obj;
|
2010-09-19 16:47:05 +00:00
|
|
|
char *p;
|
|
|
|
int len;
|
2010-05-18 15:11:09 +00:00
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
if ((p = readLine(r,&len)) != NULL) {
|
2011-04-03 15:46:59 +00:00
|
|
|
if (cur->type == REDIS_REPLY_INTEGER) {
|
|
|
|
if (r->fn && r->fn->createInteger)
|
2010-11-26 13:48:04 +00:00
|
|
|
obj = r->fn->createInteger(cur,readLongLong(p));
|
2011-04-03 15:46:59 +00:00
|
|
|
else
|
|
|
|
obj = (void*)REDIS_REPLY_INTEGER;
|
2010-05-18 15:11:09 +00:00
|
|
|
} else {
|
2011-04-03 15:46:59 +00:00
|
|
|
/* Type will be error or status. */
|
|
|
|
if (r->fn && r->fn->createString)
|
|
|
|
obj = r->fn->createString(cur,p,len);
|
|
|
|
else
|
|
|
|
obj = (void*)(size_t)(cur->type);
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
2010-09-19 16:47:05 +00:00
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
if (obj == NULL) {
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetErrorOOM(r);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2010-11-24 14:05:25 +00:00
|
|
|
/* Set reply if this is the root object. */
|
|
|
|
if (r->ridx == 0) r->reply = obj;
|
2010-10-31 13:42:48 +00:00
|
|
|
moveToNextTask(r);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_OK;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
static int processBulkItem(redisReader *r) {
|
2010-10-31 13:42:48 +00:00
|
|
|
redisReadTask *cur = &(r->rstack[r->ridx]);
|
2010-09-20 16:02:28 +00:00
|
|
|
void *obj = NULL;
|
|
|
|
char *p, *s;
|
|
|
|
long len;
|
|
|
|
unsigned long bytelen;
|
2010-11-24 14:05:25 +00:00
|
|
|
int success = 0;
|
2010-09-20 16:02:28 +00:00
|
|
|
|
|
|
|
p = r->buf+r->pos;
|
2010-11-26 12:49:15 +00:00
|
|
|
s = seekNewline(p,r->len-r->pos);
|
2010-09-20 16:02:28 +00:00
|
|
|
if (s != NULL) {
|
2011-06-19 11:41:25 +00:00
|
|
|
p = r->buf+r->pos;
|
2010-09-20 16:02:28 +00:00
|
|
|
bytelen = s-(r->buf+r->pos)+2; /* include \r\n */
|
2011-05-02 12:21:48 +00:00
|
|
|
len = readLongLong(p);
|
2011-06-19 11:41:25 +00:00
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
if (len < 0) {
|
|
|
|
/* The nil object can always be created. */
|
2011-04-03 15:46:59 +00:00
|
|
|
if (r->fn && r->fn->createNil)
|
|
|
|
obj = r->fn->createNil(cur);
|
|
|
|
else
|
|
|
|
obj = (void*)REDIS_REPLY_NIL;
|
2010-11-24 14:05:25 +00:00
|
|
|
success = 1;
|
2010-09-19 16:47:05 +00:00
|
|
|
} else {
|
2010-09-20 16:02:28 +00:00
|
|
|
/* Only continue when the buffer contains the entire bulk item. */
|
|
|
|
bytelen += len+2; /* include \r\n */
|
2010-11-26 12:49:15 +00:00
|
|
|
if (r->pos+bytelen <= r->len) {
|
2011-04-03 15:46:59 +00:00
|
|
|
if (r->fn && r->fn->createString)
|
|
|
|
obj = r->fn->createString(cur,s+2,len);
|
|
|
|
else
|
|
|
|
obj = (void*)REDIS_REPLY_STRING;
|
2010-11-24 14:05:25 +00:00
|
|
|
success = 1;
|
2010-09-20 16:02:28 +00:00
|
|
|
}
|
2010-09-19 16:47:05 +00:00
|
|
|
}
|
2010-05-18 15:11:09 +00:00
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
/* Proceed when obj was created. */
|
2010-11-24 14:05:25 +00:00
|
|
|
if (success) {
|
2011-04-20 14:54:12 +00:00
|
|
|
if (obj == NULL) {
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetErrorOOM(r);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2010-09-20 16:02:28 +00:00
|
|
|
r->pos += bytelen;
|
2010-11-24 14:05:25 +00:00
|
|
|
|
|
|
|
/* Set reply if this is the root object. */
|
|
|
|
if (r->ridx == 0) r->reply = obj;
|
2010-10-31 13:42:48 +00:00
|
|
|
moveToNextTask(r);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_OK;
|
2010-09-20 16:02:28 +00:00
|
|
|
}
|
2010-08-30 13:42:24 +00:00
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
static int processMultiBulkItem(redisReader *r) {
|
2010-10-31 13:42:48 +00:00
|
|
|
redisReadTask *cur = &(r->rstack[r->ridx]);
|
2010-09-20 16:02:28 +00:00
|
|
|
void *obj;
|
2010-09-19 16:47:05 +00:00
|
|
|
char *p;
|
2010-10-31 13:42:48 +00:00
|
|
|
long elements;
|
2010-11-24 14:05:25 +00:00
|
|
|
int root = 0;
|
2010-05-18 15:11:09 +00:00
|
|
|
|
2012-08-21 13:06:06 +00:00
|
|
|
/* Set error for nested multi bulks with depth > 7 */
|
|
|
|
if (r->ridx == 8) {
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetError(r,REDIS_ERR_PROTOCOL,
|
2012-08-21 13:06:06 +00:00
|
|
|
"No support for nested multi bulk replies with depth > 7");
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
2010-11-24 14:46:05 +00:00
|
|
|
}
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
if ((p = readLine(r,NULL)) != NULL) {
|
2010-11-26 13:48:04 +00:00
|
|
|
elements = readLongLong(p);
|
2010-11-24 14:05:25 +00:00
|
|
|
root = (r->ridx == 0);
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
if (elements == -1) {
|
2011-04-03 15:46:59 +00:00
|
|
|
if (r->fn && r->fn->createNil)
|
|
|
|
obj = r->fn->createNil(cur);
|
|
|
|
else
|
|
|
|
obj = (void*)REDIS_REPLY_NIL;
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
if (obj == NULL) {
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetErrorOOM(r);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2010-10-31 13:42:48 +00:00
|
|
|
moveToNextTask(r);
|
2010-09-20 16:02:28 +00:00
|
|
|
} else {
|
2011-04-03 15:46:59 +00:00
|
|
|
if (r->fn && r->fn->createArray)
|
|
|
|
obj = r->fn->createArray(cur,elements);
|
|
|
|
else
|
|
|
|
obj = (void*)REDIS_REPLY_ARRAY;
|
2010-09-20 16:02:28 +00:00
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
if (obj == NULL) {
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetErrorOOM(r);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2010-10-31 13:42:48 +00:00
|
|
|
/* Modify task stack when there are more than 0 elements. */
|
2010-09-20 16:02:28 +00:00
|
|
|
if (elements > 0) {
|
2010-10-31 13:42:48 +00:00
|
|
|
cur->elements = elements;
|
2010-11-26 12:04:42 +00:00
|
|
|
cur->obj = obj;
|
2010-10-31 13:42:48 +00:00
|
|
|
r->ridx++;
|
|
|
|
r->rstack[r->ridx].type = -1;
|
|
|
|
r->rstack[r->ridx].elements = -1;
|
|
|
|
r->rstack[r->ridx].idx = 0;
|
2010-11-26 12:04:42 +00:00
|
|
|
r->rstack[r->ridx].obj = NULL;
|
|
|
|
r->rstack[r->ridx].parent = cur;
|
2010-11-24 11:27:44 +00:00
|
|
|
r->rstack[r->ridx].privdata = r->privdata;
|
2010-10-31 13:42:48 +00:00
|
|
|
} else {
|
|
|
|
moveToNextTask(r);
|
2010-09-20 16:02:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-24 14:05:25 +00:00
|
|
|
/* Set reply if this is the root object. */
|
|
|
|
if (root) r->reply = obj;
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_OK;
|
2010-09-19 16:47:05 +00:00
|
|
|
}
|
2011-04-20 11:15:58 +00:00
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
|
2010-09-19 16:47:05 +00:00
|
|
|
static int processItem(redisReader *r) {
|
2010-10-31 13:42:48 +00:00
|
|
|
redisReadTask *cur = &(r->rstack[r->ridx]);
|
2010-09-19 16:47:05 +00:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
/* check if we need to read type */
|
|
|
|
if (cur->type < 0) {
|
|
|
|
if ((p = readBytes(r,1)) != NULL) {
|
|
|
|
switch (p[0]) {
|
|
|
|
case '-':
|
|
|
|
cur->type = REDIS_REPLY_ERROR;
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
cur->type = REDIS_REPLY_STATUS;
|
|
|
|
break;
|
|
|
|
case ':':
|
|
|
|
cur->type = REDIS_REPLY_INTEGER;
|
|
|
|
break;
|
|
|
|
case '$':
|
|
|
|
cur->type = REDIS_REPLY_STRING;
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
cur->type = REDIS_REPLY_ARRAY;
|
|
|
|
break;
|
|
|
|
default:
|
2011-04-21 14:01:27 +00:00
|
|
|
__redisReaderSetErrorProtocolByte(r,*p);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
2010-09-19 16:47:05 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* could not consume 1 byte */
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR;
|
2010-09-19 16:47:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process typed item */
|
|
|
|
switch(cur->type) {
|
|
|
|
case REDIS_REPLY_ERROR:
|
|
|
|
case REDIS_REPLY_STATUS:
|
|
|
|
case REDIS_REPLY_INTEGER:
|
|
|
|
return processLineItem(r);
|
|
|
|
case REDIS_REPLY_STRING:
|
|
|
|
return processBulkItem(r);
|
|
|
|
case REDIS_REPLY_ARRAY:
|
|
|
|
return processMultiBulkItem(r);
|
2010-05-18 15:11:09 +00:00
|
|
|
default:
|
2010-11-22 09:38:07 +00:00
|
|
|
assert(NULL);
|
2011-04-20 14:54:12 +00:00
|
|
|
return REDIS_ERR; /* Avoid warning. */
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-21 14:01:27 +00:00
|
|
|
redisReader *redisReaderCreate(void) {
|
2011-04-21 12:28:39 +00:00
|
|
|
redisReader *r;
|
|
|
|
|
|
|
|
r = calloc(sizeof(redisReader),1);
|
|
|
|
if (r == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
r->err = 0;
|
|
|
|
r->errstr[0] = '\0';
|
2010-11-04 09:54:01 +00:00
|
|
|
r->fn = &defaultFunctions;
|
2010-09-20 07:50:19 +00:00
|
|
|
r->buf = sdsempty();
|
2012-08-21 13:01:47 +00:00
|
|
|
r->maxbuf = REDIS_READER_MAX_BUF;
|
2011-04-21 16:50:10 +00:00
|
|
|
if (r->buf == NULL) {
|
|
|
|
free(r);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-10-31 13:42:48 +00:00
|
|
|
r->ridx = -1;
|
2010-09-20 07:50:19 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-04-21 14:01:27 +00:00
|
|
|
void redisReaderFree(redisReader *r) {
|
2011-04-21 08:54:15 +00:00
|
|
|
if (r->reply != NULL && r->fn && r->fn->freeObject)
|
2010-09-20 20:04:35 +00:00
|
|
|
r->fn->freeObject(r->reply);
|
2010-09-20 16:02:28 +00:00
|
|
|
if (r->buf != NULL)
|
2010-09-20 07:50:19 +00:00
|
|
|
sdsfree(r->buf);
|
|
|
|
free(r);
|
|
|
|
}
|
|
|
|
|
2011-04-21 16:50:10 +00:00
|
|
|
int redisReaderFeed(redisReader *r, const char *buf, size_t len) {
|
|
|
|
sds newbuf;
|
|
|
|
|
|
|
|
/* Return early when this reader is in an erroneous state. */
|
|
|
|
if (r->err)
|
|
|
|
return REDIS_ERR;
|
|
|
|
|
2010-09-20 07:50:19 +00:00
|
|
|
/* Copy the provided buffer. */
|
2010-11-26 12:49:15 +00:00
|
|
|
if (buf != NULL && len >= 1) {
|
2011-06-19 11:41:25 +00:00
|
|
|
/* Destroy internal buffer when it is empty and is quite large. */
|
2012-08-21 13:01:47 +00:00
|
|
|
if (r->len == 0 && r->maxbuf != 0 && sdsavail(r->buf) > r->maxbuf) {
|
2011-04-03 16:04:15 +00:00
|
|
|
sdsfree(r->buf);
|
|
|
|
r->buf = sdsempty();
|
|
|
|
r->pos = 0;
|
2011-04-21 16:50:10 +00:00
|
|
|
|
|
|
|
/* r->buf should not be NULL since we just free'd a larger one. */
|
|
|
|
assert(r->buf != NULL);
|
2011-04-03 16:04:15 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 16:50:10 +00:00
|
|
|
newbuf = sdscatlen(r->buf,buf,len);
|
|
|
|
if (newbuf == NULL) {
|
|
|
|
__redisReaderSetErrorOOM(r);
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
r->buf = newbuf;
|
2010-11-26 12:49:15 +00:00
|
|
|
r->len = sdslen(r->buf);
|
|
|
|
}
|
2011-04-21 16:50:10 +00:00
|
|
|
|
|
|
|
return REDIS_OK;
|
2010-09-21 09:39:18 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 14:01:27 +00:00
|
|
|
int redisReaderGetReply(redisReader *r, void **reply) {
|
2011-04-20 14:54:12 +00:00
|
|
|
/* Default target pointer to NULL. */
|
|
|
|
if (reply != NULL)
|
|
|
|
*reply = NULL;
|
|
|
|
|
|
|
|
/* Return early when this reader is in an erroneous state. */
|
|
|
|
if (r->err)
|
|
|
|
return REDIS_ERR;
|
2010-09-21 09:39:18 +00:00
|
|
|
|
|
|
|
/* When the buffer is empty, there will never be a reply. */
|
2010-11-26 12:49:15 +00:00
|
|
|
if (r->len == 0)
|
2010-09-25 13:09:13 +00:00
|
|
|
return REDIS_OK;
|
2010-09-20 07:50:19 +00:00
|
|
|
|
2010-10-31 13:42:48 +00:00
|
|
|
/* Set first item to process when the stack is empty. */
|
|
|
|
if (r->ridx == -1) {
|
|
|
|
r->rstack[0].type = -1;
|
|
|
|
r->rstack[0].elements = -1;
|
|
|
|
r->rstack[0].idx = -1;
|
2010-11-26 12:04:42 +00:00
|
|
|
r->rstack[0].obj = NULL;
|
|
|
|
r->rstack[0].parent = NULL;
|
2010-11-24 11:27:44 +00:00
|
|
|
r->rstack[0].privdata = r->privdata;
|
2010-10-31 13:42:48 +00:00
|
|
|
r->ridx = 0;
|
2010-09-20 07:50:19 +00:00
|
|
|
}
|
2010-09-19 16:47:05 +00:00
|
|
|
|
2010-09-20 07:50:19 +00:00
|
|
|
/* Process items in reply. */
|
2010-10-31 13:42:48 +00:00
|
|
|
while (r->ridx >= 0)
|
2011-04-20 14:54:12 +00:00
|
|
|
if (processItem(r) != REDIS_OK)
|
2010-09-20 07:50:19 +00:00
|
|
|
break;
|
|
|
|
|
2011-04-20 14:54:12 +00:00
|
|
|
/* Return ASAP when an error occurred. */
|
|
|
|
if (r->err)
|
2011-04-20 11:15:58 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
|
2011-06-19 11:41:25 +00:00
|
|
|
/* Discard part of the buffer when we've consumed at least 1k, to avoid
|
|
|
|
* doing unnecessary calls to memmove() in sds.c. */
|
|
|
|
if (r->pos >= 1024) {
|
|
|
|
r->buf = sdsrange(r->buf,r->pos,-1);
|
|
|
|
r->pos = 0;
|
|
|
|
r->len = sdslen(r->buf);
|
|
|
|
}
|
|
|
|
|
2010-09-20 07:50:19 +00:00
|
|
|
/* Emit a reply when there is one. */
|
2010-10-31 13:42:48 +00:00
|
|
|
if (r->ridx == -1) {
|
2011-04-20 14:54:12 +00:00
|
|
|
if (reply != NULL)
|
|
|
|
*reply = r->reply;
|
2010-09-20 16:02:28 +00:00
|
|
|
r->reply = NULL;
|
2010-09-19 16:47:05 +00:00
|
|
|
}
|
2010-09-25 13:09:13 +00:00
|
|
|
return REDIS_OK;
|
2010-09-19 16:47:05 +00:00
|
|
|
}
|
|
|
|
|
2010-10-30 18:38:21 +00:00
|
|
|
/* Calculate the number of bytes needed to represent an integer as string. */
|
2013-07-11 06:31:30 +00:00
|
|
|
static int intlen(int i) {
|
2010-10-30 18:38:21 +00:00
|
|
|
int len = 0;
|
|
|
|
if (i < 0) {
|
|
|
|
len++;
|
|
|
|
i = -i;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
len++;
|
|
|
|
i /= 10;
|
|
|
|
} while(i);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2011-04-21 18:59:41 +00:00
|
|
|
/* Helper that calculates the bulk length given a certain string length. */
|
2013-07-11 06:31:30 +00:00
|
|
|
static size_t bulklen(size_t len) {
|
2011-04-21 18:59:41 +00:00
|
|
|
return 1+intlen(len)+2+len+2;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
|
2010-10-30 18:38:21 +00:00
|
|
|
int redisvFormatCommand(char **target, const char *format, va_list ap) {
|
2011-04-21 18:59:41 +00:00
|
|
|
const char *c = format;
|
2010-10-30 18:38:21 +00:00
|
|
|
char *cmd = NULL; /* final command */
|
|
|
|
int pos; /* position in final command */
|
2011-04-21 18:59:41 +00:00
|
|
|
sds curarg, newarg; /* current argument */
|
2011-03-06 10:38:07 +00:00
|
|
|
int touched = 0; /* was the current argument touched? */
|
2011-04-21 18:59:41 +00:00
|
|
|
char **curargv = NULL, **newargv = NULL;
|
|
|
|
int argc = 0;
|
2010-10-30 18:38:21 +00:00
|
|
|
int totlen = 0;
|
2011-04-21 18:59:41 +00:00
|
|
|
int j;
|
2010-10-30 18:38:21 +00:00
|
|
|
|
|
|
|
/* Abort if there is not target to set */
|
|
|
|
if (target == NULL)
|
|
|
|
return -1;
|
2010-05-18 15:11:09 +00:00
|
|
|
|
|
|
|
/* Build the command string accordingly to protocol */
|
2011-04-21 18:59:41 +00:00
|
|
|
curarg = sdsempty();
|
|
|
|
if (curarg == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2010-05-18 15:11:09 +00:00
|
|
|
while(*c != '\0') {
|
|
|
|
if (*c != '%' || c[1] == '\0') {
|
|
|
|
if (*c == ' ') {
|
2011-03-06 10:38:07 +00:00
|
|
|
if (touched) {
|
2011-04-21 18:59:41 +00:00
|
|
|
newargv = realloc(curargv,sizeof(char*)*(argc+1));
|
|
|
|
if (newargv == NULL) goto err;
|
|
|
|
curargv = newargv;
|
|
|
|
curargv[argc++] = curarg;
|
|
|
|
totlen += bulklen(sdslen(curarg));
|
|
|
|
|
|
|
|
/* curarg is put in argv so it can be overwritten. */
|
|
|
|
curarg = sdsempty();
|
|
|
|
if (curarg == NULL) goto err;
|
2011-03-06 10:38:07 +00:00
|
|
|
touched = 0;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
2011-04-21 18:59:41 +00:00
|
|
|
newarg = sdscatlen(curarg,c,1);
|
|
|
|
if (newarg == NULL) goto err;
|
|
|
|
curarg = newarg;
|
2011-03-06 10:38:07 +00:00
|
|
|
touched = 1;
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
2011-04-21 18:59:41 +00:00
|
|
|
char *arg;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
/* Set newarg so it can be checked even if it is not touched. */
|
|
|
|
newarg = curarg;
|
|
|
|
|
2010-05-18 15:11:09 +00:00
|
|
|
switch(c[1]) {
|
|
|
|
case 's':
|
|
|
|
arg = va_arg(ap,char*);
|
2010-11-22 08:55:54 +00:00
|
|
|
size = strlen(arg);
|
|
|
|
if (size > 0)
|
2011-04-21 18:59:41 +00:00
|
|
|
newarg = sdscatlen(curarg,arg,size);
|
2010-05-18 15:11:09 +00:00
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
arg = va_arg(ap,char*);
|
|
|
|
size = va_arg(ap,size_t);
|
2010-11-22 08:55:54 +00:00
|
|
|
if (size > 0)
|
2011-04-21 18:59:41 +00:00
|
|
|
newarg = sdscatlen(curarg,arg,size);
|
2010-05-18 15:11:09 +00:00
|
|
|
break;
|
|
|
|
case '%':
|
2011-04-21 18:59:41 +00:00
|
|
|
newarg = sdscat(curarg,"%");
|
2010-05-18 15:11:09 +00:00
|
|
|
break;
|
2010-12-02 15:18:30 +00:00
|
|
|
default:
|
|
|
|
/* Try to detect printf format */
|
|
|
|
{
|
2011-12-20 18:06:23 +00:00
|
|
|
static const char intfmts[] = "diouxX";
|
2010-12-02 15:18:30 +00:00
|
|
|
char _format[16];
|
|
|
|
const char *_p = c+1;
|
|
|
|
size_t _l = 0;
|
|
|
|
va_list _cpy;
|
|
|
|
|
|
|
|
/* Flags */
|
|
|
|
if (*_p != '\0' && *_p == '#') _p++;
|
|
|
|
if (*_p != '\0' && *_p == '0') _p++;
|
|
|
|
if (*_p != '\0' && *_p == '-') _p++;
|
|
|
|
if (*_p != '\0' && *_p == ' ') _p++;
|
|
|
|
if (*_p != '\0' && *_p == '+') _p++;
|
|
|
|
|
|
|
|
/* Field width */
|
|
|
|
while (*_p != '\0' && isdigit(*_p)) _p++;
|
|
|
|
|
|
|
|
/* Precision */
|
|
|
|
if (*_p == '.') {
|
|
|
|
_p++;
|
|
|
|
while (*_p != '\0' && isdigit(*_p)) _p++;
|
|
|
|
}
|
|
|
|
|
2011-07-09 13:03:00 +00:00
|
|
|
/* Copy va_list before consuming with va_arg */
|
|
|
|
va_copy(_cpy,ap);
|
|
|
|
|
|
|
|
/* Integer conversion (without modifiers) */
|
2011-12-20 18:06:23 +00:00
|
|
|
if (strchr(intfmts,*_p) != NULL) {
|
2011-07-09 13:03:00 +00:00
|
|
|
va_arg(ap,int);
|
|
|
|
goto fmt_valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Double conversion (without modifiers) */
|
|
|
|
if (strchr("eEfFgGaA",*_p) != NULL) {
|
|
|
|
va_arg(ap,double);
|
|
|
|
goto fmt_valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Size: char */
|
|
|
|
if (_p[0] == 'h' && _p[1] == 'h') {
|
|
|
|
_p += 2;
|
2011-12-20 18:06:23 +00:00
|
|
|
if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
|
2011-07-09 13:03:00 +00:00
|
|
|
va_arg(ap,int); /* char gets promoted to int */
|
|
|
|
goto fmt_valid;
|
2010-12-02 15:18:30 +00:00
|
|
|
}
|
2011-07-09 13:03:00 +00:00
|
|
|
goto fmt_invalid;
|
2010-12-02 15:18:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-09 13:03:00 +00:00
|
|
|
/* Size: short */
|
|
|
|
if (_p[0] == 'h') {
|
|
|
|
_p += 1;
|
2011-12-20 18:06:23 +00:00
|
|
|
if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
|
2011-07-09 13:03:00 +00:00
|
|
|
va_arg(ap,int); /* short gets promoted to int */
|
|
|
|
goto fmt_valid;
|
2010-12-02 15:18:30 +00:00
|
|
|
}
|
2011-07-09 13:03:00 +00:00
|
|
|
goto fmt_invalid;
|
2010-12-02 15:18:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-09 13:03:00 +00:00
|
|
|
/* Size: long long */
|
|
|
|
if (_p[0] == 'l' && _p[1] == 'l') {
|
|
|
|
_p += 2;
|
2011-12-20 18:06:23 +00:00
|
|
|
if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
|
2011-07-09 13:03:00 +00:00
|
|
|
va_arg(ap,long long);
|
|
|
|
goto fmt_valid;
|
|
|
|
}
|
|
|
|
goto fmt_invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Size: long */
|
|
|
|
if (_p[0] == 'l') {
|
|
|
|
_p += 1;
|
2011-12-20 18:06:23 +00:00
|
|
|
if (*_p != '\0' && strchr(intfmts,*_p) != NULL) {
|
2011-07-09 13:03:00 +00:00
|
|
|
va_arg(ap,long);
|
|
|
|
goto fmt_valid;
|
|
|
|
}
|
|
|
|
goto fmt_invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt_invalid:
|
|
|
|
va_end(_cpy);
|
2011-07-09 13:05:53 +00:00
|
|
|
goto err;
|
2011-07-09 13:03:00 +00:00
|
|
|
|
|
|
|
fmt_valid:
|
|
|
|
_l = (_p+1)-c;
|
|
|
|
if (_l < sizeof(_format)-2) {
|
|
|
|
memcpy(_format,c,_l);
|
|
|
|
_format[_l] = '\0';
|
|
|
|
newarg = sdscatvprintf(curarg,_format,_cpy);
|
|
|
|
|
|
|
|
/* Update current position (note: outer blocks
|
|
|
|
* increment c twice so compensate here) */
|
|
|
|
c = _p-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(_cpy);
|
|
|
|
break;
|
2010-12-02 15:18:30 +00:00
|
|
|
}
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
2011-04-21 18:59:41 +00:00
|
|
|
|
|
|
|
if (newarg == NULL) goto err;
|
|
|
|
curarg = newarg;
|
|
|
|
|
2011-03-06 10:38:07 +00:00
|
|
|
touched = 1;
|
2010-05-18 15:11:09 +00:00
|
|
|
c++;
|
|
|
|
}
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the last argument if needed */
|
2011-03-06 10:38:07 +00:00
|
|
|
if (touched) {
|
2011-04-21 18:59:41 +00:00
|
|
|
newargv = realloc(curargv,sizeof(char*)*(argc+1));
|
|
|
|
if (newargv == NULL) goto err;
|
|
|
|
curargv = newargv;
|
|
|
|
curargv[argc++] = curarg;
|
|
|
|
totlen += bulklen(sdslen(curarg));
|
2010-10-30 18:38:21 +00:00
|
|
|
} else {
|
2011-04-21 18:59:41 +00:00
|
|
|
sdsfree(curarg);
|
2010-10-30 18:38:21 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 18:59:41 +00:00
|
|
|
/* Clear curarg because it was put in curargv or was free'd. */
|
|
|
|
curarg = NULL;
|
|
|
|
|
2010-10-30 18:38:21 +00:00
|
|
|
/* Add bytes needed to hold multi bulk count */
|
|
|
|
totlen += 1+intlen(argc)+2;
|
2010-05-18 15:11:09 +00:00
|
|
|
|
|
|
|
/* Build the command at protocol level */
|
2010-10-30 18:38:21 +00:00
|
|
|
cmd = malloc(totlen+1);
|
2011-04-21 18:59:41 +00:00
|
|
|
if (cmd == NULL) goto err;
|
|
|
|
|
2010-10-30 18:38:21 +00:00
|
|
|
pos = sprintf(cmd,"*%d\r\n",argc);
|
2010-05-18 15:11:09 +00:00
|
|
|
for (j = 0; j < argc; j++) {
|
2011-04-21 18:59:41 +00:00
|
|
|
pos += sprintf(cmd+pos,"$%zu\r\n",sdslen(curargv[j]));
|
|
|
|
memcpy(cmd+pos,curargv[j],sdslen(curargv[j]));
|
|
|
|
pos += sdslen(curargv[j]);
|
|
|
|
sdsfree(curargv[j]);
|
2010-10-30 18:38:21 +00:00
|
|
|
cmd[pos++] = '\r';
|
|
|
|
cmd[pos++] = '\n';
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|
2010-10-30 18:38:21 +00:00
|
|
|
assert(pos == totlen);
|
2011-04-21 18:59:41 +00:00
|
|
|
cmd[pos] = '\0';
|
|
|
|
|
|
|
|
free(curargv);
|
2010-10-30 18:38:21 +00:00
|
|
|
*target = cmd;
|
|
|
|
return totlen;
|
2011-04-21 18:59:41 +00:00
|
|
|
|
|
|
|
err:
|
|
|
|
while(argc--)
|
|
|
|
sdsfree(curargv[argc]);
|
|
|
|
free(curargv);
|
|
|
|
|
|
|
|
if (curarg != NULL)
|
|
|
|
sdsfree(curarg);
|
|
|
|
|
|
|
|
/* No need to check cmd since it is the last statement that can fail,
|
|
|
|
* but do it anyway to be as defensive as possible. */
|
|
|
|
if (cmd != NULL)
|
|
|
|
free(cmd);
|
|
|
|
|
|
|
|
return -1;
|
2010-10-30 18:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Format a command according to the Redis protocol. This function
|
|
|
|
* takes a format similar to printf:
|
|
|
|
*
|
|
|
|
* %s represents a C null terminated string you want to interpolate
|
|
|
|
* %b represents a binary safe string
|
|
|
|
*
|
|
|
|
* When using %b you need to provide both the pointer to the string
|
2013-07-11 06:05:39 +00:00
|
|
|
* and the length in bytes as a size_t. Examples:
|
2010-10-30 18:38:21 +00:00
|
|
|
*
|
|
|
|
* len = redisFormatCommand(target, "GET %s", mykey);
|
|
|
|
* len = redisFormatCommand(target, "SET %s %b", mykey, myval, myvallen);
|
|
|
|
*/
|
|
|
|
int redisFormatCommand(char **target, const char *format, ...) {
|
|
|
|
va_list ap;
|
|
|
|
int len;
|
|
|
|
va_start(ap,format);
|
|
|
|
len = redisvFormatCommand(target,format,ap);
|
|
|
|
va_end(ap);
|
|
|
|
return len;
|
2010-09-24 12:18:30 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 09:32:31 +00:00
|
|
|
/* Format a command according to the Redis protocol. This function takes the
|
|
|
|
* number of arguments, an array with arguments and an array with their
|
|
|
|
* lengths. If the latter is set to NULL, strlen will be used to compute the
|
|
|
|
* argument lengths.
|
|
|
|
*/
|
|
|
|
int redisFormatCommandArgv(char **target, int argc, const char **argv, const size_t *argvlen) {
|
|
|
|
char *cmd = NULL; /* final command */
|
|
|
|
int pos; /* position in final command */
|
|
|
|
size_t len;
|
|
|
|
int totlen, j;
|
|
|
|
|
|
|
|
/* Calculate number of bytes needed for the command */
|
|
|
|
totlen = 1+intlen(argc)+2;
|
|
|
|
for (j = 0; j < argc; j++) {
|
|
|
|
len = argvlen ? argvlen[j] : strlen(argv[j]);
|
2011-04-21 18:59:41 +00:00
|
|
|
totlen += bulklen(len);
|
2010-10-31 09:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Build the command at protocol level */
|
|
|
|
cmd = malloc(totlen+1);
|
2011-04-21 18:59:41 +00:00
|
|
|
if (cmd == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2010-10-31 09:32:31 +00:00
|
|
|
pos = sprintf(cmd,"*%d\r\n",argc);
|
|
|
|
for (j = 0; j < argc; j++) {
|
|
|
|
len = argvlen ? argvlen[j] : strlen(argv[j]);
|
|
|
|
pos += sprintf(cmd+pos,"$%zu\r\n",len);
|
|
|
|
memcpy(cmd+pos,argv[j],len);
|
|
|
|
pos += len;
|
|
|
|
cmd[pos++] = '\r';
|
|
|
|
cmd[pos++] = '\n';
|
|
|
|
}
|
|
|
|
assert(pos == totlen);
|
2011-04-21 18:59:41 +00:00
|
|
|
cmd[pos] = '\0';
|
|
|
|
|
2010-10-31 09:32:31 +00:00
|
|
|
*target = cmd;
|
|
|
|
return totlen;
|
|
|
|
}
|
|
|
|
|
2011-04-21 13:56:22 +00:00
|
|
|
void __redisSetError(redisContext *c, int type, const char *str) {
|
|
|
|
size_t len;
|
|
|
|
|
2010-11-02 15:36:38 +00:00
|
|
|
c->err = type;
|
2011-04-21 13:56:22 +00:00
|
|
|
if (str != NULL) {
|
|
|
|
len = strlen(str);
|
|
|
|
len = len < (sizeof(c->errstr)-1) ? len : (sizeof(c->errstr)-1);
|
|
|
|
memcpy(c->errstr,str,len);
|
|
|
|
c->errstr[len] = '\0';
|
2010-11-02 15:36:38 +00:00
|
|
|
} else {
|
|
|
|
/* Only REDIS_ERR_IO may lack a description! */
|
|
|
|
assert(type == REDIS_ERR_IO);
|
2011-04-21 13:56:22 +00:00
|
|
|
strerror_r(errno,c->errstr,sizeof(c->errstr));
|
2010-11-02 15:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 11:50:55 +00:00
|
|
|
static redisContext *redisContextInit(void) {
|
2011-04-21 13:01:58 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = calloc(1,sizeof(redisContext));
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-11-02 15:36:38 +00:00
|
|
|
c->err = 0;
|
2011-04-21 13:56:22 +00:00
|
|
|
c->errstr[0] = '\0';
|
2010-09-25 10:06:00 +00:00
|
|
|
c->obuf = sdsempty();
|
2011-04-21 14:01:27 +00:00
|
|
|
c->reader = redisReaderCreate();
|
2010-09-24 16:38:14 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2010-09-25 13:33:27 +00:00
|
|
|
void redisFree(redisContext *c) {
|
2010-12-28 18:19:25 +00:00
|
|
|
if (c->fd > 0)
|
2010-11-01 13:20:51 +00:00
|
|
|
close(c->fd);
|
2010-09-25 13:33:27 +00:00
|
|
|
if (c->obuf != NULL)
|
|
|
|
sdsfree(c->obuf);
|
2010-10-31 11:51:59 +00:00
|
|
|
if (c->reader != NULL)
|
2011-04-21 14:01:27 +00:00
|
|
|
redisReaderFree(c->reader);
|
2010-09-25 13:33:27 +00:00
|
|
|
free(c);
|
|
|
|
}
|
|
|
|
|
2010-09-24 16:38:14 +00:00
|
|
|
/* Connect to a Redis instance. On error the field error in the returned
|
|
|
|
* context will be set to the return value of the error function.
|
|
|
|
* When no set of reply functions is given, the default set will be used. */
|
2010-10-31 11:51:59 +00:00
|
|
|
redisContext *redisConnect(const char *ip, int port) {
|
2013-01-22 09:16:30 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = redisContextInit();
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-09-25 13:11:59 +00:00
|
|
|
c->flags |= REDIS_BLOCK;
|
2011-02-04 14:26:28 +00:00
|
|
|
redisContextConnectTcp(c,ip,port,NULL);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2012-05-30 15:33:48 +00:00
|
|
|
redisContext *redisConnectWithTimeout(const char *ip, int port, const struct timeval tv) {
|
2013-01-22 09:16:30 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = redisContextInit();
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2011-02-04 14:26:28 +00:00
|
|
|
c->flags |= REDIS_BLOCK;
|
|
|
|
redisContextConnectTcp(c,ip,port,&tv);
|
2010-09-24 16:38:14 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2010-10-31 11:51:59 +00:00
|
|
|
redisContext *redisConnectNonBlock(const char *ip, int port) {
|
2013-01-22 09:16:30 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = redisContextInit();
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-09-25 13:11:59 +00:00
|
|
|
c->flags &= ~REDIS_BLOCK;
|
2011-02-04 14:26:28 +00:00
|
|
|
redisContextConnectTcp(c,ip,port,NULL);
|
2010-09-24 16:38:14 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2010-11-03 10:32:35 +00:00
|
|
|
redisContext *redisConnectUnix(const char *path) {
|
2013-01-22 09:16:30 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = redisContextInit();
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-11-03 10:32:35 +00:00
|
|
|
c->flags |= REDIS_BLOCK;
|
2011-02-04 14:26:28 +00:00
|
|
|
redisContextConnectUnix(c,path,NULL);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2012-05-30 15:33:48 +00:00
|
|
|
redisContext *redisConnectUnixWithTimeout(const char *path, const struct timeval tv) {
|
2013-01-22 09:16:30 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = redisContextInit();
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2011-02-04 14:26:28 +00:00
|
|
|
c->flags |= REDIS_BLOCK;
|
|
|
|
redisContextConnectUnix(c,path,&tv);
|
2010-11-03 10:32:35 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
redisContext *redisConnectUnixNonBlock(const char *path) {
|
2013-01-22 09:16:30 +00:00
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
c = redisContextInit();
|
|
|
|
if (c == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2010-11-03 10:32:35 +00:00
|
|
|
c->flags &= ~REDIS_BLOCK;
|
2011-02-04 14:26:28 +00:00
|
|
|
redisContextConnectUnix(c,path,NULL);
|
2010-11-03 10:32:35 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2011-01-07 12:04:42 +00:00
|
|
|
/* Set read/write timeout on a blocking socket. */
|
2012-05-30 15:33:48 +00:00
|
|
|
int redisSetTimeout(redisContext *c, const struct timeval tv) {
|
2011-01-07 12:04:42 +00:00
|
|
|
if (c->flags & REDIS_BLOCK)
|
|
|
|
return redisContextSetTimeout(c,tv);
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
2013-04-29 16:11:57 +00:00
|
|
|
/* Enable connection KeepAlive. */
|
|
|
|
int redisEnableKeepAlive(redisContext *c) {
|
|
|
|
if (redisKeepAlive(c, REDIS_KEEPALIVE_INTERVAL) != REDIS_OK)
|
|
|
|
return REDIS_ERR;
|
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-24 16:38:14 +00:00
|
|
|
/* Use this function to handle a read event on the descriptor. It will try
|
|
|
|
* and read some bytes from the socket and feed them to the reply parser.
|
|
|
|
*
|
|
|
|
* After this function is called, you may use redisContextReadReply to
|
|
|
|
* see if there is a reply available. */
|
|
|
|
int redisBufferRead(redisContext *c) {
|
2012-08-21 13:10:16 +00:00
|
|
|
char buf[1024*16];
|
2011-04-21 19:18:08 +00:00
|
|
|
int nread;
|
|
|
|
|
|
|
|
/* Return early when the context has seen an error. */
|
|
|
|
if (c->err)
|
|
|
|
return REDIS_ERR;
|
|
|
|
|
|
|
|
nread = read(c->fd,buf,sizeof(buf));
|
2010-09-24 16:38:14 +00:00
|
|
|
if (nread == -1) {
|
2012-07-31 21:38:08 +00:00
|
|
|
if ((errno == EAGAIN && !(c->flags & REDIS_BLOCK)) || (errno == EINTR)) {
|
2010-09-24 16:38:14 +00:00
|
|
|
/* Try again later */
|
|
|
|
} else {
|
2010-11-02 15:36:38 +00:00
|
|
|
__redisSetError(c,REDIS_ERR_IO,NULL);
|
2010-09-25 10:06:47 +00:00
|
|
|
return REDIS_ERR;
|
2010-09-24 16:38:14 +00:00
|
|
|
}
|
|
|
|
} else if (nread == 0) {
|
2011-04-21 13:56:22 +00:00
|
|
|
__redisSetError(c,REDIS_ERR_EOF,"Server closed the connection");
|
2010-09-25 10:06:47 +00:00
|
|
|
return REDIS_ERR;
|
2010-09-24 16:38:14 +00:00
|
|
|
} else {
|
2011-04-21 19:18:08 +00:00
|
|
|
if (redisReaderFeed(c->reader,buf,nread) != REDIS_OK) {
|
|
|
|
__redisSetError(c,c->reader->err,c->reader->errstr);
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
2010-09-24 16:38:14 +00:00
|
|
|
}
|
2010-09-25 10:06:47 +00:00
|
|
|
return REDIS_OK;
|
2010-09-24 16:38:14 +00:00
|
|
|
}
|
|
|
|
|
2010-10-18 13:49:52 +00:00
|
|
|
/* Write the output buffer to the socket.
|
|
|
|
*
|
|
|
|
* Returns REDIS_OK when the buffer is empty, or (a part of) the buffer was
|
|
|
|
* succesfully written to the socket. When the buffer is empty after the
|
2011-11-28 21:37:35 +00:00
|
|
|
* write operation, "done" is set to 1 (if given).
|
2010-10-18 13:49:52 +00:00
|
|
|
*
|
|
|
|
* Returns REDIS_ERR if an error occured trying to write and sets
|
2011-11-28 21:37:35 +00:00
|
|
|
* c->errstr to hold the appropriate error string.
|
2010-10-18 13:49:52 +00:00
|
|
|
*/
|
2010-09-24 16:38:14 +00:00
|
|
|
int redisBufferWrite(redisContext *c, int *done) {
|
2010-10-18 13:49:52 +00:00
|
|
|
int nwritten;
|
2011-04-21 19:18:08 +00:00
|
|
|
|
|
|
|
/* Return early when the context has seen an error. */
|
|
|
|
if (c->err)
|
|
|
|
return REDIS_ERR;
|
|
|
|
|
2010-10-18 13:49:52 +00:00
|
|
|
if (sdslen(c->obuf) > 0) {
|
|
|
|
nwritten = write(c->fd,c->obuf,sdslen(c->obuf));
|
|
|
|
if (nwritten == -1) {
|
2012-07-31 21:38:08 +00:00
|
|
|
if ((errno == EAGAIN && !(c->flags & REDIS_BLOCK)) || (errno == EINTR)) {
|
2010-10-18 13:49:52 +00:00
|
|
|
/* Try again later */
|
|
|
|
} else {
|
2010-11-02 15:36:38 +00:00
|
|
|
__redisSetError(c,REDIS_ERR_IO,NULL);
|
2010-10-18 13:49:52 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
} else if (nwritten > 0) {
|
|
|
|
if (nwritten == (signed)sdslen(c->obuf)) {
|
|
|
|
sdsfree(c->obuf);
|
|
|
|
c->obuf = sdsempty();
|
|
|
|
} else {
|
|
|
|
c->obuf = sdsrange(c->obuf,nwritten,-1);
|
|
|
|
}
|
2010-09-24 16:38:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (done != NULL) *done = (sdslen(c->obuf) == 0);
|
2010-09-25 10:06:47 +00:00
|
|
|
return REDIS_OK;
|
2010-09-24 16:38:14 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
/* Internal helper function to try and get a reply from the reader,
|
|
|
|
* or set an error in the context otherwise. */
|
2010-11-02 23:40:07 +00:00
|
|
|
int redisGetReplyFromReader(redisContext *c, void **reply) {
|
2011-04-21 14:01:27 +00:00
|
|
|
if (redisReaderGetReply(c->reader,reply) == REDIS_ERR) {
|
2011-04-21 19:18:08 +00:00
|
|
|
__redisSetError(c,c->reader->err,c->reader->errstr);
|
2010-10-31 11:34:45 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redisGetReply(redisContext *c, void **reply) {
|
2010-09-24 16:38:14 +00:00
|
|
|
int wdone = 0;
|
2010-09-25 13:09:13 +00:00
|
|
|
void *aux = NULL;
|
2010-09-24 16:38:14 +00:00
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
/* Try to read pending replies */
|
2010-11-02 23:40:07 +00:00
|
|
|
if (redisGetReplyFromReader(c,&aux) == REDIS_ERR)
|
2010-10-31 11:34:45 +00:00
|
|
|
return REDIS_ERR;
|
2010-09-25 10:06:00 +00:00
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
/* For the blocking context, flush output buffer and read reply */
|
2010-10-31 20:11:25 +00:00
|
|
|
if (aux == NULL && c->flags & REDIS_BLOCK) {
|
2010-10-31 11:34:45 +00:00
|
|
|
/* Write until done */
|
|
|
|
do {
|
|
|
|
if (redisBufferWrite(c,&wdone) == REDIS_ERR)
|
|
|
|
return REDIS_ERR;
|
|
|
|
} while (!wdone);
|
2010-09-25 13:09:13 +00:00
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
/* Read until there is a reply */
|
|
|
|
do {
|
|
|
|
if (redisBufferRead(c) == REDIS_ERR)
|
|
|
|
return REDIS_ERR;
|
2010-11-02 23:40:07 +00:00
|
|
|
if (redisGetReplyFromReader(c,&aux) == REDIS_ERR)
|
2010-10-31 11:34:45 +00:00
|
|
|
return REDIS_ERR;
|
|
|
|
} while (aux == NULL);
|
|
|
|
}
|
2010-10-31 20:11:25 +00:00
|
|
|
|
|
|
|
/* Set reply object */
|
|
|
|
if (reply != NULL) *reply = aux;
|
2010-09-25 13:09:13 +00:00
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
|
|
|
|
/* Helper function for the redisAppendCommand* family of functions.
|
|
|
|
*
|
|
|
|
* Write a formatted command to the output buffer. When this family
|
|
|
|
* is used, you need to call redisGetReply yourself to retrieve
|
|
|
|
* the reply (or replies in pub/sub).
|
|
|
|
*/
|
2011-04-21 19:34:43 +00:00
|
|
|
int __redisAppendCommand(redisContext *c, char *cmd, size_t len) {
|
|
|
|
sds newbuf;
|
|
|
|
|
|
|
|
newbuf = sdscatlen(c->obuf,cmd,len);
|
|
|
|
if (newbuf == NULL) {
|
|
|
|
__redisSetError(c,REDIS_ERR_OOM,"Out of memory");
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
c->obuf = newbuf;
|
|
|
|
return REDIS_OK;
|
2010-10-31 11:34:45 +00:00
|
|
|
}
|
2010-09-25 20:31:07 +00:00
|
|
|
|
2011-04-21 19:34:43 +00:00
|
|
|
int redisvAppendCommand(redisContext *c, const char *format, va_list ap) {
|
2010-10-31 11:34:45 +00:00
|
|
|
char *cmd;
|
|
|
|
int len;
|
2011-04-21 19:34:43 +00:00
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
len = redisvFormatCommand(&cmd,format,ap);
|
2011-04-21 19:34:43 +00:00
|
|
|
if (len == -1) {
|
|
|
|
__redisSetError(c,REDIS_ERR_OOM,"Out of memory");
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (__redisAppendCommand(c,cmd,len) != REDIS_OK) {
|
|
|
|
free(cmd);
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
free(cmd);
|
2011-04-21 19:34:43 +00:00
|
|
|
return REDIS_OK;
|
2010-10-31 11:34:45 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 19:34:43 +00:00
|
|
|
int redisAppendCommand(redisContext *c, const char *format, ...) {
|
2010-10-31 11:34:45 +00:00
|
|
|
va_list ap;
|
2011-04-21 19:34:43 +00:00
|
|
|
int ret;
|
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
va_start(ap,format);
|
2011-04-21 19:34:43 +00:00
|
|
|
ret = redisvAppendCommand(c,format,ap);
|
2010-10-31 11:34:45 +00:00
|
|
|
va_end(ap);
|
2011-04-21 19:34:43 +00:00
|
|
|
return ret;
|
2010-10-31 11:34:45 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 19:34:43 +00:00
|
|
|
int redisAppendCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen) {
|
2010-10-31 11:34:45 +00:00
|
|
|
char *cmd;
|
|
|
|
int len;
|
2011-04-21 19:34:43 +00:00
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
len = redisFormatCommandArgv(&cmd,argc,argv,argvlen);
|
2011-04-21 19:34:43 +00:00
|
|
|
if (len == -1) {
|
|
|
|
__redisSetError(c,REDIS_ERR_OOM,"Out of memory");
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (__redisAppendCommand(c,cmd,len) != REDIS_OK) {
|
|
|
|
free(cmd);
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
free(cmd);
|
2011-04-21 19:34:43 +00:00
|
|
|
return REDIS_OK;
|
2010-09-24 16:38:14 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
/* Helper function for the redisCommand* family of functions.
|
|
|
|
*
|
|
|
|
* Write a formatted command to the output buffer. If the given context is
|
2010-09-25 13:09:13 +00:00
|
|
|
* blocking, immediately read the reply into the "reply" pointer. When the
|
2010-10-31 09:56:24 +00:00
|
|
|
* context is non-blocking, the "reply" pointer will not be used and the
|
|
|
|
* command is simply appended to the write buffer.
|
2010-09-25 13:09:13 +00:00
|
|
|
*
|
|
|
|
* Returns the reply when a reply was succesfully retrieved. Returns NULL
|
2010-10-31 09:56:24 +00:00
|
|
|
* otherwise. When NULL is returned in a blocking context, the error field
|
2010-10-31 11:34:45 +00:00
|
|
|
* in the context will be set.
|
|
|
|
*/
|
2011-04-21 19:34:43 +00:00
|
|
|
static void *__redisBlockForReply(redisContext *c) {
|
|
|
|
void *reply;
|
2010-10-31 11:34:45 +00:00
|
|
|
|
|
|
|
if (c->flags & REDIS_BLOCK) {
|
2011-04-21 19:34:43 +00:00
|
|
|
if (redisGetReply(c,&reply) != REDIS_OK)
|
|
|
|
return NULL;
|
|
|
|
return reply;
|
2010-10-31 11:34:45 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *redisvCommand(redisContext *c, const char *format, va_list ap) {
|
2011-04-21 19:34:43 +00:00
|
|
|
if (redisvAppendCommand(c,format,ap) != REDIS_OK)
|
|
|
|
return NULL;
|
|
|
|
return __redisBlockForReply(c);
|
2010-10-31 11:34:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *redisCommand(redisContext *c, const char *format, ...) {
|
|
|
|
va_list ap;
|
|
|
|
void *reply = NULL;
|
|
|
|
va_start(ap,format);
|
|
|
|
reply = redisvCommand(c,format,ap);
|
2010-09-24 12:18:30 +00:00
|
|
|
va_end(ap);
|
2010-10-31 11:34:45 +00:00
|
|
|
return reply;
|
|
|
|
}
|
2010-05-18 15:11:09 +00:00
|
|
|
|
2010-10-31 11:34:45 +00:00
|
|
|
void *redisCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen) {
|
2011-04-21 19:34:43 +00:00
|
|
|
if (redisAppendCommandArgv(c,argc,argv,argvlen) != REDIS_OK)
|
|
|
|
return NULL;
|
|
|
|
return __redisBlockForReply(c);
|
2010-05-18 15:11:09 +00:00
|
|
|
}
|