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

Annotation of src/usr.bin/tmux/cmd-if-shell.c, Revision 1.65

1.65    ! nicm        1: /* $OpenBSD: cmd-if-shell.c,v 1.64 2019/06/18 11:08:42 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org>
1.5       nicm        5:  * Copyright (c) 2009 Nicholas Marriott <nicm@openbsd.org>
1.1       nicm        6:  *
                      7:  * Permission to use, copy, modify, and distribute this software for any
                      8:  * purpose with or without fee is hereby granted, provided that the above
                      9:  * copyright notice and this permission notice appear in all copies.
                     10:  *
                     11:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     12:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     13:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     14:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     15:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     16:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     17:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     18:  */
                     19:
                     20: #include <sys/types.h>
1.5       nicm       21: #include <sys/wait.h>
1.1       nicm       22:
1.15      nicm       23: #include <stdlib.h>
1.1       nicm       24: #include <string.h>
                     25:
                     26: #include "tmux.h"
                     27:
                     28: /*
1.14      nicm       29:  * Executes a tmux command if a shell command returns true or false.
1.1       nicm       30:  */
                     31:
1.48      nicm       32: static enum cmd_retval cmd_if_shell_exec(struct cmd *, struct cmdq_item *);
1.1       nicm       33:
1.48      nicm       34: static void            cmd_if_shell_callback(struct job *);
                     35: static void            cmd_if_shell_free(void *);
1.1       nicm       36:
                     37: const struct cmd_entry cmd_if_shell_entry = {
1.39      nicm       38:        .name = "if-shell",
                     39:        .alias = "if",
                     40:
                     41:        .args = { "bFt:", 2, 3 },
                     42:        .usage = "[-bF] " CMD_TARGET_PANE_USAGE " shell-command command "
                     43:                 "[command]",
                     44:
1.55      nicm       45:        .target = { 't', CMD_FIND_PANE, CMD_FIND_CANFAIL },
1.40      nicm       46:
                     47:        .flags = 0,
1.39      nicm       48:        .exec = cmd_if_shell_exec
1.1       nicm       49: };
                     50:
1.5       nicm       51: struct cmd_if_shell_data {
1.61      nicm       52:        struct cmd_parse_input   input;
1.44      nicm       53:
1.30      nicm       54:        char                    *cmd_if;
                     55:        char                    *cmd_else;
                     56:
1.47      nicm       57:        struct client           *client;
1.48      nicm       58:        struct cmdq_item        *item;
1.30      nicm       59:        struct mouse_event       mouse;
1.5       nicm       60: };
1.1       nicm       61:
1.45      nicm       62: static enum cmd_retval
1.48      nicm       63: cmd_if_shell_exec(struct cmd *self, struct cmdq_item *item)
1.1       nicm       64: {
1.10      nicm       65:        struct args                     *args = self->args;
1.61      nicm       66:        struct mouse_event              *m = &item->shared->mouse;
1.5       nicm       67:        struct cmd_if_shell_data        *cdata;
1.61      nicm       68:        char                            *shellcmd, *cmd;
1.48      nicm       69:        struct cmdq_item                *new_item;
1.63      nicm       70:        struct cmd_find_state           *fs = &item->target;
1.55      nicm       71:        struct client                   *c = cmd_find_client(item, NULL, 1);
1.63      nicm       72:        struct session                  *s = fs->s;
                     73:        struct winlink                  *wl = fs->wl;
                     74:        struct window_pane              *wp = fs->wp;
1.61      nicm       75:        struct cmd_parse_input           pi;
                     76:        struct cmd_parse_result         *pr;
1.41      nicm       77:
1.51      nicm       78:        shellcmd = format_single(item, args->argv[0], c, s, wl, wp);
1.27      nicm       79:        if (args_has(args, 'F')) {
                     80:                if (*shellcmd != '0' && *shellcmd != '\0')
                     81:                        cmd = args->argv[1];
                     82:                else if (args->argc == 3)
                     83:                        cmd = args->argv[2];
1.61      nicm       84:                else
                     85:                        cmd = NULL;
1.35      nicm       86:                free(shellcmd);
1.27      nicm       87:                if (cmd == NULL)
                     88:                        return (CMD_RETURN_NORMAL);
1.61      nicm       89:
                     90:                memset(&pi, 0, sizeof pi);
                     91:                if (self->file != NULL)
                     92:                        pi.file = self->file;
                     93:                pi.line = self->line;
                     94:                pi.item = item;
                     95:                pi.c = c;
1.63      nicm       96:                cmd_find_copy_state(&pi.fs, fs);
1.61      nicm       97:
                     98:                pr = cmd_parse_from_string(cmd, &pi);
                     99:                switch (pr->status) {
                    100:                case CMD_PARSE_EMPTY:
                    101:                        break;
                    102:                case CMD_PARSE_ERROR:
                    103:                        cmdq_error(item, "%s", pr->error);
                    104:                        free(pr->error);
1.27      nicm      105:                        return (CMD_RETURN_ERROR);
1.61      nicm      106:                case CMD_PARSE_SUCCESS:
1.63      nicm      107:                        new_item = cmdq_get_command(pr->cmdlist, fs, m, 0);
1.61      nicm      108:                        cmdq_insert_after(item, new_item);
                    109:                        cmd_list_free(pr->cmdlist);
                    110:                        break;
1.27      nicm      111:                }
                    112:                return (CMD_RETURN_NORMAL);
                    113:        }
1.5       nicm      114:
1.44      nicm      115:        cdata = xcalloc(1, sizeof *cdata);
1.30      nicm      116:
1.13      nicm      117:        cdata->cmd_if = xstrdup(args->argv[1]);
1.14      nicm      118:        if (args->argc == 3)
                    119:                cdata->cmd_else = xstrdup(args->argv[2]);
1.13      nicm      120:        else
                    121:                cdata->cmd_else = NULL;
1.61      nicm      122:        memcpy(&cdata->mouse, m, sizeof cdata->mouse);
1.30      nicm      123:
1.65    ! nicm      124:        if (!args_has(args, 'b'))
        !           125:                cdata->client = item->client;
        !           126:        else
        !           127:                cdata->client = c;
1.54      nicm      128:        if (cdata->client != NULL)
                    129:                cdata->client->references++;
1.5       nicm      130:
1.47      nicm      131:        if (!args_has(args, 'b'))
1.48      nicm      132:                cdata->item = item;
1.47      nicm      133:        else
1.48      nicm      134:                cdata->item = NULL;
1.61      nicm      135:
                    136:        memset(&cdata->input, 0, sizeof cdata->input);
                    137:        if (self->file != NULL)
                    138:                cdata->input.file = xstrdup(self->file);
                    139:        cdata->input.line = self->line;
                    140:        cdata->input.item = cdata->item;
                    141:        cdata->input.c = c;
                    142:        if (cdata->input.c != NULL)
                    143:                cdata->input.c->references++;
1.63      nicm      144:        cmd_find_copy_state(&cdata->input.fs, fs);
1.5       nicm      145:
1.60      nicm      146:        if (job_run(shellcmd, s, server_client_get_cwd(item->client, s), NULL,
                    147:            cmd_if_shell_callback, cmd_if_shell_free, cdata, 0) == NULL) {
                    148:                cmdq_error(item, "failed to run command: %s", shellcmd);
                    149:                free(shellcmd);
                    150:                free(cdata);
                    151:                return (CMD_RETURN_ERROR);
                    152:        }
1.19      nicm      153:        free(shellcmd);
1.1       nicm      154:
1.47      nicm      155:        if (args_has(args, 'b'))
1.20      nicm      156:                return (CMD_RETURN_NORMAL);
                    157:        return (CMD_RETURN_WAIT);
1.1       nicm      158: }
                    159:
