[BACK]Return to cmd-send-keys.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/cmd-send-keys.c, Revision 1.65

1.65    ! nicm        1: /* $OpenBSD: cmd-send-keys.c,v 1.64 2020/05/25 18:57:24 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.28      nicm        4:  * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
                     21: #include <stdlib.h>
1.10      nicm       22: #include <string.h>
1.1       nicm       23:
                     24: #include "tmux.h"
                     25:
                     26: /*
                     27:  * Send keys to client.
                     28:  */
                     29:
1.33      nicm       30: static enum cmd_retval cmd_send_keys_exec(struct cmd *, struct cmdq_item *);
1.1       nicm       31:
                     32: const struct cmd_entry cmd_send_keys_entry = {
1.25      nicm       33:        .name = "send-keys",
                     34:        .alias = "send",
                     35:
1.51      nicm       36:        .args = { "FHlMN:Rt:X", 0, -1 },
                     37:        .usage = "[-FHlMRX] [-N repeat-count] " CMD_TARGET_PANE_USAGE
                     38:                 " key ...",
1.25      nicm       39:
1.39      nicm       40:        .target = { 't', CMD_FIND_PANE, 0 },
1.26      nicm       41:
1.31      nicm       42:        .flags = CMD_AFTERHOOK,
1.25      nicm       43:        .exec = cmd_send_keys_exec
1.1       nicm       44: };
                     45:
1.14      nicm       46: const struct cmd_entry cmd_send_prefix_entry = {
1.25      nicm       47:        .name = "send-prefix",
                     48:        .alias = NULL,
                     49:
                     50:        .args = { "2t:", 0, 0 },
                     51:        .usage = "[-2] " CMD_TARGET_PANE_USAGE,
                     52:
1.39      nicm       53:        .target = { 't', CMD_FIND_PANE, 0 },
1.26      nicm       54:
1.31      nicm       55:        .flags = CMD_AFTERHOOK,
1.25      nicm       56:        .exec = cmd_send_keys_exec
1.14      nicm       57: };
                     58:
1.47      nicm       59: static struct cmdq_item *
1.60      nicm       60: cmd_send_keys_inject_key(struct cmdq_item *item, struct cmdq_item *after,
                     61:     key_code key)
1.40      nicm       62: {
1.56      nicm       63:        struct cmd_find_state           *target = cmdq_get_target(item);
1.60      nicm       64:        struct client                   *tc = cmdq_get_target_client(item);
                     65:        struct session                  *s = target->s;
                     66:        struct winlink                  *wl = target->wl;
                     67:        struct window_pane              *wp = target->wp;
1.46      nicm       68:        struct window_mode_entry        *wme;
1.45      nicm       69:        struct key_table                *table;
                     70:        struct key_binding              *bd;
1.40      nicm       71:
1.60      nicm       72:        wme = TAILQ_FIRST(&wp->modes);
1.45      nicm       73:        if (wme == NULL || wme->mode->key_table == NULL) {
1.63      nicm       74:                if (window_pane_key(wp, tc, s, wl, key, NULL) != 0)
1.52      nicm       75:                        return (NULL);
1.47      nicm       76:                return (item);
1.40      nicm       77:        }
1.45      nicm       78:        table = key_bindings_get_table(wme->mode->key_table(wme), 1);
1.40      nicm       79:
1.63      nicm       80:        bd = key_bindings_get(table, key & ~KEYC_MASK_FLAGS);
1.40      nicm       81:        if (bd != NULL) {
                     82:                table->references++;
1.60      nicm       83:                after = key_bindings_dispatch(bd, after, tc, NULL, target);
1.40      nicm       84:                key_bindings_unref_table(table);
                     85:        }
1.60      nicm       86:        return (after);
1.40      nicm       87: }
                     88:
1.49      nicm       89: static struct cmdq_item *
1.60      nicm       90: cmd_send_keys_inject_string(struct cmdq_item *item, struct cmdq_item *after,
                     91:     struct args *args, int i)
1.49      nicm       92: {
                     93:        const char              *s = args->argv[i];
1.64      nicm       94:        struct utf8_data        *ud, *loop;
                     95:        utf8_char                uc;
1.49      nicm       96:        key_code                 key;
                     97:        char                    *endptr;
                     98:        long                     n;
                     99:        int                      literal;
                    100:
                    101:        if (args_has(args, 'H')) {
                    102:                n = strtol(s, &endptr, 16);
                    103:                if (*s =='\0' || n < 0 || n > 0xff || *endptr != '\0')
                    104:                        return (item);
1.60      nicm      105:                return (cmd_send_keys_inject_key(item, after, KEYC_LITERAL|n));
1.49      nicm      106:        }
                    107:
                    108:        literal = args_has(args, 'l');
                    109:        if (!literal) {
                    110:                key = key_string_lookup_string(s);
1.52      nicm      111:                if (key != KEYC_NONE && key != KEYC_UNKNOWN) {
1.60      nicm      112:                        after = cmd_send_keys_inject_key(item, after, key);
                    113:                        if (after != NULL)
                    114:                                return (after);
1.52      nicm      115:                }
1.49      nicm      116:                literal = 1;
                    117:        }
                    118:        if (literal) {
                    119:                ud = utf8_fromcstr(s);
1.64      nicm      120:                for (loop = ud; loop->size != 0; loop++) {
1.65    ! nicm      121:                        if (loop->size == 1 && loop->data[0] <= 0x7f)
        !           122:                                key = loop->data[0];
        !           123:                        else {
        !           124:                                if (utf8_from_data(loop, &uc) != UTF8_DONE)
        !           125:                                        continue;
        !           126:                                key = uc;
        !           127:                        }
        !           128:                        after = cmd_send_keys_inject_key(item, after, key);
1.50      nicm      129:                }
1.49      nicm      130:                free(ud);
                    131:        }
1.60      nicm      132:        return (after);
1.49      nicm      133: }
                    134:
