redis-cli.c 14.6 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>
A
antirez 已提交
39 40 41 42 43

#include "anet.h"
#include "sds.h"
#include "adlist.h"
#include "zmalloc.h"
44
#include "linenoise.h"
A
antirez 已提交
45 46 47

#define REDIS_CMD_INLINE 1
#define REDIS_CMD_BULK 2
48
#define REDIS_CMD_MULTIBULK 4
A
antirez 已提交
49 50 51 52 53 54

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

static struct config {
    char *hostip;
    int hostport;
55
    long repeat;
I
ian 已提交
56
    int dbnum;
57
    int argn_from_stdin;
58
    int interactive;
59
    int shutdown;
60 61
    int monitor_mode;
    int pubsub_mode;
62
    int raw_output; /* output mode per command */
A
antirez 已提交
63
    char *auth;
64
    char *historyfile;
A
antirez 已提交
65 66
} config;

67
static int cliReadReply(int fd);
A
antirez 已提交
68
static void usage();
69

A
antirez 已提交
70 71
static int cliConnect(void) {
    char err[ANET_ERR_LEN];
72
    static int fd = ANET_ERR;
A
antirez 已提交
73 74

    if (fd == ANET_ERR) {
75 76 77 78 79 80
        fd = anetTcpConnect(err,config.hostip,config.hostport);
        if (fd == ANET_ERR) {
            fprintf(stderr, "Could not connect to Redis at %s:%d: %s", config.hostip, config.hostport, err);
            return -1;
        }
        anetTcpNoDelay(NULL,fd);
A
antirez 已提交
81 82 83 84 85 86 87 88 89
    }
    return fd;
}

static sds cliReadLine(int fd) {
    sds line = sdsempty();

    while(1) {
        char c;
90
        ssize_t ret;
A
antirez 已提交
91

92 93
        ret = read(fd,&c,1);
        if (ret == -1) {
A
antirez 已提交
94 95
            sdsfree(line);
            return NULL;
96
        } else if ((ret == 0) || (c == '\n')) {
A
antirez 已提交
97 98 99 100 101 102 103 104
            break;
        } else {
            line = sdscatlen(line,&c,1);
        }
    }
    return sdstrim(line,"\r\n");
}

I
ian 已提交
105
static int cliReadSingleLineReply(int fd, int quiet) {
A
antirez 已提交
106 107 108
    sds reply = cliReadLine(fd);

    if (reply == NULL) return 1;
I
ian 已提交
109 110
    if (!quiet)
        printf("%s\n", reply);
111
    sdsfree(reply);
A
antirez 已提交
112 113 114
    return 0;
}

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
static void printStringRepr(char *s, int len) {
    printf("\"");
    while(len--) {
        switch(*s) {
        case '\\':
        case '"':
            printf("\\%c",*s);
            break;
        case '\n': printf("\\n"); break;
        case '\r': printf("\\r"); break;
        case '\t': printf("\\t"); break;
        case '\a': printf("\\a"); break;
        case '\b': printf("\\b"); break;
        default:
            if (isprint(*s))
                printf("%c",*s);
            else
                printf("\\x%02x",(unsigned char)*s);
            break;
        }
        s++;
    }
137
    printf("\"");
138 139
}

140
static int cliReadBulkReply(int fd) {
A
antirez 已提交
141 142
    sds replylen = cliReadLine(fd);
    char *reply, crlf[2];
143
    int bulklen;
A
antirez 已提交
144 145 146

    if (replylen == NULL) return 1;
    bulklen = atoi(replylen);
147
    if (bulklen == -1) {
A
antirez 已提交
148
        sdsfree(replylen);
149
        printf("(nil)\n");
A
antirez 已提交
150 151 152 153 154
        return 0;
    }
    reply = zmalloc(bulklen);
    anetRead(fd,reply,bulklen);
    anetRead(fd,crlf,2);
155
    if (config.raw_output) {
156 157 158 159 160 161 162 163
        if (bulklen && fwrite(reply,bulklen,1,stdout) == 0) {
            zfree(reply);
            return 1;
        }
    } else {
        /* If you are producing output for the standard output we want
         * a more interesting output with quoted characters and so forth */
        printStringRepr(reply,bulklen);
164
        printf("\n");
A
antirez 已提交
165 166
    }
    zfree(reply);
167
    return 0;
A
antirez 已提交
168 169 170 171 172 173 174
}

