2018-09-17 21:46:39 +02:00
|
|
|
#include <assert.h>
|
2017-12-17 12:56:42 +01:00
|
|
|
#include <stdlib.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/interfaces/wlr_input_device.h>
|
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
2018-01-23 22:06:54 +01:00
|
|
|
#include <wlr/render/egl.h>
|
|
|
|
#include <wlr/render/gles2.h>
|
2017-12-17 12:56:42 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include "backend/headless.h"
|
|
|
|
#include "glapi.h"
|
2018-09-17 21:46:39 +02:00
|
|
|
#include "util/signal.h"
|
|
|
|
|
|
|
|
struct wlr_headless_backend *headless_backend_from_backend(
|
|
|
|
struct wlr_backend *wlr_backend) {
|
|
|
|
assert(wlr_backend_is_headless(wlr_backend));
|
|
|
|
return (struct wlr_headless_backend *)wlr_backend;
|
|
|
|
}
|
2017-12-17 12:56:42 +01:00
|
|
|
|
|
|
|
static bool backend_start(struct wlr_backend *wlr_backend) {
|
|
|
|
struct wlr_headless_backend *backend =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_backend_from_backend(wlr_backend);
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Starting headless backend");
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output;
|
2017-12-17 18:02:55 +01:00
|
|
|
wl_list_for_each(output, &backend->outputs, link) {
|
|
|
|
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
|
2018-01-04 12:46:15 +01:00
|
|
|
wlr_output_update_enabled(&output->wlr_output, true);
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_output,
|
2017-12-17 18:49:20 +01:00
|
|
|
&output->wlr_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_headless_input_device *input_device;
|
|
|
|
wl_list_for_each(input_device, &backend->input_devices,
|
|
|
|
wlr_input_device.link) {
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input,
|
2017-12-17 18:49:20 +01:00
|
|
|
&input_device->wlr_input_device);
|
2017-12-17 12:56:42 +01:00
|
|
|
}
|
|
|
|
|
2017-12-17 18:02:55 +01:00
|
|
|
backend->started = true;
|
2017-12-17 12:56:42 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void backend_destroy(struct wlr_backend *wlr_backend) {
|
|
|
|
struct wlr_headless_backend *backend =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_backend_from_backend(wlr_backend);
|
2017-12-17 12:56:42 +01:00
|
|
|
if (!wlr_backend) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_list_remove(&backend->display_destroy.link);
|
2017-12-17 13:35:07 +01:00
|
|
|
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output, *output_tmp;
|
|
|
|
wl_list_for_each_safe(output, output_tmp, &backend->outputs, link) {
|
2017-12-17 18:02:55 +01:00
|
|
|
wlr_output_destroy(&output->wlr_output);
|
|
|
|
}
|
2017-12-17 13:35:07 +01:00
|
|
|
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_input_device *input_device, *input_device_tmp;
|
|
|
|
wl_list_for_each_safe(input_device, input_device_tmp,
|
|
|
|
&backend->input_devices, wlr_input_device.link) {
|
|
|
|
wlr_input_device_destroy(&input_device->wlr_input_device);
|
|
|
|
}
|
|
|
|
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&wlr_backend->events.destroy, backend);
|
2018-01-30 19:45:57 +01:00
|
|
|
|
2018-04-24 23:45:44 +02:00
|
|
|
wlr_renderer_destroy(backend->renderer);
|
2017-12-17 12:56:42 +01:00
|
|
|
wlr_egl_finish(&backend->egl);
|
|
|
|
free(backend);
|
|
|
|
}
|
|
|
|
|
2018-01-23 22:06:54 +01:00
|
|
|
static struct wlr_renderer *backend_get_renderer(
|
|
|
|
struct wlr_backend *wlr_backend) {
|
|
|
|
struct wlr_headless_backend *backend =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_backend_from_backend(wlr_backend);
|
2018-01-23 22:06:54 +01:00
|
|
|
return backend->renderer;
|
|
|
|
}
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
static const struct wlr_backend_impl backend_impl = {
|
|
|
|
.start = backend_start,
|
|
|
|
.destroy = backend_destroy,
|
2018-01-23 22:06:54 +01:00
|
|
|
.get_renderer = backend_get_renderer,
|
2017-12-17 12:56:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_headless_backend *backend =
|
|
|
|
wl_container_of(listener, backend, display_destroy);
|
|
|
|
backend_destroy(&backend->backend);
|
|
|
|
}
|
|
|
|
|
2018-05-25 12:14:35 +02:00
|
|
|
struct wlr_backend *wlr_headless_backend_create(struct wl_display *display,
|
|
|
|
wlr_renderer_create_func_t create_renderer_func) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Creating headless backend");
|
2017-12-17 12:56:42 +01:00
|
|
|
|
|
|
|
struct wlr_headless_backend *backend =
|
|
|
|
calloc(1, sizeof(struct wlr_headless_backend));
|
|
|
|
if (!backend) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to allocate wlr_headless_backend");
|
2017-12-17 12:56:42 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
wlr_backend_init(&backend->backend, &backend_impl);
|
|
|
|
backend->display = display;
|
2017-12-17 13:35:07 +01:00
|
|
|
wl_list_init(&backend->outputs);
|
2017-12-17 18:49:20 +01:00
|
|
|
wl_list_init(&backend->input_devices);
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2017-12-17 23:51:04 +01:00
|
|
|
static const EGLint config_attribs[] = {
|
|
|
|
EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
|
|
|
|
EGL_ALPHA_SIZE, 0,
|
2018-11-04 09:23:57 +01:00
|
|
|
EGL_BLUE_SIZE, 1,
|
|
|
|
EGL_GREEN_SIZE, 1,
|
|
|
|
EGL_RED_SIZE, 1,
|
2017-12-17 23:51:04 +01:00
|
|
|
EGL_NONE,
|
|
|
|
};
|
2018-05-25 12:14:35 +02:00
|
|
|
|
|
|
|
if (!create_renderer_func) {
|
|
|
|
create_renderer_func = wlr_renderer_autocreate;
|
2017-12-17 23:51:04 +01:00
|
|
|
}
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2018-09-17 21:46:39 +02:00
|
|
|
backend->renderer = create_renderer_func(&backend->egl,
|
|
|
|
EGL_PLATFORM_SURFACELESS_MESA, NULL, (EGLint*)config_attribs, 0);
|
2018-05-25 12:14:35 +02:00
|
|
|
if (!backend->renderer) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create renderer");
|
2018-05-25 12:14:35 +02:00
|
|
|
free(backend);
|
|
|
|
return NULL;
|
2018-01-23 22:06:54 +01:00
|
|
|
}
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
backend->display_destroy.notify = handle_display_destroy;
|
|
|
|
wl_display_add_destroy_listener(display, &backend->display_destroy);
|
|
|
|
|
|
|
|
return &backend->backend;
|
|
|
|
}
|
2017-12-17 18:02:55 +01:00
|
|
|
|
|
|
|
bool wlr_backend_is_headless(struct wlr_backend *backend) {
|
|
|
|
return backend->impl == &backend_impl;
|
|
|
|
}
|