swayfx/sway/config.c

120 lines
2.7 KiB
C
Raw Normal View History

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include "readline.h"
#include "stringop.h"
#include "list.h"
2015-08-09 09:24:18 +10:00
#include "log.h"
#include "commands.h"
#include "config.h"
struct sway_config *config;
2015-08-11 05:22:22 +10:00
bool load_config() {
sway_log(L_INFO, "Loading config");
2015-08-11 05:22:22 +10:00
// TODO: Allow use of more config file locations
const char *name = "/.sway/config";
const char *home = getenv("HOME");
char *temp = malloc(strlen(home) + strlen(name) + 1);
strcpy(temp, home);
strcat(temp, name);
FILE *f = fopen(temp, "r");
if (!f) {
fprintf(stderr, "Unable to open %s for reading", temp);
free(temp);
return false;
}
free(temp);
config = read_config(f, false);
fclose(f);
return true;
}
2015-08-09 23:23:10 +10:00
void config_defaults(struct sway_config *config) {
config->symbols = create_list();
config->modes = create_list();
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-08-09 23:23:10 +10:00
// Flags
config->focus_follows_mouse = true;
config->mouse_warping = true;
2015-08-11 05:09:51 +10:00
config->reloading = false;
2015-08-09 23:23:10 +10:00
}
struct sway_config *read_config(FILE *file, bool is_active) {
2015-08-09 23:23:10 +10:00
struct sway_config *config = malloc(sizeof(struct sway_config));
config_defaults(config);
2015-08-11 05:09:51 +10:00
if (is_active) {
config->reloading = true;
}
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, &_);
line = strip_comments(line);
if (!line[0]) {
goto _continue;
}
if (temp_depth && line[0] == '}') {
temp_depth--;
goto _continue;
}
if (!temp_depth && handle_command(config, line) != true) {
success = false;
}
_continue:
if (line && line[strlen(line) - 1] == '{') {
temp_depth++;
}
free(line);
}
if (success == false) {
exit(1);
}
2015-08-11 05:09:51 +10:00
if (is_active) {
config->reloading = false;
2015-08-11 05:09:51 +10:00
}
return config;
}
2015-08-06 12:40:38 +10: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;
}