static int cliReadMultiBulkReply(int fd) {
    sds replylen = cliReadLine(fd);
    int elements, c = 1;

    if (replylen == NULL) return 1;
175 176
    elements = atoi(replylen);
    if (elements == -1) {
A
antirez 已提交
177 178 179 180
        sdsfree(replylen);
        printf("(nil)\n");
        return 0;
    }
181 182 183
    if (elements == 0) {
        printf("(empty list or set)\n");
    }
A
antirez 已提交
184 185
    while(elements--) {
        printf("%d. ", c);
186
        if (cliReadReply(fd)) return 1;
A
antirez 已提交
187 188 189 190 191
        c++;
    }
    return 0;
}

192 193 194
static int cliReadReply(int fd) {
    char type;

195 196 197 198
    if (anetRead(fd,&type,1) <= 0) {
        if (config.shutdown) return 0;
        exit(1);
    }
199 200 201
    switch(type) {
    case '-':
        printf("(error) ");
I
ian 已提交
202
        cliReadSingleLineReply(fd,0);
203 204
        return 1;
    case '+':
I
ian 已提交
205
        return cliReadSingleLineReply(fd,0);
206
    case ':':
A
antirez 已提交
207
        printf("(integer) ");
I
ian 已提交
208
        return cliReadSingleLineReply(fd,0);
209 210 211 212 213 214 215 216 217 218
    case '$':
        return cliReadBulkReply(fd);
    case '*':
        return cliReadMultiBulkReply(fd);
    default:
        printf("protocol error, got '%c' as reply type byte\n", type);
        return 1;
    }
}

219
static int selectDb(int fd) {
I
ian 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233
    int retval;
    sds cmd;
    char type;

    if (config.dbnum == 0)
        return 0;

    cmd = sdsempty();
    cmd = sdscatprintf(cmd,"SELECT %d\r\n",config.dbnum);
    anetWrite(fd,cmd,sdslen(cmd));
    anetRead(fd,&type,1);
    if (type <= 0 || type != '+') return 1;
    retval = cliReadSingleLineReply(fd,1);
    if (retval) {
234
        return retval;
I
ian 已提交
235 236 237 238
    }
    return 0;
}

239
static int cliSendCommand(int argc, char **argv, int repeat) {
240
    char *command = argv[0];
A
antirez 已提交
241
    int fd, j, retval = 0;
242
    sds cmd;
A
antirez 已提交
243

244 245 246 247 248
    config.raw_output = !strcasecmp(command,"info");
    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 已提交
249 250
    if ((fd = cliConnect()) == -1) return 1;

I
ian 已提交
251 252 253 254 255 256
    /* Select db number */
    retval = selectDb(fd);
    if (retval) {
        fprintf(stderr,"Error setting DB num\n");
        return 1;
    }
257

258 259 260 261 262 263 264 265 266
    /* Build the command to send */
    cmd = sdscatprintf(sdsempty(),"*%d\r\n",argc);
    for (j = 0; j < argc; j++) {
        cmd = sdscatprintf(cmd,"$%lu\r\n",
            (unsigned long)sdslen(argv[j]));
        cmd = sdscatlen(cmd,argv[j],sdslen(argv[j]));
        cmd = sdscatlen(cmd,"\r\n",2);
    }

267
    while(repeat--) {
268
        anetWrite(fd,cmd,sdslen(cmd));
269
        while (config.monitor_mode) {
270 271 272
            cliReadSingleLineReply(fd,0);
        }

273 274 275 276 277 278 279 280
        if (config.pubsub_mode) {
            printf("Reading messages... (press Ctrl-c to quit)\n");
            while (1) {
                cliReadReply(fd);
                printf("\n");
            }
        }

281 282
        retval = cliReadReply(fd);
        if (retval) {
283
            return retval;
284
        }
A
antirez 已提交
285 286 287 288 289 290 291 292 293
    }
    return 0;
}

