mirror of
https://github.com/tmux/tmux.git
synced 2026-07-03 10:12:31 +00:00
317 lines
8.4 KiB
C
317 lines
8.4 KiB
C
/* $OpenBSD$ */
|
|
|
|
/*
|
|
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include "tmux.h"
|
|
|
|
/*
|
|
* Prompt for command in client.
|
|
*/
|
|
|
|
static enum args_parse_type cmd_command_prompt_args_parse(struct args *,
|
|
u_int, char **);
|
|
static enum cmd_retval cmd_command_prompt_exec(struct cmd *,
|
|
struct cmdq_item *);
|
|
|
|
static enum prompt_result cmd_command_prompt_callback(struct client *, void *,
|
|
const char *, enum prompt_key_result);
|
|
static void cmd_command_prompt_free(void *);
|
|
|
|
const struct cmd_entry cmd_command_prompt_entry = {
|
|
.name = "command-prompt",
|
|
.alias = NULL,
|
|
|
|
.args = { "1CbeFiklI:NPp:t:T:", 0, 1, cmd_command_prompt_args_parse },
|
|
.usage = "[-1CbeFiklNP] [-I inputs] [-p prompts] " CMD_TARGET_CLIENT_USAGE
|
|
" [-T prompt-type] [template]",
|
|
|
|
.flags = CMD_CLIENT_TFLAG,
|
|
.exec = cmd_command_prompt_exec
|
|
};
|
|
|
|
struct cmd_command_prompt_prompt {
|
|
char *input;
|
|
char *prompt;
|
|
};
|
|
|
|
struct cmd_command_prompt_cdata {
|
|
struct cmdq_item *item;
|
|
struct cmd_parse_tree *tree;
|
|
|
|
int flags;
|
|
enum prompt_type prompt_type;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct cmd_command_prompt_prompt *prompts;
|
|
u_int count;
|
|
u_int current;
|
|
|
|
int argc;
|
|
char **argv;
|
|
};
|
|
|
|
static enum args_parse_type
|
|
cmd_command_prompt_args_parse(__unused struct args *args, __unused u_int idx,
|
|
__unused char **cause)
|
|
{
|
|
return (ARGS_PARSE_COMMANDS_OR_STRING);
|
|
}
|
|
|
|
static enum cmd_retval
|
|
cmd_command_prompt_exec(struct cmd *self, struct cmdq_item *item)
|
|
{
|
|
struct args *args = cmd_get_args(self);
|
|
struct client *tc = cmdq_get_target_client(item);
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
|
const char *type, *s, *input, *cmd, *file;
|
|
struct cmd_command_prompt_cdata *cdata;
|
|
char *tmp, *prompts, *prompt, *next_prompt;
|
|
char *inputs = NULL, *next_input, *cause = NULL;
|
|
struct window_pane *wp = target->wp;
|
|
u_int count = args_count(args);
|
|
int wait = !args_has(args, 'b'), space = 1, n;
|
|
int pane = args_has(args, 'P');
|
|
|
|
if (pane) {
|
|
if (wp == NULL || window_pane_has_prompt(wp))
|
|
return (CMD_RETURN_NORMAL);
|
|
} else if (tc->prompt != NULL)
|
|
return (CMD_RETURN_NORMAL);
|
|
if (args_has(args, 'i'))
|
|
wait = 0;
|
|
|
|
cdata = xcalloc(1, sizeof *cdata);
|
|
if (wait)
|
|
cdata->item = item;
|
|
if (pane)
|
|
cdata->wp = wp;
|
|
if (count != 0) {
|
|
cdata->tree = args_to_commands(self, item, 0, NULL,
|
|
args_has(args, 'F'), &cause);
|
|
if (cdata->tree == NULL) {
|
|
cmdq_error(item, "%s", cause);
|
|
free(cause);
|
|
free(cdata);
|
|
return (CMD_RETURN_ERROR);
|
|
}
|
|
}
|
|
|
|
if ((s = args_get(args, 'p')) == NULL) {
|
|
if (count != 0) {
|
|
cmd = args_string(args, 0);
|
|
n = strcspn(cmd, " ,");
|
|
xasprintf(&prompts, "(%.*s)", n, cmd);
|
|
} else {
|
|
prompts = xstrdup(":");
|
|
space = 0;
|
|
}
|
|
next_prompt = prompts;
|
|
} else
|
|
next_prompt = prompts = xstrdup(s);
|
|
if ((s = args_get(args, 'I')) != NULL)
|
|
next_input = inputs = xstrdup(s);
|
|
else
|
|
next_input = NULL;
|
|
if (args_has(args, 'l')) {
|
|
cdata->prompts = xcalloc(1, sizeof *cdata->prompts);
|
|
cdata->prompts[0].prompt = prompts;
|
|
cdata->prompts[0].input = inputs;
|
|
cdata->count = 1;
|
|
} else {
|
|
while ((prompt = strsep(&next_prompt, ",")) != NULL) {
|
|
cdata->prompts = xreallocarray(cdata->prompts,
|
|
cdata->count + 1, sizeof *cdata->prompts);
|
|
if (!space)
|
|
tmp = xstrdup(prompt);
|
|
else
|
|
xasprintf(&tmp, "%s ", prompt);
|
|
cdata->prompts[cdata->count].prompt = tmp;
|
|
|
|
if (next_input != NULL) {
|
|
input = strsep(&next_input, ",");
|
|
if (input == NULL)
|
|
input = "";
|
|
} else
|
|
input = "";
|
|
cdata->prompts[cdata->count].input = xstrdup(input);
|
|
cdata->count++;
|
|
}
|
|
free(inputs);
|
|
free(prompts);
|
|
}
|
|
|
|
if ((type = args_get(args, 'T')) != NULL) {
|
|
cdata->prompt_type = prompt_type(type);
|
|
if (cdata->prompt_type == PROMPT_TYPE_INVALID) {
|
|
cmdq_error(item, "unknown type: %s", type);
|
|
cmd_command_prompt_free(cdata);
|
|
return (CMD_RETURN_ERROR);
|
|
}
|
|
} else
|
|
cdata->prompt_type = PROMPT_TYPE_COMMAND;
|
|
|
|
if (args_has(args, '1'))
|
|
cdata->flags |= PROMPT_SINGLE;
|
|
else if (args_has(args, 'N'))
|
|
cdata->flags |= PROMPT_NUMERIC;
|
|
else if (args_has(args, 'i'))
|
|
cdata->flags |= PROMPT_INCREMENTAL;
|
|
else if (args_has(args, 'k'))
|
|
cdata->flags |= PROMPT_KEY;
|
|
else if (args_has(args, 'e'))
|
|
cdata->flags |= PROMPT_BSPACE_EXIT;
|
|
if (args_has(args, 'C'))
|
|
cdata->flags |= PROMPT_NOFREEZE;
|
|
if (pane) {
|
|
cdata->flags |= PROMPT_ISPANE;
|
|
window_pane_set_prompt(wp, tc, target, cdata->prompts[0].prompt,
|
|
cdata->prompts[0].input, cmd_command_prompt_callback,
|
|
cmd_command_prompt_free, cdata, cdata->flags,
|
|
cdata->prompt_type);
|
|
} else {
|
|
status_prompt_set(tc, target, cdata->prompts[0].prompt,
|
|
cdata->prompts[0].input, cmd_command_prompt_callback,
|
|
cmd_command_prompt_free, cdata, cdata->flags,
|
|
cdata->prompt_type);
|
|
}
|
|
|
|
if (!wait)
|
|
return (CMD_RETURN_NORMAL);
|
|
return (CMD_RETURN_WAIT);
|
|
}
|
|
|
|
static enum prompt_result
|
|
cmd_command_prompt_callback(struct client *c, void *data, const char *s,
|
|
enum prompt_key_result key)
|
|
{
|
|
struct cmd_command_prompt_cdata *cdata = data;
|
|
char *error;
|
|
struct cmdq_item *item = cdata->item, *new_item;
|
|
struct cmdq_state *cs = NULL;
|
|
struct cmd_command_prompt_prompt *prompt;
|
|
struct cmd_invoke_input ci = { 0 };
|
|
struct cmd_parse_tree *tree;
|
|
struct cmd_parse_input pi = { 0 };
|
|
int argc = 0;
|
|
char **argv = NULL;
|
|
|
|
if (s == NULL || key == PROMPT_KEY_MOVE)
|
|
goto out;
|
|
|
|
if (key == PROMPT_KEY_CLOSE) {
|
|
if (cdata->flags & PROMPT_INCREMENTAL)
|
|
goto out;
|
|
cmd_append_argv(&cdata->argc, &cdata->argv, s);
|
|
if (++cdata->current != cdata->count) {
|
|
prompt = &cdata->prompts[cdata->current];
|
|
if (cdata->wp != NULL) {
|
|
window_pane_update_prompt(cdata->wp,
|
|
prompt->prompt, prompt->input);
|
|
} else
|
|
status_prompt_update(c, prompt->prompt,
|
|
prompt->input);
|
|
return (PROMPT_CONTINUE);
|
|
}
|
|
}
|
|
|
|
argc = cdata->argc;
|
|
argv = cmd_copy_argv(cdata->argc, cdata->argv);
|
|
if (key != PROMPT_KEY_CLOSE)
|
|
cmd_append_argv(&argc, &argv, s);
|
|
else {
|
|
cmd_free_argv(cdata->argc, cdata->argv);
|
|
cdata->argc = argc;
|
|
cdata->argv = cmd_copy_argv(argc, argv);
|
|
}
|
|
|
|
if (item != NULL)
|
|
cs = cmdq_get_state(item);
|
|
|
|
if (cdata->tree != NULL) {
|
|
/* Explicit body: prompt inputs become the template argv. */
|
|
ci.argc = argc;
|
|
ci.argv = argv;
|
|
new_item = cmd_invoke_get(cdata->tree, cs, &ci);
|
|
if (item == NULL)
|
|
cmdq_append(c, new_item);
|
|
else
|
|
cmdq_insert_after(item, new_item);
|
|
} else if (argc > 0 && argv[0] != NULL) {
|
|
/* No body: parse the submitted text as command language. */
|
|
tree = cmd_parse_from_string(argv[0], &pi, &error);
|
|
if (tree == NULL) {
|
|
if (item == NULL)
|
|
cmdq_append(c, cmdq_get_error(error));
|
|
else
|
|
cmdq_error(item, "%s", error);
|
|
free(error);
|
|
} else {
|
|
new_item = cmd_invoke_get(tree, cs, NULL);
|
|
cmd_parse_free(tree);
|
|
if (item == NULL)
|
|
cmdq_append(c, new_item);
|
|
else
|
|
cmdq_insert_after(item, new_item);
|
|
}
|
|
}
|
|
cmd_free_argv(argc, argv);
|
|
|
|
/*
|
|
* An incremental prompt fires its callback on every edit but must stay
|
|
* open for further typing; only an explicit close (handled above) ends
|
|
* it.
|
|
*/
|
|
if (cdata->flags & PROMPT_INCREMENTAL)
|
|
return (PROMPT_CONTINUE);
|
|
|
|
out:
|
|
if (item != NULL) {
|
|
cdata->item = NULL;
|
|
cmdq_continue(item);
|
|
}
|
|
return (PROMPT_CLOSE);
|
|
}
|
|
|
|
static void
|
|
cmd_command_prompt_free(void *data)
|
|
{
|
|
struct cmd_command_prompt_cdata *cdata = data;
|
|
u_int i;
|
|
|
|
if (cdata->item != NULL) {
|
|
cmdq_continue(cdata->item);
|
|
cdata->item = NULL;
|
|
}
|
|
|
|
for (i = 0; i < cdata->count; i++) {
|
|
free(cdata->prompts[i].prompt);
|
|
free(cdata->prompts[i].input);
|
|
}
|
|
free(cdata->prompts);
|
|
cmd_free_argv(cdata->argc, cdata->argv);
|
|
cmd_parse_free(cdata->tree);
|
|
free(cdata);
|
|
}
|