2011-07-09 09:42:33 +00:00
|
|
|
/* $Id$ */
|
2007-10-04 11:52:03 +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>
|
|
|
|
|
2012-07-11 19:34:16 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2007-10-04 11:52:03 +00:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach existing session to the current terminal.
|
|
|
|
*/
|
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
enum cmd_retval cmd_attach_session_exec(struct cmd *, struct cmd_q *);
|
2007-10-04 11:52:03 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_attach_session_entry = {
|
2008-06-02 18:08:17 +00:00
|
|
|
"attach-session", "attach",
|
2011-01-07 14:45:34 +00:00
|
|
|
"drt:", 0, 0,
|
2010-02-08 18:27:34 +00:00
|
|
|
"[-dr] " CMD_TARGET_SESSION_USAGE,
|
2011-01-07 14:45:34 +00:00
|
|
|
CMD_CANTNEST|CMD_STARTSERVER|CMD_SENDENVIRON,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_attach_session_exec
|
2007-10-04 11:52:03 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 19:37:32 +00:00
|
|
|
enum cmd_retval
|
2013-02-24 00:43:28 +00:00
|
|
|
cmd_attach_session(struct cmd_q *cmdq, const char* tflag, int dflag, int rflag)
|
2007-10-04 11:52:03 +00:00
|
|
|
{
|
2011-01-07 14:45:34 +00:00
|
|
|
struct session *s;
|
|
|
|
struct client *c;
|
|
|
|
const char *update;
|
2012-05-12 15:00:19 +00:00
|
|
|
char *cause;
|
2011-01-07 14:45:34 +00:00
|
|
|
u_int i;
|
2008-06-18 22:21:51 +00:00
|
|
|
|
2010-12-22 15:36:44 +00:00
|
|
|
if (RB_EMPTY(&sessions)) {
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq_error(cmdq, "no sessions");
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-01-19 17:16:09 +00:00
|
|
|
}
|
2011-01-07 14:45:34 +00:00
|
|
|
|
2013-02-24 00:43:28 +00:00
|
|
|
if ((s = cmd_find_session(cmdq, tflag, 1)) == NULL)
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
if (cmdq->client == NULL)
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-07-23 13:25:27 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
if (cmdq->client->session != NULL) {
|
2013-02-24 00:43:28 +00:00
|
|
|
if (dflag) {
|
2009-12-04 22:14:47 +00:00
|
|
|
/*
|
2009-07-18 11:06:09 +00:00
|
|
|
* Can't use server_write_session in case attaching to
|
|
|
|
* the same session as currently attached to.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session != s)
|
|
|
|
continue;
|
2013-02-23 22:25:58 +00:00
|
|
|
if (c == cmdq->client)
|
2009-07-18 11:06:09 +00:00
|
|
|
continue;
|
|
|
|
server_write_client(c, MSG_DETACH, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
2009-12-04 22:14:47 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq->client->session = s;
|
|
|
|
notify_attached_session_changed(cmdq->client);
|
2011-01-03 23:27:54 +00:00
|
|
|
session_update_activity(s);
|
2013-02-23 22:25:58 +00:00
|
|
|
server_redraw_client(cmdq->client);
|
2012-01-21 19:30:07 +00:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2009-07-18 11:06:09 +00:00
|
|
|
} else {
|
2013-02-23 22:25:58 +00:00
|
|
|
if (server_client_open(cmdq->client, s, &cause) != 0) {
|
|
|
|
cmdq_error(cmdq, "open terminal failed: %s", cause);
|
2012-07-11 19:34:16 +00:00
|
|
|
free(cause);
|
2012-07-11 19:37:32 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-07-18 11:06:09 +00:00
|
|
|
}
|
2007-11-27 19:23:34 +00:00
|
|
|
|
2013-02-24 00:43:28 +00:00
|
|
|
if (rflag)
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq->client->flags |= CLIENT_READONLY;
|
2010-02-08 18:27:34 +00:00
|
|
|
|
2013-02-24 00:43:28 +00:00
|
|
|
if (dflag)
|
2009-07-18 11:06:09 +00:00
|
|
|
server_write_session(s, MSG_DETACH, NULL, 0);
|
2007-10-04 11:52:03 +00:00
|
|
|
|
2009-08-09 17:48:55 +00:00
|
|
|
update = options_get_string(&s->options, "update-environment");
|
2013-02-23 22:25:58 +00:00
|
|
|
environ_update(update, &cmdq->client->environ, &s->environ);
|
2009-08-09 17:48:55 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
cmdq->client->session = s;
|
|
|
|
notify_attached_session_changed(cmdq->client);
|
|
|
|
session_update_activity(s);
|
|
|
|
server_redraw_client(cmdq->client);
|
2012-01-21 19:30:07 +00:00
|
|
|
s->curw->flags &= ~WINLINK_ALERTFLAGS;
|
2013-02-23 22:25:58 +00:00
|
|
|
|
|
|
|
server_write_ready(cmdq->client);
|
|
|
|
cmdq->client_exit = 0;
|
2009-07-18 11:06:09 +00:00
|
|
|
}
|
2007-10-04 19:03:52 +00:00
|
|
|
recalculate_sizes();
|
2009-11-13 16:51:49 +00:00
|
|
|
server_update_socket();
|
2009-01-19 18:23:40 +00:00
|
|
|
|
2013-02-23 22:25:58 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2007-10-04 11:52:03 +00:00
|
|
|
}
|
2013-02-24 00:43:28 +00:00
|
|
|
|
|
|
|
enum cmd_retval
|
|
|
|
cmd_attach_session_exec(struct cmd *self, struct cmd_q *cmdq)
|
|
|
|
{
|
|
|
|
struct args *args = self->args;
|
|
|
|
|
|
|
|
return (cmd_attach_session(cmdq, args_get(args, 't'),
|
|
|
|
args_has(args, 'd'), args_has(args, 'r')));
|
|
|
|
}
|