2018-09-17 21:46:39 +02:00
|
|
|
#include <assert.h>
|
2017-12-17 18:49:20 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <wlr/interfaces/wlr_input_device.h>
|
|
|
|
#include <wlr/interfaces/wlr_keyboard.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/interfaces/wlr_pointer.h>
|
2017-12-17 18:49:20 +01:00
|
|
|
#include <wlr/interfaces/wlr_tablet_pad.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/interfaces/wlr_tablet_tool.h>
|
|
|
|
#include <wlr/interfaces/wlr_touch.h>
|
2018-11-15 00:24:55 +01:00
|
|
|
#include <wlr/interfaces/wlr_switch.h>
|
2017-12-17 18:49:20 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include "backend/headless.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2017-12-17 18:49:20 +01:00
|
|
|
|
2021-11-14 18:37:36 +01:00
|
|
|
static void input_device_destroy(struct wlr_input_device *wlr_dev) {
|
2021-11-22 22:30:40 +01:00
|
|
|
struct wlr_headless_input_device *dev =
|
|
|
|
wl_container_of(wlr_dev, dev, wlr_input_device);
|
|
|
|
wl_list_remove(&dev->link);
|
|
|
|
free(dev);
|
2021-11-14 18:37:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wlr_input_device_impl input_device_impl = {
|
|
|
|
.destroy = input_device_destroy,
|
|
|
|
};
|
2017-12-17 18:49:20 +01:00
|
|
|
|
2017-12-19 20:12:04 +01:00
|
|
|
bool wlr_input_device_is_headless(struct wlr_input_device *wlr_dev) {
|
|
|
|
return wlr_dev->impl == &input_device_impl;
|
|
|
|
}
|
|
|
|
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_input_device *wlr_headless_add_input_device(
|
|
|
|
struct wlr_backend *wlr_backend, enum wlr_input_device_type type) {
|
|
|
|
struct wlr_headless_backend *backend =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_backend_from_backend(wlr_backend);
|
2017-12-17 18:49:20 +01:00
|
|
|
|
|
|
|
struct wlr_headless_input_device *device =
|
|
|
|
calloc(1, sizeof(struct wlr_headless_input_device));
|
|
|
|
if (device == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
device->backend = backend;
|
|
|
|
|
|
|
|
int vendor = 0;
|
|
|
|
int product = 0;
|
|
|
|
const char *name = "headless";
|
|
|
|
struct wlr_input_device *wlr_device = &device->wlr_input_device;
|
|
|
|
wlr_input_device_init(wlr_device, type, &input_device_impl, name, vendor,
|
|
|
|
product);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case WLR_INPUT_DEVICE_KEYBOARD:
|
|
|
|
wlr_device->keyboard = calloc(1, sizeof(struct wlr_keyboard));
|
|
|
|
if (wlr_device->keyboard == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Unable to allocate wlr_keyboard");
|
2018-06-30 04:18:42 +02:00
|
|
|
goto error;
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
|
|
|
wlr_keyboard_init(wlr_device->keyboard, NULL);
|
|
|
|
break;
|
|
|
|
case WLR_INPUT_DEVICE_POINTER:
|
|
|
|
wlr_device->pointer = calloc(1, sizeof(struct wlr_pointer));
|
|
|
|
if (wlr_device->pointer == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Unable to allocate wlr_pointer");
|
2018-06-30 04:18:42 +02:00
|
|
|
goto error;
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
|
|
|
wlr_pointer_init(wlr_device->pointer, NULL);
|
|
|
|
break;
|
|
|
|
case WLR_INPUT_DEVICE_TOUCH:
|
|
|
|
wlr_device->touch = calloc(1, sizeof(struct wlr_touch));
|
|
|
|
if (wlr_device->touch == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Unable to allocate wlr_touch");
|
2018-06-30 04:18:42 +02:00
|
|
|
goto error;
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
|
|
|
wlr_touch_init(wlr_device->touch, NULL);
|
|
|
|
break;
|
|
|
|
case WLR_INPUT_DEVICE_TABLET_TOOL:
|
2018-06-16 11:19:48 +02:00
|
|
|
wlr_device->tablet = calloc(1, sizeof(struct wlr_tablet));
|
|
|
|
if (wlr_device->tablet == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Unable to allocate wlr_tablet");
|
2018-06-30 04:18:42 +02:00
|
|
|
goto error;
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
2018-06-16 11:19:48 +02:00
|
|
|
wlr_tablet_init(wlr_device->tablet, NULL);
|
2017-12-17 18:49:20 +01:00
|
|
|
break;
|
|
|
|
case WLR_INPUT_DEVICE_TABLET_PAD:
|
|
|
|
wlr_device->tablet_pad = calloc(1, sizeof(struct wlr_tablet_pad));
|
|
|
|
if (wlr_device->tablet_pad == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Unable to allocate wlr_tablet_pad");
|
2018-06-30 04:18:42 +02:00
|
|
|
goto error;
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
|
|
|
wlr_tablet_pad_init(wlr_device->tablet_pad, NULL);
|
|
|
|
break;
|
2018-11-15 00:24:55 +01:00
|
|
|
case WLR_INPUT_DEVICE_SWITCH:
|
2019-03-19 23:41:20 +01:00
|
|
|
wlr_device->switch_device = calloc(1, sizeof(struct wlr_switch));
|
|
|
|
if (wlr_device->switch_device == NULL) {
|
2018-11-15 00:24:55 +01:00
|
|
|
wlr_log(WLR_ERROR, "Unable to allocate wlr_switch");
|
|
|
|
goto error;
|
|
|
|
}
|
2019-03-19 23:41:20 +01:00
|
|
|
wlr_switch_init(wlr_device->switch_device, NULL);
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
|
|
|
|
2021-11-22 22:30:40 +01:00
|
|
|
wl_list_insert(&backend->input_devices, &device->link);
|
2017-12-17 18:49:20 +01:00
|
|
|
|
|
|
|
if (backend->started) {
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device);
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return wlr_device;
|
2018-06-30 04:18:42 +02:00
|
|
|
error:
|
|
|
|
free(device);
|
|
|
|
return NULL;
|
2017-12-17 18:49:20 +01:00
|
|
|
}
|