]> git.sur5r.net Git - i3/i3/blob - libi3/root_atom_contents.c
make i3bar use libi3’s root_atom_contents()
[i3/i3] / libi3 / root_atom_contents.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 contents of the given atom (for example I3_SOCKET_PATH) from
20  * the X11 root window and return NULL if it doesn’t work.
21  *
22  * If the provided XCB connection is NULL, a new connection will be
23  * established.
24  *
25  * The memory for the contents is dynamically allocated and has to be
26  * free()d by the caller.
27  *
28  */
29 char *root_atom_contents(const char *atomname, xcb_connection_t *provided_conn, int screen) {
30     xcb_intern_atom_cookie_t atom_cookie;
31     xcb_intern_atom_reply_t *atom_reply;
32     char *content;
33     xcb_connection_t *conn = provided_conn;
34
35     if (provided_conn == NULL &&
36         ((conn = xcb_connect(NULL, &screen)) == NULL ||
37          xcb_connection_has_error(conn)))
38         return NULL;
39
40     atom_cookie = xcb_intern_atom(conn, 0, strlen(atomname), atomname);
41
42     xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screen);
43     xcb_window_t root = root_screen->root;
44
45     atom_reply = xcb_intern_atom_reply(conn, atom_cookie, NULL);
46     if (atom_reply == NULL)
47         return NULL;
48
49     xcb_get_property_cookie_t prop_cookie;
50     xcb_get_property_reply_t *prop_reply;
51     prop_cookie = xcb_get_property_unchecked(conn, false, root, atom_reply->atom,
52                                              XCB_GET_PROPERTY_TYPE_ANY, 0, PATH_MAX);
53     prop_reply = xcb_get_property_reply(conn, prop_cookie, NULL);
54     if (prop_reply == NULL || xcb_get_property_value_length(prop_reply) == 0)
55         return NULL;
56     if (prop_reply->type == XCB_ATOM_CARDINAL) {
57         /* We treat a CARDINAL as a >= 32-bit unsigned int. The only CARDINAL
58          * we query is I3_PID, which is 32-bit. */
59         if (asprintf(&content, "%u", *((unsigned int*)xcb_get_property_value(prop_reply))) == -1)
60             return NULL;
61     } else {
62         if (asprintf(&content, "%.*s", xcb_get_property_value_length(prop_reply),
63                      (char*)xcb_get_property_value(prop_reply)) == -1)
64             return NULL;
65     }
66     if (provided_conn == NULL)
67         xcb_disconnect(conn);
68     return content;
69 }
70