summaryrefslogtreecommitdiffstats
path: root/control.c
diff options
context:
space:
mode:
authornicm <nicm>2019-05-23 11:13:30 +0000
committernicm <nicm>2019-05-23 11:13:30 +0000
commit723010ba72e337832402f8e44981c02caa30b476 (patch)
treea7fa1089f4d5dc368a44702489cf176afbcfec55 /control.c
parent5571d7a21c5dc920eb9d25336b5bb7b04d72fc9d (diff)
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 'control.c')
-rw-r--r--control.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/control.c b/control.c
index 41c50df7..b7ac3f62 100644
--- a/control.c
+++ b/control.c
@@ -68,9 +68,9 @@ control_error(struct cmdq_item *item, void *data)
void
control_callback(struct client *c, int closed, __unused void *data)
{
- char *line, *cause;
- struct cmd_list *cmdlist;
+ char *line;
struct cmdq_item *item;
+ struct cmd_parse_result *pr;
if (closed)
c->flags |= CLIENT_EXIT;
@@ -84,15 +84,21 @@ control_callback(struct client *c, int closed, __unused void *data)
break;
}
- cmdlist = cmd_string_parse(line, NULL, 0, &cause);
- if (cmdlist == NULL) {
- item = cmdq_get_callback(control_error, cause);
+ pr = cmd_parse_from_string(line, NULL);
+ switch (pr->status) {
+ case CMD_PARSE_EMPTY:
+ break;
+ case CMD_PARSE_ERROR:
+ item = cmdq_get_callback(control_error, pr->error);
cmdq_append(c, item);
- } else {
- item = cmdq_get_command(cmdlist, NULL, NULL, 0);
+ free(pr->error);
+ break;
+ case CMD_PARSE_SUCCESS:
+ item = cmdq_get_command(pr->cmdlist, NULL, NULL, 0);
item->shared->flags |= CMDQ_SHARED_CONTROL;
cmdq_append(c, item);
- cmd_list_free(cmdlist);
+ cmd_list_free(pr->cmdlist);
+ break;
}
free(line);