]> git.sur5r.net Git - i3/i3/blob - src/mainx.c
Update function names, variable names and documentation for the RandR changes
[i3/i3] / src / mainx.c
1 /*
2  * vim:ts=8: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  */
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <sys/types.h>
15 #include <unistd.h>
16 #include <stdbool.h>
17 #include <assert.h>
18 #include <limits.h>
19 #include <locale.h>
20 #include <fcntl.h>
21 #include <getopt.h>
22
23 #include <X11/XKBlib.h>
24 #include <X11/extensions/XKB.h>
25
26 #include <xcb/xcb.h>
27 #include <xcb/xcb_atom.h>
28 #include <xcb/xcb_aux.h>
29 #include <xcb/xcb_event.h>
30 #include <xcb/xcb_property.h>
31 #include <xcb/xcb_keysyms.h>
32 #include <xcb/xcb_icccm.h>
33
34 #include <ev.h>
35
36 #include "config.h"
37 #include "data.h"
38 #include "debug.h"
39 #include "handlers.h"
40 #include "click.h"
41 #include "i3.h"
42 #include "layout.h"
43 #include "queue.h"
44 #include "table.h"
45 #include "util.h"
46 #include "xcb.h"
47 #include "randr.h"
48 #include "manage.h"
49 #include "ipc.h"
50 #include "log.h"
51 #include "sighandler.h"
52
53 xcb_connection_t *global_conn;
54
55 /* This is the path to i3, copied from argv[0] when starting up */
56 char **start_argv;
57
58 /* This is our connection to X11 for use with XKB */
59 Display *xkbdpy;
60
61 xcb_key_symbols_t *keysyms;
62
63 /* The list of key bindings */
64 struct bindings_head *bindings;
65
66 /* The list of exec-lines */
67 struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
68
69 /* The list of assignments */
70 struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
71
72 /* This is a list of Stack_Windows, global, for easier/faster access on expose events */
73 struct stack_wins_head stack_wins = SLIST_HEAD_INITIALIZER(stack_wins);
74
75 /* The event handlers need to be global because they are accessed by our custom event handler
76    in handle_button_press(), needed for graphical resizing */
77 xcb_event_handlers_t evenths;
78 xcb_atom_t atoms[NUM_ATOMS];
79
80 xcb_window_t root;
81 int num_screens = 0;
82
83 /* The depth of the root screen (used e.g. for creating new pixmaps later) */
84 uint8_t root_depth;
85
86 /* We hope that XKB is supported and set this to false */
87 bool xkb_supported = true;
88
89 /*
90  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
91  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
92  *
93  */
94 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
95         /* empty, because xcb_prepare_cb and xcb_check_cb are used */
96 }
97
98 /*
99  * Flush before blocking (and waiting for new events)
100  *
101  */
102 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
103         xcb_flush(evenths.c);
104 }
105
106 /*
107  * Instead of polling the X connection socket we leave this to
108  * xcb_poll_for_event() which knows better than we can ever know.
109  *
110  */
111 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
112         xcb_generic_event_t *event;
113
114         while ((event = xcb_poll_for_event(evenths.c)) != NULL) {
115                 xcb_event_handle(&evenths, event);
116                 free(event);
117         }
118 }
119
120 /*
121  * When using xmodmap to change the keyboard mapping, this event
122  * is only sent via XKB. Therefore, we need this special handler.
123  *
124  */
125 static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
126         DLOG("Handling XKB event\n");
127         XEvent ev;
128         /* When using xmodmap, every change (!) gets an own event.
129          * Therefore, we just read all events and only handle the
130          * mapping_notify once (we do not receive any other XKB
131          * events anyway). */
132         while (XPending(xkbdpy))
133                 XNextEvent(xkbdpy, &ev);
134
135         xcb_key_symbols_free(keysyms);
136         keysyms = xcb_key_symbols_alloc(global_conn);
137
138         xcb_get_numlock_mask(global_conn);
139
140         ungrab_all_keys(global_conn);
141         DLOG("Re-grabbing...\n");
142         grab_all_keys(global_conn);
143         DLOG("Done\n");
144
145 }
146
147
148 int main(int argc, char *argv[], char *env[]) {
149         int i, screens, opt;
150         char *override_configpath = NULL;
151         bool autostart = true;
152         bool only_check_config = false;
153         xcb_connection_t *conn;
154         xcb_property_handlers_t prophs;
155         xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
156         static struct option long_options[] = {
157                 {"no-autostart", no_argument, 0, 'a'},
158                 {"config", required_argument, 0, 'c'},
159                 {"version", no_argument, 0, 'v'},
160                 {"help", no_argument, 0, 'h'},
161                 {0, 0, 0, 0}
162         };
163         int option_index = 0;
164
165         setlocale(LC_ALL, "");
166
167         /* Disable output buffering to make redirects in .xsession actually useful for debugging */
168         if (!isatty(fileno(stdout)))
169                 setbuf(stdout, NULL);
170
171         start_argv = argv;
172
173         while ((opt = getopt_long(argc, argv, "c:Cvahld:V", long_options, &option_index)) != -1) {
174                 switch (opt) {
175                         case 'a':
176                                 LOG("Autostart disabled using -a\n");
177                                 autostart = false;
178                                 break;
179                         case 'c':
180                                 override_configpath = sstrdup(optarg);
181                                 break;
182                         case 'C':
183                                 LOG("Checking configuration file only (-C)\n");
184                                 only_check_config = true;
185                                 break;
186                         case 'v':
187                                 printf("i3 version " I3_VERSION " © 2009 Michael Stapelberg and contributors\n");
188                                 exit(EXIT_SUCCESS);
189                         case 'V':
190                                 set_verbosity(true);
191                                 break;
192                         case 'd':
193                                 LOG("Enabling debug loglevel %s\n", optarg);
194                                 add_loglevel(optarg);
195                                 break;
196                         case 'l':
197                                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
198                                 break;
199                         default:
200                                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
201                                 fprintf(stderr, "\n");
202                                 fprintf(stderr, "-a: disable autostart\n");
203                                 fprintf(stderr, "-v: display version and exit\n");
204                                 fprintf(stderr, "-V: enable verbose mode\n");
205                                 fprintf(stderr, "-d <loglevel>: enable debug loglevel <loglevel>\n");
206                                 fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
207                                 fprintf(stderr, "-C: check configuration file and exit\n");
208                                 exit(EXIT_FAILURE);
209                 }
210         }
211
212         LOG("i3 version " I3_VERSION " starting\n");
213
214         /* Initialize the table data structures for each workspace */
215         init_table();
216
217         memset(&evenths, 0, sizeof(xcb_event_handlers_t));
218         memset(&prophs, 0, sizeof(xcb_property_handlers_t));
219
220         conn = global_conn = xcb_connect(NULL, &screens);
221
222         if (xcb_connection_has_error(conn))
223                 die("Cannot open display\n");
224
225         load_configuration(conn, override_configpath, false);
226         if (only_check_config) {
227                 LOG("Done checking configuration file. Exiting.\n");
228                 exit(0);
229         }
230
231         /* Create the initial container on the first workspace. This used to
232          * be part of init_table, but since it possibly requires an X
233          * connection and a loaded configuration (default mode for new
234          * containers may be stacking, which requires a new window to be
235          * created), it had to be delayed. */
236         expand_table_cols(TAILQ_FIRST(workspaces));
237         expand_table_rows(TAILQ_FIRST(workspaces));
238
239         /* Place requests for the atoms we need as soon as possible */
240         #define REQUEST_ATOM(name) atom_cookies[name] = xcb_intern_atom(conn, 0, strlen(#name), #name);
241
242         REQUEST_ATOM(_NET_SUPPORTED);
243         REQUEST_ATOM(_NET_WM_STATE_FULLSCREEN);
244         REQUEST_ATOM(_NET_SUPPORTING_WM_CHECK);
245         REQUEST_ATOM(_NET_WM_NAME);
246         REQUEST_ATOM(_NET_WM_STATE);
247         REQUEST_ATOM(_NET_WM_WINDOW_TYPE);
248         REQUEST_ATOM(_NET_WM_DESKTOP);
249         REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
250         REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
251         REQUEST_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
252         REQUEST_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
253         REQUEST_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
254         REQUEST_ATOM(_NET_WM_STRUT_PARTIAL);
255         REQUEST_ATOM(WM_PROTOCOLS);
256         REQUEST_ATOM(WM_DELETE_WINDOW);
257         REQUEST_ATOM(UTF8_STRING);
258         REQUEST_ATOM(WM_STATE);
259         REQUEST_ATOM(WM_CLIENT_LEADER);
260         REQUEST_ATOM(_NET_CURRENT_DESKTOP);
261         REQUEST_ATOM(_NET_ACTIVE_WINDOW);
262         REQUEST_ATOM(_NET_WORKAREA);
263
264         /* TODO: this has to be more beautiful somewhen */
265         int major, minor, error;
266
267         major = XkbMajorVersion;
268         minor = XkbMinorVersion;
269
270         int evBase, errBase;
271
272         if ((xkbdpy = XkbOpenDisplay(getenv("DISPLAY"), &evBase, &errBase, &major, &minor, &error)) == NULL) {
273                 ELOG("ERROR: XkbOpenDisplay() failed, disabling XKB support\n");
274                 xkb_supported = false;
275         }
276
277         if (xkb_supported) {
278                 if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
279                         fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
280                         return 1;
281                 }
282
283                 int i1;
284                 if (!XkbQueryExtension(xkbdpy,&i1,&evBase,&errBase,&major,&minor)) {
285                         fprintf(stderr, "XKB not supported by X-server\n");
286                         return 1;
287                 }
288                 /* end of ugliness */
289
290                 if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd, XkbMapNotifyMask, XkbMapNotifyMask)) {
291                         fprintf(stderr, "Could not set XKB event mask\n");
292                         return 1;
293                 }
294         }
295
296         /* Initialize event loop using libev */
297         struct ev_loop *loop = ev_loop_new(0);
298         if (loop == NULL)
299                 die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
300
301         struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
302         struct ev_io *xkb = scalloc(sizeof(struct ev_io));
303         struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
304         struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
305
306         ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
307         ev_io_start(loop, xcb_watcher);
308
309         if (xkb_supported) {
310                 ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
311                 ev_io_start(loop, xkb);
312
313                 /* Flush the buffer so that libev can properly get new events */
314                 XFlush(xkbdpy);
315         }
316
317         ev_check_init(xcb_check, xcb_check_cb);
318         ev_check_start(loop, xcb_check);
319
320         ev_prepare_init(xcb_prepare, xcb_prepare_cb);
321         ev_prepare_start(loop, xcb_prepare);
322
323         /* Grab the server to delay any events until we enter the eventloop */
324         xcb_grab_server(conn);
325
326         xcb_event_handlers_init(conn, &evenths);
327
328         /* DEBUG: Trap all events and print them */
329         for (i = 2; i < 128; ++i)
330                 xcb_event_set_handler(&evenths, i, handle_event, 0);
331
332         for (i = 0; i < 256; ++i)
333                 xcb_event_set_error_handler(&evenths, i, (xcb_generic_error_handler_t)handle_event, 0);
334
335         /* Expose = an Application should redraw itself, in this case it’s our titlebars. */
336         xcb_event_set_expose_handler(&evenths, handle_expose_event, NULL);
337
338         /* Key presses/releases are pretty obvious, I think */
339         xcb_event_set_key_press_handler(&evenths, handle_key_press, NULL);
340         xcb_event_set_key_release_handler(&evenths, handle_key_release, NULL);
341
342         /* Enter window = user moved his mouse over the window */
343         xcb_event_set_enter_notify_handler(&evenths, handle_enter_notify, NULL);
344
345         /* Button press = user pushed a mouse button over one of our windows */
346         xcb_event_set_button_press_handler(&evenths, handle_button_press, NULL);
347
348         /* Map notify = there is a new window */
349         xcb_event_set_map_request_handler(&evenths, handle_map_request, &prophs);
350
351         /* Unmap notify = window disappeared. When sent from a client, we don’t manage
352            it any longer. Usually, the client destroys the window shortly afterwards. */
353         xcb_event_set_unmap_notify_handler(&evenths, handle_unmap_notify_event, NULL);
354
355         /* Configure notify = window’s configuration (geometry, stacking, …). We only need
356            it to set up ignore the following enter_notify events */
357         xcb_event_set_configure_notify_handler(&evenths, handle_configure_event, NULL);
358
359         /* Configure request = window tried to change size on its own */
360         xcb_event_set_configure_request_handler(&evenths, handle_configure_request, NULL);
361
362         /* Motion notify = user moved his cursor (over the root window and may
363          * cross virtual screen boundaries doing that) */
364         xcb_event_set_motion_notify_handler(&evenths, handle_motion_notify, NULL);
365
366         /* Mapping notify = keyboard mapping changed (Xmodmap), re-grab bindings */
367         xcb_event_set_mapping_notify_handler(&evenths, handle_mapping_notify, NULL);
368
369         /* Client message are sent to the root window. The only interesting client message
370            for us is _NET_WM_STATE, we honour _NET_WM_STATE_FULLSCREEN */
371         xcb_event_set_client_message_handler(&evenths, handle_client_message, NULL);
372
373         /* Initialize the property handlers */
374         xcb_property_handlers_init(&prophs, &evenths);
375
376         /* Watch size hints (to obey correct aspect ratio) */
377         xcb_property_set_handler(&prophs, WM_NORMAL_HINTS, UINT_MAX, handle_normal_hints, NULL);
378
379         /* Get the root window and set the event mask */
380         xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
381         root = root_screen->root;
382         root_depth = root_screen->root_depth;
383
384         uint32_t mask = XCB_CW_EVENT_MASK;
385         uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
386                               XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
387                                                                            projector), the root window gets a
388                                                                            ConfigureNotify */
389                               XCB_EVENT_MASK_POINTER_MOTION |
390                               XCB_EVENT_MASK_PROPERTY_CHANGE |
391                               XCB_EVENT_MASK_ENTER_WINDOW };
392         xcb_void_cookie_t cookie;
393         cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
394         check_error(conn, cookie, "Another window manager seems to be running");
395
396         /* Setup NetWM atoms */
397         #define GET_ATOM(name) { \
398                 xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, atom_cookies[name], NULL); \
399                 if (!reply) { \
400                         ELOG("Could not get atom " #name "\n"); \
401                         exit(-1); \
402                 } \
403                 atoms[name] = reply->atom; \
404                 free(reply); \
405         }
406
407         GET_ATOM(_NET_SUPPORTED);
408         GET_ATOM(_NET_WM_STATE_FULLSCREEN);
409         GET_ATOM(_NET_SUPPORTING_WM_CHECK);
410         GET_ATOM(_NET_WM_NAME);
411         GET_ATOM(_NET_WM_STATE);
412         GET_ATOM(_NET_WM_WINDOW_TYPE);
413         GET_ATOM(_NET_WM_DESKTOP);
414         GET_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
415         GET_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
416         GET_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
417         GET_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
418         GET_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
419         GET_ATOM(_NET_WM_STRUT_PARTIAL);
420         GET_ATOM(WM_PROTOCOLS);
421         GET_ATOM(WM_DELETE_WINDOW);
422         GET_ATOM(UTF8_STRING);
423         GET_ATOM(WM_STATE);
424         GET_ATOM(WM_CLIENT_LEADER);
425         GET_ATOM(_NET_CURRENT_DESKTOP);
426         GET_ATOM(_NET_ACTIVE_WINDOW);
427         GET_ATOM(_NET_WORKAREA);
428
429         xcb_property_set_handler(&prophs, atoms[_NET_WM_WINDOW_TYPE], UINT_MAX, handle_window_type, NULL);
430         /* TODO: In order to comply with EWMH, we have to watch _NET_WM_STRUT_PARTIAL */
431
432         /* Watch _NET_WM_NAME (= title of the window in UTF-8) property */
433         xcb_property_set_handler(&prophs, atoms[_NET_WM_NAME], 128, handle_windowname_change, NULL);
434
435         /* Watch WM_TRANSIENT_FOR property (to which client this popup window belongs) */
436         xcb_property_set_handler(&prophs, WM_TRANSIENT_FOR, UINT_MAX, handle_transient_for, NULL);
437
438         /* Watch WM_NAME (= title of the window in compound text) property for legacy applications */
439         xcb_watch_wm_name(&prophs, 128, handle_windowname_change_legacy, NULL);
440
441         /* Watch WM_CLASS (= class of the window) */
442         xcb_property_set_handler(&prophs, WM_CLASS, 128, handle_windowclass_change, NULL);
443
444         /* Watch WM_CLIENT_LEADER (= logical parent window for toolbars etc.) */
445         xcb_property_set_handler(&prophs, atoms[WM_CLIENT_LEADER], UINT_MAX, handle_clientleader_change, NULL);
446
447         /* Watch WM_HINTS (contains the urgent property) */
448         xcb_property_set_handler(&prophs, WM_HINTS, UINT_MAX, handle_hints, NULL);
449
450         /* Set up the atoms we support */
451         check_error(conn, xcb_change_property_checked(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTED],
452                        ATOM, 32, 7, atoms), "Could not set _NET_SUPPORTED");
453         /* Set up the window manager’s name */
454         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTING_WM_CHECK], WINDOW, 32, 1, &root);
455         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_WM_NAME], atoms[UTF8_STRING], 8, strlen("i3"), "i3");
456
457         keysyms = xcb_key_symbols_alloc(conn);
458
459         xcb_get_numlock_mask(conn);
460
461         grab_all_keys(conn);
462
463         DLOG("Checking for XRandR...\n");
464         int randr_base;
465         initialize_randr(conn, &randr_base);
466
467         xcb_event_set_handler(&evenths,
468                               randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY,
469                               handle_screen_change,
470                               NULL);
471
472         xcb_flush(conn);
473
474         /* Get pointer position to see on which screen we’re starting */
475         xcb_query_pointer_reply_t *reply;
476         if ((reply = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, root), NULL)) == NULL) {
477                 ELOG("Could not get pointer position\n");
478                 return 1;
479         }
480
481         Output *screen = get_output_containing(reply->root_x, reply->root_y);
482         if (screen == NULL) {
483                 ELOG("ERROR: No screen at %d x %d, starting on the first screen\n",
484                     reply->root_x, reply->root_y);
485                 screen = get_first_output();
486         }
487
488         DLOG("Starting on %p\n", screen->current_workspace);
489         c_ws = screen->current_workspace;
490
491         manage_existing_windows(conn, &prophs, root);
492
493         /* Create the UNIX domain socket for IPC */
494         if (config.ipc_socket_path != NULL) {
495                 int ipc_socket = ipc_create_socket(config.ipc_socket_path);
496                 if (ipc_socket == -1) {
497                         ELOG("Could not create the IPC socket, IPC disabled\n");
498                 } else {
499                         struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
500                         ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
501                         ev_io_start(loop, ipc_io);
502                 }
503         }
504
505         /* Handle the events which arrived until now */
506         xcb_check_cb(NULL, NULL, 0);
507
508         setup_signal_handler();
509         /* Ungrab the server to receive events and enter libev’s eventloop */
510         xcb_ungrab_server(conn);
511
512         /* Autostarting exec-lines */
513         struct Autostart *exec;
514         if (autostart) {
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
523         /* not reached */
524         return 0;
525 }