]>
Commit | Line | Data |
---|---|---|
ed9b544e | 1 | /* Redis CLI (command line interface) |
2 | * | |
3 | * Copyright (c) 2006-2009, 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 | ||
23d4709d | 31 | #include "fmacros.h" |
32 | ||
ed9b544e | 33 | #include <stdio.h> |
34 | #include <string.h> | |
35 | #include <stdlib.h> | |
36 | #include <unistd.h> | |
37 | ||
38 | #include "anet.h" | |
39 | #include "sds.h" | |
40 | #include "adlist.h" | |
41 | #include "zmalloc.h" | |
42 | ||
43 | #define REDIS_CMD_INLINE 1 | |
44 | #define REDIS_CMD_BULK 2 | |
e17e0b05 | 45 | #define REDIS_CMD_MULTIBULK 4 |
ed9b544e | 46 | |
47 | #define REDIS_NOTUSED(V) ((void) V) | |
48 | ||
49 | static struct config { | |
50 | char *hostip; | |
51 | int hostport; | |
5762b7f0 | 52 | long repeat; |
62e920df | 53 | int dbnum; |
ed9b544e | 54 | } config; |
55 | ||
56 | struct redisCommand { | |
57 | char *name; | |
58 | int arity; | |
59 | int flags; | |
60 | }; | |
61 | ||
62 | static struct redisCommand cmdTable[] = { | |
c937aa89 | 63 | {"get",2,REDIS_CMD_INLINE}, |
64 | {"set",3,REDIS_CMD_BULK}, | |
65 | {"setnx",3,REDIS_CMD_BULK}, | |
5109cdff | 66 | {"del",-2,REDIS_CMD_INLINE}, |
c937aa89 | 67 | {"exists",2,REDIS_CMD_INLINE}, |
68 | {"incr",2,REDIS_CMD_INLINE}, | |
69 | {"decr",2,REDIS_CMD_INLINE}, | |
70 | {"rpush",3,REDIS_CMD_BULK}, | |
71 | {"lpush",3,REDIS_CMD_BULK}, | |
72 | {"rpop",2,REDIS_CMD_INLINE}, | |
73 | {"lpop",2,REDIS_CMD_INLINE}, | |
74 | {"llen",2,REDIS_CMD_INLINE}, | |
75 | {"lindex",3,REDIS_CMD_INLINE}, | |
76 | {"lset",4,REDIS_CMD_BULK}, | |
77 | {"lrange",4,REDIS_CMD_INLINE}, | |
78 | {"ltrim",4,REDIS_CMD_INLINE}, | |
79 | {"lrem",4,REDIS_CMD_BULK}, | |
0f5f7e9a | 80 | {"rpoplpush",3,REDIS_CMD_BULK}, |
c937aa89 | 81 | {"sadd",3,REDIS_CMD_BULK}, |
82 | {"srem",3,REDIS_CMD_BULK}, | |
a4460ef4 | 83 | {"smove",4,REDIS_CMD_BULK}, |
c937aa89 | 84 | {"sismember",3,REDIS_CMD_BULK}, |
85 | {"scard",2,REDIS_CMD_INLINE}, | |
12fea928 | 86 | {"spop",2,REDIS_CMD_INLINE}, |
2abb95a9 | 87 | {"srandmember",2,REDIS_CMD_INLINE}, |
c937aa89 | 88 | {"sinter",-2,REDIS_CMD_INLINE}, |
89 | {"sinterstore",-3,REDIS_CMD_INLINE}, | |
40d224a9 | 90 | {"sunion",-2,REDIS_CMD_INLINE}, |
91 | {"sunionstore",-3,REDIS_CMD_INLINE}, | |
f4f56e1d | 92 | {"sdiff",-2,REDIS_CMD_INLINE}, |
93 | {"sdiffstore",-3,REDIS_CMD_INLINE}, | |
c937aa89 | 94 | {"smembers",2,REDIS_CMD_INLINE}, |
fd8ccf44 | 95 | {"zadd",4,REDIS_CMD_BULK}, |
7db723ad | 96 | {"zincrby",4,REDIS_CMD_BULK}, |
1b7106e7 | 97 | {"zrem",3,REDIS_CMD_BULK}, |
1807985b | 98 | {"zremrangebyscore",4,REDIS_CMD_INLINE}, |
cc812361 | 99 | {"zrange",4,REDIS_CMD_INLINE}, |
80181f78 | 100 | {"zrangebyscore",-4,REDIS_CMD_INLINE}, |
e3870fab | 101 | {"zrevrange",4,REDIS_CMD_INLINE}, |
3c41331e | 102 | {"zcard",2,REDIS_CMD_INLINE}, |
6e333bbe | 103 | {"zscore",3,REDIS_CMD_BULK}, |
c937aa89 | 104 | {"incrby",3,REDIS_CMD_INLINE}, |
105 | {"decrby",3,REDIS_CMD_INLINE}, | |
a431eb74 | 106 | {"getset",3,REDIS_CMD_BULK}, |
c937aa89 | 107 | {"randomkey",1,REDIS_CMD_INLINE}, |
108 | {"select",2,REDIS_CMD_INLINE}, | |
109 | {"move",3,REDIS_CMD_INLINE}, | |
110 | {"rename",3,REDIS_CMD_INLINE}, | |
111 | {"renamenx",3,REDIS_CMD_INLINE}, | |
112 | {"keys",2,REDIS_CMD_INLINE}, | |
113 | {"dbsize",1,REDIS_CMD_INLINE}, | |
114 | {"ping",1,REDIS_CMD_INLINE}, | |
115 | {"echo",2,REDIS_CMD_BULK}, | |
116 | {"save",1,REDIS_CMD_INLINE}, | |
117 | {"bgsave",1,REDIS_CMD_INLINE}, | |
9d65a1bb | 118 | {"rewriteaof",1,REDIS_CMD_INLINE}, |
119 | {"bgrewriteaof",1,REDIS_CMD_INLINE}, | |
c937aa89 | 120 | {"shutdown",1,REDIS_CMD_INLINE}, |
121 | {"lastsave",1,REDIS_CMD_INLINE}, | |
122 | {"type",2,REDIS_CMD_INLINE}, | |
123 | {"flushdb",1,REDIS_CMD_INLINE}, | |
124 | {"flushall",1,REDIS_CMD_INLINE}, | |
125 | {"sort",-2,REDIS_CMD_INLINE}, | |
126 | {"info",1,REDIS_CMD_INLINE}, | |
127 | {"mget",-2,REDIS_CMD_INLINE}, | |
3305306f | 128 | {"expire",3,REDIS_CMD_INLINE}, |
802e8373 | 129 | {"expireat",3,REDIS_CMD_INLINE}, |
fd88489a | 130 | {"ttl",2,REDIS_CMD_INLINE}, |
321b0e13 | 131 | {"slaveof",3,REDIS_CMD_INLINE}, |
333298da | 132 | {"debug",-2,REDIS_CMD_INLINE}, |
8165a5f2 | 133 | {"mset",-3,REDIS_CMD_MULTIBULK}, |
134 | {"msetnx",-3,REDIS_CMD_MULTIBULK}, | |
ed9b544e | 135 | {NULL,0,0} |
136 | }; | |
137 | ||
c937aa89 | 138 | static int cliReadReply(int fd); |
139 | ||
ed9b544e | 140 | static struct redisCommand *lookupCommand(char *name) { |
141 | int j = 0; | |
142 | while(cmdTable[j].name != NULL) { | |
143 | if (!strcasecmp(name,cmdTable[j].name)) return &cmdTable[j]; | |
144 | j++; | |
145 | } | |
146 | return NULL; | |
147 | } | |
148 | ||
149 | static int cliConnect(void) { | |
150 | char err[ANET_ERR_LEN]; | |
151 | int fd; | |
152 | ||
153 | fd = anetTcpConnect(err,config.hostip,config.hostport); | |
154 | if (fd == ANET_ERR) { | |
155 | fprintf(stderr,"Connect: %s\n",err); | |
156 | return -1; | |
157 | } | |
158 | anetTcpNoDelay(NULL,fd); | |
159 | return fd; | |
160 | } | |
161 | ||
162 | static sds cliReadLine(int fd) { | |
163 | sds line = sdsempty(); | |
164 | ||
165 | while(1) { | |
166 | char c; | |
b91f03a4 | 167 | ssize_t ret; |
ed9b544e | 168 | |
b91f03a4 LH |
169 | ret = read(fd,&c,1); |
170 | if (ret == -1) { | |
ed9b544e | 171 | sdsfree(line); |
172 | return NULL; | |
b91f03a4 | 173 | } else if ((ret == 0) || (c == '\n')) { |
ed9b544e | 174 | break; |
175 | } else { | |
176 | line = sdscatlen(line,&c,1); | |
177 | } | |
178 | } | |
179 | return sdstrim(line,"\r\n"); | |
180 | } | |
181 | ||
62e920df | 182 | static int cliReadSingleLineReply(int fd, int quiet) { |
ed9b544e | 183 | sds reply = cliReadLine(fd); |
184 | ||
185 | if (reply == NULL) return 1; | |
62e920df | 186 | if (!quiet) |
187 | printf("%s\n", reply); | |
ed9b544e | 188 | return 0; |
189 | } | |
190 | ||
c937aa89 | 191 | static int cliReadBulkReply(int fd) { |
ed9b544e | 192 | sds replylen = cliReadLine(fd); |
193 | char *reply, crlf[2]; | |
c937aa89 | 194 | int bulklen; |
ed9b544e | 195 | |
196 | if (replylen == NULL) return 1; | |
ed9b544e | 197 | bulklen = atoi(replylen); |
c937aa89 | 198 | if (bulklen == -1) { |
ed9b544e | 199 | sdsfree(replylen); |
060f6be6 | 200 | printf("(nil)\n"); |
ed9b544e | 201 | return 0; |
202 | } | |
ed9b544e | 203 | reply = zmalloc(bulklen); |
204 | anetRead(fd,reply,bulklen); | |
205 | anetRead(fd,crlf,2); | |
206 | if (bulklen && fwrite(reply,bulklen,1,stdout) == 0) { | |
207 | zfree(reply); | |
208 | return 1; | |
209 | } | |
c937aa89 | 210 | if (isatty(fileno(stdout)) && reply[bulklen-1] != '\n') |
ed9b544e | 211 | printf("\n"); |
212 | zfree(reply); | |
c937aa89 | 213 | return 0; |
ed9b544e | 214 | } |
215 | ||
216 | static int cliReadMultiBulkReply(int fd) { | |
217 | sds replylen = cliReadLine(fd); | |
218 | int elements, c = 1; | |
219 | ||
220 | if (replylen == NULL) return 1; | |
c937aa89 | 221 | elements = atoi(replylen); |
222 | if (elements == -1) { | |
ed9b544e | 223 | sdsfree(replylen); |
224 | printf("(nil)\n"); | |
225 | return 0; | |
226 | } | |
c937aa89 | 227 | if (elements == 0) { |
228 | printf("(empty list or set)\n"); | |
229 | } | |
ed9b544e | 230 | while(elements--) { |
231 | printf("%d. ", c); | |
c937aa89 | 232 | if (cliReadReply(fd)) return 1; |
ed9b544e | 233 | c++; |
234 | } | |
235 | return 0; | |
236 | } | |
237 | ||
c937aa89 | 238 | static int cliReadReply(int fd) { |
239 | char type; | |
240 | ||
241 | if (anetRead(fd,&type,1) <= 0) exit(1); | |
242 | switch(type) { | |
243 | case '-': | |
244 | printf("(error) "); | |
62e920df | 245 | cliReadSingleLineReply(fd,0); |
c937aa89 | 246 | return 1; |
247 | case '+': | |
62e920df | 248 | return cliReadSingleLineReply(fd,0); |
c937aa89 | 249 | case ':': |
443c6409 | 250 | printf("(integer) "); |
62e920df | 251 | return cliReadSingleLineReply(fd,0); |
c937aa89 | 252 | case '$': |
253 | return cliReadBulkReply(fd); | |
254 | case '*': | |
255 | return cliReadMultiBulkReply(fd); | |
256 | default: | |
257 | printf("protocol error, got '%c' as reply type byte\n", type); | |
258 | return 1; | |
259 | } | |
260 | } | |
261 | ||
62e920df | 262 | static int selectDb(int fd) |
263 | { | |
264 | int retval; | |
265 | sds cmd; | |
266 | char type; | |
267 | ||
268 | if (config.dbnum == 0) | |
269 | return 0; | |
270 | ||
271 | cmd = sdsempty(); | |
272 | cmd = sdscatprintf(cmd,"SELECT %d\r\n",config.dbnum); | |
273 | anetWrite(fd,cmd,sdslen(cmd)); | |
274 | anetRead(fd,&type,1); | |
275 | if (type <= 0 || type != '+') return 1; | |
276 | retval = cliReadSingleLineReply(fd,1); | |
277 | if (retval) { | |
278 | close(fd); | |
279 | return retval; | |
280 | } | |
281 | return 0; | |
282 | } | |
283 | ||
ed9b544e | 284 | static int cliSendCommand(int argc, char **argv) { |
285 | struct redisCommand *rc = lookupCommand(argv[0]); | |
286 | int fd, j, retval = 0; | |
5762b7f0 | 287 | sds cmd; |
ed9b544e | 288 | |
289 | if (!rc) { | |
290 | fprintf(stderr,"Unknown command '%s'\n",argv[0]); | |
291 | return 1; | |
292 | } | |
293 | ||
294 | if ((rc->arity > 0 && argc != rc->arity) || | |
a74f2af6 | 295 | (rc->arity < 0 && argc < -rc->arity)) { |
ed9b544e | 296 | fprintf(stderr,"Wrong number of arguments for '%s'\n",rc->name); |
297 | return 1; | |
298 | } | |
299 | if ((fd = cliConnect()) == -1) return 1; | |
300 | ||
62e920df | 301 | /* Select db number */ |
302 | retval = selectDb(fd); | |
303 | if (retval) { | |
304 | fprintf(stderr,"Error setting DB num\n"); | |
305 | return 1; | |
306 | } | |
307 | ||
5762b7f0 | 308 | while(config.repeat--) { |
309 | /* Build the command to send */ | |
310 | cmd = sdsempty(); | |
311 | if (rc->flags & REDIS_CMD_MULTIBULK) { | |
312 | cmd = sdscatprintf(cmd,"*%d\r\n",argc); | |
313 | for (j = 0; j < argc; j++) { | |
57033301 | 314 | cmd = sdscatprintf(cmd,"$%lu\r\n",sdslen(argv[j])); |
8165a5f2 | 315 | cmd = sdscatlen(cmd,argv[j],sdslen(argv[j])); |
5762b7f0 | 316 | cmd = sdscatlen(cmd,"\r\n",2); |
317 | } | |
318 | } else { | |
319 | for (j = 0; j < argc; j++) { | |
320 | if (j != 0) cmd = sdscat(cmd," "); | |
321 | if (j == argc-1 && rc->flags & REDIS_CMD_BULK) { | |
57033301 | 322 | cmd = sdscatprintf(cmd,"%lu",sdslen(argv[j])); |
5762b7f0 | 323 | } else { |
324 | cmd = sdscatlen(cmd,argv[j],sdslen(argv[j])); | |
325 | } | |
326 | } | |
327 | cmd = sdscat(cmd,"\r\n"); | |
328 | if (rc->flags & REDIS_CMD_BULK) { | |
329 | cmd = sdscatlen(cmd,argv[argc-1],sdslen(argv[argc-1])); | |
330 | cmd = sdscatlen(cmd,"\r\n",2); | |
8165a5f2 | 331 | } |
ed9b544e | 332 | } |
5762b7f0 | 333 | anetWrite(fd,cmd,sdslen(cmd)); |
334 | sdsfree(cmd); | |
335 | retval = cliReadReply(fd); | |
336 | if (retval) { | |
337 | close(fd); | |
338 | return retval; | |
8165a5f2 | 339 | } |
ed9b544e | 340 | } |
ed9b544e | 341 | close(fd); |
342 | return 0; | |
343 | } | |
344 | ||
345 | static int parseOptions(int argc, char **argv) { | |
346 | int i; | |
347 | ||
348 | for (i = 1; i < argc; i++) { | |
349 | int lastarg = i==argc-1; | |
350 | ||
351 | if (!strcmp(argv[i],"-h") && !lastarg) { | |
352 | char *ip = zmalloc(32); | |
353 | if (anetResolve(NULL,argv[i+1],ip) == ANET_ERR) { | |
354 | printf("Can't resolve %s\n", argv[i]); | |
355 | exit(1); | |
356 | } | |
357 | config.hostip = ip; | |
358 | i++; | |
359 | } else if (!strcmp(argv[i],"-p") && !lastarg) { | |
360 | config.hostport = atoi(argv[i+1]); | |
361 | i++; | |
5762b7f0 | 362 | } else if (!strcmp(argv[i],"-r") && !lastarg) { |
363 | config.repeat = strtoll(argv[i+1],NULL,10); | |
364 | i++; | |
62e920df | 365 | } else if (!strcmp(argv[i],"-n") && !lastarg) { |
366 | config.dbnum = atoi(argv[i+1]); | |
367 | i++; | |
ed9b544e | 368 | } else { |
369 | break; | |
370 | } | |
371 | } | |
372 | return i; | |
373 | } | |
374 | ||
375 | static sds readArgFromStdin(void) { | |
376 | char buf[1024]; | |
377 | sds arg = sdsempty(); | |
378 | ||
379 | while(1) { | |
380 | int nread = read(fileno(stdin),buf,1024); | |
381 | ||
382 | if (nread == 0) break; | |
383 | else if (nread == -1) { | |
384 | perror("Reading from standard input"); | |
385 | exit(1); | |
386 | } | |
387 | arg = sdscatlen(arg,buf,nread); | |
388 | } | |
389 | return arg; | |
390 | } | |
391 | ||
392 | int main(int argc, char **argv) { | |
393 | int firstarg, j; | |
394 | char **argvcopy; | |
2073a849 | 395 | struct redisCommand *rc; |
ed9b544e | 396 | |
397 | config.hostip = "127.0.0.1"; | |
398 | config.hostport = 6379; | |
5762b7f0 | 399 | config.repeat = 1; |
62e920df | 400 | config.dbnum = 0; |
ed9b544e | 401 | |
402 | firstarg = parseOptions(argc,argv); | |
403 | argc -= firstarg; | |
404 | argv += firstarg; | |
405 | ||
406 | /* Turn the plain C strings into Sds strings */ | |
407 | argvcopy = zmalloc(sizeof(char*)*argc+1); | |
408 | for(j = 0; j < argc; j++) | |
409 | argvcopy[j] = sdsnew(argv[j]); | |
410 | ||
ed9b544e | 411 | if (argc < 1) { |
62e920df | 412 | fprintf(stderr, "usage: redis-cli [-h host] [-p port] [-r repeat_times] [-n db_num] cmd arg1 arg2 arg3 ... argN\n"); |
413 | fprintf(stderr, "usage: echo \"argN\" | redis-cli [-h host] [-p port] [-r repeat_times] [-n db_num] cmd arg1 arg2 ... arg(N-1)\n"); | |
ed9b544e | 414 | fprintf(stderr, "\nIf a pipe from standard input is detected this data is used as last argument.\n\n"); |
415 | fprintf(stderr, "example: cat /etc/passwd | redis-cli set my_passwd\n"); | |
416 | fprintf(stderr, "example: redis-cli get my_passwd\n"); | |
5762b7f0 | 417 | fprintf(stderr, "example: redis-cli -r 100 lpush mylist x\n"); |
ed9b544e | 418 | exit(1); |
419 | } | |
420 | ||
2073a849 | 421 | /* Read the last argument from stdandard input if needed */ |
422 | if ((rc = lookupCommand(argv[0])) != NULL) { | |
423 | if (rc->arity > 0 && argc == rc->arity-1) { | |
424 | sds lastarg = readArgFromStdin(); | |
425 | argvcopy[argc] = lastarg; | |
426 | argc++; | |
427 | } | |
428 | } | |
429 | ||
ed9b544e | 430 | return cliSendCommand(argc, argvcopy); |
431 | } |