2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.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>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Respawn a window (restart the command). Kill existing if -k given.
|
|
|
|
*/
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval cmd_respawn_window_exec(struct cmd *, struct cmd_ctx *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_respawn_window_entry = {
|
|
|
|
"respawn-window", "respawnw",
|
2011-01-04 00:42:46 +00:00
|
|
|
"kt:", 0, 1,
|
2009-06-01 22:58:49 +00:00
|
|
|
"[-k] " CMD_TARGET_WINDOW_USAGE " [command]",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_respawn_window_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2009-06-01 22:58:49 +00:00
|
|
|
cmd_respawn_window_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct winlink *wl;
|
|
|
|
struct window *w;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct session *s;
|
2009-08-08 21:52:43 +00:00
|
|
|
struct environ env;
|
2011-01-04 00:42:46 +00:00
|
|
|
const char *cmd;
|
2009-06-01 22:58:49 +00:00
|
|
|
char *cause;
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if ((wl = cmd_find_window(ctx, args_get(args, 't'), &s)) == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
w = wl->window;
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!args_has(self->args, 'k')) {
|
2009-06-01 22:58:49 +00:00
|
|
|
TAILQ_FOREACH(wp, &w->panes, entry) {
|
|
|
|
if (wp->fd == -1)
|
|
|
|
continue;
|
|
|
|
ctx->error(ctx,
|
|
|
|
"window still active: %s:%d", s->name, wl->idx);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-08 21:52:43 +00:00
|
|
|
environ_init(&env);
|
|
|
|
environ_copy(&global_environ, &env);
|
|
|
|
environ_copy(&s->environ, &env);
|
|
|
|
server_fill_environ(s, &env);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
wp = TAILQ_FIRST(&w->panes);
|
|
|
|
TAILQ_REMOVE(&w->panes, wp, entry);
|
2009-07-19 13:21:40 +00:00
|
|
|
layout_free(w);
|
2009-12-03 22:50:09 +00:00
|
|
|
window_destroy_panes(w);
|
2009-06-01 22:58:49 +00:00
|
|
|
TAILQ_INSERT_HEAD(&w->panes, wp, entry);
|
|
|
|
window_pane_resize(wp, w->sx, w->sy);
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args->argc != 0)
|
|
|
|
cmd = args->argv[0];
|
|
|
|
else
|
|
|
|
cmd = NULL;
|
|
|
|
if (window_pane_spawn(wp, cmd, NULL, NULL, &env, s->tio, &cause) != 0) {
|
2009-06-01 22:58:49 +00:00
|
|
|
ctx->error(ctx, "respawn window failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2009-08-08 21:52:43 +00:00
|
|
|
environ_free(&env);
|
2009-11-13 17:33:07 +00:00
|
|
|
server_destroy_pane(wp);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2009-07-19 13:21:40 +00:00
|
|
|
layout_init(w);
|
2011-07-04 13:35:37 +00:00
|
|
|
window_pane_reset_mode(wp);
|
2009-06-01 22:58:49 +00:00
|
|
|
screen_reinit(&wp->base);
|
2011-07-04 13:35:37 +00:00
|
|
|
input_init(wp);
|
2009-07-24 19:35:33 +00:00
|
|
|
window_set_active_pane(w, wp);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
recalculate_sizes();
|
|
|
|
server_redraw_window(w);
|
|
|
|
|
2009-08-08 21:52:43 +00:00
|
|
|
environ_free(&env);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|