1
0
mirror of https://github.com/fluencelabs/redis synced 2025-04-03 00:01:04 +00:00

Use hiredis from redis-cli

This commit is contained in:
Pieter Noordhuis 2010-11-03 16:09:38 +01:00
parent 24f753a8b9
commit 7fc4ce13ed
2 changed files with 155 additions and 223 deletions

@ -114,7 +114,11 @@ redis-benchmark: $(BENCHOBJ)
$(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ) $(CC) -o $(BENCHPRGNAME) $(CCOPT) $(DEBUG) $(BENCHOBJ)
redis-cli: $(CLIOBJ) redis-cli: $(CLIOBJ)
$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) cd ../deps/hiredis && make static
$(CC) -o $(CLIPRGNAME) $(CCOPT) $(DEBUG) $(CLIOBJ) ../deps/hiredis/libhiredis.a
redis-cli.o:
$(CC) -c $(CFLAGS) -I../deps/hiredis $(DEBUG) $(COMPILE_TIME) $<
redis-check-dump: $(CHECKDUMPOBJ) redis-check-dump: $(CHECKDUMPOBJ)
$(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ) $(CC) -o $(CHECKDUMPPRGNAME) $(CCOPT) $(DEBUG) $(CHECKDUMPOBJ)

@ -40,14 +40,14 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/time.h> #include <sys/time.h>
#include "anet.h" #include "hiredis.h"
#include "sds.h" #include "sds.h"
#include "adlist.h"
#include "zmalloc.h" #include "zmalloc.h"
#include "linenoise.h" #include "linenoise.h"
#define REDIS_NOTUSED(V) ((void) V) #define REDIS_NOTUSED(V) ((void) V)
static redisContext *context;
static struct config { static struct config {
char *hostip; char *hostip;
int hostport; int hostport;
@ -66,7 +66,6 @@ static struct config {
char *historyfile; char *historyfile;
} config; } config;
static int cliReadReply(int fd);
static void usage(); static void usage();
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
@ -83,197 +82,156 @@ static long long mstime(void) {
return mst; return mst;
} }
static void printStringRepr(char *s, int len) {
printf("\"");
while(len--) {
switch(*s) {
case '\\':
case '"':
printf("\\%c",*s);
break;
case '\n': printf("\\n"); break;
case '\r': printf("\\r"); break;
case '\t': printf("\\t"); break;
case '\a': printf("\\a"); break;
case '\b': printf("\\b"); break;
default:
if (isprint(*s))
printf("%c",*s);
else
printf("\\x%02x",(unsigned char)*s);
break;
}
s++;
}
printf("\"");
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Networking / parsing * Networking / parsing
*--------------------------------------------------------------------------- */ *--------------------------------------------------------------------------- */
/* Send AUTH command to the server */
static int cliAuth() {
redisReply *reply;
if (config.auth == NULL) return REDIS_OK;
reply = redisCommand(context,"AUTH %s",config.auth);
if (reply != NULL) {
freeReplyObject(reply);
return REDIS_OK;
}
return REDIS_ERR;
}
/* Send SELECT dbnum to the server */
static int cliSelect() {
redisReply *reply;
char dbnum[16];
if (config.dbnum == 0) return REDIS_OK;
snprintf(dbnum,sizeof(dbnum),"%d",config.dbnum);
reply = redisCommand(context,"SELECT %s",dbnum);
if (reply != NULL) {
freeReplyObject(reply);
return REDIS_OK;
}
return REDIS_ERR;
}
/* Connect to the client. If force is not zero the connection is performed /* Connect to the client. If force is not zero the connection is performed
* even if there is already a connected socket. */ * even if there is already a connected socket. */
static int cliConnect(int force) { static int cliConnect(int force) {
char err[ANET_ERR_LEN]; if (context == NULL || force) {
static int fd = ANET_ERR; if (context != NULL)
redisFree(context);
if (fd == ANET_ERR || force) {
if (force) close(fd);
if (config.hostsocket == NULL) { if (config.hostsocket == NULL) {
fd = anetTcpConnect(err,config.hostip,config.hostport); context = redisConnect(config.hostip,config.hostport);
} else { } else {
fd = anetUnixConnect(err,config.hostsocket); context = redisConnectUnix(config.hostsocket);
} }
if (fd == ANET_ERR) {
if (context->err) {
fprintf(stderr,"Could not connect to Redis at "); fprintf(stderr,"Could not connect to Redis at ");
if (config.hostsocket == NULL) if (config.hostsocket == NULL)
fprintf(stderr,"%s:%d: %s",config.hostip,config.hostport,err); fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,context->errstr);
else else
fprintf(stderr,"%s: %s",config.hostsocket,err); fprintf(stderr,"%s: %s\n",config.hostsocket,context->errstr);
return -1; redisFree(context);
} context = NULL;
anetTcpNoDelay(NULL,fd); return REDIS_ERR;
}
return fd;
} }
static sds cliReadLine(int fd) { /* Do AUTH and select the right DB. */
sds line = sdsempty(); if (cliAuth() != REDIS_OK)
return REDIS_ERR;
if (cliSelect() != REDIS_OK)
return REDIS_ERR;
}
return REDIS_OK;
}
while(1) { static void cliPrintContextErrorAndExit() {
char c; if (context == NULL) return;
ssize_t ret; fprintf(stderr,"Error: %s\n",context->errstr);
exit(1);
}
ret = read(fd,&c,1); static sds cliFormatReply(redisReply *r, char *prefix) {
if (ret <= 0) { sds out = sdsempty();
sdsfree(line); switch (r->type) {
return NULL; case REDIS_REPLY_ERROR:
} else if ((ret == 0) || (c == '\n')) { out = sdscat(out,prefix);
if (config.tty) out = sdscat(out,"(error) ");
out = sdscatprintf(out,"%s\n", r->str);
break; break;
} else { case REDIS_REPLY_STATUS:
line = sdscatlen(line,&c,1); out = sdscat(out,prefix);
} out = sdscat(out,r->str);
} out = sdscat(out,"\n");
return sdstrim(line,"\r\n"); break;
} case REDIS_REPLY_INTEGER:
out = sdscat(out,prefix);
static int cliReadSingleLineReply(int fd, int quiet) { if (config.tty) out = sdscat(out,"(integer) ");
sds reply = cliReadLine(fd); out = sdscatprintf(out,"%lld\n",r->integer);
break;
if (reply == NULL) return 1; case REDIS_REPLY_STRING:
if (!quiet) out = sdscat(out,prefix);
printf("%s", reply);
sdsfree(reply);
return 0;
}
static int cliReadBulkReply(int fd) {
sds replylen = cliReadLine(fd);
char *reply, crlf[2];
int bulklen;
if (replylen == NULL) return 1;
bulklen = atoi(replylen);
if (bulklen == -1) {
sdsfree(replylen);
printf("(nil)\n");
return 0;
}
reply = zmalloc(bulklen);
anetRead(fd,reply,bulklen);
anetRead(fd,crlf,2);
if (config.raw_output || !config.tty) { if (config.raw_output || !config.tty) {
if (bulklen && fwrite(reply,bulklen,1,stdout) == 0) { out = sdscatlen(out,r->str,r->len);
zfree(reply);
return 1;
}
} else { } else {
/* If you are producing output for the standard output we want /* If you are producing output for the standard output we want
* a more interesting output with quoted characters and so forth */ * a more interesting output with quoted characters and so forth */
printStringRepr(reply,bulklen); out = sdscatrepr(out,r->str,r->len);
out = sdscat(out,"\n");
} }
zfree(reply); break;
return 0; case REDIS_REPLY_NIL:
} out = sdscat(out,prefix);
out = sdscat(out,"(nil)\n");
static int cliReadMultiBulkReply(int fd) { break;
sds replylen = cliReadLine(fd); case REDIS_REPLY_ARRAY:
int elements, c = 1; if (r->elements == 0) {
int retval = 0; out = sdscat(out,prefix);
out = sdscat(out,"(empty list or set)\n");
if (replylen == NULL) return 1;
elements = atoi(replylen);
if (elements == -1) {
sdsfree(replylen);
printf("(nil)\n");
return 0;
}
if (elements == 0) {
printf("(empty list or set)\n");
}
while(elements--) {
if (config.tty) printf("%d. ", c);
if (cliReadReply(fd)) retval = 1;
if (elements) printf("%c",config.mb_sep);
c++;
}
return retval;
}
static int cliReadReply(int fd) {
char type;
int nread;
if ((nread = anetRead(fd,&type,1)) <= 0) {
if (config.shutdown) return 0;
if (config.interactive &&
(nread == 0 || (nread == -1 && errno == ECONNRESET)))
{
return ECONNRESET;
} else { } else {
printf("I/O error while reading from socket: %s",strerror(errno)); unsigned int i;
sds tmp;
for (i = 0; i < r->elements; i++) {
tmp = cliFormatReply(r->element[i],prefix);
out = sdscat(out,prefix);
out = sdscatlen(out,tmp,sdslen(tmp));
sdsfree(tmp);
}
}
break;
default:
fprintf(stderr,"Unknown reply type: %d\n", r->type);
exit(1); exit(1);
} }
} return out;
switch(type) {
case '-':
if (config.tty) printf("(error) ");
cliReadSingleLineReply(fd,0);
return 1;
case '+':
return cliReadSingleLineReply(fd,0);
case ':':
if (config.tty) printf("(integer) ");
return cliReadSingleLineReply(fd,0);
case '$':
return cliReadBulkReply(fd);
case '*':
return cliReadMultiBulkReply(fd);
default:
printf("protocol error, got '%c' as reply type byte", type);
return 1;
}
} }
static int selectDb(int fd) { static int cliReadReply() {
int retval; redisReply *reply;
sds cmd; sds out;
char type;
if (config.dbnum == 0) if (redisGetReply(context,(void**)&reply) != REDIS_OK) {
return 0; if (config.shutdown)
return REDIS_OK;
cmd = sdsempty(); if (config.interactive) {
cmd = sdscatprintf(cmd,"SELECT %d\r\n",config.dbnum); /* Filter cases where we should reconnect */
anetWrite(fd,cmd,sdslen(cmd)); if (context->err == REDIS_ERR_IO && errno == ECONNRESET)
anetRead(fd,&type,1); return REDIS_ERR;
if (type <= 0 || type != '+') return 1; if (context->err == REDIS_ERR_EOF)
retval = cliReadSingleLineReply(fd,1); return REDIS_ERR;
if (retval) {
return retval;
} }
return 0; cliPrintContextErrorAndExit();
return REDIS_ERR; /* avoid compiler warning */
}
out = cliFormatReply(reply,"");
freeReplyObject(reply);
fwrite(out,sdslen(out),1,stdout);
sdsfree(out);
return REDIS_OK;
} }
static void showInteractiveHelp(void) { static void showInteractiveHelp(void) {
@ -294,56 +252,41 @@ static void showInteractiveHelp(void) {
static int cliSendCommand(int argc, char **argv, int repeat) { static int cliSendCommand(int argc, char **argv, int repeat) {
char *command = argv[0]; char *command = argv[0];
int fd, j, retval = 0; size_t *argvlen;
sds cmd; int j;
config.raw_output = !strcasecmp(command,"info"); config.raw_output = !strcasecmp(command,"info");
if (!strcasecmp(command,"help")) { if (!strcasecmp(command,"help")) {
showInteractiveHelp(); showInteractiveHelp();
return 0; return REDIS_OK;
} }
if (!strcasecmp(command,"shutdown")) config.shutdown = 1; if (!strcasecmp(command,"shutdown")) config.shutdown = 1;
if (!strcasecmp(command,"monitor")) config.monitor_mode = 1; if (!strcasecmp(command,"monitor")) config.monitor_mode = 1;
if (!strcasecmp(command,"subscribe") || if (!strcasecmp(command,"subscribe") ||
!strcasecmp(command,"psubscribe")) config.pubsub_mode = 1; !strcasecmp(command,"psubscribe")) config.pubsub_mode = 1;
if ((fd = cliConnect(0)) == -1) return 1;
/* Select db number */ /* Setup argument length */
retval = selectDb(fd); argvlen = malloc(argc*sizeof(size_t));
if (retval) { for (j = 0; j < argc; j++)
fprintf(stderr,"Error setting DB num\n"); argvlen[j] = sdslen(argv[j]);
return 1;
}
/* Build the command to send */
cmd = sdscatprintf(sdsempty(),"*%d\r\n",argc);
for (j = 0; j < argc; j++) {
cmd = sdscatprintf(cmd,"$%lu\r\n",
(unsigned long)sdslen(argv[j]));
cmd = sdscatlen(cmd,argv[j],sdslen(argv[j]));
cmd = sdscatlen(cmd,"\r\n",2);
}
while(repeat--) { while(repeat--) {
anetWrite(fd,cmd,sdslen(cmd)); redisAppendCommandArgv(context,argc,(const char**)argv,argvlen);
while (config.monitor_mode) { while (config.monitor_mode) {
if (cliReadSingleLineReply(fd,0)) exit(1); if (cliReadReply() != REDIS_OK) exit(1);
printf("\n");
} }
if (config.pubsub_mode) { if (config.pubsub_mode) {
printf("Reading messages... (press Ctrl-c to quit)\n"); printf("Reading messages... (press Ctrl-C to quit)\n");
while (1) { while (1) {
cliReadReply(fd); if (cliReadReply() != REDIS_OK) exit(1);
printf("\n\n");
} }
} }
retval = cliReadReply(fd); if (cliReadReply() != REDIS_OK)
if (!config.raw_output && config.tty) printf("\n"); return REDIS_ERR;
if (retval) return retval;
} }
return 0; return REDIS_OK;
} }
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
@ -357,12 +300,7 @@ static int parseOptions(int argc, char **argv) {
int lastarg = i==argc-1; int lastarg = i==argc-1;
if (!strcmp(argv[i],"-h") && !lastarg) { if (!strcmp(argv[i],"-h") && !lastarg) {
char *ip = zmalloc(32); config.hostip = argv[i+1];
if (anetResolve(NULL,argv[i+1],ip) == ANET_ERR) {
printf("Can't resolve %s\n", argv[i]);
exit(1);
}
config.hostip = ip;
i++; i++;
} else if (!strcmp(argv[i],"-h") && lastarg) { } else if (!strcmp(argv[i],"-h") && lastarg) {
usage(); usage();
@ -463,17 +401,18 @@ static void repl() {
{ {
exit(0); exit(0);
} else { } else {
int err;
long long start_time = mstime(), elapsed; long long start_time = mstime(), elapsed;
if ((err = cliSendCommand(argc, argv, 1)) != 0) { if (cliSendCommand(argc,argv,1) != REDIS_OK) {
if (err == ECONNRESET) {
printf("Reconnecting... "); printf("Reconnecting... ");
fflush(stdout); fflush(stdout);
if (cliConnect(1) == -1) exit(1); if (cliConnect(1) != REDIS_OK) exit(1);
printf("OK\n"); printf("OK\n");
cliSendCommand(argc,argv,1);
} /* If we still cannot send the command,
* print error and abort. */
if (cliSendCommand(argc,argv,1) != REDIS_OK)
cliPrintContextErrorAndExit();
} }
elapsed = mstime()-start_time; elapsed = mstime()-start_time;
if (elapsed > 500) printf("%.2f seconds\n", if (elapsed > 500) printf("%.2f seconds\n",
@ -533,19 +472,8 @@ int main(int argc, char **argv) {
argc -= firstarg; argc -= firstarg;
argv += firstarg; argv += firstarg;
if (config.auth != NULL) { /* Try to connect */
char *authargv[2]; if (cliConnect(0) != REDIS_OK) exit(1);
int dbnum = config.dbnum;
/* We need to save the real configured database number and set it to
* zero here, otherwise cliSendCommand() will try to perform the
* SELECT command before the authentication, and it will fail. */
config.dbnum = 0;
authargv[0] = "AUTH";
authargv[1] = config.auth;
cliSendCommand(2, convertToSds(2, authargv), 1);
config.dbnum = dbnum; /* restore the right DB number */
}
/* Start interactive mode when no command is provided */ /* Start interactive mode when no command is provided */
if (argc == 0) repl(); if (argc == 0) repl();