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