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_output.h>
|
2017-12-17 12:56:42 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include "backend/headless.h"
|
2018-09-17 21:46:39 +02:00
|
|
|
|
|
|
|
struct wlr_headless_backend *headless_backend_from_backend(
|
|
|
|
struct wlr_backend *wlr_backend) {
|
|
|
|
assert(wlr_backend_is_headless(wlr_backend));
|
2023-07-11 17:54:08 +02:00
|
|
|
struct wlr_headless_backend *backend = wl_container_of(wlr_backend, backend, backend);
|
|
|
|
return backend;
|
2018-09-17 21:46:39 +02:00
|
|
|
}
|
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) {
|
2022-08-18 13:16:16 +02:00
|
|
|
wl_signal_emit_mutable(&backend->backend.events.new_output,
|
2017-12-17 18:49:20 +01:00
|
|
|
&output->wlr_output);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-05-15 20:18:22 +02:00
|
|
|
wlr_backend_finish(wlr_backend);
|
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
|
|
|
|
2023-11-23 13:42:11 +01:00
|
|
|
wl_list_remove(&backend->event_loop_destroy.link);
|
2018-01-30 19:45:57 +01:00
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
free(backend);
|
|
|
|
}
|
|
|
|
|
2021-04-29 09:18:19 +02:00
|
|
|
static uint32_t get_buffer_caps(struct wlr_backend *wlr_backend) {
|
2021-04-28 16:09:33 +02:00
|
|
|
return WLR_BUFFER_CAP_DATA_PTR
|
|
|
|
| WLR_BUFFER_CAP_DMABUF
|
|
|
|
| WLR_BUFFER_CAP_SHM;
|
|
|
|
}
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
static const struct wlr_backend_impl backend_impl = {
|
|
|
|
.start = backend_start,
|
|
|
|
.destroy = backend_destroy,
|
2021-04-29 09:18:19 +02:00
|
|
|
.get_buffer_caps = get_buffer_caps,
|
2017-12-17 12:56:42 +01:00
|
|
|
};
|
|
|
|
|
2023-11-23 13:42:11 +01:00
|
|
|
static void handle_event_loop_destroy(struct wl_listener *listener, void *data) {
|
2017-12-17 12:56:42 +01:00
|
|
|
struct wlr_headless_backend *backend =
|
2023-11-23 13:42:11 +01:00
|
|
|
wl_container_of(listener, backend, event_loop_destroy);
|
2017-12-17 12:56:42 +01:00
|
|
|
backend_destroy(&backend->backend);
|
|
|
|
}
|
|
|
|
|
2023-11-23 13:42:11 +01:00
|
|
|
struct wlr_backend *wlr_headless_backend_create(struct wl_event_loop *loop) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Creating headless backend");
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2023-10-03 07:51:07 +02:00
|
|
|
struct wlr_headless_backend *backend = calloc(1, sizeof(*backend));
|
2021-01-07 19:24:13 +01:00
|
|
|
if (!backend) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to allocate wlr_headless_backend");
|
2020-12-04 14:30:13 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-25 10:50:28 +01:00
|
|
|
wlr_backend_init(&backend->backend, &backend_impl);
|
2020-12-04 14:30:13 +01:00
|
|
|
|
2023-11-23 13:42:11 +01:00
|
|
|
backend->event_loop = loop;
|
2021-11-25 10:50:28 +01:00
|
|
|
wl_list_init(&backend->outputs);
|
2021-01-07 19:24:13 +01:00
|
|
|
|
2023-11-23 13:42:11 +01:00
|
|
|
backend->event_loop_destroy.notify = handle_event_loop_destroy;
|
|
|
|
wl_event_loop_add_destroy_listener(loop, &backend->event_loop_destroy);
|
2020-04-06 13:27:05 +02:00
|
|
|
|
|
|
|
return &backend->backend;
|
2017-12-17 12:56:42 +01:00
|
|
|
}
|
2017-12-17 18:02:55 +01:00
|
|
|
|
|
|
|
bool wlr_backend_is_headless(struct wlr_backend *backend) {
|
|
|
|
return backend->impl == &backend_impl;
|
|
|
|
}
|