2017-04-25 15:32:52 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <wayland-server.h>
|
2017-04-25 19:06:58 +00:00
|
|
|
#include <assert.h>
|
2017-06-19 15:46:50 +00:00
|
|
|
#include <wlr/backend/interface.h>
|
2017-06-19 17:05:10 +00:00
|
|
|
#include <wlr/types.h>
|
2017-04-25 15:32:52 +00:00
|
|
|
#include "backend/wayland.h"
|
2017-04-25 19:06:58 +00:00
|
|
|
#include "common/log.h"
|
2017-04-25 15:32:52 +00:00
|
|
|
|
2017-06-19 15:46:50 +00: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.
|
|
|
|
*/
|
|
|
|
static bool wlr_wl_backend_init(struct wlr_backend_state* state) {
|
2017-06-19 17:40:58 +00:00
|
|
|
wlr_log(L_INFO, "Initializating wayland backend");
|
|
|
|
|
2017-06-19 15:46:50 +00:00
|
|
|
state->remote_display = wl_display_connect(getenv("_WAYLAND_DISPLAY"));
|
|
|
|
if (!state->remote_display) {
|
2017-06-19 17:40:58 +00:00
|
|
|
wlr_log_errno(L_ERROR, "Could not connect to remote display");
|
2017-06-19 15:46:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(state->registry = wl_display_get_registry(state->remote_display))) {
|
2017-06-19 17:40:58 +00:00
|
|
|
wlr_log_errno(L_ERROR, "Could not obtain reference to remote registry");
|
2017-06-19 15:46:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_wlb_registry_poll(state);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wlr_wl_backend_destroy(struct wlr_backend_state *state) {
|
|
|
|
if (!state) {
|
2017-04-25 19:06:58 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-06-19 15:46:50 +00:00
|
|
|
|
2017-04-26 01:26:29 +00:00
|
|
|
// TODO: Free surfaces
|
2017-06-19 15:46:50 +00:00
|
|
|
for (size_t i = 0; state->outputs && i < state->outputs->length; ++i) {
|
2017-06-19 17:05:10 +00:00
|
|
|
struct wlr_output *output = state->outputs->items[i];
|
|
|
|
wlr_output_destroy(output);
|
2017-04-26 01:26:29 +00:00
|
|
|
}
|
2017-06-19 15:46:50 +00:00
|
|
|
|
|
|
|
list_free(state->outputs);
|
2017-06-19 17:05:10 +00:00
|
|
|
if (state->seat) wl_seat_destroy(state->seat);
|
2017-06-19 15:46:50 +00:00
|
|
|
if (state->shm) wl_shm_destroy(state->shm);
|
|
|
|
if (state->shell) wl_shell_destroy(state->shell);
|
|
|
|
if (state->compositor) wl_compositor_destroy(state->compositor);
|
|
|
|
if (state->registry) wl_registry_destroy(state->registry);
|
|
|
|
if (state->remote_display) wl_display_disconnect(state->remote_display);
|
|
|
|
free(state);
|
2017-04-25 19:06:58 +00:00
|
|
|
}
|
|
|
|
|
2017-06-19 15:46:50 +00:00
|
|
|
static struct wlr_backend_impl backend_impl = {
|
|
|
|
.init = wlr_wl_backend_init,
|
|
|
|
.destroy = wlr_wl_backend_destroy
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct wlr_backend *wlr_wl_backend_create(struct wl_display *display,
|
|
|
|
size_t outputs) {
|
2017-06-19 17:40:58 +00:00
|
|
|
wlr_log(L_INFO, "Creating wayland backend");
|
2017-06-19 15:46:50 +00:00
|
|
|
|
|
|
|
struct wlr_backend_state *state = calloc(1, sizeof(struct wlr_backend_state));
|
|
|
|
if (!state) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
return NULL;
|
2017-04-25 19:06:58 +00:00
|
|
|
}
|
2017-06-19 15:46:50 +00:00
|
|
|
|
|
|
|
struct wlr_backend *backend = wlr_backend_create(&backend_impl, state);
|
|
|
|
if (!backend) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
return NULL;
|
2017-04-25 19:06:58 +00:00
|
|
|
}
|
2017-06-19 15:46:50 +00:00
|
|
|
|
|
|
|
if (!(state->outputs = list_create())) {
|
|
|
|
wlr_log(L_ERROR, "Could not allocate output list");
|
2017-04-25 19:06:58 +00:00
|
|
|
goto error;
|
|
|
|
}
|
2017-06-19 17:05:10 +00:00
|
|
|
|
2017-06-19 17:40:58 +00:00
|
|
|
if (!(state->devices = list_create())) {
|
|
|
|
wlr_log(L_ERROR, "Could not allocate devices list");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2017-06-19 15:46:50 +00:00
|
|
|
state->local_display = display;
|
2017-06-19 17:05:10 +00:00
|
|
|
state->backend = backend;
|
2017-06-19 15:46:50 +00:00
|
|
|
|
2017-04-25 15:32:52 +00:00
|
|
|
return backend;
|
2017-06-19 15:46:50 +00:00
|
|
|
|
2017-04-25 19:06:58 +00:00
|
|
|
error:
|
2017-06-19 15:46:50 +00:00
|
|
|
free(state);
|
|
|
|
free(backend);
|
2017-04-25 19:06:58 +00:00
|
|
|
return NULL;
|
2017-04-25 15:32:52 +00:00
|
|
|
}
|