redis-cli.c 20.4 KB
Newer Older
A
antirez 已提交
1 2
/* Redis CLI (command line interface)
 *
3
 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
A
antirez 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 * 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.
 */

31
#include "fmacros.h"
32
#include "version.h"
33

A
antirez 已提交
34 35 36 37
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#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>
A
antirez 已提交
43

P
Pieter Noordhuis 已提交
44
#include "hiredis.h"
A
antirez 已提交
45 46
#include "sds.h"
#include "zmalloc.h"
47
#include "linenoise.h"
48
#include "help.h"
A
antirez 已提交
49 50 51

#define REDIS_NOTUSED(V) ((void) V)

P
Pieter Noordhuis 已提交
52
static redisContext *context;
A
antirez 已提交
53 54 55
static struct config {
    char *hostip;
    int hostport;
56
    char *hostsocket;
57
    long repeat;
I
ian 已提交
58
    int dbnum;
59
    int interactive;
60
    int shutdown;
61 62
    int monitor_mode;
    int pubsub_mode;
63
    int raw_output; /* output mode per command */
64
    int tty; /* flag for default output format */
65
    int stdinarg; /* get last arg from stdin. (-x option) */
66
    char mb_sep;
A
antirez 已提交
67
    char *auth;
68
    char *historyfile;
A
antirez 已提交
69 70
} config;

A
antirez 已提交
71
static void usage();
72
char *redisGitSHA1(void);
73
char *redisGitDirty(void);
74

75 76 77 78 79 80 81 82 83 84 85 86 87 88
/*------------------------------------------------------------------------------
 * 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;
}

89 90 91 92
/*------------------------------------------------------------------------------
 * Help functions
 *--------------------------------------------------------------------------- */

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
#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;

109 110 111 112 113 114 115 116 117 118 119 120 121 122
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;
}

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
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;
    }
}

151
/* Output command help to stdout. */
152 153 154 155 156 157 158
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]);
    }
159 160
}

161 162
/* Print generic help. */
static void cliOutputGenericHelp() {
163
    sds version = cliVersion();
164 165 166 167 168 169
    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",
170
        version
171
    );
172
    sdsfree(version);
173 174 175
}

/* Output all command help, filtering by group or command name. */
176
static void cliOutputHelp(int argc, char **argv) {
177
    int i, j, len;
178
    int group = -1;
179 180
    helpEntry *entry;
    struct commandHelp *help;
181

182 183
    if (argc == 0) {
        cliOutputGenericHelp();
184
        return;
185 186 187 188 189 190 191 192
    } 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;
            }
        }
193 194
    }

195
    assert(argc > 0);