1.29      nicm      135: static enum cmd_retval
1.33      nicm      136: cmd_send_keys_exec(struct cmd *self, struct cmdq_item *item)
1.1       nicm      137: {
1.55      nicm      138:        struct args                     *args = cmd_get_args(self);
1.56      nicm      139:        struct cmd_find_state           *target = cmdq_get_target(item);
1.60      nicm      140:        struct client                   *tc = cmdq_get_target_client(item);
1.56      nicm      141:        struct session                  *s = target->s;
                    142:        struct winlink                  *wl = target->wl;
1.60      nicm      143:        struct window_pane              *wp = target->wp;
1.59      nicm      144:        struct key_event                *event = cmdq_get_event(item);
                    145:        struct mouse_event              *m = &event->m;
1.46      nicm      146:        struct window_mode_entry        *wme = TAILQ_FIRST(&wp->modes);
1.60      nicm      147:        struct cmdq_item                *after = item;
1.49      nicm      148:        int                              i;
1.45      nicm      149:        key_code                         key;
                    150:        u_int                            np = 1;
                    151:        char                            *cause = NULL;
1.30      nicm      152:
                    153:        if (args_has(args, 'N')) {
                    154:                np = args_strtonum(args, 'N', 1, UINT_MAX, &cause);
                    155:                if (cause != NULL) {
1.34      nicm      156:                        cmdq_error(item, "repeat count %s", cause);
1.30      nicm      157:                        free(cause);
                    158:                        return (CMD_RETURN_ERROR);
                    159:                }
1.46      nicm      160:                if (wme != NULL && (args_has(args, 'X') || args->argc == 0)) {
1.54      nicm      161:                        if (wme->mode->command == NULL) {
1.46      nicm      162:                                cmdq_error(item, "not in a mode");
                    163:                                return (CMD_RETURN_ERROR);
                    164:                        }
1.45      nicm      165:                        wme->prefix = np;
1.46      nicm      166:                }
1.30      nicm      167:        }
                    168:
                    169:        if (args_has(args, 'X')) {
1.45      nicm      170:                if (wme == NULL || wme->mode->command == NULL) {
1.33      nicm      171:                        cmdq_error(item, "not in a mode");
1.30      nicm      172:                        return (CMD_RETURN_ERROR);
                    173:                }
                    174:                if (!m->valid)
1.45      nicm      175:                        m = NULL;
1.60      nicm      176:                wme->mode->command(wme, tc, s, wl, args, m);
1.30      nicm      177:                return (CMD_RETURN_NORMAL);
                    178:        }
                    179:
1.19      nicm      180:        if (args_has(args, 'M')) {
                    181:                wp = cmd_mouse_pane(m, &s, NULL);
                    182:                if (wp == NULL) {
1.33      nicm      183:                        cmdq_error(item, "no mouse target");
1.19      nicm      184:                        return (CMD_RETURN_ERROR);
                    185:                }
1.60      nicm      186:                window_pane_key(wp, tc, s, wl, m->key, m);
1.19      nicm      187:                return (CMD_RETURN_NORMAL);
                    188:        }
1.14      nicm      189:
1.55      nicm      190:        if (cmd_get_entry(self) == &cmd_send_prefix_entry) {
1.14      nicm      191:                if (args_has(args, '2'))
1.21      nicm      192:                        key = options_get_number(s->options, "prefix2");
1.14      nicm      193:                else
1.21      nicm      194:                        key = options_get_number(s->options, "prefix");
1.60      nicm      195:                cmd_send_keys_inject_key(item, item, key);
1.14      nicm      196:                return (CMD_RETURN_NORMAL);
                    197:        }
1.10      nicm      198:
1.37      nicm      199:        if (args_has(args, 'R')) {
                    200:                window_pane_reset_palette(wp);
1.53      nicm      201:                input_reset(wp->ictx, 1);
1.37      nicm      202:        }
1.1       nicm      203:
1.34      nicm      204:        for (; np != 0; np--) {
1.56      nicm      205:                for (i = 0; i < args->argc; i++) {
1.60      nicm      206:                        after = cmd_send_keys_inject_string(item, after, args,
                    207:                            i);
1.56      nicm      208:                }
1.9       nicm      209:        }
1.1       nicm      210:
1.12      nicm      211:        return (CMD_RETURN_NORMAL);
1.1       nicm      212: }