2008-06-05 21:25:00 +00:00
|
|
|
/* $Id: cmd-new-window.c,v 1.23 2008-06-05 21:25:00 nicm Exp $ */
|
2007-10-03 23:32:26 +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>
|
2007-10-26 12:29:07 +00:00
|
|
|
#include <stdlib.h>
|
2007-10-03 23:32:26 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new window.
|
|
|
|
*/
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
int cmd_new_window_parse(struct cmd *, int, char **, char **);
|
|
|
|
void cmd_new_window_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_new_window_send(struct cmd *, struct buffer *);
|
|
|
|
void cmd_new_window_recv(struct cmd *, struct buffer *);
|
|
|
|
void cmd_new_window_free(struct cmd *);
|
|
|
|
void cmd_new_window_init(struct cmd *, int);
|
2008-06-05 17:12:11 +00:00
|
|
|
void cmd_new_window_print(struct cmd *, char *, size_t);
|
2007-10-03 23:32:26 +00:00
|
|
|
|
|
|
|
struct cmd_new_window_data {
|
2008-06-05 21:25:00 +00:00
|
|
|
char *target;
|
2007-10-03 23:32:26 +00:00
|
|
|
char *name;
|
|
|
|
char *cmd;
|
|
|
|
int flag_detached;
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct cmd_entry cmd_new_window_entry = {
|
2008-06-02 18:08:17 +00:00
|
|
|
"new-window", "neww",
|
2008-06-05 21:25:00 +00:00
|
|
|
"[-d] [-t target-window] [-n window-name] [command]",
|
2008-06-02 18:08:17 +00:00
|
|
|
0,
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_new_window_init,
|
2007-10-03 23:32:26 +00:00
|
|
|
cmd_new_window_parse,
|
2007-12-06 09:46:23 +00:00
|
|
|
cmd_new_window_exec,
|
2007-10-03 23:32:26 +00:00
|
|
|
cmd_new_window_send,
|
|
|
|
cmd_new_window_recv,
|
2008-06-03 05:35:51 +00:00
|
|
|
cmd_new_window_free,
|
2008-06-05 17:12:11 +00:00
|
|
|
cmd_new_window_print
|
2007-10-03 23:32:26 +00:00
|
|
|
};
|
|
|
|
|
2008-06-03 05:35:51 +00:00
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_new_window_init(struct cmd *self, unused int arg)
|
2007-10-03 23:32:26 +00:00
|
|
|
{
|
2008-06-03 05:35:51 +00:00
|
|
|
struct cmd_new_window_data *data;
|
2007-10-03 23:32:26 +00:00
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2008-06-05 21:25:00 +00:00
|
|
|
data->target = NULL;
|
2007-10-03 23:32:26 +00:00
|
|
|
data->name = NULL;
|
|
|
|
data->cmd = NULL;
|
2008-06-05 21:25:00 +00:00
|
|
|
data->flag_detached = 0;
|
2008-06-03 05:35:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_new_window_parse(struct cmd *self, int argc, char **argv, char **cause)
|
2008-06-03 05:35:51 +00:00
|
|
|
{
|
|
|
|
struct cmd_new_window_data *data;
|
|
|
|
int opt;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->entry->init(self, 0);
|
|
|
|
data = self->data;
|
2007-10-03 23:32:26 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
while ((opt = getopt(argc, argv, "dt:n:")) != EOF) {
|
2007-10-03 23:32:26 +00:00
|
|
|
switch (opt) {
|
2008-06-03 16:55:09 +00:00
|
|
|
case 'd':
|
|
|
|
data->flag_detached = 1;
|
|
|
|
break;
|
2008-06-05 21:25:00 +00:00
|
|
|
case 't':
|
|
|
|
if (data->target == NULL)
|
|
|
|
data->target = xstrdup(optarg);
|
2007-10-26 12:29:07 +00:00
|
|
|
break;
|
2007-10-03 23:32:26 +00:00
|
|
|
case 'n':
|
2008-06-03 16:55:09 +00:00
|
|
|
if (data->name == NULL)
|
|
|
|
data->name = xstrdup(optarg);
|
2007-10-03 23:32:26 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
2007-10-03 23:32:26 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc != 0 && argc != 1)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
if (argc == 1)
|
|
|
|
data->cmd = xstrdup(argv[0]);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
usage:
|
2008-06-02 21:08:36 +00:00
|
|
|
xasprintf(cause, "usage: %s %s", self->entry->name, self->entry->usage);
|
2007-10-03 23:32:26 +00:00
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->entry->free(self);
|
2007-10-03 23:32:26 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_new_window_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2007-10-03 23:32:26 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_new_window_data *data = self->data;
|
2008-06-02 18:08:17 +00:00
|
|
|
struct session *s;
|
2007-10-26 12:29:07 +00:00
|
|
|
struct winlink *wl;
|
2007-10-03 23:32:26 +00:00
|
|
|
char *cmd;
|
2008-06-05 21:25:00 +00:00
|
|
|
int idx;
|
2007-10-03 23:32:26 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (arg_parse_window(data->target, &s, &idx) != 0) {
|
|
|
|
ctx->error(ctx, "bad window: %s", data->target);
|
2008-06-02 18:08:17 +00:00
|
|
|
return;
|
2008-06-05 21:25:00 +00:00
|
|
|
}
|
|
|
|
if (s == NULL)
|
|
|
|
s = ctx->cursession;
|
|
|
|
if (s == NULL)
|
|
|
|
s = cmd_current_session(ctx);
|
|
|
|
if (s == NULL) {
|
|
|
|
ctx->error(ctx, "session not found: %s", data->target);
|
|
|
|
return;
|
|
|
|
}
|
2008-06-02 18:08:17 +00:00
|
|
|
|
2008-06-03 21:42:37 +00:00
|
|
|
cmd = data->cmd;
|
|
|
|
if (cmd == NULL)
|
|
|
|
cmd = options_get_string(&s->options, "default-command");
|
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
wl = session_new(s, data->name, cmd, idx);
|
2007-11-13 09:53:47 +00:00
|
|
|
if (wl == NULL) {
|
2007-10-03 23:32:26 +00:00
|
|
|
ctx->error(ctx, "command failed: %s", cmd);
|
|
|
|
return;
|
|
|
|
}
|
2007-10-04 00:02:10 +00:00
|
|
|
if (!data->flag_detached) {
|
2008-06-02 18:08:17 +00:00
|
|
|
session_select(s, wl->idx);
|
|
|
|
server_redraw_session(s);
|
2007-10-12 11:24:15 +00:00
|
|
|
} else
|
2008-06-02 18:08:17 +00:00
|
|
|
server_status_session(s);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-11-16 21:12:31 +00:00
|
|
|
if (ctx->cmdclient != NULL)
|
|
|
|
server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0);
|
2007-10-03 23:32:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_new_window_send(struct cmd *self, struct buffer *b)
|
2007-10-03 23:32:26 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_new_window_data *data = self->data;
|
2007-10-03 23:32:26 +00:00
|
|
|
|
|
|
|
buffer_write(b, data, sizeof *data);
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_send_string(b, data->target);
|
2007-10-03 23:32:26 +00:00
|
|
|
cmd_send_string(b, data->name);
|
|
|
|
cmd_send_string(b, data->cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_new_window_recv(struct cmd *self, struct buffer *b)
|
2007-10-03 23:32:26 +00:00
|
|
|
{
|
|
|
|
struct cmd_new_window_data *data;
|
|
|
|
|
2008-06-05 16:35:32 +00:00
|
|
|
self->data = data = xmalloc(sizeof *data);
|
2007-10-03 23:32:26 +00:00
|
|
|
buffer_read(b, data, sizeof *data);
|
2008-06-05 21:25:00 +00:00
|
|
|
data->target = cmd_recv_string(b);
|
2007-10-03 23:32:26 +00:00
|
|
|
data->name = cmd_recv_string(b);
|
|
|
|
data->cmd = cmd_recv_string(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-05 16:35:32 +00:00
|
|
|
cmd_new_window_free(struct cmd *self)
|
2007-10-03 23:32:26 +00:00
|
|
|
{
|
2008-06-05 16:35:32 +00:00
|
|
|
struct cmd_new_window_data *data = self->data;
|
2007-10-03 23:32:26 +00:00
|
|
|
|
2008-06-05 21:25:00 +00:00
|
|
|
if (data->target != NULL)
|
|
|
|
xfree(data->target);
|
2007-10-03 23:32:26 +00:00
|
|
|
if (data->name != NULL)
|
|
|
|
xfree(data->name);
|
|
|
|
if (data->cmd != NULL)
|
|
|
|
xfree(data->cmd);
|
|
|
|
xfree(data);
|
|
|
|
}
|
2008-06-05 17:12:11 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
cmd_new_window_print(struct cmd *self, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct cmd_new_window_data *data = self->data;
|
|
|
|
size_t off = 0;
|
|
|
|
|
|
|
|
off += xsnprintf(buf, len, "%s", self->entry->name);
|
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
if (off < len && data->flag_detached)
|
|
|
|
off += xsnprintf(buf + off, len - off, " -d");
|
2008-06-05 21:25:00 +00:00
|
|
|
if (off < len && data->target != NULL)
|
|
|
|
off += xsnprintf(buf + off, len - off, " -t %s", data->target);
|
2008-06-05 17:12:11 +00:00
|
|
|
if (off < len && data->name != NULL)
|
|
|
|
off += xsnprintf(buf + off, len - off, " -n %s", data->name);
|
|
|
|
if (off < len && data->cmd != NULL)
|
|
|
|
off += xsnprintf(buf + off, len - off, " %s", data->cmd);
|
|
|
|
}
|