2017-04-25 17:32:52 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
#include <assert.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
#include <wayland-server.h>
|
2017-10-21 03:48:58 +02:00
|
|
|
#include <wlr/render/egl.h>
|
2017-06-19 17:46:50 +02:00
|
|
|
#include <wlr/backend/interface.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
|
|
|
#include <wlr/interfaces/wlr_input_device.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-04-25 17:32:52 +02:00
|
|
|
#include "backend/wayland.h"
|
2017-08-16 19:19:31 +02:00
|
|
|
#include "xdg-shell-unstable-v6-client-protocol.h"
|
|
|
|
|
2017-06-20 18:27:05 +02:00
|
|
|
static int dispatch_events(int fd, uint32_t mask, void *data) {
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_wl_backend *backend = data;
|
2017-06-20 18:27:05 +02:00
|
|
|
int count = 0;
|
2017-11-16 09:33:47 +01:00
|
|
|
|
|
|
|
if ((mask & WL_EVENT_HANGUP) || (mask & WL_EVENT_ERROR)) {
|
|
|
|
wl_display_terminate(backend->local_display);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-20 23:51:45 +02:00
|
|
|
if (mask & WL_EVENT_READABLE) {
|
2017-08-12 17:43:36 +02:00
|
|
|
count = wl_display_dispatch(backend->remote_display);
|
2017-06-20 23:51:45 +02:00
|
|
|
}
|
2017-06-20 18:27:05 +02:00
|
|
|
if (mask == 0) {
|
2017-08-12 17:43:36 +02:00
|
|
|
count = wl_display_dispatch_pending(backend->remote_display);
|
|
|
|
wl_display_flush(backend->remote_display);
|
2017-06-20 18:27:05 +02:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2017-06-19 17:46:50 +02:00
|
|
|
/*
|
|
|
|
* Initializes the wayland backend. Opens a connection to a remote wayland
|
|
|
|
* compositor and creates surfaces for each output, then registers globals on
|
|
|
|
* the specified display.
|
|
|
|
*/
|
2017-08-13 15:59:14 +02:00
|
|
|
static bool wlr_wl_backend_start(struct wlr_backend *_backend) {
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_wl_backend *backend = (struct wlr_wl_backend *)_backend;
|
2017-06-19 19:40:58 +02:00
|
|
|
wlr_log(L_INFO, "Initializating wayland backend");
|
|
|
|
|
2017-09-23 16:13:05 +02:00
|
|
|
wlr_wl_registry_poll(backend);
|
|
|
|
if (!(backend->compositor) || (!(backend->shell))) {
|
|
|
|
wlr_log_errno(L_ERROR, "Could not obtain retrieve required globals");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-23 06:29:53 +02:00
|
|
|
backend->started = true;
|
2017-09-26 03:57:23 +02:00
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
for (size_t i = 0; i < backend->requested_outputs; ++i) {
|
|
|
|
wlr_wl_output_create(&backend->backend);
|
2017-06-19 22:36:40 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wl_event_loop *loop = wl_display_get_event_loop(backend->local_display);
|
|
|
|
int fd = wl_display_get_fd(backend->remote_display);
|
2017-06-20 18:27:05 +02:00
|
|
|
int events = WL_EVENT_READABLE | WL_EVENT_ERROR |
|
2017-08-12 23:47:19 +02:00
|
|
|
WL_EVENT_HANGUP;
|
2017-08-12 17:43:36 +02:00
|
|
|
backend->remote_display_src = wl_event_loop_add_fd(loop, fd, events,
|
|
|
|
dispatch_events, backend);
|
|
|
|
wl_event_source_check(backend->remote_display_src);
|
2017-06-22 17:54:51 +02:00
|
|
|
|
2017-06-19 17:46:50 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
static void wlr_wl_backend_destroy(struct wlr_backend *_backend) {
|
|
|
|
struct wlr_wl_backend *backend = (struct wlr_wl_backend *)_backend;
|
|
|
|
if (!_backend) {
|
2017-04-25 21:06:58 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-06-19 17:46:50 +02:00
|
|
|
|
2017-10-14 22:33:00 +02:00
|
|
|
struct wlr_wl_backend_output *output, *tmp_output;
|
|
|
|
wl_list_for_each_safe(output, tmp_output, &backend->outputs, link) {
|
|
|
|
wlr_output_destroy(&output->wlr_output);
|
2017-04-26 03:26:29 +02:00
|
|
|
}
|
2017-06-19 17:46:50 +02:00
|
|
|
|
2017-10-14 22:33:00 +02:00
|
|
|
struct wlr_input_device *input_device, *tmp_input_device;
|
|
|
|
wl_list_for_each_safe(input_device, tmp_input_device, &backend->devices, link) {
|
|
|
|
wlr_input_device_destroy(input_device);
|
2017-06-20 19:01:20 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
free(backend->seat_name);
|
|
|
|
|
2017-08-19 09:30:47 +02:00
|
|
|
wl_event_source_remove(backend->remote_display_src);
|
2017-08-12 17:43:36 +02:00
|
|
|
wlr_egl_free(&backend->egl);
|
|
|
|
if (backend->seat) wl_seat_destroy(backend->seat);
|
|
|
|
if (backend->shm) wl_shm_destroy(backend->shm);
|
2017-08-16 19:19:31 +02:00
|
|
|
if (backend->shell) zxdg_shell_v6_destroy(backend->shell);
|
2017-08-12 17:43:36 +02:00
|
|
|
if (backend->compositor) wl_compositor_destroy(backend->compositor);
|
|
|
|
if (backend->registry) wl_registry_destroy(backend->registry);
|
|
|
|
if (backend->remote_display) wl_display_disconnect(backend->remote_display);
|
|
|
|
free(backend);
|
2017-04-25 21:06:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
static struct wlr_egl *wlr_wl_backend_get_egl(struct wlr_backend *_backend) {
|
|
|
|
struct wlr_wl_backend *backend = (struct wlr_wl_backend *)_backend;
|
|
|
|
return &backend->egl;
|
2017-08-11 04:15:37 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 17:46:50 +02:00
|
|
|
static struct wlr_backend_impl backend_impl = {
|
2017-08-13 15:59:14 +02:00
|
|
|
.start = wlr_wl_backend_start,
|
2017-08-11 04:15:37 +02:00
|
|
|
.destroy = wlr_wl_backend_destroy,
|
|
|
|
.get_egl = wlr_wl_backend_get_egl
|
2017-06-19 17:46:50 +02:00
|
|
|
};
|
|
|
|
|
2017-06-21 00:22:21 +02:00
|
|
|
bool wlr_backend_is_wl(struct wlr_backend *b) {
|
|
|
|
return b->impl == &backend_impl;
|
|
|
|
}
|
2017-06-19 17:46:50 +02:00
|
|
|
|
2017-08-13 16:51:50 +02:00
|
|
|
struct wlr_wl_backend_output *wlr_wl_output_for_surface(
|
|
|
|
struct wlr_wl_backend *backend, struct wl_surface *surface) {
|
2017-10-14 22:33:00 +02:00
|
|
|
struct wlr_wl_backend_output *output;
|
|
|
|
wl_list_for_each(output, &backend->outputs, link) {
|
2017-08-13 16:51:50 +02:00
|
|
|
if (output->surface == surface) {
|
2017-06-22 17:54:51 +02:00
|
|
|
return output;
|
2017-08-12 17:43:36 +02:00
|
|
|
}
|
2017-06-22 17:54:51 +02:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-06-21 00:22:21 +02:00
|
|
|
struct wlr_backend *wlr_wl_backend_create(struct wl_display *display) {
|
2017-06-19 19:40:58 +02:00
|
|
|
wlr_log(L_INFO, "Creating wayland backend");
|
2017-06-19 17:46:50 +02:00
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_wl_backend *backend = calloc(1, sizeof(struct wlr_wl_backend));
|
2017-06-19 17:46:50 +02:00
|
|
|
if (!backend) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
return NULL;
|
2017-04-25 21:06:58 +02:00
|
|
|
}
|
2017-08-13 15:59:14 +02:00
|
|
|
wlr_backend_init(&backend->backend, &backend_impl);
|
2017-06-19 17:46:50 +02:00
|
|
|
|
2017-10-14 22:33:00 +02:00
|
|
|
wl_list_init(&backend->devices);
|
|
|
|
wl_list_init(&backend->outputs);
|
2017-06-19 19:40:58 +02:00
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
backend->local_display = display;
|
2017-09-23 06:29:53 +02:00
|
|
|
|
|
|
|
backend->remote_display = wl_display_connect(NULL);
|
|
|
|
if (!backend->remote_display) {
|
|
|
|
wlr_log_errno(L_ERROR, "Could not connect to remote display");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(backend->registry = wl_display_get_registry(backend->remote_display))) {
|
|
|
|
wlr_log_errno(L_ERROR, "Could not obtain reference to remote registry");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-26 03:57:23 +02:00
|
|
|
wlr_egl_init(&backend->egl, EGL_PLATFORM_WAYLAND_EXT, WL_SHM_FORMAT_ARGB8888, backend->remote_display);
|
2017-09-23 06:29:53 +02:00
|
|
|
wlr_egl_bind_display(&backend->egl, backend->local_display);
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
return &backend->backend;
|
2017-04-25 17:32:52 +02:00
|
|
|
}
|