2009-03-22 05:30:00 -04:00
|
|
|
/* Redis CLI (command line interface)
|
|
|
|
*
|
2010-02-19 05:23:57 -05:00
|
|
|
* Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
|
2009-03-22 05:30:00 -04: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.
|
|
|
|
*/
|
|
|
|
|
2009-03-27 17:00:27 -04:00
|
|
|
#include "fmacros.h"
|
2010-07-06 13:17:09 -04:00
|
|
|
#include "version.h"
|
2009-03-27 17:00:27 -04:00
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2010-04-26 12:39:39 -04:00
|
|
|
#include <ctype.h>
|
2010-08-24 12:39:34 -04:00
|
|
|
#include <errno.h>
|
2010-08-25 08:48:50 -04:00
|
|
|
#include <sys/stat.h>
|
2010-11-02 13:08:30 -04:00
|
|
|
#include <sys/time.h>
|
2010-11-29 13:27:36 -05:00
|
|
|
#include <assert.h>
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-11-03 11:09:38 -04:00
|
|
|
#include "hiredis.h"
|
2009-03-22 05:30:00 -04:00
|
|
|
#include "sds.h"
|
|
|
|
#include "zmalloc.h"
|
2010-03-23 10:25:32 -04:00
|
|
|
#include "linenoise.h"
|
2010-11-16 08:50:26 -05:00
|
|
|
#include "help.h"
|
2009-03-22 05:30:00 -04:00
|
|
|
|
|
|
|
#define REDIS_NOTUSED(V) ((void) V)
|
|
|
|
|
2010-11-03 11:09:38 -04:00
|
|
|
static redisContext *context;
|
2009-03-22 05:30:00 -04:00
|
|
|
static struct config {
|
|
|
|
char *hostip;
|
|
|
|
int hostport;
|
2010-08-01 17:06:00 -04:00
|
|
|
char *hostsocket;
|
2009-11-02 19:35:39 -05:00
|
|
|
long repeat;
|
2011-05-28 09:41:08 -04:00
|
|
|
long interval;
|
2009-11-11 23:12:09 -05:00
|
|
|
int dbnum;
|
2010-08-25 04:05:50 -04:00
|
|
|
int interactive;
|
2010-05-14 10:38:09 -04:00
|
|
|
int shutdown;
|
2010-04-27 10:07:31 -04:00
|
|
|
int monitor_mode;
|
|
|
|
int pubsub_mode;
|
2011-09-15 13:28:00 -04:00
|
|
|
int latency_mode;
|
2011-10-05 13:55:33 -04:00
|
|
|
int cluster_mode;
|
|
|
|
int cluster_reissue_command;
|
2010-09-09 10:38:10 -04:00
|
|
|
int stdinarg; /* get last arg from stdin. (-x option) */
|
2010-03-17 21:51:09 -04:00
|
|
|
char *auth;
|
2010-12-15 09:59:04 -05:00
|
|
|
int raw_output; /* output mode per command */
|
|
|
|
sds mb_delim;
|
2011-03-06 15:14:40 -05:00
|
|
|
char prompt[32];
|
2009-03-22 05:30:00 -04:00
|
|
|
} config;
|
|
|
|
|
2010-01-15 16:42:29 -05:00
|
|
|
static void usage();
|
2010-11-08 10:26:02 -05:00
|
|
|
char *redisGitSHA1(void);
|
2010-12-15 08:34:01 -05:00
|
|
|
char *redisGitDirty(void);
|
2009-03-24 08:37:32 -04:00
|
|
|
|
2010-11-02 13:08:30 -04:00
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
* Utility functions
|
|
|
|
*--------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static long long mstime(void) {
|
|
|
|
struct timeval tv;
|
|
|
|
long long mst;
|
|
|
|
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
mst = ((long)tv.tv_sec)*1000;
|
|
|
|
mst += tv.tv_usec/1000;
|
|
|
|
return mst;
|
|
|
|
}
|
|
|
|
|
2011-03-06 15:14:40 -05:00
|
|
|
static void cliRefreshPrompt(void) {
|
|
|
|
if (config.dbnum == 0)
|
2011-05-28 09:04:12 -04:00
|
|
|
snprintf(config.prompt,sizeof(config.prompt),"redis %s:%d> ",
|
|
|
|
config.hostip, config.hostport);
|
2011-03-06 15:14:40 -05:00
|
|
|
else
|
2011-05-28 09:04:12 -04:00
|
|
|
snprintf(config.prompt,sizeof(config.prompt),"redis %s:%d[%d]> ",
|
|
|
|
config.hostip, config.hostport, config.dbnum);
|
2011-03-06 15:14:40 -05:00
|
|
|
}
|
|
|
|
|
2010-11-28 15:37:19 -05:00
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
* Help functions
|
|
|
|
*--------------------------------------------------------------------------- */
|
|
|
|
|
2010-11-29 14:26:03 -05:00
|
|
|
#define CLI_HELP_COMMAND 1
|
|
|
|
#define CLI_HELP_GROUP 2
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int type;
|
|
|
|
int argc;
|
|
|
|
sds *argv;
|
|
|
|
sds full;
|
|
|
|
|
|
|
|
/* Only used for help on commands */
|
|
|
|
struct commandHelp *org;
|
|
|
|
} helpEntry;
|
|
|
|
|
|
|
|
static helpEntry *helpEntries;
|
|
|
|
static int helpEntriesLen;
|
|
|
|
|
2010-12-15 08:34:01 -05:00
|
|
|
static sds cliVersion() {
|
|
|
|
sds version;
|
|
|
|
version = sdscatprintf(sdsempty(), "%s", REDIS_VERSION);
|
|
|
|
|
|
|
|
/* Add git commit and working tree status when available */
|
|
|
|
if (strtoll(redisGitSHA1(),NULL,16)) {
|
|
|
|
version = sdscatprintf(version, " (git:%s", redisGitSHA1());
|
|
|
|
if (strtoll(redisGitDirty(),NULL,10))
|
|
|
|
version = sdscatprintf(version, "-dirty");
|
|
|
|
version = sdscat(version, ")");
|
|
|
|
}
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2010-11-29 14:26:03 -05:00
|
|
|
static void cliInitHelp() {
|
|
|
|
int commandslen = sizeof(commandHelp)/sizeof(struct commandHelp);
|
|
|
|
int groupslen = sizeof(commandGroups)/sizeof(char*);
|
|
|
|
int i, len, pos = 0;
|
|
|
|
helpEntry tmp;
|
|
|
|
|
|
|
|
helpEntriesLen = len = commandslen+groupslen;
|
|
|
|
helpEntries = malloc(sizeof(helpEntry)*len);
|
|
|
|
|
|
|
|
for (i = 0; i < groupslen; i++) {
|
|
|
|
tmp.argc = 1;
|
|
|
|
tmp.argv = malloc(sizeof(sds));
|
|
|
|
tmp.argv[0] = sdscatprintf(sdsempty(),"@%s",commandGroups[i]);
|
|
|
|
tmp.full = tmp.argv[0];
|
|
|
|
tmp.type = CLI_HELP_GROUP;
|
|
|
|
tmp.org = NULL;
|
|
|
|
helpEntries[pos++] = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < commandslen; i++) {
|
|
|
|
tmp.argv = sdssplitargs(commandHelp[i].name,&tmp.argc);
|
|
|
|
tmp.full = sdsnew(commandHelp[i].name);
|
|
|
|
tmp.type = CLI_HELP_COMMAND;
|
|
|
|
tmp.org = &commandHelp[i];
|
|
|
|
helpEntries[pos++] = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-28 15:37:19 -05:00
|
|
|
/* Output command help to stdout. */
|
2010-11-29 13:27:36 -05:00
|
|
|
static void cliOutputCommandHelp(struct commandHelp *help, int group) {
|
|
|
|
printf("\r\n \x1b[1m%s\x1b[0m \x1b[90m%s\x1b[0m\r\n", help->name, help->params);
|
|
|
|
printf(" \x1b[33msummary:\x1b[0m %s\r\n", help->summary);
|
|
|
|
printf(" \x1b[33msince:\x1b[0m %s\r\n", help->since);
|
|
|
|
if (group) {
|
|
|
|
printf(" \x1b[33mgroup:\x1b[0m %s\r\n", commandGroups[help->group]);
|
|
|
|
}
|
2010-11-28 15:37:19 -05:00
|
|
|
}
|
|
|
|
|
2010-11-29 13:27:36 -05:00
|
|
|
/* Print generic help. */
|
|
|
|
static void cliOutputGenericHelp() {
|
2010-12-15 08:34:01 -05:00
|
|
|
sds version = cliVersion();
|
2010-11-29 13:27:36 -05:00
|
|
|
printf(
|
|
|
|
"redis-cli %s\r\n"
|
|
|
|
"Type: \"help @<group>\" to get a list of commands in <group>\r\n"
|
|
|
|
" \"help <command>\" for help on <command>\r\n"
|
|
|
|
" \"help <tab>\" to get a list of possible help topics\r\n"
|
|
|
|
" \"quit\" to exit\r\n",
|
2010-12-15 08:34:01 -05:00
|
|
|
version
|
2010-11-29 13:27:36 -05:00
|
|
|
);
|
2010-12-15 08:34:01 -05:00
|
|
|
sdsfree(version);
|
2010-11-28 15:37:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Output all command help, filtering by group or command name. */
|
2010-11-29 13:27:36 -05:00
|
|
|
static void cliOutputHelp(int argc, char **argv) {
|
2010-11-29 14:26:03 -05:00
|
|
|
int i, j, len;
|
2010-11-29 13:27:36 -05:00
|
|
|
int group = -1;
|
2010-11-29 14:26:03 -05:00
|
|
|
helpEntry *entry;
|
|
|
|
struct commandHelp *help;
|
2010-11-28 15:37:19 -05:00
|
|
|
|
2010-11-29 13:27:36 -05:00
|
|
|
if (argc == 0) {
|
|
|
|
cliOutputGenericHelp();
|
2010-11-28 15:37:19 -05:00
|
|
|
return;
|
2010-11-29 13:27:36 -05:00
|
|
|
} else if (argc > 0 && argv[0][0] == '@') {
|
|
|
|
len = sizeof(commandGroups)/sizeof(char*);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (strcasecmp(argv[0]+1,commandGroups[i]) == 0) {
|
|
|
|
group = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-11-28 15:37:19 -05:00
|
|
|
}
|
|
|
|
|
2010-11-29 13:27:36 -05:00
|
|
|
assert(argc > 0);
|
2010-11-29 14:26:03 -05:00
|
|
|
for (i = 0; i < helpEntriesLen; i++) {
|
|
|
|
entry = &helpEntries[i];
|
|
|
|
if (entry->type != CLI_HELP_COMMAND) continue;
|
|
|
|
|
|
|
|
help = entry->org;
|
2010-11-28 15:37:19 -05:00
|
|
|
if (group == -1) {
|
2010-11-29 14:26:03 -05:00
|
|
|
/* Compare all arguments */
|
|
|
|
if (argc == entry->argc) {
|
|
|
|
for (j = 0; j < argc; j++) {
|
|
|
|
if (strcasecmp(argv[j],entry->argv[j]) != 0) break;
|
|
|
|
}
|
|
|
|
if (j == argc) {
|
|
|
|
cliOutputCommandHelp(help,1);
|
|
|
|
}
|
2010-11-28 15:37:19 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (group == help->group) {
|
2010-11-29 13:27:36 -05:00
|
|
|
cliOutputCommandHelp(help,0);
|
2010-11-28 15:37:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-11-29 13:27:36 -05:00
|
|
|
printf("\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void completionCallback(const char *buf, linenoiseCompletions *lc) {
|
|
|
|
size_t startpos = 0;
|
|
|
|
int mask;
|
|
|
|
int i;
|
|
|
|
size_t matchlen;
|
2010-11-29 14:26:03 -05:00
|
|
|
sds tmp;
|
2010-11-29 13:27:36 -05:00
|
|
|
|
|
|
|
if (strncasecmp(buf,"help ",5) == 0) {
|
|
|
|
startpos = 5;
|
|
|
|
while (isspace(buf[startpos])) startpos++;
|
2010-11-29 14:26:03 -05:00
|
|
|
mask = CLI_HELP_COMMAND | CLI_HELP_GROUP;
|
2010-11-29 13:27:36 -05:00
|
|
|
} else {
|
2010-11-29 14:26:03 -05:00
|
|
|
mask = CLI_HELP_COMMAND;
|
2010-11-29 13:27:36 -05:00
|
|
|
}
|
|
|
|
|
2010-11-29 14:26:03 -05:00
|
|
|
for (i = 0; i < helpEntriesLen; i++) {
|
|
|
|
if (!(helpEntries[i].type & mask)) continue;
|
2010-11-29 13:27:36 -05:00
|
|
|
|
|
|
|
matchlen = strlen(buf+startpos);
|
2010-11-29 14:26:03 -05:00
|
|
|
if (strncasecmp(buf+startpos,helpEntries[i].full,matchlen) == 0) {
|
|
|
|
tmp = sdsnewlen(buf,startpos);
|
|
|
|
tmp = sdscat(tmp,helpEntries[i].full);
|
2010-11-29 13:27:36 -05:00
|
|
|
linenoiseAddCompletion(lc,tmp);
|
2010-11-29 14:26:03 -05:00
|
|
|
sdsfree(tmp);
|
2010-11-29 13:27:36 -05:00
|
|
|
}
|
|
|
|
}
|
2010-11-28 15:37:19 -05:00
|
|
|
}
|
|
|
|
|
2010-11-02 13:08:30 -04:00
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
* Networking / parsing
|
|
|
|
*--------------------------------------------------------------------------- */
|
|
|
|
|
2010-11-03 11:09:38 -04:00
|
|
|
/* 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;
|
|
|
|
if (config.dbnum == 0) return REDIS_OK;
|
|
|
|
|
2011-03-06 14:46:40 -05:00
|
|
|
reply = redisCommand(context,"SELECT %d",config.dbnum);
|
2010-11-03 11:09:38 -04:00
|
|
|
if (reply != NULL) {
|
|
|
|
freeReplyObject(reply);
|
|
|
|
return REDIS_OK;
|
|
|
|
}
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
|
|
|
|
2010-08-24 12:39:34 -04:00
|
|
|
/* Connect to the client. If force is not zero the connection is performed
|
|
|
|
* even if there is already a connected socket. */
|
|
|
|
static int cliConnect(int force) {
|
2010-11-03 11:09:38 -04:00
|
|
|
if (context == NULL || force) {
|
|
|
|
if (context != NULL)
|
|
|
|
redisFree(context);
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-08-01 17:06:00 -04:00
|
|
|
if (config.hostsocket == NULL) {
|
2010-11-03 11:09:38 -04:00
|
|
|
context = redisConnect(config.hostip,config.hostport);
|
2010-08-01 17:06:00 -04:00
|
|
|
} else {
|
2010-11-03 11:09:38 -04:00
|
|
|
context = redisConnectUnix(config.hostsocket);
|
2010-08-01 17:06:00 -04:00
|
|
|
}
|
2010-11-03 11:09:38 -04:00
|
|
|
|
|
|
|
if (context->err) {
|
2010-08-01 17:06:00 -04:00
|
|
|
fprintf(stderr,"Could not connect to Redis at ");
|
|
|
|
if (config.hostsocket == NULL)
|
2010-11-03 11:09:38 -04:00
|
|
|
fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,context->errstr);
|
2010-08-01 17:06:00 -04:00
|
|
|
else
|
2010-11-03 11:09:38 -04:00
|
|
|
fprintf(stderr,"%s: %s\n",config.hostsocket,context->errstr);
|
|
|
|
redisFree(context);
|
|
|
|
context = NULL;
|
|
|
|
return REDIS_ERR;
|
2010-03-02 14:24:21 -05:00
|
|
|
}
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-11-03 11:09:38 -04:00
|
|
|
/* Do AUTH and select the right DB. */
|
|
|
|
if (cliAuth() != REDIS_OK)
|
|
|
|
return REDIS_ERR;
|
|
|
|
if (cliSelect() != REDIS_OK)
|
|
|
|
return REDIS_ERR;
|
2009-03-22 05:30:00 -04:00
|
|
|
}
|
2010-11-03 11:09:38 -04:00
|
|
|
return REDIS_OK;
|
2009-03-22 05:30:00 -04:00
|
|
|
}
|
|
|
|
|
2011-05-28 09:04:12 -04:00
|
|
|
static void cliPrintContextError() {
|
2010-11-03 11:09:38 -04:00
|
|
|
if (context == NULL) return;
|
|
|
|
fprintf(stderr,"Error: %s\n",context->errstr);
|
2009-03-22 05:30:00 -04:00
|
|
|
}
|
|
|
|
|
2010-12-15 09:59:04 -05:00
|
|
|
static sds cliFormatReplyTTY(redisReply *r, char *prefix) {
|
2010-11-03 11:09:38 -04:00
|
|
|
sds out = sdsempty();
|
|
|
|
switch (r->type) {
|
|
|
|
case REDIS_REPLY_ERROR:
|
2010-12-15 09:59:04 -05:00
|
|
|
out = sdscatprintf(out,"(error) %s\n", r->str);
|
2010-11-03 11:09:38 -04:00
|
|
|
break;
|
|
|
|
case REDIS_REPLY_STATUS:
|
|
|
|
out = sdscat(out,r->str);
|
|
|
|
out = sdscat(out,"\n");
|
|
|
|
break;
|
|
|
|
case REDIS_REPLY_INTEGER:
|
2010-12-15 09:59:04 -05:00
|
|
|
out = sdscatprintf(out,"(integer) %lld\n",r->integer);
|
2010-11-03 11:09:38 -04:00
|
|
|
break;
|
|
|
|
case REDIS_REPLY_STRING:
|
2010-12-15 09:59:04 -05:00
|
|
|
/* If you are producing output for the standard output we want
|
|
|
|
* a more interesting output with quoted characters and so forth */
|
|
|
|
out = sdscatrepr(out,r->str,r->len);
|
|
|
|
out = sdscat(out,"\n");
|
2010-11-03 11:09:38 -04:00
|
|
|
break;
|
|
|
|
case REDIS_REPLY_NIL:
|
|
|
|
out = sdscat(out,"(nil)\n");
|
|
|
|
break;
|
|
|
|
case REDIS_REPLY_ARRAY:
|
|
|
|
if (r->elements == 0) {
|
|
|
|
out = sdscat(out,"(empty list or set)\n");
|
2010-08-24 12:39:34 -04:00
|
|
|
} else {
|
2010-11-03 12:03:54 -04:00
|
|
|
unsigned int i, idxlen = 0;
|
|
|
|
char _prefixlen[16];
|
|
|
|
char _prefixfmt[16];
|
|
|
|
sds _prefix;
|
2010-11-03 11:09:38 -04:00
|
|
|
sds tmp;
|
|
|
|
|
2010-11-03 12:03:54 -04:00
|
|
|
/* Calculate chars needed to represent the largest index */
|
|
|
|
i = r->elements;
|
|
|
|
do {
|
|
|
|
idxlen++;
|
|
|
|
i /= 10;
|
|
|
|
} while(i);
|
|
|
|
|
|
|
|
/* Prefix for nested multi bulks should grow with idxlen+2 spaces */
|
|
|
|
memset(_prefixlen,' ',idxlen+2);
|
|
|
|
_prefixlen[idxlen+2] = '\0';
|
|
|
|
_prefix = sdscat(sdsnew(prefix),_prefixlen);
|
|
|
|
|
|
|
|
/* Setup prefix format for every entry */
|
|
|
|
snprintf(_prefixfmt,sizeof(_prefixfmt),"%%s%%%dd) ",idxlen);
|
|
|
|
|
2010-11-03 11:09:38 -04:00
|
|
|
for (i = 0; i < r->elements; i++) {
|
2010-11-03 12:03:54 -04:00
|
|
|
/* Don't use the prefix for the first element, as the parent
|
|
|
|
* caller already prepended the index number. */
|
|
|
|
out = sdscatprintf(out,_prefixfmt,i == 0 ? "" : prefix,i+1);
|
|
|
|
|
|
|
|
/* Format the multi bulk entry */
|
2010-12-15 09:59:04 -05:00
|
|
|
tmp = cliFormatReplyTTY(r->element[i],_prefix);
|
2010-11-03 11:09:38 -04:00
|
|
|
out = sdscatlen(out,tmp,sdslen(tmp));
|
|
|
|
sdsfree(tmp);
|
|
|
|
}
|
2010-11-03 12:03:54 -04:00
|
|
|
sdsfree(_prefix);
|
2010-08-24 12:39:34 -04:00
|
|
|
}
|
2010-11-03 11:09:38 -04:00
|
|
|
break;
|
2009-03-24 08:37:32 -04:00
|
|
|
default:
|
2010-11-03 11:09:38 -04:00
|
|
|
fprintf(stderr,"Unknown reply type: %d\n", r->type);
|
|
|
|
exit(1);
|
2009-03-24 08:37:32 -04:00
|
|
|
}
|
2010-11-03 11:09:38 -04:00
|
|
|
return out;
|
2009-03-24 08:37:32 -04:00
|
|
|
}
|
|
|
|
|
2010-12-15 09:59:04 -05:00
|
|
|
static sds cliFormatReplyRaw(redisReply *r) {
|
|
|
|
sds out = sdsempty(), tmp;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
switch (r->type) {
|
|
|
|
case REDIS_REPLY_NIL:
|
|
|
|
/* Nothing... */
|
2011-03-29 11:51:15 -04:00
|
|
|
break;
|
2010-12-15 09:59:04 -05:00
|
|
|
case REDIS_REPLY_ERROR:
|
2011-03-29 11:51:15 -04:00
|
|
|
out = sdscatlen(out,r->str,r->len);
|
|
|
|
out = sdscatlen(out,"\n",1);
|
|
|
|
break;
|
2010-12-15 09:59:04 -05:00
|
|
|
case REDIS_REPLY_STATUS:
|
|
|
|
case REDIS_REPLY_STRING:
|
|
|
|
out = sdscatlen(out,r->str,r->len);
|
2011-03-29 11:51:15 -04:00
|
|
|
break;
|
2010-12-15 09:59:04 -05:00
|
|
|
case REDIS_REPLY_INTEGER:
|
|
|
|
out = sdscatprintf(out,"%lld",r->integer);
|
2011-03-29 11:51:15 -04:00
|
|
|
break;
|
2010-12-15 09:59:04 -05:00
|
|
|
case REDIS_REPLY_ARRAY:
|
|
|
|
for (i = 0; i < r->elements; i++) {
|
|
|
|
if (i > 0) out = sdscat(out,config.mb_delim);
|
|
|
|
tmp = cliFormatReplyRaw(r->element[i]);
|
|
|
|
out = sdscatlen(out,tmp,sdslen(tmp));
|
|
|
|
sdsfree(tmp);
|
|
|
|
}
|
2011-03-29 11:51:15 -04:00
|
|
|
break;
|
2010-12-15 09:59:04 -05:00
|
|
|
default:
|
|
|
|
fprintf(stderr,"Unknown reply type: %d\n", r->type);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cliReadReply(int output_raw_strings) {
|
2010-12-23 06:25:56 -05:00
|
|
|
void *_reply;
|
2010-11-03 11:09:38 -04:00
|
|
|
redisReply *reply;
|
|
|
|
sds out;
|
2011-10-05 13:55:33 -04:00
|
|
|
int output = 1;
|
2010-11-03 11:09:38 -04:00
|
|
|
|
2010-12-23 06:25:56 -05:00
|
|
|
if (redisGetReply(context,&_reply) != REDIS_OK) {
|
2010-11-03 11:09:38 -04:00
|
|
|
if (config.shutdown)
|
|
|
|
return REDIS_OK;
|
|
|
|
if (config.interactive) {
|
|
|
|
/* Filter cases where we should reconnect */
|
|
|
|
if (context->err == REDIS_ERR_IO && errno == ECONNRESET)
|
|
|
|
return REDIS_ERR;
|
|
|
|
if (context->err == REDIS_ERR_EOF)
|
|
|
|
return REDIS_ERR;
|
|
|
|
}
|
2011-05-28 09:04:12 -04:00
|
|
|
cliPrintContextError();
|
|
|
|
exit(1);
|
2010-11-03 11:09:38 -04:00
|
|
|
return REDIS_ERR; /* avoid compiler warning */
|
2009-11-11 23:12:09 -05:00
|
|
|
}
|
2010-11-03 11:09:38 -04:00
|
|
|
|
2010-12-23 06:25:56 -05:00
|
|
|
reply = (redisReply*)_reply;
|
2011-10-05 13:55:33 -04:00
|
|
|
|
|
|
|
/* Check if we need to connect to a different node and reissue the request. */
|
|
|
|
if (config.cluster_mode && reply->type == REDIS_REPLY_ERROR &&
|
|
|
|
(!strncmp(reply->str,"MOVED",5) || !strcmp(reply->str,"ASK")))
|
|
|
|
{
|
|
|
|
char *p = reply->str, *s;
|
|
|
|
int slot;
|
|
|
|
|
|
|
|
output = 0;
|
|
|
|
/* Comments show the position of the pointer as:
|
|
|
|
*
|
|
|
|
* [S] for pointer 's'
|
|
|
|
* [P] for pointer 'p'
|
|
|
|
*/
|
|
|
|
s = strchr(p,' '); /* MOVED[S]3999 127.0.0.1:6381 */
|
|
|
|
p = strchr(s+1,' '); /* MOVED[S]3999[P]127.0.0.1:6381 */
|
|
|
|
*p = '\0';
|
|
|
|
slot = atoi(s+1);
|
|
|
|
s = strchr(p+1,':'); /* MOVED 3999[P]127.0.0.1[S]6381 */
|
|
|
|
*s = '\0';
|
|
|
|
sdsfree(config.hostip);
|
|
|
|
config.hostip = sdsnew(p+1);
|
|
|
|
config.hostport = atoi(s+1);
|
|
|
|
if (config.interactive)
|
|
|
|
printf("-> Redirected to slot [%d] located at %s:%d\n",
|
|
|
|
slot, config.hostip, config.hostport);
|
|
|
|
config.cluster_reissue_command = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (output) {
|
|
|
|
if (output_raw_strings) {
|
2010-12-15 09:59:04 -05:00
|
|
|
out = cliFormatReplyRaw(reply);
|
|
|
|
} else {
|
2011-10-05 13:55:33 -04:00
|
|
|
if (config.raw_output) {
|
|
|
|
out = cliFormatReplyRaw(reply);
|
|
|
|
out = sdscat(out,"\n");
|
|
|
|
} else {
|
|
|
|
out = cliFormatReplyTTY(reply,"");
|
|
|
|
}
|
2010-12-15 09:59:04 -05:00
|
|
|
}
|
2011-10-05 13:55:33 -04:00
|
|
|
fwrite(out,sdslen(out),1,stdout);
|
|
|
|
sdsfree(out);
|
2010-12-15 09:59:04 -05:00
|
|
|
}
|
|
|
|
freeReplyObject(reply);
|
2010-11-03 11:09:38 -04:00
|
|
|
return REDIS_OK;
|
2009-11-11 23:12:09 -05:00
|
|
|
}
|
|
|
|
|
2010-03-23 09:54:49 -04:00
|
|
|
static int cliSendCommand(int argc, char **argv, int repeat) {
|
2010-05-26 12:18:37 -04:00
|
|
|
char *command = argv[0];
|
2010-11-03 11:09:38 -04:00
|
|
|
size_t *argvlen;
|
2010-12-15 09:59:04 -05:00
|
|
|
int j, output_raw;
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2011-05-28 09:04:12 -04:00
|
|
|
if (context == NULL) return REDIS_ERR;
|
2010-11-29 06:17:55 -05:00
|
|
|
|
2011-03-29 11:51:15 -04:00
|
|
|
output_raw = 0;
|
|
|
|
if (!strcasecmp(command,"info") ||
|
|
|
|
(argc == 2 && !strcasecmp(command,"cluster") &&
|
|
|
|
(!strcasecmp(argv[1],"nodes") ||
|
2011-04-21 09:38:02 -04:00
|
|
|
!strcasecmp(argv[1],"info"))) ||
|
|
|
|
(argc == 2 && !strcasecmp(command,"client") &&
|
|
|
|
!strcasecmp(argv[1],"list")))
|
|
|
|
|
2011-03-29 11:51:15 -04:00
|
|
|
{
|
|
|
|
output_raw = 1;
|
|
|
|
}
|
|
|
|
|
2010-11-29 13:27:36 -05:00
|
|
|
if (!strcasecmp(command,"help") || !strcasecmp(command,"?")) {
|
|
|
|
cliOutputHelp(--argc, ++argv);
|
2010-11-03 11:09:38 -04:00
|
|
|
return REDIS_OK;
|
2010-08-30 09:57:03 -04:00
|
|
|
}
|
2010-05-26 12:18:37 -04:00
|
|
|
if (!strcasecmp(command,"shutdown")) config.shutdown = 1;
|
|
|
|
if (!strcasecmp(command,"monitor")) config.monitor_mode = 1;
|
|
|
|
if (!strcasecmp(command,"subscribe") ||
|
|
|
|
!strcasecmp(command,"psubscribe")) config.pubsub_mode = 1;
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-11-03 11:09:38 -04:00
|
|
|
/* Setup argument length */
|
|
|
|
argvlen = malloc(argc*sizeof(size_t));
|
|
|
|
for (j = 0; j < argc; j++)
|
|
|
|
argvlen[j] = sdslen(argv[j]);
|
2010-05-26 12:22:05 -04:00
|
|
|
|
2010-03-23 09:54:49 -04:00
|
|
|
while(repeat--) {
|
2010-11-03 11:09:38 -04:00
|
|
|
redisAppendCommandArgv(context,argc,(const char**)argv,argvlen);
|
2010-04-27 10:07:31 -04:00
|
|
|
while (config.monitor_mode) {
|
2010-12-15 09:59:04 -05:00
|
|
|
if (cliReadReply(output_raw) != REDIS_OK) exit(1);
|
2010-11-08 10:14:15 -05:00
|
|
|
fflush(stdout);
|
2010-01-20 13:38:59 -05:00
|
|
|
}
|
|
|
|
|
2010-04-27 10:07:31 -04:00
|
|
|
if (config.pubsub_mode) {
|
2010-12-15 09:59:04 -05:00
|
|
|
if (!config.raw_output)
|
|
|
|
printf("Reading messages... (press Ctrl-C to quit)\n");
|
2010-04-27 10:07:31 -04:00
|
|
|
while (1) {
|
2010-12-15 09:59:04 -05:00
|
|
|
if (cliReadReply(output_raw) != REDIS_OK) exit(1);
|
2010-04-27 10:07:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-06 14:13:01 -05:00
|
|
|
if (cliReadReply(output_raw) != REDIS_OK) {
|
|
|
|
free(argvlen);
|
2010-11-03 11:09:38 -04:00
|
|
|
return REDIS_ERR;
|
2011-03-06 14:46:40 -05:00
|
|
|
} else {
|
|
|
|
/* Store database number when SELECT was successfully executed. */
|
2011-03-06 15:14:40 -05:00
|
|
|
if (!strcasecmp(command,"select") && argc == 2) {
|
2011-03-06 14:46:40 -05:00
|
|
|
config.dbnum = atoi(argv[1]);
|
2011-03-06 15:14:40 -05:00
|
|
|
cliRefreshPrompt();
|
|
|
|
}
|
2011-03-06 14:13:01 -05:00
|
|
|
}
|
2011-05-28 09:41:08 -04:00
|
|
|
if (config.interval) usleep(config.interval);
|
|
|
|
fflush(stdout); /* Make it grep friendly */
|
2009-03-22 05:30:00 -04:00
|
|
|
}
|
2011-03-06 14:13:01 -05:00
|
|
|
|
|
|
|
free(argvlen);
|
2010-11-03 11:09:38 -04:00
|
|
|
return REDIS_OK;
|
2009-03-22 05:30:00 -04:00
|
|
|
}
|
|
|
|
|
2010-11-02 13:08:30 -04:00
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
* User interface
|
|
|
|
*--------------------------------------------------------------------------- */
|
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
static int parseOptions(int argc, char **argv) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
int lastarg = i==argc-1;
|
2010-03-02 10:14:14 -05:00
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
if (!strcmp(argv[i],"-h") && !lastarg) {
|
2010-11-29 06:17:55 -05:00
|
|
|
sdsfree(config.hostip);
|
|
|
|
config.hostip = sdsnew(argv[i+1]);
|
2009-03-22 05:30:00 -04:00
|
|
|
i++;
|
2010-01-15 16:42:29 -05:00
|
|
|
} else if (!strcmp(argv[i],"-h") && lastarg) {
|
|
|
|
usage();
|
2010-12-15 08:58:18 -05:00
|
|
|
} else if (!strcmp(argv[i],"--help")) {
|
|
|
|
usage();
|
2010-09-09 10:38:10 -04:00
|
|
|
} else if (!strcmp(argv[i],"-x")) {
|
|
|
|
config.stdinarg = 1;
|
2009-03-22 05:30:00 -04:00
|
|
|
} else if (!strcmp(argv[i],"-p") && !lastarg) {
|
|
|
|
config.hostport = atoi(argv[i+1]);
|
|
|
|
i++;
|
2010-08-01 17:06:00 -04:00
|
|
|
} else if (!strcmp(argv[i],"-s") && !lastarg) {
|
|
|
|
config.hostsocket = argv[i+1];
|
|
|
|
i++;
|
2009-11-02 19:35:39 -05:00
|
|
|
} else if (!strcmp(argv[i],"-r") && !lastarg) {
|
|
|
|
config.repeat = strtoll(argv[i+1],NULL,10);
|
|
|
|
i++;
|
2011-05-28 09:41:08 -04:00
|
|
|
} else if (!strcmp(argv[i],"-i") && !lastarg) {
|
|
|
|
double seconds = atof(argv[i+1]);
|
|
|
|
config.interval = seconds*1000000;
|
|
|
|
i++;
|
2009-11-11 23:12:09 -05:00
|
|
|
} else if (!strcmp(argv[i],"-n") && !lastarg) {
|
|
|
|
config.dbnum = atoi(argv[i+1]);
|
|
|
|
i++;
|
2010-03-17 09:41:02 -04:00
|
|
|
} else if (!strcmp(argv[i],"-a") && !lastarg) {
|
2010-03-17 21:51:09 -04:00
|
|
|
config.auth = argv[i+1];
|
2010-03-17 09:41:02 -04:00
|
|
|
i++;
|
2010-12-15 09:59:04 -05:00
|
|
|
} else if (!strcmp(argv[i],"--raw")) {
|
|
|
|
config.raw_output = 1;
|
2011-09-15 13:28:00 -04:00
|
|
|
} else if (!strcmp(argv[i],"--latency")) {
|
|
|
|
config.latency_mode = 1;
|
2011-10-05 13:55:33 -04:00
|
|
|
} else if (!strcmp(argv[i],"-c")) {
|
|
|
|
config.cluster_mode = 1;
|
2010-12-15 10:02:07 -05:00
|
|
|
} else if (!strcmp(argv[i],"-d") && !lastarg) {
|
|
|
|
sdsfree(config.mb_delim);
|
|
|
|
config.mb_delim = sdsnew(argv[i+1]);
|
|
|
|
i++;
|
2010-12-15 08:58:18 -05:00
|
|
|
} else if (!strcmp(argv[i],"-v") || !strcmp(argv[i], "--version")) {
|
|
|
|
sds version = cliVersion();
|
|
|
|
printf("redis-cli %s\n", version);
|
|
|
|
sdsfree(version);
|
2010-07-06 13:17:09 -04:00
|
|
|
exit(0);
|
2009-03-22 05:30:00 -04:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static sds readArgFromStdin(void) {
|
|
|
|
char buf[1024];
|
|
|
|
sds arg = sdsempty();
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
int nread = read(fileno(stdin),buf,1024);
|
|
|
|
|
|
|
|
if (nread == 0) break;
|
|
|
|
else if (nread == -1) {
|
|
|
|
perror("Reading from standard input");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
arg = sdscatlen(arg,buf,nread);
|
|
|
|
}
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
2010-01-15 16:42:29 -05:00
|
|
|
static void usage() {
|
2010-12-15 08:58:18 -05:00
|
|
|
sds version = cliVersion();
|
|
|
|
fprintf(stderr,
|
|
|
|
"redis-cli %s\n"
|
|
|
|
"\n"
|
|
|
|
"Usage: redis-cli [OPTIONS] [cmd [arg [arg ...]]]\n"
|
|
|
|
" -h <hostname> Server hostname (default: 127.0.0.1)\n"
|
|
|
|
" -p <port> Server port (default: 6379)\n"
|
|
|
|
" -s <socket> Server socket (overrides hostname and port)\n"
|
|
|
|
" -a <password> Password to use when connecting to the server\n"
|
|
|
|
" -r <repeat> Execute specified command N times\n"
|
2011-05-28 09:41:08 -04:00
|
|
|
" -i <interval> When -r is used, waits <interval> seconds per command.\n"
|
|
|
|
" It is possible to specify sub-second times like -i 0.1.\n"
|
2010-12-15 08:58:18 -05:00
|
|
|
" -n <db> Database number\n"
|
|
|
|
" -x Read last argument from STDIN\n"
|
2010-12-15 10:02:07 -05:00
|
|
|
" -d <delimiter> Multi-bulk delimiter in for raw formatting (default: \\n)\n"
|
2011-10-05 13:55:33 -04:00
|
|
|
" -c Enable cluster mode (follow -ASK and -MOVED redirections)\n"
|
2010-12-15 09:59:04 -05:00
|
|
|
" --raw Use raw formatting for replies (default when STDOUT is not a tty)\n"
|
2011-09-15 13:28:00 -04:00
|
|
|
" --latency Enter a special mode continuously sampling latency.\n"
|
2010-12-15 08:58:18 -05:00
|
|
|
" --help Output this help and exit\n"
|
|
|
|
" --version Output version and exit\n"
|
|
|
|
"\n"
|
|
|
|
"Examples:\n"
|
|
|
|
" cat /etc/passwd | redis-cli -x set mypasswd\n"
|
|
|
|
" redis-cli get mypasswd\n"
|
|
|
|
" redis-cli -r 100 lpush mylist x\n"
|
2011-05-28 09:41:08 -04:00
|
|
|
" redis-cli -r 100 -i 1 info | grep used_memory_human:\n"
|
2010-12-15 08:58:18 -05:00
|
|
|
"\n"
|
|
|
|
"When no command is given, redis-cli starts in interactive mode.\n"
|
|
|
|
"Type \"help\" in interactive mode for information on available commands.\n"
|
|
|
|
"\n",
|
|
|
|
version);
|
|
|
|
sdsfree(version);
|
2010-01-15 16:42:29 -05:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-03-02 10:14:14 -05:00
|
|
|
/* Turn the plain C strings into Sds strings */
|
|
|
|
static char **convertToSds(int count, char** args) {
|
|
|
|
int j;
|
2010-05-26 12:18:37 -04:00
|
|
|
char **sds = zmalloc(sizeof(char*)*count);
|
2010-03-02 10:14:14 -05:00
|
|
|
|
|
|
|
for(j = 0; j < count; j++)
|
|
|
|
sds[j] = sdsnew(args[j]);
|
|
|
|
|
|
|
|
return sds;
|
|
|
|
}
|
|
|
|
|
2010-04-26 12:39:39 -04:00
|
|
|
#define LINE_BUFLEN 4096
|
2010-03-02 10:14:14 -05:00
|
|
|
static void repl() {
|
2011-03-06 14:00:08 -05:00
|
|
|
sds historyfile = NULL;
|
|
|
|
int history = 0;
|
2010-08-05 05:36:39 -04:00
|
|
|
char *line;
|
2011-03-06 14:00:08 -05:00
|
|
|
int argc;
|
2010-08-05 05:36:39 -04:00
|
|
|
sds *argv;
|
2010-03-02 10:14:14 -05:00
|
|
|
|
2010-08-25 04:05:50 -04:00
|
|
|
config.interactive = 1;
|
2010-11-29 13:27:36 -05:00
|
|
|
linenoiseSetCompletionCallback(completionCallback);
|
2010-11-30 05:39:55 -05:00
|
|
|
|
2011-03-06 14:00:08 -05:00
|
|
|
/* Only use history when stdin is a tty. */
|
|
|
|
if (isatty(fileno(stdin))) {
|
|
|
|
history = 1;
|
|
|
|
|
|
|
|
if (getenv("HOME") != NULL) {
|
|
|
|
historyfile = sdscatprintf(sdsempty(),"%s/.rediscli_history",getenv("HOME"));
|
|
|
|
linenoiseHistoryLoad(historyfile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-06 15:14:40 -05:00
|
|
|
cliRefreshPrompt();
|
|
|
|
while((line = linenoise(context ? config.prompt : "not connected> ")) != NULL) {
|
2010-03-23 10:25:32 -04:00
|
|
|
if (line[0] != '\0') {
|
2010-08-05 05:36:39 -04:00
|
|
|
argv = sdssplitargs(line,&argc);
|
2011-03-06 14:00:08 -05:00
|
|
|
if (history) linenoiseHistoryAdd(line);
|
|
|
|
if (historyfile) linenoiseHistorySave(historyfile);
|
|
|
|
|
2010-08-04 09:29:28 -04:00
|
|
|
if (argv == NULL) {
|
|
|
|
printf("Invalid argument(s)\n");
|
2011-10-28 11:43:04 -04:00
|
|
|
free(line);
|
2010-08-04 09:29:28 -04:00
|
|
|
continue;
|
|
|
|
} else if (argc > 0) {
|
2010-04-26 12:39:39 -04:00
|
|
|
if (strcasecmp(argv[0],"quit") == 0 ||
|
|
|
|
strcasecmp(argv[0],"exit") == 0)
|
2010-08-24 12:39:34 -04:00
|
|
|
{
|
|
|
|
exit(0);
|
2010-11-29 06:17:55 -05:00
|
|
|
} else if (argc == 3 && !strcasecmp(argv[0],"connect")) {
|
|
|
|
sdsfree(config.hostip);
|
|
|
|
config.hostip = sdsnew(argv[1]);
|
|
|
|
config.hostport = atoi(argv[2]);
|
|
|
|
cliConnect(1);
|
2010-12-01 05:18:59 -05:00
|
|
|
} else if (argc == 1 && !strcasecmp(argv[0],"clear")) {
|
|
|
|
linenoiseClearScreen();
|
2010-08-24 12:39:34 -04:00
|
|
|
} else {
|
2010-11-02 13:08:30 -04:00
|
|
|
long long start_time = mstime(), elapsed;
|
2011-05-28 09:13:55 -04:00
|
|
|
int repeat, skipargs = 0;
|
2010-08-24 12:39:34 -04:00
|
|
|
|
2011-05-28 09:13:55 -04:00
|
|
|
repeat = atoi(argv[0]);
|
2011-09-21 16:22:14 -04:00
|
|
|
if (argc > 1 && repeat) {
|
2011-05-28 09:13:55 -04:00
|
|
|
skipargs = 1;
|
|
|
|
} else {
|
|
|
|
repeat = 1;
|
|
|
|
}
|
|
|
|
|
2011-10-05 13:55:33 -04:00
|
|
|
while (1) {
|
|
|
|
config.cluster_reissue_command = 0;
|
2011-05-28 09:25:48 -04:00
|
|
|
if (cliSendCommand(argc-skipargs,argv+skipargs,repeat)
|
|
|
|
!= REDIS_OK)
|
2011-10-05 13:55:33 -04:00
|
|
|
{
|
|
|
|
cliConnect(1);
|
|
|
|
|
|
|
|
/* If we still cannot send the command print error.
|
|
|
|
* We'll try to reconnect the next time. */
|
|
|
|
if (cliSendCommand(argc-skipargs,argv+skipargs,repeat)
|
|
|
|
!= REDIS_OK)
|
|
|
|
cliPrintContextError();
|
|
|
|
}
|
|
|
|
/* Issue the command again if we got redirected in cluster mode */
|
|
|
|
if (config.cluster_mode && config.cluster_reissue_command) {
|
|
|
|
cliConnect(1);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
2010-08-24 12:39:34 -04:00
|
|
|
}
|
2010-11-02 13:08:30 -04:00
|
|
|
elapsed = mstime()-start_time;
|
2010-11-03 12:07:10 -04:00
|
|
|
if (elapsed >= 500) {
|
|
|
|
printf("(%.2fs)\n",(double)elapsed/1000);
|
|
|
|
}
|
2010-08-24 12:39:34 -04:00
|
|
|
}
|
2010-04-26 12:39:39 -04:00
|
|
|
}
|
|
|
|
/* Free the argument vector */
|
2011-03-06 14:00:08 -05:00
|
|
|
while(argc--) sdsfree(argv[argc]);
|
2010-04-27 12:06:52 -04:00
|
|
|
zfree(argv);
|
2010-03-02 10:14:14 -05:00
|
|
|
}
|
2010-04-26 12:39:39 -04:00
|
|
|
/* linenoise() returns malloc-ed lines like readline() */
|
2010-03-23 10:25:32 -04:00
|
|
|
free(line);
|
2010-03-02 10:14:14 -05:00
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2010-08-25 08:48:50 -04:00
|
|
|
static int noninteractive(int argc, char **argv) {
|
|
|
|
int retval = 0;
|
2010-09-09 10:38:10 -04:00
|
|
|
if (config.stdinarg) {
|
2010-08-25 08:48:50 -04:00
|
|
|
argv = zrealloc(argv, (argc+1)*sizeof(char*));
|
|
|
|
argv[argc] = readArgFromStdin();
|
|
|
|
retval = cliSendCommand(argc+1, argv, config.repeat);
|
|
|
|
} else {
|
|
|
|
/* stdin is probably a tty, can be tested with S_ISCHR(s.st_mode) */
|
|
|
|
retval = cliSendCommand(argc, argv, config.repeat);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-09-15 13:28:00 -04:00
|
|
|
static void latencyMode(void) {
|
|
|
|
redisReply *reply;
|
|
|
|
long long start, latency, min, max, tot, count = 0;
|
|
|
|
double avg;
|
|
|
|
|
|
|
|
if (!context) exit(1);
|
|
|
|
while(1) {
|
|
|
|
start = mstime();
|
|
|
|
reply = redisCommand(context,"PING");
|
|
|
|
if (reply == NULL) {
|
|
|
|
fprintf(stderr,"\nI/O error\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
latency = mstime()-start;
|
|
|
|
freeReplyObject(reply);
|
|
|
|
count++;
|
|
|
|
if (count == 1) {
|
|
|
|
min = max = tot = latency;
|
|
|
|
avg = (double) latency;
|
|
|
|
} else {
|
|
|
|
if (latency < min) min = latency;
|
|
|
|
if (latency > max) max = latency;
|
2011-09-15 13:32:25 -04:00
|
|
|
tot += latency;
|
2011-09-15 13:28:00 -04:00
|
|
|
avg = (double) tot/count;
|
|
|
|
}
|
|
|
|
printf("\x1b[0G\x1b[2Kmin: %lld, max: %lld, avg: %.2f (%lld samples)",
|
|
|
|
min, max, avg, count);
|
|
|
|
fflush(stdout);
|
|
|
|
usleep(10000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
int main(int argc, char **argv) {
|
2010-03-02 10:14:14 -05:00
|
|
|
int firstarg;
|
2009-03-22 05:30:00 -04:00
|
|
|
|
2010-11-29 06:17:55 -05:00
|
|
|
config.hostip = sdsnew("127.0.0.1");
|
2009-03-22 05:30:00 -04:00
|
|
|
config.hostport = 6379;
|
2010-08-01 17:06:00 -04:00
|
|
|
config.hostsocket = NULL;
|
2009-11-02 19:35:39 -05:00
|
|
|
config.repeat = 1;
|
2011-05-28 09:41:08 -04:00
|
|
|
config.interval = 0;
|
2009-11-11 23:12:09 -05:00
|
|
|
config.dbnum = 0;
|
2010-08-25 04:05:50 -04:00
|
|
|
config.interactive = 0;
|
2010-05-14 10:38:09 -04:00
|
|
|
config.shutdown = 0;
|
2010-04-27 10:07:31 -04:00
|
|
|
config.monitor_mode = 0;
|
|
|
|
config.pubsub_mode = 0;
|
2011-09-15 13:28:00 -04:00
|
|
|
config.latency_mode = 0;
|
2011-10-05 13:55:33 -04:00
|
|
|
config.cluster_mode = 0;
|
2010-09-09 10:38:10 -04:00
|
|
|
config.stdinarg = 0;
|
2010-03-17 21:51:09 -04:00
|
|
|
config.auth = NULL;
|
2010-12-15 09:59:04 -05:00
|
|
|
config.raw_output = !isatty(fileno(stdout)) && (getenv("FAKETTY") == NULL);
|
|
|
|
config.mb_delim = sdsnew("\n");
|
2010-11-29 13:27:36 -05:00
|
|
|
cliInitHelp();
|
2010-07-07 12:44:53 -04:00
|
|
|
|
2009-03-22 05:30:00 -04:00
|
|
|
firstarg = parseOptions(argc,argv);
|
|
|
|
argc -= firstarg;
|
|
|
|
argv += firstarg;
|
|
|
|
|
2011-09-15 13:28:00 -04:00
|
|
|
/* Start in latency mode if appropriate */
|
|
|
|
if (config.latency_mode) {
|
|
|
|
cliConnect(0);
|
|
|
|
latencyMode();
|
|
|
|
}
|
|
|
|
|
2010-08-04 12:36:03 -04:00
|
|
|
/* Start interactive mode when no command is provided */
|
2011-05-28 09:04:12 -04:00
|
|
|
if (argc == 0) {
|
|
|
|
/* Note that in repl mode we don't abort on connection error.
|
|
|
|
* A new attempt will be performed for every command send. */
|
|
|
|
cliConnect(0);
|
|
|
|
repl();
|
|
|
|
}
|
|
|
|
|
2010-08-25 08:48:50 -04:00
|
|
|
/* Otherwise, we have some arguments to execute */
|
2011-05-28 09:04:12 -04:00
|
|
|
if (cliConnect(0) != REDIS_OK) exit(1);
|
2010-08-25 08:48:50 -04:00
|
|
|
return noninteractive(argc,convertToSds(argc,argv));
|
2009-03-22 05:30:00 -04:00
|
|
|
}
|