tmux/cmd-new-session.c

213 lines
4.8 KiB
C
Raw Normal View History

2008-06-03 21:42:37 +00:00
/* $Id: cmd-new-session.c,v 1.24 2008-06-03 21:42:37 nicm Exp $ */
/*
* 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 <getopt.h>
#include "tmux.h"
/*
* Create a new session and attach to the current terminal unless -d is given.
*/
int cmd_new_session_parse(struct cmd *, void **, int, char **, char **);
2007-10-19 09:21:26 +00:00
void cmd_new_session_exec(void *, struct cmd_ctx *);
void cmd_new_session_send(void *, struct buffer *);
void cmd_new_session_recv(void **, struct buffer *);
void cmd_new_session_free(void *);
void cmd_new_session_init(void **, int);
struct cmd_new_session_data {
char *name;
2007-10-19 17:15:29 +00:00
char *winname;
char *cmd;
int flag_detached;
};
const struct cmd_entry cmd_new_session_entry = {
2007-10-19 17:15:29 +00:00
"new-session", "new",
"[-d] [-n window-name] [-s session-name] [command]",
CMD_STARTSERVER|CMD_CANTNEST,
cmd_new_session_parse,
cmd_new_session_exec,
cmd_new_session_send,
cmd_new_session_recv,
cmd_new_session_free,
cmd_new_session_init
};
void
cmd_new_session_init(void **ptr, unused int arg)
{
struct cmd_new_session_data *data;
*ptr = data = xmalloc(sizeof *data);
data->flag_detached = 0;
data->name = NULL;
2007-10-19 17:15:29 +00:00
data->winname = NULL;
data->cmd = NULL;
}
int
cmd_new_session_parse(
struct cmd *self, void **ptr, int argc, char **argv, char **cause)
{
struct cmd_new_session_data *data;
int opt;
self->entry->init(ptr, 0);
data = *ptr;
2007-10-19 17:15:29 +00:00
while ((opt = getopt(argc, argv, "ds:n:")) != EOF) {
switch (opt) {
case 'd':
data->flag_detached = 1;
break;
2007-10-19 17:15:29 +00:00
case 's':
data->name = xstrdup(optarg);
break;
2007-10-19 17:15:29 +00:00
case 'n':
data->winname = xstrdup(optarg);
break;
default:
goto usage;
}
}
argc -= optind;
2007-10-03 23:32:26 +00:00
argv += optind;
if (argc != 0 && argc != 1)
goto usage;
if (argc == 1)
data->cmd = xstrdup(argv[0]);
return (0);
usage:
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
2007-10-04 10:11:32 +00:00
cmd_new_session_free(data);
return (-1);
}
void
cmd_new_session_exec(void *ptr, struct cmd_ctx *ctx)
{
2007-10-19 17:15:29 +00:00
struct cmd_new_session_data *data = ptr;
struct client *c = ctx->cmdclient;
struct session *s;
char *cmd, *cause;
2008-06-03 21:42:37 +00:00
u_int sx, sy, slines;
if (ctx->flags & CMD_KEY)
return;
if (!data->flag_detached) {
if (c == NULL) {
ctx->error(ctx, "no client to attach to");
return;
}
if (!(c->flags & CLIENT_TERMINAL)) {
ctx->error(ctx, "not a terminal");
return;
}
}
if (data->name != NULL && session_find(data->name) != NULL) {
ctx->error(ctx, "duplicate session: %s", data->name);
return;
}
cmd = data->cmd;
if (cmd == NULL)
2008-06-03 21:42:37 +00:00
cmd = options_get_string(&global_options, "default-command");
sx = 80;
sy = 25;
if (!data->flag_detached) {
sx = c->sx;
sy = c->sy;
}
2008-06-03 21:42:37 +00:00
slines = options_get_number(&global_options, "status-lines");
if (sy < slines)
sy = slines + 1;
sy -= slines;
if (!data->flag_detached && tty_open(&c->tty, &cause) != 0) {
ctx->error(ctx, "%s", cause);
xfree(cause);
return;
}
if ((s = session_create(data->name, cmd, sx, sy)) == NULL)
fatalx("session_create failed");
2007-10-19 17:15:29 +00:00
if (data->winname != NULL) {
xfree(s->curw->window->name);
s->curw->window->name = xstrdup(data->winname);
2007-10-19 17:15:29 +00:00
}
if (data->flag_detached) {
if (c != NULL)
server_write_client(c, MSG_EXIT, NULL, 0);
} else {
c->session = s;
server_write_client(c, MSG_READY, NULL, 0);
server_redraw_client(c);
}
}
void
cmd_new_session_send(void *ptr, struct buffer *b)
{
struct cmd_new_session_data *data = ptr;
buffer_write(b, data, sizeof *data);
cmd_send_string(b, data->name);
2007-10-19 17:15:29 +00:00
cmd_send_string(b, data->winname);
cmd_send_string(b, data->cmd);
}
void
cmd_new_session_recv(void **ptr, struct buffer *b)
{
struct cmd_new_session_data *data;
*ptr = data = xmalloc(sizeof *data);
buffer_read(b, data, sizeof *data);
data->name = cmd_recv_string(b);
2007-10-19 17:15:29 +00:00
data->winname = cmd_recv_string(b);
data->cmd = cmd_recv_string(b);
}
void
cmd_new_session_free(void *ptr)
{
struct cmd_new_session_data *data = ptr;
if (data->name != NULL)
xfree(data->name);
2007-10-19 17:15:29 +00:00
if (data->winname != NULL)
xfree(data->winname);
if (data->cmd != NULL)
xfree(data->cmd);
xfree(data);
}