2007-11-13 09:53:47 +00:00
|
|
|
/* $Id: cmd-new-session.c,v 1.16 2007-11-13 09:53:47 nicm Exp $ */
|
2007-10-03 21:31:07 +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 <getopt.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new session and attach to the current terminal unless -d is given.
|
|
|
|
*/
|
|
|
|
|
2007-10-19 09:21:26 +00:00
|
|
|
int cmd_new_session_parse(void **, int, char **, char **);
|
|
|
|
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 *);
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
struct cmd_new_session_data {
|
|
|
|
char *name;
|
2007-10-19 17:15:29 +00:00
|
|
|
char *winname;
|
2007-10-04 13:43:14 +00:00
|
|
|
char *cmd;
|
2007-10-03 21:31:07 +00:00
|
|
|
int flag_detached;
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct cmd_entry cmd_new_session_entry = {
|
2007-10-19 17:15:29 +00:00
|
|
|
"new-session", "new",
|
2007-11-09 16:04:29 +00:00
|
|
|
"[-d] [-s session-name] [-n window-name] [command]",
|
2007-10-12 14:46:48 +00:00
|
|
|
CMD_STARTSERVER|CMD_NOSESSION|CMD_CANTNEST,
|
2007-10-03 21:31:07 +00:00
|
|
|
cmd_new_session_parse,
|
|
|
|
cmd_new_session_exec,
|
|
|
|
cmd_new_session_send,
|
|
|
|
cmd_new_session_recv,
|
|
|
|
cmd_new_session_free
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
cmd_new_session_parse(void **ptr, int argc, char **argv, char **cause)
|
|
|
|
{
|
|
|
|
struct cmd_new_session_data *data;
|
|
|
|
int opt;
|
|
|
|
|
|
|
|
*ptr = data = xmalloc(sizeof *data);
|
|
|
|
data->flag_detached = 0;
|
|
|
|
data->name = NULL;
|
2007-10-19 17:15:29 +00:00
|
|
|
data->winname = NULL;
|
2007-10-04 13:43:14 +00:00
|
|
|
data->cmd = NULL;
|
2007-10-03 21:31:07 +00:00
|
|
|
|
2007-10-19 17:15:29 +00:00
|
|
|
while ((opt = getopt(argc, argv, "ds:n:")) != EOF) {
|
2007-10-03 21:31:07 +00:00
|
|
|
switch (opt) {
|
|
|
|
case 'd':
|
|
|
|
data->flag_detached = 1;
|
|
|
|
break;
|
2007-10-19 17:15:29 +00:00
|
|
|
case 's':
|
2007-10-03 21:31:07 +00:00
|
|
|
data->name = xstrdup(optarg);
|
|
|
|
break;
|
2007-10-19 17:15:29 +00:00
|
|
|
case 'n':
|
|
|
|
data->winname = xstrdup(optarg);
|
|
|
|
break;
|
2007-10-03 21:31:07 +00:00
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
2007-10-03 23:32:26 +00:00
|
|
|
argv += optind;
|
2007-10-04 13:43:14 +00:00
|
|
|
if (argc != 0 && argc != 1)
|
2007-10-03 21:31:07 +00:00
|
|
|
goto usage;
|
|
|
|
|
2007-10-04 13:43:14 +00:00
|
|
|
if (argc == 1)
|
|
|
|
data->cmd = xstrdup(argv[0]);
|
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
2007-10-04 21:48:11 +00:00
|
|
|
usage(cause, "%s %s",
|
|
|
|
cmd_new_session_entry.name, cmd_new_session_entry.usage);
|
2007-10-04 10:11:32 +00:00
|
|
|
|
|
|
|
cmd_new_session_free(data);
|
2007-10-03 21:31:07 +00:00
|
|
|
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 cmd_new_session_data std = { NULL, NULL, NULL, 0 };
|
2007-11-13 09:53:47 +00:00
|
|
|
struct client *c;
|
2007-10-04 13:43:14 +00:00
|
|
|
char *cmd;
|
2007-10-03 21:31:07 +00:00
|
|
|
u_int sy;
|
|
|
|
|
|
|
|
if (data == NULL)
|
|
|
|
data = &std;
|
|
|
|
|
|
|
|
if (ctx->flags & CMD_KEY)
|
|
|
|
return;
|
|
|
|
|
2007-11-13 09:53:47 +00:00
|
|
|
c = ctx->client;
|
2007-10-03 21:31:07 +00:00
|
|
|
if (!data->flag_detached && !(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;
|
|
|
|
}
|
|
|
|
|
|
|
|
sy = c->sy;
|
|
|
|
if (sy < status_lines)
|
|
|
|
sy = status_lines + 1;
|
|
|
|
sy -= status_lines;
|
2007-10-04 13:43:14 +00:00
|
|
|
|
|
|
|
cmd = data->cmd;
|
|
|
|
if (cmd == NULL)
|
|
|
|
cmd = default_command;
|
2007-11-13 09:53:47 +00:00
|
|
|
|
2007-10-04 13:43:14 +00:00
|
|
|
c->session = session_create(data->name, cmd, c->sx, sy);
|
2007-10-03 21:31:07 +00:00
|
|
|
if (c->session == NULL)
|
|
|
|
fatalx("session_create failed");
|
2007-10-19 17:15:29 +00:00
|
|
|
if (data->winname != NULL) {
|
2007-10-26 12:29:07 +00:00
|
|
|
xfree(c->session->curw->window->name);
|
|
|
|
c->session->curw->window->name = xstrdup(data->winname);
|
2007-10-19 17:15:29 +00:00
|
|
|
}
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
if (data->flag_detached)
|
|
|
|
server_write_client(c, MSG_EXIT, NULL, 0);
|
|
|
|
else {
|
|
|
|
server_write_client(c, MSG_READY, NULL, 0);
|
2007-10-04 00:02:10 +00:00
|
|
|
server_redraw_client(c);
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2007-10-04 13:43:14 +00:00
|
|
|
cmd_send_string(b, data->cmd);
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2007-10-04 13:43:14 +00:00
|
|
|
data->cmd = cmd_recv_string(b);
|
2007-10-03 21:31:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2007-10-04 13:43:14 +00:00
|
|
|
if (data->cmd != NULL)
|
|
|
|
xfree(data->cmd);
|
2007-10-03 21:31:07 +00:00
|
|
|
xfree(data);
|
|
|
|
}
|