mesa/src/egl/wayland/wayland-drm/wayland-drm.c

207 lines
5.4 KiB
C
Raw Normal View History

2011-02-21 15:22:34 +00:00
/*
* Copyright © 2011 Kristian Høgsberg
* Copyright © 2011 Benjamin Franzke
2011-02-21 15:22:34 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Authors:
* Kristian Høgsberg <krh@bitplanet.net>
* Benjamin Franzke <benjaminfranzke@googlemail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
#include <wayland-server.h>
#include "wayland-drm.h"
#include "wayland-drm-server-protocol.h"
struct wl_drm {
struct wl_display *display;
void *user_data;
2011-02-21 15:22:34 +00:00
char *device_name;
struct wayland_drm_callbacks *callbacks;
};
struct wl_drm_buffer {
struct wl_buffer buffer;
struct wl_drm *drm;
void *driver_buffer;
2011-02-21 15:22:34 +00:00
};
static void
buffer_damage(struct wl_client *client, struct wl_resource *buffer,
int32_t x, int32_t y, int32_t width, int32_t height)
2011-02-21 15:22:34 +00:00
{
}
static void
destroy_buffer(struct wl_resource *resource)
2011-02-21 15:22:34 +00:00
{
struct wl_drm_buffer *buffer = resource->data;
struct wl_drm *drm = buffer->drm;
2011-02-21 15:22:34 +00:00
drm->callbacks->release_buffer(drm->user_data,
buffer->driver_buffer);
2011-02-21 15:22:34 +00:00
free(buffer);
}
static void
buffer_destroy(struct wl_client *client, struct wl_resource *resource)
2011-02-21 15:22:34 +00:00
{
wl_resource_destroy(resource, 0);
2011-02-21 15:22:34 +00:00
}
const static struct wl_buffer_interface drm_buffer_interface = {
buffer_damage,
2011-02-21 15:22:34 +00:00
buffer_destroy
};
static void
drm_create_buffer(struct wl_client *client, struct wl_resource *resource,
2011-02-21 15:22:34 +00:00
uint32_t id, uint32_t name, int32_t width, int32_t height,
uint32_t stride, struct wl_resource *visual_resource)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm = resource->data;
2011-02-21 15:22:34 +00:00
struct wl_drm_buffer *buffer;
struct wl_visual *visual = visual_resource->data;
2011-02-21 15:22:34 +00:00
buffer = calloc(1, sizeof *buffer);
2011-02-21 15:22:34 +00:00
if (buffer == NULL) {
wl_client_post_no_memory(resource->client);
2011-02-21 15:22:34 +00:00
return;
}
buffer->drm = drm;
buffer->buffer.width = width;
buffer->buffer.height = height;
buffer->buffer.visual = visual;
if (!visual || visual_resource->object.interface != &wl_visual_interface) {
wl_resource_post_error(resource,
WL_DRM_ERROR_INVALID_VISUAL,
"invalid visual");
2011-07-06 15:10:20 +01:00
free(buffer);
2011-02-21 15:22:34 +00:00
return;
}
buffer->driver_buffer =
drm->callbacks->reference_buffer(drm->user_data, name,
width, height,
stride, visual);
2011-02-21 15:22:34 +00:00
if (buffer->driver_buffer == NULL) {
wl_resource_post_error(resource,
WL_DRM_ERROR_INVALID_NAME,
"invalid name");
2011-02-21 15:22:34 +00:00
return;
}
buffer->buffer.resource.object.id = id;
buffer->buffer.resource.object.interface = &wl_buffer_interface;
buffer->buffer.resource.object.implementation =
(void (**)(void)) &drm_buffer_interface;
buffer->buffer.resource.data = buffer;
2011-02-21 15:22:34 +00:00
buffer->buffer.resource.destroy = destroy_buffer;
buffer->buffer.resource.client = resource->client;
2011-02-21 15:22:34 +00:00
wl_client_add_resource(resource->client, &buffer->buffer.resource);
2011-02-21 15:22:34 +00:00
}
static void
drm_authenticate(struct wl_client *client,
struct wl_resource *resource, uint32_t id)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm = resource->data;
if (drm->callbacks->authenticate(drm->user_data, id) < 0)
wl_resource_post_error(resource,
WL_DRM_ERROR_AUTHENTICATE_FAIL,
"authenicate failed");
2011-02-21 15:22:34 +00:00
else
wl_resource_post_event(resource, WL_DRM_AUTHENTICATED);
2011-02-21 15:22:34 +00:00
}
const static struct wl_drm_interface drm_interface = {
drm_authenticate,
drm_create_buffer
};
static void
bind_drm(struct wl_client *client, void *data, uint32_t version, uint32_t id)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm = data;
struct wl_resource *resource;
2011-02-21 15:22:34 +00:00
resource = wl_client_add_object(client, &wl_drm_interface,
&drm_interface, id, data);
wl_resource_post_event(resource, WL_DRM_DEVICE, drm->device_name);
2011-02-21 15:22:34 +00:00
}
struct wl_drm *
wayland_drm_init(struct wl_display *display, char *device_name,
struct wayland_drm_callbacks *callbacks, void *user_data)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm;
drm = malloc(sizeof *drm);
drm->display = display;
drm->device_name = strdup(device_name);
drm->callbacks = callbacks;
drm->user_data = user_data;
2011-02-21 15:22:34 +00:00
wl_display_add_global(display, &wl_drm_interface, drm, bind_drm);
2011-02-21 15:22:34 +00:00
return drm;
}
void
wayland_drm_uninit(struct wl_drm *drm)
2011-02-21 15:22:34 +00:00
{
free(drm->device_name);
/* FIXME: need wl_display_del_{object,global} */
free(drm);
}
int
wayland_buffer_is_drm(struct wl_buffer *buffer)
{
return buffer->resource.object.implementation ==
(void (**)(void)) &drm_buffer_interface;
}
void *
wayland_drm_buffer_get_buffer(struct wl_buffer *buffer_base)
{
struct wl_drm_buffer *buffer = (struct wl_drm_buffer *) buffer_base;
return buffer->driver_buffer;
}