]> git.sur5r.net Git - i3/i3/blob - libi3/get_socket_path.c
Merge branch 'fix-split'
[i3/i3] / libi3 / get_socket_path.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include <stdio.h>
9 #include <string.h>
10 #include <stdbool.h>
11 #include <limits.h>
12
13 #include <xcb/xcb.h>
14 #include <xcb/xcb_aux.h>
15
16 #include "libi3.h"
17
18 /*
19  * Try to get the socket path from X11 and return NULL if it doesn’t work.
20  *
21  * The memory for the socket path is dynamically allocated and has to be
22  * free()d by the caller.
23  *
24  */
25 char *socket_path_from_x11() {
26     xcb_connection_t *conn;
27     xcb_intern_atom_cookie_t atom_cookie;
28     xcb_intern_atom_reply_t *atom_reply;
29     int screen;
30     char *socket_path;
31
32     if ((conn = xcb_connect(NULL, &screen)) == NULL ||
33         xcb_connection_has_error(conn))
34         return NULL;
35
36     atom_cookie = xcb_intern_atom(conn, 0, strlen("I3_SOCKET_PATH"), "I3_SOCKET_PATH");
37
38     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screen);
39     xcb_window_t root = root_screen->root;
40
41     atom_reply = xcb_intern_atom_reply(conn, atom_cookie, NULL);
42     if (atom_reply == NULL)
43         return NULL;
44
45     xcb_get_property_cookie_t prop_cookie;
46     xcb_get_property_reply_t *prop_reply;
47     prop_cookie = xcb_get_property_unchecked(conn, false, root, atom_reply->atom,
48                                              XCB_GET_PROPERTY_TYPE_ANY, 0, PATH_MAX);
49     prop_reply = xcb_get_property_reply(conn, prop_cookie, NULL);
50     if (prop_reply == NULL || xcb_get_property_value_length(prop_reply) == 0)
51         return NULL;
52     if (asprintf(&socket_path, "%.*s", xcb_get_property_value_length(prop_reply),
53                  (char*)xcb_get_property_value(prop_reply)) == -1)
54         return NULL;
55     xcb_disconnect(conn);
56     return socket_path;
57 }
58