aboutsummaryrefslogtreecommitdiff
path: root/sway/config.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-13 15:52:16 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-13 15:52:16 -0400
commit3a3c50135fabc6a23f7b130effef9b642e54bf3c (patch)
treed22fbf61f38f7c8987df51cf5f23b60e5f95e3b3 /sway/config.c
parent0dc1d87490eaadbe245af7406b0e5ca4d53f17a0 (diff)
parentffe59b27a956e4430a97d65874ef15c5e9129ee0 (diff)
Merge pull request #26 from Luminarys/master
Added in proper workspace name generation and command queue
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c53
1 files changed, 38 insertions, 15 deletions
diff --git a/sway/config.c b/sway/config.c
index 6fe681f6..d96d23fc 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -25,14 +25,22 @@ bool load_config() {
return false;
}
free(temp);
- config = read_config(f, false);
+
+ bool config_load_success;
+ if (config) {
+ config_load_success = read_config(f, true);
+ } else {
+ config_load_success = read_config(f, false);
+ }
fclose(f);
- return true;
+
+ return config_load_success;
}
void config_defaults(struct sway_config *config) {
config->symbols = create_list();
config->modes = create_list();
+ config->cmd_queue = create_list();
config->current_mode = malloc(sizeof(struct sway_mode));
config->current_mode->name = NULL;
config->current_mode->bindings = create_list();
@@ -41,14 +49,17 @@ void config_defaults(struct sway_config *config) {
config->focus_follows_mouse = true;
config->mouse_warping = true;
config->reloading = false;
+ config->active = false;
+ config->failed = false;
}
-struct sway_config *read_config(FILE *file, bool is_active) {
- struct sway_config *config = malloc(sizeof(struct sway_config));
- config_defaults(config);
-
+bool read_config(FILE *file, bool is_active) {
+ struct sway_config *temp_config = malloc(sizeof(struct sway_config));
+ config_defaults(temp_config);
if (is_active) {
- config->reloading = true;
+ sway_log(L_DEBUG, "Performing configuration file reload");
+ temp_config->reloading = true;
+ temp_config->active = true;
}
bool success = true;
@@ -68,9 +79,24 @@ struct sway_config *read_config(FILE *file, bool is_active) {
goto _continue;
}
- if (!temp_depth && handle_command(config, line) != true) {
+ // Any command which would require wlc to be initialized
+ // should be queued for later execution
+ list_t *args = split_string(line, " ");
+ if (!is_active && (
+ strcmp("workspace", args->items[0]) == 0 ||
+ strcmp("exec", args->items[0]) == 0 ||
+ strcmp("exec_always", args->items[0]) == 0 )) {
+ sway_log(L_DEBUG, "Deferring command %s", line);
+
+ char *cmd = malloc(strlen(line) + 1);
+ strcpy(cmd, line);
+ list_add(temp_config->cmd_queue, cmd);
+ } else if (!temp_depth && !handle_command(temp_config, line)) {
+ sway_log(L_DEBUG, "Config load failed for line %s", line);
success = false;
- }
+ temp_config->failed = true;
+ }
+ list_free(args);
_continue:
if (line && line[strlen(line) - 1] == '{') {
@@ -79,15 +105,12 @@ _continue:
free(line);
}
- if (success == false) {
- exit(1);
- }
-
if (is_active) {
- config->reloading = false;
+ temp_config->reloading = false;
}
+ config = temp_config;
- return config;
+ return success;
}
char *do_var_replacement(struct sway_config *config, char *str) {