2011-10-02 17:11:30 +02:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
|
2011-10-02 17:11:30 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
|
|
2011-10-23 18:38:21 +02:00
|
|
|
|
#include "libi3.h"
|
|
|
|
|
|
2011-10-02 17:11:30 +02:00
|
|
|
|
/*
|
2012-01-07 00:40:07 +01:00
|
|
|
|
* Try to get the contents of the given atom (for example I3_SOCKET_PATH) from
|
|
|
|
|
* the X11 root window and return NULL if it doesn’t work.
|
2011-10-02 17:11:30 +02:00
|
|
|
|
*
|
2012-01-07 00:40:07 +01:00
|
|
|
|
* The memory for the contents is dynamically allocated and has to be
|
2011-10-02 17:11:30 +02:00
|
|
|
|
* free()d by the caller.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-01-07 00:40:07 +01:00
|
|
|
|
char *root_atom_contents(const char *atomname) {
|
2011-10-02 17:11:30 +02:00
|
|
|
|
xcb_connection_t *conn;
|
|
|
|
|
xcb_intern_atom_cookie_t atom_cookie;
|
|
|
|
|
xcb_intern_atom_reply_t *atom_reply;
|
|
|
|
|
int screen;
|
|
|
|
|
char *socket_path;
|
|
|
|
|
|
|
|
|
|
if ((conn = xcb_connect(NULL, &screen)) == NULL ||
|
|
|
|
|
xcb_connection_has_error(conn))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2012-01-07 00:40:07 +01:00
|
|
|
|
atom_cookie = xcb_intern_atom(conn, 0, strlen(atomname), atomname);
|
2011-10-02 17:11:30 +02:00
|
|
|
|
|
|
|
|
|
xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screen);
|
|
|
|
|
xcb_window_t root = root_screen->root;
|
|
|
|
|
|
|
|
|
|
atom_reply = xcb_intern_atom_reply(conn, atom_cookie, NULL);
|
|
|
|
|
if (atom_reply == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
xcb_get_property_cookie_t prop_cookie;
|
|
|
|
|
xcb_get_property_reply_t *prop_reply;
|
|
|
|
|
prop_cookie = xcb_get_property_unchecked(conn, false, root, atom_reply->atom,
|
|
|
|
|
XCB_GET_PROPERTY_TYPE_ANY, 0, PATH_MAX);
|
|
|
|
|
prop_reply = xcb_get_property_reply(conn, prop_cookie, NULL);
|
|
|
|
|
if (prop_reply == NULL || xcb_get_property_value_length(prop_reply) == 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
if (asprintf(&socket_path, "%.*s", xcb_get_property_value_length(prop_reply),
|
|
|
|
|
(char*)xcb_get_property_value(prop_reply)) == -1)
|
|
|
|
|
return NULL;
|
|
|
|
|
xcb_disconnect(conn);
|
|
|
|
|
return socket_path;
|
|
|
|
|
}
|
|
|
|
|
|