mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	Add a command queue to standardize and simplify commands that call other
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.
This commit is contained in:
		
							
								
								
									
										42
									
								
								server.c
									
									
									
									
									
								
							
							
						
						
									
										42
									
								
								server.c
									
									
									
									
									
								
							@@ -106,8 +106,9 @@ server_create_socket(void)
 | 
			
		||||
int
 | 
			
		||||
server_start(int lockfd, char *lockfile)
 | 
			
		||||
{
 | 
			
		||||
	int	 	pair[2];
 | 
			
		||||
	struct timeval	tv;
 | 
			
		||||
	int	 	 pair[2];
 | 
			
		||||
	struct timeval	 tv;
 | 
			
		||||
	char		*cause;
 | 
			
		||||
 | 
			
		||||
	/* The first client is special and gets a socketpair; create it. */
 | 
			
		||||
	if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pair) != 0)
 | 
			
		||||
@@ -162,23 +163,28 @@ server_start(int lockfd, char *lockfile)
 | 
			
		||||
	free(lockfile);
 | 
			
		||||
	close(lockfd);
 | 
			
		||||
 | 
			
		||||
	if (access(SYSTEM_CFG, R_OK) == 0)
 | 
			
		||||
		load_cfg(SYSTEM_CFG, NULL, &cfg_causes);
 | 
			
		||||
	else if (errno != ENOENT) {
 | 
			
		||||
		cfg_add_cause(
 | 
			
		||||
		    &cfg_causes, "%s: %s", SYSTEM_CFG, strerror(errno));
 | 
			
		||||
	cfg_cmd_q = cmdq_new(NULL);
 | 
			
		||||
	cfg_cmd_q->emptyfn = cfg_default_done;
 | 
			
		||||
	cfg_finished = 0;
 | 
			
		||||
	cfg_references = 1;
 | 
			
		||||
	ARRAY_INIT(&cfg_causes);
 | 
			
		||||
 | 
			
		||||
	if (access(SYSTEM_CFG, R_OK) == 0) {
 | 
			
		||||
		if (load_cfg(SYSTEM_CFG, cfg_cmd_q, &cause) == -1) {
 | 
			
		||||
			xasprintf(&cause, "%s: %s", SYSTEM_CFG, cause);
 | 
			
		||||
			ARRAY_ADD(&cfg_causes, cause);
 | 
			
		||||
		}
 | 
			
		||||
	} else if (errno != ENOENT) {
 | 
			
		||||
		xasprintf(&cause, "%s: %s", SYSTEM_CFG, strerror(errno));
 | 
			
		||||
		ARRAY_ADD(&cfg_causes, cause);
 | 
			
		||||
	}
 | 
			
		||||
	if (cfg_file != NULL)
 | 
			
		||||
		load_cfg(cfg_file, NULL, &cfg_causes);
 | 
			
		||||
 | 
			
		||||
	/*
 | 
			
		||||
	 * If there is a session already, put the current window and pane into
 | 
			
		||||
	 * more mode.
 | 
			
		||||
	 */
 | 
			
		||||
	if (!RB_EMPTY(&sessions) && !ARRAY_EMPTY(&cfg_causes))
 | 
			
		||||
		show_cfg_causes(RB_MIN(sessions, &sessions));
 | 
			
		||||
 | 
			
		||||
	cfg_finished = 1;
 | 
			
		||||
	if (cfg_file != NULL) {
 | 
			
		||||
		if (load_cfg(cfg_file, cfg_cmd_q, &cause) == -1) {
 | 
			
		||||
			xasprintf(&cause, "%s: %s", cfg_file, cause);
 | 
			
		||||
			ARRAY_ADD(&cfg_causes, cause);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	cmdq_continue(cfg_cmd_q);
 | 
			
		||||
 | 
			
		||||
	server_add_accept(0);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user