aboutsummaryrefslogtreecommitdiff
path: root/xwayland/selection/incoming.c
diff options
context:
space:
mode:
authorTudor Brindus <me@tbrindus.ca>2021-01-26 18:41:57 -0500
committerSimon Ser <contact@emersion.fr>2021-01-29 10:18:03 +0100
commit23148d283fb00bff0dff6f0f8126b9f940d07544 (patch)
treea6b3e13a21ba143b84627d0e9df536397be437ba /xwayland/selection/incoming.c
parentdea94f2bad74bf3edf8ff9c44191c076b23efa23 (diff)
xwayland/selection: extract out property requests
Apart from reducing duplication, this has the positive side-effect of allowing all deallocs to use `xwm_selection_transfer_destroy_property_reply`, as opposed to the latter and a mix of ad-hoc `free`s.
Diffstat (limited to 'xwayland/selection/incoming.c')
-rw-r--r--xwayland/selection/incoming.c52
1 files changed, 11 insertions, 41 deletions
diff --git a/xwayland/selection/incoming.c b/xwayland/selection/incoming.c
index 5088e9b2..0586c972 100644
--- a/xwayland/selection/incoming.c
+++ b/xwayland/selection/incoming.c
@@ -61,13 +61,9 @@ static int xwm_data_source_write(int fd, uint32_t mask, void *data) {
return 1;
}
-static void xwm_write_property(struct wlr_xwm_selection_transfer *transfer,
- xcb_get_property_reply_t *reply) {
+static void xwm_write_property(struct wlr_xwm_selection_transfer *transfer) {
struct wlr_xwm *xwm = transfer->selection->xwm;
- transfer->property_start = 0;
- transfer->property_reply = reply;
-
bool wl_client_finished_consuming =
!xwm_data_source_write(transfer->wl_client_fd, WL_EVENT_WRITABLE, transfer);
if (!wl_client_finished_consuming) {
@@ -83,74 +79,48 @@ static void xwm_write_property(struct wlr_xwm_selection_transfer *transfer,
}
void xwm_get_incr_chunk(struct wlr_xwm_selection_transfer *transfer) {
- struct wlr_xwm *xwm = transfer->selection->xwm;
wlr_log(WLR_DEBUG, "xwm_get_incr_chunk");
- xcb_get_property_cookie_t cookie = xcb_get_property(xwm->xcb_conn,
- 0, // delete
- transfer->selection->window,
- xwm->atoms[WL_SELECTION],
- XCB_GET_PROPERTY_TYPE_ANY,
- 0, // offset
- 0x1fffffff // length
- );
-
- xcb_get_property_reply_t *reply =
- xcb_get_property_reply(xwm->xcb_conn, cookie, NULL);
- if (reply == NULL) {
- wlr_log(WLR_ERROR, "cannot get selection property");
+ if (!xwm_selection_transfer_get_selection_property(transfer, false)) {
return;
}
- //dump_property(xwm, xwm->atoms[WL_SELECTION], reply);
- if (xcb_get_property_value_length(reply) > 0) {
+ if (xcb_get_property_value_length(transfer->property_reply) > 0) {
// Reply's ownership is transferred to xwm, which is responsible
// for freeing it.
if (transfer->wl_client_fd >= 0) {
// Wayland client is alive, property will be freed once it has finished
// reading it.
- xwm_write_property(transfer, reply);
+ xwm_write_property(transfer);
} else {
// Wayland client closed its pipe prematurely (or died). Continue draining
// the X11 client.
xwm_notify_ready_for_next_incr_chunk(transfer);
- free(reply);
+ xwm_selection_transfer_destroy_property_reply(transfer);
}
} else {
wlr_log(WLR_DEBUG, "incremental transfer complete");
xwm_selection_transfer_close_wl_client_fd(transfer);
- free(reply);
+ xwm_selection_transfer_destroy_property_reply(transfer);
}
}
static void xwm_selection_get_data(struct wlr_xwm_selection *selection) {
struct wlr_xwm *xwm = selection->xwm;
+ struct wlr_xwm_selection_transfer *transfer = &selection->incoming;
- xcb_get_property_cookie_t cookie = xcb_get_property(xwm->xcb_conn,
- 1, // delete
- selection->window,
- xwm->atoms[WL_SELECTION],
- XCB_GET_PROPERTY_TYPE_ANY,
- 0, // offset
- 0x1fffffff // length
- );
-
- xcb_get_property_reply_t *reply =
- xcb_get_property_reply(xwm->xcb_conn, cookie, NULL);
- if (reply == NULL) {
- wlr_log(WLR_ERROR, "Cannot get selection property");
+ if (!xwm_selection_transfer_get_selection_property(transfer, true)) {
return;
}
- struct wlr_xwm_selection_transfer *transfer = &selection->incoming;
- if (reply->type == xwm->atoms[INCR]) {
+ if (transfer->property_reply->type == xwm->atoms[INCR]) {
transfer->incr = true;
- free(reply);
+ xwm_selection_transfer_destroy_property_reply(transfer);
} else {
transfer->incr = false;
// reply's ownership is transferred to wm, which is responsible
// for freeing it
- xwm_write_property(transfer, reply);
+ xwm_write_property(transfer);
}
}