]> git.sur5r.net Git - i3/i3/blob - src/nc.c
re-add support for legacy window titles (WM_NAME)
[i3/i3] / src / nc.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  */
4 #include <ev.h>
5 #include "all.h"
6
7 static int xkb_event_base;
8
9 int xkb_current_group;
10
11 extern Con *focused;
12
13 char **start_argv;
14
15 xcb_connection_t *conn;
16 xcb_event_handlers_t evenths;
17 xcb_property_handlers_t prophs;
18 xcb_atom_t atoms[NUM_ATOMS];
19
20 xcb_window_t root;
21 uint8_t root_depth;
22
23 xcb_key_symbols_t *keysyms;
24
25 /* The list of key bindings */
26 struct bindings_head *bindings;
27
28 /* The list of exec-lines */
29 struct autostarts_head autostarts = TAILQ_HEAD_INITIALIZER(autostarts);
30
31 /* The list of assignments */
32 struct assignments_head assignments = TAILQ_HEAD_INITIALIZER(assignments);
33
34 /*
35  * This callback is only a dummy, see xcb_prepare_cb and xcb_check_cb.
36  * See also man libev(3): "ev_prepare" and "ev_check" - customise your event loop
37  *
38  */
39 static void xcb_got_event(EV_P_ struct ev_io *w, int revents) {
40     /* empty, because xcb_prepare_cb and xcb_check_cb are used */
41 }
42
43 /*
44  * Flush before blocking (and waiting for new events)
45  *
46  */
47 static void xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
48     xcb_flush(conn);
49 }
50
51 /*
52  * Instead of polling the X connection socket we leave this to
53  * xcb_poll_for_event() which knows better than we can ever know.
54  *
55  */
56 static void xcb_check_cb(EV_P_ ev_check *w, int revents) {
57     xcb_generic_event_t *event;
58
59     while ((event = xcb_poll_for_event(conn)) != NULL) {
60             xcb_event_handle(&evenths, event);
61             free(event);
62     }
63 }
64
65 int handle_map_request(void *unused, xcb_connection_t *conn, xcb_map_request_event_t *event) {
66     xcb_get_window_attributes_cookie_t cookie;
67
68     cookie = xcb_get_window_attributes_unchecked(conn, event->window);
69
70     LOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
71     //add_ignore_event(event->sequence);
72
73     manage_window(event->window, cookie, false);
74     return 1;
75 }
76
77
78 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
79     LOG("unmap event for 0x%08x\n", event->window);
80     Con *con = con_by_window_id(event->window);
81     if (con == NULL) {
82         LOG("Not a managed window, ignoring\n");
83         return 1;
84     }
85
86     tree_close(con);
87     tree_render();
88     return 1;
89 }
90
91 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
92     Con *parent, *con;
93
94     /* event->count is the number of minimum remaining expose events for this window, so we
95        skip all events but the last one */
96     if (event->count != 0)
97             return 1;
98     LOG("expose-event, window = %08x\n", event->window);
99
100     if ((parent = con_by_frame_id(event->window)) == NULL) {
101         LOG("expose event for unknown window, ignoring\n");
102         return 1;
103     }
104
105     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
106         LOG("expose for con %p / %s\n", con, con->name);
107         if (con->window)
108             x_draw_decoration(con);
109     }
110     xcb_flush(conn);
111
112     return 1;
113 }
114
115
116
117 void parse_command(const char *command) {
118     printf("received command: %s\n", command);
119
120     if (strcasecmp(command, "open") == 0)
121         tree_open_con(NULL);
122     else if (strcasecmp(command, "close") == 0)
123         tree_close_con();
124     else if (strcasecmp(command, "split h") == 0)
125         tree_split(focused, HORIZ);
126     else if (strcasecmp(command, "split v") == 0)
127         tree_split(focused, VERT);
128     else if (strcasecmp(command, "level up") == 0)
129         level_up();
130     else if (strcasecmp(command, "level down") == 0)
131         level_down();
132     else if (strcasecmp(command, "prev h") == 0)
133         tree_next('p', HORIZ);
134     else if (strcasecmp(command, "prev v") == 0)
135         tree_next('p', VERT);
136     else if (strcasecmp(command, "next h") == 0)
137         tree_next('n', HORIZ);
138     else if (strcasecmp(command, "next v") == 0)
139         tree_next('n', VERT);
140     else if (strncasecmp(command, "workspace ", strlen("workspace ")) == 0)
141         workspace_show(command + strlen("workspace "));
142
143     else if (strcasecmp(command, "move before h") == 0)
144         tree_move('p', HORIZ);
145     else if (strcasecmp(command, "move before v") == 0)
146         tree_move('p', VERT);
147     else if (strcasecmp(command, "move after h") == 0)
148         tree_move('n', HORIZ);
149     else if (strcasecmp(command, "move after v") == 0)
150         tree_move('n', VERT);
151     else if (strncasecmp(command, "restore", strlen("restore")) == 0)
152         tree_append_json(command + strlen("restore "));
153     else if (strncasecmp(command, "exec", strlen("exec")) == 0)
154         start_application(command + strlen("exec "));
155     else if (strcasecmp(command, "restart") == 0)
156         i3_restart();
157     else if (strcasecmp(command, "floating") == 0)
158         toggle_floating_mode(focused, false);
159
160     tree_render();
161
162 #if 0
163     if (strcasecmp(command, "prev") == 0)
164         tree_prev(O_CURRENT);
165 #endif
166 }
167
168 int main(int argc, char *argv[]) {
169     int screens;
170     char *override_configpath = NULL;
171     bool autostart = true;
172     bool only_check_config = false;
173     bool force_xinerama = false;
174     xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
175     static struct option long_options[] = {
176         {"no-autostart", no_argument, 0, 'a'},
177         {"config", required_argument, 0, 'c'},
178         {"version", no_argument, 0, 'v'},
179         {"help", no_argument, 0, 'h'},
180         {"force-xinerama", no_argument, 0, 0},
181         {0, 0, 0, 0}
182     };
183     int option_index = 0, opt;
184
185     setlocale(LC_ALL, "");
186
187     /* Disable output buffering to make redirects in .xsession actually useful for debugging */
188     if (!isatty(fileno(stdout)))
189         setbuf(stdout, NULL);
190
191     start_argv = argv;
192
193     while ((opt = getopt_long(argc, argv, "c:Cvahld:V", long_options, &option_index)) != -1) {
194         switch (opt) {
195             case 'a':
196                 LOG("Autostart disabled using -a\n");
197                 autostart = false;
198                 break;
199             case 'c':
200                 override_configpath = sstrdup(optarg);
201                 break;
202             case 'C':
203                 LOG("Checking configuration file only (-C)\n");
204                 only_check_config = true;
205                 break;
206             case 'v':
207                 printf("i3 version " I3_VERSION " © 2009 Michael Stapelberg and contributors\n");
208                 exit(EXIT_SUCCESS);
209             case 'V':
210                 set_verbosity(true);
211                 break;
212             case 'd':
213                 LOG("Enabling debug loglevel %s\n", optarg);
214                 add_loglevel(optarg);
215                 break;
216             case 'l':
217                 /* DEPRECATED, ignored for the next 3 versions (3.e, 3.f, 3.g) */
218                 break;
219             case 0:
220                 if (strcmp(long_options[option_index].name, "force-xinerama") == 0) {
221                     force_xinerama = true;
222                     ELOG("Using Xinerama instead of RandR. This option should be "
223                          "avoided at all cost because it does not refresh the list "
224                          "of screens, so you cannot configure displays at runtime. "
225                          "Please check if your driver really does not support RandR "
226                          "and disable this option as soon as you can.\n");
227                     break;
228                 }
229                 /* fall-through */
230             default:
231                 fprintf(stderr, "Usage: %s [-c configfile] [-d loglevel] [-a] [-v] [-V] [-C]\n", argv[0]);
232                 fprintf(stderr, "\n");
233                 fprintf(stderr, "-a: disable autostart\n");
234                 fprintf(stderr, "-v: display version and exit\n");
235                 fprintf(stderr, "-V: enable verbose mode\n");
236                 fprintf(stderr, "-d <loglevel>: enable debug loglevel <loglevel>\n");
237                 fprintf(stderr, "-c <configfile>: use the provided configfile instead\n");
238                 fprintf(stderr, "-C: check configuration file and exit\n");
239                 fprintf(stderr, "--force-xinerama: Use Xinerama instead of RandR. This "
240                                 "option should only be used if you are stuck with the "
241                                 "nvidia closed source driver which does not support RandR.\n");
242                 exit(EXIT_FAILURE);
243         }
244     }
245
246     LOG("i3 (tree) version " I3_VERSION " starting\n");
247
248     conn = xcb_connect(NULL, &screens);
249     if (xcb_connection_has_error(conn))
250         errx(EXIT_FAILURE, "Cannot open display\n");
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     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
259     root = root_screen->root;
260     root_depth = root_screen->root_depth;
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     memset(&evenths, 0, sizeof(xcb_event_handlers_t));
300     memset(&prophs, 0, sizeof(xcb_property_handlers_t));
301
302     xcb_event_handlers_init(conn, &evenths);
303     xcb_property_handlers_init(&prophs, &evenths);
304     xcb_event_set_key_press_handler(&evenths, handle_key_press, NULL);
305
306     xcb_event_set_button_press_handler(&evenths, handle_button_press, NULL);
307
308     xcb_event_set_map_request_handler(&evenths, handle_map_request, NULL);
309
310     xcb_event_set_unmap_notify_handler(&evenths, handle_unmap_notify_event, NULL);
311     //xcb_event_set_destroy_notify_handler(&evenths, handle_destroy_notify_event, NULL);
312
313     xcb_event_set_expose_handler(&evenths, handle_expose_event, NULL);
314
315
316     /* Setup NetWM atoms */
317     #define GET_ATOM(name) \
318         do { \
319             xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, atom_cookies[name], NULL); \
320             if (!reply) { \
321                 ELOG("Could not get atom " #name "\n"); \
322                 exit(-1); \
323             } \
324             atoms[name] = reply->atom; \
325             free(reply); \
326         } while (0)
327
328     GET_ATOM(_NET_SUPPORTED);
329     GET_ATOM(_NET_WM_STATE_FULLSCREEN);
330     GET_ATOM(_NET_SUPPORTING_WM_CHECK);
331     GET_ATOM(_NET_WM_NAME);
332     GET_ATOM(_NET_WM_STATE);
333     GET_ATOM(_NET_WM_WINDOW_TYPE);
334     GET_ATOM(_NET_WM_DESKTOP);
335     GET_ATOM(_NET_WM_WINDOW_TYPE_DOCK);
336     GET_ATOM(_NET_WM_WINDOW_TYPE_DIALOG);
337     GET_ATOM(_NET_WM_WINDOW_TYPE_UTILITY);
338     GET_ATOM(_NET_WM_WINDOW_TYPE_TOOLBAR);
339     GET_ATOM(_NET_WM_WINDOW_TYPE_SPLASH);
340     GET_ATOM(_NET_WM_STRUT_PARTIAL);
341     GET_ATOM(WM_PROTOCOLS);
342     GET_ATOM(WM_DELETE_WINDOW);
343     GET_ATOM(UTF8_STRING);
344     GET_ATOM(WM_STATE);
345     GET_ATOM(WM_CLIENT_LEADER);
346     GET_ATOM(_NET_CURRENT_DESKTOP);
347     GET_ATOM(_NET_ACTIVE_WINDOW);
348     GET_ATOM(_NET_WORKAREA);
349
350     /* Watch _NET_WM_NAME (title of the window encoded in UTF-8) */
351     xcb_property_set_handler(&prophs, atoms[_NET_WM_NAME], 128, handle_windowname_change, NULL);
352
353     /* Watch WM_NAME (title of the window encoded in COMPOUND_TEXT) */
354     xcb_watch_wm_name(&prophs, 128, handle_windowname_change_legacy, NULL);
355
356
357     keysyms = xcb_key_symbols_alloc(conn);
358
359     xcb_get_numlock_mask(conn);
360
361     translate_keysyms();
362     grab_all_keys(conn, false);
363
364     int randr_base;
365     if (force_xinerama) {
366         xinerama_init();
367     } else {
368         DLOG("Checking for XRandR...\n");
369         randr_init(&randr_base);
370
371 #if 0
372         xcb_event_set_handler(&evenths,
373                               randr_base + XCB_RANDR_SCREEN_CHANGE_NOTIFY,
374                               handle_screen_change,
375                               NULL);
376 #endif
377     }
378
379     if (!tree_restore())
380         tree_init();
381     tree_render();
382
383     /* proof-of-concept for assignments */
384     Con *ws = workspace_get("3");
385
386     Match *current_swallow = scalloc(sizeof(Match));
387     TAILQ_INSERT_TAIL(&(ws->swallow_head), current_swallow, matches);
388
389     current_swallow->insert_where = M_ACTIVE;
390     current_swallow->class = strdup("xterm");
391
392     struct ev_loop *loop = ev_loop_new(0);
393     if (loop == NULL)
394             die("Could not initialize libev. Bad LIBEV_FLAGS?\n");
395
396     /* Create the UNIX domain socket for IPC */
397     if (config.ipc_socket_path != NULL) {
398         int ipc_socket = ipc_create_socket(config.ipc_socket_path);
399         if (ipc_socket == -1) {
400             ELOG("Could not create the IPC socket, IPC disabled\n");
401         } else {
402             struct ev_io *ipc_io = scalloc(sizeof(struct ev_io));
403             ev_io_init(ipc_io, ipc_new_client, ipc_socket, EV_READ);
404             ev_io_start(loop, ipc_io);
405         }
406     }
407
408     struct ev_io *xcb_watcher = scalloc(sizeof(struct ev_io));
409     struct ev_check *xcb_check = scalloc(sizeof(struct ev_check));
410     struct ev_prepare *xcb_prepare = scalloc(sizeof(struct ev_prepare));
411
412     ev_io_init(xcb_watcher, xcb_got_event, xcb_get_file_descriptor(conn), EV_READ);
413     ev_io_start(loop, xcb_watcher);
414
415     ev_check_init(xcb_check, xcb_check_cb);
416     ev_check_start(loop, xcb_check);
417
418     ev_prepare_init(xcb_prepare, xcb_prepare_cb);
419     ev_prepare_start(loop, xcb_prepare);
420
421     xcb_flush(conn);
422
423     manage_existing_windows(root);
424
425     ev_loop(loop, 0);
426 }