summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-command-prompt.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2019-05-23 11:13:30 +0000
committernicm <nicm@openbsd.org>2019-05-23 11:13:30 +0000
commitdf6ab229bce9251ad808cfb9b44debfeacfe2a00 (patch)
tree68febb917817f193559da2f7944e51bd2c9aff58 /usr.bin/tmux/cmd-command-prompt.c
parentdrop STUB() calls in paths frequently called when running xorg (diff)
downloadwireguard-openbsd-df6ab229bce9251ad808cfb9b44debfeacfe2a00.tar.xz
wireguard-openbsd-df6ab229bce9251ad808cfb9b44debfeacfe2a00.zip
Replace the split parser code (cfg.c and cmd-string.c) with a single
parser using yacc(1). This is a major change but is clearer and simpler and allows some edge cases to be made more consistent, as well as tidying up how aliases are handled. It will also allow some further improvements later. Entirely the same parser is now used for parsing the configuration file and for string commands. This means that constructs previously only available in .tmux.conf, such as %if, can now be used in string commands (for example, those given to if-shell - not commands invoked from the shell, they are still parsed by the shell itself). The only syntax change I am aware of is that #{} outside quotes or a comment is now considered a format and not a comment, so #{ is now a syntax error (notably, if it is at the start of a line). This also adds two new sections to the man page documenting the syntax and outlining how parsing and command execution works. Thanks to everyone who sent me test configs (they still all parse without errors - but this doesn't mean they still work as intended!). Thanks to Avi Halachmi for testing and man page improvements, also to jmc@ for reviewing the man page changes.
Diffstat (limited to 'usr.bin/tmux/cmd-command-prompt.c')
-rw-r--r--usr.bin/tmux/cmd-command-prompt.c34
1 files changed, 18 insertions, 16 deletions
diff --git a/usr.bin/tmux/cmd-command-prompt.c b/usr.bin/tmux/cmd-command-prompt.c
index 909a537e153..f297195b509 100644
--- a/usr.bin/tmux/cmd-command-prompt.c
+++ b/usr.bin/tmux/cmd-command-prompt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-command-prompt.c,v 1.45 2019/05/20 11:46:06 nicm Exp $ */
+/* $OpenBSD: cmd-command-prompt.c,v 1.46 2019/05/23 11:13:30 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -134,10 +134,10 @@ cmd_command_prompt_callback(struct client *c, void *data, const char *s,
int done)
{
struct cmd_command_prompt_cdata *cdata = data;
- struct cmd_list *cmdlist;
struct cmdq_item *new_item;
- char *cause, *new_template, *prompt, *ptr;
+ char *new_template, *prompt, *ptr;
char *input = NULL;
+ struct cmd_parse_result *pr;
if (s == NULL)
return (0);
@@ -164,20 +164,22 @@ cmd_command_prompt_callback(struct client *c, void *data, const char *s,
return (1);
}
- cmdlist = cmd_string_parse(new_template, NULL, 0, &cause);
- if (cmdlist == NULL) {
- if (cause != NULL)
- new_item = cmdq_get_error(cause);
- else
- new_item = NULL;
- free(cause);
- } else {
- new_item = cmdq_get_command(cmdlist, NULL, NULL, 0);
- cmd_list_free(cmdlist);
- }
-
- if (new_item != NULL)
+ pr = cmd_parse_from_string(new_template, NULL);
+ switch (pr->status) {
+ case CMD_PARSE_EMPTY:
+ new_item = NULL;
+ break;
+ case CMD_PARSE_ERROR:
+ new_item = cmdq_get_error(pr->error);
+ free(pr->error);
cmdq_append(c, new_item);
+ break;
+ case CMD_PARSE_SUCCESS:
+ new_item = cmdq_get_command(pr->cmdlist, NULL, NULL, 0);
+ cmd_list_free(pr->cmdlist);
+ cmdq_append(c, new_item);
+ break;
+ }
if (!done)
free(new_template);