wlroots-hyprland/backend/wayland/backend.c

161 lines
4.6 KiB
C
Raw Normal View History

2017-04-25 17:32:52 +02:00
#include <stdlib.h>
#include <stdint.h>
#include <assert.h>
2017-06-21 18:10:07 +02:00
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <wayland-server.h>
2017-08-11 04:15:37 +02:00
#include <wlr/egl.h>
#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"
#include "xdg-shell-unstable-v6-client-protocol.h"
2017-04-25 17:32:52 +02:00
2017-06-20 18:27:05 +02:00
static int dispatch_events(int fd, uint32_t mask, void *data) {
struct wlr_wl_backend *backend = data;
2017-06-20 18:27:05 +02:00
int count = 0;
if (mask & WL_EVENT_READABLE) {
count = wl_display_dispatch(backend->remote_display);
}
2017-06-20 18:27:05 +02:00
if (mask == 0) {
count = wl_display_dispatch_pending(backend->remote_display);
wl_display_flush(backend->remote_display);
2017-06-20 18:27:05 +02:00
}
return count;
}
/*
* 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.
*/
static bool wlr_wl_backend_start(struct wlr_backend *_backend) {
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");
backend->started = true;
for (size_t i = 0; i < backend->requested_outputs; ++i) {
wlr_wl_output_create(&backend->backend);
}
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 |
WL_EVENT_HANGUP;
backend->remote_display_src = wl_event_loop_add_fd(loop, fd, events,
dispatch_events, backend);
wl_event_source_check(backend->remote_display_src);
return true;
}
static void wlr_wl_backend_destroy(struct wlr_backend *_backend) {
struct wlr_wl_backend *backend = (struct wlr_wl_backend *)_backend;
if (!_backend) {
return;
}
for (size_t i = 0; i < backend->outputs->length; ++i) {
wlr_output_destroy(backend->outputs->items[i]);
}
for (size_t i = 0; i < backend->devices->length; ++i) {
wlr_input_device_destroy(backend->devices->items[i]);
}
list_free(backend->devices);
list_free(backend->outputs);
free(backend->seat_name);
wl_event_source_remove(backend->remote_display_src);
wlr_egl_free(&backend->egl);
if (backend->seat) wl_seat_destroy(backend->seat);
if (backend->shm) wl_shm_destroy(backend->shm);
if (backend->shell) zxdg_shell_v6_destroy(backend->shell);
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);
}
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
}
static struct wlr_backend_impl backend_impl = {
.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-21 00:22:21 +02:00
bool wlr_backend_is_wl(struct wlr_backend *b) {
return b->impl == &backend_impl;
}
struct wlr_wl_backend_output *wlr_wl_output_for_surface(
struct wlr_wl_backend *backend, struct wl_surface *surface) {
for (size_t i = 0; i < backend->outputs->length; ++i) {
struct wlr_wl_backend_output *output = backend->outputs->items[i];
if (output->surface == surface) {
return output;
}
}
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");
struct wlr_wl_backend *backend = calloc(1, sizeof(struct wlr_wl_backend));
if (!backend) {
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
return NULL;
}
wlr_backend_init(&backend->backend, &backend_impl);
if (!(backend->devices = list_create())) {
wlr_log(L_ERROR, "Could not allocate devices list");
goto error;
}
if (!(backend->outputs = list_create())) {
wlr_log(L_ERROR, "Could not allocate outputs list");
2017-06-19 19:40:58 +02:00
goto error;
}
backend->local_display = display;
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;
}
wlr_wl_registry_poll(backend);
if (!(backend->compositor) || (!(backend->shell))) {
wlr_log_errno(L_ERROR, "Could not obtain retrieve required globals");
return false;
}
wlr_egl_init(&backend->egl, EGL_PLATFORM_WAYLAND_EXT, backend->remote_display);
wlr_egl_bind_display(&backend->egl, backend->local_display);
return &backend->backend;
error:
if (backend) {
list_free(backend->devices);
list_free(backend->outputs);
}
free(backend);
return NULL;
2017-04-25 17:32:52 +02:00
}