]> git.sur5r.net Git - i3/i3/blob - src/main.c
re-implement support for MappingNotifys
[i3/i3] / src / main.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  */
4 #include <ev.h>
5 #include <fcntl.h>
6 #include <limits.h>
7 #include "all.h"
8
9 static int xkb_event_base;
10
11 int xkb_current_group;
12
13 extern Con *focused;
14
15 char **start_argv;
16
17 xcb_connection_t *conn;
18 xcb_event_handlers_t evenths;
19 xcb_property_handlers_t prophs;
20 xcb_atom_t atoms[NUM_ATOMS];
21
22 xcb_window_t root;
23 uint8_t root_depth;
24
25 xcb_key_symbols_t *keysyms;
26
27 /* Those are our connections to X11 for use with libXcursor and XKB */
28 Display *xlibdpy, *xkbdpy;
29
30 /* The list of key bindings */
31 struct bindings_head *bindings;
32
33 /* The list of exec-lines */
34 struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
35
36 /* The list of assignments */
37 struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
38
39 /* We hope that those are supported and set them to true */
40 bool xcursor_supported = true;
41 bool xkb_supported = true;
42
43 /*
44  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
45  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
46  *
47  */
48 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
49     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
50 }
51
52 /*
53  * Flush before blocking (and waiting for new events)
54  *
55  */
56 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
57     xcb_flush(conn);
58 }
59
60 /*
61  * Instead of polling the X connection socket we leave this to
62  * xcb_poll_for_event() which knows better than we can ever know.
63  *
64  */
65 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
66     xcb_generic_event_t *event;
67
68     while ((event = xcb_poll_for_event(conn)) != NULL) {
69             xcb_event_handle(&evenths, event);
70             free(event);
71     }
72 }
73
74
75 /*
76  * When using xmodmap to change the keyboard mapping, this event
77  * is only sent via XKB. Therefore, we need this special handler.
78  *
79  */
80 static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
81     DLOG("Handling XKB event\n");
82     XkbEvent ev;
83
84     /* When using xmodmap, every change (!) gets an own event.
85      * Therefore, we just read all events and only handle the
86      * mapping_notify once. */
87     bool mapping_changed = false;
88     while (XPending(xkbdpy)) {
89         XNextEvent(xkbdpy, (XEvent*)&ev);
90         /* While we should never receive a non-XKB event,
91          * better do sanity checking */
92         if (ev.type != xkb_event_base)
93             continue;
94
95         if (ev.any.xkb_type == XkbMapNotify) {
96             mapping_changed = true;
97             continue;
98         }
99
100         if (ev.any.xkb_type != XkbStateNotify) {
101             ELOG("Unknown XKB event received (type %d)\n", ev.any.xkb_type);
102             continue;
103         }
104
105         /* See The XKB Extension: Library Specification, section 14.1 */
106         /* We check if the current group (each group contains
107          * two levels) has been changed. Mode_switch activates
108          * group XkbGroup2Index */
109         if (xkb_current_group == ev.state.group)
110             continue;
111
112         xkb_current_group = ev.state.group;
113
114         if (ev.state.group == XkbGroup2Index) {
115             DLOG("Mode_switch enabled\n");
116             grab_all_keys(conn, true);
117         }
118
119         if (ev.state.group == XkbGroup1Index) {
120             DLOG("Mode_switch disabled\n");
121             ungrab_all_keys(conn);
122             grab_all_keys(conn, false);
123         }
124     }
125
126     if (!mapping_changed)
127         return;
128
129     DLOG("Keyboard mapping changed, updating keybindings\n");
130     xcb_key_symbols_free(keysyms);
131     keysyms = xcb_key_symbols_alloc(conn);
132
133     xcb_get_numlock_mask(conn);
134
135     ungrab_all_keys(conn);
136     DLOG("Re-grabbing...\n");
137     translate_keysyms();
138     grab_all_keys(conn, (xkb_current_group == XkbGroup2Index));
139     DLOG("Done\n");
140 }
141
142 int main(int argc, char *argv[]) {
143     //parse_cmd("[ foo ] attach, attach ; focus");
144     int screens;
145     char *override_configpath = NULL;
146     bool autostart = true;
147     char *layout_path = NULL;
148     bool delete_layout_path;
149     bool only_check_config = false;
150     bool force_xinerama = false;
151     bool disable_signalhandler = false;
152     xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
153     static struct option long_options[] = {
154         {"no-autostart", no_argument, 0, 'a'},
155         {"config", required_argument, 0, 'c'},
156         {"version", no_argument, 0, 'v'},
157         {"help", no_argument, 0, 'h'},
158         {"layout", required_argument, 0, 'L'},
159         {"restart", required_argument, 0, 0},
160         {"force-xinerama", no_argument, 0, 0},
161         {"disable-signalhandler", no_argument, 0, 0},
162         {0, 0, 0, 0}
163     };
164     int option_index = 0, opt;
165
166     setlocale(LC_ALL, "");
167
168     /* Disable output buffering to make redirects in .xsession actually useful for debugging */
169     if (!isatty(fileno(stdout)))
170         setbuf(stdout, NULL);
171
172     start_argv = argv;
173
174     while ((opt = getopt_long(argc, argv, "c:CvaL:hld:V", long_options, &option_index)) != -1) {
175         switch (opt) {
176             case 'a':
177                 LOG("Autostart disabled using -a\n");
178                 autostart = false;
179                 break;
180             case 'L':
181                 FREE(layout_path);
182                 layout_path = sstrdup(optarg);
183                 delete_layout_path = false;
184                 break;
185             case 'c':
186                 FREE(override_configpath);
187                 override_configpath = sstrdup(optarg);
188                 break;
189             case 'C':
190                 LOG("Checking configuration file only (-C)\n");
191                 only_check_config = true;
192                 break;
193             case 'v':
194                 printf("i3 version " I3_VERSION " © 2009-2011 Michael Stapelberg and contributors\n");
195                 exit(EXIT_SUCCESS);
196             case 'V':
197                 set_verbosity(true);
198                 break;
199             case 'd':
200                 LOG("Enabling debug loglevel %s\n", optarg);
201                 add_loglevel(optarg);
202                 break;
203             case 'l':
204                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
205                 break;
206             case 0:
207                 if (strcmp(long_options[option_index].name, "force-xinerama") == 0) {
208                     force_xinerama = true;
209                     ELOG("Using Xinerama instead of RandR. This option should be "
210                          "avoided at all cost because it does not refresh the list "
211                          "of screens, so you cannot configure displays at runtime. "
212                          "Please check if your driver really does not support RandR "
213                          "and disable this option as soon as you can.\n");
214                     break;
215                 } else if (strcmp(long_options[option_index].name, "disable-signalhandler") == 0) {
216                     disable_signalhandler = true;
217                     break;
218                 } else if (strcmp(long_options[option_index].name, "restart") == 0) {
219                     FREE(layout_path);
220                     layout_path = sstrdup(optarg);
221                     delete_layout_path = true;
222                     break;
223                 }
224                 /* fall-through */
225             default:
226                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
227                 fprintf(stderr, "\n");
228                 fprintf(stderr, "-a: disable autostart\n");
229                 fprintf(stderr, "-L <layoutfile>: load the layout from <layoutfile>\n");
230                 fprintf(stderr, "-v: display version and exit\n");
231                 fprintf(stderr, "-V: enable verbose mode\n");
232                 fprintf(stderr, "-d <loglevel>: enable debug loglevel <loglevel>\n");
233                 fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
234                 fprintf(stderr, "-C: check configuration file and exit\n");
235                 fprintf(stderr, "--force-xinerama: Use Xinerama instead of RandR. This "
236                                 "option should only be used if you are stuck with the "
237                                 "nvidia closed source driver which does not support RandR.\n");
238                 exit(EXIT_FAILURE);
239         }
240     }
241
242     LOG("i3 (tree) version " I3_VERSION " starting\n");
243
244     conn = xcb_connect(NULL, &screens);
245     if (xcb_connection_has_error(conn))
246         errx(EXIT_FAILURE, "Cannot open display\n");
247
248     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
249     root = root_screen->root;
250     root_depth = root_screen->root_depth;
251
252     load_configuration(conn, override_configpath, false);
253     if (only_check_config) {
254         LOG("Done checking configuration file. Exiting.\n");
255         exit(0);
256     }
257
258     if (config.ipc_socket_path == NULL) {
259         config.ipc_socket_path = getenv("I3SOCK");
260     }
261
262     uint32_t mask = XCB_CW_EVENT_MASK;
263     uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
264                           XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
265                                                                            projector), the root window gets a
266                                                                            ConfigureNotify */
267                           XCB_EVENT_MASK_POINTER_MOTION |
268                           XCB_EVENT_MASK_PROPERTY_CHANGE |
269                           XCB_EVENT_MASK_ENTER_WINDOW };
270     xcb_void_cookie_t cookie;
271     cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
272     check_error(conn, cookie, "Another window manager seems to be running");
273
274     /* Place requests for the atoms we need as soon as possible */
275     #define REQUEST_ATOM(name) atom_cookies[name] = xcb_intern_atom(conn, 0, strlen(#name), #name);
276
277     REQUEST_ATOM(_NET_SUPPORTED);
278     REQUEST_ATOM(_NET_WM_STATE_FULLSCREEN);
279     REQUEST_ATOM(_NET_SUPPORTING_WM_CHECK);
280     REQUEST_ATOM(_NET_WM_NAME);
281     REQUEST_ATOM(_NET_WM_STATE);
282     REQUEST_ATOM(_NET_WM_WINDOW_TYPE);
283     REQUEST_ATOM(_NET_WM_DESKTOP);
284     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
285     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
286     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
287     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
288     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
289     REQUEST_ATOM(_NET_WM_STRUT_PARTIAL);
290     REQUEST_ATOM(WM_PROTOCOLS);
291     REQUEST_ATOM(WM_DELETE_WINDOW);
292     REQUEST_ATOM(UTF8_STRING);
293     REQUEST_ATOM(WM_STATE);
294     REQUEST_ATOM(WM_CLIENT_LEADER);
295     REQUEST_ATOM(_NET_CURRENT_DESKTOP);
296     REQUEST_ATOM(_NET_ACTIVE_WINDOW);
297     REQUEST_ATOM(_NET_WORKAREA);
298
299     /* Initialize the Xlib connection */
300     xlibdpy = xkbdpy = XOpenDisplay(NULL);
301
302     /* Try to load the X cursors and initialize the XKB extension */
303     if (xlibdpy == NULL) {
304         ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
305         xcursor_supported = false;
306         xkb_supported = false;
307     } else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
308         ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
309         return 1;
310     } else {
311         xcursor_load_cursors();
312         /*init_xkb();*/
313     }
314
315     if (xkb_supported) {
316         int errBase,
317             major = XkbMajorVersion,
318             minor = XkbMinorVersion;
319
320         if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
321             fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
322             return 1;
323         }
324
325         int i1;
326         if (!XkbQueryExtension(xkbdpy,&i1,&xkb_event_base,&errBase,&major,&minor)) {
327             fprintf(stderr, "XKB not supported by X-server\n");
328             return 1;
329         }
330         /* end of ugliness */
331
332         if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd,
333                              XkbMapNotifyMask | XkbStateNotifyMask,
334                              XkbMapNotifyMask | XkbStateNotifyMask)) {
335             fprintf(stderr, "Could not set XKB event mask\n");
336             return 1;
337         }
338     }
339
340     memset(&evenths, 0, sizeof(xcb_event_handlers_t));
341     memset(&prophs, 0, sizeof(xcb_property_handlers_t));
342
343     xcb_event_handlers_init(conn, &evenths);
344     xcb_property_handlers_init(&prophs, &evenths);
345     xcb_event_set_key_press_handler(&evenths, handle_key_press, NULL);
346
347     xcb_event_set_button_press_handler(&evenths, handle_button_press, NULL);
348
349     xcb_event_set_map_request_handler(&evenths, handle_map_request, NULL);
350
351     xcb_event_set_unmap_notify_handler(&evenths, handle_unmap_notify_event, NULL);
352     xcb_event_set_destroy_notify_handler(&evenths, handle_destroy_notify_event, NULL);
353
354     xcb_event_set_expose_handler(&evenths, handle_expose_event, NULL);
355
356     xcb_event_set_motion_notify_handler(&evenths, handle_motion_notify, NULL);
357
358     /* Enter window = user moved his mouse over the window */
359     xcb_event_set_enter_notify_handler(&evenths, handle_enter_notify, NULL);
360
361     /* Client message are sent to the root window. The only interesting client message
362        for us is _NET_WM_STATE, we honour _NET_WM_STATE_FULLSCREEN */
363     xcb_event_set_client_message_handler(&evenths, handle_client_message, NULL);
364
365     /* Configure request = window tried to change size on its own */
366     xcb_event_set_configure_request_handler(&evenths, handle_configure_request, NULL);
367
368     /* Setup NetWM atoms */
369     #define GET_ATOM(name) \
370         do { \
371             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, atom_cookies[name], NULL); \
372             if (!reply) { \
373                 ELOG("Could not get atom " #name "\n"); \
374                 exit(-1); \
375             } \
376             atoms[name] = reply->atom; \
377             free(reply); \
378         } while (0)
379
380     GET_ATOM(_NET_SUPPORTED);
381     GET_ATOM(_NET_WM_STATE_FULLSCREEN);
382     GET_ATOM(_NET_SUPPORTING_WM_CHECK);
383     GET_ATOM(_NET_WM_NAME);
384     GET_ATOM(_NET_WM_STATE);
385     GET_ATOM(_NET_WM_WINDOW_TYPE);
386     GET_ATOM(_NET_WM_DESKTOP);
387     GET_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
388     GET_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
389     GET_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
390     GET_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
391     GET_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
392     GET_ATOM(_NET_WM_STRUT_PARTIAL);
393     GET_ATOM(WM_PROTOCOLS);
394     GET_ATOM(WM_DELETE_WINDOW);
395     GET_ATOM(UTF8_STRING);
396     GET_ATOM(WM_STATE);
397     GET_ATOM(WM_CLIENT_LEADER);
398     GET_ATOM(_NET_CURRENT_DESKTOP);
399     GET_ATOM(_NET_ACTIVE_WINDOW);
400     GET_ATOM(_NET_WORKAREA);
401
402     /* Watch _NET_WM_NAME (title of the window encoded in UTF-8) */
403     xcb_property_set_handler(&prophs, atoms[_NET_WM_NAME], 128, handle_windowname_change, NULL);
404
405     /* Watch WM_HINTS (contains the urgent property) */
406     xcb_property_set_handler(&prophs, WM_HINTS, UINT_MAX, handle_hints, NULL);
407
408     /* Watch WM_NAME (title of the window encoded in COMPOUND_TEXT) */
409     xcb_watch_wm_name(&prophs, 128, handle_windowname_change_legacy, NULL);
410
411     /* Watch WM_NORMAL_HINTS (aspect ratio, size increments, …) */
412     xcb_property_set_handler(&prophs, WM_NORMAL_HINTS, UINT_MAX, handle_normal_hints, NULL);
413
414     /* Watch WM_CLIENT_LEADER (= logical parent window for toolbars etc.) */
415     xcb_property_set_handler(&prophs, atoms[WM_CLIENT_LEADER], UINT_MAX, handle_clientleader_change, NULL);
416
417     /* Watch WM_TRANSIENT_FOR property (to which client this popup window belongs) */
418     xcb_property_set_handler(&prophs, WM_TRANSIENT_FOR, UINT_MAX, handle_transient_for, NULL);
419
420     /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
421     xcb_event_set_mapping_notify_handler(&evenths, handle_mapping_notify, NULL);
422
423     /* Set up the atoms we support */
424     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTED], ATOM, 32, 7, atoms);
425     /* Set up the window manager’s name */
426     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTING_WM_CHECK], WINDOW, 32, 1, &root);
427     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_WM_NAME], atoms[UTF8_STRING], 8, strlen("i3"), "i3");
428
429     keysyms = xcb_key_symbols_alloc(conn);
430
431     xcb_get_numlock_mask(conn);
432
433     translate_keysyms();
434     grab_all_keys(conn, false);
435
436     bool needs_tree_init = true;
437     if (layout_path) {
438         LOG("Trying to restore the layout from %s...", layout_path);
439         needs_tree_init = !tree_restore(layout_path);
440         if (delete_layout_path)
441             unlink(layout_path);
442         free(layout_path);
443     }
444     if (needs_tree_init)
445         tree_init();
446
447     int randr_base;
448     if (force_xinerama) {
449         xinerama_init();
450     } else {
451         DLOG("Checking for XRandR...\n");
452         randr_init(&randr_base);
453
454         xcb_event_set_handler(&evenths,
455                               randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY,
456                               handle_screen_change,
457                               NULL);
458     }
459
460     tree_render();
461
462     struct ev_loop *loop = ev_loop_new(0);
463     if (loop == NULL)
464             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
465
466     /* Create the UNIX domain socket for IPC */
467     if (config.ipc_socket_path != NULL) {
468         int ipc_socket = ipc_create_socket(config.ipc_socket_path);
469         if (ipc_socket == -1) {
470             ELOG("Could not create the IPC socket, IPC disabled\n");
471         } else {
472             struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
473             ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
474             ev_io_start(loop, ipc_io);
475         }
476     }
477
478     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
479     struct ev_io *xkb = scalloc(sizeof(struct ev_io));
480     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
481     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
482
483     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
484     ev_io_start(loop, xcb_watcher);
485
486
487     if (xkb_supported) {
488         ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
489         ev_io_start(loop, xkb);
490
491         /* Flush the buffer so that libev can properly get new events */
492         XFlush(xkbdpy);
493     }
494
495     ev_check_init(xcb_check, xcb_check_cb);
496     ev_check_start(loop, xcb_check);
497
498     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
499     ev_prepare_start(loop, xcb_prepare);
500
501     xcb_flush(conn);
502
503     manage_existing_windows(root);
504
505     if (!disable_signalhandler)
506         setup_signal_handler();
507
508     /* Ignore SIGPIPE to survive errors when an IPC client disconnects
509      * while we are sending him a message */
510     signal(SIGPIPE, SIG_IGN);
511
512     /* Autostarting exec-lines */
513     if (autostart) {
514         struct Autostart *exec;
515         TAILQ_FOREACH(exec, &autostarts, autostarts) {
516             LOG("auto-starting %s\n", exec->command);
517             start_application(exec->command);
518         }
519     }
520
521     ev_loop(loop, 0);
522 }