]> git.sur5r.net Git - i3/i3/blob - i3-config-wizard/main.c
i3-config-wizard: fix keypresses with numlock on, also accept keypad enter (Thanks...
[i3/i3] / i3-config-wizard / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2011 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * i3-config-wizard: Program to convert configs using keycodes to configs using
11  * keysyms.
12  *
13  */
14 #include <ev.h>
15 #include <stdio.h>
16 #include <sys/types.h>
17 #include <stdlib.h>
18 #include <stdbool.h>
19 #include <unistd.h>
20 #include <string.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #include <err.h>
24 #include <stdint.h>
25 #include <getopt.h>
26 #include <limits.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <glob.h>
30
31 #include <xcb/xcb.h>
32 #include <xcb/xcb_aux.h>
33 #include <xcb/xcb_event.h>
34 #include <xcb/xcb_keysyms.h>
35
36 #include <X11/Xlib.h>
37 #include <X11/keysym.h>
38
39 /* We need SYSCONFDIR for the path to the keycode config template, so raise an
40  * error if it’s not defined for whatever reason */
41 #ifndef SYSCONFDIR
42 #error "SYSCONFDIR not defined"
43 #endif
44
45 #define FREE(pointer) do { \
46     if (pointer != NULL) { \
47         free(pointer); \
48         pointer = NULL; \
49     } \
50 } \
51 while (0)
52
53 #include "xcb.h"
54 #include "ipc.h"
55
56 enum { STEP_WELCOME, STEP_GENERATE } current_step = STEP_WELCOME;
57 enum { MOD_ALT, MOD_SUPER } modifier = MOD_SUPER;
58
59 static char *config_path;
60 static xcb_connection_t *conn;
61 static uint32_t font_id;
62 static uint32_t font_bold_id;
63 static char *socket_path;
64 static int font_height;
65 static int font_bold_height;
66 static xcb_window_t win;
67 static xcb_pixmap_t pixmap;
68 static xcb_gcontext_t pixmap_gc;
69 static xcb_key_symbols_t *symbols;
70 xcb_window_t root;
71 Display *dpy;
72
73 char *rewrite_binding(const char *bindingline);
74 static void finish();
75
76 #if defined(__APPLE__)
77
78 /*
79  * Taken from FreeBSD
80  * Returns a pointer to a new string which is a duplicate of the
81  * string, but only copies at most n characters.
82  *
83  */
84 char *strndup(const char *str, size_t n) {
85     size_t len;
86     char *copy;
87
88     for (len = 0; len < n && str[len]; len++)
89         continue;
90
91     if ((copy = malloc(len + 1)) == NULL)
92         return (NULL);
93     memcpy(copy, str, len);
94     copy[len] = '\0';
95     return (copy);
96 }
97
98 #endif
99
100 /*
101  * This function resolves ~ in pathnames.
102  * It may resolve wildcards in the first part of the path, but if no match
103  * or multiple matches are found, it just returns a copy of path as given.
104  *
105  */
106 static char *resolve_tilde(const char *path) {
107     static glob_t globbuf;
108     char *head, *tail, *result;
109
110     tail = strchr(path, '/');
111     head = strndup(path, tail ? tail - path : strlen(path));
112
113     int res = glob(head, GLOB_TILDE, NULL, &globbuf);
114     free(head);
115     /* no match, or many wildcard matches are bad */
116     if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
117         result = strdup(path);
118     else if (res != 0) {
119         err(1, "glob() failed");
120     } else {
121         head = globbuf.gl_pathv[0];
122         result = calloc(1, strlen(head) + (tail ? strlen(tail) : 0) + 1);
123         strncpy(result, head, strlen(head));
124         if (tail)
125             strncat(result, tail, strlen(tail));
126     }
127     globfree(&globbuf);
128
129     return result;
130 }
131
132 /*
133  * Try to get the socket path from X11 and return NULL if it doesn’t work.
134  * As i3-msg is a short-running tool, we don’t bother with cleaning up the
135  * connection and leave it up to the operating system on exit.
136  *
137  */
138 static char *socket_path_from_x11() {
139     xcb_connection_t *conn;
140     int screen;
141     if ((conn = xcb_connect(NULL, &screen)) == NULL ||
142         xcb_connection_has_error(conn))
143         return NULL;
144     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screen);
145     xcb_window_t root = root_screen->root;
146
147     xcb_intern_atom_cookie_t atom_cookie;
148     xcb_intern_atom_reply_t *atom_reply;
149
150     atom_cookie = xcb_intern_atom(conn, 0, strlen("I3_SOCKET_PATH"), "I3_SOCKET_PATH");
151     atom_reply = xcb_intern_atom_reply(conn, atom_cookie, NULL);
152     if (atom_reply == NULL)
153         return NULL;
154
155     xcb_get_property_cookie_t prop_cookie;
156     xcb_get_property_reply_t *prop_reply;
157     prop_cookie = xcb_get_property_unchecked(conn, false, root, atom_reply->atom,
158                                              XCB_GET_PROPERTY_TYPE_ANY, 0, PATH_MAX);
159     prop_reply = xcb_get_property_reply(conn, prop_cookie, NULL);
160     if (prop_reply == NULL || xcb_get_property_value_length(prop_reply) == 0)
161         return NULL;
162     if (asprintf(&socket_path, "%.*s", xcb_get_property_value_length(prop_reply),
163                  (char*)xcb_get_property_value(prop_reply)) == -1)
164         return NULL;
165     return socket_path;
166 }
167
168 /*
169  * Handles expose events, that is, draws the window contents.
170  *
171  */
172 static int handle_expose() {
173     /* re-draw the background */
174     xcb_rectangle_t border = {0, 0, 300, (15*font_height) + 8},
175                     inner = {2, 2, 296, (15*font_height) + 8 - 4};
176     xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#285577"));
177     xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
178     xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
179     xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &inner);
180
181     xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FONT, font_id);
182
183 #define txt(x, row, text) xcb_image_text_8(conn, strlen(text), pixmap, pixmap_gc, x, (row * font_height) + 2, text)
184
185     if (current_step == STEP_WELCOME) {
186         /* restore font color */
187         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FFFFFF"));
188
189         txt(10, 1, "i3: first configuration");
190         txt(10, 4, "You have not configured i3 yet.");
191         txt(10, 5, "Do you want me to generate ~/.i3/config?");
192         txt(85, 8, "Yes, generate ~/.i3/config");
193         txt(85, 10, "No, I will use the defaults");
194
195         /* green */
196         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#00FF00"));
197         txt(25, 8, "<Enter>");
198
199         /* red */
200         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FF0000"));
201         txt(31, 10, "<ESC>");
202     }
203
204     if (current_step == STEP_GENERATE) {
205         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FFFFFF"));
206
207         txt(10, 1, "i3: generate config");
208
209         txt(10, 4, "Please choose either:");
210         txt(85, 6, "Win as default modifier");
211         txt(85, 7, "Alt as default modifier");
212         txt(10, 9, "Afterwards, press");
213         txt(85, 11, "to write ~/.i3/config");
214         txt(85, 12, "to abort");
215
216         /* the not-selected modifier */
217         if (modifier == MOD_SUPER)
218             txt(31, 7, "<Alt>");
219         else txt(31, 6, "<Win>");
220
221         /* the selected modifier */
222         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FONT, font_bold_id);
223         if (modifier == MOD_SUPER)
224             txt(31, 6, "<Win>");
225         else txt(31, 7, "<Alt>");
226
227         /* green */
228         uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_FONT;
229         uint32_t values[] = { get_colorpixel(conn, "#00FF00"), font_id };
230         xcb_change_gc(conn, pixmap_gc, mask, values);
231
232         txt(25, 11, "<Enter>");
233
234         /* red */
235         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FF0000"));
236         txt(31, 12, "<ESC>");
237     }
238
239     /* Copy the contents of the pixmap to the real window */
240     xcb_copy_area(conn, pixmap, win, pixmap_gc, 0, 0, 0, 0, /* */ 500, 500);
241     xcb_flush(conn);
242
243     return 1;
244 }
245
246 static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
247     printf("Keypress %d, state raw = %d\n", event->detail, event->state);
248
249     /* Remove the numlock bit, all other bits are modifiers we can bind to */
250     uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
251     /* Only use the lower 8 bits of the state (modifier masks) so that mouse
252      * button masks are filtered out */
253     state_filtered &= 0xFF;
254
255     xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, state_filtered);
256
257     printf("sym = %c (%d)\n", sym, sym);
258
259     if (sym == XK_Return || sym == XK_KP_Enter) {
260         if (current_step == STEP_WELCOME)
261             current_step = STEP_GENERATE;
262         else finish();
263     }
264
265     /* cancel any time */
266     if (sym == XK_Escape)
267         exit(0);
268
269     if (sym == XK_Alt_L)
270         modifier = MOD_ALT;
271
272     if (sym == XK_Super_L)
273         modifier = MOD_SUPER;
274
275     handle_expose();
276     return 1;
277 }
278
279 /*
280  * Creates the config file and tells i3 to reload.
281  *
282  */
283 static void finish() {
284     printf("creating \"%s\"...\n", config_path);
285
286     if (!(dpy = XOpenDisplay(NULL)))
287         errx(1, "Could not connect to X11");
288
289     FILE *kc_config = fopen(SYSCONFDIR "/i3/config.keycodes", "r");
290     if (kc_config == NULL)
291         err(1, "Could not open input file \"%s\"", SYSCONFDIR "/i3/config.keycodes");
292
293     FILE *ks_config = fopen(config_path, "w");
294     if (ks_config == NULL)
295         err(1, "Could not open output config file \"%s\"", config_path);
296
297     char *line = NULL;
298     size_t len = 0;
299 #if !defined(__APPLE__)
300     ssize_t read;
301 #endif
302     bool head_of_file = true;
303
304     /* write a header about auto-generation to the output file */
305     fputs("# This file has been auto-generated by i3-config-wizard(1).\n", ks_config);
306     fputs("# It will not be overwritten, so edit it as you like.\n", ks_config);
307     fputs("#\n", ks_config);
308     fputs("# Should you change your keyboard layout somewhen, delete\n", ks_config);
309     fputs("# this file and re-run i3-config-wizard(1).\n", ks_config);
310     fputs("#\n", ks_config);
311
312 #if defined(__APPLE__)
313     while ((line = fgetln(kc_config, &len)) != NULL) {
314 #else
315     while ((read = getline(&line, &len, kc_config)) != -1) {
316 #endif
317         /* skip the warning block at the beginning of the input file */
318         if (head_of_file &&
319             strncmp("# WARNING", line, strlen("# WARNING")) == 0)
320             continue;
321
322         head_of_file = false;
323
324         /* Skip leading whitespace */
325         char *walk = line;
326         while (isspace(*walk) && walk < (line + len))
327             walk++;
328
329         /* Set the modifier the user chose */
330         if (strncmp(walk, "set $mod ", strlen("set $mod ")) == 0) {
331             if (modifier == MOD_ALT)
332                 fputs("set $mod Mod1\n", ks_config);
333             else fputs("set $mod Mod4\n", ks_config);
334             continue;
335         }
336
337         /* Check for 'bindcode'. If it’s not a bindcode line, we
338          * just copy it to the output file */
339         if (strncmp(walk, "bindcode", strlen("bindcode")) != 0) {
340             fputs(line, ks_config);
341             continue;
342         }
343         char *result = rewrite_binding(walk);
344         fputs(result, ks_config);
345         free(result);
346     }
347
348     /* sync to do our best in order to have the file really stored on disk */
349     fflush(ks_config);
350     fsync(fileno(ks_config));
351
352     free(line);
353     fclose(kc_config);
354     fclose(ks_config);
355
356     /* tell i3 to reload the config file */
357     int sockfd = connect_ipc(socket_path);
358     ipc_send_message(sockfd, strlen("reload"), 0, (uint8_t*)"reload");
359     close(sockfd);
360
361     exit(0);
362 }
363
364 int main(int argc, char *argv[]) {
365     config_path = resolve_tilde("~/.i3/config");
366     socket_path = getenv("I3SOCK");
367     char *pattern = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1";
368     char *patternbold = "-misc-fixed-bold-r-normal--13-120-75-75-C-70-iso10646-1";
369     int o, option_index = 0;
370
371     static struct option long_options[] = {
372         {"socket", required_argument, 0, 's'},
373         {"version", no_argument, 0, 'v'},
374         {"limit", required_argument, 0, 'l'},
375         {"prompt", required_argument, 0, 'P'},
376         {"prefix", required_argument, 0, 'p'},
377         {"font", required_argument, 0, 'f'},
378         {"help", no_argument, 0, 'h'},
379         {0, 0, 0, 0}
380     };
381
382     char *options_string = "s:vh";
383
384     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
385         switch (o) {
386             case 's':
387                 FREE(socket_path);
388                 socket_path = strdup(optarg);
389                 break;
390             case 'v':
391                 printf("i3-config-wizard " I3_VERSION "\n");
392                 return 0;
393             case 'h':
394                 printf("i3-config-wizard " I3_VERSION "\n");
395                 printf("i3-config-wizard [-s <socket>] [-v]\n");
396                 return 0;
397         }
398     }
399
400     /* Check if the destination config file does not exist but the path is
401      * writable. If not, exit now, this program is not useful in that case. */
402     struct stat stbuf;
403     if (stat(config_path, &stbuf) == 0) {
404         printf("The config file \"%s\" already exists. Exiting.\n", config_path);
405         return 0;
406     }
407
408     /* Create ~/.i3 if it does not yet exist */
409     char *config_dir = resolve_tilde("~/.i3");
410     if (stat(config_dir, &stbuf) != 0)
411         if (mkdir(config_dir, 0755) == -1)
412             err(1, "mkdir(%s) failed", config_dir);
413     free(config_dir);
414
415     int fd;
416     if ((fd = open(config_path, O_CREAT | O_RDWR, 0644)) == -1) {
417         printf("Cannot open file \"%s\" for writing: %s. Exiting.\n", config_path, strerror(errno));
418         return 0;
419     }
420     close(fd);
421     unlink(config_path);
422
423     if (socket_path == NULL)
424         socket_path = socket_path_from_x11();
425
426     if (socket_path == NULL)
427         socket_path = "/tmp/i3-ipc.sock";
428
429     int screens;
430     conn = xcb_connect(NULL, &screens);
431     if (xcb_connection_has_error(conn))
432         errx(1, "Cannot open display\n");
433
434     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
435     root = root_screen->root;
436
437     xcb_get_numlock_mask(conn);
438
439     symbols = xcb_key_symbols_alloc(conn);
440
441     font_id = get_font_id(conn, pattern, &font_height);
442     font_bold_id = get_font_id(conn, patternbold, &font_bold_height);
443
444     /* Open an input window */
445     win = open_input_window(conn, 300, 205);
446
447     /* Create pixmap */
448     pixmap = xcb_generate_id(conn);
449     pixmap_gc = xcb_generate_id(conn);
450     xcb_create_pixmap(conn, root_screen->root_depth, pixmap, win, 500, 500);
451     xcb_create_gc(conn, pixmap_gc, pixmap, 0, 0);
452
453     /* Set input focus (we have override_redirect=1, so the wm will not do
454      * this for us) */
455     xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, win, XCB_CURRENT_TIME);
456
457     /* Grab the keyboard to get all input */
458     xcb_flush(conn);
459
460     /* Try (repeatedly, if necessary) to grab the keyboard. We might not
461      * get the keyboard at the first attempt because of the keybinding
462      * still being active when started via a wm’s keybinding. */
463     xcb_grab_keyboard_cookie_t cookie;
464     xcb_grab_keyboard_reply_t *reply = NULL;
465
466     int count = 0;
467     while ((reply == NULL || reply->status != XCB_GRAB_STATUS_SUCCESS) && (count++ < 500)) {
468         cookie = xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
469         reply = xcb_grab_keyboard_reply(conn, cookie, NULL);
470         usleep(1000);
471     }
472
473     if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
474         fprintf(stderr, "Could not grab keyboard, status = %d\n", reply->status);
475         exit(-1);
476     }
477
478     xcb_flush(conn);
479
480     xcb_generic_event_t *event;
481     while ((event = xcb_wait_for_event(conn)) != NULL) {
482         if (event->response_type == 0) {
483             fprintf(stderr, "X11 Error received! sequence %x\n", event->sequence);
484             continue;
485         }
486
487         /* Strip off the highest bit (set if the event is generated) */
488         int type = (event->response_type & 0x7F);
489
490         switch (type) {
491             case XCB_KEY_PRESS:
492                 handle_key_press(NULL, conn, (xcb_key_press_event_t*)event);
493                 break;
494
495             /* TODO: handle mappingnotify */
496
497             case XCB_EXPOSE:
498                 handle_expose();
499                 break;
500         }
501
502         free(event);
503     }
504
505     return 0;
506 }