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