2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Respawn a window (restart the command). Kill existing if -k given.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_respawn_window_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_respawn_window_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "respawn-window",
|
|
|
|
.alias = "respawnw",
|
|
|
|
|
2019-04-28 20:05:50 +00:00
|
|
|
.args = { "c:e:kt:", 0, -1 },
|
|
|
|
.usage = "[-k] [-c start-directory] [-e environment] "
|
|
|
|
CMD_TARGET_WINDOW_USAGE " [command]",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.target = { 't', CMD_FIND_WINDOW, 0 },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_respawn_window_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_respawn_window_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +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);
|
2019-04-17 14:37:48 +00:00
|
|
|
struct spawn_context sc;
|
2020-04-13 20:51:57 +00:00
|
|
|
struct client *tc = cmdq_get_target_client(item);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct session *s = target->s;
|
|
|
|
struct winlink *wl = target->wl;
|
2019-04-17 14:37:48 +00:00
|
|
|
char *cause = NULL;
|
2019-04-28 20:05:50 +00:00
|
|
|
const char *add;
|
|
|
|
struct args_value *value;
|
2019-04-17 14:37:48 +00:00
|
|
|
|
|
|
|
memset(&sc, 0, sizeof sc);
|
|
|
|
sc.item = item;
|
|
|
|
sc.s = s;
|
|
|
|
sc.wl = wl;
|
2020-04-13 20:51:57 +00:00
|
|
|
sc.tc = tc;
|
2019-04-17 14:37:48 +00:00
|
|
|
|
|
|
|
sc.name = NULL;
|
|
|
|
sc.argc = args->argc;
|
|
|
|
sc.argv = args->argv;
|
2019-04-28 20:05:50 +00:00
|
|
|
sc.environ = environ_create();
|
|
|
|
|
|
|
|
add = args_first_value(args, 'e', &value);
|
|
|
|
while (add != NULL) {
|
2020-03-31 17:14:40 +00:00
|
|
|
environ_put(sc.environ, add, 0);
|
2019-04-28 20:05:50 +00:00
|
|
|
add = args_next_value(&value);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
sc.idx = -1;
|
|
|
|
sc.cwd = args_get(args, 'c');
|
|
|
|
|
|
|
|
sc.flags = SPAWN_RESPAWN;
|
|
|
|
if (args_has(args, 'k'))
|
|
|
|
sc.flags |= SPAWN_KILL;
|
|
|
|
|
|
|
|
if (spawn_window(&sc, &cause) == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "respawn window failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
server_redraw_window(wl->window);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2019-04-28 20:05:50 +00:00
|
|
|
environ_free(sc.environ);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|