2011-03-08 11:32:24 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2008 Kristian Høgsberg
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Kristian Høgsberg <krh@bitplanet.net>
|
|
|
|
|
* Benjamin Franzke <benjaminfranzke@googlemail.com>
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "wayland-server.h"
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
struct wl_shm_pool {
|
|
|
|
|
struct wl_resource resource;
|
|
|
|
|
int refcount;
|
|
|
|
|
char *data;
|
|
|
|
|
int size;
|
2012-05-22 15:39:40 +03:00
|
|
|
int fd;
|
2012-04-03 12:08:50 -04:00
|
|
|
};
|
|
|
|
|
|
2011-03-08 11:32:24 +01:00
|
|
|
struct wl_shm_buffer {
|
|
|
|
|
struct wl_buffer buffer;
|
|
|
|
|
int32_t stride;
|
2011-08-30 21:26:19 -04:00
|
|
|
uint32_t format;
|
2012-05-22 15:39:40 +03:00
|
|
|
int offset;
|
2012-04-03 12:08:50 -04:00
|
|
|
struct wl_shm_pool *pool;
|
2011-03-08 11:32:24 +01:00
|
|
|
};
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
static void
|
|
|
|
|
shm_pool_unref(struct wl_shm_pool *pool)
|
|
|
|
|
{
|
|
|
|
|
pool->refcount--;
|
|
|
|
|
if (pool->refcount)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
munmap(pool->data, pool->size);
|
2012-05-22 15:39:40 +03:00
|
|
|
close(pool->fd);
|
2012-04-03 12:08:50 -04:00
|
|
|
free(pool);
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-08 11:32:24 +01:00
|
|
|
static void
|
2011-08-18 17:53:50 -04:00
|
|
|
destroy_buffer(struct wl_resource *resource)
|
2011-03-08 11:32:24 +01:00
|
|
|
{
|
|
|
|
|
struct wl_shm_buffer *buffer =
|
|
|
|
|
container_of(resource, struct wl_shm_buffer, buffer.resource);
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
if (buffer->pool)
|
|
|
|
|
shm_pool_unref(buffer->pool);
|
2011-03-08 11:32:24 +01:00
|
|
|
free(buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2011-08-18 17:53:50 -04:00
|
|
|
shm_buffer_destroy(struct wl_client *client, struct wl_resource *resource)
|
2011-03-08 11:32:24 +01:00
|
|
|
{
|
Switch protocol to using serial numbers for ordering events and requests
The wayland protocol, as X, uses timestamps to match up certain
requests with input events. The problem is that sometimes we need to
send out an event that doesn't have a corresponding timestamped input
event. For example, the pointer focus surface goes away and new
surface needs to receive a pointer enter event. These events are
normally timestamped with the evdev event timestamp, but in this case,
we don't have a evdev timestamp. So we have to go to gettimeofday (or
clock_gettime()) and then we don't know if it's coming from the same
time source etc.
However for all these cases we don't need a real time timestamp, we
just need a serial number that encodes the order of events inside the
server. So we introduce a serial number mechanism that we can use to
order events. We still need real-time timestamps for actual input
device events (motion, buttons, keys, touch), to be able to reason
about double-click speed and movement speed so events that correspond to user input carry both a serial number and a timestamp.
The serial number also give us a mechanism to key together events that
are "logically the same" such as a unicode event and a keycode event,
or a motion event and a relative event from a raw device.
2012-04-11 22:25:51 -04:00
|
|
|
wl_resource_destroy(resource);
|
2011-03-08 11:32:24 +01:00
|
|
|
}
|
|
|
|
|
|
2012-03-22 11:33:35 +02:00
|
|
|
static const struct wl_buffer_interface shm_buffer_interface = {
|
2011-03-08 11:32:24 +01:00
|
|
|
shm_buffer_destroy
|
|
|
|
|
};
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
static void
|
|
|
|
|
shm_pool_create_buffer(struct wl_client *client, struct wl_resource *resource,
|
|
|
|
|
uint32_t id, int32_t offset,
|
|
|
|
|
int32_t width, int32_t height,
|
|
|
|
|
int32_t stride, uint32_t format)
|
2011-03-08 11:32:24 +01:00
|
|
|
{
|
2012-04-03 12:08:50 -04:00
|
|
|
struct wl_shm_pool *pool = resource->data;
|
2011-03-08 11:32:24 +01:00
|
|
|
struct wl_shm_buffer *buffer;
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
switch (format) {
|
|
|
|
|
case WL_SHM_FORMAT_ARGB8888:
|
|
|
|
|
case WL_SHM_FORMAT_XRGB8888:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
wl_resource_post_error(resource,
|
|
|
|
|
WL_SHM_ERROR_INVALID_FORMAT,
|
|
|
|
|
"invalid format");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (offset < 0 || width <= 0 || height <= 0 || stride < width ||
|
|
|
|
|
INT32_MAX / stride <= height ||
|
|
|
|
|
offset > pool->size - stride * height) {
|
|
|
|
|
wl_resource_post_error(resource,
|
|
|
|
|
WL_SHM_ERROR_INVALID_STRIDE,
|
|
|
|
|
"invalid width, height or stride (%dx%d, %u)",
|
|
|
|
|
width, height, stride);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buffer = malloc(sizeof *buffer);
|
|
|
|
|
if (buffer == NULL) {
|
|
|
|
|
wl_resource_post_no_memory(resource);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2011-03-08 11:32:24 +01:00
|
|
|
|
|
|
|
|
buffer->buffer.width = width;
|
|
|
|
|
buffer->buffer.height = height;
|
2012-05-22 18:48:14 +01:00
|
|
|
buffer->buffer.busy_count = 0;
|
2011-08-30 21:26:19 -04:00
|
|
|
buffer->format = format;
|
2011-03-08 11:32:24 +01:00
|
|
|
buffer->stride = stride;
|
2012-05-22 15:39:40 +03:00
|
|
|
buffer->offset = offset;
|
2012-04-03 12:08:50 -04:00
|
|
|
buffer->pool = pool;
|
|
|
|
|
pool->refcount++;
|
2011-03-08 11:32:24 +01:00
|
|
|
|
|
|
|
|
buffer->buffer.resource.object.id = id;
|
|
|
|
|
buffer->buffer.resource.object.interface = &wl_buffer_interface;
|
|
|
|
|
buffer->buffer.resource.object.implementation = (void (**)(void))
|
|
|
|
|
&shm_buffer_interface;
|
|
|
|
|
|
2011-08-18 17:53:50 -04:00
|
|
|
buffer->buffer.resource.data = buffer;
|
2012-04-03 12:08:50 -04:00
|
|
|
buffer->buffer.resource.client = resource->client;
|
2011-03-08 11:32:24 +01:00
|
|
|
buffer->buffer.resource.destroy = destroy_buffer;
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
wl_client_add_resource(client, &buffer->buffer.resource);
|
2011-03-08 11:32:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2012-04-03 12:08:50 -04:00
|
|
|
destroy_pool(struct wl_resource *resource)
|
2011-03-08 11:32:24 +01:00
|
|
|
{
|
2012-04-03 12:08:50 -04:00
|
|
|
struct wl_shm_pool *pool = resource->data;
|
2011-03-08 11:32:24 +01:00
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
shm_pool_unref(pool);
|
|
|
|
|
}
|
2011-08-30 21:26:19 -04:00
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
static void
|
|
|
|
|
shm_pool_destroy(struct wl_client *client, struct wl_resource *resource)
|
|
|
|
|
{
|
Switch protocol to using serial numbers for ordering events and requests
The wayland protocol, as X, uses timestamps to match up certain
requests with input events. The problem is that sometimes we need to
send out an event that doesn't have a corresponding timestamped input
event. For example, the pointer focus surface goes away and new
surface needs to receive a pointer enter event. These events are
normally timestamped with the evdev event timestamp, but in this case,
we don't have a evdev timestamp. So we have to go to gettimeofday (or
clock_gettime()) and then we don't know if it's coming from the same
time source etc.
However for all these cases we don't need a real time timestamp, we
just need a serial number that encodes the order of events inside the
server. So we introduce a serial number mechanism that we can use to
order events. We still need real-time timestamps for actual input
device events (motion, buttons, keys, touch), to be able to reason
about double-click speed and movement speed so events that correspond to user input carry both a serial number and a timestamp.
The serial number also give us a mechanism to key together events that
are "logically the same" such as a unicode event and a keycode event,
or a motion event and a relative event from a raw device.
2012-04-11 22:25:51 -04:00
|
|
|
wl_resource_destroy(resource);
|
2012-04-03 12:08:50 -04:00
|
|
|
}
|
|
|
|
|
|
2012-05-22 15:39:40 +03:00
|
|
|
static void
|
|
|
|
|
shm_pool_resize(struct wl_client *client, struct wl_resource *resource,
|
|
|
|
|
int32_t size)
|
|
|
|
|
{
|
|
|
|
|
struct wl_shm_pool *pool = resource->data;
|
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
|
|
data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
|
pool->fd, 0);
|
|
|
|
|
|
|
|
|
|
if (data == MAP_FAILED) {
|
|
|
|
|
wl_resource_post_error(resource,
|
|
|
|
|
WL_SHM_ERROR_INVALID_FD,
|
|
|
|
|
"failed mmap fd %d", pool->fd);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
munmap(pool->data, pool->size);
|
|
|
|
|
pool->data = data;
|
|
|
|
|
pool->size = size;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
struct wl_shm_pool_interface shm_pool_interface = {
|
|
|
|
|
shm_pool_create_buffer,
|
2012-05-22 15:39:40 +03:00
|
|
|
shm_pool_destroy,
|
|
|
|
|
shm_pool_resize
|
2012-04-03 12:08:50 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
shm_create_pool(struct wl_client *client, struct wl_resource *resource,
|
|
|
|
|
uint32_t id, int fd, int32_t size)
|
|
|
|
|
{
|
|
|
|
|
struct wl_shm_pool *pool;
|
|
|
|
|
|
|
|
|
|
pool = malloc(sizeof *pool);
|
|
|
|
|
if (pool == NULL) {
|
|
|
|
|
wl_resource_post_no_memory(resource);
|
2011-03-08 11:32:24 +01:00
|
|
|
close(fd);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
if (size <= 0) {
|
2011-09-01 09:53:33 -04:00
|
|
|
wl_resource_post_error(resource,
|
|
|
|
|
WL_SHM_ERROR_INVALID_STRIDE,
|
2012-04-03 12:08:50 -04:00
|
|
|
"invalid size (%d)", size);
|
2011-03-08 11:32:24 +01:00
|
|
|
close(fd);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
pool->refcount = 1;
|
2012-05-22 15:39:40 +03:00
|
|
|
pool->fd = fd;
|
2012-04-03 12:08:50 -04:00
|
|
|
pool->size = size;
|
|
|
|
|
pool->data = mmap(NULL, size,
|
|
|
|
|
PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
|
if (pool->data == MAP_FAILED) {
|
2011-09-01 09:53:33 -04:00
|
|
|
wl_resource_post_error(resource,
|
|
|
|
|
WL_SHM_ERROR_INVALID_FD,
|
|
|
|
|
"failed mmap fd %d", fd);
|
2011-03-08 11:32:24 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
pool->resource.object.id = id;
|
|
|
|
|
pool->resource.object.interface = &wl_shm_pool_interface;
|
|
|
|
|
pool->resource.object.implementation =
|
|
|
|
|
(void (**)(void)) &shm_pool_interface;
|
2011-03-08 11:32:24 +01:00
|
|
|
|
2012-04-03 12:08:50 -04:00
|
|
|
pool->resource.data = pool;
|
|
|
|
|
pool->resource.client = client;
|
|
|
|
|
pool->resource.destroy = destroy_pool;
|
|
|
|
|
|
|
|
|
|
wl_client_add_resource(client, &pool->resource);
|
2011-03-08 11:32:24 +01:00
|
|
|
}
|
|
|
|
|
|
2012-03-22 11:33:35 +02:00
|
|
|
static const struct wl_shm_interface shm_interface = {
|
2012-04-03 12:08:50 -04:00
|
|
|
shm_create_pool
|
2011-03-08 11:32:24 +01:00
|
|
|
};
|
|
|
|
|
|
2011-08-19 16:57:48 -04:00
|
|
|
static void
|
|
|
|
|
bind_shm(struct wl_client *client,
|
|
|
|
|
void *data, uint32_t version, uint32_t id)
|
|
|
|
|
{
|
2011-08-30 21:26:19 -04:00
|
|
|
struct wl_resource *resource;
|
|
|
|
|
|
|
|
|
|
resource = wl_client_add_object(client, &wl_shm_interface,
|
|
|
|
|
&shm_interface, id, data);
|
|
|
|
|
|
2012-03-02 17:08:59 +02:00
|
|
|
wl_shm_send_format(resource, WL_SHM_FORMAT_ARGB8888);
|
|
|
|
|
wl_shm_send_format(resource, WL_SHM_FORMAT_XRGB8888);
|
2011-08-19 16:57:48 -04:00
|
|
|
}
|
2011-03-08 11:32:24 +01:00
|
|
|
|
2012-03-26 16:33:24 -04:00
|
|
|
WL_EXPORT int
|
|
|
|
|
wl_display_init_shm(struct wl_display *display)
|
2011-03-08 11:32:24 +01:00
|
|
|
{
|
2012-03-26 16:33:24 -04:00
|
|
|
if (!wl_display_add_global(display, &wl_shm_interface, NULL, bind_shm))
|
|
|
|
|
return -1;
|
2011-03-08 11:32:24 +01:00
|
|
|
|
2012-03-26 16:33:24 -04:00
|
|
|
return 0;
|
2011-03-08 11:32:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WL_EXPORT int
|
|
|
|
|
wl_buffer_is_shm(struct wl_buffer *buffer)
|
|
|
|
|
{
|
|
|
|
|
return buffer->resource.object.implementation ==
|
|
|
|
|
(void (**)(void)) &shm_buffer_interface;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WL_EXPORT int32_t
|
|
|
|
|
wl_shm_buffer_get_stride(struct wl_buffer *buffer_base)
|
|
|
|
|
{
|
|
|
|
|
struct wl_shm_buffer *buffer = (struct wl_shm_buffer *) buffer_base;
|
|
|
|
|
|
|
|
|
|
if (!wl_buffer_is_shm(buffer_base))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return buffer->stride;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WL_EXPORT void *
|
|
|
|
|
wl_shm_buffer_get_data(struct wl_buffer *buffer_base)
|
|
|
|
|
{
|
|
|
|
|
struct wl_shm_buffer *buffer = (struct wl_shm_buffer *) buffer_base;
|
|
|
|
|
|
|
|
|
|
if (!wl_buffer_is_shm(buffer_base))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2012-05-22 15:39:40 +03:00
|
|
|
return buffer->pool->data + buffer->offset;
|
2011-03-08 11:32:24 +01:00
|
|
|
}
|
2011-08-30 21:26:19 -04:00
|
|
|
|
|
|
|
|
WL_EXPORT uint32_t
|
|
|
|
|
wl_shm_buffer_get_format(struct wl_buffer *buffer_base)
|
|
|
|
|
{
|
|
|
|
|
struct wl_shm_buffer *buffer = (struct wl_shm_buffer *) buffer_base;
|
|
|
|
|
|
|
|
|
|
return buffer->format;
|
|
|
|
|
}
|