summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2012-06-03 17:30:12 -0400
committerKristian Høgsberg <krh@bitplanet.net>2012-06-03 17:30:12 -0400
commit68f058ffd3aa485e01354b8cf6ad040169e939fb (patch)
tree9dc567a7ca7c4166013c286176fa77a59ca5e1df
parentdff84e563896566e952f8a6704eadb8c09f27830 (diff)
data-device: Don't implement data source through data offer object
The wl_data_source object used to specify the implementation for data offers created for it. This means you need a data offer to retrieve the data from the source, which makes it awkward to use in-process in a compositor. Now we instead have three virtual functions that can be connected to a protocol object or in-process data-sources such as an X server proxy or clipboard.
-rw-r--r--src/data-device.c56
-rw-r--r--src/wayland-server.h5
2 files changed, 39 insertions, 22 deletions
diff --git a/src/data-device.c b/src/data-device.c
index 5edbc17..a4bfa68 100644
--- a/src/data-device.c
+++ b/src/data-device.c
@@ -38,8 +38,7 @@ data_offer_accept(struct wl_client *client, struct wl_resource *resource,
* this be a wl_data_device request? */
if (offer->source)
- wl_data_source_send_target(&offer->source->resource,
- mime_type);
+ offer->source->accept(offer->source, serial, mime_type);
}
static void
@@ -49,10 +48,9 @@ data_offer_receive(struct wl_client *client, struct wl_resource *resource,
struct wl_data_offer *offer = resource->data;
if (offer->source)
- wl_data_source_send_send(&offer->source->resource,
- mime_type, fd);
-
- close(fd);
+ offer->source->send(offer->source, mime_type, fd);
+ else
+ close(fd);
}
static void
@@ -61,6 +59,12 @@ data_offer_destroy(struct wl_client *client, struct wl_resource *resource)
wl_resource_destroy(resource);
}
+static const struct wl_data_offer_interface data_offer_interface = {
+ data_offer_accept,
+ data_offer_receive,
+ data_offer_destroy,
+};
+
static void
destroy_data_offer(struct wl_resource *resource)
{
@@ -70,12 +74,6 @@ destroy_data_offer(struct wl_resource *resource)
free(offer);
}
-static const struct wl_data_offer_interface data_offer_interface = {
- data_offer_accept,
- data_offer_receive,
- data_offer_destroy,
-};
-
static void
destroy_offer_data_source(struct wl_listener *listener, void *data)
{
@@ -87,12 +85,6 @@ destroy_offer_data_source(struct wl_listener *listener, void *data)
offer->source = NULL;
}
-static void
-data_source_cancel(struct wl_data_source *source)
-{
- wl_data_source_send_cancelled(&source->resource);
-}
-
static struct wl_resource *
wl_data_source_send_offer(struct wl_data_source *source,
struct wl_resource *target)
@@ -108,7 +100,7 @@ wl_data_source_send_offer(struct wl_data_source *source,
offer->resource.object.id = 0;
offer->resource.object.interface = &wl_data_offer_interface;
offer->resource.object.implementation =
- (void (**)(void)) source->offer_interface;
+ (void (**)(void)) &data_offer_interface;
offer->resource.data = offer;
wl_signal_init(&offer->resource.destroy_signal);
@@ -441,6 +433,27 @@ destroy_data_source(struct wl_resource *resource)
}
static void
+client_source_accept(struct wl_data_source *source,
+ uint32_t time, const char *mime_type)
+{
+ wl_data_source_send_target(&source->resource, mime_type);
+}
+
+static void
+client_source_send(struct wl_data_source *source,
+ const char *mime_type, int32_t fd)
+{
+ wl_data_source_send_send(&source->resource, mime_type, fd);
+ close(fd);
+}
+
+static void
+client_source_cancel(struct wl_data_source *source)
+{
+ wl_data_source_send_cancelled(&source->resource);
+}
+
+static void
create_data_source(struct wl_client *client,
struct wl_resource *resource, uint32_t id)
{
@@ -460,8 +473,9 @@ create_data_source(struct wl_client *client,
source->resource.data = source;
wl_signal_init(&source->resource.destroy_signal);
- source->offer_interface = &data_offer_interface;
- source->cancel = data_source_cancel;
+ source->accept = client_source_accept;
+ source->send = client_source_send;
+ source->cancel = client_source_cancel;
wl_array_init(&source->mime_types);
wl_client_add_resource(client, &source->resource);
diff --git a/src/wayland-server.h b/src/wayland-server.h
index 266b457..fc38cd1 100644
--- a/src/wayland-server.h
+++ b/src/wayland-server.h
@@ -232,7 +232,10 @@ struct wl_data_source {
struct wl_resource resource;
struct wl_array mime_types;
- const struct wl_data_offer_interface *offer_interface;
+ void (*accept)(struct wl_data_source *source,
+ uint32_t serial, const char *mime_type);
+ void (*send)(struct wl_data_source *source,
+ const char *mime_type, int32_t fd);
void (*cancel)(struct wl_data_source *source);
};