]> git.sur5r.net Git - i3/i3/blob - src/main.c
libXcursor support (themed cursors).
[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 int main(int argc, char *argv[]) {
75     //parse_cmd("[ foo ] attach, attach ; focus");
76     int screens;
77     char *override_configpath = NULL;
78     bool autostart = true;
79     bool only_check_config = false;
80     bool force_xinerama = false;
81     xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
82     static struct option long_options[] = {
83         {"no-autostart", no_argument, 0, 'a'},
84         {"config", required_argument, 0, 'c'},
85         {"version", no_argument, 0, 'v'},
86         {"help", no_argument, 0, 'h'},
87         {"force-xinerama", no_argument, 0, 0},
88         {0, 0, 0, 0}
89     };
90     int option_index = 0, opt;
91
92     setlocale(LC_ALL, "");
93
94     /* Disable output buffering to make redirects in .xsession actually useful for debugging */
95     if (!isatty(fileno(stdout)))
96         setbuf(stdout, NULL);
97
98     start_argv = argv;
99
100     while ((opt = getopt_long(argc, argv, "c:Cvahld:V", long_options, &option_index)) != -1) {
101         switch (opt) {
102             case 'a':
103                 LOG("Autostart disabled using -a\n");
104                 autostart = false;
105                 break;
106             case 'c':
107                 override_configpath = sstrdup(optarg);
108                 break;
109             case 'C':
110                 LOG("Checking configuration file only (-C)\n");
111                 only_check_config = true;
112                 break;
113             case 'v':
114                 printf("i3 version " I3_VERSION " © 2009 Michael Stapelberg and contributors\n");
115                 exit(EXIT_SUCCESS);
116             case 'V':
117                 set_verbosity(true);
118                 break;
119             case 'd':
120                 LOG("Enabling debug loglevel %s\n", optarg);
121                 add_loglevel(optarg);
122                 break;
123             case 'l':
124                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
125                 break;
126             case 0:
127                 if (strcmp(long_options[option_index].name, "force-xinerama") == 0) {
128                     force_xinerama = true;
129                     ELOG("Using Xinerama instead of RandR. This option should be "
130                          "avoided at all cost because it does not refresh the list "
131                          "of screens, so you cannot configure displays at runtime. "
132                          "Please check if your driver really does not support RandR "
133                          "and disable this option as soon as you can.\n");
134                     break;
135                 }
136                 /* fall-through */
137             default:
138                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
139                 fprintf(stderr, "\n");
140                 fprintf(stderr, "-a: disable autostart\n");
141                 fprintf(stderr, "-v: display version and exit\n");
142                 fprintf(stderr, "-V: enable verbose mode\n");
143                 fprintf(stderr, "-d <loglevel>: enable debug loglevel <loglevel>\n");
144                 fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
145                 fprintf(stderr, "-C: check configuration file and exit\n");
146                 fprintf(stderr, "--force-xinerama: Use Xinerama instead of RandR. This "
147                                 "option should only be used if you are stuck with the "
148                                 "nvidia closed source driver which does not support RandR.\n");
149                 exit(EXIT_FAILURE);
150         }
151     }
152
153     LOG("i3 (tree) version " I3_VERSION " starting\n");
154
155     conn = xcb_connect(NULL, &screens);
156     if (xcb_connection_has_error(conn))
157         errx(EXIT_FAILURE, "Cannot open display\n");
158
159     load_configuration(conn, override_configpath, false);
160     if (only_check_config) {
161         LOG("Done checking configuration file. Exiting.\n");
162         exit(0);
163     }
164
165     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
166     root = root_screen->root;
167     root_depth = root_screen->root_depth;
168
169     uint32_t mask = XCB_CW_EVENT_MASK;
170     uint32_t values[] = { XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
171                           XCB_EVENT_MASK_STRUCTURE_NOTIFY |         /* when the user adds a screen (e.g. video
172                                                                            projector), the root window gets a
173                                                                            ConfigureNotify */
174                           XCB_EVENT_MASK_POINTER_MOTION |
175                           XCB_EVENT_MASK_PROPERTY_CHANGE |
176                           XCB_EVENT_MASK_ENTER_WINDOW };
177     xcb_void_cookie_t cookie;
178     cookie = xcb_change_window_attributes_checked(conn, root, mask, values);
179     check_error(conn, cookie, "Another window manager seems to be running");
180
181     /* Place requests for the atoms we need as soon as possible */
182     #define REQUEST_ATOM(name) atom_cookies[name] = xcb_intern_atom(conn, 0, strlen(#name), #name);
183
184     REQUEST_ATOM(_NET_SUPPORTED);
185     REQUEST_ATOM(_NET_WM_STATE_FULLSCREEN);
186     REQUEST_ATOM(_NET_SUPPORTING_WM_CHECK);
187     REQUEST_ATOM(_NET_WM_NAME);
188     REQUEST_ATOM(_NET_WM_STATE);
189     REQUEST_ATOM(_NET_WM_WINDOW_TYPE);
190     REQUEST_ATOM(_NET_WM_DESKTOP);
191     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
192     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
193     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
194     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
195     REQUEST_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
196     REQUEST_ATOM(_NET_WM_STRUT_PARTIAL);
197     REQUEST_ATOM(WM_PROTOCOLS);
198     REQUEST_ATOM(WM_DELETE_WINDOW);
199     REQUEST_ATOM(UTF8_STRING);
200     REQUEST_ATOM(WM_STATE);
201     REQUEST_ATOM(WM_CLIENT_LEADER);
202     REQUEST_ATOM(_NET_CURRENT_DESKTOP);
203     REQUEST_ATOM(_NET_ACTIVE_WINDOW);
204     REQUEST_ATOM(_NET_WORKAREA);
205
206     /* Initialize the Xlib connection */
207     xlibdpy = xkbdpy = XOpenDisplay(NULL);
208
209     /* Try to load the X cursors and initialize the XKB extension */
210     if (xlibdpy == NULL) {
211         ELOG("ERROR: XOpenDisplay() failed, disabling libXcursor/XKB support\n");
212         xcursor_supported = false;
213         xkb_supported = false;
214     } else if (fcntl(ConnectionNumber(xlibdpy), F_SETFD, FD_CLOEXEC) == -1) {
215         ELOG("Could not set FD_CLOEXEC on xkbdpy\n");
216         return 1;
217     } else {
218         xcursor_load_cursors();
219         /*init_xkb();*/
220     }
221
222     memset(&evenths, 0, sizeof(xcb_event_handlers_t));
223     memset(&prophs, 0, sizeof(xcb_property_handlers_t));
224
225     xcb_event_handlers_init(conn, &evenths);
226     xcb_property_handlers_init(&prophs, &evenths);
227     xcb_event_set_key_press_handler(&evenths, handle_key_press, NULL);
228
229     xcb_event_set_button_press_handler(&evenths, handle_button_press, NULL);
230
231     xcb_event_set_map_request_handler(&evenths, handle_map_request, NULL);
232
233     xcb_event_set_unmap_notify_handler(&evenths, handle_unmap_notify_event, NULL);
234     xcb_event_set_destroy_notify_handler(&evenths, handle_destroy_notify_event, NULL);
235
236     xcb_event_set_expose_handler(&evenths, handle_expose_event, NULL);
237
238     xcb_event_set_motion_notify_handler(&evenths, handle_motion_notify, NULL);
239
240     /* Enter window = user moved his mouse over the window */
241     xcb_event_set_enter_notify_handler(&evenths, handle_enter_notify, NULL);
242
243     /* Client message are sent to the root window. The only interesting client message
244        for us is _NET_WM_STATE, we honour _NET_WM_STATE_FULLSCREEN */
245     xcb_event_set_client_message_handler(&evenths, handle_client_message, NULL);
246
247     /* Configure request = window tried to change size on its own */
248     xcb_event_set_configure_request_handler(&evenths, handle_configure_request, NULL);
249
250     /* Setup NetWM atoms */
251     #define GET_ATOM(name) \
252         do { \
253             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, atom_cookies[name], NULL); \
254             if (!reply) { \
255                 ELOG("Could not get atom " #name "\n"); \
256                 exit(-1); \
257             } \
258             atoms[name] = reply->atom; \
259             free(reply); \
260         } while (0)
261
262     GET_ATOM(_NET_SUPPORTED);
263     GET_ATOM(_NET_WM_STATE_FULLSCREEN);
264     GET_ATOM(_NET_SUPPORTING_WM_CHECK);
265     GET_ATOM(_NET_WM_NAME);
266     GET_ATOM(_NET_WM_STATE);
267     GET_ATOM(_NET_WM_WINDOW_TYPE);
268     GET_ATOM(_NET_WM_DESKTOP);
269     GET_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
270     GET_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
271     GET_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
272     GET_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
273     GET_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
274     GET_ATOM(_NET_WM_STRUT_PARTIAL);
275     GET_ATOM(WM_PROTOCOLS);
276     GET_ATOM(WM_DELETE_WINDOW);
277     GET_ATOM(UTF8_STRING);
278     GET_ATOM(WM_STATE);
279     GET_ATOM(WM_CLIENT_LEADER);
280     GET_ATOM(_NET_CURRENT_DESKTOP);
281     GET_ATOM(_NET_ACTIVE_WINDOW);
282     GET_ATOM(_NET_WORKAREA);
283
284     /* Watch _NET_WM_NAME (title of the window encoded in UTF-8) */
285     xcb_property_set_handler(&prophs, atoms[_NET_WM_NAME], 128, handle_windowname_change, NULL);
286
287     /* Watch WM_HINTS (contains the urgent property) */
288     xcb_property_set_handler(&prophs, WM_HINTS, UINT_MAX, handle_hints, NULL);
289
290     /* Watch WM_NAME (title of the window encoded in COMPOUND_TEXT) */
291     xcb_watch_wm_name(&prophs, 128, handle_windowname_change_legacy, NULL);
292
293     /* Watch WM_NORMAL_HINTS (aspect ratio, size increments, …) */
294     xcb_property_set_handler(&prophs, WM_NORMAL_HINTS, UINT_MAX, handle_normal_hints, NULL);
295
296     /* Watch WM_CLIENT_LEADER (= logical parent window for toolbars etc.) */
297     xcb_property_set_handler(&prophs, atoms[WM_CLIENT_LEADER], UINT_MAX, handle_clientleader_change, NULL);
298
299     /* Watch WM_TRANSIENT_FOR property (to which client this popup window belongs) */
300     xcb_property_set_handler(&prophs, WM_TRANSIENT_FOR, UINT_MAX, handle_transient_for, NULL);
301
302     /* Set up the atoms we support */
303     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTED], ATOM, 32, 7, atoms);
304     /* Set up the window manager’s name */
305     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_SUPPORTING_WM_CHECK], WINDOW, 32, 1, &root);
306     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, atoms[_NET_WM_NAME], atoms[UTF8_STRING], 8, strlen("i3"), "i3");
307
308     keysyms = xcb_key_symbols_alloc(conn);
309
310     xcb_get_numlock_mask(conn);
311
312     translate_keysyms();
313     grab_all_keys(conn, false);
314
315     int randr_base;
316     if (force_xinerama) {
317         xinerama_init();
318     } else {
319         DLOG("Checking for XRandR...\n");
320         randr_init(&randr_base);
321
322 #if 0
323         xcb_event_set_handler(&evenths,
324                               randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY,
325                               handle_screen_change,
326                               NULL);
327 #endif
328     }
329
330     if (!tree_restore())
331         tree_init();
332     tree_render();
333
334     struct ev_loop *loop = ev_loop_new(0);
335     if (loop == NULL)
336             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
337
338     /* Create the UNIX domain socket for IPC */
339     if (config.ipc_socket_path != NULL) {
340         int ipc_socket = ipc_create_socket(config.ipc_socket_path);
341         if (ipc_socket == -1) {
342             ELOG("Could not create the IPC socket, IPC disabled\n");
343         } else {
344             struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
345             ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
346             ev_io_start(loop, ipc_io);
347         }
348     }
349
350     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
351     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
352     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
353
354     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
355     ev_io_start(loop, xcb_watcher);
356
357     ev_check_init(xcb_check, xcb_check_cb);
358     ev_check_start(loop, xcb_check);
359
360     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
361     ev_prepare_start(loop, xcb_prepare);
362
363     xcb_flush(conn);
364
365     manage_existing_windows(root);
366
367     /* Autostarting exec-lines */
368     if (autostart) {
369         struct Autostart *exec;
370         TAILQ_FOREACH(exec, &autostarts, autostarts) {
371             LOG("auto-starting %s\n", exec->command);
372             start_application(exec->command);
373         }
374     }
375
376     ev_loop(loop, 0);
377 }