summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2013-03-24 09:54:11 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2013-03-24 09:54:11 +0000
commit850baabe4d0cd3495529b1629355880ad8e5863b (patch)
tree0195dd3f04fe64313e533bd611d8141243840fa5 /usr.bin/tmux/server.c
parent798d2212897db138c9f96aad84193f79fa47060f (diff)
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.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r--usr.bin/tmux/server.c44
1 files changed, 25 insertions, 19 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c
index 4db82fedfe1..c9a0604cd30 100644
--- a/usr.bin/tmux/server.c
+++ b/usr.bin/tmux/server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server.c,v 1.108 2013/03/22 10:31:22 nicm Exp $ */
+/* $OpenBSD: server.c,v 1.109 2013/03/24 09:54:10 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -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));
- }
- 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_cmd_q = cmdq_new(NULL);
+ cfg_cmd_q->emptyfn = cfg_default_done;
+ cfg_finished = 0;
+ cfg_references = 1;
+ ARRAY_INIT(&cfg_causes);
- cfg_finished = 1;
+ 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) {
+ 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);