Add interactive mode to redis-cli.
This commit is contained in:
parent
ed7451548a
commit
6cf5882c56
81
redis-cli.c
81
redis-cli.c
@ -51,6 +51,7 @@ static struct config {
|
|||||||
int hostport;
|
int hostport;
|
||||||
long repeat;
|
long repeat;
|
||||||
int dbnum;
|
int dbnum;
|
||||||
|
int interactive;
|
||||||
} config;
|
} config;
|
||||||
|
|
||||||
struct redisCommand {
|
struct redisCommand {
|
||||||
@ -266,8 +267,7 @@ static int cliReadReply(int fd) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int selectDb(int fd)
|
static int selectDb(int fd) {
|
||||||
{
|
|
||||||
int retval;
|
int retval;
|
||||||
sds cmd;
|
sds cmd;
|
||||||
char type;
|
char type;
|
||||||
@ -283,7 +283,7 @@ static int selectDb(int fd)
|
|||||||
retval = cliReadSingleLineReply(fd,1);
|
retval = cliReadSingleLineReply(fd,1);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
close(fd);
|
close(fd);
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -383,6 +383,8 @@ static int parseOptions(int argc, char **argv) {
|
|||||||
} else if (!strcmp(argv[i],"-n") && !lastarg) {
|
} else if (!strcmp(argv[i],"-n") && !lastarg) {
|
||||||
config.dbnum = atoi(argv[i+1]);
|
config.dbnum = atoi(argv[i+1]);
|
||||||
i++;
|
i++;
|
||||||
|
} else if (!strcmp(argv[i],"-i")) {
|
||||||
|
config.interactive = 1;
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -408,17 +410,66 @@ static sds readArgFromStdin(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void usage() {
|
static void usage() {
|
||||||
fprintf(stderr, "usage: redis-cli [-h host] [-p port] [-r repeat_times] [-n db_num] cmd arg1 arg2 arg3 ... argN\n");
|
fprintf(stderr, "usage: redis-cli [-h host] [-p port] [-r repeat_times] [-n db_num] [-i] cmd arg1 arg2 arg3 ... argN\n");
|
||||||
fprintf(stderr, "usage: echo \"argN\" | redis-cli [-h host] [-p port] [-r repeat_times] [-n db_num] cmd arg1 arg2 ... arg(N-1)\n");
|
fprintf(stderr, "usage: echo \"argN\" | redis-cli [-h host] [-p port] [-r repeat_times] [-n db_num] cmd arg1 arg2 ... arg(N-1)\n");
|
||||||
fprintf(stderr, "\nIf a pipe from standard input is detected this data is used as last argument.\n\n");
|
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: cat /etc/passwd | redis-cli set my_passwd\n");
|
||||||
fprintf(stderr, "example: redis-cli get my_passwd\n");
|
fprintf(stderr, "example: redis-cli get my_passwd\n");
|
||||||
fprintf(stderr, "example: redis-cli -r 100 lpush mylist x\n");
|
fprintf(stderr, "example: redis-cli -r 100 lpush mylist x\n");
|
||||||
|
fprintf(stderr, "\nRun in interactive mode: redis-cli -i \n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Turn the plain C strings into Sds strings */
|
||||||
|
static char **convertToSds(int count, char** args) {
|
||||||
|
int j;
|
||||||
|
char **sds = zmalloc(sizeof(char*)*count+1);
|
||||||
|
|
||||||
|
for(j = 0; j < count; j++)
|
||||||
|
sds[j] = sdsnew(args[j]);
|
||||||
|
|
||||||
|
return sds;
|
||||||
|
}
|
||||||
|
|
||||||
|
static char *prompt(char *line, int size) {
|
||||||
|
char *retval;
|
||||||
|
|
||||||
|
do {
|
||||||
|
printf(">> ");
|
||||||
|
retval = fgets(line, size, stdin);
|
||||||
|
} while (retval && *line == '\n');
|
||||||
|
|
||||||
|
fpurge(stdin);
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void repl() {
|
||||||
|
int size = 4096, max = size >> 1, argc;
|
||||||
|
char buffer[size];
|
||||||
|
char *line = buffer;
|
||||||
|
char **ap, *args[max];
|
||||||
|
|
||||||
|
while (prompt(line, size)) {
|
||||||
|
argc = 0;
|
||||||
|
|
||||||
|
for (ap = args; (*ap = strsep(&line, " \t")) != NULL;) {
|
||||||
|
if (**ap != '\0') {
|
||||||
|
if (argc >= max) break;
|
||||||
|
ap++;
|
||||||
|
argc++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
config.repeat = 1;
|
||||||
|
cliSendCommand(argc, convertToSds(argc, args));
|
||||||
|
line = buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
int firstarg, j;
|
int firstarg;
|
||||||
char **argvcopy;
|
char **argvcopy;
|
||||||
struct redisCommand *rc;
|
struct redisCommand *rc;
|
||||||
|
|
||||||
@ -426,25 +477,25 @@ int main(int argc, char **argv) {
|
|||||||
config.hostport = 6379;
|
config.hostport = 6379;
|
||||||
config.repeat = 1;
|
config.repeat = 1;
|
||||||
config.dbnum = 0;
|
config.dbnum = 0;
|
||||||
|
config.interactive = 0;
|
||||||
|
|
||||||
firstarg = parseOptions(argc,argv);
|
firstarg = parseOptions(argc,argv);
|
||||||
|
|
||||||
argc -= firstarg;
|
argc -= firstarg;
|
||||||
argv += firstarg;
|
argv += firstarg;
|
||||||
|
|
||||||
/* Turn the plain C strings into Sds strings */
|
if (config.interactive == 1) repl();
|
||||||
argvcopy = zmalloc(sizeof(char*)*argc+1);
|
|
||||||
for(j = 0; j < argc; j++)
|
|
||||||
argvcopy[j] = sdsnew(argv[j]);
|
|
||||||
|
|
||||||
if (argc < 1) usage();
|
if (argc < 1) usage();
|
||||||
|
|
||||||
|
argvcopy = convertToSds(argc, argv);
|
||||||
|
|
||||||
/* Read the last argument from stdandard input if needed */
|
/* Read the last argument from stdandard input if needed */
|
||||||
if ((rc = lookupCommand(argv[0])) != NULL) {
|
if ((rc = lookupCommand(argv[0])) != NULL) {
|
||||||
if (rc->arity > 0 && argc == rc->arity-1) {
|
if (rc->arity > 0 && argc == rc->arity-1) {
|
||||||
sds lastarg = readArgFromStdin();
|
sds lastarg = readArgFromStdin();
|
||||||
argvcopy[argc] = lastarg;
|
argvcopy[argc] = lastarg;
|
||||||
argc++;
|
argc++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return cliSendCommand(argc, argvcopy);
|
return cliSendCommand(argc, argvcopy);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user