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",
|
|
|
|
|
|
|
|
.args = { "lc:Enpt:rT:", 0, 0 },
|
|
|
|
.usage = "[-Elnpr] [-c target-client] [-t target-session] "
|
|
|
|
"[-T key-table]",
|
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
/* -t is special */
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = CMD_READONLY,
|
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
|
|
|
{
|
2014-01-09 14:28:14 +00:00
|
|
|
struct args *args = self->args;
|
2017-04-22 10:22:39 +00:00
|
|
|
const char *tflag = args_get(args, 't');
|
|
|
|
enum cmd_find_type type;
|
|
|
|
int flags;
|
|
|
|
struct client *c;
|
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
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
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
if ((c = cmd_find_client(item, args_get(args, 'c'), 0)) == NULL)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
|
|
|
|
if (tflag != NULL && tflag[strcspn(tflag, ":.")] != '\0') {
|
|
|
|
type = CMD_FIND_PANE;
|
|
|
|
flags = 0;
|
|
|
|
} else {
|
|
|
|
type = CMD_FIND_SESSION;
|
|
|
|
flags = CMD_FIND_PREFER_UNATTACHED;
|
|
|
|
}
|
|
|
|
if (cmd_find_target(&item->target, item, tflag, type, flags) != 0)
|
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
s = item->target.s;
|
|
|
|
wl = item->target.wl;
|
|
|
|
wp = item->target.wp;
|
|
|
|
|
2015-12-08 00:51:17 +00:00
|
|
|
if (args_has(args, 'r'))
|
|
|
|
c->flags ^= CLIENT_READONLY;
|
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++;
|
|
|
|
key_bindings_unref_table(c->keytable);
|
|
|
|
c->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')) {
|
2010-09-08 22:02:28 +00:00
|
|
|
if ((s = session_next_session(c->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')) {
|
2010-09-08 22:02:28 +00:00
|
|
|
if ((s = session_previous_session(c->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')) {
|
2010-12-20 00:17:22 +00:00
|
|
|
if (c->last_session != NULL && session_alive(c->last_session))
|
|
|
|
s = c->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 {
|
2016-10-16 19:04:05 +00:00
|
|
|
if (item->client == NULL)
|
2014-01-09 14:28:14 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2017-04-22 10:22:39 +00:00
|
|
|
if (wl != NULL) {
|
2014-01-09 14:28:14 +00:00
|
|
|
if (wp != NULL)
|
|
|
|
window_set_active_pane(wp->window, wp);
|
2017-04-22 10:22:39 +00:00
|
|
|
session_set_current(s, wl);
|
2017-08-30 10:33:57 +00:00
|
|
|
cmd_find_from_session(&item->shared->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'))
|
|
|
|
environ_update(s->options, c->environ, s->environ);
|
2015-05-07 14:07:16 +00:00
|
|
|
|
2015-09-22 21:56:16 +00:00
|
|
|
if (c->session != NULL && c->session != s)
|
2010-12-20 00:17:22 +00:00
|
|
|
c->last_session = c->session;
|
2009-06-01 22:58:49 +00:00
|
|
|
c->session = s;
|
2017-04-21 14:01:19 +00:00
|
|
|
if (~item->shared->flags & CMDQ_SHARED_REPEAT)
|
2017-02-06 15:00:41 +00:00
|
|
|
server_client_set_key_table(c, NULL);
|
2015-08-28 12:16:28 +00:00
|
|
|
status_timer_start(c);
|
2017-05-04 07:16:43 +00:00
|
|
|
notify_client("client-session-changed", c);
|
2015-08-28 13:01:03 +00:00
|
|
|
session_update_activity(s, NULL);
|
2015-09-10 08:58:14 +00:00
|
|
|
gettimeofday(&s->last_attached_time, NULL);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
recalculate_sizes();
|
2010-09-26 20:43:30 +00:00
|
|
|
server_check_unattached();
|
2009-06-01 22:58:49 +00:00
|
|
|
server_redraw_client(c);
|
2012-01-21 06:13:16 +00:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2015-12-11 12:39:47 +00:00
|
|
|
alerts_check_session(s);
|
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
|
|
|
}
|