wlroots-hyprland/backend/multi/backend.c

250 lines
7.4 KiB
C
Raw Normal View History

#define _POSIX_C_SOURCE 200112L
#include <assert.h>
2017-06-13 04:22:40 +02:00
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
2017-06-13 04:22:40 +02:00
#include <wlr/backend/interface.h>
2017-07-11 09:18:34 +02:00
#include <wlr/backend/session.h>
2017-06-21 18:10:07 +02:00
#include <wlr/util/log.h>
#include "backend/backend.h"
2018-02-12 21:29:23 +01:00
#include "backend/multi.h"
#include "util/signal.h"
2017-06-13 04:22:40 +02:00
struct subbackend_state {
struct wlr_backend *backend;
struct wlr_backend *container;
struct wl_listener new_input;
struct wl_listener new_output;
struct wl_listener destroy;
struct wl_list link;
2017-06-13 04:22:40 +02:00
};
2018-09-17 21:55:01 +02:00
static struct wlr_multi_backend *multi_backend_from_backend(
struct wlr_backend *wlr_backend) {
assert(wlr_backend_is_multi(wlr_backend));
return (struct wlr_multi_backend *)wlr_backend;
}
static bool multi_backend_start(struct wlr_backend *wlr_backend) {
2018-09-17 21:55:01 +02:00
struct wlr_multi_backend *backend = multi_backend_from_backend(wlr_backend);
struct subbackend_state *sub;
wl_list_for_each(sub, &backend->backends, link) {
if (!wlr_backend_start(sub->backend)) {
2018-07-09 23:49:54 +02:00
wlr_log(WLR_ERROR, "Failed to initialize backend.");
2017-06-13 04:22:40 +02:00
return false;
}
}
return true;
}
2017-12-20 00:33:26 +01:00
static void subbackend_state_destroy(struct subbackend_state *sub) {
wl_list_remove(&sub->new_input.link);
wl_list_remove(&sub->new_output.link);
wl_list_remove(&sub->destroy.link);
2017-12-20 00:33:26 +01:00
wl_list_remove(&sub->link);
free(sub);
}
static void multi_backend_destroy(struct wlr_backend *wlr_backend) {
2018-09-17 21:55:01 +02:00
struct wlr_multi_backend *backend = multi_backend_from_backend(wlr_backend);
wl_list_remove(&backend->display_destroy.link);
// Some backends may depend on other backends, ie. destroying a backend may
// also destroy other backends
while (!wl_list_empty(&backend->backends)) {
struct subbackend_state *sub =
wl_container_of(backend->backends.next, sub, link);
2017-06-13 04:22:40 +02:00
wlr_backend_destroy(sub->backend);
}
// Destroy this backend only after removing all sub-backends
2018-02-12 09:12:31 +01:00
wlr_signal_emit_safe(&wlr_backend->events.destroy, backend);
free(backend);
2017-06-13 04:22:40 +02:00
}
static struct wlr_renderer *multi_backend_get_renderer(
struct wlr_backend *backend) {
2018-09-17 21:55:01 +02:00
struct wlr_multi_backend *multi = multi_backend_from_backend(backend);
struct subbackend_state *sub;
wl_list_for_each(sub, &multi->backends, link) {
struct wlr_renderer *rend = wlr_backend_get_renderer(sub->backend);
if (rend != NULL) {
return rend;
}
}
return NULL;
}
static struct wlr_session *multi_backend_get_session(
struct wlr_backend *_backend) {
struct wlr_multi_backend *backend = multi_backend_from_backend(_backend);
return backend->session;
}
static clockid_t multi_backend_get_presentation_clock(
struct wlr_backend *backend) {
struct wlr_multi_backend *multi = multi_backend_from_backend(backend);
struct subbackend_state *sub;
wl_list_for_each(sub, &multi->backends, link) {
if (sub->backend->impl->get_presentation_clock) {
return wlr_backend_get_presentation_clock(sub->backend);
}
}
return CLOCK_MONOTONIC;
}
static int multi_backend_get_drm_fd(struct wlr_backend *backend) {
struct wlr_multi_backend *multi = multi_backend_from_backend(backend);
struct subbackend_state *sub;
wl_list_for_each(sub, &multi->backends, link) {
if (sub->backend->impl->get_drm_fd) {
return backend_get_drm_fd(sub->backend);
}
}
return -1;
}
2017-06-13 04:22:40 +02:00
struct wlr_backend_impl backend_impl = {
.start = multi_backend_start,
2017-08-11 04:15:37 +02:00
.destroy = multi_backend_destroy,
.get_renderer = multi_backend_get_renderer,
.get_session = multi_backend_get_session,
.get_presentation_clock = multi_backend_get_presentation_clock,
.get_drm_fd = multi_backend_get_drm_fd,
2017-06-13 04:22:40 +02:00
};
2017-12-21 14:13:36 +01:00
static void handle_display_destroy(struct wl_listener *listener, void *data) {
struct wlr_multi_backend *backend =
wl_container_of(listener, backend, display_destroy);
multi_backend_destroy((struct wlr_backend*)backend);
}
2017-12-20 00:25:46 +01:00
struct wlr_backend *wlr_multi_backend_create(struct wl_display *display) {
struct wlr_multi_backend *backend =
calloc(1, sizeof(struct wlr_multi_backend));
if (!backend) {
2018-07-09 23:49:54 +02:00
wlr_log(WLR_ERROR, "Backend allocation failed");
2017-06-13 04:22:40 +02:00
return NULL;
}
wl_list_init(&backend->backends);
wlr_backend_init(&backend->backend, &backend_impl);
2017-12-20 11:54:41 +01:00
wl_signal_init(&backend->events.backend_add);
wl_signal_init(&backend->events.backend_remove);
2017-12-21 14:13:36 +01:00
backend->display_destroy.notify = handle_display_destroy;
wl_display_add_destroy_listener(display, &backend->display_destroy);
return &backend->backend;
2017-06-13 04:22:40 +02:00
}
bool wlr_backend_is_multi(struct wlr_backend *b) {
return b->impl == &backend_impl;
}
static void new_input_reemit(struct wl_listener *listener, void *data) {
2017-06-13 04:22:40 +02:00
struct subbackend_state *state = wl_container_of(listener,
state, new_input);
wlr_signal_emit_safe(&state->container->events.new_input, data);
2017-06-13 04:22:40 +02:00
}
static void new_output_reemit(struct wl_listener *listener, void *data) {
2017-06-13 04:22:40 +02:00
struct subbackend_state *state = wl_container_of(listener,
state, new_output);
wlr_signal_emit_safe(&state->container->events.new_output, data);
2017-06-13 04:22:40 +02:00
}
2017-12-20 00:33:26 +01:00
static void handle_subbackend_destroy(struct wl_listener *listener,
void *data) {
struct subbackend_state *state = wl_container_of(listener, state, destroy);
2017-12-20 00:33:26 +01:00
subbackend_state_destroy(state);
}
2017-12-20 00:49:00 +01:00
static struct subbackend_state *multi_backend_get_subbackend(struct wlr_multi_backend *multi,
struct wlr_backend *backend) {
struct subbackend_state *sub = NULL;
wl_list_for_each(sub, &multi->backends, link) {
if (sub->backend == backend) {
return sub;
}
}
return NULL;
}
bool wlr_multi_backend_add(struct wlr_backend *_multi,
2017-06-13 04:22:40 +02:00
struct wlr_backend *backend) {
2018-09-17 21:55:01 +02:00
struct wlr_multi_backend *multi = multi_backend_from_backend(_multi);
2017-12-20 00:49:00 +01:00
if (multi_backend_get_subbackend(multi, backend)) {
// already added
return true;
2017-12-20 00:49:00 +01:00
}
struct wlr_renderer *multi_renderer =
multi_backend_get_renderer(&multi->backend);
struct wlr_renderer *backend_renderer = wlr_backend_get_renderer(backend);
if (multi_renderer != NULL && backend_renderer != NULL && multi_renderer != backend_renderer) {
2018-07-09 23:49:54 +02:00
wlr_log(WLR_ERROR, "Could not add backend: multiple renderers at the "
"same time aren't supported");
return false;
}
struct subbackend_state *sub = calloc(1, sizeof(struct subbackend_state));
if (sub == NULL) {
2018-07-09 23:49:54 +02:00
wlr_log(WLR_ERROR, "Could not add backend: allocation failed");
return false;
}
wl_list_insert(multi->backends.prev, &sub->link);
2017-06-13 04:22:40 +02:00
sub->backend = backend;
sub->container = &multi->backend;
2017-06-13 04:22:40 +02:00
wl_signal_add(&backend->events.destroy, &sub->destroy);
sub->destroy.notify = handle_subbackend_destroy;
2017-12-20 00:33:26 +01:00
wl_signal_add(&backend->events.new_input, &sub->new_input);
sub->new_input.notify = new_input_reemit;
2017-12-20 00:33:26 +01:00
wl_signal_add(&backend->events.new_output, &sub->new_output);
sub->new_output.notify = new_output_reemit;
2017-12-20 11:54:41 +01:00
2018-02-12 09:12:31 +01:00
wlr_signal_emit_safe(&multi->events.backend_add, backend);
return true;
2017-06-13 04:22:40 +02:00
}
2017-08-06 03:37:49 +02:00
2017-12-20 00:49:00 +01:00
void wlr_multi_backend_remove(struct wlr_backend *_multi,
struct wlr_backend *backend) {
2018-09-17 21:55:01 +02:00
struct wlr_multi_backend *multi = multi_backend_from_backend(_multi);
2017-12-20 00:49:00 +01:00
struct subbackend_state *sub =
multi_backend_get_subbackend(multi, backend);
if (sub) {
2018-02-12 09:12:31 +01:00
wlr_signal_emit_safe(&multi->events.backend_remove, backend);
2017-12-20 00:49:00 +01:00
subbackend_state_destroy(sub);
}
}
bool wlr_multi_is_empty(struct wlr_backend *_backend) {
assert(wlr_backend_is_multi(_backend));
struct wlr_multi_backend *backend = (struct wlr_multi_backend *)_backend;
return wl_list_length(&backend->backends) < 1;
}
2018-09-19 13:53:51 +02:00
void wlr_multi_for_each_backend(struct wlr_backend *_backend,
void (*callback)(struct wlr_backend *backend, void *data), void *data) {
assert(wlr_backend_is_multi(_backend));
struct wlr_multi_backend *backend = (struct wlr_multi_backend *)_backend;
struct subbackend_state *sub;
wl_list_for_each(sub, &backend->backends, link) {
callback(sub->backend, data);
}
}