]> git.saurik.com Git - redis.git/blob - src/redis-cli.c
3b3ef50442e614d5ce109f4a944512b0c5dbdd0a
[redis.git] / src / redis-cli.c
1 /* Redis CLI (command line interface)
2 *
3 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
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.
17 *
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.
29 */
30
31 #include "fmacros.h"
32 #include "version.h"
33
34 #include <stdio.h>
35 #include <string.h>
36 #include <stdlib.h>
37 #include <unistd.h>
38 #include <ctype.h>
39 #include <errno.h>
40 #include <sys/stat.h>
41 #include <sys/time.h>
42 #include <assert.h>
43
44 #include "hiredis.h"
45 #include "sds.h"
46 #include "zmalloc.h"
47 #include "linenoise.h"
48 #include "help.h"
49
50 #define REDIS_NOTUSED(V) ((void) V)
51
52 static redisContext *context;
53 static struct config {
54 char *hostip;
55 int hostport;
56 char *hostsocket;
57 long repeat;
58 long interval;
59 int dbnum;
60 int interactive;
61 int shutdown;
62 int monitor_mode;
63 int pubsub_mode;
64 int latency_mode;
65 int cluster_mode;
66 int cluster_reissue_command;
67 int slave_mode;
68 int stdinarg; /* get last arg from stdin. (-x option) */
69 char *auth;
70 int raw_output; /* output mode per command */
71 sds mb_delim;
72 char prompt[128];
73 char *eval;
74 } config;
75
76 static void usage();
77 char *redisGitSHA1(void);
78 char *redisGitDirty(void);
79
80 /*------------------------------------------------------------------------------
81 * Utility functions
82 *--------------------------------------------------------------------------- */
83
84 static long long mstime(void) {
85 struct timeval tv;
86 long long mst;
87
88 gettimeofday(&tv, NULL);
89 mst = ((long)tv.tv_sec)*1000;
90 mst += tv.tv_usec/1000;
91 return mst;
92 }
93
94 static void cliRefreshPrompt(void) {
95 int len;
96
97 if (config.hostsocket != NULL)
98 len = snprintf(config.prompt,sizeof(config.prompt),"redis %s",
99 config.hostsocket);
100 else
101 len = snprintf(config.prompt,sizeof(config.prompt),"redis %s:%d",
102 config.hostip, config.hostport);
103 /* Add [dbnum] if needed */
104 if (config.dbnum != 0)
105 len += snprintf(config.prompt+len,sizeof(config.prompt)-len,"[%d]",
106 config.dbnum);
107 snprintf(config.prompt+len,sizeof(config.prompt)-len,"> ");
108 }
109
110 /*------------------------------------------------------------------------------
111 * Help functions
112 *--------------------------------------------------------------------------- */
113
114 #define CLI_HELP_COMMAND 1
115 #define CLI_HELP_GROUP 2
116
117 typedef struct {
118 int type;
119 int argc;
120 sds *argv;
121 sds full;
122
123 /* Only used for help on commands */
124 struct commandHelp *org;
125 } helpEntry;
126
127 static helpEntry *helpEntries;
128 static int helpEntriesLen;
129
130 static sds cliVersion() {
131 sds version;
132 version = sdscatprintf(sdsempty(), "%s", REDIS_VERSION);
133
134 /* Add git commit and working tree status when available */
135 if (strtoll(redisGitSHA1(),NULL,16)) {
136 version = sdscatprintf(version, " (git:%s", redisGitSHA1());
137 if (strtoll(redisGitDirty(),NULL,10))
138 version = sdscatprintf(version, "-dirty");
139 version = sdscat(version, ")");
140 }
141 return version;
142 }
143
144 static void cliInitHelp() {
145 int commandslen = sizeof(commandHelp)/sizeof(struct commandHelp);
146 int groupslen = sizeof(commandGroups)/sizeof(char*);
147 int i, len, pos = 0;
148 helpEntry tmp;
149
150 helpEntriesLen = len = commandslen+groupslen;
151 helpEntries = malloc(sizeof(helpEntry)*len);
152
153 for (i = 0; i < groupslen; i++) {
154 tmp.argc = 1;
155 tmp.argv = malloc(sizeof(sds));
156 tmp.argv[0] = sdscatprintf(sdsempty(),"@%s",commandGroups[i]);
157 tmp.full = tmp.argv[0];
158 tmp.type = CLI_HELP_GROUP;
159 tmp.org = NULL;
160 helpEntries[pos++] = tmp;
161 }
162
163 for (i = 0; i < commandslen; i++) {
164 tmp.argv = sdssplitargs(commandHelp[i].name,&tmp.argc);
165 tmp.full = sdsnew(commandHelp[i].name);
166 tmp.type = CLI_HELP_COMMAND;
167 tmp.org = &commandHelp[i];
168 helpEntries[pos++] = tmp;
169 }
170 }
171
172 /* Output command help to stdout. */
173 static void cliOutputCommandHelp(struct commandHelp *help, int group) {
174 printf("\r\n \x1b[1m%s\x1b[0m \x1b[90m%s\x1b[0m\r\n", help->name, help->params);
175 printf(" \x1b[33msummary:\x1b[0m %s\r\n", help->summary);
176 printf(" \x1b[33msince:\x1b[0m %s\r\n", help->since);
177 if (group) {
178 printf(" \x1b[33mgroup:\x1b[0m %s\r\n", commandGroups[help->group]);
179 }
180 }
181
182 /* Print generic help. */
183 static void cliOutputGenericHelp() {
184 sds version = cliVersion();
185 printf(
186 "redis-cli %s\r\n"
187 "Type: \"help @<group>\" to get a list of commands in <group>\r\n"
188 " \"help <command>\" for help on <command>\r\n"
189 " \"help <tab>\" to get a list of possible help topics\r\n"
190 " \"quit\" to exit\r\n",
191 version
192 );
193 sdsfree(version);
194 }
195
196 /* Output all command help, filtering by group or command name. */
197 static void cliOutputHelp(int argc, char **argv) {
198 int i, j, len;
199 int group = -1;
200 helpEntry *entry;
201 struct commandHelp *help;
202
203 if (argc == 0) {
204 cliOutputGenericHelp();
205 return;
206 } else if (argc > 0 && argv[0][0] == '@') {
207 len = sizeof(commandGroups)/sizeof(char*);
208 for (i = 0; i < len; i++) {
209 if (strcasecmp(argv[0]+1,commandGroups[i]) == 0) {
210 group = i;
211 break;
212 }
213 }
214 }
215
216 assert(argc > 0);
217 for (i = 0; i < helpEntriesLen; i++) {
218 entry = &helpEntries[i];
219 if (entry->type != CLI_HELP_COMMAND) continue;
220
221 help = entry->org;
222 if (group == -1) {
223 /* Compare all arguments */
224 if (argc == entry->argc) {
225 for (j = 0; j < argc; j++) {
226 if (strcasecmp(argv[j],entry->argv[j]) != 0) break;
227 }
228 if (j == argc) {
229 cliOutputCommandHelp(help,1);
230 }
231 }
232 } else {
233 if (group == help->group) {
234 cliOutputCommandHelp(help,0);
235 }
236 }
237 }
238 printf("\r\n");
239 }
240
241 static void completionCallback(const char *buf, linenoiseCompletions *lc) {
242 size_t startpos = 0;
243 int mask;
244 int i;
245 size_t matchlen;
246 sds tmp;
247
248 if (strncasecmp(buf,"help ",5) == 0) {
249 startpos = 5;
250 while (isspace(buf[startpos])) startpos++;
251 mask = CLI_HELP_COMMAND | CLI_HELP_GROUP;
252 } else {
253 mask = CLI_HELP_COMMAND;
254 }
255
256 for (i = 0; i < helpEntriesLen; i++) {
257 if (!(helpEntries[i].type & mask)) continue;
258
259 matchlen = strlen(buf+startpos);
260 if (strncasecmp(buf+startpos,helpEntries[i].full,matchlen) == 0) {
261 tmp = sdsnewlen(buf,startpos);
262 tmp = sdscat(tmp,helpEntries[i].full);
263 linenoiseAddCompletion(lc,tmp);
264 sdsfree(tmp);
265 }
266 }
267 }
268
269 /*------------------------------------------------------------------------------
270 * Networking / parsing
271 *--------------------------------------------------------------------------- */
272
273 /* Send AUTH command to the server */
274 static int cliAuth() {
275 redisReply *reply;
276 if (config.auth == NULL) return REDIS_OK;
277
278 reply = redisCommand(context,"AUTH %s",config.auth);
279 if (reply != NULL) {
280 freeReplyObject(reply);
281 return REDIS_OK;
282 }
283 return REDIS_ERR;
284 }
285
286 /* Send SELECT dbnum to the server */
287 static int cliSelect() {
288 redisReply *reply;
289 if (config.dbnum == 0) return REDIS_OK;
290
291 reply = redisCommand(context,"SELECT %d",config.dbnum);
292 if (reply != NULL) {
293 freeReplyObject(reply);
294 return REDIS_OK;
295 }
296 return REDIS_ERR;
297 }
298
299 /* Connect to the client. If force is not zero the connection is performed
300 * even if there is already a connected socket. */
301 static int cliConnect(int force) {
302 if (context == NULL || force) {
303 if (context != NULL)
304 redisFree(context);
305
306 if (config.hostsocket == NULL) {
307 context = redisConnect(config.hostip,config.hostport);
308 } else {
309 context = redisConnectUnix(config.hostsocket);
310 }
311
312 if (context->err) {
313 fprintf(stderr,"Could not connect to Redis at ");
314 if (config.hostsocket == NULL)
315 fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,context->errstr);
316 else
317 fprintf(stderr,"%s: %s\n",config.hostsocket,context->errstr);
318 redisFree(context);
319 context = NULL;
320 return REDIS_ERR;
321 }
322
323 /* Do AUTH and select the right DB. */
324 if (cliAuth() != REDIS_OK)
325 return REDIS_ERR;
326 if (cliSelect() != REDIS_OK)
327 return REDIS_ERR;
328 }
329 return REDIS_OK;
330 }
331
332 static void cliPrintContextError() {
333 if (context == NULL) return;
334 fprintf(stderr,"Error: %s\n",context->errstr);
335 }
336
337 static sds cliFormatReplyTTY(redisReply *r, char *prefix) {
338 sds out = sdsempty();
339 switch (r->type) {
340 case REDIS_REPLY_ERROR:
341 out = sdscatprintf(out,"(error) %s\n", r->str);
342 break;
343 case REDIS_REPLY_STATUS:
344 out = sdscat(out,r->str);
345 out = sdscat(out,"\n");
346 break;
347 case REDIS_REPLY_INTEGER:
348 out = sdscatprintf(out,"(integer) %lld\n",r->integer);
349 break;
350 case REDIS_REPLY_STRING:
351 /* If you are producing output for the standard output we want
352 * a more interesting output with quoted characters and so forth */
353 out = sdscatrepr(out,r->str,r->len);
354 out = sdscat(out,"\n");
355 break;
356 case REDIS_REPLY_NIL:
357 out = sdscat(out,"(nil)\n");
358 break;
359 case REDIS_REPLY_ARRAY:
360 if (r->elements == 0) {
361 out = sdscat(out,"(empty list or set)\n");
362 } else {
363 unsigned int i, idxlen = 0;
364 char _prefixlen[16];
365 char _prefixfmt[16];
366 sds _prefix;
367 sds tmp;
368
369 /* Calculate chars needed to represent the largest index */
370 i = r->elements;
371 do {
372 idxlen++;
373 i /= 10;
374 } while(i);
375
376 /* Prefix for nested multi bulks should grow with idxlen+2 spaces */
377 memset(_prefixlen,' ',idxlen+2);
378 _prefixlen[idxlen+2] = '\0';
379 _prefix = sdscat(sdsnew(prefix),_prefixlen);
380
381 /* Setup prefix format for every entry */
382 snprintf(_prefixfmt,sizeof(_prefixfmt),"%%s%%%dd) ",idxlen);
383
384 for (i = 0; i < r->elements; i++) {
385 /* Don't use the prefix for the first element, as the parent
386 * caller already prepended the index number. */
387 out = sdscatprintf(out,_prefixfmt,i == 0 ? "" : prefix,i+1);
388
389 /* Format the multi bulk entry */
390 tmp = cliFormatReplyTTY(r->element[i],_prefix);
391 out = sdscatlen(out,tmp,sdslen(tmp));
392 sdsfree(tmp);
393 }
394 sdsfree(_prefix);
395 }
396 break;
397 default:
398 fprintf(stderr,"Unknown reply type: %d\n", r->type);
399 exit(1);
400 }
401 return out;
402 }
403
404 static sds cliFormatReplyRaw(redisReply *r) {
405 sds out = sdsempty(), tmp;
406 size_t i;
407
408 switch (r->type) {
409 case REDIS_REPLY_NIL:
410 /* Nothing... */
411 break;
412 case REDIS_REPLY_ERROR:
413 out = sdscatlen(out,r->str,r->len);
414 out = sdscatlen(out,"\n",1);
415 break;
416 case REDIS_REPLY_STATUS:
417 case REDIS_REPLY_STRING:
418 out = sdscatlen(out,r->str,r->len);
419 break;
420 case REDIS_REPLY_INTEGER:
421 out = sdscatprintf(out,"%lld",r->integer);
422 break;
423 case REDIS_REPLY_ARRAY:
424 for (i = 0; i < r->elements; i++) {
425 if (i > 0) out = sdscat(out,config.mb_delim);
426 tmp = cliFormatReplyRaw(r->element[i]);
427 out = sdscatlen(out,tmp,sdslen(tmp));
428 sdsfree(tmp);
429 }
430 break;
431 default:
432 fprintf(stderr,"Unknown reply type: %d\n", r->type);
433 exit(1);
434 }
435 return out;
436 }
437
438 static int cliReadReply(int output_raw_strings) {
439 void *_reply;
440 redisReply *reply;
441 sds out;
442 int output = 1;
443
444 if (redisGetReply(context,&_reply) != REDIS_OK) {
445 if (config.shutdown)
446 return REDIS_OK;
447 if (config.interactive) {
448 /* Filter cases where we should reconnect */
449 if (context->err == REDIS_ERR_IO && errno == ECONNRESET)
450 return REDIS_ERR;
451 if (context->err == REDIS_ERR_EOF)
452 return REDIS_ERR;
453 }
454 cliPrintContextError();
455 exit(1);
456 return REDIS_ERR; /* avoid compiler warning */
457 }
458
459 reply = (redisReply*)_reply;
460
461 /* Check if we need to connect to a different node and reissue the request. */
462 if (config.cluster_mode && reply->type == REDIS_REPLY_ERROR &&
463 (!strncmp(reply->str,"MOVED",5) || !strcmp(reply->str,"ASK")))
464 {
465 char *p = reply->str, *s;
466 int slot;
467
468 output = 0;
469 /* Comments show the position of the pointer as:
470 *
471 * [S] for pointer 's'
472 * [P] for pointer 'p'
473 */
474 s = strchr(p,' '); /* MOVED[S]3999 127.0.0.1:6381 */
475 p = strchr(s+1,' '); /* MOVED[S]3999[P]127.0.0.1:6381 */
476 *p = '\0';
477 slot = atoi(s+1);
478 s = strchr(p+1,':'); /* MOVED 3999[P]127.0.0.1[S]6381 */
479 *s = '\0';
480 sdsfree(config.hostip);
481 config.hostip = sdsnew(p+1);
482 config.hostport = atoi(s+1);
483 if (config.interactive)
484 printf("-> Redirected to slot [%d] located at %s:%d\n",
485 slot, config.hostip, config.hostport);
486 config.cluster_reissue_command = 1;
487 }
488
489 if (output) {
490 if (output_raw_strings) {
491 out = cliFormatReplyRaw(reply);
492 } else {
493 if (config.raw_output) {
494 out = cliFormatReplyRaw(reply);
495 out = sdscat(out,"\n");
496 } else {
497 out = cliFormatReplyTTY(reply,"");
498 }
499 }
500 fwrite(out,sdslen(out),1,stdout);
501 sdsfree(out);
502 }
503 freeReplyObject(reply);
504 return REDIS_OK;
505 }
506
507 static int cliSendCommand(int argc, char **argv, int repeat) {
508 char *command = argv[0];
509 size_t *argvlen;
510 int j, output_raw;
511
512 if (!strcasecmp(command,"help") || !strcasecmp(command,"?")) {
513 cliOutputHelp(--argc, ++argv);
514 return REDIS_OK;
515 }
516
517 if (context == NULL) return REDIS_ERR;
518
519 output_raw = 0;
520 if (!strcasecmp(command,"info") ||
521 (argc == 2 && !strcasecmp(command,"cluster") &&
522 (!strcasecmp(argv[1],"nodes") ||
523 !strcasecmp(argv[1],"info"))) ||
524 (argc == 2 && !strcasecmp(command,"client") &&
525 !strcasecmp(argv[1],"list")))
526
527 {
528 output_raw = 1;
529 }
530
531 if (!strcasecmp(command,"shutdown")) config.shutdown = 1;
532 if (!strcasecmp(command,"monitor")) config.monitor_mode = 1;
533 if (!strcasecmp(command,"subscribe") ||
534 !strcasecmp(command,"psubscribe")) config.pubsub_mode = 1;
535
536 /* Setup argument length */
537 argvlen = malloc(argc*sizeof(size_t));
538 for (j = 0; j < argc; j++)
539 argvlen[j] = sdslen(argv[j]);
540
541 while(repeat--) {
542 redisAppendCommandArgv(context,argc,(const char**)argv,argvlen);
543 while (config.monitor_mode) {
544 if (cliReadReply(output_raw) != REDIS_OK) exit(1);
545 fflush(stdout);
546 }
547
548 if (config.pubsub_mode) {
549 if (!config.raw_output)
550 printf("Reading messages... (press Ctrl-C to quit)\n");
551 while (1) {
552 if (cliReadReply(output_raw) != REDIS_OK) exit(1);
553 }
554 }
555
556 if (cliReadReply(output_raw) != REDIS_OK) {
557 free(argvlen);
558 return REDIS_ERR;
559 } else {
560 /* Store database number when SELECT was successfully executed. */
561 if (!strcasecmp(command,"select") && argc == 2) {
562 config.dbnum = atoi(argv[1]);
563 cliRefreshPrompt();
564 }
565 }
566 if (config.interval) usleep(config.interval);
567 fflush(stdout); /* Make it grep friendly */
568 }
569
570 free(argvlen);
571 return REDIS_OK;
572 }
573
574 /*------------------------------------------------------------------------------
575 * User interface
576 *--------------------------------------------------------------------------- */
577
578 static int parseOptions(int argc, char **argv) {
579 int i;
580
581 for (i = 1; i < argc; i++) {
582 int lastarg = i==argc-1;
583
584 if (!strcmp(argv[i],"-h") && !lastarg) {
585 sdsfree(config.hostip);
586 config.hostip = sdsnew(argv[++i]);
587 } else if (!strcmp(argv[i],"-h") && lastarg) {
588 usage();
589 } else if (!strcmp(argv[i],"--help")) {
590 usage();
591 } else if (!strcmp(argv[i],"-x")) {
592 config.stdinarg = 1;
593 } else if (!strcmp(argv[i],"-p") && !lastarg) {
594 config.hostport = atoi(argv[++i]);
595 } else if (!strcmp(argv[i],"-s") && !lastarg) {
596 config.hostsocket = argv[++i];
597 } else if (!strcmp(argv[i],"-r") && !lastarg) {
598 config.repeat = strtoll(argv[++i],NULL,10);
599 } else if (!strcmp(argv[i],"-i") && !lastarg) {
600 double seconds = atof(argv[++i]);
601 config.interval = seconds*1000000;
602 } else if (!strcmp(argv[i],"-n") && !lastarg) {
603 config.dbnum = atoi(argv[++i]);
604 } else if (!strcmp(argv[i],"-a") && !lastarg) {
605 config.auth = argv[++i];
606 } else if (!strcmp(argv[i],"--raw")) {
607 config.raw_output = 1;
608 } else if (!strcmp(argv[i],"--latency")) {
609 config.latency_mode = 1;
610 } else if (!strcmp(argv[i],"--slave")) {
611 config.slave_mode = 1;
612 } else if (!strcmp(argv[i],"--eval") && !lastarg) {
613 config.eval = argv[++i];
614 } else if (!strcmp(argv[i],"-c")) {
615 config.cluster_mode = 1;
616 } else if (!strcmp(argv[i],"-d") && !lastarg) {
617 sdsfree(config.mb_delim);
618 config.mb_delim = sdsnew(argv[++i]);
619 } else if (!strcmp(argv[i],"-v") || !strcmp(argv[i], "--version")) {
620 sds version = cliVersion();
621 printf("redis-cli %s\n", version);
622 sdsfree(version);
623 exit(0);
624 } else {
625 break;
626 }
627 }
628 return i;
629 }
630
631 static sds readArgFromStdin(void) {
632 char buf[1024];
633 sds arg = sdsempty();
634
635 while(1) {
636 int nread = read(fileno(stdin),buf,1024);
637
638 if (nread == 0) break;
639 else if (nread == -1) {
640 perror("Reading from standard input");
641 exit(1);
642 }
643 arg = sdscatlen(arg,buf,nread);
644 }
645 return arg;
646 }
647
648 static void usage() {
649 sds version = cliVersion();
650 fprintf(stderr,
651 "redis-cli %s\n"
652 "\n"
653 "Usage: redis-cli [OPTIONS] [cmd [arg [arg ...]]]\n"
654 " -h <hostname> Server hostname (default: 127.0.0.1)\n"
655 " -p <port> Server port (default: 6379)\n"
656 " -s <socket> Server socket (overrides hostname and port)\n"
657 " -a <password> Password to use when connecting to the server\n"
658 " -r <repeat> Execute specified command N times\n"
659 " -i <interval> When -r is used, waits <interval> seconds per command.\n"
660 " It is possible to specify sub-second times like -i 0.1.\n"
661 " -n <db> Database number\n"
662 " -x Read last argument from STDIN\n"
663 " -d <delimiter> Multi-bulk delimiter in for raw formatting (default: \\n)\n"
664 " -c Enable cluster mode (follow -ASK and -MOVED redirections)\n"
665 " --raw Use raw formatting for replies (default when STDOUT is not a tty)\n"
666 " --latency Enter a special mode continuously sampling latency.\n"
667 " --slave Simulate a slave showing commands received from the master.\n"
668 " --eval <file> Send an EVAL command using the Lua script at <file>.\n"
669 " --help Output this help and exit\n"
670 " --version Output version and exit\n"
671 "\n"
672 "Examples:\n"
673 " cat /etc/passwd | redis-cli -x set mypasswd\n"
674 " redis-cli get mypasswd\n"
675 " redis-cli -r 100 lpush mylist x\n"
676 " redis-cli -r 100 -i 1 info | grep used_memory_human:\n"
677 " redis-cli --eval myscript.lua key1 key2 , arg1 arg2 arg3\n"
678 " (Note: when using --eval the comma separates KEYS[] from ARGV[] items)\n"
679 "\n"
680 "When no command is given, redis-cli starts in interactive mode.\n"
681 "Type \"help\" in interactive mode for information on available commands.\n"
682 "\n",
683 version);
684 sdsfree(version);
685 exit(1);
686 }
687
688 /* Turn the plain C strings into Sds strings */
689 static char **convertToSds(int count, char** args) {
690 int j;
691 char **sds = zmalloc(sizeof(char*)*count);
692
693 for(j = 0; j < count; j++)
694 sds[j] = sdsnew(args[j]);
695
696 return sds;
697 }
698
699 #define LINE_BUFLEN 4096
700 static void repl() {
701 sds historyfile = NULL;
702 int history = 0;
703 char *line;
704 int argc;
705 sds *argv;
706
707 config.interactive = 1;
708 linenoiseSetCompletionCallback(completionCallback);
709
710 /* Only use history when stdin is a tty. */
711 if (isatty(fileno(stdin))) {
712 history = 1;
713
714 if (getenv("HOME") != NULL) {
715 historyfile = sdscatprintf(sdsempty(),"%s/.rediscli_history",getenv("HOME"));
716 linenoiseHistoryLoad(historyfile);
717 }
718 }
719
720 cliRefreshPrompt();
721 while((line = linenoise(context ? config.prompt : "not connected> ")) != NULL) {
722 if (line[0] != '\0') {
723 argv = sdssplitargs(line,&argc);
724 if (history) linenoiseHistoryAdd(line);
725 if (historyfile) linenoiseHistorySave(historyfile);
726
727 if (argv == NULL) {
728 printf("Invalid argument(s)\n");
729 free(line);
730 continue;
731 } else if (argc > 0) {
732 if (strcasecmp(argv[0],"quit") == 0 ||
733 strcasecmp(argv[0],"exit") == 0)
734 {
735 exit(0);
736 } else if (argc == 3 && !strcasecmp(argv[0],"connect")) {
737 sdsfree(config.hostip);
738 config.hostip = sdsnew(argv[1]);
739 config.hostport = atoi(argv[2]);
740 cliConnect(1);
741 } else if (argc == 1 && !strcasecmp(argv[0],"clear")) {
742 linenoiseClearScreen();
743 } else {
744 long long start_time = mstime(), elapsed;
745 int repeat, skipargs = 0;
746
747 repeat = atoi(argv[0]);
748 if (argc > 1 && repeat) {
749 skipargs = 1;
750 } else {
751 repeat = 1;
752 }
753
754 while (1) {
755 config.cluster_reissue_command = 0;
756 if (cliSendCommand(argc-skipargs,argv+skipargs,repeat)
757 != REDIS_OK)
758 {
759 cliConnect(1);
760
761 /* If we still cannot send the command print error.
762 * We'll try to reconnect the next time. */
763 if (cliSendCommand(argc-skipargs,argv+skipargs,repeat)
764 != REDIS_OK)
765 cliPrintContextError();
766 }
767 /* Issue the command again if we got redirected in cluster mode */
768 if (config.cluster_mode && config.cluster_reissue_command) {
769 cliConnect(1);
770 } else {
771 break;
772 }
773 }
774 elapsed = mstime()-start_time;
775 if (elapsed >= 500) {
776 printf("(%.2fs)\n",(double)elapsed/1000);
777 }
778 }
779 }
780 /* Free the argument vector */
781 while(argc--) sdsfree(argv[argc]);
782 zfree(argv);
783 }
784 /* linenoise() returns malloc-ed lines like readline() */
785 free(line);
786 }
787 exit(0);
788 }
789
790 static int noninteractive(int argc, char **argv) {
791 int retval = 0;
792 if (config.stdinarg) {
793 argv = zrealloc(argv, (argc+1)*sizeof(char*));
794 argv[argc] = readArgFromStdin();
795 retval = cliSendCommand(argc+1, argv, config.repeat);
796 } else {
797 /* stdin is probably a tty, can be tested with S_ISCHR(s.st_mode) */
798 retval = cliSendCommand(argc, argv, config.repeat);
799 }
800 return retval;
801 }
802
803 static int evalMode(int argc, char **argv) {
804 sds script = sdsempty();
805 FILE *fp;
806 char buf[1024];
807 size_t nread;
808 char **argv2;
809 int j, got_comma = 0, keys = 0;
810
811 /* Load the script from the file, as an sds string. */
812 fp = fopen(config.eval,"r");
813 if (!fp) {
814 fprintf(stderr,
815 "Can't open file '%s': %s\n", config.eval, strerror(errno));
816 exit(1);
817 }
818 while((nread = fread(buf,1,sizeof(buf),fp)) != 0) {
819 script = sdscatlen(script,buf,nread);
820 }
821 fclose(fp);
822
823 /* Create our argument vector */
824 argv2 = zmalloc(sizeof(sds)*(argc+3));
825 argv2[0] = sdsnew("EVAL");
826 argv2[1] = script;
827 for (j = 0; j < argc; j++) {
828 if (!got_comma && argv[j][0] == ',' && argv[j][1] == 0) {
829 got_comma = 1;
830 continue;
831 }
832 argv2[j+3-got_comma] = sdsnew(argv[j]);
833 if (!got_comma) keys++;
834 }
835 argv2[2] = sdscatprintf(sdsempty(),"%d",keys);
836
837 /* Call it */
838 return cliSendCommand(argc+3-got_comma, argv2, config.repeat);
839 }
840
841 static void latencyMode(void) {
842 redisReply *reply;
843 long long start, latency, min, max, tot, count = 0;
844 double avg;
845
846 if (!context) exit(1);
847 while(1) {
848 start = mstime();
849 reply = redisCommand(context,"PING");
850 if (reply == NULL) {
851 fprintf(stderr,"\nI/O error\n");
852 exit(1);
853 }
854 latency = mstime()-start;
855 freeReplyObject(reply);
856 count++;
857 if (count == 1) {
858 min = max = tot = latency;
859 avg = (double) latency;
860 } else {
861 if (latency < min) min = latency;
862 if (latency > max) max = latency;
863 tot += latency;
864 avg = (double) tot/count;
865 }
866 printf("\x1b[0G\x1b[2Kmin: %lld, max: %lld, avg: %.2f (%lld samples)",
867 min, max, avg, count);
868 fflush(stdout);
869 usleep(10000);
870 }
871 }
872
873 static void slaveMode(void) {
874 /* To start we need to send the SYNC command and return the payload.
875 * The hiredis client lib does not understand this part of the protocol
876 * and we don't want to mess with its buffers, so everything is performed
877 * using direct low-level I/O. */
878 int fd = context->fd;
879 char buf[1024], *p;
880 ssize_t nread;
881 unsigned long long payload;
882
883 /* Send the SYNC command. */
884 write(fd,"SYNC\r\n",6);
885
886 /* Read $<payload>\r\n, making sure to read just up to "\n" */
887 p = buf;
888 while(1) {
889 nread = read(fd,p,1);
890 if (nread <= 0) {
891 fprintf(stderr,"Error reading bulk length while SYNCing\n");
892 exit(1);
893 }
894 if (*p == '\n') break;
895 p++;
896 }
897 *p = '\0';
898 payload = strtoull(buf+1,NULL,10);
899 if (!config.raw_output)
900 printf("SYNC with master, discarding %lld bytes of bulk tranfer...\n",
901 payload);
902
903 /* Discard the payload. */
904 while(payload) {
905 nread = read(fd,buf,(payload > sizeof(buf)) ? sizeof(buf) : payload);
906 if (nread <= 0) {
907 fprintf(stderr,"Error reading RDB payload while SYNCing\n");
908 exit(1);
909 }
910 payload -= nread;
911 }
912 if (!config.raw_output) printf("SYNC done. Logging commands from master.\n");
913
914 /* Now we can use the hiredis to read the incoming protocol. */
915 while (cliReadReply(config.raw_output) == REDIS_OK);
916 }
917
918 int main(int argc, char **argv) {
919 int firstarg;
920
921 config.hostip = sdsnew("127.0.0.1");
922 config.hostport = 6379;
923 config.hostsocket = NULL;
924 config.repeat = 1;
925 config.interval = 0;
926 config.dbnum = 0;
927 config.interactive = 0;
928 config.shutdown = 0;
929 config.monitor_mode = 0;
930 config.pubsub_mode = 0;
931 config.latency_mode = 0;
932 config.cluster_mode = 0;
933 config.stdinarg = 0;
934 config.auth = NULL;
935 config.eval = NULL;
936 config.raw_output = !isatty(fileno(stdout)) && (getenv("FAKETTY") == NULL);
937 config.mb_delim = sdsnew("\n");
938 cliInitHelp();
939
940 firstarg = parseOptions(argc,argv);
941 argc -= firstarg;
942 argv += firstarg;
943
944 /* Start in latency mode if appropriate */
945 if (config.latency_mode) {
946 cliConnect(0);
947 latencyMode();
948 }
949
950 /* Start in slave mode if appropriate */
951 if (config.slave_mode) {
952 cliConnect(0);
953 slaveMode();
954 }
955
956 /* Start interactive mode when no command is provided */
957 if (argc == 0 && !config.eval) {
958 /* Note that in repl mode we don't abort on connection error.
959 * A new attempt will be performed for every command send. */
960 cliConnect(0);
961 repl();
962 }
963
964 /* Otherwise, we have some arguments to execute */
965 if (cliConnect(0) != REDIS_OK) exit(1);
966 if (config.eval) {
967 return evalMode(argc,argv);
968 } else {
969 return noninteractive(argc,convertToSds(argc,argv));
970 }
971 }