2009-07-28 22:12:16 +00:00
|
|
|
/* $Id: cmd-switch-client.c,v 1.17 2009-07-28 22:12:16 tcunha Exp $ */
|
2007-11-16 21:31: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>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch client to a different session.
|
|
|
|
*/
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
int cmd_switch_client_parse(struct cmd *, int, char **, char **);
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_switch_client_exec(struct cmd *, struct cmd_ctx *);
|
2008-06-05 16:35:32 +00:00
|
|
|
void cmd_switch_client_free(struct cmd *);
|
2009-01-18 14:40:48 +00:00
|
|
|
size_t cmd_switch_client_print(struct cmd *, char *, size_t);
|
2007-11-16 21:31:03 +00:00
|
|
|
|
|
|
|
struct cmd_switch_client_data {
|
|
|
|
char *name;
|
2008-06-05 21:25:00 +00:00
|
|
|
char *target;
|
2007-11-16 21:31:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct cmd_entry cmd_switch_client_entry = {
|
2008-06-02 18:08:17 +00:00
|
|
|
"switch-client", "switchc",
|
2008-06-23 22:26:52 +00:00
|
|
|
"[-c target-client] [-t target-session]",
|
2009-07-14 06:43:33 +00:00
|
|
|
0, 0,
|
2008-06-05 21:25:00 +00:00
|
|
|
NULL,
|
2007-11-16 21:31:03 +00:00
|
|
|
cmd_switch_client_parse,
|
2007-12-06 09:46:23 +00:00
|
|
|
cmd_switch_client_exec,
|
2008-06-03 05:35:51 +00:00
|
|
|
cmd_switch_client_free,
|
2008-06-05 17:12:11 +00:00
|
|
|
cmd_switch_client_print
|
2007-11-16 21:31:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_switch_client_parse(struct cmd *self, int argc, char **argv, char **cause)
|
2007-11-16 21:31:03 +00:00
|
|
|
{
|
|
|
|
struct cmd_switch_client_data *data;
|
|
|
|
int opt;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2007-11-16 21:31:03 +00:00
|
|
|
data->name = NULL;
|
2008-06-05 21:25:00 +00:00
|
|
|
data->target = NULL;
|
2007-11-16 21:31:03 +00:00
|
|
|
|
2008-12-10 20:25:42 +00:00
|
|
|
while ((opt = getopt(argc, argv, "c:t:")) != -1) {
|
2007-11-16 21:31:03 +00:00
|
|
|
switch (opt) {
|
2008-06-02 18:08:17 +00:00
|
|
|
case 'c':
|
2008-06-05 21:25:00 +00:00
|
|
|
data->name = xstrdup(optarg);
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
data->target = xstrdup(optarg);
|
2008-06-02 18:08:17 +00:00
|
|
|
break;
|
2007-11-16 21:31:03 +00:00
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
2007-11-16 21:31:03 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2008-06-05 21:25:00 +00:00
|
|
|
if (argc != 0)
|
2007-11-16 21:31:03 +00:00
|
|
|
goto usage;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
2008-06-02 21:08:36 +00:00
|
|
|
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
|
2007-11-16 21:31:03 +00:00
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->entry->free(self);
|
2007-11-16 21:31:03 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_switch_client_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2007-11-16 21:31:03 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_switch_client_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
struct client *c;
|
2007-11-16 21:31:03 +00:00
|
|
|
struct session *s;
|
|
|
|
|
|
|
|
if (data == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
if ((c = cmd_find_client(ctx, data->name)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-06-05 21:25:00 +00:00
|
|
|
if ((s = cmd_find_session(ctx, data->target)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-06-18 22:21:51 +00:00
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
c->session = s;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-16 21:31:03 +00:00
|
|
|
recalculate_sizes();
|
2008-06-02 18:08:17 +00:00
|
|
|
server_redraw_client(c);
|
2007-11-16 21:31:03 +00:00
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2007-11-16 21:31:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_switch_client_free(struct cmd *self)
|
2007-11-16 21:31:03 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_switch_client_data *data = self->data;
|
2007-11-16 21:31:03 +00:00
|
|
|
|
|
|
|
if (data->name != NULL)
|
|
|
|
xfree(data->name);
|
2008-06-05 21:25:00 +00:00
|
|
|
if (data->target != NULL)
|
|
|
|
xfree(data->target);
|
2007-11-16 21:31:03 +00:00
|
|
|
xfree(data);
|
|
|
|
}
|
2008-06-05 17:12:11 +00:00
|
|
|
|
2009-01-18 14:40:48 +00:00
|
|
|
size_t
|
2008-06-05 17:12:11 +00:00
|
|
|
cmd_switch_client_print(struct cmd *self, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct cmd_switch_client_data *data = self->data;
|
|
|
|
size_t off = 0;
|
|
|
|
|
|
|
|
off += xsnprintf(buf, len, "%s", self->entry->name);
|
|
|
|
if (data == NULL)
|
2009-01-18 14:40:48 +00:00
|
|
|
return (off);
|
2008-06-05 17:12:11 +00:00
|
|
|
if (off < len && data->name != NULL)
|
2009-01-18 14:40:48 +00:00
|
|
|
off += cmd_prarg(buf + off, len - off, " -c ", data->name);
|
2008-06-05 21:25:00 +00:00
|
|
|
if (off < len && data->target != NULL)
|
2009-01-18 14:40:48 +00:00
|
|
|
off += cmd_prarg(buf + off, len - off, " -t ", data->target);
|
|
|
|
return (off);
|
2008-06-05 17:12:11 +00:00
|
|
|
}
|