]> git.sur5r.net Git - i3/i3/blob - src/config.c
e4a4cac990a47e0eabe540df724554385c34e812
[i3/i3] / src / config.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * src/config.c: Contains all functions handling the configuration file (calling
11  * the parser (src/cfgparse.y) with the correct path, switching key bindings
12  * mode).
13  *
14  */
15
16 /* We need Xlib for XStringToKeysym */
17 #include <X11/Xlib.h>
18 #include <wordexp.h>
19
20 #include "all.h"
21
22 const char *saved_configpath = NULL;
23 Config config;
24 struct modes_head modes;
25
26 /**
27  * Ungrabs all keys, to be called before re-grabbing the keys because of a
28  * mapping_notify event or a configuration file reload
29  *
30  */
31 void ungrab_all_keys(xcb_connection_t *conn) {
32         DLOG("Ungrabbing all keys\n");
33         xcb_ungrab_key(conn, XCB_GRAB_ANY, root, XCB_BUTTON_MASK_ANY);
34 }
35
36 static void grab_keycode_for_binding(xcb_connection_t *conn, Binding *bind, uint32_t keycode) {
37         DLOG("Grabbing %d\n", keycode);
38         /* Grab the key in all combinations */
39         #define GRAB_KEY(modifier) \
40                 do { \
41                         xcb_grab_key(conn, 0, root, modifier, keycode, \
42                                      XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC); \
43                 } while (0)
44         int mods = bind->mods;
45         if ((bind->mods & BIND_MODE_SWITCH) != 0) {
46                 mods &= ~BIND_MODE_SWITCH;
47                 if (mods == 0)
48                         mods = XCB_MOD_MASK_ANY;
49         }
50         GRAB_KEY(mods);
51         GRAB_KEY(mods | xcb_numlock_mask);
52         GRAB_KEY(mods | xcb_numlock_mask | XCB_MOD_MASK_LOCK);
53 }
54
55 /*
56  * Returns a pointer to the Binding with the specified modifiers and keycode
57  * or NULL if no such binding exists.
58  *
59  */
60 Binding *get_binding(uint16_t modifiers, xcb_keycode_t keycode) {
61         Binding *bind;
62
63         TAILQ_FOREACH(bind, bindings, bindings) {
64                 /* First compare the modifiers */
65                 if (bind->mods != modifiers)
66                         continue;
67
68                 /* If a symbol was specified by the user, we need to look in
69                  * the array of translated keycodes for the event’s keycode */
70                 if (bind->symbol != NULL) {
71                         if (memmem(bind->translated_to,
72                                    bind->number_keycodes * sizeof(xcb_keycode_t),
73                                    &keycode, sizeof(xcb_keycode_t)) != NULL)
74                                 break;
75                 } else {
76                         /* This case is easier: The user specified a keycode */
77                         if (bind->keycode == keycode)
78                                 break;
79                 }
80         }
81
82         return (bind == TAILQ_END(bindings) ? NULL : bind);
83 }
84
85 /*
86  * Translates keysymbols to keycodes for all bindings which use keysyms.
87  *
88  */
89 void translate_keysyms() {
90         Binding *bind;
91         TAILQ_FOREACH(bind, bindings, bindings) {
92                 if (bind->keycode > 0)
93                         continue;
94
95                 /* We need to translate the symbol to a keycode */
96                 xcb_keysym_t keysym = XStringToKeysym(bind->symbol);
97                 if (keysym == NoSymbol) {
98                         ELOG("Could not translate string to key symbol: \"%s\"\n", bind->symbol);
99                         continue;
100                 }
101
102                 uint32_t last_keycode = 0;
103                 xcb_keycode_t *keycodes = xcb_key_symbols_get_keycode(keysyms, keysym);
104                 if (keycodes == NULL) {
105                         DLOG("Could not translate symbol \"%s\"\n", bind->symbol);
106                         continue;
107                 }
108
109                 bind->number_keycodes = 0;
110
111                 for (xcb_keycode_t *walk = keycodes; *walk != 0; walk++) {
112                         /* We hope duplicate keycodes will be returned in order
113                          * and skip them */
114                         if (last_keycode == *walk)
115                                 continue;
116                         last_keycode = *walk;
117                         bind->number_keycodes++;
118                 }
119                 DLOG("Translated symbol \"%s\" to %d keycode\n", bind->symbol, bind->number_keycodes);
120                 bind->translated_to = smalloc(bind->number_keycodes * sizeof(xcb_keycode_t));
121                 memcpy(bind->translated_to, keycodes, bind->number_keycodes * sizeof(xcb_keycode_t));
122                 free(keycodes);
123         }
124 }
125
126 /*
127  * Grab the bound keys (tell X to send us keypress events for those keycodes)
128  *
129  */
130 void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch) {
131         Binding *bind;
132         TAILQ_FOREACH(bind, bindings, bindings) {
133                 if ((bind_mode_switch && (bind->mods & BIND_MODE_SWITCH) == 0) ||
134                     (!bind_mode_switch && (bind->mods & BIND_MODE_SWITCH) != 0))
135                         continue;
136
137                 /* The easy case: the user specified a keycode directly. */
138                 if (bind->keycode > 0) {
139                         grab_keycode_for_binding(conn, bind, bind->keycode);
140                         continue;
141                 }
142
143                 xcb_keycode_t *walk = bind->translated_to;
144                 for (int i = 0; i < bind->number_keycodes; i++)
145                         grab_keycode_for_binding(conn, bind, *walk);
146         }
147 }
148
149 /*
150  * Switches the key bindings to the given mode, if the mode exists
151  *
152  */
153 void switch_mode(xcb_connection_t *conn, const char *new_mode) {
154         struct Mode *mode;
155
156         LOG("Switching to mode %s\n", new_mode);
157
158         SLIST_FOREACH(mode, &modes, modes) {
159                 if (strcasecmp(mode->name, new_mode) != 0)
160                         continue;
161
162                 ungrab_all_keys(conn);
163                 bindings = mode->bindings;
164                 translate_keysyms();
165                 grab_all_keys(conn, false);
166                 return;
167         }
168
169         ELOG("ERROR: Mode not found\n");
170 }
171
172 /*
173  * Get the path of the first configuration file found. Checks the home directory
174  * first, then the system directory first, always taking into account the XDG
175  * Base Directory Specification ($XDG_CONFIG_HOME, $XDG_CONFIG_DIRS)
176  *
177  */
178 static char *get_config_path() {
179         char *xdg_config_home, *xdg_config_dirs, *config_path;
180
181         /* 1: check the traditional path under the home directory */
182         config_path = resolve_tilde("~/.i3/config");
183         if (path_exists(config_path))
184                 return config_path;
185
186         /* 2: check for $XDG_CONFIG_HOME/i3/config */
187         if ((xdg_config_home = getenv("XDG_CONFIG_HOME")) == NULL)
188                 xdg_config_home = "~/.config";
189
190         xdg_config_home = resolve_tilde(xdg_config_home);
191         if (asprintf(&config_path, "%s/i3/config", xdg_config_home) == -1)
192                 die("asprintf() failed");
193         free(xdg_config_home);
194
195         if (path_exists(config_path))
196                 return config_path;
197         free(config_path);
198
199         /* 3: check the traditional path under /etc */
200         config_path = SYSCONFDIR "/i3/config";
201         if (path_exists(config_path))
202                 return sstrdup(config_path);
203
204         /* 4: check for $XDG_CONFIG_DIRS/i3/config */
205         if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)
206                 xdg_config_dirs = "/etc/xdg";
207
208         char *buf = sstrdup(xdg_config_dirs);
209         char *tok = strtok(buf, ":");
210         while (tok != NULL) {
211                 tok = resolve_tilde(tok);
212                 if (asprintf(&config_path, "%s/i3/config", tok) == -1)
213                         die("asprintf() failed");
214                 free(tok);
215                 if (path_exists(config_path)) {
216                         free(buf);
217                         return config_path;
218                 }
219                 free(config_path);
220                 tok = strtok(NULL, ":");
221         }
222         free(buf);
223
224         die("Unable to find the configuration file (looked at "
225                 "~/.i3/config, $XDG_CONFIG_HOME/i3/config, "
226                 SYSCONFDIR "i3/config and $XDG_CONFIG_DIRS/i3/config)");
227 }
228
229 /*
230  * Finds the configuration file to use (either the one specified by
231  * override_configpath), the user’s one or the system default) and calls
232  * parse_file().
233  *
234  */
235 static void parse_configuration(const char *override_configpath) {
236
237     if (override_configpath != NULL) {
238         saved_configpath = override_configpath;
239         parse_file(override_configpath);
240         return;
241     }
242     else if (saved_configpath != NULL) {
243         parse_file(saved_configpath);
244         return;
245     }
246
247     char *path = get_config_path();
248     DLOG("Parsing configfile %s\n", path);
249     parse_file(path);
250     free(path);
251 }
252
253 /*
254  * (Re-)loads the configuration file (sets useful defaults before).
255  *
256  */
257 void load_configuration(xcb_connection_t *conn, const char *override_configpath, bool reload) {
258         if (reload) {
259                 /* First ungrab the keys */
260                 ungrab_all_keys(conn);
261
262                 struct Mode *mode;
263                 Binding *bind;
264                 while (!SLIST_EMPTY(&modes)) {
265                         mode = SLIST_FIRST(&modes);
266                         FREE(mode->name);
267
268                         /* Clear the old binding list */
269                         bindings = mode->bindings;
270                         while (!TAILQ_EMPTY(bindings)) {
271                                 bind = TAILQ_FIRST(bindings);
272                                 TAILQ_REMOVE(bindings, bind, bindings);
273                                 FREE(bind->translated_to);
274                                 FREE(bind->command);
275                                 FREE(bind);
276                         }
277                         FREE(bindings);
278                         SLIST_REMOVE(&modes, mode, Mode, modes);
279                 }
280
281 #if 0
282                 struct Assignment *assign;
283                 while (!TAILQ_EMPTY(&assignments)) {
284                         assign = TAILQ_FIRST(&assignments);
285                         FREE(assign->windowclass_title);
286                         TAILQ_REMOVE(&assignments, assign, assignments);
287                         FREE(assign);
288                 }
289 #endif
290
291                 /* Clear workspace names */
292 #if 0
293                 Workspace *ws;
294                 TAILQ_FOREACH(ws, workspaces, workspaces)
295                         workspace_set_name(ws, NULL);
296 #endif
297         }
298
299         SLIST_INIT(&modes);
300
301         struct Mode *default_mode = scalloc(sizeof(struct Mode));
302         default_mode->name = sstrdup("default");
303         default_mode->bindings = scalloc(sizeof(struct bindings_head));
304         TAILQ_INIT(default_mode->bindings);
305         SLIST_INSERT_HEAD(&modes, default_mode, modes);
306
307         bindings = default_mode->bindings;
308
309 #define REQUIRED_OPTION(name) \
310         if (config.name == NULL) \
311                 die("You did not specify required configuration option " #name "\n");
312
313         /* Clear the old config or initialize the data structure */
314         memset(&config, 0, sizeof(config));
315
316         /* Initialize default colors */
317 #define INIT_COLOR(x, cborder, cbackground, ctext) \
318         do { \
319                 x.border = get_colorpixel(cborder); \
320                 x.background = get_colorpixel(cbackground); \
321                 x.text = get_colorpixel(ctext); \
322         } while (0)
323
324         config.client.background = get_colorpixel("#000000");
325         INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff");
326         INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff");
327         INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888");
328         INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff");
329         INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff");
330         INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888");
331         INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff");
332
333         config.default_border = BS_NORMAL;
334         /* Set default_orientation to NO_ORIENTATION for auto orientation. */
335         config.default_orientation = NO_ORIENTATION;
336
337         parse_configuration(override_configpath);
338
339         if (reload) {
340                 translate_keysyms();
341                 grab_all_keys(conn, false);
342         }
343
344         if (config.font.id == 0) {
345                 ELOG("You did not specify required configuration option \"font\"\n");
346                 config.font = load_font("fixed", true);
347         }
348
349 #if 0
350         /* Set an empty name for every workspace which got no name */
351         Workspace *ws;
352         TAILQ_FOREACH(ws, workspaces, workspaces) {
353                 if (ws->name != NULL) {
354                         /* If the font was not specified when the workspace name
355                          * was loaded, we need to predict the text width now */
356                         if (ws->text_width == 0)
357                                 ws->text_width = predict_text_width(global_conn,
358                                                 config.font, ws->name, ws->name_len);
359                         continue;
360                 }
361
362                 workspace_set_name(ws, NULL);
363         }
364 #endif
365 }