]> git.sur5r.net Git - i3/i3/blob - src/main.c
Time Lord technology: for_window config directive to run arbitrary cmds
[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
19 xcb_window_t root;
20 uint8_t root_depth;
21
22 xcb_key_symbols_t *keysyms;
23
24 /* Those are our connections to X11 for use with libXcursor and XKB */
25 Display *xlibdpy, *xkbdpy;
26
27 /* The list of key bindings */
28 struct bindings_head *bindings;
29
30 /* The list of exec-lines */
31 struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
32
33 /* The list of assignments */
34 struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
35
36 /* The list of workspace assignments (which workspace should end up on which
37  * output) */
38 struct ws_assignments_head ws_assignments = TAILQ_HEAD_INITIALIZER(ws_assignments);
39
40 struct real_assignments_head real_assignments = TAILQ_HEAD_INITIALIZER(real_assignments);
41
42 /* We hope that those are supported and set them to true */
43 bool xcursor_supported = true;
44 bool xkb_supported = true;
45
46 /*
47  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
48  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
49  *
50  */
51 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
52     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
53 }
54
55 /*
56  * Flush before blocking (and waiting for new events)
57  *
58  */
59 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
60     xcb_flush(conn);
61 }
62
63 /*
64  * Instead of polling the X connection socket we leave this to
65  * xcb_poll_for_event() which knows better than we can ever know.
66  *
67  */
68 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
69     xcb_generic_event_t *event;
70
71     while ((event = xcb_poll_for_event(conn)) != NULL) {
72         if (event->response_type == 0) {
73             ELOG("X11 Error received! sequence %x\n", event->sequence);
74             continue;
75         }
76
77         /* Strip off the highest bit (set if the event is generated) */
78         int type = (event->response_type & 0x7F);
79
80         handle_event(type, event);
81
82         free(event);
83     }
84 }
85
86
87 /*
88  * When using xmodmap to change the keyboard mapping, this event
89  * is only sent via XKB. Therefore, we need this special handler.
90  *
91  */
92 static void xkb_got_event(EV_P_ struct ev_io *w, int revents) {
93     DLOG("Handling XKB event\n");
94     XkbEvent ev;
95
96     /* When using xmodmap, every change (!) gets an own event.
97      * Therefore, we just read all events and only handle the
98      * mapping_notify once. */
99     bool mapping_changed = false;
100     while (XPending(xkbdpy)) {
101         XNextEvent(xkbdpy, (XEvent*)&ev);
102         /* While we should never receive a non-XKB event,
103          * better do sanity checking */
104         if (ev.type != xkb_event_base)
105             continue;
106
107         if (ev.any.xkb_type == XkbMapNotify) {
108             mapping_changed = true;
109             continue;
110         }
111
112         if (ev.any.xkb_type != XkbStateNotify) {
113             ELOG("Unknown XKB event received (type %d)\n", ev.any.xkb_type);
114             continue;
115         }
116
117         /* See The XKB Extension: Library Specification, section 14.1 */
118         /* We check if the current group (each group contains
119          * two levels) has been changed. Mode_switch activates
120          * group XkbGroup2Index */
121         if (xkb_current_group == ev.state.group)
122             continue;
123
124         xkb_current_group = ev.state.group;
125
126         if (ev.state.group == XkbGroup2Index) {
127             DLOG("Mode_switch enabled\n");
128             grab_all_keys(conn, true);
129         }
130
131         if (ev.state.group == XkbGroup1Index) {
132             DLOG("Mode_switch disabled\n");
133             ungrab_all_keys(conn);
134             grab_all_keys(conn, false);
135         }
136     }
137
138     if (!mapping_changed)
139         return;
140
141     DLOG("Keyboard mapping changed, updating keybindings\n");
142     xcb_key_symbols_free(keysyms);
143     keysyms = xcb_key_symbols_alloc(conn);
144
145     xcb_get_numlock_mask(conn);
146
147     ungrab_all_keys(conn);
148     DLOG("Re-grabbing...\n");
149     translate_keysyms();
150     grab_all_keys(conn, (xkb_current_group == XkbGroup2Index));
151     DLOG("Done\n");
152 }
153
154 int main(int argc, char *argv[]) {
155     //parse_cmd("[ foo ] attach, attach ; focus");
156     int screens;
157     char *override_configpath = NULL;
158     bool autostart = true;
159     char *layout_path = NULL;
160     bool delete_layout_path = false;
161     bool only_check_config = false;
162     bool force_xinerama = false;
163     bool disable_signalhandler = false;
164     static struct option long_options[] = {
165         {"no-autostart", no_argument, 0, 'a'},
166         {"config", required_argument, 0, 'c'},
167         {"version", no_argument, 0, 'v'},
168         {"help", no_argument, 0, 'h'},
169         {"layout", required_argument, 0, 'L'},
170         {"restart", required_argument, 0, 0},
171         {"force-xinerama", no_argument, 0, 0},
172         {"disable-signalhandler", no_argument, 0, 0},
173         {0, 0, 0, 0}
174     };
175     int option_index = 0, opt;
176
177     setlocale(LC_ALL, "");
178
179     /* Disable output buffering to make redirects in .xsession actually useful for debugging */
180     if (!isatty(fileno(stdout)))
181         setbuf(stdout, NULL);
182
183     start_argv = argv;
184
185     while ((opt = getopt_long(argc, argv, "c:CvaL:hld:V", long_options, &option_index)) != -1) {
186         switch (opt) {
187             case 'a':
188                 LOG("Autostart disabled using -a\n");
189                 autostart = false;
190                 break;
191             case 'L':
192                 FREE(layout_path);
193                 layout_path = sstrdup(optarg);
194                 delete_layout_path = false;
195                 break;
196             case 'c':
197                 FREE(override_configpath);
198                 override_configpath = sstrdup(optarg);
199                 break;
200             case 'C':
201                 LOG("Checking configuration file only (-C)\n");
202                 only_check_config = true;
203                 break;
204             case 'v':
205                 printf("i3 version " I3_VERSION " © 2009-2011 Michael Stapelberg and contributors\n");
206                 exit(EXIT_SUCCESS);
207             case 'V':
208                 set_verbosity(true);
209                 break;
210             case 'd':
211                 LOG("Enabling debug loglevel %s\n", optarg);
212                 add_loglevel(optarg);
213                 break;
214             case 'l':
215                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
216                 break;
217             case 0:
218                 if (strcmp(long_options[option_index].name, "force-xinerama") == 0) {
219                     force_xinerama = true;
220                     ELOG("Using Xinerama instead of RandR. This option should be "
221                          "avoided at all cost because it does not refresh the list "
222                          "of screens, so you cannot configure displays at runtime. "
223                          "Please check if your driver really does not support RandR "
224                          "and disable this option as soon as you can.\n");
225                     break;
226                 } else if (strcmp(long_options[option_index].name, "disable-signalhandler") == 0) {
227                     disable_signalhandler = true;
228                     break;
229                 } else if (strcmp(long_options[option_index].name, "restart") == 0) {
230                     FREE(layout_path);
231                     layout_path = sstrdup(optarg);
232                     delete_layout_path = true;
233                     break;
234                 }
235                 /* fall-through */
236             default:
237                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
238                 fprintf(stderr, "\n");
239                 fprintf(stderr, "-a: disable autostart\n");
240                 fprintf(stderr, "-L <layoutfile>: load the layout from <layoutfile>\n");
241                 fprintf(stderr, "-v: display version and exit\n");
242                 fprintf(stderr, "-V: enable verbose mode\n");
243                 fprintf(stderr, "-d <loglevel>: enable debug loglevel <loglevel>\n");
244                 fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
245                 fprintf(stderr, "-C: check configuration file and exit\n");
246                 fprintf(stderr, "--force-xinerama: Use Xinerama instead of RandR. This "
247                                 "option should only be used if you are stuck with the "
248                                 "nvidia closed source driver which does not support RandR.\n");
249                 exit(EXIT_FAILURE);
250         }
251     }
252
253     LOG("i3 (tree) version " I3_VERSION " starting\n");
254
255     conn = xcb_connect(NULL, &screens);
256     if (xcb_connection_has_error(conn))
257         errx(EXIT_FAILURE, "Cannot open display\n");
258
259     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
260     root = root_screen->root;
261     root_depth = root_screen->root_depth;
262
263     load_configuration(conn, override_configpath, false);
264     if (only_check_config) {
265         LOG("Done checking configuration file. Exiting.\n");
266         exit(0);
267     }
268
269     if (config.ipc_socket_path == NULL) {
270         /* Fall back to a file name in /tmp/ based on the PID */
271         if ((config.ipc_socket_path = getenv("I3SOCK")) == NULL)
272             config.ipc_socket_path = get_process_filename("ipc-socket");
273         else
274             config.ipc_socket_path = sstrdup(config.ipc_socket_path);
275     }
276
277     uint32_t mask = XCB_CW_EVENT_MASK;
278     uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
279                           XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
280                                                                            projector), the root window gets a
281                                                                            ConfigureNotify */
282                           XCB_EVENT_MASK_POINTER_MOTION |
283                           XCB_EVENT_MASK_PROPERTY_CHANGE |
284                           XCB_EVENT_MASK_ENTER_WINDOW };
285     xcb_void_cookie_t cookie;
286     cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
287     check_error(conn, cookie, "Another window manager seems to be running");
288
289     /* Place requests for the atoms we need as soon as possible */
290     #define xmacro(atom) \
291         xcb_intern_atom_cookie_t atom ## _cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
292     #include "atoms.xmacro"
293     #undef xmacro
294
295     /* Initialize the Xlib connection */
296     xlibdpy = xkbdpy = XOpenDisplay(NULL);
297
298     /* Try to load the X cursors and initialize the XKB extension */
299     if (xlibdpy == NULL) {
300         ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
301         xcursor_supported = false;
302         xkb_supported = false;
303     } else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
304         ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
305         return 1;
306     } else {
307         xcursor_load_cursors();
308         /*init_xkb();*/
309     }
310
311     if (xkb_supported) {
312         int errBase,
313             major = XkbMajorVersion,
314             minor = XkbMinorVersion;
315
316         if (fcntl(ConnectionNumber(xkbdpy), F_SETFD, FD_CLOEXEC) == -1) {
317             fprintf(stderr, "Could not set FD_CLOEXEC on xkbdpy\n");
318             return 1;
319         }
320
321         int i1;
322         if (!XkbQueryExtension(xkbdpy,&i1,&xkb_event_base,&errBase,&major,&minor)) {
323             fprintf(stderr, "XKB not supported by X-server\n");
324             return 1;
325         }
326         /* end of ugliness */
327
328         if (!XkbSelectEvents(xkbdpy, XkbUseCoreKbd,
329                              XkbMapNotifyMask | XkbStateNotifyMask,
330                              XkbMapNotifyMask | XkbStateNotifyMask)) {
331             fprintf(stderr, "Could not set XKB event mask\n");
332             return 1;
333         }
334     }
335
336     /* Setup NetWM atoms */
337     #define xmacro(name) \
338         do { \
339             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name ## _cookie, NULL); \
340             if (!reply) { \
341                 ELOG("Could not get atom " #name "\n"); \
342                 exit(-1); \
343             } \
344             A_ ## name = reply->atom; \
345             free(reply); \
346         } while (0);
347     #include "atoms.xmacro"
348     #undef xmacro
349
350     property_handlers_init();
351
352     /* Set up the atoms we support */
353     xcb_atom_t supported_atoms[] = {
354 #define xmacro(atom) A_ ## atom,
355 #include "atoms.xmacro"
356 #undef xmacro
357     };
358     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTED, A_ATOM, 32, 7, supported_atoms);
359     /* Set up the window manager’s name */
360     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_SUPPORTING_WM_CHECK, A_WINDOW, 32, 1, &root);
361     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A__NET_WM_NAME, A_UTF8_STRING, 8, strlen("i3"), "i3");
362
363     keysyms = xcb_key_symbols_alloc(conn);
364
365     xcb_get_numlock_mask(conn);
366
367     translate_keysyms();
368     grab_all_keys(conn, false);
369
370     bool needs_tree_init = true;
371     if (layout_path) {
372         LOG("Trying to restore the layout from %s...", layout_path);
373         needs_tree_init = !tree_restore(layout_path);
374         if (delete_layout_path)
375             unlink(layout_path);
376         free(layout_path);
377     }
378     if (needs_tree_init)
379         tree_init();
380
381     if (force_xinerama) {
382         xinerama_init();
383     } else {
384         DLOG("Checking for XRandR...\n");
385         randr_init(&randr_base);
386     }
387
388     tree_render();
389
390     struct ev_loop *loop = ev_loop_new(0);
391     if (loop == NULL)
392             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
393
394     /* Create the UNIX domain socket for IPC */
395     int ipc_socket = ipc_create_socket(config.ipc_socket_path);
396     if (ipc_socket == -1) {
397         ELOG("Could not create the IPC socket, IPC disabled\n");
398     } else {
399         free(config.ipc_socket_path);
400         struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
401         ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
402         ev_io_start(loop, ipc_io);
403     }
404
405     /* Set up i3 specific atoms like I3_SOCKET_PATH and I3_CONFIG_PATH */
406     x_set_i3_atoms();
407
408     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
409     struct ev_io *xkb = scalloc(sizeof(struct ev_io));
410     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
411     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
412
413     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
414     ev_io_start(loop, xcb_watcher);
415
416
417     if (xkb_supported) {
418         ev_io_init(xkb, xkb_got_event, ConnectionNumber(xkbdpy), EV_READ);
419         ev_io_start(loop, xkb);
420
421         /* Flush the buffer so that libev can properly get new events */
422         XFlush(xkbdpy);
423     }
424
425     ev_check_init(xcb_check, xcb_check_cb);
426     ev_check_start(loop, xcb_check);
427
428     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
429     ev_prepare_start(loop, xcb_prepare);
430
431     xcb_flush(conn);
432
433     manage_existing_windows(root);
434
435     if (!disable_signalhandler)
436         setup_signal_handler();
437
438     /* Ignore SIGPIPE to survive errors when an IPC client disconnects
439      * while we are sending him a message */
440     signal(SIGPIPE, SIG_IGN);
441
442     /* Autostarting exec-lines */
443     if (autostart) {
444         struct Autostart *exec;
445         TAILQ_FOREACH(exec, &autostarts, autostarts) {
446             LOG("auto-starting %s\n", exec->command);
447             start_application(exec->command);
448         }
449     }
450
451     ev_loop(loop, 0);
452 }