2018-04-29 13:15:54 +02:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2017-06-09 23:31:21 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <libinput.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <wayland-util.h>
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/interfaces/wlr_input_device.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"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2017-06-09 23:31:21 +02:00
|
|
|
|
2017-06-10 17:58:25 +02:00
|
|
|
struct wlr_input_device *get_appropriate_device(
|
2017-06-09 23:52:11 +02:00
|
|
|
enum wlr_input_device_type desired_type,
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wl_list *wlr_devices = libinput_device_get_user_data(libinput_dev);
|
2017-08-13 00:50:09 +02:00
|
|
|
if (!wlr_devices) {
|
2017-06-09 23:52:11 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wlr_input_device *dev;
|
|
|
|
wl_list_for_each(dev, wlr_devices, link) {
|
2017-06-09 23:52:11 +02:00
|
|
|
if (dev->type == desired_type) {
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void input_device_destroy(struct wlr_input_device *_dev) {
|
2017-08-14 14:54:53 +02:00
|
|
|
struct wlr_libinput_input_device *dev = (struct wlr_libinput_input_device *)_dev;
|
|
|
|
libinput_device_unref(dev->handle);
|
2017-11-01 19:35:39 +01:00
|
|
|
wl_list_remove(&dev->wlr_input_device.link);
|
2017-08-14 14:54:53 +02:00
|
|
|
free(dev);
|
2017-06-10 18:21:54 +02:00
|
|
|
}
|
|
|
|
|
2018-03-06 07:59:10 +01:00
|
|
|
static const struct wlr_input_device_impl input_device_impl = {
|
2018-04-26 00:51:00 +02:00
|
|
|
.destroy = input_device_destroy,
|
2017-06-10 18:21:54 +02:00
|
|
|
};
|
|
|
|
|
2017-06-14 17:40:03 +02:00
|
|
|
static struct wlr_input_device *allocate_device(
|
2017-08-13 00:50:09 +02:00
|
|
|
struct wlr_libinput_backend *backend, struct libinput_device *libinput_dev,
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wl_list *wlr_devices, enum wlr_input_device_type type) {
|
2017-08-13 00:50:09 +02:00
|
|
|
int vendor = libinput_device_get_id_vendor(libinput_dev);
|
|
|
|
int product = libinput_device_get_id_product(libinput_dev);
|
|
|
|
const char *name = libinput_device_get_name(libinput_dev);
|
2017-08-15 07:56:47 +02:00
|
|
|
struct wlr_libinput_input_device *wlr_libinput_dev;
|
|
|
|
if (!(wlr_libinput_dev = calloc(1, sizeof(struct wlr_libinput_input_device)))) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-08-14 14:54:53 +02:00
|
|
|
struct wlr_input_device *wlr_dev = &wlr_libinput_dev->wlr_input_device;
|
2018-03-28 17:40:35 +02:00
|
|
|
libinput_device_get_size(libinput_dev,
|
|
|
|
&wlr_dev->width_mm, &wlr_dev->height_mm);
|
2018-04-29 13:15:54 +02:00
|
|
|
const char *output_name = libinput_device_get_output_name(libinput_dev);
|
|
|
|
if (output_name != NULL) {
|
|
|
|
wlr_dev->output_name = strdup(output_name);
|
|
|
|
}
|
2017-10-14 18:17:43 +02:00
|
|
|
wl_list_insert(wlr_devices, &wlr_dev->link);
|
2017-08-14 14:54:53 +02:00
|
|
|
wlr_libinput_dev->handle = libinput_dev;
|
2017-08-13 00:50:09 +02:00
|
|
|
libinput_device_ref(libinput_dev);
|
2017-08-14 14:54:53 +02:00
|
|
|
wlr_input_device_init(wlr_dev, type, &input_device_impl,
|
|
|
|
name, vendor, product);
|
2017-08-13 00:50:09 +02:00
|
|
|
return wlr_dev;
|
2017-06-13 16:27:15 +02:00
|
|
|
}
|
|
|
|
|
2017-12-19 19:46:30 +01:00
|
|
|
bool wlr_input_device_is_libinput(struct wlr_input_device *wlr_dev) {
|
|
|
|
return wlr_dev->impl == &input_device_impl;
|
|
|
|
}
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
static void handle_device_added(struct wlr_libinput_backend *backend,
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
|
|
|
assert(backend && libinput_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
/*
|
|
|
|
* Note: the wlr API exposes only devices with a single capability, because
|
|
|
|
* that meshes better with how Wayland does things and is a bit simpler.
|
|
|
|
* However, libinput devices often have multiple capabilities - in such
|
|
|
|
* cases we have to create several devices.
|
|
|
|
*/
|
2017-08-13 00:50:09 +02:00
|
|
|
int vendor = libinput_device_get_id_vendor(libinput_dev);
|
|
|
|
int product = libinput_device_get_id_product(libinput_dev);
|
|
|
|
const char *name = libinput_device_get_name(libinput_dev);
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wl_list *wlr_devices = calloc(1, sizeof(struct wl_list));
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_devices) {
|
2017-11-16 10:30:54 +01:00
|
|
|
wlr_log(L_ERROR, "Allocation failed");
|
|
|
|
return;
|
2017-08-15 07:56:47 +02:00
|
|
|
}
|
2017-11-16 10:30:54 +01:00
|
|
|
wl_list_init(wlr_devices);
|
2017-06-09 23:31:21 +02:00
|
|
|
wlr_log(L_DEBUG, "Added %s [%d:%d]", name, vendor, product);
|
|
|
|
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_KEYBOARD)) {
|
|
|
|
struct wlr_input_device *wlr_dev = allocate_device(backend,
|
|
|
|
libinput_dev, wlr_devices, WLR_INPUT_DEVICE_KEYBOARD);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-04-26 00:24:58 +02:00
|
|
|
wlr_dev->keyboard = create_libinput_keyboard(libinput_dev);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev->keyboard) {
|
|
|
|
free(wlr_dev);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_POINTER)) {
|
|
|
|
struct wlr_input_device *wlr_dev = allocate_device(backend,
|
|
|
|
libinput_dev, wlr_devices, WLR_INPUT_DEVICE_POINTER);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-04-26 00:24:58 +02:00
|
|
|
wlr_dev->pointer = create_libinput_pointer(libinput_dev);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev->pointer) {
|
|
|
|
free(wlr_dev);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_TOUCH)) {
|
|
|
|
struct wlr_input_device *wlr_dev = allocate_device(backend,
|
|
|
|
libinput_dev, wlr_devices, WLR_INPUT_DEVICE_TOUCH);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-04-26 00:24:58 +02:00
|
|
|
wlr_dev->touch = create_libinput_touch(libinput_dev);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev->touch) {
|
|
|
|
free(wlr_dev);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_TABLET_TOOL)) {
|
|
|
|
struct wlr_input_device *wlr_dev = allocate_device(backend,
|
|
|
|
libinput_dev, wlr_devices, WLR_INPUT_DEVICE_TABLET_TOOL);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-04-26 00:24:58 +02:00
|
|
|
wlr_dev->tablet_tool = create_libinput_tablet_tool(libinput_dev);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev->tablet_tool) {
|
|
|
|
free(wlr_dev);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_TABLET_PAD)) {
|
|
|
|
struct wlr_input_device *wlr_dev = allocate_device(backend,
|
|
|
|
libinput_dev, wlr_devices, WLR_INPUT_DEVICE_TABLET_PAD);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-04-26 00:24:58 +02:00
|
|
|
wlr_dev->tablet_pad = create_libinput_tablet_pad(libinput_dev);
|
2017-08-15 07:56:47 +02:00
|
|
|
if (!wlr_dev->tablet_pad) {
|
|
|
|
free(wlr_dev);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_GESTURE)) {
|
2017-06-09 23:31:21 +02:00
|
|
|
// TODO
|
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_SWITCH)) {
|
2017-06-09 23:31:21 +02:00
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:17:43 +02:00
|
|
|
if (wl_list_length(wlr_devices) > 0) {
|
2017-08-13 00:50:09 +02:00
|
|
|
libinput_device_set_user_data(libinput_dev, wlr_devices);
|
2017-11-19 00:17:40 +01:00
|
|
|
wlr_list_push(&backend->wlr_device_lists, wlr_devices);
|
2017-06-09 23:31:21 +02:00
|
|
|
} else {
|
2017-10-14 18:17:43 +02:00
|
|
|
free(wlr_devices);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
2017-08-15 07:56:47 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
wlr_log(L_ERROR, "Could not allocate new device");
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wlr_input_device *dev, *tmp_dev;
|
|
|
|
wl_list_for_each_safe(dev, tmp_dev, wlr_devices, link) {
|
|
|
|
free(dev);
|
|
|
|
}
|
|
|
|
free(wlr_devices);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
static void handle_device_removed(struct wlr_libinput_backend *backend,
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wl_list *wlr_devices = libinput_device_get_user_data(libinput_dev);
|
2017-08-13 00:50:09 +02:00
|
|
|
int vendor = libinput_device_get_id_vendor(libinput_dev);
|
|
|
|
int product = libinput_device_get_id_product(libinput_dev);
|
|
|
|
const char *name = libinput_device_get_name(libinput_dev);
|
2017-08-13 00:57:39 +02:00
|
|
|
wlr_log(L_DEBUG, "Removing %s [%d:%d]", name, vendor, product);
|
2017-08-13 00:50:09 +02:00
|
|
|
if (!wlr_devices) {
|
2017-08-12 15:13:29 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-10-14 18:17:43 +02:00
|
|
|
struct wlr_input_device *dev, *tmp_dev;
|
|
|
|
wl_list_for_each_safe(dev, tmp_dev, wlr_devices, link) {
|
|
|
|
wlr_input_device_destroy(dev);
|
2017-08-11 22:46:50 +02:00
|
|
|
}
|
2017-11-19 00:17:40 +01:00
|
|
|
for (size_t i = 0; i < backend->wlr_device_lists.length; i++) {
|
|
|
|
if (backend->wlr_device_lists.items[i] == wlr_devices) {
|
|
|
|
wlr_list_del(&backend->wlr_device_lists, i);
|
2017-08-11 22:46:50 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-14 18:17:43 +02:00
|
|
|
free(wlr_devices);
|
2017-06-09 23:31:21 +02:00
|
|
|
}
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
void handle_libinput_event(struct wlr_libinput_backend *backend,
|
2017-06-09 23:31:21 +02:00
|
|
|
struct libinput_event *event) {
|
2017-08-12 19:51:47 +02:00
|
|
|
assert(backend && event);
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev = libinput_event_get_device(event);
|
2017-06-09 23:31:21 +02:00
|
|
|
enum libinput_event_type event_type = libinput_event_get_type(event);
|
|
|
|
switch (event_type) {
|
|
|
|
case LIBINPUT_EVENT_DEVICE_ADDED:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_device_added(backend, libinput_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_DEVICE_REMOVED:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_device_removed(backend, libinput_dev);
|
2017-06-09 23:52:11 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_KEYBOARD_KEY:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_keyboard_key(event, libinput_dev);
|
2017-06-09 23:31:21 +02:00
|
|
|
break;
|
2017-06-13 16:27:15 +02:00
|
|
|
case LIBINPUT_EVENT_POINTER_MOTION:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_pointer_motion(event, libinput_dev);
|
2017-06-13 16:27:15 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_POINTER_MOTION_ABSOLUTE:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_pointer_motion_abs(event, libinput_dev);
|
2017-06-13 16:27:15 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_POINTER_BUTTON:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_pointer_button(event, libinput_dev);
|
2017-06-13 16:27:15 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_POINTER_AXIS:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_pointer_axis(event, libinput_dev);
|
2017-06-13 16:27:15 +02:00
|
|
|
break;
|
2017-06-14 20:50:09 +02:00
|
|
|
case LIBINPUT_EVENT_TOUCH_DOWN:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_touch_down(event, libinput_dev);
|
2017-06-14 20:50:09 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TOUCH_UP:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_touch_up(event, libinput_dev);
|
2017-06-14 20:50:09 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TOUCH_MOTION:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_touch_motion(event, libinput_dev);
|
2017-06-14 20:50:09 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TOUCH_CANCEL:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_touch_cancel(event, libinput_dev);
|
2017-06-14 20:50:09 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TOUCH_FRAME:
|
|
|
|
// no-op (at least for now)
|
|
|
|
break;
|
2017-06-15 20:32:28 +02:00
|
|
|
case LIBINPUT_EVENT_TABLET_TOOL_AXIS:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_tool_axis(event, libinput_dev);
|
2017-06-15 20:32:28 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TABLET_TOOL_PROXIMITY:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_tool_proximity(event, libinput_dev);
|
2017-06-15 20:32:28 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TABLET_TOOL_TIP:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_tool_tip(event, libinput_dev);
|
2017-06-15 20:32:28 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TABLET_TOOL_BUTTON:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_tool_button(event, libinput_dev);
|
2017-06-15 20:32:28 +02:00
|
|
|
break;
|
2017-06-19 20:49:07 +02:00
|
|
|
case LIBINPUT_EVENT_TABLET_PAD_BUTTON:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_pad_button(event, libinput_dev);
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TABLET_PAD_RING:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_pad_ring(event, libinput_dev);
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_EVENT_TABLET_PAD_STRIP:
|
2017-08-13 00:50:09 +02:00
|
|
|
handle_tablet_pad_strip(event, libinput_dev);
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
2017-06-09 23:31:21 +02:00
|
|
|
default:
|
|
|
|
wlr_log(L_DEBUG, "Unknown libinput event %d", event_type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|