]> git.sur5r.net Git - i3/i3/blob - i3-config-wizard/main.c
i3-config-wizard: use a managed, floating (dialog) window. fixes focus problems
[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     xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
176     xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
177
178     xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FONT, font_id);
179
180 #define txt(x, row, text) xcb_image_text_8(conn, strlen(text), pixmap, pixmap_gc, x, (row * font_height) + 2, text)
181
182     if (current_step == STEP_WELCOME) {
183         /* restore font color */
184         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FFFFFF"));
185
186         txt(10, 2, "You have not configured i3 yet.");
187         txt(10, 3, "Do you want me to generate ~/.i3/config?");
188         txt(85, 5, "Yes, generate ~/.i3/config");
189         txt(85, 7, "No, I will use the defaults");
190
191         /* green */
192         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#00FF00"));
193         txt(25, 5, "<Enter>");
194
195         /* red */
196         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FF0000"));
197         txt(31, 7, "<ESC>");
198     }
199
200     if (current_step == STEP_GENERATE) {
201         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FFFFFF"));
202
203         txt(10, 2, "Please choose either:");
204         txt(85, 4, "Win as default modifier");
205         txt(85, 5, "Alt as default modifier");
206         txt(10, 7, "Afterwards, press");
207         txt(85, 9, "to write ~/.i3/config");
208         txt(85, 10, "to abort");
209
210         /* the not-selected modifier */
211         if (modifier == MOD_SUPER)
212             txt(31, 5, "<Alt>");
213         else txt(31, 4, "<Win>");
214
215         /* the selected modifier */
216         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FONT, font_bold_id);
217         if (modifier == MOD_SUPER)
218             txt(31, 4, "<Win>");
219         else txt(31, 5, "<Alt>");
220
221         /* green */
222         uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_FONT;
223         uint32_t values[] = { get_colorpixel(conn, "#00FF00"), font_id };
224         xcb_change_gc(conn, pixmap_gc, mask, values);
225
226         txt(25, 9, "<Enter>");
227
228         /* red */
229         xcb_change_gc_single(conn, pixmap_gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#FF0000"));
230         txt(31, 10, "<ESC>");
231     }
232
233     /* Copy the contents of the pixmap to the real window */
234     xcb_copy_area(conn, pixmap, win, pixmap_gc, 0, 0, 0, 0, /* */ 500, 500);
235     xcb_flush(conn);
236
237     return 1;
238 }
239
240 static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
241     printf("Keypress %d, state raw = %d\n", event->detail, event->state);
242
243     /* Remove the numlock bit, all other bits are modifiers we can bind to */
244     uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
245     /* Only use the lower 8 bits of the state (modifier masks) so that mouse
246      * button masks are filtered out */
247     state_filtered &= 0xFF;
248
249     xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, state_filtered);
250
251     printf("sym = %c (%d)\n", sym, sym);
252
253     if (sym == XK_Return || sym == XK_KP_Enter) {
254         if (current_step == STEP_WELCOME) {
255             current_step = STEP_GENERATE;
256             /* Set window title */
257             xcb_change_property(conn,
258                 XCB_PROP_MODE_REPLACE,
259                 win,
260                 A__NET_WM_NAME,
261                 A_UTF8_STRING,
262                 8,
263                 strlen("i3: generate config"),
264                 "i3: generate config");
265             xcb_flush(conn);
266         }
267         else finish();
268     }
269
270     /* cancel any time */
271     if (sym == XK_Escape)
272         exit(0);
273
274     if (sym == XK_Alt_L)
275         modifier = MOD_ALT;
276
277     if (sym == XK_Super_L)
278         modifier = MOD_SUPER;
279
280     handle_expose();
281     return 1;
282 }
283
284 /*
285  * Creates the config file and tells i3 to reload.
286  *
287  */
288 static void finish() {
289     printf("creating \"%s\"...\n", config_path);
290
291     if (!(dpy = XOpenDisplay(NULL)))
292         errx(1, "Could not connect to X11");
293
294     FILE *kc_config = fopen(SYSCONFDIR "/i3/config.keycodes", "r");
295     if (kc_config == NULL)
296         err(1, "Could not open input file \"%s\"", SYSCONFDIR "/i3/config.keycodes");
297
298     FILE *ks_config = fopen(config_path, "w");
299     if (ks_config == NULL)
300         err(1, "Could not open output config file \"%s\"", config_path);
301
302     char *line = NULL;
303     size_t len = 0;
304 #if !defined(__APPLE__)
305     ssize_t read;
306 #endif
307     bool head_of_file = true;
308
309     /* write a header about auto-generation to the output file */
310     fputs("# This file has been auto-generated by i3-config-wizard(1).\n", ks_config);
311     fputs("# It will not be overwritten, so edit it as you like.\n", ks_config);
312     fputs("#\n", ks_config);
313     fputs("# Should you change your keyboard layout somewhen, delete\n", ks_config);
314     fputs("# this file and re-run i3-config-wizard(1).\n", ks_config);
315     fputs("#\n", ks_config);
316
317 #if defined(__APPLE__)
318     while ((line = fgetln(kc_config, &len)) != NULL) {
319 #else
320     while ((read = getline(&line, &len, kc_config)) != -1) {
321 #endif
322         /* skip the warning block at the beginning of the input file */
323         if (head_of_file &&
324             strncmp("# WARNING", line, strlen("# WARNING")) == 0)
325             continue;
326
327         head_of_file = false;
328
329         /* Skip leading whitespace */
330         char *walk = line;
331         while (isspace(*walk) && walk < (line + len))
332             walk++;
333
334         /* Set the modifier the user chose */
335         if (strncmp(walk, "set $mod ", strlen("set $mod ")) == 0) {
336             if (modifier == MOD_ALT)
337                 fputs("set $mod Mod1\n", ks_config);
338             else fputs("set $mod Mod4\n", ks_config);
339             continue;
340         }
341
342         /* Check for 'bindcode'. If it’s not a bindcode line, we
343          * just copy it to the output file */
344         if (strncmp(walk, "bindcode", strlen("bindcode")) != 0) {
345             fputs(line, ks_config);
346             continue;
347         }
348         char *result = rewrite_binding(walk);
349         fputs(result, ks_config);
350         free(result);
351     }
352
353     /* sync to do our best in order to have the file really stored on disk */
354     fflush(ks_config);
355     fsync(fileno(ks_config));
356
357     free(line);
358     fclose(kc_config);
359     fclose(ks_config);
360
361     /* tell i3 to reload the config file */
362     int sockfd = connect_ipc(socket_path);
363     ipc_send_message(sockfd, strlen("reload"), 0, (uint8_t*)"reload");
364     close(sockfd);
365
366     exit(0);
367 }
368
369 int main(int argc, char *argv[]) {
370     config_path = resolve_tilde("~/.i3/config");
371     socket_path = getenv("I3SOCK");
372     char *pattern = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1";
373     char *patternbold = "-misc-fixed-bold-r-normal--13-120-75-75-C-70-iso10646-1";
374     int o, option_index = 0;
375
376     static struct option long_options[] = {
377         {"socket", required_argument, 0, 's'},
378         {"version", no_argument, 0, 'v'},
379         {"limit", required_argument, 0, 'l'},
380         {"prompt", required_argument, 0, 'P'},
381         {"prefix", required_argument, 0, 'p'},
382         {"font", required_argument, 0, 'f'},
383         {"help", no_argument, 0, 'h'},
384         {0, 0, 0, 0}
385     };
386
387     char *options_string = "s:vh";
388
389     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
390         switch (o) {
391             case 's':
392                 FREE(socket_path);
393                 socket_path = strdup(optarg);
394                 break;
395             case 'v':
396                 printf("i3-config-wizard " I3_VERSION "\n");
397                 return 0;
398             case 'h':
399                 printf("i3-config-wizard " I3_VERSION "\n");
400                 printf("i3-config-wizard [-s <socket>] [-v]\n");
401                 return 0;
402         }
403     }
404
405     /* Check if the destination config file does not exist but the path is
406      * writable. If not, exit now, this program is not useful in that case. */
407     struct stat stbuf;
408     if (stat(config_path, &stbuf) == 0) {
409         printf("The config file \"%s\" already exists. Exiting.\n", config_path);
410         return 0;
411     }
412
413     /* Create ~/.i3 if it does not yet exist */
414     char *config_dir = resolve_tilde("~/.i3");
415     if (stat(config_dir, &stbuf) != 0)
416         if (mkdir(config_dir, 0755) == -1)
417             err(1, "mkdir(%s) failed", config_dir);
418     free(config_dir);
419
420     int fd;
421     if ((fd = open(config_path, O_CREAT | O_RDWR, 0644)) == -1) {
422         printf("Cannot open file \"%s\" for writing: %s. Exiting.\n", config_path, strerror(errno));
423         return 0;
424     }
425     close(fd);
426     unlink(config_path);
427
428     if (socket_path == NULL)
429         socket_path = socket_path_from_x11();
430
431     if (socket_path == NULL)
432         socket_path = "/tmp/i3-ipc.sock";
433
434     int screens;
435     if ((conn = xcb_connect(NULL, &screens)) == NULL ||
436         xcb_connection_has_error(conn))
437         errx(1, "Cannot open display\n");
438
439     /* Place requests for the atoms we need as soon as possible */
440     #define xmacro(atom) \
441         xcb_intern_atom_cookie_t atom ## _cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
442     #include "atoms.xmacro"
443     #undef xmacro
444
445     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
446     root = root_screen->root;
447
448     xcb_get_numlock_mask(conn);
449
450     symbols = xcb_key_symbols_alloc(conn);
451
452     font_id = get_font_id(conn, pattern, &font_height);
453     font_bold_id = get_font_id(conn, patternbold, &font_bold_height);
454
455     /* Open an input window */
456     win = open_input_window(conn, 300, 205);
457
458     /* Setup NetWM atoms */
459     #define xmacro(name) \
460         do { \
461             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name ## _cookie, NULL); \
462             if (!reply) \
463                 errx(EXIT_FAILURE, "Could not get atom " # name "\n"); \
464             \
465             A_ ## name = reply->atom; \
466             free(reply); \
467         } while (0);
468     #include "atoms.xmacro"
469     #undef xmacro
470
471     /* Set dock mode */
472     xcb_change_property(conn,
473         XCB_PROP_MODE_REPLACE,
474         win,
475         A__NET_WM_WINDOW_TYPE,
476         A_ATOM,
477         32,
478         1,
479         (unsigned char*) &A__NET_WM_WINDOW_TYPE_DIALOG);
480
481     /* Set window title */
482     xcb_change_property(conn,
483         XCB_PROP_MODE_REPLACE,
484         win,
485         A__NET_WM_NAME,
486         A_UTF8_STRING,
487         8,
488         strlen("i3: first configuration"),
489         "i3: first configuration");
490
491     /* Create pixmap */
492     pixmap = xcb_generate_id(conn);
493     pixmap_gc = xcb_generate_id(conn);
494     xcb_create_pixmap(conn, root_screen->root_depth, pixmap, win, 500, 500);
495     xcb_create_gc(conn, pixmap_gc, pixmap, 0, 0);
496
497     /* Grab the keyboard to get all input */
498     xcb_flush(conn);
499
500     /* Try (repeatedly, if necessary) to grab the keyboard. We might not
501      * get the keyboard at the first attempt because of the keybinding
502      * still being active when started via a wm’s keybinding. */
503     xcb_grab_keyboard_cookie_t cookie;
504     xcb_grab_keyboard_reply_t *reply = NULL;
505
506     int count = 0;
507     while ((reply == NULL || reply->status != XCB_GRAB_STATUS_SUCCESS) && (count++ < 500)) {
508         cookie = xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
509         reply = xcb_grab_keyboard_reply(conn, cookie, NULL);
510         usleep(1000);
511     }
512
513     if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
514         fprintf(stderr, "Could not grab keyboard, status = %d\n", reply->status);
515         exit(-1);
516     }
517
518     xcb_flush(conn);
519
520     xcb_generic_event_t *event;
521     while ((event = xcb_wait_for_event(conn)) != NULL) {
522         if (event->response_type == 0) {
523             fprintf(stderr, "X11 Error received! sequence %x\n", event->sequence);
524             continue;
525         }
526
527         /* Strip off the highest bit (set if the event is generated) */
528         int type = (event->response_type & 0x7F);
529
530         switch (type) {
531             case XCB_KEY_PRESS:
532                 handle_key_press(NULL, conn, (xcb_key_press_event_t*)event);
533                 break;
534
535             /* TODO: handle mappingnotify */
536
537             case XCB_EXPOSE:
538                 handle_expose();
539                 break;
540         }
541
542         free(event);
543     }
544
545     return 0;
546 }