wlroots/backend/backend.c

128 lines
3.0 KiB
C
Raw Normal View History

2017-05-07 14:00:23 +00:00
#include <wayland-server.h>
2017-06-02 00:29:10 +00:00
#include <unistd.h>
2017-05-07 14:00:23 +00:00
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
2017-06-10 16:21:54 +00:00
#include <libinput.h>
2017-07-11 07:18:34 +00:00
#include <wlr/backend/session.h>
2017-06-04 23:30:37 +00:00
#include <wlr/backend/interface.h>
2017-08-12 23:55:40 +00:00
#include <wlr/backend/drm.h>
#include <wlr/backend/libinput.h>
2017-06-19 17:40:58 +00:00
#include <wlr/backend/wayland.h>
2017-08-12 23:55:40 +00:00
#include <wlr/backend/multi.h>
2017-06-21 16:10:07 +00:00
#include <wlr/util/log.h>
2017-05-07 14:00:23 +00:00
void wlr_backend_init(struct wlr_backend *backend,
const struct wlr_backend_impl *impl) {
assert(backend);
2017-05-07 14:00:23 +00:00
backend->impl = impl;
2017-06-09 21:31:21 +00:00
wl_signal_init(&backend->events.input_add);
wl_signal_init(&backend->events.input_remove);
2017-05-07 14:00:23 +00:00
wl_signal_init(&backend->events.output_add);
wl_signal_init(&backend->events.output_remove);
}
bool wlr_backend_start(struct wlr_backend *backend) {
if (backend->impl->start) {
return backend->impl->start(backend);
}
return true;
2017-05-07 14:00:23 +00:00
}
void wlr_backend_destroy(struct wlr_backend *backend) {
if (backend->impl && backend->impl->destroy) {
backend->impl->destroy(backend);
} else {
free(backend);
}
2017-05-07 14:00:23 +00:00
}
2017-08-11 02:15:37 +00:00
struct wlr_egl *wlr_backend_get_egl(struct wlr_backend *backend) {
if (backend->impl->get_egl) {
return backend->impl->get_egl(backend);
2017-08-11 02:15:37 +00:00
}
return NULL;
2017-08-11 02:15:37 +00:00
}
2017-06-20 22:22:21 +00:00
static struct wlr_backend *attempt_wl_backend(struct wl_display *display) {
struct wlr_backend *backend = wlr_wl_backend_create(display);
if (backend) {
int outputs = 1;
const char *_outputs = getenv("WLR_WL_OUTPUTS");
if (_outputs) {
char *end;
outputs = (int)strtol(_outputs, &end, 10);
if (*end) {
wlr_log(L_ERROR, "WLR_WL_OUTPUTS specified with invalid integer, ignoring");
outputs = 1;
} else if (outputs < 0) {
wlr_log(L_ERROR, "WLR_WL_OUTPUTS specified with negative outputs, ignoring");
outputs = 1;
}
}
while (outputs--) {
wlr_wl_output_create(backend);
}
}
return backend;
}
struct wlr_backend *wlr_backend_autocreate(struct wl_display *display) {
2017-06-20 22:22:21 +00:00
struct wlr_backend *backend;
2017-06-19 20:39:20 +00:00
if (getenv("WAYLAND_DISPLAY") || getenv("_WAYLAND_DISPLAY")) {
2017-06-20 22:22:21 +00:00
backend = attempt_wl_backend(display);
if (backend) {
return backend;
}
2017-06-19 17:40:58 +00:00
}
2017-06-10 16:21:54 +00:00
2017-08-12 23:55:40 +00:00
if (getenv("DISPLAY")) {
wlr_log(L_ERROR, "X11 backend is not implemented"); // TODO
return NULL;
}
// Attempt DRM+libinput
struct wlr_session *session = wlr_session_create(display);
2017-08-12 23:55:40 +00:00
if (!session) {
wlr_log(L_ERROR, "Failed to start a DRM session");
return NULL;
}
2017-08-26 02:02:04 +00:00
int gpu = wlr_session_find_gpu(session);
2017-08-12 23:55:40 +00:00
if (gpu == -1) {
wlr_log(L_ERROR, "Failed to open DRM device");
2017-08-26 02:02:04 +00:00
goto error_session;
2017-08-12 23:55:40 +00:00
}
2017-08-26 02:02:04 +00:00
backend = wlr_multi_backend_create(session);
2017-08-12 23:55:40 +00:00
if (!backend) {
goto error_gpu;
}
2017-08-26 02:02:04 +00:00
struct wlr_backend *libinput = wlr_libinput_backend_create(display, session);
2017-08-12 23:55:40 +00:00
if (!libinput) {
goto error_multi;
}
2017-08-26 02:02:04 +00:00
struct wlr_backend *drm = wlr_drm_backend_create(display, session, gpu);
2017-08-12 23:55:40 +00:00
if (!drm) {
goto error_libinput;
}
wlr_multi_backend_add(backend, libinput);
wlr_multi_backend_add(backend, drm);
return backend;
error_libinput:
wlr_backend_destroy(libinput);
error_multi:
wlr_backend_destroy(backend);
error_gpu:
wlr_session_close_file(session, gpu);
error_session:
wlr_session_destroy(session);
2017-08-12 23:55:40 +00:00
return NULL;
}