2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 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>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch client to a different session.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_switch_client_exec(struct cmd *,
|
|
|
|
struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_switch_client_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "switch-client",
|
|
|
|
.alias = "switchc",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "lc:EFnpt:rT:Z", 0, 0, NULL },
|
2019-08-14 09:58:31 +00:00
|
|
|
.usage = "[-ElnprZ] [-c target-client] [-t target-session] "
|
2015-12-13 21:53:57 +00:00
|
|
|
"[-T key-table]",
|
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
/* -t is special */
|
2015-12-14 00:31:54 +00:00
|
|
|
|
2020-04-13 20:51:57 +00:00
|
|
|
.flags = CMD_READONLY|CMD_CLIENT_CFLAG,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_switch_client_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_switch_client_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 14:46:04 +00:00
|
|
|
struct cmd_find_state *current = cmdq_get_current(item);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state target;
|
2017-04-22 10:22:39 +00:00
|
|
|
const char *tflag = args_get(args, 't');
|
|
|
|
enum cmd_find_type type;
|
|
|
|
int flags;
|
2020-04-13 20:51:57 +00:00
|
|
|
struct client *tc = cmdq_get_target_client(item);
|
2017-04-22 10:22:39 +00:00
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
2019-08-14 09:58:31 +00:00
|
|
|
struct window *w;
|
2015-12-13 14:32:38 +00:00
|
|
|
struct window_pane *wp;
|
2017-01-24 20:15:32 +00:00
|
|
|
const char *tablename;
|
2015-04-20 15:34:56 +00:00
|
|
|
struct key_table *table;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2019-04-17 14:39:37 +00:00
|
|
|
if (tflag != NULL && tflag[strcspn(tflag, ":.%")] != '\0') {
|
2017-04-22 10:22:39 +00:00
|
|
|
type = CMD_FIND_PANE;
|
|
|
|
flags = 0;
|
|
|
|
} else {
|
|
|
|
type = CMD_FIND_SESSION;
|
|
|
|
flags = CMD_FIND_PREFER_UNATTACHED;
|
|
|
|
}
|
2020-04-13 10:59:58 +00:00
|
|
|
if (cmd_find_target(&target, item, tflag, type, flags) != 0)
|
2017-04-22 10:22:39 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2020-04-13 10:59:58 +00:00
|
|
|
s = target.s;
|
|
|
|
wl = target.wl;
|
|
|
|
wp = target.wp;
|
2017-04-22 10:22:39 +00:00
|
|
|
|
2020-05-16 15:45:29 +00:00
|
|
|
if (args_has(args, 'r')) {
|
|
|
|
if (tc->flags & CLIENT_READONLY)
|
|
|
|
tc->flags &= ~(CLIENT_READONLY|CLIENT_IGNORESIZE);
|
|
|
|
else
|
|
|
|
tc->flags |= (CLIENT_READONLY|CLIENT_IGNORESIZE);
|
|
|
|
}
|
2011-08-16 10:00:52 +00:00
|
|
|
|
2015-04-20 15:34:56 +00:00
|
|
|
tablename = args_get(args, 'T');
|
|
|
|
if (tablename != NULL) {
|
|
|
|
table = key_bindings_get_table(tablename, 0);
|
|
|
|
if (table == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "table %s doesn't exist", tablename);
|
2015-04-20 15:34:56 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
table->references++;
|
2020-04-13 20:51:57 +00:00
|
|
|
key_bindings_unref_table(tc->keytable);
|
|
|
|
tc->keytable = table;
|
2015-12-12 18:28:47 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2015-04-20 15:34:56 +00:00
|
|
|
}
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(args, 'n')) {
|
2020-04-13 20:51:57 +00:00
|
|
|
if ((s = session_next_session(tc->session)) == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't find next session");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-09-08 22:02:28 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
} else if (args_has(args, 'p')) {
|
2020-04-13 20:51:57 +00:00
|
|
|
if ((s = session_previous_session(tc->session)) == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't find previous session");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-09-08 22:02:28 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
} else if (args_has(args, 'l')) {
|
2020-04-13 20:51:57 +00:00
|
|
|
if (tc->last_session != NULL && session_alive(tc->last_session))
|
|
|
|
s = tc->last_session;
|
2015-12-13 14:32:38 +00:00
|
|
|
else
|
|
|
|
s = NULL;
|
2010-12-11 18:39:25 +00:00
|
|
|
if (s == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't find last session");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-12-11 18:39:25 +00:00
|
|
|
}
|
2015-12-23 00:12:57 +00:00
|
|
|
} else {
|
2020-04-13 10:59:58 +00:00
|
|
|
if (cmdq_get_client(item) == NULL)
|
2014-01-09 14:28:14 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2020-06-05 11:20:51 +00:00
|
|
|
if (wl != NULL && wp != NULL && wp != wl->window->active) {
|
2020-04-09 13:53:50 +00:00
|
|
|
w = wl->window;
|
2021-03-11 06:31:05 +00:00
|
|
|
if (window_push_zoom(w, 0, args_has(args, 'Z')))
|
2019-08-14 09:58:31 +00:00
|
|
|
server_redraw_window(w);
|
|
|
|
window_redraw_active_switch(w, wp);
|
|
|
|
window_set_active_pane(w, wp, 1);
|
|
|
|
if (window_pop_zoom(w))
|
|
|
|
server_redraw_window(w);
|
|
|
|
}
|
2017-04-22 10:22:39 +00:00
|
|
|
if (wl != NULL) {
|
|
|
|
session_set_current(s, wl);
|
2020-04-13 10:59:58 +00:00
|
|
|
cmd_find_from_session(current, s, 0);
|
2014-01-09 14:28:14 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-11 18:39:25 +00:00
|
|
|
|
2017-01-24 20:15:32 +00:00
|
|
|
if (!args_has(args, 'E'))
|
2020-04-13 20:51:57 +00:00
|
|
|
environ_update(s->options, tc->environ, s->environ);
|
2015-05-07 14:07:16 +00:00
|
|
|
|
2021-08-13 06:52:51 +00:00
|
|
|
server_client_set_session(tc, s);
|
2020-04-13 14:46:04 +00:00
|
|
|
if (~cmdq_get_flags(item) & CMDQ_STATE_REPEAT)
|
2020-04-13 20:51:57 +00:00
|
|
|
server_client_set_key_table(tc, NULL);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|