cmd-respawn-window.c revision 1.38
1/* $OpenBSD: cmd-respawn-window.c,v 1.38 2019/04/17 14:37:48 nicm Exp $ */
2
3/*
4 * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
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>
22#include <string.h>
23
24#include "tmux.h"
25
26/*
27 * Respawn a window (restart the command). Kill existing if -k given.
28 */
29
30static enum cmd_retval	cmd_respawn_window_exec(struct cmd *,
31			    struct cmdq_item *);
32
33const struct cmd_entry cmd_respawn_window_entry = {
34	.name = "respawn-window",
35	.alias = "respawnw",
36
37	.args = { "c:kt:", 0, -1 },
38	.usage = "[-c start-directory] [-k] " CMD_TARGET_WINDOW_USAGE
39	         " [command]",
40
41	.target = { 't', CMD_FIND_WINDOW, 0 },
42
43	.flags = 0,
44	.exec = cmd_respawn_window_exec
45};
46
47static enum cmd_retval
48cmd_respawn_window_exec(struct cmd *self, struct cmdq_item *item)
49{
50	struct args		*args = self->args;
51	struct spawn_context	 sc;
52	struct session		*s = item->target.s;
53	struct winlink		*wl = item->target.wl;
54	char			*cause = NULL;
55
56	memset(&sc, 0, sizeof sc);
57	sc.item = item;
58	sc.s = s;
59	sc.wl = wl;
60
61	sc.name = NULL;
62	sc.argc = args->argc;
63	sc.argv = args->argv;
64
65	sc.idx = -1;
66	sc.cwd = args_get(args, 'c');
67
68	sc.flags = SPAWN_RESPAWN;
69	if (args_has(args, 'k'))
70		sc.flags |= SPAWN_KILL;
71
72	if (spawn_window(&sc, &cause) == NULL) {
73		cmdq_error(item, "respawn window failed: %s", cause);
74		free(cause);
75		return (CMD_RETURN_ERROR);
76	}
77
78	server_redraw_window(wl->window);
79
80	return (CMD_RETURN_NORMAL);
81}
82