196 197 198 199 200
    for (i = 0; i < helpEntriesLen; i++) {
        entry = &helpEntries[i];
        if (entry->type != CLI_HELP_COMMAND) continue;

        help = entry->org;
201
        if (group == -1) {
202 203 204 205 206 207 208 209
            /* 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);
                }
210 211 212
            }
        } else {
            if (group == help->group) {
213
                cliOutputCommandHelp(help,0);
214 215 216
            }
        }
    }
217 218 219 220 221 222 223 224
    printf("\r\n");
}

static void completionCallback(const char *buf, linenoiseCompletions *lc) {
    size_t startpos = 0;
    int mask;
    int i;
    size_t matchlen;
225
    sds tmp;
226 227 228 229

    if (strncasecmp(buf,"help ",5) == 0) {
        startpos = 5;
        while (isspace(buf[startpos])) startpos++;
230
        mask = CLI_HELP_COMMAND | CLI_HELP_GROUP;
231
    } else {
232
        mask = CLI_HELP_COMMAND;
233 234
    }

235 236
    for (i = 0; i < helpEntriesLen; i++) {
        if (!(helpEntries[i].type & mask)) continue;
237 238

        matchlen = strlen(buf+startpos);
239 240 241
        if (strncasecmp(buf+startpos,helpEntries[i].full,matchlen) == 0) {
            tmp = sdsnewlen(buf,startpos);
            tmp = sdscat(tmp,helpEntries[i].full);
242
            linenoiseAddCompletion(lc,tmp);
243
            sdsfree(tmp);
244 245
        }
    }
246 247
}

248 249 250 251
/*------------------------------------------------------------------------------
 * Networking / parsing
 *--------------------------------------------------------------------------- */

P
Pieter Noordhuis 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
/* Send AUTH command to the server */
static int cliAuth() {
    redisReply *reply;
    if (config.auth == NULL) return REDIS_OK;

    reply = redisCommand(context,"AUTH %s",config.auth);
    if (reply != NULL) {
        freeReplyObject(reply);
        return REDIS_OK;
    }
    return REDIS_ERR;
}

/* Send SELECT dbnum to the server */
static int cliSelect() {
    redisReply *reply;
    char dbnum[16];
    if (config.dbnum == 0) return REDIS_OK;

    snprintf(dbnum,sizeof(dbnum),"%d",config.dbnum);
    reply = redisCommand(context,"SELECT %s",dbnum);
    if (reply != NULL) {
        freeReplyObject(reply);
        return REDIS_OK;
    }
    return REDIS_ERR;
}

280 281 282
/* 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) {
P
Pieter Noordhuis 已提交
283 284 285
    if (context == NULL || force) {
        if (context != NULL)
            redisFree(context);
A
antirez 已提交
286

287
        if (config.hostsocket == NULL) {
P
Pieter Noordhuis 已提交
288
            context = redisConnect(config.hostip,config.hostport);
289
        } else {
P
Pieter Noordhuis 已提交
290
            context = redisConnectUnix(config.hostsocket);
291
        }
P
Pieter Noordhuis 已提交
292 293

        if (context->err) {
294 295
            fprintf(stderr,"Could not connect to Redis at ");
            if (config.hostsocket == NULL)
P
Pieter Noordhuis 已提交
296
                fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,context->errstr);
297
            else
P
Pieter Noordhuis 已提交
298 299 300 301
                fprintf(stderr,"%s: %s\n",config.hostsocket,context->errstr);
            redisFree(context);
            context = NULL;
            return REDIS_ERR;
302
        }
A
antirez 已提交
303

P
Pieter Noordhuis 已提交
304 305 306 307 308
        /* Do AUTH and select the right DB. */
        if (cliAuth() != REDIS_OK)
            return REDIS_ERR;
        if (cliSelect() != REDIS_OK)
            return REDIS_ERR;
A
antirez 已提交
309
    }
P
Pieter Noordhuis 已提交
310
    return REDIS_OK;
A
antirez 已提交
311 312
}

P
Pieter Noordhuis 已提交
313 314 315 316
static void cliPrintContextErrorAndExit() {
    if (context == NULL) return;
    fprintf(stderr,"Error: %s\n",context->errstr);
    exit(1);
A
antirez 已提交
317 318
}

P
Pieter Noordhuis 已提交
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
static sds cliFormatReply(redisReply *r, char *prefix) {
    sds out = sdsempty();
    switch (r->type) {
    case REDIS_REPLY_ERROR:
        if (config.tty) out = sdscat(out,"(error) ");
        out = sdscatprintf(out,"%s\n", r->str);
    break;
    case REDIS_REPLY_STATUS:
        out = sdscat(out,r->str);
        out = sdscat(out,"\n");
    break;
    case REDIS_REPLY_INTEGER:
        if (config.tty) out = sdscat(out,"(integer) ");
        out = sdscatprintf(out,"%lld\n",r->integer);
    break;
    case REDIS_REPLY_STRING:
        if (config.raw_output || !config.tty) {
            out = sdscatlen(out,r->str,r->len);
        } else {
            /* 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");
342
        }
P
Pieter Noordhuis 已提交
343 344 345 346 347 348 349
    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");
350
        } else {
351 352 353 354
            unsigned int i, idxlen = 0;
            char _prefixlen[16];
            char _prefixfmt[16];
            sds _prefix;
P
Pieter Noordhuis 已提交
355 356
            sds tmp;

357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
            /* 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);

P
Pieter Noordhuis 已提交
372
            for (i = 0; i < r->elements; i++) {
373 374 375 376 377 378
                /* 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 */
                tmp = cliFormatReply(r->element[i],_prefix);
P
Pieter Noordhuis 已提交
379 380 381
                out = sdscatlen(out,tmp,sdslen(tmp));
                sdsfree(tmp);
            }
382
            sdsfree(_prefix);
383
        }
P
Pieter Noordhuis 已提交
384
    break;
385
    default:
P
Pieter Noordhuis 已提交
386 387
        fprintf(stderr,"Unknown reply type: %d\n", r->type);
        exit(1);
388
    }
P
Pieter Noordhuis 已提交
389
    return out;
390 391
}

P
Pieter Noordhuis 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
static int cliReadReply() {
    redisReply *reply;
    sds out;

    if (redisGetReply(context,(void**)&reply) != REDIS_OK) {
        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;
        }
        cliPrintContextErrorAndExit();
        return REDIS_ERR; /* avoid compiler warning */
I
ian 已提交
408
    }
