]>
Commit | Line | Data |
---|---|---|
ed9b544e | 1 | /* Redis CLI (command line interface) |
2 | * | |
12d090d2 | 3 | * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com> |
ed9b544e | 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 | ||
23d4709d | 31 | #include "fmacros.h" |
185cabda | 32 | #include "version.h" |
23d4709d | 33 | |
ed9b544e | 34 | #include <stdio.h> |
35 | #include <string.h> | |
36 | #include <stdlib.h> | |
37 | #include <unistd.h> | |
a88a2af6 | 38 | #include <ctype.h> |
c0b3d423 | 39 | #include <errno.h> |
b4b62c34 | 40 | #include <sys/stat.h> |
3ce014c7 | 41 | #include <sys/time.h> |
41945ba6 | 42 | #include <assert.h> |
ed9b544e | 43 | |
7fc4ce13 | 44 | #include "hiredis.h" |
ed9b544e | 45 | #include "sds.h" |
ed9b544e | 46 | #include "zmalloc.h" |
cf87ebf2 | 47 | #include "linenoise.h" |
5397f2b5 | 48 | #include "help.h" |
ed9b544e | 49 | |
ed9b544e | 50 | #define REDIS_NOTUSED(V) ((void) V) |
51 | ||
7fc4ce13 | 52 | static redisContext *context; |
ed9b544e | 53 | static struct config { |
54 | char *hostip; | |
55 | int hostport; | |
7e91f971 | 56 | char *hostsocket; |
5762b7f0 | 57 | long repeat; |
62e920df | 58 | int dbnum; |
5d15b520 | 59 | int interactive; |
36e5db6d | 60 | int shutdown; |
249c3a7d | 61 | int monitor_mode; |
62 | int pubsub_mode; | |
bc63407b | 63 | int stdinarg; /* get last arg from stdin. (-x option) */ |
288799e0 | 64 | char *auth; |
99628c1a | 65 | char *historyfile; |
65add0a3 PN |
66 | int raw_output; /* output mode per command */ |
67 | sds mb_delim; | |
ed9b544e | 68 | } config; |
69 | ||
a9158272 | 70 | static void usage(); |
11fd0c42 | 71 | char *redisGitSHA1(void); |
c392edf5 | 72 | char *redisGitDirty(void); |
c937aa89 | 73 | |
3ce014c7 | 74 | /*------------------------------------------------------------------------------ |
75 | * Utility functions | |
76 | *--------------------------------------------------------------------------- */ | |
77 | ||
78 | static long long mstime(void) { | |
79 | struct timeval tv; | |
80 | long long mst; | |
81 | ||
82 | gettimeofday(&tv, NULL); | |
83 | mst = ((long)tv.tv_sec)*1000; | |
84 | mst += tv.tv_usec/1000; | |
85 | return mst; | |
86 | } | |
87 | ||
a2a69d58 PN |
88 | /*------------------------------------------------------------------------------ |
89 | * Help functions | |
90 | *--------------------------------------------------------------------------- */ | |
91 | ||
b2cc45bf PN |
92 | #define CLI_HELP_COMMAND 1 |
93 | #define CLI_HELP_GROUP 2 | |
94 | ||
95 | typedef struct { | |
96 | int type; | |
97 | int argc; | |
98 | sds *argv; | |
99 | sds full; | |
100 | ||
101 | /* Only used for help on commands */ | |
102 | struct commandHelp *org; | |
103 | } helpEntry; | |
104 | ||
105 | static helpEntry *helpEntries; | |
106 | static int helpEntriesLen; | |
107 | ||
c392edf5 PN |
108 | static sds cliVersion() { |
109 | sds version; | |
110 | version = sdscatprintf(sdsempty(), "%s", REDIS_VERSION); | |
111 | ||
112 | /* Add git commit and working tree status when available */ | |
113 | if (strtoll(redisGitSHA1(),NULL,16)) { | |
114 | version = sdscatprintf(version, " (git:%s", redisGitSHA1()); | |
115 | if (strtoll(redisGitDirty(),NULL,10)) | |
116 | version = sdscatprintf(version, "-dirty"); | |
117 | version = sdscat(version, ")"); | |
118 | } | |
119 | return version; | |
120 | } | |
121 | ||
b2cc45bf PN |
122 | static void cliInitHelp() { |
123 | int commandslen = sizeof(commandHelp)/sizeof(struct commandHelp); | |
124 | int groupslen = sizeof(commandGroups)/sizeof(char*); | |
125 | int i, len, pos = 0; | |
126 | helpEntry tmp; | |
127 | ||
128 | helpEntriesLen = len = commandslen+groupslen; | |
129 | helpEntries = malloc(sizeof(helpEntry)*len); | |
130 | ||
131 | for (i = 0; i < groupslen; i++) { | |
132 | tmp.argc = 1; | |
133 | tmp.argv = malloc(sizeof(sds)); | |
134 | tmp.argv[0] = sdscatprintf(sdsempty(),"@%s",commandGroups[i]); | |
135 | tmp.full = tmp.argv[0]; | |
136 | tmp.type = CLI_HELP_GROUP; | |
137 | tmp.org = NULL; | |
138 | helpEntries[pos++] = tmp; | |
139 | } | |
140 | ||
141 | for (i = 0; i < commandslen; i++) { | |
142 | tmp.argv = sdssplitargs(commandHelp[i].name,&tmp.argc); | |
143 | tmp.full = sdsnew(commandHelp[i].name); | |
144 | tmp.type = CLI_HELP_COMMAND; | |
145 | tmp.org = &commandHelp[i]; | |
146 | helpEntries[pos++] = tmp; | |
147 | } | |
148 | } | |
149 | ||
a2a69d58 | 150 | /* Output command help to stdout. */ |
41945ba6 PN |
151 | static void cliOutputCommandHelp(struct commandHelp *help, int group) { |
152 | printf("\r\n \x1b[1m%s\x1b[0m \x1b[90m%s\x1b[0m\r\n", help->name, help->params); | |
153 | printf(" \x1b[33msummary:\x1b[0m %s\r\n", help->summary); | |
154 | printf(" \x1b[33msince:\x1b[0m %s\r\n", help->since); | |
155 | if (group) { | |
156 | printf(" \x1b[33mgroup:\x1b[0m %s\r\n", commandGroups[help->group]); | |
157 | } | |
a2a69d58 PN |
158 | } |
159 | ||
41945ba6 PN |
160 | /* Print generic help. */ |
161 | static void cliOutputGenericHelp() { | |
c392edf5 | 162 | sds version = cliVersion(); |
41945ba6 PN |
163 | printf( |
164 | "redis-cli %s\r\n" | |
165 | "Type: \"help @<group>\" to get a list of commands in <group>\r\n" | |
166 | " \"help <command>\" for help on <command>\r\n" | |
167 | " \"help <tab>\" to get a list of possible help topics\r\n" | |
168 | " \"quit\" to exit\r\n", | |
c392edf5 | 169 | version |
41945ba6 | 170 | ); |
c392edf5 | 171 | sdsfree(version); |
a2a69d58 PN |
172 | } |
173 | ||
174 | /* Output all command help, filtering by group or command name. */ | |
41945ba6 | 175 | static void cliOutputHelp(int argc, char **argv) { |
b2cc45bf | 176 | int i, j, len; |
41945ba6 | 177 | int group = -1; |
b2cc45bf PN |
178 | helpEntry *entry; |
179 | struct commandHelp *help; | |
a2a69d58 | 180 | |
41945ba6 PN |
181 | if (argc == 0) { |
182 | cliOutputGenericHelp(); | |
a2a69d58 | 183 | return; |
41945ba6 PN |
184 | } else if (argc > 0 && argv[0][0] == '@') { |
185 | len = sizeof(commandGroups)/sizeof(char*); | |
186 | for (i = 0; i < len; i++) { | |
187 | if (strcasecmp(argv[0]+1,commandGroups[i]) == 0) { | |
188 | group = i; | |
189 | break; | |
190 | } | |
191 | } | |
a2a69d58 PN |
192 | } |
193 | ||
41945ba6 | 194 | assert(argc > 0); |
b2cc45bf PN |
195 | for (i = 0; i < helpEntriesLen; i++) { |
196 | entry = &helpEntries[i]; | |
197 | if (entry->type != CLI_HELP_COMMAND) continue; | |
198 | ||
199 | help = entry->org; | |
a2a69d58 | 200 | if (group == -1) { |
b2cc45bf PN |
201 | /* Compare all arguments */ |
202 | if (argc == entry->argc) { | |
203 | for (j = 0; j < argc; j++) { | |
204 | if (strcasecmp(argv[j],entry->argv[j]) != 0) break; | |
205 | } | |
206 | if (j == argc) { | |
207 | cliOutputCommandHelp(help,1); | |
208 | } | |
a2a69d58 PN |
209 | } |
210 | } else { | |
211 | if (group == help->group) { | |
41945ba6 | 212 | cliOutputCommandHelp(help,0); |
a2a69d58 PN |
213 | } |
214 | } | |
215 | } | |
41945ba6 PN |
216 | printf("\r\n"); |
217 | } | |
218 | ||
41945ba6 PN |
219 | static void completionCallback(const char *buf, linenoiseCompletions *lc) { |
220 | size_t startpos = 0; | |
221 | int mask; | |
222 | int i; | |
223 | size_t matchlen; | |
b2cc45bf | 224 | sds tmp; |
41945ba6 PN |
225 | |
226 | if (strncasecmp(buf,"help ",5) == 0) { | |
227 | startpos = 5; | |
228 | while (isspace(buf[startpos])) startpos++; | |
b2cc45bf | 229 | mask = CLI_HELP_COMMAND | CLI_HELP_GROUP; |
41945ba6 | 230 | } else { |
b2cc45bf | 231 | mask = CLI_HELP_COMMAND; |
41945ba6 PN |
232 | } |
233 | ||
b2cc45bf PN |
234 | for (i = 0; i < helpEntriesLen; i++) { |
235 | if (!(helpEntries[i].type & mask)) continue; | |
41945ba6 PN |
236 | |
237 | matchlen = strlen(buf+startpos); | |
b2cc45bf PN |
238 | if (strncasecmp(buf+startpos,helpEntries[i].full,matchlen) == 0) { |
239 | tmp = sdsnewlen(buf,startpos); | |
240 | tmp = sdscat(tmp,helpEntries[i].full); | |
41945ba6 | 241 | linenoiseAddCompletion(lc,tmp); |
b2cc45bf | 242 | sdsfree(tmp); |
41945ba6 PN |
243 | } |
244 | } | |
a2a69d58 PN |
245 | } |
246 | ||
3ce014c7 | 247 | /*------------------------------------------------------------------------------ |
248 | * Networking / parsing | |
249 | *--------------------------------------------------------------------------- */ | |
250 | ||
7fc4ce13 PN |
251 | /* Send AUTH command to the server */ |
252 | static int cliAuth() { | |
253 | redisReply *reply; | |
254 | if (config.auth == NULL) return REDIS_OK; | |
255 | ||
256 | reply = redisCommand(context,"AUTH %s",config.auth); | |
257 | if (reply != NULL) { | |
258 | freeReplyObject(reply); | |
259 | return REDIS_OK; | |
260 | } | |
261 | return REDIS_ERR; | |
262 | } | |
263 | ||
264 | /* Send SELECT dbnum to the server */ | |
265 | static int cliSelect() { | |
266 | redisReply *reply; | |
267 | char dbnum[16]; | |
268 | if (config.dbnum == 0) return REDIS_OK; | |
269 | ||
270 | snprintf(dbnum,sizeof(dbnum),"%d",config.dbnum); | |
271 | reply = redisCommand(context,"SELECT %s",dbnum); | |
272 | if (reply != NULL) { | |
273 | freeReplyObject(reply); | |
274 | return REDIS_OK; | |
275 | } | |
276 | return REDIS_ERR; | |
277 | } | |
278 | ||
c0b3d423 | 279 | /* Connect to the client. If force is not zero the connection is performed |
280 | * even if there is already a connected socket. */ | |
281 | static int cliConnect(int force) { | |
7fc4ce13 PN |
282 | if (context == NULL || force) { |
283 | if (context != NULL) | |
284 | redisFree(context); | |
ed9b544e | 285 | |
7e91f971 | 286 | if (config.hostsocket == NULL) { |
7fc4ce13 | 287 | context = redisConnect(config.hostip,config.hostport); |
7e91f971 | 288 | } else { |
7fc4ce13 | 289 | context = redisConnectUnix(config.hostsocket); |
7e91f971 | 290 | } |
7fc4ce13 PN |
291 | |
292 | if (context->err) { | |
7e91f971 PN |
293 | fprintf(stderr,"Could not connect to Redis at "); |
294 | if (config.hostsocket == NULL) | |
7fc4ce13 | 295 | fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,context->errstr); |
7e91f971 | 296 | else |
7fc4ce13 PN |
297 | fprintf(stderr,"%s: %s\n",config.hostsocket,context->errstr); |
298 | redisFree(context); | |
299 | context = NULL; | |
300 | return REDIS_ERR; | |
6fa24622 | 301 | } |
ed9b544e | 302 | |
7fc4ce13 PN |
303 | /* Do AUTH and select the right DB. */ |
304 | if (cliAuth() != REDIS_OK) | |
305 | return REDIS_ERR; | |
306 | if (cliSelect() != REDIS_OK) | |
307 | return REDIS_ERR; | |
ed9b544e | 308 | } |
7fc4ce13 | 309 | return REDIS_OK; |
ed9b544e | 310 | } |
311 | ||
7fc4ce13 PN |
312 | static void cliPrintContextErrorAndExit() { |
313 | if (context == NULL) return; | |
314 | fprintf(stderr,"Error: %s\n",context->errstr); | |
315 | exit(1); | |
ed9b544e | 316 | } |
317 | ||
65add0a3 | 318 | static sds cliFormatReplyTTY(redisReply *r, char *prefix) { |
7fc4ce13 PN |
319 | sds out = sdsempty(); |
320 | switch (r->type) { | |
321 | case REDIS_REPLY_ERROR: | |
65add0a3 | 322 | out = sdscatprintf(out,"(error) %s\n", r->str); |
7fc4ce13 PN |
323 | break; |
324 | case REDIS_REPLY_STATUS: | |
7fc4ce13 PN |
325 | out = sdscat(out,r->str); |
326 | out = sdscat(out,"\n"); | |
327 | break; | |
328 | case REDIS_REPLY_INTEGER: | |
65add0a3 | 329 | out = sdscatprintf(out,"(integer) %lld\n",r->integer); |
7fc4ce13 PN |
330 | break; |
331 | case REDIS_REPLY_STRING: | |
65add0a3 PN |
332 | /* If you are producing output for the standard output we want |
333 | * a more interesting output with quoted characters and so forth */ | |
334 | out = sdscatrepr(out,r->str,r->len); | |
335 | out = sdscat(out,"\n"); | |
7fc4ce13 PN |
336 | break; |
337 | case REDIS_REPLY_NIL: | |
7fc4ce13 PN |
338 | out = sdscat(out,"(nil)\n"); |
339 | break; | |
340 | case REDIS_REPLY_ARRAY: | |
341 | if (r->elements == 0) { | |
7fc4ce13 | 342 | out = sdscat(out,"(empty list or set)\n"); |
c0b3d423 | 343 | } else { |
cfcd5d6d PN |
344 | unsigned int i, idxlen = 0; |
345 | char _prefixlen[16]; | |
346 | char _prefixfmt[16]; | |
347 | sds _prefix; | |
7fc4ce13 PN |
348 | sds tmp; |
349 | ||
cfcd5d6d PN |
350 | /* Calculate chars needed to represent the largest index */ |
351 | i = r->elements; | |
352 | do { | |
353 | idxlen++; | |
354 | i /= 10; | |
355 | } while(i); | |
356 | ||
357 | /* Prefix for nested multi bulks should grow with idxlen+2 spaces */ | |
358 | memset(_prefixlen,' ',idxlen+2); | |
359 | _prefixlen[idxlen+2] = '\0'; | |
360 | _prefix = sdscat(sdsnew(prefix),_prefixlen); | |
361 | ||
362 | /* Setup prefix format for every entry */ | |
363 | snprintf(_prefixfmt,sizeof(_prefixfmt),"%%s%%%dd) ",idxlen); | |
364 | ||
7fc4ce13 | 365 | for (i = 0; i < r->elements; i++) { |
cfcd5d6d PN |
366 | /* Don't use the prefix for the first element, as the parent |
367 | * caller already prepended the index number. */ | |
368 | out = sdscatprintf(out,_prefixfmt,i == 0 ? "" : prefix,i+1); | |
369 | ||
370 | /* Format the multi bulk entry */ | |
65add0a3 | 371 | tmp = cliFormatReplyTTY(r->element[i],_prefix); |
7fc4ce13 PN |
372 | out = sdscatlen(out,tmp,sdslen(tmp)); |
373 | sdsfree(tmp); | |
374 | } | |
cfcd5d6d | 375 | sdsfree(_prefix); |
c0b3d423 | 376 | } |
7fc4ce13 | 377 | break; |
c937aa89 | 378 | default: |
7fc4ce13 PN |
379 | fprintf(stderr,"Unknown reply type: %d\n", r->type); |
380 | exit(1); | |
c937aa89 | 381 | } |
7fc4ce13 | 382 | return out; |
c937aa89 | 383 | } |
384 | ||
65add0a3 PN |
385 | static sds cliFormatReplyRaw(redisReply *r) { |
386 | sds out = sdsempty(), tmp; | |
387 | size_t i; | |
388 | ||
389 | switch (r->type) { | |
390 | case REDIS_REPLY_NIL: | |
391 | /* Nothing... */ | |
392 | break; | |
393 | case REDIS_REPLY_ERROR: | |
394 | case REDIS_REPLY_STATUS: | |
395 | case REDIS_REPLY_STRING: | |
396 | out = sdscatlen(out,r->str,r->len); | |
397 | break; | |
398 | case REDIS_REPLY_INTEGER: | |
399 | out = sdscatprintf(out,"%lld",r->integer); | |
400 | break; | |
401 | case REDIS_REPLY_ARRAY: | |
402 | for (i = 0; i < r->elements; i++) { | |
403 | if (i > 0) out = sdscat(out,config.mb_delim); | |
404 | tmp = cliFormatReplyRaw(r->element[i]); | |
405 | out = sdscatlen(out,tmp,sdslen(tmp)); | |
406 | sdsfree(tmp); | |
407 | } | |
408 | break; | |
409 | default: | |
410 | fprintf(stderr,"Unknown reply type: %d\n", r->type); | |
411 | exit(1); | |
412 | } | |
413 | return out; | |
414 | } | |
415 | ||
416 | static int cliReadReply(int output_raw_strings) { | |
7fc4ce13 PN |
417 | redisReply *reply; |
418 | sds out; | |
419 | ||
420 | if (redisGetReply(context,(void**)&reply) != REDIS_OK) { | |
421 | if (config.shutdown) | |
422 | return REDIS_OK; | |
423 | if (config.interactive) { | |
424 | /* Filter cases where we should reconnect */ | |
425 | if (context->err == REDIS_ERR_IO && errno == ECONNRESET) | |
426 | return REDIS_ERR; | |
427 | if (context->err == REDIS_ERR_EOF) | |
428 | return REDIS_ERR; | |
429 | } | |
430 | cliPrintContextErrorAndExit(); | |
431 | return REDIS_ERR; /* avoid compiler warning */ | |
62e920df | 432 | } |
7fc4ce13 | 433 | |
65add0a3 PN |
434 | if (output_raw_strings) { |
435 | out = cliFormatReplyRaw(reply); | |
436 | } else { | |
437 | if (config.raw_output) { | |
438 | out = cliFormatReplyRaw(reply); | |
439 | out = sdscat(out,"\n"); | |
440 | } else { | |
441 | out = cliFormatReplyTTY(reply,""); | |
442 | } | |
443 | } | |
7fc4ce13 PN |
444 | fwrite(out,sdslen(out),1,stdout); |
445 | sdsfree(out); | |
65add0a3 | 446 | freeReplyObject(reply); |
7fc4ce13 | 447 | return REDIS_OK; |
62e920df | 448 | } |
449 | ||
aab055ae | 450 | static int cliSendCommand(int argc, char **argv, int repeat) { |
37dc9e5a | 451 | char *command = argv[0]; |
7fc4ce13 | 452 | size_t *argvlen; |
65add0a3 | 453 | int j, output_raw; |
ed9b544e | 454 | |
efcf948c | 455 | if (context == NULL) { |
456 | printf("Not connected, please use: connect <host> <port>\n"); | |
457 | return REDIS_OK; | |
458 | } | |
459 | ||
65add0a3 | 460 | output_raw = !strcasecmp(command,"info"); |
41945ba6 PN |
461 | if (!strcasecmp(command,"help") || !strcasecmp(command,"?")) { |
462 | cliOutputHelp(--argc, ++argv); | |
7fc4ce13 | 463 | return REDIS_OK; |
8079656a | 464 | } |
37dc9e5a PN |
465 | if (!strcasecmp(command,"shutdown")) config.shutdown = 1; |
466 | if (!strcasecmp(command,"monitor")) config.monitor_mode = 1; | |
467 | if (!strcasecmp(command,"subscribe") || | |
468 | !strcasecmp(command,"psubscribe")) config.pubsub_mode = 1; | |
ed9b544e | 469 | |
7fc4ce13 PN |
470 | /* Setup argument length */ |
471 | argvlen = malloc(argc*sizeof(size_t)); | |
472 | for (j = 0; j < argc; j++) | |
473 | argvlen[j] = sdslen(argv[j]); | |
a2f4f871 | 474 | |
aab055ae | 475 | while(repeat--) { |
7fc4ce13 | 476 | redisAppendCommandArgv(context,argc,(const char**)argv,argvlen); |
249c3a7d | 477 | while (config.monitor_mode) { |
65add0a3 | 478 | if (cliReadReply(output_raw) != REDIS_OK) exit(1); |
d9d8ccab | 479 | fflush(stdout); |
621d5c19 | 480 | } |
481 | ||
249c3a7d | 482 | if (config.pubsub_mode) { |
65add0a3 PN |
483 | if (!config.raw_output) |
484 | printf("Reading messages... (press Ctrl-C to quit)\n"); | |
249c3a7d | 485 | while (1) { |
65add0a3 | 486 | if (cliReadReply(output_raw) != REDIS_OK) exit(1); |
249c3a7d | 487 | } |
488 | } | |
489 | ||
65add0a3 | 490 | if (cliReadReply(output_raw) != REDIS_OK) |
7fc4ce13 | 491 | return REDIS_ERR; |
ed9b544e | 492 | } |
7fc4ce13 | 493 | return REDIS_OK; |
ed9b544e | 494 | } |
495 | ||
3ce014c7 | 496 | /*------------------------------------------------------------------------------ |
497 | * User interface | |
498 | *--------------------------------------------------------------------------- */ | |
499 | ||
ed9b544e | 500 | static int parseOptions(int argc, char **argv) { |
501 | int i; | |
502 | ||
503 | for (i = 1; i < argc; i++) { | |
504 | int lastarg = i==argc-1; | |
6cf5882c | 505 | |
ed9b544e | 506 | if (!strcmp(argv[i],"-h") && !lastarg) { |
efcf948c | 507 | sdsfree(config.hostip); |
508 | config.hostip = sdsnew(argv[i+1]); | |
ed9b544e | 509 | i++; |
a9158272 | 510 | } else if (!strcmp(argv[i],"-h") && lastarg) { |
511 | usage(); | |
f18e059e PN |
512 | } else if (!strcmp(argv[i],"--help")) { |
513 | usage(); | |
bc63407b | 514 | } else if (!strcmp(argv[i],"-x")) { |
515 | config.stdinarg = 1; | |
ed9b544e | 516 | } else if (!strcmp(argv[i],"-p") && !lastarg) { |
517 | config.hostport = atoi(argv[i+1]); | |
518 | i++; | |
7e91f971 PN |
519 | } else if (!strcmp(argv[i],"-s") && !lastarg) { |
520 | config.hostsocket = argv[i+1]; | |
521 | i++; | |
5762b7f0 | 522 | } else if (!strcmp(argv[i],"-r") && !lastarg) { |
523 | config.repeat = strtoll(argv[i+1],NULL,10); | |
524 | i++; | |
62e920df | 525 | } else if (!strcmp(argv[i],"-n") && !lastarg) { |
526 | config.dbnum = atoi(argv[i+1]); | |
527 | i++; | |
fdfdae0f | 528 | } else if (!strcmp(argv[i],"-a") && !lastarg) { |
288799e0 | 529 | config.auth = argv[i+1]; |
fdfdae0f | 530 | i++; |
65add0a3 PN |
531 | } else if (!strcmp(argv[i],"--raw")) { |
532 | config.raw_output = 1; | |
f18e059e PN |
533 | } else if (!strcmp(argv[i],"-v") || !strcmp(argv[i], "--version")) { |
534 | sds version = cliVersion(); | |
535 | printf("redis-cli %s\n", version); | |
536 | sdsfree(version); | |
185cabda | 537 | exit(0); |
ed9b544e | 538 | } else { |
539 | break; | |
540 | } | |
541 | } | |
542 | return i; | |
543 | } | |
544 | ||
545 | static sds readArgFromStdin(void) { | |
546 | char buf[1024]; | |
547 | sds arg = sdsempty(); | |
548 | ||
549 | while(1) { | |
550 | int nread = read(fileno(stdin),buf,1024); | |
551 | ||
552 | if (nread == 0) break; | |
553 | else if (nread == -1) { | |
554 | perror("Reading from standard input"); | |
555 | exit(1); | |
556 | } | |
557 | arg = sdscatlen(arg,buf,nread); | |
558 | } | |
559 | return arg; | |
560 | } | |
561 | ||
a9158272 | 562 | static void usage() { |
f18e059e PN |
563 | sds version = cliVersion(); |
564 | fprintf(stderr, | |
565 | "redis-cli %s\n" | |
566 | "\n" | |
567 | "Usage: redis-cli [OPTIONS] [cmd [arg [arg ...]]]\n" | |
568 | " -h <hostname> Server hostname (default: 127.0.0.1)\n" | |
569 | " -p <port> Server port (default: 6379)\n" | |
570 | " -s <socket> Server socket (overrides hostname and port)\n" | |
571 | " -a <password> Password to use when connecting to the server\n" | |
572 | " -r <repeat> Execute specified command N times\n" | |
573 | " -n <db> Database number\n" | |
574 | " -x Read last argument from STDIN\n" | |
65add0a3 | 575 | " --raw Use raw formatting for replies (default when STDOUT is not a tty)\n" |
f18e059e PN |
576 | " --help Output this help and exit\n" |
577 | " --version Output version and exit\n" | |
578 | "\n" | |
579 | "Examples:\n" | |
580 | " cat /etc/passwd | redis-cli -x set mypasswd\n" | |
581 | " redis-cli get mypasswd\n" | |
582 | " redis-cli -r 100 lpush mylist x\n" | |
583 | "\n" | |
584 | "When no command is given, redis-cli starts in interactive mode.\n" | |
585 | "Type \"help\" in interactive mode for information on available commands.\n" | |
586 | "\n", | |
587 | version); | |
588 | sdsfree(version); | |
a9158272 | 589 | exit(1); |
590 | } | |
591 | ||
6cf5882c MMDJ |
592 | /* Turn the plain C strings into Sds strings */ |
593 | static char **convertToSds(int count, char** args) { | |
594 | int j; | |
37dc9e5a | 595 | char **sds = zmalloc(sizeof(char*)*count); |
6cf5882c MMDJ |
596 | |
597 | for(j = 0; j < count; j++) | |
598 | sds[j] = sdsnew(args[j]); | |
599 | ||
600 | return sds; | |
601 | } | |
602 | ||
a88a2af6 | 603 | #define LINE_BUFLEN 4096 |
6cf5882c | 604 | static void repl() { |
a88a2af6 | 605 | int argc, j; |
cbce5171 | 606 | char *line; |
607 | sds *argv; | |
6cf5882c | 608 | |
5d15b520 | 609 | config.interactive = 1; |
41945ba6 | 610 | linenoiseSetCompletionCallback(completionCallback); |
ce260f73 | 611 | |
d8d528e9 | 612 | while((line = linenoise(context ? "redis> " : "not connected> ")) != NULL) { |
cf87ebf2 | 613 | if (line[0] != '\0') { |
cbce5171 | 614 | argv = sdssplitargs(line,&argc); |
a88a2af6 | 615 | linenoiseHistoryAdd(line); |
99628c1a | 616 | if (config.historyfile) linenoiseHistorySave(config.historyfile); |
0439d792 PN |
617 | if (argv == NULL) { |
618 | printf("Invalid argument(s)\n"); | |
619 | continue; | |
620 | } else if (argc > 0) { | |
a88a2af6 | 621 | if (strcasecmp(argv[0],"quit") == 0 || |
622 | strcasecmp(argv[0],"exit") == 0) | |
c0b3d423 | 623 | { |
624 | exit(0); | |
efcf948c | 625 | } else if (argc == 3 && !strcasecmp(argv[0],"connect")) { |
626 | sdsfree(config.hostip); | |
627 | config.hostip = sdsnew(argv[1]); | |
628 | config.hostport = atoi(argv[2]); | |
629 | cliConnect(1); | |
bbac56c2 | 630 | } else if (argc == 1 && !strcasecmp(argv[0],"clear")) { |
631 | linenoiseClearScreen(); | |
c0b3d423 | 632 | } else { |
3ce014c7 | 633 | long long start_time = mstime(), elapsed; |
c0b3d423 | 634 | |
7fc4ce13 | 635 | if (cliSendCommand(argc,argv,1) != REDIS_OK) { |
efcf948c | 636 | cliConnect(1); |
7fc4ce13 PN |
637 | |
638 | /* If we still cannot send the command, | |
639 | * print error and abort. */ | |
640 | if (cliSendCommand(argc,argv,1) != REDIS_OK) | |
641 | cliPrintContextErrorAndExit(); | |
c0b3d423 | 642 | } |
3ce014c7 | 643 | elapsed = mstime()-start_time; |
339b9dc2 PN |
644 | if (elapsed >= 500) { |
645 | printf("(%.2fs)\n",(double)elapsed/1000); | |
646 | } | |
c0b3d423 | 647 | } |
a88a2af6 | 648 | } |
649 | /* Free the argument vector */ | |
650 | for (j = 0; j < argc; j++) | |
651 | sdsfree(argv[j]); | |
8ff6a48b | 652 | zfree(argv); |
6cf5882c | 653 | } |
a88a2af6 | 654 | /* linenoise() returns malloc-ed lines like readline() */ |
cf87ebf2 | 655 | free(line); |
6cf5882c | 656 | } |
6cf5882c MMDJ |
657 | exit(0); |
658 | } | |
659 | ||
b4b62c34 PN |
660 | static int noninteractive(int argc, char **argv) { |
661 | int retval = 0; | |
bc63407b | 662 | if (config.stdinarg) { |
b4b62c34 PN |
663 | argv = zrealloc(argv, (argc+1)*sizeof(char*)); |
664 | argv[argc] = readArgFromStdin(); | |
665 | retval = cliSendCommand(argc+1, argv, config.repeat); | |
666 | } else { | |
667 | /* stdin is probably a tty, can be tested with S_ISCHR(s.st_mode) */ | |
668 | retval = cliSendCommand(argc, argv, config.repeat); | |
669 | } | |
670 | return retval; | |
671 | } | |
672 | ||
ed9b544e | 673 | int main(int argc, char **argv) { |
6cf5882c | 674 | int firstarg; |
ed9b544e | 675 | |
efcf948c | 676 | config.hostip = sdsnew("127.0.0.1"); |
ed9b544e | 677 | config.hostport = 6379; |
7e91f971 | 678 | config.hostsocket = NULL; |
5762b7f0 | 679 | config.repeat = 1; |
62e920df | 680 | config.dbnum = 0; |
5d15b520 | 681 | config.interactive = 0; |
36e5db6d | 682 | config.shutdown = 0; |
249c3a7d | 683 | config.monitor_mode = 0; |
684 | config.pubsub_mode = 0; | |
bc63407b | 685 | config.stdinarg = 0; |
288799e0 | 686 | config.auth = NULL; |
99628c1a | 687 | config.historyfile = NULL; |
65add0a3 PN |
688 | config.raw_output = !isatty(fileno(stdout)) && (getenv("FAKETTY") == NULL); |
689 | config.mb_delim = sdsnew("\n"); | |
41945ba6 | 690 | cliInitHelp(); |
99628c1a | 691 | |
692 | if (getenv("HOME") != NULL) { | |
693 | config.historyfile = malloc(256); | |
694 | snprintf(config.historyfile,256,"%s/.rediscli_history",getenv("HOME")); | |
695 | linenoiseHistoryLoad(config.historyfile); | |
696 | } | |
ed9b544e | 697 | |
698 | firstarg = parseOptions(argc,argv); | |
699 | argc -= firstarg; | |
700 | argv += firstarg; | |
ed9b544e | 701 | |
7fc4ce13 PN |
702 | /* Try to connect */ |
703 | if (cliConnect(0) != REDIS_OK) exit(1); | |
aab055ae | 704 | |
abb731e5 PN |
705 | /* Start interactive mode when no command is provided */ |
706 | if (argc == 0) repl(); | |
b4b62c34 PN |
707 | /* Otherwise, we have some arguments to execute */ |
708 | return noninteractive(argc,convertToSds(argc,argv)); | |
ed9b544e | 709 | } |