mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 17:24:18 +00:00 
			
		
		
		
	commands and allow a command to block execution of subsequent commands. This allows run-shell and if-shell to be synchronous which has been much requested. Each client has a default command queue and commands are consumed one at a time from it. A command may suspend execution from the queue by returning CMD_RETURN_WAIT and then resume it by calling cmd_continue() - for example run-shell does this from the callback that is fired after the job is freed. When the command queue becomes empty, command clients are automatically exited (unless attaching). A callback is also fired - this is used for nested commands in, for example, if-shell which can block execution of the client's cmdq until a new cmdq becomes empty. Also merge all the old error/info/print functions together and lose the old curclient/cmdclient distinction - a cmdq is bound to one client (or none if in the configuration file), this is a command client if c->session is NULL otherwise an attached client.
		
			
				
	
	
		
			144 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			144 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Id$ */
 | 
						|
 | 
						|
/*
 | 
						|
 * 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 "tmux.h"
 | 
						|
 | 
						|
/*
 | 
						|
 * Create a new window.
 | 
						|
 */
 | 
						|
 | 
						|
enum cmd_retval	cmd_new_window_exec(struct cmd *, struct cmd_q *);
 | 
						|
 | 
						|
const struct cmd_entry cmd_new_window_entry = {
 | 
						|
	"new-window", "neww",
 | 
						|
	"ac:dF:kn:Pt:", 0, 1,
 | 
						|
	"[-adkP] [-c start-directory] [-F format] [-n window-name] "
 | 
						|
	CMD_TARGET_WINDOW_USAGE " [command]",
 | 
						|
	0,
 | 
						|
	NULL,
 | 
						|
	NULL,
 | 
						|
	cmd_new_window_exec
 | 
						|
};
 | 
						|
 | 
						|
enum cmd_retval
 | 
						|
cmd_new_window_exec(struct cmd *self, struct cmd_q *cmdq)
 | 
						|
{
 | 
						|
	struct args		*args = self->args;
 | 
						|
	struct session		*s;
 | 
						|
	struct winlink		*wl;
 | 
						|
	struct client		*c;
 | 
						|
	const char		*cmd, *cwd;
 | 
						|
	const char		*template;
 | 
						|
	char			*cause;
 | 
						|
	int			 idx, last, detached;
 | 
						|
	struct format_tree	*ft;
 | 
						|
	char			*cp;
 | 
						|
 | 
						|
	if (args_has(args, 'a')) {
 | 
						|
		wl = cmd_find_window(cmdq, args_get(args, 't'), &s);
 | 
						|
		if (wl == NULL)
 | 
						|
			return (CMD_RETURN_ERROR);
 | 
						|
		idx = wl->idx + 1;
 | 
						|
 | 
						|
		/* Find the next free index. */
 | 
						|
		for (last = idx; last < INT_MAX; last++) {
 | 
						|
			if (winlink_find_by_index(&s->windows, last) == NULL)
 | 
						|
				break;
 | 
						|
		}
 | 
						|
		if (last == INT_MAX) {
 | 
						|
			cmdq_error(cmdq, "no free window indexes");
 | 
						|
			return (CMD_RETURN_ERROR);
 | 
						|
		}
 | 
						|
 | 
						|
		/* Move everything from last - 1 to idx up a bit. */
 | 
						|
		for (; last > idx; last--) {
 | 
						|
			wl = winlink_find_by_index(&s->windows, last - 1);
 | 
						|
			server_link_window(s, wl, s, last, 0, 0, NULL);
 | 
						|
			server_unlink_window(s, wl);
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		if ((idx = cmd_find_index(cmdq, args_get(args, 't'), &s)) == -2)
 | 
						|
			return (CMD_RETURN_ERROR);
 | 
						|
	}
 | 
						|
	detached = args_has(args, 'd');
 | 
						|
 | 
						|
	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;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if (args->argc == 0)
 | 
						|
		cmd = options_get_string(&s->options, "default-command");
 | 
						|
	else
 | 
						|
		cmd = args->argv[0];
 | 
						|
	cwd = cmd_get_default_path(cmdq, args_get(args, 'c'));
 | 
						|
 | 
						|
	if (idx == -1)
 | 
						|
		idx = -1 - options_get_number(&s->options, "base-index");
 | 
						|
	wl = session_new(s, args_get(args, 'n'), cmd, cwd, idx, &cause);
 | 
						|
	if (wl == NULL) {
 | 
						|
		cmdq_error(cmdq, "create window failed: %s", cause);
 | 
						|
		free(cause);
 | 
						|
		return (CMD_RETURN_ERROR);
 | 
						|
	}
 | 
						|
	if (!detached) {
 | 
						|
		session_select(s, wl->idx);
 | 
						|
		server_redraw_session_group(s);
 | 
						|
	} else
 | 
						|
		server_status_session_group(s);
 | 
						|
 | 
						|
	if (args_has(args, 'P')) {
 | 
						|
		if ((template = args_get(args, 'F')) == NULL)
 | 
						|
			template = NEW_WINDOW_TEMPLATE;
 | 
						|
 | 
						|
		ft = format_create();
 | 
						|
		if ((c = cmd_find_client(cmdq, NULL, 1)) != NULL)
 | 
						|
			format_client(ft, c);
 | 
						|
		format_session(ft, s);
 | 
						|
		format_winlink(ft, s, wl);
 | 
						|
		format_window_pane(ft, wl->window->active);
 | 
						|
 | 
						|
		cp = format_expand(ft, template);
 | 
						|
		cmdq_print(cmdq, "%s", cp);
 | 
						|
		free(cp);
 | 
						|
 | 
						|
		format_free(ft);
 | 
						|
	}
 | 
						|
 | 
						|
	return (CMD_RETURN_NORMAL);
 | 
						|
}
 |