2012-03-17 22:34:12 +00:00
|
|
|
/* $OpenBSD$ */
|
2011-06-05 11:19:03 +00:00
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2011-06-05 11:19:03 +00:00
|
|
|
* Copyright (c) 2011 Marcel P. Partap <mpartap@gmx.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2012-07-10 11:53:01 +00:00
|
|
|
#include <stdlib.h>
|
2019-04-17 14:37:48 +00:00
|
|
|
#include <string.h>
|
2011-06-05 11:19:03 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Respawn a pane (restart the command). Kill existing if -k given.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_respawn_pane_exec(struct cmd *, struct cmdq_item *);
|
2011-06-05 11:19:03 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_respawn_pane_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "respawn-pane",
|
|
|
|
.alias = "respawnp",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "c:e:kt:", 0, -1, NULL },
|
2019-04-28 20:05:50 +00:00
|
|
|
.usage = "[-k] [-c start-directory] [-e environment] "
|
2021-08-27 17:25:55 +00:00
|
|
|
CMD_TARGET_PANE_USAGE " [shell-command]",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.target = { 't', CMD_FIND_PANE, 0 },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_respawn_pane_exec
|
2011-06-05 11:19:03 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_respawn_pane_exec(struct cmd *self, struct cmdq_item *item)
|
2011-06-05 11:19:03 +00:00
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
2021-08-20 19:50:16 +00:00
|
|
|
struct spawn_context sc = { 0 };
|
2020-04-13 10:59:58 +00:00
|
|
|
struct session *s = target->s;
|
|
|
|
struct winlink *wl = target->wl;
|
|
|
|
struct window_pane *wp = target->wp;
|
2019-04-17 14:37:48 +00:00
|
|
|
char *cause = NULL;
|
2021-08-20 18:59:53 +00:00
|
|
|
struct args_value *av;
|
2019-04-17 14:37:48 +00:00
|
|
|
|
|
|
|
sc.item = item;
|
|
|
|
sc.s = s;
|
|
|
|
sc.wl = wl;
|
|
|
|
|
|
|
|
sc.wp0 = wp;
|
2011-06-05 11:19:03 +00:00
|
|
|
|
2021-08-27 17:25:55 +00:00
|
|
|
args_to_vector(args, &sc.argc, &sc.argv);
|
2019-04-28 20:05:50 +00:00
|
|
|
sc.environ = environ_create();
|
|
|
|
|
2021-08-20 18:59:53 +00:00
|
|
|
av = args_first_value(args, 'e');
|
|
|
|
while (av != NULL) {
|
2021-08-21 10:28:05 +00:00
|
|
|
environ_put(sc.environ, av->string, 0);
|
2021-08-20 18:59:53 +00:00
|
|
|
av = args_next_value(av);
|
2019-04-28 20:05:50 +00:00
|
|
|
}
|
2011-06-05 11:19:03 +00:00
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
sc.idx = -1;
|
|
|
|
sc.cwd = args_get(args, 'c');
|
2014-04-17 13:02:59 +00:00
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
sc.flags = SPAWN_RESPAWN;
|
|
|
|
if (args_has(args, 'k'))
|
|
|
|
sc.flags |= SPAWN_KILL;
|
2017-07-21 09:17:19 +00:00
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
if (spawn_pane(&sc, &cause) == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "respawn pane failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2021-08-20 19:50:16 +00:00
|
|
|
if (sc.argv != NULL)
|
|
|
|
cmd_free_argv(sc.argc, sc.argv);
|
2021-08-20 18:59:53 +00:00
|
|
|
environ_free(sc.environ);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-06-05 11:19:03 +00:00
|
|
|
}
|
2017-03-09 17:02:38 +00:00
|
|
|
|
2011-06-05 11:19:03 +00:00
|
|
|
wp->flags |= PANE_REDRAW;
|
2020-05-16 15:01:30 +00:00
|
|
|
server_redraw_window_borders(wp->window);
|
2019-04-17 14:37:48 +00:00
|
|
|
server_status_window(wp->window);
|
2011-06-05 11:19:03 +00:00
|
|
|
|
2021-08-20 19:50:16 +00:00
|
|
|
if (sc.argv != NULL)
|
|
|
|
cmd_free_argv(sc.argc, sc.argv);
|
2019-04-28 20:05:50 +00:00
|
|
|
environ_free(sc.environ);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2011-06-05 11:19:03 +00:00
|
|
|
}
|