P
Pieter Noordhuis 已提交
409 410 411 412 413 414

    out = cliFormatReply(reply,"");
    freeReplyObject(reply);
    fwrite(out,sdslen(out),1,stdout);
    sdsfree(out);
    return REDIS_OK;
I
ian 已提交
415 416
}

417
static int cliSendCommand(int argc, char **argv, int repeat) {
418
    char *command = argv[0];
P
Pieter Noordhuis 已提交
419 420
    size_t *argvlen;
    int j;
A
antirez 已提交
421

A
antirez 已提交
422 423 424 425 426
    if (context == NULL) {
        printf("Not connected, please use: connect <host> <port>\n");
        return REDIS_OK;
    }

427
    config.raw_output = !strcasecmp(command,"info");
428 429
    if (!strcasecmp(command,"help") || !strcasecmp(command,"?")) {
        cliOutputHelp(--argc, ++argv);
P
Pieter Noordhuis 已提交
430
        return REDIS_OK;
431
    }
432 433 434 435
    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;
A
antirez 已提交
436

P
Pieter Noordhuis 已提交
437 438 439 440
    /* Setup argument length */
    argvlen = malloc(argc*sizeof(size_t));
    for (j = 0; j < argc; j++)
        argvlen[j] = sdslen(argv[j]);
441

442
    while(repeat--) {
P
Pieter Noordhuis 已提交
443
        redisAppendCommandArgv(context,argc,(const char**)argv,argvlen);
444
        while (config.monitor_mode) {
P
Pieter Noordhuis 已提交
445
            if (cliReadReply() != REDIS_OK) exit(1);
446
            fflush(stdout);
447 448
        }

449
        if (config.pubsub_mode) {
P
Pieter Noordhuis 已提交
450
            printf("Reading messages... (press Ctrl-C to quit)\n");
451
            while (1) {
P
Pieter Noordhuis 已提交
452
                if (cliReadReply() != REDIS_OK) exit(1);
453 454 455
            }
        }

P
Pieter Noordhuis 已提交
456 457
        if (cliReadReply() != REDIS_OK)
            return REDIS_ERR;
A
antirez 已提交
458
    }
P
Pieter Noordhuis 已提交
459
    return REDIS_OK;
A
antirez 已提交
460 461
}

462 463 464 465
/*------------------------------------------------------------------------------
 * User interface
 *--------------------------------------------------------------------------- */

