summaryrefslogtreecommitdiffstats
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-02-23 22:25:58 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-02-23 22:25:58 +0000
commit3964309c67a683e5132662e38b5ff932af5cbeea (patch)
treef8566b756787ef7ceeed61e63f61b2a0ece4c751 /server.c
parent357da035b9d052b4cba8db806c6237272ade6673 (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 'server.c')
-rw-r--r--server.c42
1 files changed, 24 insertions, 18 deletions
diff --git a/server.c b/server.c
index 4537bf7d..4bfa9185 100644
--- a/server.c
+++ b/server.c
@@ -105,8 +105,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)
@@ -163,23 +164,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);