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