sway/sway/config.c

296 lines
7.1 KiB
C
Raw Normal View History

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include "readline.h"
#include "stringop.h"
#include "list.h"
2015-08-08 23:24:18 +00:00
#include "log.h"
#include "commands.h"
#include "config.h"
#include "layout.h"
#include "input_state.h"
2015-09-07 06:22:02 +00:00
struct sway_config *config = NULL;
2015-09-07 05:48:43 +00:00
static bool file_exists(const char *path) {
return access(path, R_OK) != -1;
}
2015-09-07 05:48:43 +00:00
static void config_defaults(struct sway_config *config) {
2015-08-19 11:50:27 +00:00
config->symbols = create_list();
config->modes = create_list();
config->workspace_outputs = create_list();
config->output_configs = create_list();
2015-09-07 05:48:43 +00:00
config->cmd_queue = create_list();
2015-08-19 11:50:27 +00:00
config->current_mode = malloc(sizeof(struct sway_mode));
config->current_mode->name = NULL;
config->current_mode->bindings = create_list();
list_add(config->modes, config->current_mode);
2015-09-07 05:48:43 +00:00
2015-08-28 21:45:40 +00:00
config->floating_mod = 0;
2015-08-28 02:52:59 +00:00
config->default_layout = L_NONE;
config->default_orientation = L_NONE;
2015-08-19 11:50:27 +00:00
// Flags
config->focus_follows_mouse = true;
config->mouse_warping = true;
config->reloading = false;
config->active = false;
config->failed = false;
2015-08-31 02:34:10 +00:00
config->auto_back_and_forth = false;
2015-08-28 21:45:40 +00:00
2015-08-19 11:50:27 +00:00
config->gaps_inner = 0;
config->gaps_outer = 0;
}
2015-08-19 11:50:27 +00:00
void free_mode(struct sway_mode *mode) {
free(mode->name);
2015-09-07 05:48:43 +00:00
int i;
for (i = 0; i < mode->bindings->length; ++i) {
struct sway_binding *bind = mode->bindings->items[i];
list_free(bind->keys);
free(bind->command);
free(bind);
}
list_free(mode->bindings);
2015-08-19 11:50:27 +00:00
}
2015-08-19 11:50:27 +00:00
void free_config(struct sway_config *config) {
int i;
2015-09-07 06:22:02 +00:00
for (i = 0; i < config->symbols->length; ++i) {
struct sway_variable *var = config->symbols->items[i];
free(var->name);
free(var->value);
free(var);
}
list_free(config->symbols);
2015-08-19 11:50:27 +00:00
for (i = 0; i < config->modes->length; ++i) {
2015-09-07 06:22:02 +00:00
free_mode(config->modes->items[i]);
}
2015-09-07 06:22:02 +00:00
list_free(config->modes);
for (i = 0; i < config->cmd_queue->length; ++i) {
free(config->cmd_queue->items[i]);
}
list_free(config->cmd_queue);
2015-08-19 11:50:27 +00:00
for (i = 0; i < config->workspace_outputs->length; ++i) {
struct workspace_output *wso = config->workspace_outputs->items[i];
free(wso->output);
free(wso->workspace);
2015-09-07 06:22:02 +00:00
free(wso);
}
2015-09-07 06:22:02 +00:00
list_free(config->workspace_outputs);
for (i = 0; i < config->output_configs->length; ++i) {
struct output_config *oc = config->output_configs->items[i];
free(oc->name);
free(oc);
}
2015-09-07 06:22:02 +00:00
list_free(config->output_configs);
free(config);
2015-08-19 11:50:27 +00:00
}
2015-09-07 05:48:43 +00:00
static char *get_config_path(void) {
char *config_path = NULL;
char *paths[3] = {getenv("HOME"), getenv("XDG_CONFIG_HOME"), ""};
int pathlen[3] = {0, 0, 0};
int i;
#define home paths[0]
#define conf paths[1]
// Get home and config directories
home = home ? strdup(home) : NULL;
if (conf) {
conf = strdup(conf);
2015-08-19 14:33:30 +00:00
} else if (home) {
const char *def = "/.config";
2015-09-07 05:48:43 +00:00
conf = malloc(strlen(home) + strlen(def) + 1);
strcpy(conf, home);
strcat(conf, def);
2015-08-19 14:33:30 +00:00
} else {
home = strdup("");
2015-09-07 05:48:43 +00:00
conf = strdup("");
}
2015-09-07 05:48:43 +00:00
pathlen[0] = strlen(home);
pathlen[1] = strlen(conf);
#undef home
#undef conf
// Search for config file from search paths
static const char *search_paths[] = {
"/.sway/config", // Prepend with $home
"/sway/config", // Prepend with $config
"/etc/sway/config",
"/.i3/config", // $home
"/.i3/config", // $config
"/etc/i3/config"
};
2015-08-21 14:53:11 +00:00
for (i = 0; i < (int)(sizeof(search_paths) / sizeof(char *)); ++i) {
2015-09-07 05:48:43 +00:00
char *test = malloc(pathlen[i%3] + strlen(search_paths[i]) + 1);
strcpy(test, paths[i%3]);
strcat(test, search_paths[i]);
2015-08-19 11:50:27 +00:00
sway_log(L_DEBUG, "Checking for config at %s", test);
2015-09-07 05:48:43 +00:00
if (file_exists(test)) {
config_path = test;
goto cleanup;
2015-08-19 11:50:27 +00:00
}
free(test);
}
sway_log(L_DEBUG, "Trying to find config in XDG_CONFIG_DIRS");
2015-08-19 11:50:27 +00:00
char *xdg_config_dirs = getenv("XDG_CONFIG_DIRS");
2015-09-07 05:48:43 +00:00
if (xdg_config_dirs) {
list_t *paths = split_string(xdg_config_dirs, ":");
2015-09-07 05:48:43 +00:00
const char *name = "/sway/config";
for (i = 0; i < paths->length; i++ ) {
2015-09-07 05:48:43 +00:00
char *test = malloc(strlen(paths->items[i]) + strlen(name) + 1);
2015-08-19 11:50:27 +00:00
strcpy(test, paths->items[i]);
strcat(test, name);
2015-09-07 05:48:43 +00:00
if (file_exists(test)) {
config_path = test;
break;
}
2015-08-19 11:50:27 +00:00
free(test);
}
free_flat_list(paths);
}
2015-09-07 05:48:43 +00:00
cleanup:
free(paths[0]);
free(paths[1]);
return config_path;
}
2015-08-20 12:37:09 +00:00
bool load_config(const char *file) {
sway_log(L_INFO, "Loading config");
input_init();
2015-08-20 12:37:09 +00:00
char *path;
if (file != NULL) {
path = strdup(file);
} else {
path = get_config_path();
}
if (path == NULL) {
sway_log(L_ERROR, "Unable to find a config file!");
return false;
}
FILE *f = fopen(path, "r");
2015-08-10 19:22:22 +00:00
if (!f) {
fprintf(stderr, "Unable to open %s for reading", path);
free(path);
2015-08-10 19:22:22 +00:00
return false;
}
free(path);
bool config_load_success;
if (config) {
config_load_success = read_config(f, true);
} else {
config_load_success = read_config(f, false);
}
2015-08-10 19:22:22 +00:00
fclose(f);
return config_load_success;
2015-08-10 19:22:22 +00:00
}
bool read_config(FILE *file, bool is_active) {
struct sway_config *temp_config = malloc(sizeof(struct sway_config));
config_defaults(temp_config);
2015-08-10 19:09:51 +00:00
if (is_active) {
sway_log(L_DEBUG, "Performing configuration file reload");
temp_config->reloading = true;
temp_config->active = true;
2015-08-10 19:09:51 +00:00
}
bool success = true;
int temp_depth = 0; // Temporary: skip all config sections with depth
while (!feof(file)) {
int _;
char *line = read_line(file);
line = strip_whitespace(line, &_);
2015-08-18 22:03:38 +00:00
line = strip_comments(line);
if (!line[0]) {
goto _continue;
}
if (temp_depth && line[0] == '}') {
temp_depth--;
goto _continue;
}
2015-08-13 17:32:43 +00:00
// Any command which would require wlc to be initialized
2015-08-13 17:56:08 +00:00
// should be queued for later execution
2015-08-13 17:32:43 +00:00
list_t *args = split_string(line, " ");
struct cmd_handler *handler;
if ((handler = find_handler(args->items[0]))) {
2015-09-05 00:09:07 +00:00
if (handler->config_type == CMD_KEYBIND) {
sway_log(L_ERROR, "Invalid command during config ``%s''", line);
2015-09-05 00:09:07 +00:00
} else if (handler->config_type == CMD_COMPOSITOR_READY && !is_active) {
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;
}
} else {
2015-09-05 00:02:02 +00:00
sway_log(L_ERROR, "Invalid command ``%s''", line);
}
2015-08-24 02:09:18 +00:00
free_flat_list(args);
_continue:
if (line && line[strlen(line) - 1] == '{') {
temp_depth++;
}
free(line);
}
2015-08-10 19:09:51 +00:00
if (is_active) {
temp_config->reloading = false;
arrange_windows(&root_container, -1, -1);
2015-08-10 19:09:51 +00:00
}
2015-09-07 06:22:02 +00:00
if (config) {
free_config(config);
}
config = temp_config;
return success;
}
2015-08-06 02:40:38 +00:00
char *do_var_replacement(struct sway_config *config, char *str) {
// TODO: Handle escaping $ and using $ in string literals
int i;
for (i = 0; str[i]; ++i) {
if (str[i] == '$') {
// Try for match (note: this could be faster)
int j;
for (j = 0; j < config->symbols->length; ++j) {
struct sway_variable *var = config->symbols->items[j];
if (strstr(str + i, var->name) == str + i) {
// Match, do replacement
char *new_string = malloc(
strlen(str) -
strlen(var->name) +
strlen(var->value) + 1);
strncpy(new_string, str, i);
new_string[i] = 0;
strcat(new_string, var->value);
strcat(new_string, str + i + strlen(var->name));
free(str);
str = new_string;
}
}
}
}
return str;
}