]>
git.saurik.com Git - redis.git/blob - src/redis-cli.c
1 /* Redis CLI (command line interface)
3 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
9 * * Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Redis nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without
16 * specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
46 #include "linenoise.h"
48 #define REDIS_NOTUSED(V) ((void) V)
50 static redisContext
*context
;
51 static struct config
{
61 int raw_output
; /* output mode per command */
62 int tty
; /* flag for default output format */
63 int stdinarg
; /* get last arg from stdin. (-x option) */
70 char *redisGitSHA1(void);
72 /*------------------------------------------------------------------------------
74 *--------------------------------------------------------------------------- */
76 static long long mstime(void) {
80 gettimeofday(&tv
, NULL
);
81 mst
= ((long)tv
.tv_sec
)*1000;
82 mst
+= tv
.tv_usec
/1000;
86 /*------------------------------------------------------------------------------
87 * Networking / parsing
88 *--------------------------------------------------------------------------- */
90 /* Send AUTH command to the server */
91 static int cliAuth() {
93 if (config
.auth
== NULL
) return REDIS_OK
;
95 reply
= redisCommand(context
,"AUTH %s",config
.auth
);
97 freeReplyObject(reply
);
103 /* Send SELECT dbnum to the server */
104 static int cliSelect() {
107 if (config
.dbnum
== 0) return REDIS_OK
;
109 snprintf(dbnum
,sizeof(dbnum
),"%d",config
.dbnum
);
110 reply
= redisCommand(context
,"SELECT %s",dbnum
);
112 freeReplyObject(reply
);
118 /* Connect to the client. If force is not zero the connection is performed
119 * even if there is already a connected socket. */
120 static int cliConnect(int force
) {
121 if (context
== NULL
|| force
) {
125 if (config
.hostsocket
== NULL
) {
126 context
= redisConnect(config
.hostip
,config
.hostport
);
128 context
= redisConnectUnix(config
.hostsocket
);
132 fprintf(stderr
,"Could not connect to Redis at ");
133 if (config
.hostsocket
== NULL
)
134 fprintf(stderr
,"%s:%d: %s\n",config
.hostip
,config
.hostport
,context
->errstr
);
136 fprintf(stderr
,"%s: %s\n",config
.hostsocket
,context
->errstr
);
142 /* Do AUTH and select the right DB. */
143 if (cliAuth() != REDIS_OK
)
145 if (cliSelect() != REDIS_OK
)
151 static void cliPrintContextErrorAndExit() {
152 if (context
== NULL
) return;
153 fprintf(stderr
,"Error: %s\n",context
->errstr
);
157 static sds
cliFormatReply(redisReply
*r
, char *prefix
) {
158 sds out
= sdsempty();
160 case REDIS_REPLY_ERROR
:
161 if (config
.tty
) out
= sdscat(out
,"(error) ");
162 out
= sdscatprintf(out
,"%s\n", r
->str
);
164 case REDIS_REPLY_STATUS
:
165 out
= sdscat(out
,r
->str
);
166 out
= sdscat(out
,"\n");
168 case REDIS_REPLY_INTEGER
:
169 if (config
.tty
) out
= sdscat(out
,"(integer) ");
170 out
= sdscatprintf(out
,"%lld\n",r
->integer
);
172 case REDIS_REPLY_STRING
:
173 if (config
.raw_output
|| !config
.tty
) {
174 out
= sdscatlen(out
,r
->str
,r
->len
);
176 /* If you are producing output for the standard output we want
177 * a more interesting output with quoted characters and so forth */
178 out
= sdscatrepr(out
,r
->str
,r
->len
);
179 out
= sdscat(out
,"\n");
182 case REDIS_REPLY_NIL
:
183 out
= sdscat(out
,"(nil)\n");
185 case REDIS_REPLY_ARRAY
:
186 if (r
->elements
== 0) {
187 out
= sdscat(out
,"(empty list or set)\n");
189 unsigned int i
, idxlen
= 0;
195 /* Calculate chars needed to represent the largest index */
202 /* Prefix for nested multi bulks should grow with idxlen+2 spaces */
203 memset(_prefixlen
,' ',idxlen
+2);
204 _prefixlen
[idxlen
+2] = '\0';
205 _prefix
= sdscat(sdsnew(prefix
),_prefixlen
);
207 /* Setup prefix format for every entry */
208 snprintf(_prefixfmt
,sizeof(_prefixfmt
),"%%s%%%dd) ",idxlen
);
210 for (i
= 0; i
< r
->elements
; i
++) {
211 /* Don't use the prefix for the first element, as the parent
212 * caller already prepended the index number. */
213 out
= sdscatprintf(out
,_prefixfmt
,i
== 0 ? "" : prefix
,i
+1);
215 /* Format the multi bulk entry */
216 tmp
= cliFormatReply(r
->element
[i
],_prefix
);
217 out
= sdscatlen(out
,tmp
,sdslen(tmp
));
224 fprintf(stderr
,"Unknown reply type: %d\n", r
->type
);
230 static int cliReadReply() {
234 if (redisGetReply(context
,(void**)&reply
) != REDIS_OK
) {
237 if (config
.interactive
) {
238 /* Filter cases where we should reconnect */
239 if (context
->err
== REDIS_ERR_IO
&& errno
== ECONNRESET
)
241 if (context
->err
== REDIS_ERR_EOF
)
244 cliPrintContextErrorAndExit();
245 return REDIS_ERR
; /* avoid compiler warning */
248 out
= cliFormatReply(reply
,"");
249 freeReplyObject(reply
);
250 fwrite(out
,sdslen(out
),1,stdout
);
255 static void showInteractiveHelp(void) {
258 "Welcome to redis-cli " REDIS_VERSION
"!\n"
259 "Just type any valid Redis command to see a pretty printed output.\n"
261 "It is possible to quote strings, like in:\n"
262 " set \"my key\" \"some string \\xff\\n\"\n"
264 "You can find a list of valid Redis commands at\n"
265 " http://code.google.com/p/redis/wiki/CommandReference\n"
267 "Note: redis-cli supports line editing, use up/down arrows for history."
271 static int cliSendCommand(int argc
, char **argv
, int repeat
) {
272 char *command
= argv
[0];
276 config
.raw_output
= !strcasecmp(command
,"info");
277 if (!strcasecmp(command
,"help")) {
278 showInteractiveHelp();
281 if (!strcasecmp(command
,"shutdown")) config
.shutdown
= 1;
282 if (!strcasecmp(command
,"monitor")) config
.monitor_mode
= 1;
283 if (!strcasecmp(command
,"subscribe") ||
284 !strcasecmp(command
,"psubscribe")) config
.pubsub_mode
= 1;
286 /* Setup argument length */
287 argvlen
= malloc(argc
*sizeof(size_t));
288 for (j
= 0; j
< argc
; j
++)
289 argvlen
[j
] = sdslen(argv
[j
]);
292 redisAppendCommandArgv(context
,argc
,(const char**)argv
,argvlen
);
293 while (config
.monitor_mode
) {
294 if (cliReadReply() != REDIS_OK
) exit(1);
298 if (config
.pubsub_mode
) {
299 printf("Reading messages... (press Ctrl-C to quit)\n");
301 if (cliReadReply() != REDIS_OK
) exit(1);
305 if (cliReadReply() != REDIS_OK
)
311 /*------------------------------------------------------------------------------
313 *--------------------------------------------------------------------------- */
315 static int parseOptions(int argc
, char **argv
) {
318 for (i
= 1; i
< argc
; i
++) {
319 int lastarg
= i
==argc
-1;
321 if (!strcmp(argv
[i
],"-h") && !lastarg
) {
322 config
.hostip
= argv
[i
+1];
324 } else if (!strcmp(argv
[i
],"-h") && lastarg
) {
326 } else if (!strcmp(argv
[i
],"-x")) {
328 } else if (!strcmp(argv
[i
],"-p") && !lastarg
) {
329 config
.hostport
= atoi(argv
[i
+1]);
331 } else if (!strcmp(argv
[i
],"-s") && !lastarg
) {
332 config
.hostsocket
= argv
[i
+1];
334 } else if (!strcmp(argv
[i
],"-r") && !lastarg
) {
335 config
.repeat
= strtoll(argv
[i
+1],NULL
,10);
337 } else if (!strcmp(argv
[i
],"-n") && !lastarg
) {
338 config
.dbnum
= atoi(argv
[i
+1]);
340 } else if (!strcmp(argv
[i
],"-a") && !lastarg
) {
341 config
.auth
= argv
[i
+1];
343 } else if (!strcmp(argv
[i
],"-i")) {
345 "Starting interactive mode using -i is deprecated. Interactive mode is started\n"
346 "by default when redis-cli is executed without a command to execute.\n"
348 } else if (!strcmp(argv
[i
],"-c")) {
350 "Reading last argument from standard input using -c is deprecated.\n"
351 "When standard input is connected to a pipe or regular file, it is\n"
352 "automatically used as last argument.\n"
354 } else if (!strcmp(argv
[i
],"-v")) {
355 printf("redis-cli shipped with Redis version %s (%s)\n", REDIS_VERSION
, redisGitSHA1());
364 static sds
readArgFromStdin(void) {
366 sds arg
= sdsempty();
369 int nread
= read(fileno(stdin
),buf
,1024);
371 if (nread
== 0) break;
372 else if (nread
== -1) {
373 perror("Reading from standard input");
376 arg
= sdscatlen(arg
,buf
,nread
);
381 static void usage() {
382 fprintf(stderr
, "usage: redis-cli [-iv] [-h host] [-p port] [-s /path/to/socket] [-a authpw] [-r repeat_times] [-n db_num] cmd arg1 arg2 arg3 ... argN\n");
383 fprintf(stderr
, "usage: echo \"argN\" | redis-cli -x [options] cmd arg1 arg2 ... arg(N-1)\n\n");
384 fprintf(stderr
, "example: cat /etc/passwd | redis-cli -x set my_passwd\n");
385 fprintf(stderr
, "example: redis-cli get my_passwd\n");
386 fprintf(stderr
, "example: redis-cli -r 100 lpush mylist x\n");
387 fprintf(stderr
, "\nRun in interactive mode: redis-cli -i or just don't pass any command\n");
391 /* Turn the plain C strings into Sds strings */
392 static char **convertToSds(int count
, char** args
) {
394 char **sds
= zmalloc(sizeof(char*)*count
);
396 for(j
= 0; j
< count
; j
++)
397 sds
[j
] = sdsnew(args
[j
]);
402 #define LINE_BUFLEN 4096
408 config
.interactive
= 1;
409 while((line
= linenoise("redis> ")) != NULL
) {
410 if (line
[0] != '\0') {
411 argv
= sdssplitargs(line
,&argc
);
412 linenoiseHistoryAdd(line
);
413 if (config
.historyfile
) linenoiseHistorySave(config
.historyfile
);
415 printf("Invalid argument(s)\n");
417 } else if (argc
> 0) {
418 if (strcasecmp(argv
[0],"quit") == 0 ||
419 strcasecmp(argv
[0],"exit") == 0)
423 long long start_time
= mstime(), elapsed
;
425 if (cliSendCommand(argc
,argv
,1) != REDIS_OK
) {
426 printf("Reconnecting... ");
428 if (cliConnect(1) != REDIS_OK
) exit(1);
431 /* If we still cannot send the command,
432 * print error and abort. */
433 if (cliSendCommand(argc
,argv
,1) != REDIS_OK
)
434 cliPrintContextErrorAndExit();
436 elapsed
= mstime()-start_time
;
437 if (elapsed
>= 500) {
438 printf("(%.2fs)\n",(double)elapsed
/1000);
442 /* Free the argument vector */
443 for (j
= 0; j
< argc
; j
++)
447 /* linenoise() returns malloc-ed lines like readline() */
453 static int noninteractive(int argc
, char **argv
) {
455 if (config
.stdinarg
) {
456 argv
= zrealloc(argv
, (argc
+1)*sizeof(char*));
457 argv
[argc
] = readArgFromStdin();
458 retval
= cliSendCommand(argc
+1, argv
, config
.repeat
);
460 /* stdin is probably a tty, can be tested with S_ISCHR(s.st_mode) */
461 retval
= cliSendCommand(argc
, argv
, config
.repeat
);
466 int main(int argc
, char **argv
) {
469 config
.hostip
= "127.0.0.1";
470 config
.hostport
= 6379;
471 config
.hostsocket
= NULL
;
474 config
.interactive
= 0;
476 config
.monitor_mode
= 0;
477 config
.pubsub_mode
= 0;
478 config
.raw_output
= 0;
481 config
.historyfile
= NULL
;
482 config
.tty
= isatty(fileno(stdout
)) || (getenv("FAKETTY") != NULL
);
483 config
.mb_sep
= '\n';
485 if (getenv("HOME") != NULL
) {
486 config
.historyfile
= malloc(256);
487 snprintf(config
.historyfile
,256,"%s/.rediscli_history",getenv("HOME"));
488 linenoiseHistoryLoad(config
.historyfile
);
491 firstarg
= parseOptions(argc
,argv
);
496 if (cliConnect(0) != REDIS_OK
) exit(1);
498 /* Start interactive mode when no command is provided */
499 if (argc
== 0) repl();
500 /* Otherwise, we have some arguments to execute */
501 return noninteractive(argc
,convertToSds(argc
,argv
));