2017-06-09 17:28:10 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <libinput.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2020-11-11 14:16:41 +01:00
|
|
|
#include <stdio.h>
|
2017-06-09 17:28:10 +02:00
|
|
|
#include <wlr/backend/interface.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/session.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"
|
2022-08-19 16:10:52 +02:00
|
|
|
#include "util/env.h"
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2018-09-17 21:53:03 +02:00
|
|
|
static struct wlr_libinput_backend *get_libinput_backend_from_backend(
|
|
|
|
struct wlr_backend *wlr_backend) {
|
|
|
|
assert(wlr_backend_is_libinput(wlr_backend));
|
2023-07-11 17:54:08 +02:00
|
|
|
struct wlr_libinput_backend *backend = wl_container_of(wlr_backend, backend, backend);
|
|
|
|
return backend;
|
2018-09-17 21:53:03 +02:00
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static int libinput_open_restricted(const char *path,
|
2017-08-12 19:51:47 +02:00
|
|
|
int flags, void *_backend) {
|
|
|
|
struct wlr_libinput_backend *backend = _backend;
|
2020-11-06 10:16:07 +01:00
|
|
|
struct wlr_device *dev = wlr_session_open_file(backend->session, path);
|
|
|
|
if (dev == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return dev->fd;
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void libinput_close_restricted(int fd, void *_backend) {
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend *backend = _backend;
|
2020-11-06 10:16:07 +01:00
|
|
|
|
|
|
|
struct wlr_device *dev;
|
|
|
|
bool found = false;
|
|
|
|
wl_list_for_each(dev, &backend->session->devices, link) {
|
|
|
|
if (dev->fd == fd) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found) {
|
|
|
|
wlr_session_close_file(backend->session, dev);
|
|
|
|
}
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct libinput_interface libinput_impl = {
|
2018-04-26 00:51:00 +02:00
|
|
|
.open_restricted = libinput_open_restricted,
|
|
|
|
.close_restricted = libinput_close_restricted
|
2017-06-09 17:28:10 +02:00
|
|
|
};
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static int handle_libinput_readable(int fd, uint32_t mask, void *_backend) {
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend *backend = _backend;
|
2021-04-14 22:35:05 +02:00
|
|
|
int ret = libinput_dispatch(backend->libinput_context);
|
|
|
|
if (ret != 0) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to dispatch libinput: %s", strerror(-ret));
|
2023-10-31 20:33:03 +01:00
|
|
|
wlr_backend_destroy(&backend->backend);
|
2017-06-09 19:47:35 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
struct libinput_event *event;
|
2017-08-13 00:50:09 +02:00
|
|
|
while ((event = libinput_get_event(backend->libinput_context))) {
|
2018-04-26 00:24:58 +02:00
|
|
|
handle_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;
|
|
|
|
}
|
|
|
|
|
2020-10-10 16:47:29 +02:00
|
|
|
static enum wlr_log_importance libinput_log_priority_to_wlr(
|
|
|
|
enum libinput_log_priority priority) {
|
|
|
|
switch (priority) {
|
|
|
|
case LIBINPUT_LOG_PRIORITY_ERROR:
|
|
|
|
return WLR_ERROR;
|
|
|
|
case LIBINPUT_LOG_PRIORITY_INFO:
|
|
|
|
return WLR_INFO;
|
|
|
|
default:
|
|
|
|
return WLR_DEBUG;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void log_libinput(struct libinput *libinput_context,
|
2017-06-09 17:28:10 +02:00
|
|
|
enum libinput_log_priority priority, const char *fmt, va_list args) {
|
2020-10-10 16:47:29 +02:00
|
|
|
enum wlr_log_importance importance = libinput_log_priority_to_wlr(priority);
|
|
|
|
static char wlr_fmt[1024];
|
|
|
|
snprintf(wlr_fmt, sizeof(wlr_fmt), "[libinput] %s", fmt);
|
|
|
|
_wlr_vlog(importance, wlr_fmt, args);
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
|
|
|
|
2018-09-17 21:53:03 +02:00
|
|
|
static bool backend_start(struct wlr_backend *wlr_backend) {
|
2017-12-07 23:44:59 +01:00
|
|
|
struct wlr_libinput_backend *backend =
|
2018-09-17 21:53:03 +02:00
|
|
|
get_libinput_backend_from_backend(wlr_backend);
|
2021-08-19 20:47:36 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Starting libinput backend");
|
2017-12-07 23:44:59 +01:00
|
|
|
|
|
|
|
backend->libinput_context = libinput_udev_create_context(&libinput_impl,
|
|
|
|
backend, backend->session->udev);
|
2017-08-13 00:50:09 +02:00
|
|
|
if (!backend->libinput_context) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create libinput context");
|
2017-06-09 17:28:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-14 10:46:16 +02:00
|
|
|
if (libinput_udev_assign_seat(backend->libinput_context,
|
|
|
|
backend->session->seat) != 0) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to assign libinput seat");
|
2017-06-09 17:28:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: More sophisticated logging
|
2018-04-26 00:51:00 +02:00
|
|
|
libinput_log_set_handler(backend->libinput_context, log_libinput);
|
2017-08-13 00:50:09 +02:00
|
|
|
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);
|
2022-08-19 16:10:52 +02:00
|
|
|
|
|
|
|
if (!env_parse_bool("WLR_LIBINPUT_NO_DEVICES") && wl_list_empty(&backend->devices)) {
|
2018-04-26 00:51:00 +02:00
|
|
|
handle_libinput_readable(libinput_fd, WL_EVENT_READABLE, backend);
|
2022-02-24 21:53:54 +01:00
|
|
|
if (wl_list_empty(&backend->devices)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "libinput initialization failed, no input devices");
|
|
|
|
wlr_log(WLR_ERROR, "Set WLR_LIBINPUT_NO_DEVICES=1 to suppress this check");
|
2017-08-16 08:48:03 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
if (backend->input_event) {
|
|
|
|
wl_event_source_remove(backend->input_event);
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
2023-11-23 13:50:32 +01:00
|
|
|
backend->input_event = wl_event_loop_add_fd(backend->session->event_loop, libinput_fd,
|
2018-04-26 00:51:00 +02:00
|
|
|
WL_EVENT_READABLE, handle_libinput_readable, backend);
|
2017-08-12 19:51:47 +02:00
|
|
|
if (!backend->input_event) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create input event on event loop");
|
2017-06-09 17:28:10 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_DEBUG, "libinput successfully initialized");
|
2017-06-09 17:28:10 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void backend_destroy(struct wlr_backend *wlr_backend) {
|
2018-01-30 19:45:57 +01:00
|
|
|
if (!wlr_backend) {
|
2017-08-11 19:17:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-11-19 00:17:40 +01:00
|
|
|
struct wlr_libinput_backend *backend =
|
2018-09-17 21:53:03 +02:00
|
|
|
get_libinput_backend_from_backend(wlr_backend);
|
2017-12-07 23:44:59 +01:00
|
|
|
|
2022-02-22 22:17:48 +01:00
|
|
|
struct wlr_libinput_input_device *dev, *tmp;
|
|
|
|
wl_list_for_each_safe(dev, tmp, &backend->devices, link) {
|
|
|
|
destroy_libinput_input_device(dev);
|
|
|
|
}
|
|
|
|
|
2021-04-29 00:07:31 +02:00
|
|
|
wlr_backend_finish(wlr_backend);
|
2018-01-30 19:45:57 +01:00
|
|
|
|
2019-11-30 11:57:37 +01:00
|
|
|
wl_list_remove(&backend->session_destroy.link);
|
2017-12-07 23:44:59 +01:00
|
|
|
wl_list_remove(&backend->session_signal.link);
|
|
|
|
|
2018-02-25 03:26:56 +01:00
|
|
|
if (backend->input_event) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static const struct wlr_backend_impl backend_impl = {
|
|
|
|
.start = backend_start,
|
|
|
|
.destroy = backend_destroy,
|
2017-06-09 17:28:10 +02:00
|
|
|
};
|
|
|
|
|
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-12-07 23:44:59 +01:00
|
|
|
struct wlr_libinput_backend *backend =
|
|
|
|
wl_container_of(listener, backend, session_signal);
|
2020-11-06 11:34:55 +01:00
|
|
|
struct wlr_session *session = backend->session;
|
2017-06-21 03:31:29 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-30 11:57:37 +01:00
|
|
|
static void handle_session_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_libinput_backend *backend =
|
|
|
|
wl_container_of(listener, backend, session_destroy);
|
|
|
|
backend_destroy(&backend->backend);
|
|
|
|
}
|
|
|
|
|
2023-11-23 13:50:32 +01:00
|
|
|
struct wlr_backend *wlr_libinput_backend_create(struct wlr_session *session) {
|
2023-10-03 07:51:07 +02:00
|
|
|
struct wlr_libinput_backend *backend = calloc(1, sizeof(*backend));
|
2017-06-09 17:28:10 +02:00
|
|
|
if (!backend) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_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
|
|
|
|
2022-02-22 22:17:48 +01:00
|
|
|
wl_list_init(&backend->devices);
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
backend->session = session;
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
backend->session_signal.notify = session_signal;
|
2020-11-06 11:34:55 +01:00
|
|
|
wl_signal_add(&session->events.active, &backend->session_signal);
|
2017-06-21 03:31:29 +02:00
|
|
|
|
2019-11-30 11:57:37 +01:00
|
|
|
backend->session_destroy.notify = handle_session_destroy;
|
|
|
|
wl_signal_add(&session->events.destroy, &backend->session_destroy);
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
return &backend->backend;
|
2017-06-09 17:28:10 +02:00
|
|
|
}
|
2017-08-13 01:55:40 +02:00
|
|
|
|
2018-09-17 21:53:03 +02:00
|
|
|
struct libinput_device *wlr_libinput_get_device_handle(
|
|
|
|
struct wlr_input_device *wlr_dev) {
|
2022-02-23 16:42:20 +01:00
|
|
|
struct wlr_libinput_input_device *dev = NULL;
|
|
|
|
switch (wlr_dev->type) {
|
|
|
|
case WLR_INPUT_DEVICE_KEYBOARD:
|
2022-06-20 16:57:29 +02:00
|
|
|
dev = device_from_keyboard(wlr_keyboard_from_input_device(wlr_dev));
|
2022-02-23 16:42:20 +01:00
|
|
|
break;
|
2022-02-28 17:57:35 +01:00
|
|
|
case WLR_INPUT_DEVICE_POINTER:
|
2022-06-20 16:57:29 +02:00
|
|
|
dev = device_from_pointer(wlr_pointer_from_input_device(wlr_dev));
|
2022-02-28 17:57:35 +01:00
|
|
|
break;
|
2022-02-23 19:41:34 +01:00
|
|
|
case WLR_INPUT_DEVICE_SWITCH:
|
2022-06-20 16:57:29 +02:00
|
|
|
dev = device_from_switch(wlr_switch_from_input_device(wlr_dev));
|
2022-02-23 19:41:34 +01:00
|
|
|
break;
|
2022-02-23 20:06:02 +01:00
|
|
|
case WLR_INPUT_DEVICE_TOUCH:
|
2022-06-20 16:57:29 +02:00
|
|
|
dev = device_from_touch(wlr_touch_from_input_device(wlr_dev));
|
2022-02-23 20:06:02 +01:00
|
|
|
break;
|
2022-02-24 17:00:11 +01:00
|
|
|
case WLR_INPUT_DEVICE_TABLET_TOOL:
|
2022-06-20 16:57:29 +02:00
|
|
|
dev = device_from_tablet(wlr_tablet_from_input_device(wlr_dev));
|
2022-02-24 17:00:11 +01:00
|
|
|
break;
|
2022-02-24 21:30:26 +01:00
|
|
|
case WLR_INPUT_DEVICE_TABLET_PAD:
|
2022-06-20 16:57:29 +02:00
|
|
|
dev = device_from_tablet_pad(wlr_tablet_pad_from_input_device(wlr_dev));
|
2022-02-23 16:42:20 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-08-14 14:54:53 +02:00
|
|
|
return dev->handle;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
2018-04-03 18:50:05 +02:00
|
|
|
|
|
|
|
uint32_t usec_to_msec(uint64_t usec) {
|
|
|
|
return (uint32_t)(usec / 1000);
|
|
|
|
}
|