wlroots-hyprland/backend/headless/backend.c

89 lines
2.4 KiB
C
Raw Normal View History

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));
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;
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);
}
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;
}
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) {
wlr_output_destroy(&output->wlr_output);
}
2017-12-17 13:35:07 +01:00
wl_list_remove(&backend->event_loop_destroy.link);
2017-12-17 12:56:42 +01:00
free(backend);
}
static uint32_t get_buffer_caps(struct wlr_backend *wlr_backend) {
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,
.get_buffer_caps = get_buffer_caps,
2017-12-17 12:56:42 +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 =
wl_container_of(listener, backend, event_loop_destroy);
2017-12-17 12:56:42 +01:00
backend_destroy(&backend->backend);
}
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
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");
return NULL;
}
wlr_backend_init(&backend->backend, &backend_impl);
backend->event_loop = loop;
wl_list_init(&backend->outputs);
2021-01-07 19:24:13 +01:00
backend->event_loop_destroy.notify = handle_event_loop_destroy;
wl_event_loop_add_destroy_listener(loop, &backend->event_loop_destroy);
return &backend->backend;
2017-12-17 12:56:42 +01:00
}
bool wlr_backend_is_headless(struct wlr_backend *backend) {
return backend->impl == &backend_impl;
}