2009-01-19 18:23:40 +00:00
|
|
|
/* $Id: cmd-link-window.c,v 1.27 2009-01-19 18:23:40 nicm Exp $ */
|
2007-10-26 13:03:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 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>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Link a window into another session.
|
|
|
|
*/
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_link_window_exec(struct cmd *, struct cmd_ctx *);
|
2007-10-26 13:03:59 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_link_window_entry = {
|
2008-06-02 18:08:17 +00:00
|
|
|
"link-window", "linkw",
|
2008-06-05 21:25:00 +00:00
|
|
|
"[-dk] " CMD_SRCDST_WINDOW_USAGE,
|
|
|
|
CMD_DFLAG|CMD_KFLAG,
|
|
|
|
cmd_srcdst_init,
|
|
|
|
cmd_srcdst_parse,
|
2007-12-06 09:46:23 +00:00
|
|
|
cmd_link_window_exec,
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_srcdst_send,
|
|
|
|
cmd_srcdst_recv,
|
|
|
|
cmd_srcdst_free,
|
|
|
|
cmd_srcdst_print
|
2007-10-26 13:03:59 +00:00
|
|
|
};
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_link_window_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2007-10-26 13:03:59 +00:00
|
|
|
{
|
2008-06-05 21:25:00 +00:00
|
|
|
struct cmd_srcdst_data *data = self->data;
|
2008-06-25 20:33:20 +00:00
|
|
|
struct session *dst;
|
2008-06-05 21:25:00 +00:00
|
|
|
struct winlink *wl_src, *wl_dst;
|
|
|
|
int idx;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
if ((wl_src = cmd_find_window(ctx, data->src, NULL)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-25 20:33:20 +00:00
|
|
|
if (arg_parse_window(data->dst, &dst, &idx) != 0) {
|
2008-06-05 21:25:00 +00:00
|
|
|
ctx->error(ctx, "bad window: %s", data->dst);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2007-10-26 13:03:59 +00:00
|
|
|
}
|
2008-06-25 20:33:20 +00:00
|
|
|
if (dst == NULL)
|
|
|
|
dst = ctx->cursession;
|
|
|
|
if (dst == NULL)
|
|
|
|
dst = cmd_current_session(ctx);
|
|
|
|
if (dst == NULL) {
|
2008-06-05 21:25:00 +00:00
|
|
|
ctx->error(ctx, "session not found: %s", data->dst);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2007-10-26 13:03:59 +00:00
|
|
|
}
|
|
|
|
|
2008-06-06 17:20:30 +00:00
|
|
|
wl_dst = NULL;
|
2008-06-05 22:59:38 +00:00
|
|
|
if (idx != -1)
|
2008-06-25 20:33:20 +00:00
|
|
|
wl_dst = winlink_find_by_index(&dst->windows, idx);
|
2008-06-05 22:59:38 +00:00
|
|
|
if (wl_dst != NULL) {
|
|
|
|
if (wl_dst->window == wl_src->window)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2008-06-05 22:59:38 +00:00
|
|
|
|
|
|
|
if (data->flags & CMD_KFLAG) {
|
2008-06-05 21:25:00 +00:00
|
|
|
/*
|
|
|
|
* Can't use session_detach as it will destroy session
|
|
|
|
* if this makes it empty.
|
|
|
|
*/
|
2008-06-25 20:33:20 +00:00
|
|
|
session_alert_cancel(dst, wl_dst);
|
2008-11-16 10:10:26 +00:00
|
|
|
winlink_stack_remove(&dst->lastw, wl_dst);
|
2008-06-25 20:33:20 +00:00
|
|
|
winlink_remove(&dst->windows, wl_dst);
|
2008-06-18 22:21:51 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
/* Force select/redraw if current. */
|
2008-06-25 20:33:20 +00:00
|
|
|
if (wl_dst == dst->curw) {
|
2008-06-05 21:25:00 +00:00
|
|
|
data->flags &= ~CMD_DFLAG;
|
2008-06-25 20:33:20 +00:00
|
|
|
dst->curw = NULL;
|
2008-06-05 21:25:00 +00:00
|
|
|
}
|
2007-11-21 15:05:53 +00:00
|
|
|
}
|
2007-11-17 08:21:54 +00:00
|
|
|
}
|
|
|
|
|
2008-06-25 20:33:20 +00:00
|
|
|
wl_dst = session_attach(dst, wl_src->window, idx);
|
2008-06-05 21:25:00 +00:00
|
|
|
if (wl_dst == NULL) {
|
|
|
|
ctx->error(ctx, "index in use: %d", idx);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2007-10-26 13:03:59 +00:00
|
|
|
}
|
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
if (data->flags & CMD_DFLAG)
|
2008-06-25 20:33:20 +00:00
|
|
|
server_status_session(dst);
|
2008-06-05 21:25:00 +00:00
|
|
|
else {
|
2008-06-25 20:33:20 +00:00
|
|
|
session_select(dst, wl_dst->idx);
|
|
|
|
server_redraw_session(dst);
|
2008-06-05 21:25:00 +00:00
|
|
|
}
|
2008-06-06 20:02:27 +00:00
|
|
|
recalculate_sizes();
|
2007-10-26 13:03:59 +00:00
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2007-10-26 13:03:59 +00:00
|
|
|
}
|