2017-06-09 17:28:10 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <libinput.h>
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-09 17:28:10 +02:00
|
|
|
#include <wlr/backend/interface.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-06-10 17:58:25 +02:00
|
|
|
#include "backend/libinput.h"
|
2017-06-09 17:28:10 +02:00
|
|
|
|
|
|
|
static int wlr_libinput_open_restricted(const char *path,
|
2017-08-12 19:51:47 +02:00
|
|
|
int flags, void *_backend) {
|
|
|
|
struct wlr_libinput_backend *backend = _backend;
|
|
|
|
return wlr_session_open_file(backend->session, path);
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
static void wlr_libinput_close_restricted(int fd, void *_backend) {
|
|
|
|
struct wlr_libinput_backend *backend = _backend;
|
|
|
|
wlr_session_close_file(backend->session, fd);
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct libinput_interface libinput_impl = {
|
|
|
|
.open_restricted = wlr_libinput_open_restricted,
|
|
|
|
.close_restricted = wlr_libinput_close_restricted
|
|
|
|
};
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
static int wlr_libinput_readable(int fd, uint32_t mask, void *_backend) {
|
|
|
|
struct wlr_libinput_backend *backend = _backend;
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_dispatch(backend->libinput_context) != 0) {
|
2017-06-09 19:47:35 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to dispatch libinput");
|
|
|
|
// TODO: some kind of abort?
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
struct libinput_event *event;
|
2017-08-13 00:50:09 +02:00
|
|
|
while ((event = libinput_get_event(backend->libinput_context))) {
|
2017-08-12 19:51:47 +02:00
|
|
|
wlr_libinput_event(backend, event);
|
2017-08-12 00:02:04 +02:00
|
|
|
libinput_event_destroy(event);
|
2017-06-09 19:47:35 +02:00
|
|
|
}
|
2017-06-09 17:28:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-13 00:50:09 +02:00
|
|
|
static void wlr_libinput_log(struct libinput *libinput_context,
|
2017-06-09 17:28:10 +02:00
|
|
|
enum libinput_log_priority priority, const char *fmt, va_list args) {
|
|
|
|
_wlr_vlog(L_ERROR, fmt, args);
|
|
|
|
}
|
|
|
|
|
2017-08-13 15:59:14 +02:00
|
|
|
static bool wlr_libinput_backend_start(struct wlr_backend *_backend) {
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend *backend = (struct wlr_libinput_backend *)_backend;
|
2017-06-09 17:38:38 +02:00
|
|
|
wlr_log(L_DEBUG, "Initializing libinput");
|
2017-08-13 00:50:09 +02:00
|
|
|
backend->libinput_context = libinput_udev_create_context(&libinput_impl, backend,
|
2017-08-26 04:02:04 +02:00
|
|
|
backend->session->udev);
|
2017-08-13 00:50:09 +02:00
|
|
|
if (!backend->libinput_context) {
|
2017-06-09 17:38:38 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to create libinput context");
|
2017-06-09 17:28:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Let user customize seat used
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_udev_assign_seat(backend->libinput_context, "seat0") != 0) {
|
2017-06-09 17:38:38 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to assign libinput seat");
|
2017-06-09 17:28:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: More sophisticated logging
|
2017-08-13 00:50:09 +02:00
|
|
|
libinput_log_set_handler(backend->libinput_context, wlr_libinput_log);
|
|
|
|
libinput_log_set_priority(backend->libinput_context, LIBINPUT_LOG_PRIORITY_ERROR);
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2017-08-16 08:48:03 +02:00
|
|
|
int libinput_fd = libinput_get_fd(backend->libinput_context);
|
2017-08-16 13:24:46 +02:00
|
|
|
char *no_devs = getenv("WLR_LIBINPUT_NO_DEVICES");
|
|
|
|
if (no_devs) {
|
|
|
|
if (strcmp(no_devs, "1") != 0) {
|
|
|
|
no_devs = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!no_devs && backend->wlr_device_lists->length == 0) {
|
2017-08-16 08:48:03 +02:00
|
|
|
wlr_libinput_readable(libinput_fd, WL_EVENT_READABLE, backend);
|
|
|
|
if (backend->wlr_device_lists->length == 0) {
|
2017-08-16 13:24:46 +02:00
|
|
|
wlr_log(L_ERROR, "libinput initialization failed, no input devices");
|
|
|
|
wlr_log(L_ERROR, "Set WLR_LIBINPUT_NO_DEVICES=1 to suppress this check");
|
2017-08-16 08:48:03 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-09 17:28:10 +02:00
|
|
|
struct wl_event_loop *event_loop =
|
2017-08-12 19:51:47 +02:00
|
|
|
wl_display_get_event_loop(backend->display);
|
|
|
|
if (backend->input_event) {
|
|
|
|
wl_event_source_remove(backend->input_event);
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
2017-08-16 08:48:03 +02:00
|
|
|
backend->input_event = wl_event_loop_add_fd(event_loop, libinput_fd,
|
|
|
|
WL_EVENT_READABLE, wlr_libinput_readable, backend);
|
2017-08-12 19:51:47 +02:00
|
|
|
if (!backend->input_event) {
|
2017-06-09 17:38:38 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to create input event on event loop");
|
2017-06-09 17:28:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-06-09 17:38:38 +02:00
|
|
|
wlr_log(L_DEBUG, "libinput sucessfully initialized");
|
2017-06-09 17:28:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
static void wlr_libinput_backend_destroy(struct wlr_backend *_backend) {
|
|
|
|
if (!_backend) {
|
2017-08-11 19:17:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend *backend = (struct wlr_libinput_backend *)_backend;
|
2017-08-13 00:50:09 +02:00
|
|
|
for (size_t i = 0; i < backend->wlr_device_lists->length; i++) {
|
|
|
|
list_t *wlr_devices = backend->wlr_device_lists->items[i];
|
2017-08-11 21:02:40 +02:00
|
|
|
for (size_t j = 0; j < wlr_devices->length; j++) {
|
2017-08-13 00:50:09 +02:00
|
|
|
struct wlr_input_device *wlr_dev = wlr_devices->items[j];
|
|
|
|
wl_signal_emit(&backend->backend.events.input_remove, wlr_dev);
|
|
|
|
wlr_input_device_destroy(wlr_dev);
|
2017-08-11 21:02:40 +02:00
|
|
|
}
|
|
|
|
list_free(wlr_devices);
|
2017-08-11 19:17:03 +02:00
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
list_free(backend->wlr_device_lists);
|
2017-08-19 08:11:07 +02:00
|
|
|
wl_event_source_remove(backend->input_event);
|
2017-08-13 00:50:09 +02:00
|
|
|
libinput_unref(backend->libinput_context);
|
2017-08-12 19:51:47 +02:00
|
|
|
free(backend);
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct wlr_backend_impl backend_impl = {
|
2017-08-13 15:59:14 +02:00
|
|
|
.start = wlr_libinput_backend_start,
|
2017-06-09 17:28:10 +02:00
|
|
|
.destroy = wlr_libinput_backend_destroy
|
|
|
|
};
|
|
|
|
|
2017-08-13 23:05:57 +02:00
|
|
|
bool wlr_backend_is_libinput(struct wlr_backend *b) {
|
|
|
|
return b->impl == &backend_impl;
|
|
|
|
}
|
|
|
|
|
2017-06-21 03:31:29 +02:00
|
|
|
static void session_signal(struct wl_listener *listener, void *data) {
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend *backend = wl_container_of(listener, backend, session_signal);
|
2017-06-21 03:31:29 +02:00
|
|
|
struct wlr_session *session = data;
|
|
|
|
|
2017-08-13 00:50:09 +02:00
|
|
|
if (!backend->libinput_context) {
|
2017-06-21 03:31:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (session->active) {
|
2017-08-13 00:50:09 +02:00
|
|
|
libinput_resume(backend->libinput_context);
|
2017-06-21 03:31:29 +02:00
|
|
|
} else {
|
2017-08-13 00:50:09 +02:00
|
|
|
libinput_suspend(backend->libinput_context);
|
2017-06-21 03:31:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-09 17:28:10 +02:00
|
|
|
struct wlr_backend *wlr_libinput_backend_create(struct wl_display *display,
|
2017-08-26 04:02:04 +02:00
|
|
|
struct wlr_session *session) {
|
|
|
|
assert(display && session);
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend *backend = calloc(1, sizeof(struct wlr_libinput_backend));
|
2017-06-09 17:28:10 +02:00
|
|
|
if (!backend) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
2017-08-12 19:51:47 +02:00
|
|
|
return NULL;
|
2017-06-09 23:52:11 +02:00
|
|
|
}
|
2017-08-13 15:59:14 +02:00
|
|
|
wlr_backend_init(&backend->backend, &backend_impl);
|
2017-06-09 23:52:11 +02:00
|
|
|
|
2017-08-13 00:50:09 +02:00
|
|
|
if (!(backend->wlr_device_lists = list_create())) {
|
2017-06-09 23:52:11 +02:00
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
goto error_backend;
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
backend->session = session;
|
|
|
|
backend->display = display;
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
backend->session_signal.notify = session_signal;
|
|
|
|
wl_signal_add(&session->session_signal, &backend->session_signal);
|
2017-06-21 03:31:29 +02:00
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
return &backend->backend;
|
2017-06-09 23:52:11 +02:00
|
|
|
error_backend:
|
2017-08-12 19:51:47 +02:00
|
|
|
free(backend);
|
2017-06-09 23:52:11 +02:00
|
|
|
return NULL;
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
2017-08-13 01:55:40 +02:00
|
|
|
|
2017-08-14 14:54:53 +02:00
|
|
|
struct libinput_device *wlr_libinput_get_device_handle(struct wlr_input_device *_dev) {
|
|
|
|
struct wlr_libinput_input_device *dev = (struct wlr_libinput_input_device *)_dev;
|
|
|
|
return dev->handle;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|