=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-if-shell.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/tmux/cmd-if-shell.c 2011/05/25 17:50:52 1.12 --- src/usr.bin/tmux/cmd-if-shell.c 2011/10/18 08:57:01 1.13 *************** *** 1,4 **** ! /* $OpenBSD: cmd-if-shell.c,v 1.12 2011/05/25 17:50:52 nicm Exp $ */ /* * Copyright (c) 2009 Tiago Cunha --- 1,4 ---- ! /* $OpenBSD: cmd-if-shell.c,v 1.13 2011/10/18 08:57:01 nicm Exp $ */ /* * Copyright (c) 2009 Tiago Cunha *************** *** 28,33 **** --- 28,34 ---- * Executes a tmux command if a shell command returns true. */ + int cmd_if_shell_check(struct args *); int cmd_if_shell_exec(struct cmd *, struct cmd_ctx *); void cmd_if_shell_callback(struct job *); *************** *** 35,54 **** const struct cmd_entry cmd_if_shell_entry = { "if-shell", "if", ! "", 2, 2, ! "shell-command command", 0, NULL, ! NULL, cmd_if_shell_exec }; struct cmd_if_shell_data { ! char *cmd; struct cmd_ctx ctx; }; int cmd_if_shell_exec(struct cmd *self, struct cmd_ctx *ctx) { struct args *args = self->args; --- 36,66 ---- const struct cmd_entry cmd_if_shell_entry = { "if-shell", "if", ! "", 2, 4, ! "shell-command command [else command]", 0, NULL, ! cmd_if_shell_check, cmd_if_shell_exec }; struct cmd_if_shell_data { ! char *cmd_if; ! char *cmd_else; struct cmd_ctx ctx; }; int + cmd_if_shell_check(struct args *args) + { + if (args->argc == 3) + return (-1); + if (args->argc == 4 && strcmp(args->argv[2], "else") != 0) + return (-1); + return (0); + } + + int cmd_if_shell_exec(struct cmd *self, struct cmd_ctx *ctx) { struct args *args = self->args; *************** *** 56,62 **** const char *shellcmd = args->argv[0]; cdata = xmalloc(sizeof *cdata); ! cdata->cmd = xstrdup(args->argv[1]); memcpy(&cdata->ctx, ctx, sizeof cdata->ctx); if (ctx->cmdclient != NULL) --- 68,78 ---- const char *shellcmd = args->argv[0]; cdata = xmalloc(sizeof *cdata); ! cdata->cmd_if = xstrdup(args->argv[1]); ! if (args->argc == 4) ! cdata->cmd_else = xstrdup(args->argv[3]); ! else ! cdata->cmd_else = NULL; memcpy(&cdata->ctx, ctx, sizeof cdata->ctx); if (ctx->cmdclient != NULL) *************** *** 75,86 **** struct cmd_if_shell_data *cdata = job->data; struct cmd_ctx *ctx = &cdata->ctx; struct cmd_list *cmdlist; char *cause; ! if (!WIFEXITED(job->status) || WEXITSTATUS(job->status) != 0) ! return; ! ! if (cmd_string_parse(cdata->cmd, &cmdlist, &cause) != 0) { if (cause != NULL) { ctx->error(ctx, "%s", cause); xfree(cause); --- 91,106 ---- struct cmd_if_shell_data *cdata = job->data; struct cmd_ctx *ctx = &cdata->ctx; struct cmd_list *cmdlist; + char *cmd; char *cause; ! if (!WIFEXITED(job->status) || WEXITSTATUS(job->status) != 0) { ! cmd = cdata->cmd_else; ! if (cmd == NULL) ! return; ! } else ! cmd = cdata->cmd_if; ! if (cmd_string_parse(cmd, &cmdlist, &cause) != 0) { if (cause != NULL) { ctx->error(ctx, "%s", cause); xfree(cause); *************** *** 107,112 **** if (ctx->curclient != NULL) ctx->curclient->references--; ! xfree(cdata->cmd); xfree(cdata); } --- 127,134 ---- if (ctx->curclient != NULL) ctx->curclient->references--; ! if (cdata->cmd_else != NULL) ! xfree(cdata->cmd_else); ! xfree(cdata->cmd_if); xfree(cdata); }