summaryrefslogtreecommitdiffstats
path: root/cmd-send-keys.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2011-01-07 14:45:34 +0000
committerTiago Cunha <tcunha@gmx.com>2011-01-07 14:45:34 +0000
commit1df427bc7b1a458f4d3fe6f9255010708a8d8634 (patch)
tree6d47a72a426bb3e18146c682591d398607a8a211 /cmd-send-keys.c
parent219442cff707a1febb6a75ba2cfe48b02ae0a22e (diff)
Sync OpenBSD patchset 829:
Clean up and simplify tmux command argument parsing. Originally, tmux commands were parsed in the client process into a struct with the command data which was then serialised and sent to the server to be executed. The parsing was later moved into the server (an argv was sent from the client), but the parse step and intermediate struct was kept. This change removes that struct and the separate parse step. Argument parsing and printing is now common to all commands (in arguments.c) with each command left with just an optional check function (to validate the arguments at parse time), the exec function and a function to set up any key bindings (renamed from the old init function). This is overall more simple and consistent. There should be no changes to any commands behaviour or syntax although as this touches every command please watch for any unexpected changes.
Diffstat (limited to 'cmd-send-keys.c')
-rw-r--r--cmd-send-keys.c126
1 files changed, 19 insertions, 107 deletions
diff --git a/cmd-send-keys.c b/cmd-send-keys.c
index c0c5f35a..f96bce83 100644
--- a/cmd-send-keys.c
+++ b/cmd-send-keys.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-send-keys.c,v 1.25 2010-05-22 21:56:04 micahcowan Exp $ */
+/* $Id: cmd-send-keys.c,v 1.26 2011-01-07 14:45:34 tcunha Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -26,128 +26,40 @@
* Send keys to client.
*/
-int cmd_send_keys_parse(struct cmd *, int, char **, char **);
int cmd_send_keys_exec(struct cmd *, struct cmd_ctx *);
-void cmd_send_keys_free(struct cmd *);
-size_t cmd_send_keys_print(struct cmd *, char *, size_t);
-
-struct cmd_send_keys_data {
- char *target;
- u_int nkeys;
- int *keys;
-};
const struct cmd_entry cmd_send_keys_entry = {
"send-keys", "send",
+ "t:", 0, -1,
"[-t target-pane] key ...",
- 0, "",
+ 0,
NULL,
- cmd_send_keys_parse,
- cmd_send_keys_exec,
- cmd_send_keys_free,
- cmd_send_keys_print
+ NULL,
+ cmd_send_keys_exec
};
int
-cmd_send_keys_parse(struct cmd *self, int argc, char **argv, char **cause)
+cmd_send_keys_exec(struct cmd *self, struct cmd_ctx *ctx)
{
- struct cmd_send_keys_data *data;
- int opt, key;
- char *s;
+ struct args *args = self->args;
+ struct window_pane *wp;
+ struct session *s;
+ const char *str;
+ int i, key;
- self->data = data = xmalloc(sizeof *data);
- data->target = NULL;
- data->nkeys = 0;
- data->keys = NULL;
+ if (cmd_find_pane(ctx, args_get(args, 't'), &s, &wp) == NULL)
+ return (-1);
- while ((opt = getopt(argc, argv, "t:")) != -1) {
- switch (opt) {
- case 't':
- if (data->target == NULL)
- data->target = xstrdup(optarg);
- break;
- default:
- goto usage;
- }
- }
- argc -= optind;
- argv += optind;
- if (argc == 0)
- goto usage;
+ for (i = 0; i < args->argc; i++) {
+ str = args->argv[i];
- while (argc-- != 0) {
- if ((key = key_string_lookup_string(*argv)) != KEYC_NONE) {
- data->keys = xrealloc(
- data->keys, data->nkeys + 1, sizeof *data->keys);
- data->keys[data->nkeys++] = key;
+ if ((key = key_string_lookup_string(str)) != KEYC_NONE) {
+ window_pane_key(wp, s, key);
} else {
- for (s = *argv; *s != '\0'; s++) {
- data->keys = xrealloc(data->keys,
- data->nkeys + 1, sizeof *data->keys);
- data->keys[data->nkeys++] = *s;
- }
+ for (; *str != '\0'; str++)
+ window_pane_key(wp, s, *str);
}
-
- argv++;
}
return (0);
-
-usage:
- xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
-
- self->entry->free(self);
- return (-1);
-}
-
-int
-cmd_send_keys_exec(struct cmd *self, struct cmd_ctx *ctx)
-{
- struct cmd_send_keys_data *data = self->data;
- struct window_pane *wp;
- struct session *s;
- u_int i;
-
- if (data == NULL)
- return (-1);
-
- if (cmd_find_pane(ctx, data->target, &s, &wp) == NULL)
- return (-1);
-
- for (i = 0; i < data->nkeys; i++)
- window_pane_key(wp, s, data->keys[i]);
-
- return (0);
-}
-
-void
-cmd_send_keys_free(struct cmd *self)
-{
- struct cmd_send_keys_data *data = self->data;
-
- if (data->target != NULL)
- xfree(data->target);
- xfree(data);
-}
-
-size_t
-cmd_send_keys_print(struct cmd *self, char *buf, size_t len)
-{
- struct cmd_send_keys_data *data = self->data;
- size_t off = 0;
- u_int i;
-
- off += xsnprintf(buf, len, "%s", self->entry->name);
- if (data == NULL)
- return (off);
- if (off < len && data->target != NULL)
- off += cmd_prarg(buf + off, len - off, " -t ", data->target);
-
- for (i = 0; i < data->nkeys; i++) {
- if (off >= len)
- break;
- off += xsnprintf(buf + off,
- len - off, " %s", key_string_lookup_key(data->keys[i]));
- }
- return (off);
}