2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <stdlib.h>
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new window.
|
|
|
|
*/
|
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
#define NEW_WINDOW_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"
|
|
|
|
|
2013-03-24 09:54:10 +00:00
|
|
|
enum cmd_retval cmd_new_window_exec(struct cmd *, struct cmd_q *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_new_window_entry = {
|
|
|
|
"new-window", "neww",
|
2014-05-13 08:08:32 +00:00
|
|
|
"ac:dF:kn:Pt:", 0, -1,
|
2012-03-04 20:50:53 +00:00
|
|
|
"[-adkP] [-c start-directory] [-F format] [-n window-name] "
|
2012-12-09 23:17:35 +00:00
|
|
|
CMD_TARGET_WINDOW_USAGE " [command]",
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
cmd_new_window_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2013-03-24 09:54:10 +00:00
|
|
|
cmd_new_window_exec(struct cmd *self, struct cmd_q *cmdq)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2012-03-04 20:50:53 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
2015-10-31 08:13:58 +00:00
|
|
|
const char *cmd, *path, *template, *cwd, *to_free;
|
2014-05-13 08:08:32 +00:00
|
|
|
char **argv, *cause, *cp;
|
2015-10-31 08:13:58 +00:00
|
|
|
int argc, idx, detached;
|
2012-03-04 20:50:53 +00:00
|
|
|
struct format_tree *ft;
|
2014-04-17 13:02:59 +00:00
|
|
|
struct environ_entry *envent;
|
2011-01-04 00:42:46 +00:00
|
|
|
|
|
|
|
if (args_has(args, 'a')) {
|
2013-03-24 09:54:10 +00:00
|
|
|
wl = cmd_find_window(cmdq, args_get(args, 't'), &s);
|
2011-01-04 00:42:46 +00:00
|
|
|
if (wl == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2015-06-17 16:50:28 +00:00
|
|
|
if ((idx = winlink_shuffle_up(s, wl)) == -1) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "no free window indexes");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-03-27 11:46:58 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-17 13:02:59 +00:00
|
|
|
idx = cmd_find_index(cmdq, args_get(args, 't'), &s);
|
|
|
|
if (idx == -2)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-03-27 11:46:58 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
detached = args_has(args, 'd');
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2014-05-13 08:08:32 +00:00
|
|
|
if (args->argc == 0) {
|
2015-10-27 15:58:42 +00:00
|
|
|
cmd = options_get_string(s->options, "default-command");
|
2014-05-13 08:08:32 +00:00
|
|
|
if (cmd != NULL && *cmd != '\0') {
|
|
|
|
argc = 1;
|
2014-09-01 21:50:18 +00:00
|
|
|
argv = (char **)&cmd;
|
2014-05-13 08:08:32 +00:00
|
|
|
} else {
|
|
|
|
argc = 0;
|
|
|
|
argv = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
argc = args->argc;
|
|
|
|
argv = args->argv;
|
|
|
|
}
|
2013-10-10 12:26:34 +00:00
|
|
|
|
2014-04-17 13:02:59 +00:00
|
|
|
path = NULL;
|
|
|
|
if (cmdq->client != NULL && cmdq->client->session == NULL)
|
2015-10-28 09:51:55 +00:00
|
|
|
envent = environ_find(cmdq->client->environ, "PATH");
|
2014-04-17 13:02:59 +00:00
|
|
|
else
|
2015-10-28 09:51:55 +00:00
|
|
|
envent = environ_find(s->environ, "PATH");
|
2014-04-17 13:02:59 +00:00
|
|
|
if (envent != NULL)
|
|
|
|
path = envent->value;
|
|
|
|
|
2015-10-31 08:13:58 +00:00
|
|
|
to_free = NULL;
|
2013-10-10 12:26:34 +00:00
|
|
|
if (args_has(args, 'c')) {
|
|
|
|
ft = format_create();
|
2015-02-05 10:29:43 +00:00
|
|
|
format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, NULL,
|
|
|
|
NULL);
|
2015-10-31 08:13:58 +00:00
|
|
|
cwd = format_expand(ft, args_get(args, 'c'));
|
2013-10-10 12:26:34 +00:00
|
|
|
format_free(ft);
|
2013-10-10 12:28:38 +00:00
|
|
|
} else if (cmdq->client != NULL && cmdq->client->session == NULL)
|
2013-10-10 12:26:34 +00:00
|
|
|
cwd = cmdq->client->cwd;
|
|
|
|
else
|
|
|
|
cwd = s->cwd;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2013-11-23 09:18:29 +00:00
|
|
|
wl = NULL;
|
|
|
|
if (idx != -1)
|
|
|
|
wl = winlink_find_by_index(&s->windows, idx);
|
|
|
|
if (wl != NULL && args_has(args, 'k')) {
|
|
|
|
/*
|
|
|
|
* Can't use session_detach as it will destroy session if this
|
|
|
|
* makes it empty.
|
|
|
|
*/
|
|
|
|
notify_window_unlinked(s, wl->window);
|
|
|
|
wl->flags &= ~WINLINK_ALERTFLAGS;
|
|
|
|
winlink_stack_remove(&s->lastw, wl);
|
|
|
|
winlink_remove(&s->windows, wl);
|
|
|
|
|
|
|
|
/* Force select/redraw if current. */
|
|
|
|
if (wl == s->curw) {
|
|
|
|
detached = 0;
|
|
|
|
s->curw = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-13 20:11:58 +00:00
|
|
|
if (idx == -1)
|
2015-10-27 15:58:42 +00:00
|
|
|
idx = -1 - options_get_number(s->options, "base-index");
|
2014-05-13 08:08:32 +00:00
|
|
|
wl = session_new(s, args_get(args, 'n'), argc, argv, path, cwd, idx,
|
|
|
|
&cause);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (wl == NULL) {
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_error(cmdq, "create window failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2013-10-10 12:26:34 +00:00
|
|
|
goto error;
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!detached) {
|
2009-06-01 22:58:49 +00:00
|
|
|
session_select(s, wl->idx);
|
2009-10-10 10:02:48 +00:00
|
|
|
server_redraw_session_group(s);
|
2009-12-03 22:50:09 +00:00
|
|
|
} else
|
2009-10-10 10:02:48 +00:00
|
|
|
server_status_session_group(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-03-04 20:50:53 +00:00
|
|
|
if (args_has(args, 'P')) {
|
2012-05-22 11:35:37 +00:00
|
|
|
if ((template = args_get(args, 'F')) == NULL)
|
2012-08-14 08:51:53 +00:00
|
|
|
template = NEW_WINDOW_TEMPLATE;
|
2012-03-04 20:50:53 +00:00
|
|
|
|
|
|
|
ft = format_create();
|
2015-02-05 10:29:43 +00:00
|
|
|
format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, wl,
|
|
|
|
NULL);
|
2012-03-04 20:50:53 +00:00
|
|
|
|
|
|
|
cp = format_expand(ft, template);
|
2013-03-24 09:54:10 +00:00
|
|
|
cmdq_print(cmdq, "%s", cp);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cp);
|
2012-03-04 20:50:53 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
|
|
|
}
|
|
|
|
|
2015-10-31 08:13:58 +00:00
|
|
|
if (to_free != NULL)
|
|
|
|
free((void *)to_free);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2013-10-10 12:26:34 +00:00
|
|
|
|
|
|
|
error:
|
2015-10-31 08:13:58 +00:00
|
|
|
if (to_free != NULL)
|
|
|
|
free((void *)to_free);
|
2013-10-10 12:26:34 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|