1.45      nicm      160: static void
1.5       nicm      161: cmd_if_shell_callback(struct job *job)
1.1       nicm      162: {
1.59      nicm      163:        struct cmd_if_shell_data        *cdata = job_get_data(job);
1.47      nicm      164:        struct client                   *c = cdata->client;
1.61      nicm      165:        struct mouse_event              *m = &cdata->mouse;
1.62      nicm      166:        struct cmdq_item                *new_item = NULL;
1.61      nicm      167:        char                            *cmd;
1.59      nicm      168:        int                              status;
1.61      nicm      169:        struct cmd_parse_result         *pr;
1.20      nicm      170:
1.59      nicm      171:        status = job_get_status(job);
                    172:        if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
1.13      nicm      173:                cmd = cdata->cmd_else;
1.20      nicm      174:        else
1.13      nicm      175:                cmd = cdata->cmd_if;
1.20      nicm      176:        if (cmd == NULL)
1.47      nicm      177:                goto out;
1.20      nicm      178:
1.61      nicm      179:        pr = cmd_parse_from_string(cmd, &cdata->input);
                    180:        switch (pr->status) {
                    181:        case CMD_PARSE_EMPTY:
                    182:                break;
                    183:        case CMD_PARSE_ERROR:
1.62      nicm      184:                if (cdata->item != NULL)
                    185:                       cmdq_error(cdata->item, "%s", pr->error);
1.61      nicm      186:                free(pr->error);
                    187:                break;
                    188:        case CMD_PARSE_SUCCESS:
                    189:                new_item = cmdq_get_command(pr->cmdlist, NULL, m, 0);
                    190:                cmd_list_free(pr->cmdlist);
                    191:                break;
1.1       nicm      192:        }
1.48      nicm      193:        if (new_item != NULL) {
                    194:                if (cdata->item == NULL)
                    195:                        cmdq_append(c, new_item);
1.47      nicm      196:                else
1.48      nicm      197:                        cmdq_insert_after(cdata->item, new_item);
1.47      nicm      198:        }
1.25      nicm      199:
1.47      nicm      200: out:
1.48      nicm      201:        if (cdata->item != NULL)
1.64      nicm      202:                cmdq_continue(cdata->item);
1.20      nicm      203: }
                    204:
1.45      nicm      205: static void
1.5       nicm      206: cmd_if_shell_free(void *data)
1.1       nicm      207: {
1.5       nicm      208:        struct cmd_if_shell_data        *cdata = data;
1.1       nicm      209:
1.54      nicm      210:        if (cdata->client != NULL)
                    211:                server_client_unref(cdata->client);
1.1       nicm      212:
1.15      nicm      213:        free(cdata->cmd_else);
                    214:        free(cdata->cmd_if);
1.44      nicm      215:
1.61      nicm      216:        if (cdata->input.c != NULL)
                    217:                server_client_unref(cdata->input.c);
                    218:        free((void *)cdata->input.file);
                    219:
1.15      nicm      220:        free(cdata);
1.1       nicm      221: }