]> git.sur5r.net Git - i3/i3/blob - src/config.c
Merge branch 'tree' into next
[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
19 #include "all.h"
20
21 char *current_configpath = NULL;
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(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. If override_configpath
173  * is specified, that path is returned and saved for further calls. Otherwise,
174  * checks the home directory first, then the system directory first, always
175  * taking into account the XDG Base Directory Specification ($XDG_CONFIG_HOME,
176  * $XDG_CONFIG_DIRS)
177  *
178  */
179 static char *get_config_path(const char *override_configpath) {
180     char *xdg_config_home, *xdg_config_dirs, *config_path;
181
182     static const char *saved_configpath = NULL;
183
184     if (override_configpath != NULL) {
185         saved_configpath = override_configpath;
186         return sstrdup(saved_configpath);
187     }
188
189     if (saved_configpath != NULL)
190         return sstrdup(saved_configpath);
191
192     /* 1: check the traditional path under the home directory */
193     config_path = resolve_tilde("~/.i3/config");
194     if (path_exists(config_path))
195         return config_path;
196
197     /* 2: check for $XDG_CONFIG_HOME/i3/config */
198     if ((xdg_config_home = getenv("XDG_CONFIG_HOME")) == NULL)
199         xdg_config_home = "~/.config";
200
201     xdg_config_home = resolve_tilde(xdg_config_home);
202     if (asprintf(&config_path, "%s/i3/config", xdg_config_home) == -1)
203         die("asprintf() failed");
204     free(xdg_config_home);
205
206     if (path_exists(config_path))
207         return config_path;
208     free(config_path);
209
210     /* 3: check the traditional path under /etc */
211     config_path = SYSCONFDIR "/i3/config";
212     if (path_exists(config_path))
213         return sstrdup(config_path);
214
215     /* 4: check for $XDG_CONFIG_DIRS/i3/config */
216     if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)
217         xdg_config_dirs = "/etc/xdg";
218
219     char *buf = sstrdup(xdg_config_dirs);
220     char *tok = strtok(buf, ":");
221     while (tok != NULL) {
222         tok = resolve_tilde(tok);
223         if (asprintf(&config_path, "%s/i3/config", tok) == -1)
224             die("asprintf() failed");
225         free(tok);
226         if (path_exists(config_path)) {
227             free(buf);
228             return config_path;
229         }
230         free(config_path);
231         tok = strtok(NULL, ":");
232     }
233     free(buf);
234
235     die("Unable to find the configuration file (looked at "
236             "~/.i3/config, $XDG_CONFIG_HOME/i3/config, "
237             SYSCONFDIR "i3/config and $XDG_CONFIG_DIRS/i3/config)");
238 }
239
240 /*
241  * Finds the configuration file to use (either the one specified by
242  * override_configpath), the user’s one or the system default) and calls
243  * parse_file().
244  *
245  */
246 static void parse_configuration(const char *override_configpath) {
247     char *path = get_config_path(override_configpath);
248     DLOG("Parsing configfile %s\n", path);
249     FREE(current_configpath);
250     current_configpath = path;
251     parse_file(path);
252 }
253
254 /*
255  * (Re-)loads the configuration file (sets useful defaults before).
256  *
257  */
258 void load_configuration(xcb_connection_t *conn, const char *override_configpath, bool reload) {
259         if (reload) {
260                 /* First ungrab the keys */
261                 ungrab_all_keys(conn);
262
263                 struct Mode *mode;
264                 Binding *bind;
265                 while (!SLIST_EMPTY(&modes)) {
266                         mode = SLIST_FIRST(&modes);
267                         FREE(mode->name);
268
269                         /* Clear the old binding list */
270                         bindings = mode->bindings;
271                         while (!TAILQ_EMPTY(bindings)) {
272                                 bind = TAILQ_FIRST(bindings);
273                                 TAILQ_REMOVE(bindings, bind, bindings);
274                                 FREE(bind->translated_to);
275                                 FREE(bind->command);
276                                 FREE(bind);
277                         }
278                         FREE(bindings);
279                         SLIST_REMOVE(&modes, mode, Mode, modes);
280                 }
281
282 #if 0
283                 struct Assignment *assign;
284                 while (!TAILQ_EMPTY(&assignments)) {
285                         assign = TAILQ_FIRST(&assignments);
286                         FREE(assign->windowclass_title);
287                         TAILQ_REMOVE(&assignments, assign, assignments);
288                         FREE(assign);
289                 }
290 #endif
291
292                 /* Clear workspace names */
293 #if 0
294                 Workspace *ws;
295                 TAILQ_FOREACH(ws, workspaces, workspaces)
296                         workspace_set_name(ws, NULL);
297 #endif
298         }
299
300         SLIST_INIT(&modes);
301
302         struct Mode *default_mode = scalloc(sizeof(struct Mode));
303         default_mode->name = sstrdup("default");
304         default_mode->bindings = scalloc(sizeof(struct bindings_head));
305         TAILQ_INIT(default_mode->bindings);
306         SLIST_INSERT_HEAD(&modes, default_mode, modes);
307
308         bindings = default_mode->bindings;
309
310 #define REQUIRED_OPTION(name) \
311         if (config.name == NULL) \
312                 die("You did not specify required configuration option " #name "\n");
313
314         /* Clear the old config or initialize the data structure */
315         memset(&config, 0, sizeof(config));
316
317         /* Initialize default colors */
318 #define INIT_COLOR(x, cborder, cbackground, ctext) \
319         do { \
320                 x.border = get_colorpixel(cborder); \
321                 x.background = get_colorpixel(cbackground); \
322                 x.text = get_colorpixel(ctext); \
323         } while (0)
324
325         config.client.background = get_colorpixel("#000000");
326         INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff");
327         INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff");
328         INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888");
329         INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff");
330         INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff");
331         INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888");
332         INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff");
333
334         config.default_border = BS_NORMAL;
335         /* Set default_orientation to NO_ORIENTATION for auto orientation. */
336         config.default_orientation = NO_ORIENTATION;
337
338         parse_configuration(override_configpath);
339
340         if (reload) {
341                 translate_keysyms();
342                 grab_all_keys(conn, false);
343         }
344
345         if (config.font.id == 0) {
346                 ELOG("You did not specify required configuration option \"font\"\n");
347                 config.font = load_font("fixed", true);
348         }
349
350 #if 0
351         /* Set an empty name for every workspace which got no name */
352         Workspace *ws;
353         TAILQ_FOREACH(ws, workspaces, workspaces) {
354                 if (ws->name != NULL) {
355                         /* If the font was not specified when the workspace name
356                          * was loaded, we need to predict the text width now */
357                         if (ws->text_width == 0)
358                                 ws->text_width = predict_text_width(global_conn,
359                                                 config.font, ws->name, ws->name_len);
360                         continue;
361                 }
362
363                 workspace_set_name(ws, NULL);
364         }
365 #endif
366 }