A
antirez 已提交
466 467 468 469 470
static int parseOptions(int argc, char **argv) {
    int i;

    for (i = 1; i < argc; i++) {
        int lastarg = i==argc-1;
471

A
antirez 已提交
472
        if (!strcmp(argv[i],"-h") && !lastarg) {
A
antirez 已提交
473 474
            sdsfree(config.hostip);
            config.hostip = sdsnew(argv[i+1]);
A
antirez 已提交
475
            i++;
A
antirez 已提交
476 477
        } else if (!strcmp(argv[i],"-h") && lastarg) {
            usage();
478 479
        } else if (!strcmp(argv[i],"--help")) {
            usage();
480 481
        } else if (!strcmp(argv[i],"-x")) {
            config.stdinarg = 1;
A
antirez 已提交
482 483 484
        } else if (!strcmp(argv[i],"-p") && !lastarg) {
            config.hostport = atoi(argv[i+1]);
            i++;
485 486 487
        } else if (!strcmp(argv[i],"-s") && !lastarg) {
            config.hostsocket = argv[i+1];
            i++;
488 489 490
        } else if (!strcmp(argv[i],"-r") && !lastarg) {
            config.repeat = strtoll(argv[i+1],NULL,10);
            i++;
I
ian 已提交
491 492 493
        } else if (!strcmp(argv[i],"-n") && !lastarg) {
            config.dbnum = atoi(argv[i+1]);
            i++;
494
        } else if (!strcmp(argv[i],"-a") && !lastarg) {
A
antirez 已提交
495
            config.auth = argv[i+1];
496
            i++;
497 498 499 500
        } else if (!strcmp(argv[i],"-v") || !strcmp(argv[i], "--version")) {
            sds version = cliVersion();
            printf("redis-cli %s\n", version);
            sdsfree(version);
501
            exit(0);
A
antirez 已提交
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
        } 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;
}

A
antirez 已提交
526
static void usage() {
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
    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"
"  -n <db>          Database number\n"
"  -x               Read last argument from STDIN\n"
"  --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"
"\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);
A
antirez 已提交
552 553 554
    exit(1);
}

555 556 557
/* Turn the plain C strings into Sds strings */
static char **convertToSds(int count, char** args) {
  int j;
558
  char **sds = zmalloc(sizeof(char*)*count);
559 560 561 562 563 564 565

  for(j = 0; j < count; j++)
    sds[j] = sdsnew(args[j]);

  return sds;
}

566
#define LINE_BUFLEN 4096
567
static void repl() {
568
    int argc, j;
569 570
    char *line;
    sds *argv;
571

572
    config.interactive = 1;
573
    linenoiseSetCompletionCallback(completionCallback);
574

575
    while((line = linenoise(context ? "redis> " : "not connected> ")) != NULL) {
576
        if (line[0] != '\0') {
577
            argv = sdssplitargs(line,&argc);
578
            linenoiseHistoryAdd(line);
579
            if (config.historyfile) linenoiseHistorySave(config.historyfile);
580 581 582 583
            if (argv == NULL) {
                printf("Invalid argument(s)\n");
                continue;
            } else if (argc > 0) {
584 585
                if (strcasecmp(argv[0],"quit") == 0 ||
                    strcasecmp(argv[0],"exit") == 0)
586 587
                {
                    exit(0);
A
antirez 已提交
588 589 590 591 592
                } else if (argc == 3 && !strcasecmp(argv[0],"connect")) {
                    sdsfree(config.hostip);
                    config.hostip = sdsnew(argv[1]);
                    config.hostport = atoi(argv[2]);
                    cliConnect(1);
593 594
                } else if (argc == 1 && !strcasecmp(argv[0],"clear")) {
                    linenoiseClearScreen();
595
                } else {
596
                    long long start_time = mstime(), elapsed;
597

P
Pieter Noordhuis 已提交
598
                    if (cliSendCommand(argc,argv,1) != REDIS_OK) {
A
antirez 已提交
599
                        cliConnect(1);
P
Pieter Noordhuis 已提交
600 601 602 603 604

                        /* If we still cannot send the command,
                         * print error and abort. */
                        if (cliSendCommand(argc,argv,1) != REDIS_OK)
                            cliPrintContextErrorAndExit();
605
                    }
606
                    elapsed = mstime()-start_time;
P
Pieter Noordhuis 已提交
607 608 609
                    if (elapsed >= 500) {
                        printf("(%.2fs)\n",(double)elapsed/1000);
                    }
610
                }
611 612 613 614
            }
            /* Free the argument vector */
            for (j = 0; j < argc; j++)
                sdsfree(argv[j]);
615
            zfree(argv);
616
        }
617
        /* linenoise() returns malloc-ed lines like readline() */
618
        free(line);
619 620 621 622
    }
    exit(0);
}

623 624
static int noninteractive(int argc, char **argv) {
    int retval = 0;
625
    if (config.stdinarg) {
626 627 628 629 630 631 632 633 634 635
        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;
}

A
antirez 已提交
636
int main(int argc, char **argv) {
637
    int firstarg;
A
antirez 已提交
638

A
antirez 已提交
639
    config.hostip = sdsnew("127.0.0.1");
A
antirez 已提交
640
    config.hostport = 6379;
641
    config.hostsocket = NULL;
642
    config.repeat = 1;
I
ian 已提交
643
    config.dbnum = 0;
644
    config.interactive = 0;
645
    config.shutdown = 0;
646 647
    config.monitor_mode = 0;
    config.pubsub_mode = 0;
648
    config.raw_output = 0;
649
    config.stdinarg = 0;
A
antirez 已提交
650
    config.auth = NULL;
651
    config.historyfile = NULL;
652
    config.tty = isatty(fileno(stdout)) || (getenv("FAKETTY") != NULL);
653
    config.mb_sep = '\n';
654
    cliInitHelp();
655 656 657 658 659 660

    if (getenv("HOME") != NULL) {
        config.historyfile = malloc(256);
        snprintf(config.historyfile,256,"%s/.rediscli_history",getenv("HOME"));
        linenoiseHistoryLoad(config.historyfile);
    }
A
antirez 已提交
661 662 663 664 665

    firstarg = parseOptions(argc,argv);
    argc -= firstarg;
    argv += firstarg;

P
Pieter Noordhuis 已提交
666 667
    /* Try to connect */
    if (cliConnect(0) != REDIS_OK) exit(1);
668

669 670
    /* Start interactive mode when no command is provided */
    if (argc == 0) repl();
671 672
    /* Otherwise, we have some arguments to execute */
    return noninteractive(argc,convertToSds(argc,argv));
A
antirez 已提交
673
}