static int parseOptions(int argc, char **argv) {
    int i;

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

A
antirez 已提交
295 296 297 298 299 300 301 302
        if (!strcmp(argv[i],"-h") && !lastarg) {
            char *ip = zmalloc(32);
            if (anetResolve(NULL,argv[i+1],ip) == ANET_ERR) {
                printf("Can't resolve %s\n", argv[i]);
                exit(1);
            }
            config.hostip = ip;
            i++;
A
antirez 已提交
303 304
        } else if (!strcmp(argv[i],"-h") && lastarg) {
            usage();
A
antirez 已提交
305 306 307
        } else if (!strcmp(argv[i],"-p") && !lastarg) {
            config.hostport = atoi(argv[i+1]);
            i++;
308 309 310
        } else if (!strcmp(argv[i],"-r") && !lastarg) {
            config.repeat = strtoll(argv[i+1],NULL,10);
            i++;
I
ian 已提交
311 312 313
        } else if (!strcmp(argv[i],"-n") && !lastarg) {
            config.dbnum = atoi(argv[i+1]);
            i++;
314
        } else if (!strcmp(argv[i],"-a") && !lastarg) {
A
antirez 已提交
315
            config.auth = argv[i+1];
316
            i++;
317 318
        } else if (!strcmp(argv[i],"-i")) {
            config.interactive = 1;
319 320
        } else if (!strcmp(argv[i],"-c")) {
            config.argn_from_stdin = 1;
321 322 323
        } else if (!strcmp(argv[i],"-v")) {
            printf("redis-cli shipped with Redis verison %s\n", REDIS_VERSION);
            exit(0);
A
antirez 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
        } 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 已提交
348
static void usage() {
349
    fprintf(stderr, "usage: redis-cli [-iv] [-h host] [-p port] [-a authpw] [-r repeat_times] [-n db_num] cmd arg1 arg2 arg3 ... argN\n");
350
    fprintf(stderr, "usage: echo \"argN\" | redis-cli -c [-h host] [-p port] [-a authpw] [-r repeat_times] [-n db_num] cmd arg1 arg2 ... arg(N-1)\n");
A
antirez 已提交
351 352 353 354
    fprintf(stderr, "\nIf a pipe from standard input is detected this data is used as last argument.\n\n");
    fprintf(stderr, "example: cat /etc/passwd | redis-cli set my_passwd\n");
    fprintf(stderr, "example: redis-cli get my_passwd\n");
    fprintf(stderr, "example: redis-cli -r 100 lpush mylist x\n");
355
    fprintf(stderr, "\nRun in interactive mode: redis-cli -i or just don't pass any command\n");
A
antirez 已提交
356 357 358
    exit(1);
}

359 360 361
/* Turn the plain C strings into Sds strings */
static char **convertToSds(int count, char** args) {
  int j;
362
  char **sds = zmalloc(sizeof(char*)*count);
363 364 365 366 367 368 369

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

  return sds;
}

370 371 372 373 374 375 376 377 378 379 380 381
static char **splitArguments(char *line, int *argc) {
    char *p = line;
    char *current = NULL;
    char **vector = NULL;

    *argc = 0;
    while(1) {
        /* skip blanks */
        while(*p && isspace(*p)) p++;
        if (*p) {
            /* get a token */
            int inq=0; /* set to 1 if we are in "quotes" */
382
            int done=0;
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

            if (current == NULL) current = sdsempty();
            while(!done) {
                if (inq) {
                    if (*p == '\\' && *(p+1)) {
                        char c;

                        p++;
                        switch(*p) {
                        case 'n': c = '\n'; break;
                        case 'r': c = '\r'; break;
                        case 't': c = '\t'; break;
                        case 'b': c = '\b'; break;
                        case 'a': c = '\a'; break;
                        default: c = *p; break;
                        }
                        current = sdscatlen(current,&c,1);
                    } else if (*p == '"') {
401 402 403 404 405 406
                        /* closing quote must be followed by a space */
                        if (*(p+1) && !isspace(*(p+1))) goto err;
                        done=1;
                    } else if (!*p) {
                        /* unterminated quotes */
                        goto err;
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
                    } else {
                        current = sdscatlen(current,p,1);
                    }
                } else {
                    switch(*p) {
                    case ' ':
                    case '\n':
                    case '\r':
                    case '\t':
                    case '\0':
                        done=1;
                        break;
                    case '"':
                        inq=1;
                        break;
                    default:
                        current = sdscatlen(current,p,1);
                        break;
                    }
                }
                if (*p) p++;
            }
            /* add the token to the vector */
            vector = zrealloc(vector,((*argc)+1)*sizeof(char*));
            vector[*argc] = current;
            (*argc)++;
            current = NULL;
        } else {
            return vector;
        }
    }
438 439 440 441 442 443 444

err:
    while(*argc--)
        sdsfree(vector[*argc]);
    zfree(vector);
    if (current) sdsfree(current);
    return NULL;
445 446 447
}

#define LINE_BUFLEN 4096
448
static void repl() {
449 450
    int argc, j;
    char *line, **argv;
451

A
antirez 已提交
452
    while((line = linenoise("redis> ")) != NULL) {
453
        if (line[0] != '\0') {
454 455
            argv = splitArguments(line,&argc);
            linenoiseHistoryAdd(line);
456
            if (config.historyfile) linenoiseHistorySave(config.historyfile);
457 458 459 460
            if (argv == NULL) {
                printf("Invalid argument(s)\n");
                continue;
            } else if (argc > 0) {
461 462 463 464 465 466 467 468 469
                if (strcasecmp(argv[0],"quit") == 0 ||
                    strcasecmp(argv[0],"exit") == 0)
                        exit(0);
                else
                    cliSendCommand(argc, argv, 1);
            }
            /* Free the argument vector */
            for (j = 0; j < argc; j++)
                sdsfree(argv[j]);
470
            zfree(argv);
471
        }
472
        /* linenoise() returns malloc-ed lines like readline() */
473
        free(line);
474 475 476 477
    }
    exit(0);
}

A
antirez 已提交
478
int main(int argc, char **argv) {
479
    int firstarg;
A
antirez 已提交
480 481 482 483
    char **argvcopy;

    config.hostip = "127.0.0.1";
    config.hostport = 6379;
484
    config.repeat = 1;
I
ian 已提交
485
    config.dbnum = 0;
486
    config.argn_from_stdin = 0;
487
    config.shutdown = 0;
488
    config.interactive = 0;
489 490
    config.monitor_mode = 0;
    config.pubsub_mode = 0;
491
    config.raw_output = 0;
A
antirez 已提交
492
    config.auth = NULL;
493 494 495 496 497 498 499
    config.historyfile = NULL;

    if (getenv("HOME") != NULL) {
        config.historyfile = malloc(256);
        snprintf(config.historyfile,256,"%s/.rediscli_history",getenv("HOME"));
        linenoiseHistoryLoad(config.historyfile);
    }
A
antirez 已提交
500 501 502 503 504

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

505 506 507 508 509 510 511 512
    if (config.auth != NULL) {
        char *authargv[2];

        authargv[0] = "AUTH";
        authargv[1] = config.auth;
        cliSendCommand(2, convertToSds(2, authargv), 1);
    }

513 514 515 516
    if (argc == 0 || config.interactive == 1) {
        config.interactive = 1;
        repl();
    }
A
antirez 已提交
517

518 519
    argvcopy = convertToSds(argc+1, argv);
    if (config.argn_from_stdin) {
520 521 522
        sds lastarg = readArgFromStdin();
        argvcopy[argc] = lastarg;
        argc++;
523
    }
524
    return cliSendCommand(argc, argvcopy, config.repeat);
A
antirez 已提交
525
}