2013-12-14 22:49:33 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2013-12-14 22:49:33 +01:00
|
|
|
|
*
|
|
|
|
|
* restore_layout.c: Everything for restored containers that is not pure state
|
|
|
|
|
* parsing (which can be found in load_layout.c).
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#include "all.h"
|
|
|
|
|
|
2016-01-09 17:18:05 +01:00
|
|
|
|
#ifdef I3_ASAN_ENABLED
|
|
|
|
|
#include <sanitizer/lsan_interface.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-01-21 16:53:09 +01:00
|
|
|
|
#define TEXT_PADDING logical_px(2)
|
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
typedef struct placeholder_state {
|
|
|
|
|
/** The X11 placeholder window. */
|
|
|
|
|
xcb_window_t window;
|
|
|
|
|
/** The container to which this placeholder window belongs. */
|
|
|
|
|
Con *con;
|
|
|
|
|
|
|
|
|
|
/** Current size of the placeholder window (to detect size changes). */
|
|
|
|
|
Rect rect;
|
|
|
|
|
|
2017-01-21 16:53:09 +01:00
|
|
|
|
/** The drawable surface */
|
|
|
|
|
surface_t surface;
|
2013-12-14 22:49:33 +01:00
|
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
|
TAILQ_ENTRY(placeholder_state)
|
|
|
|
|
state;
|
2013-12-14 22:49:33 +01:00
|
|
|
|
} placeholder_state;
|
|
|
|
|
|
|
|
|
|
static TAILQ_HEAD(state_head, placeholder_state) state_head =
|
|
|
|
|
TAILQ_HEAD_INITIALIZER(state_head);
|
|
|
|
|
|
|
|
|
|
static xcb_connection_t *restore_conn;
|
|
|
|
|
|
2013-12-15 15:17:37 +01:00
|
|
|
|
static struct ev_io *xcb_watcher;
|
|
|
|
|
static struct ev_check *xcb_check;
|
|
|
|
|
static struct ev_prepare *xcb_prepare;
|
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
static void restore_handle_event(int type, xcb_generic_event_t *event);
|
|
|
|
|
|
|
|
|
|
/* Documentation for these functions can be found in src/main.c, starting at xcb_got_event */
|
|
|
|
|
static void restore_xcb_got_event(EV_P_ struct ev_io *w, int revents) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void restore_xcb_prepare_cb(EV_P_ ev_prepare *w, int revents) {
|
|
|
|
|
xcb_flush(restore_conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void restore_xcb_check_cb(EV_P_ ev_check *w, int revents) {
|
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
|
|
|
|
|
|
if (xcb_connection_has_error(restore_conn)) {
|
2013-12-15 15:17:37 +01:00
|
|
|
|
DLOG("restore X11 connection has an error, reconnecting\n");
|
|
|
|
|
restore_connect();
|
2013-12-14 22:49:33 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while ((event = xcb_poll_for_event(restore_conn)) != NULL) {
|
|
|
|
|
if (event->response_type == 0) {
|
2014-06-15 19:07:02 +02:00
|
|
|
|
xcb_generic_error_t *error = (xcb_generic_error_t *)event;
|
2013-12-14 22:49:33 +01:00
|
|
|
|
DLOG("X11 Error received (probably harmless)! sequence 0x%x, error_code = %d\n",
|
|
|
|
|
error->sequence, error->error_code);
|
|
|
|
|
free(event);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Strip off the highest bit (set if the event is generated) */
|
|
|
|
|
int type = (event->response_type & 0x7F);
|
|
|
|
|
|
|
|
|
|
restore_handle_event(type, event);
|
|
|
|
|
|
|
|
|
|
free(event);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Opens a separate connection to X11 for placeholder windows when restoring
|
|
|
|
|
* layouts. This is done as a safety measure (users can xkill a placeholder
|
|
|
|
|
* window without killing their window manager) and for better isolation, both
|
|
|
|
|
* on the wire to X11 and thus also in the code.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void restore_connect(void) {
|
2013-12-15 15:17:37 +01:00
|
|
|
|
if (restore_conn != NULL) {
|
|
|
|
|
/* This is not the initial connect, but a reconnect, most likely
|
|
|
|
|
* because our X11 connection was killed (e.g. by a user with xkill. */
|
|
|
|
|
ev_io_stop(main_loop, xcb_watcher);
|
|
|
|
|
ev_check_stop(main_loop, xcb_check);
|
|
|
|
|
ev_prepare_stop(main_loop, xcb_prepare);
|
|
|
|
|
|
|
|
|
|
placeholder_state *state;
|
|
|
|
|
while (!TAILQ_EMPTY(&state_head)) {
|
|
|
|
|
state = TAILQ_FIRST(&state_head);
|
|
|
|
|
TAILQ_REMOVE(&state_head, state, state);
|
|
|
|
|
free(state);
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-09 17:05:40 +01:00
|
|
|
|
/* xcb_disconnect leaks memory in libxcb versions earlier than 1.11,
|
|
|
|
|
* but it’s the right function to call. See
|
2017-09-24 10:19:07 +02:00
|
|
|
|
* https://cgit.freedesktop.org/xcb/libxcb/commit/src/xcb_conn.c?id=4dcbfd77b
|
2016-01-09 17:05:40 +01:00
|
|
|
|
*/
|
|
|
|
|
xcb_disconnect(restore_conn);
|
2013-12-15 15:17:37 +01:00
|
|
|
|
free(xcb_watcher);
|
|
|
|
|
free(xcb_check);
|
|
|
|
|
free(xcb_prepare);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
int screen;
|
|
|
|
|
restore_conn = xcb_connect(NULL, &screen);
|
2016-01-09 17:05:40 +01:00
|
|
|
|
if (restore_conn == NULL || xcb_connection_has_error(restore_conn)) {
|
|
|
|
|
if (restore_conn != NULL) {
|
|
|
|
|
xcb_disconnect(restore_conn);
|
|
|
|
|
}
|
2016-01-09 17:18:05 +01:00
|
|
|
|
#ifdef I3_ASAN_ENABLED
|
|
|
|
|
__lsan_do_leak_check();
|
|
|
|
|
#endif
|
2013-12-14 22:49:33 +01:00
|
|
|
|
errx(EXIT_FAILURE, "Cannot open display\n");
|
2016-01-09 17:05:40 +01:00
|
|
|
|
}
|
2013-12-14 22:49:33 +01:00
|
|
|
|
|
2015-08-03 11:50:13 +02:00
|
|
|
|
xcb_watcher = scalloc(1, sizeof(struct ev_io));
|
|
|
|
|
xcb_check = scalloc(1, sizeof(struct ev_check));
|
|
|
|
|
xcb_prepare = scalloc(1, sizeof(struct ev_prepare));
|
2013-12-14 22:49:33 +01:00
|
|
|
|
|
|
|
|
|
ev_io_init(xcb_watcher, restore_xcb_got_event, xcb_get_file_descriptor(restore_conn), EV_READ);
|
|
|
|
|
ev_io_start(main_loop, xcb_watcher);
|
|
|
|
|
|
|
|
|
|
ev_check_init(xcb_check, restore_xcb_check_cb);
|
|
|
|
|
ev_check_start(main_loop, xcb_check);
|
|
|
|
|
|
|
|
|
|
ev_prepare_init(xcb_prepare, restore_xcb_prepare_cb);
|
|
|
|
|
ev_prepare_start(main_loop, xcb_prepare);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void update_placeholder_contents(placeholder_state *state) {
|
2017-01-21 16:53:09 +01:00
|
|
|
|
const color_t foreground = config.client.placeholder.text;
|
|
|
|
|
const color_t background = config.client.placeholder.background;
|
|
|
|
|
|
|
|
|
|
draw_util_clear_surface(&(state->surface), background);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
|
|
|
|
|
// TODO: make i3font functions per-connection, at least these two for now…?
|
|
|
|
|
xcb_flush(restore_conn);
|
|
|
|
|
xcb_aux_sync(restore_conn);
|
|
|
|
|
|
2013-12-15 11:25:58 +01:00
|
|
|
|
Match *swallows;
|
|
|
|
|
int n = 0;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(swallows, &(state->con->swallow_head), matches) {
|
2013-12-15 11:25:58 +01:00
|
|
|
|
char *serialized = NULL;
|
|
|
|
|
|
2014-06-15 19:07:02 +02:00
|
|
|
|
#define APPEND_REGEX(re_name) \
|
|
|
|
|
do { \
|
|
|
|
|
if (swallows->re_name != NULL) { \
|
|
|
|
|
sasprintf(&serialized, "%s%s" #re_name "=\"%s\"", (serialized ? serialized : "["), (serialized ? " " : ""), swallows->re_name->pattern); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
2013-12-15 11:25:58 +01:00
|
|
|
|
|
|
|
|
|
APPEND_REGEX(class);
|
|
|
|
|
APPEND_REGEX(instance);
|
|
|
|
|
APPEND_REGEX(window_role);
|
|
|
|
|
APPEND_REGEX(title);
|
|
|
|
|
|
|
|
|
|
if (serialized == NULL) {
|
|
|
|
|
DLOG("This swallows specification is not serializable?!\n");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sasprintf(&serialized, "%s]", serialized);
|
|
|
|
|
DLOG("con %p (placeholder 0x%08x) line %d: %s\n", state->con, state->window, n, serialized);
|
|
|
|
|
|
|
|
|
|
i3String *str = i3string_from_utf8(serialized);
|
2017-01-21 16:53:09 +01:00
|
|
|
|
draw_util_text(str, &(state->surface), foreground, background,
|
|
|
|
|
TEXT_PADDING,
|
|
|
|
|
(n * (config.font.height + TEXT_PADDING)) + TEXT_PADDING,
|
|
|
|
|
state->rect.width - 2 * TEXT_PADDING);
|
2013-12-15 11:25:58 +01:00
|
|
|
|
i3string_free(str);
|
|
|
|
|
n++;
|
|
|
|
|
free(serialized);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: render the watch symbol in a bigger font
|
2013-12-14 22:49:33 +01:00
|
|
|
|
i3String *line = i3string_from_utf8("⌚");
|
|
|
|
|
int text_width = predict_text_width(line);
|
|
|
|
|
int x = (state->rect.width / 2) - (text_width / 2);
|
|
|
|
|
int y = (state->rect.height / 2) - (config.font.height / 2);
|
2017-01-21 16:53:09 +01:00
|
|
|
|
draw_util_text(line, &(state->surface), foreground, background, x, y, text_width);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
i3string_free(line);
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
xcb_aux_sync(conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void open_placeholder_window(Con *con) {
|
2014-04-18 20:36:56 +02:00
|
|
|
|
if (con_is_leaf(con) &&
|
2015-03-25 20:48:51 +01:00
|
|
|
|
(con->window == NULL || con->window->id == XCB_NONE) &&
|
|
|
|
|
!TAILQ_EMPTY(&(con->swallow_head)) &&
|
|
|
|
|
con->type == CT_CON) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
xcb_window_t placeholder = create_window(
|
2014-06-15 19:07:02 +02:00
|
|
|
|
restore_conn,
|
|
|
|
|
con->rect,
|
|
|
|
|
XCB_COPY_FROM_PARENT,
|
|
|
|
|
XCB_COPY_FROM_PARENT,
|
|
|
|
|
XCB_WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
|
XCURSOR_CURSOR_POINTER,
|
|
|
|
|
true,
|
|
|
|
|
XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK,
|
2015-03-01 17:16:03 +01:00
|
|
|
|
(uint32_t[]){
|
2015-11-16 23:03:39 +01:00
|
|
|
|
config.client.placeholder.background.colorpixel,
|
2014-06-15 19:07:02 +02:00
|
|
|
|
XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_STRUCTURE_NOTIFY,
|
|
|
|
|
});
|
2015-03-25 22:47:23 +01:00
|
|
|
|
/* Make i3 not focus this window. */
|
|
|
|
|
xcb_icccm_wm_hints_t hints;
|
|
|
|
|
xcb_icccm_wm_hints_set_none(&hints);
|
|
|
|
|
xcb_icccm_wm_hints_set_input(&hints, 0);
|
|
|
|
|
xcb_icccm_set_wm_hints(restore_conn, placeholder, &hints);
|
2013-12-15 11:32:36 +01:00
|
|
|
|
/* Set the same name as was stored in the layout file. While perhaps
|
|
|
|
|
* slightly confusing in the first instant, this brings additional
|
|
|
|
|
* clarity to which placeholder is waiting for which actual window. */
|
2014-07-15 10:35:52 +02:00
|
|
|
|
if (con->name != NULL)
|
|
|
|
|
xcb_change_property(restore_conn, XCB_PROP_MODE_REPLACE, placeholder,
|
|
|
|
|
A__NET_WM_NAME, A_UTF8_STRING, 8, strlen(con->name), con->name);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
DLOG("Created placeholder window 0x%08x for leaf container %p / %s\n",
|
|
|
|
|
placeholder, con, con->name);
|
|
|
|
|
|
2015-08-03 11:50:13 +02:00
|
|
|
|
placeholder_state *state = scalloc(1, sizeof(placeholder_state));
|
2013-12-14 22:49:33 +01:00
|
|
|
|
state->window = placeholder;
|
|
|
|
|
state->con = con;
|
|
|
|
|
state->rect = con->rect;
|
2017-01-21 16:53:09 +01:00
|
|
|
|
|
|
|
|
|
draw_util_surface_init(conn, &(state->surface), placeholder, get_visualtype(root_screen), state->rect.width, state->rect.height);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
update_placeholder_contents(state);
|
|
|
|
|
TAILQ_INSERT_TAIL(&state_head, state, state);
|
|
|
|
|
|
|
|
|
|
/* create temporary id swallow to match the placeholder */
|
|
|
|
|
Match *temp_id = smalloc(sizeof(Match));
|
|
|
|
|
match_init(temp_id);
|
2016-09-26 18:45:58 +02:00
|
|
|
|
temp_id->dock = M_DONTCHECK;
|
2013-12-14 22:49:33 +01:00
|
|
|
|
temp_id->id = placeholder;
|
2015-03-07 15:38:10 +01:00
|
|
|
|
TAILQ_INSERT_HEAD(&(con->swallow_head), temp_id, matches);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Con *child;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
open_placeholder_window(child);
|
|
|
|
|
}
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(child, &(con->floating_head), floating_windows) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
open_placeholder_window(child);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Open placeholder windows for all children of parent. The placeholder window
|
|
|
|
|
* will vanish as soon as a real window is swallowed by the container. Until
|
|
|
|
|
* then, it exposes the criteria that must be fulfilled for a window to be
|
|
|
|
|
* swallowed by this container.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void restore_open_placeholder_windows(Con *parent) {
|
|
|
|
|
Con *child;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(child, &(parent->nodes_head), nodes) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
open_placeholder_window(child);
|
|
|
|
|
}
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(child, &(parent->floating_head), floating_windows) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
open_placeholder_window(child);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xcb_flush(restore_conn);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 15:00:26 +01:00
|
|
|
|
/*
|
|
|
|
|
* Kill the placeholder window, if placeholder refers to a placeholder window.
|
|
|
|
|
* This function is called when manage.c puts a window into an existing
|
|
|
|
|
* container. In order not to leak resources, we need to destroy the window and
|
|
|
|
|
* all associated X11 objects (pixmap/gc).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
bool restore_kill_placeholder(xcb_window_t placeholder) {
|
|
|
|
|
placeholder_state *state;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(state, &state_head, state) {
|
2013-12-15 15:00:26 +01:00
|
|
|
|
if (state->window != placeholder)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
xcb_destroy_window(restore_conn, state->window);
|
2017-01-21 16:53:09 +01:00
|
|
|
|
draw_util_surface_free(restore_conn, &(state->surface));
|
2013-12-15 15:00:26 +01:00
|
|
|
|
TAILQ_REMOVE(&state_head, state, state);
|
|
|
|
|
free(state);
|
|
|
|
|
DLOG("placeholder window 0x%08x destroyed.\n", placeholder);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DLOG("0x%08x is not a placeholder window, ignoring.\n", placeholder);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
static void expose_event(xcb_expose_event_t *event) {
|
|
|
|
|
placeholder_state *state;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(state, &state_head, state) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
if (state->window != event->window)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
DLOG("refreshing window 0x%08x contents (con %p)\n", state->window, state->con);
|
|
|
|
|
|
2017-01-21 16:53:09 +01:00
|
|
|
|
update_placeholder_contents(state);
|
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ELOG("Received ExposeEvent for unknown window 0x%08x\n", event->window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Window size has changed. Update the width/height, then recreate the back
|
|
|
|
|
* buffer pixmap and the accompanying graphics context and force an immediate
|
|
|
|
|
* re-rendering.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void configure_notify(xcb_configure_notify_event_t *event) {
|
|
|
|
|
placeholder_state *state;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(state, &state_head, state) {
|
2013-12-14 22:49:33 +01:00
|
|
|
|
if (state->window != event->window)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
DLOG("ConfigureNotify: window 0x%08x has now width=%d, height=%d (con %p)\n",
|
|
|
|
|
state->window, event->width, event->height, state->con);
|
|
|
|
|
|
|
|
|
|
state->rect.width = event->width;
|
|
|
|
|
state->rect.height = event->height;
|
|
|
|
|
|
2017-01-21 16:53:09 +01:00
|
|
|
|
draw_util_surface_set_size(&(state->surface), state->rect.width, state->rect.height);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
|
|
|
|
|
update_placeholder_contents(state);
|
2017-01-21 16:53:09 +01:00
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ELOG("Received ConfigureNotify for unknown window 0x%08x\n", event->window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void restore_handle_event(int type, xcb_generic_event_t *event) {
|
|
|
|
|
switch (type) {
|
|
|
|
|
case XCB_EXPOSE:
|
2017-01-13 18:34:58 +01:00
|
|
|
|
if (((xcb_expose_event_t *)event)->count == 0) {
|
|
|
|
|
expose_event((xcb_expose_event_t *)event);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-14 22:49:33 +01:00
|
|
|
|
break;
|
|
|
|
|
case XCB_CONFIGURE_NOTIFY:
|
2014-06-15 19:07:02 +02:00
|
|
|
|
configure_notify((xcb_configure_notify_event_t *)event);
|
2013-12-14 22:49:33 +01:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
DLOG("Received unhandled X11 event of type %d\n", type);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|