Skip to content
Snippets Groups Projects
Commit 1f38df24 authored by Eugine Blikh's avatar Eugine Blikh
Browse files

Add support of pager for dostring and not run exit dostring

parent b4818ec5
No related branches found
No related tags found
No related merge requests found
......@@ -142,10 +142,10 @@ tc_cmd_usage(void)
static int tc_cli_admin(char *cmd, int exit) {
char *e = NULL;
tc_query_admin_t cb = (exit) ? NULL : tc_query_admin_printer;
tc_pager_start();
if (!exit) tc_pager_start();
if (tc_query_admin(cmd, cb, &e) == -1)
return tc_cli_error(e);
tc_pager_stop();
if (!exit) tc_pager_stop();
return 0;
}
......@@ -163,10 +163,12 @@ tc_cmd_dostring(char *buf, size_t size, int *reconnect)
goto error;
tnt_tuple_free(&args);
char *e = NULL;
tc_pager_start();
if (tc_query_foreach(tc_query_printer, NULL, &e) == -1) {
*reconnect = tc_cli_error(e);
return -1;
}
tc_pager_stop();
return 0;
error:
tc_printf("error: %s\n", tnt_strerror(tc.net));
......@@ -419,7 +421,8 @@ int tc_cli(void)
/* setting prompt */
char prompt[128];
int prompt_len = snprintf(prompt, sizeof(prompt), "%s> ", tc.opt.host) - 2;
int prompt_len = snprintf(prompt, sizeof(prompt),
"%s> ", tc.opt.host) - 2;
char prompt_delim[128];
/* interactive mode */
char *part_cmd;
......@@ -431,8 +434,9 @@ int tc_cli(void)
if (isatty(STDIN_FILENO)) {
snprintf(prompt_delim, sizeof(prompt_delim),
"%*s> ", prompt_len, "-");
part_cmd = readline(!tc_buf_str_isempty(&cmd) ? prompt_delim
: prompt);
part_cmd = readline(!tc_buf_str_isempty(&cmd) ?
prompt_delim :
prompt);
} else {
clearerr(stdin);
part_cmd = tc_cli_readline_pipe();
......
......@@ -5,6 +5,7 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <string.h>
#include "client/tarantool/tc_opt.h"
#include "client/tarantool/tc_admin.h"
......@@ -24,19 +25,20 @@ void tc_pager_start() {
const char *const argv[] = {"/bin/bash", "-c", tc.opt.pager, NULL};
if (pipe(pipefd) < 0)
tc_error("Failed to open pipe. Errno: %d", errno);
tc_error("Failed to open pipe. Errno: %s", strerror(errno));
pid_t pid = fork();
if (pid < 0)
tc_error("Failed to fork. Errno: %d", errno);
if (pid == 0) {
if (pid < 0) {
tc_error("Failed to fork. Errno: %s", strerror(errno));
} else if (pid == 0) {
close(pipefd[1]);
dup2(pipefd[0], STDIN_FILENO);
execve(argv[0], (char * const*)argv, (char * const*)tc.opt.envp);
tc_error("Can't start pager! Errno: %d", errno);
tc_error("Can't start pager! Errno: %s", strerror(errno));
} else {
close(pipefd[0]);
tc.pager_fd = pipefd[1];
tc.pager_pid = pid;
}
close(pipefd[0]);
tc.pager_fd = pipefd[1];
tc.pager_pid = pid;
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment