2011-01-14 14:45:42 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2010 Intel Corporation
|
2013-11-10 17:55:40 +01:00
|
|
|
* Copyright © 2013 Jonas Ådahl
|
2011-01-14 14:45:42 -05:00
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
|
* its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
|
* that the above copyright notice appear in all copies and that both that
|
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
|
* documentation, and that the name of the copyright holders not be used in
|
|
|
|
|
* advertising or publicity pertaining to distribution of the software
|
|
|
|
|
* without specific, written prior permission. The copyright holders make
|
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
|
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-05-22 18:03:19 +03:00
|
|
|
#include "config.h"
|
|
|
|
|
|
2013-10-15 14:29:56 +02:00
|
|
|
#include <errno.h>
|
2014-09-03 15:50:28 +10:00
|
|
|
#include <stdbool.h>
|
2011-01-14 14:45:42 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2014-06-03 07:51:37 +10:00
|
|
|
#include "linux/input.h"
|
2011-01-14 14:45:42 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <fcntl.h>
|
2013-12-06 13:09:18 +10:00
|
|
|
#include <mtdev-plumbing.h>
|
2013-09-24 12:09:03 +01:00
|
|
|
#include <assert.h>
|
2014-02-19 08:45:57 +10:00
|
|
|
#include <time.h>
|
2014-05-18 19:20:39 +02:00
|
|
|
#include <math.h>
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
#include "libinput.h"
|
2011-12-19 01:14:03 +02:00
|
|
|
#include "evdev.h"
|
2014-05-18 19:20:39 +02:00
|
|
|
#include "filter.h"
|
2013-11-10 17:55:40 +01:00
|
|
|
#include "libinput-private.h"
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
#define DEFAULT_AXIS_STEP_DISTANCE 10
|
2014-09-16 16:22:36 +02:00
|
|
|
#define DEFAULT_MIDDLE_BUTTON_SCROLL_TIMEOUT 200
|
2014-10-30 16:34:15 -05:00
|
|
|
/* The HW DPI rate we normalize to before calculating pointer acceleration */
|
|
|
|
|
#define DEFAULT_MOUSE_DPI 400
|
2012-10-03 22:56:58 +02:00
|
|
|
|
2014-07-13 00:25:36 +02:00
|
|
|
enum evdev_key_type {
|
|
|
|
|
EVDEV_KEY_TYPE_NONE,
|
|
|
|
|
EVDEV_KEY_TYPE_KEY,
|
|
|
|
|
EVDEV_KEY_TYPE_BUTTON,
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-27 15:43:59 +02:00
|
|
|
static void
|
2014-08-22 10:41:20 +10:00
|
|
|
hw_set_key_down(struct evdev_device *device, int code, int pressed)
|
2014-07-27 15:43:59 +02:00
|
|
|
{
|
2014-08-22 10:41:20 +10:00
|
|
|
long_set_bit_state(device->hw_key_mask, code, pressed);
|
2014-07-27 15:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2014-08-22 10:41:20 +10:00
|
|
|
hw_is_key_down(struct evdev_device *device, int code)
|
2014-07-27 15:43:59 +02:00
|
|
|
{
|
2014-08-22 10:41:20 +10:00
|
|
|
return long_bit_is_set(device->hw_key_mask, code);
|
2014-07-27 15:43:59 +02:00
|
|
|
}
|
|
|
|
|
|
2014-07-27 16:02:46 +02:00
|
|
|
static int
|
|
|
|
|
get_key_down_count(struct evdev_device *device, int code)
|
|
|
|
|
{
|
|
|
|
|
return device->key_count[code];
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-27 15:54:49 +02:00
|
|
|
static int
|
|
|
|
|
update_key_down_count(struct evdev_device *device, int code, int pressed)
|
|
|
|
|
{
|
|
|
|
|
int key_count;
|
|
|
|
|
assert(code >= 0 && code < KEY_CNT);
|
|
|
|
|
|
|
|
|
|
if (pressed) {
|
|
|
|
|
key_count = ++device->key_count[code];
|
|
|
|
|
} else {
|
|
|
|
|
assert(device->key_count[code] > 0);
|
|
|
|
|
key_count = --device->key_count[code];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (key_count > 32) {
|
|
|
|
|
log_bug_libinput(device->base.seat->libinput,
|
|
|
|
|
"Key count for %s reached abnormal values\n",
|
|
|
|
|
libevdev_event_code_get_name(EV_KEY, code));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return key_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_keyboard_notify_key(struct evdev_device *device,
|
|
|
|
|
uint32_t time,
|
|
|
|
|
int key,
|
|
|
|
|
enum libinput_key_state state)
|
|
|
|
|
{
|
|
|
|
|
int down_count;
|
|
|
|
|
|
|
|
|
|
down_count = update_key_down_count(device, key, state);
|
|
|
|
|
|
|
|
|
|
if ((state == LIBINPUT_KEY_STATE_PRESSED && down_count == 1) ||
|
|
|
|
|
(state == LIBINPUT_KEY_STATE_RELEASED && down_count == 0))
|
|
|
|
|
keyboard_notify_key(&device->base, time, key, state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_pointer_notify_button(struct evdev_device *device,
|
|
|
|
|
uint32_t time,
|
|
|
|
|
int button,
|
|
|
|
|
enum libinput_button_state state)
|
|
|
|
|
{
|
|
|
|
|
int down_count;
|
|
|
|
|
|
|
|
|
|
down_count = update_key_down_count(device, button, state);
|
|
|
|
|
|
|
|
|
|
if ((state == LIBINPUT_BUTTON_STATE_PRESSED && down_count == 1) ||
|
2014-09-23 13:48:06 +10:00
|
|
|
(state == LIBINPUT_BUTTON_STATE_RELEASED && down_count == 0)) {
|
2014-07-27 15:54:49 +02:00
|
|
|
pointer_notify_button(&device->base, time, button, state);
|
2014-09-23 13:48:06 +10:00
|
|
|
|
|
|
|
|
if (state == LIBINPUT_BUTTON_STATE_RELEASED &&
|
|
|
|
|
device->buttons.change_to_left_handed)
|
|
|
|
|
device->buttons.change_to_left_handed(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
if (state == LIBINPUT_BUTTON_STATE_RELEASED &&
|
|
|
|
|
device->scroll.change_scroll_mode)
|
|
|
|
|
device->scroll.change_scroll_mode(device);
|
2014-09-23 13:48:06 +10:00
|
|
|
}
|
|
|
|
|
|
2014-07-27 15:54:49 +02:00
|
|
|
}
|
|
|
|
|
|
2012-08-03 14:39:05 +03:00
|
|
|
void
|
2013-11-10 17:55:40 +01:00
|
|
|
evdev_device_led_update(struct evdev_device *device, enum libinput_led leds)
|
2012-05-30 16:31:49 +01:00
|
|
|
{
|
|
|
|
|
static const struct {
|
2013-11-10 17:55:40 +01:00
|
|
|
enum libinput_led weston;
|
2012-05-30 16:31:49 +01:00
|
|
|
int evdev;
|
|
|
|
|
} map[] = {
|
2013-11-10 17:55:40 +01:00
|
|
|
{ LIBINPUT_LED_NUM_LOCK, LED_NUML },
|
|
|
|
|
{ LIBINPUT_LED_CAPS_LOCK, LED_CAPSL },
|
|
|
|
|
{ LIBINPUT_LED_SCROLL_LOCK, LED_SCROLLL },
|
2012-05-30 16:31:49 +01:00
|
|
|
};
|
2013-08-09 16:32:17 +02:00
|
|
|
struct input_event ev[ARRAY_LENGTH(map) + 1];
|
2012-05-30 16:31:49 +01:00
|
|
|
unsigned int i;
|
|
|
|
|
|
2013-12-16 15:07:59 -08:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_KEYBOARD))
|
2012-08-06 14:57:07 +03:00
|
|
|
return;
|
|
|
|
|
|
2012-05-30 16:31:49 +01:00
|
|
|
memset(ev, 0, sizeof(ev));
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(map); i++) {
|
|
|
|
|
ev[i].type = EV_LED;
|
|
|
|
|
ev[i].code = map[i].evdev;
|
|
|
|
|
ev[i].value = !!(leds & map[i].weston);
|
|
|
|
|
}
|
2013-08-09 16:32:17 +02:00
|
|
|
ev[i].type = EV_SYN;
|
|
|
|
|
ev[i].code = SYN_REPORT;
|
2012-05-30 16:31:49 +01:00
|
|
|
|
2012-08-06 14:57:07 +03:00
|
|
|
i = write(device->fd, ev, sizeof ev);
|
|
|
|
|
(void)i; /* no, we really don't care about the return value */
|
2012-05-30 16:31:49 +01:00
|
|
|
}
|
|
|
|
|
|
2013-09-24 12:09:03 +01:00
|
|
|
static void
|
|
|
|
|
transform_absolute(struct evdev_device *device, int32_t *x, int32_t *y)
|
|
|
|
|
{
|
2014-08-20 18:23:43 +10:00
|
|
|
if (!device->abs.apply_calibration)
|
2013-11-10 17:55:40 +01:00
|
|
|
return;
|
|
|
|
|
|
2014-08-26 10:34:05 +10:00
|
|
|
matrix_mult_vec(&device->abs.calibration, x, y);
|
2013-09-24 12:09:03 +01:00
|
|
|
}
|
|
|
|
|
|
2014-06-19 11:11:36 +10:00
|
|
|
static inline double
|
|
|
|
|
scale_axis(const struct input_absinfo *absinfo, double val, double to_range)
|
|
|
|
|
{
|
|
|
|
|
return (val - absinfo->minimum) * to_range /
|
|
|
|
|
(absinfo->maximum - absinfo->minimum + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
double
|
2014-01-25 11:53:53 +01:00
|
|
|
evdev_device_transform_x(struct evdev_device *device,
|
2014-06-02 23:09:27 +02:00
|
|
|
double x,
|
2014-01-25 11:53:53 +01:00
|
|
|
uint32_t width)
|
|
|
|
|
{
|
2014-06-19 11:11:36 +10:00
|
|
|
return scale_axis(device->abs.absinfo_x, x, width);
|
2014-01-25 11:53:53 +01:00
|
|
|
}
|
|
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
double
|
2014-01-25 11:53:53 +01:00
|
|
|
evdev_device_transform_y(struct evdev_device *device,
|
2014-06-02 23:09:27 +02:00
|
|
|
double y,
|
2014-01-25 11:53:53 +01:00
|
|
|
uint32_t height)
|
|
|
|
|
{
|
2014-06-19 11:11:36 +10:00
|
|
|
return scale_axis(device->abs.absinfo_y, y, height);
|
2014-01-25 11:53:53 +01:00
|
|
|
}
|
|
|
|
|
|
2013-09-24 12:09:03 +01:00
|
|
|
static void
|
2014-04-08 12:29:45 +02:00
|
|
|
evdev_flush_pending_event(struct evdev_device *device, uint64_t time)
|
2013-09-24 12:09:03 +01:00
|
|
|
{
|
2014-06-18 19:51:19 +10:00
|
|
|
struct libinput *libinput = device->base.seat->libinput;
|
2014-05-18 19:20:39 +02:00
|
|
|
struct motion_params motion;
|
2013-09-24 12:09:03 +01:00
|
|
|
int32_t cx, cy;
|
2014-08-20 18:23:43 +10:00
|
|
|
int32_t x, y;
|
2013-09-24 12:09:03 +01:00
|
|
|
int slot;
|
2014-01-30 22:44:49 +01:00
|
|
|
int seat_slot;
|
2013-11-10 17:55:40 +01:00
|
|
|
struct libinput_device *base = &device->base;
|
2014-01-30 22:44:49 +01:00
|
|
|
struct libinput_seat *seat = base->seat;
|
2013-09-24 12:09:03 +01:00
|
|
|
|
|
|
|
|
slot = device->mt.slot;
|
|
|
|
|
|
|
|
|
|
switch (device->pending_event) {
|
|
|
|
|
case EVDEV_NONE:
|
|
|
|
|
return;
|
|
|
|
|
case EVDEV_RELATIVE_MOTION:
|
2014-10-30 16:34:15 -05:00
|
|
|
motion.dx = device->rel.dx / ((double)device->dpi / DEFAULT_MOUSE_DPI);
|
|
|
|
|
motion.dy = device->rel.dy / ((double)device->dpi / DEFAULT_MOUSE_DPI);
|
2013-09-24 12:09:03 +01:00
|
|
|
device->rel.dx = 0;
|
|
|
|
|
device->rel.dy = 0;
|
2014-05-18 19:20:39 +02:00
|
|
|
|
2014-09-16 16:22:36 +02:00
|
|
|
/* Use unaccelerated deltas for pointing stick scroll */
|
2014-11-06 13:39:51 +01:00
|
|
|
if (device->scroll.mode == LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN &&
|
|
|
|
|
hw_is_key_down(device, device->scroll.button)) {
|
|
|
|
|
if (device->scroll.button_scroll_active)
|
2014-09-16 16:22:36 +02:00
|
|
|
evdev_post_scroll(device, time,
|
|
|
|
|
motion.dx, motion.dy);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-18 19:20:39 +02:00
|
|
|
/* Apply pointer acceleration. */
|
|
|
|
|
filter_dispatch(device->pointer.filter, &motion, device, time);
|
|
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
if (motion.dx == 0.0 && motion.dy == 0.0)
|
2014-05-18 19:20:39 +02:00
|
|
|
break;
|
|
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
pointer_notify_motion(base, time, motion.dx, motion.dy);
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
2013-09-24 12:09:03 +01:00
|
|
|
case EVDEV_ABSOLUTE_MT_DOWN:
|
2014-01-27 23:33:46 +01:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
|
|
|
|
break;
|
|
|
|
|
|
2014-03-24 23:37:09 +01:00
|
|
|
if (device->mt.slots[slot].seat_slot != -1) {
|
2014-06-18 19:51:19 +10:00
|
|
|
log_bug_kernel(libinput,
|
|
|
|
|
"%s: Driver sent multiple touch down for the "
|
2014-05-21 14:36:01 +10:00
|
|
|
"same slot", device->devnode);
|
2014-03-24 23:37:09 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 22:44:49 +01:00
|
|
|
seat_slot = ffs(~seat->slot_map) - 1;
|
|
|
|
|
device->mt.slots[slot].seat_slot = seat_slot;
|
|
|
|
|
|
|
|
|
|
if (seat_slot == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
seat->slot_map |= 1 << seat_slot;
|
2014-06-02 23:09:27 +02:00
|
|
|
x = device->mt.slots[slot].x;
|
|
|
|
|
y = device->mt.slots[slot].y;
|
2014-08-20 18:23:43 +10:00
|
|
|
transform_absolute(device, &x, &y);
|
2014-01-30 22:44:49 +01:00
|
|
|
|
2014-02-19 21:39:26 +01:00
|
|
|
touch_notify_touch_down(base, time, slot, seat_slot, x, y);
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
2013-09-24 12:09:03 +01:00
|
|
|
case EVDEV_ABSOLUTE_MT_MOTION:
|
2014-01-27 23:33:46 +01:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
|
|
|
|
break;
|
|
|
|
|
|
2014-01-30 22:44:49 +01:00
|
|
|
seat_slot = device->mt.slots[slot].seat_slot;
|
2014-06-02 23:09:27 +02:00
|
|
|
x = device->mt.slots[slot].x;
|
|
|
|
|
y = device->mt.slots[slot].y;
|
2014-01-30 22:44:49 +01:00
|
|
|
|
|
|
|
|
if (seat_slot == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
2014-08-20 18:23:43 +10:00
|
|
|
transform_absolute(device, &x, &y);
|
2014-02-19 21:39:26 +01:00
|
|
|
touch_notify_touch_motion(base, time, slot, seat_slot, x, y);
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
2013-09-24 12:09:03 +01:00
|
|
|
case EVDEV_ABSOLUTE_MT_UP:
|
2014-01-27 23:33:46 +01:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
|
|
|
|
break;
|
|
|
|
|
|
2014-01-30 22:44:49 +01:00
|
|
|
seat_slot = device->mt.slots[slot].seat_slot;
|
2014-03-24 23:37:09 +01:00
|
|
|
device->mt.slots[slot].seat_slot = -1;
|
2014-01-30 22:44:49 +01:00
|
|
|
|
|
|
|
|
if (seat_slot == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
seat->slot_map &= ~(1 << seat_slot);
|
|
|
|
|
|
2014-02-19 21:39:26 +01:00
|
|
|
touch_notify_touch_up(base, time, slot, seat_slot);
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
2013-09-24 20:05:07 +01:00
|
|
|
case EVDEV_ABSOLUTE_TOUCH_DOWN:
|
2014-01-27 23:33:46 +01:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
|
|
|
|
break;
|
|
|
|
|
|
2014-03-24 23:37:09 +01:00
|
|
|
if (device->abs.seat_slot != -1) {
|
2014-06-18 19:51:19 +10:00
|
|
|
log_bug_kernel(libinput,
|
|
|
|
|
"%s: Driver sent multiple touch down for the "
|
2014-05-21 14:36:01 +10:00
|
|
|
"same slot", device->devnode);
|
2014-03-24 23:37:09 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 22:44:49 +01:00
|
|
|
seat_slot = ffs(~seat->slot_map) - 1;
|
|
|
|
|
device->abs.seat_slot = seat_slot;
|
|
|
|
|
|
|
|
|
|
if (seat_slot == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
seat->slot_map |= 1 << seat_slot;
|
|
|
|
|
|
2014-08-20 18:23:43 +10:00
|
|
|
cx = device->abs.x;
|
|
|
|
|
cy = device->abs.y;
|
2013-09-24 20:05:07 +01:00
|
|
|
transform_absolute(device, &cx, &cy);
|
2014-02-19 21:39:26 +01:00
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
touch_notify_touch_down(base, time, -1, seat_slot, cx, cy);
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
2013-09-24 12:09:03 +01:00
|
|
|
case EVDEV_ABSOLUTE_MOTION:
|
2014-08-20 18:23:43 +10:00
|
|
|
cx = device->abs.x;
|
|
|
|
|
cy = device->abs.y;
|
2013-09-24 12:09:03 +01:00
|
|
|
transform_absolute(device, &cx, &cy);
|
2014-06-02 23:09:27 +02:00
|
|
|
x = cx;
|
|
|
|
|
y = cy;
|
2014-02-19 21:39:26 +01:00
|
|
|
|
2013-12-16 15:19:30 -08:00
|
|
|
if (device->seat_caps & EVDEV_DEVICE_TOUCH) {
|
2014-01-30 22:44:49 +01:00
|
|
|
seat_slot = device->abs.seat_slot;
|
|
|
|
|
|
|
|
|
|
if (seat_slot == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
2014-02-19 21:39:26 +01:00
|
|
|
touch_notify_touch_motion(base, time, -1, seat_slot, x, y);
|
2013-12-16 15:51:22 -08:00
|
|
|
} else if (device->seat_caps & EVDEV_DEVICE_POINTER) {
|
2014-02-19 21:39:26 +01:00
|
|
|
pointer_notify_motion_absolute(base, time, x, y);
|
2013-11-10 17:55:40 +01:00
|
|
|
}
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
2013-09-24 20:05:07 +01:00
|
|
|
case EVDEV_ABSOLUTE_TOUCH_UP:
|
2014-01-27 23:33:46 +01:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
|
|
|
|
break;
|
|
|
|
|
|
2014-01-30 22:44:49 +01:00
|
|
|
seat_slot = device->abs.seat_slot;
|
2014-03-24 23:37:09 +01:00
|
|
|
device->abs.seat_slot = -1;
|
2014-01-30 22:44:49 +01:00
|
|
|
|
|
|
|
|
if (seat_slot == -1)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
seat->slot_map &= ~(1 << seat_slot);
|
|
|
|
|
|
2014-02-19 21:39:26 +01:00
|
|
|
touch_notify_touch_up(base, time, -1, seat_slot);
|
2014-01-27 23:33:46 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(0 && "Unknown pending event type");
|
|
|
|
|
break;
|
2013-09-24 12:09:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
device->pending_event = EVDEV_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-13 00:25:36 +02:00
|
|
|
static enum evdev_key_type
|
|
|
|
|
get_key_type(uint16_t code)
|
|
|
|
|
{
|
|
|
|
|
if (code == BTN_TOUCH)
|
|
|
|
|
return EVDEV_KEY_TYPE_NONE;
|
|
|
|
|
|
|
|
|
|
if (code >= KEY_ESC && code <= KEY_MICMUTE)
|
|
|
|
|
return EVDEV_KEY_TYPE_KEY;
|
|
|
|
|
if (code >= BTN_MISC && code <= BTN_GEAR_UP)
|
|
|
|
|
return EVDEV_KEY_TYPE_BUTTON;
|
|
|
|
|
if (code >= KEY_OK && code <= KEY_LIGHTS_TOGGLE)
|
|
|
|
|
return EVDEV_KEY_TYPE_KEY;
|
|
|
|
|
if (code >= BTN_DPAD_UP && code <= BTN_TRIGGER_HAPPY40)
|
|
|
|
|
return EVDEV_KEY_TYPE_BUTTON;
|
|
|
|
|
return EVDEV_KEY_TYPE_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:36 +02:00
|
|
|
static void
|
2014-11-06 13:39:51 +01:00
|
|
|
evdev_button_scroll_timeout(uint64_t time, void *data)
|
2014-09-16 16:22:36 +02:00
|
|
|
{
|
|
|
|
|
struct evdev_device *device = data;
|
|
|
|
|
|
2014-11-06 13:39:51 +01:00
|
|
|
device->scroll.button_scroll_active = true;
|
2014-09-16 16:22:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2014-11-06 13:39:51 +01:00
|
|
|
evdev_button_scroll_button(struct evdev_device *device,
|
|
|
|
|
uint64_t time, int is_press)
|
2014-09-16 16:22:36 +02:00
|
|
|
{
|
|
|
|
|
if (is_press) {
|
|
|
|
|
libinput_timer_set(&device->scroll.timer,
|
|
|
|
|
time + DEFAULT_MIDDLE_BUTTON_SCROLL_TIMEOUT);
|
|
|
|
|
} else {
|
|
|
|
|
libinput_timer_cancel(&device->scroll.timer);
|
2014-11-06 13:39:51 +01:00
|
|
|
if (device->scroll.button_scroll_active) {
|
2014-09-16 16:22:36 +02:00
|
|
|
evdev_stop_scroll(device, time);
|
2014-11-06 13:39:51 +01:00
|
|
|
device->scroll.button_scroll_active = false;
|
2014-09-16 16:22:36 +02:00
|
|
|
} else {
|
|
|
|
|
/* If the button is released quickly enough emit the
|
|
|
|
|
* button press/release events. */
|
2014-11-06 13:39:51 +01:00
|
|
|
evdev_pointer_notify_button(device, time,
|
|
|
|
|
device->scroll.button,
|
2014-09-16 16:22:36 +02:00
|
|
|
LIBINPUT_BUTTON_STATE_PRESSED);
|
2014-11-06 13:39:51 +01:00
|
|
|
evdev_pointer_notify_button(device, time,
|
|
|
|
|
device->scroll.button,
|
2014-09-16 16:22:36 +02:00
|
|
|
LIBINPUT_BUTTON_STATE_RELEASED);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-24 20:05:07 +01:00
|
|
|
static void
|
2014-06-09 22:26:22 +02:00
|
|
|
evdev_process_touch_button(struct evdev_device *device,
|
|
|
|
|
uint64_t time, int value)
|
2013-09-24 20:05:07 +01:00
|
|
|
{
|
|
|
|
|
if (device->pending_event != EVDEV_NONE &&
|
|
|
|
|
device->pending_event != EVDEV_ABSOLUTE_MOTION)
|
|
|
|
|
evdev_flush_pending_event(device, time);
|
|
|
|
|
|
|
|
|
|
device->pending_event = (value ?
|
|
|
|
|
EVDEV_ABSOLUTE_TOUCH_DOWN :
|
|
|
|
|
EVDEV_ABSOLUTE_TOUCH_UP);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-01 19:00:03 +03:00
|
|
|
static inline void
|
2014-06-09 22:26:22 +02:00
|
|
|
evdev_process_key(struct evdev_device *device,
|
|
|
|
|
struct input_event *e, uint64_t time)
|
2011-09-01 19:00:03 +03:00
|
|
|
{
|
2014-07-27 15:43:59 +02:00
|
|
|
enum evdev_key_type type;
|
|
|
|
|
|
2013-08-07 11:04:42 +10:00
|
|
|
/* ignore kernel key repeat */
|
2011-11-10 14:47:30 +02:00
|
|
|
if (e->value == 2)
|
|
|
|
|
return;
|
|
|
|
|
|
2013-09-24 20:05:07 +01:00
|
|
|
if (e->code == BTN_TOUCH) {
|
|
|
|
|
if (!device->is_mt)
|
|
|
|
|
evdev_process_touch_button(device, time, e->value);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_flush_pending_event(device, time);
|
|
|
|
|
|
2014-07-27 15:43:59 +02:00
|
|
|
type = get_key_type(e->code);
|
|
|
|
|
|
|
|
|
|
/* Ignore key release events from the kernel for keys that libinput
|
|
|
|
|
* never got a pressed event for. */
|
|
|
|
|
if (e->value == 0) {
|
|
|
|
|
switch (type) {
|
|
|
|
|
case EVDEV_KEY_TYPE_NONE:
|
|
|
|
|
break;
|
|
|
|
|
case EVDEV_KEY_TYPE_KEY:
|
|
|
|
|
case EVDEV_KEY_TYPE_BUTTON:
|
2014-08-22 10:41:20 +10:00
|
|
|
if (!hw_is_key_down(device, e->code))
|
2014-07-27 15:43:59 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 10:41:20 +10:00
|
|
|
hw_set_key_down(device, e->code, e->value);
|
2014-07-27 15:43:59 +02:00
|
|
|
|
|
|
|
|
switch (type) {
|
2014-07-13 00:25:36 +02:00
|
|
|
case EVDEV_KEY_TYPE_NONE:
|
2011-09-01 19:00:03 +03:00
|
|
|
break;
|
2014-07-13 00:25:36 +02:00
|
|
|
case EVDEV_KEY_TYPE_KEY:
|
2014-07-27 15:54:49 +02:00
|
|
|
evdev_keyboard_notify_key(
|
|
|
|
|
device,
|
2013-11-10 17:55:40 +01:00
|
|
|
time,
|
|
|
|
|
e->code,
|
2014-06-17 07:55:35 +10:00
|
|
|
e->value ? LIBINPUT_KEY_STATE_PRESSED :
|
|
|
|
|
LIBINPUT_KEY_STATE_RELEASED);
|
2011-09-01 19:00:03 +03:00
|
|
|
break;
|
2014-07-13 00:25:36 +02:00
|
|
|
case EVDEV_KEY_TYPE_BUTTON:
|
2014-11-06 13:39:51 +01:00
|
|
|
if (device->scroll.mode == LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN &&
|
|
|
|
|
e->code == device->scroll.button) {
|
|
|
|
|
evdev_button_scroll_button(device, time, e->value);
|
2014-09-16 16:22:36 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2014-07-27 15:54:49 +02:00
|
|
|
evdev_pointer_notify_button(
|
|
|
|
|
device,
|
2014-07-13 00:25:36 +02:00
|
|
|
time,
|
2014-09-23 13:48:06 +10:00
|
|
|
evdev_to_left_handed(device, e->code),
|
2014-07-13 00:25:36 +02:00
|
|
|
e->value ? LIBINPUT_BUTTON_STATE_PRESSED :
|
|
|
|
|
LIBINPUT_BUTTON_STATE_RELEASED);
|
|
|
|
|
break;
|
2011-09-01 19:00:03 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 19:34:09 +02:00
|
|
|
static void
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_process_touch(struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
2014-04-08 12:29:45 +02:00
|
|
|
uint64_t time)
|
2011-12-21 19:34:09 +02:00
|
|
|
{
|
|
|
|
|
switch (e->code) {
|
|
|
|
|
case ABS_MT_SLOT:
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_flush_pending_event(device, time);
|
2011-12-21 22:18:36 -05:00
|
|
|
device->mt.slot = e->value;
|
2011-12-21 19:34:09 +02:00
|
|
|
break;
|
|
|
|
|
case ABS_MT_TRACKING_ID:
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event != EVDEV_NONE &&
|
|
|
|
|
device->pending_event != EVDEV_ABSOLUTE_MT_MOTION)
|
|
|
|
|
evdev_flush_pending_event(device, time);
|
2011-12-21 19:34:09 +02:00
|
|
|
if (e->value >= 0)
|
2013-09-24 12:09:03 +01:00
|
|
|
device->pending_event = EVDEV_ABSOLUTE_MT_DOWN;
|
2011-12-21 19:34:09 +02:00
|
|
|
else
|
2013-09-24 12:09:03 +01:00
|
|
|
device->pending_event = EVDEV_ABSOLUTE_MT_UP;
|
2011-12-21 19:34:09 +02:00
|
|
|
break;
|
|
|
|
|
case ABS_MT_POSITION_X:
|
2014-01-25 11:53:53 +01:00
|
|
|
device->mt.slots[device->mt.slot].x = e->value;
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event == EVDEV_NONE)
|
|
|
|
|
device->pending_event = EVDEV_ABSOLUTE_MT_MOTION;
|
2011-12-21 19:34:09 +02:00
|
|
|
break;
|
|
|
|
|
case ABS_MT_POSITION_Y:
|
2014-01-25 11:53:53 +01:00
|
|
|
device->mt.slots[device->mt.slot].y = e->value;
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event == EVDEV_NONE)
|
|
|
|
|
device->pending_event = EVDEV_ABSOLUTE_MT_MOTION;
|
2011-12-21 19:34:09 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-01 19:00:03 +03:00
|
|
|
static inline void
|
2012-08-06 14:57:08 +03:00
|
|
|
evdev_process_absolute_motion(struct evdev_device *device,
|
2011-12-21 22:18:36 -05:00
|
|
|
struct input_event *e)
|
2011-09-01 19:00:03 +03:00
|
|
|
{
|
|
|
|
|
switch (e->code) {
|
|
|
|
|
case ABS_X:
|
2014-01-25 11:53:53 +01:00
|
|
|
device->abs.x = e->value;
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event == EVDEV_NONE)
|
|
|
|
|
device->pending_event = EVDEV_ABSOLUTE_MOTION;
|
2011-09-01 19:00:03 +03:00
|
|
|
break;
|
|
|
|
|
case ABS_Y:
|
2014-01-25 11:53:53 +01:00
|
|
|
device->abs.y = e->value;
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event == EVDEV_NONE)
|
|
|
|
|
device->pending_event = EVDEV_ABSOLUTE_MOTION;
|
2011-09-01 19:00:03 +03:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
2012-08-06 14:57:08 +03:00
|
|
|
evdev_process_relative(struct evdev_device *device,
|
2014-04-08 12:29:45 +02:00
|
|
|
struct input_event *e, uint64_t time)
|
2011-09-01 19:00:03 +03:00
|
|
|
{
|
2013-11-10 17:55:40 +01:00
|
|
|
struct libinput_device *base = &device->base;
|
|
|
|
|
|
2011-09-01 19:00:03 +03:00
|
|
|
switch (e->code) {
|
|
|
|
|
case REL_X:
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event != EVDEV_RELATIVE_MOTION)
|
|
|
|
|
evdev_flush_pending_event(device, time);
|
2014-06-02 23:09:27 +02:00
|
|
|
device->rel.dx += e->value;
|
2013-09-24 12:09:03 +01:00
|
|
|
device->pending_event = EVDEV_RELATIVE_MOTION;
|
2011-09-01 19:00:03 +03:00
|
|
|
break;
|
|
|
|
|
case REL_Y:
|
2013-09-24 12:09:03 +01:00
|
|
|
if (device->pending_event != EVDEV_RELATIVE_MOTION)
|
|
|
|
|
evdev_flush_pending_event(device, time);
|
2014-06-02 23:09:27 +02:00
|
|
|
device->rel.dy += e->value;
|
2013-09-24 12:09:03 +01:00
|
|
|
device->pending_event = EVDEV_RELATIVE_MOTION;
|
2011-09-01 19:00:03 +03:00
|
|
|
break;
|
2012-03-22 10:47:01 -06:00
|
|
|
case REL_WHEEL:
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_flush_pending_event(device, time);
|
2014-01-21 15:48:06 +10:00
|
|
|
pointer_notify_axis(
|
|
|
|
|
base,
|
|
|
|
|
time,
|
2014-04-26 20:01:22 +10:00
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL,
|
2014-01-21 15:48:06 +10:00
|
|
|
-1 * e->value * DEFAULT_AXIS_STEP_DISTANCE);
|
2012-03-22 10:47:01 -06:00
|
|
|
break;
|
|
|
|
|
case REL_HWHEEL:
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_flush_pending_event(device, time);
|
2014-11-07 10:02:56 +10:00
|
|
|
pointer_notify_axis(
|
|
|
|
|
base,
|
|
|
|
|
time,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL,
|
|
|
|
|
e->value * DEFAULT_AXIS_STEP_DISTANCE);
|
2014-11-18 11:55:42 +10:00
|
|
|
break;
|
2011-09-01 19:00:03 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-21 19:34:09 +02:00
|
|
|
static inline void
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_process_absolute(struct evdev_device *device,
|
|
|
|
|
struct input_event *e,
|
2014-04-08 12:29:45 +02:00
|
|
|
uint64_t time)
|
2011-12-21 19:34:09 +02:00
|
|
|
{
|
2012-05-17 12:18:17 +02:00
|
|
|
if (device->is_mt) {
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_process_touch(device, e, time);
|
2011-12-21 19:34:09 +02:00
|
|
|
} else {
|
2011-12-21 22:18:36 -05:00
|
|
|
evdev_process_absolute_motion(device, e);
|
2011-12-21 19:34:09 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 12:47:51 +01:00
|
|
|
static inline bool
|
|
|
|
|
evdev_any_button_down(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
unsigned int button;
|
|
|
|
|
|
|
|
|
|
for (button = BTN_LEFT; button < BTN_JOYSTICK; button++) {
|
|
|
|
|
if (libevdev_has_event_code(device->evdev, EV_KEY, button) &&
|
|
|
|
|
hw_is_key_down(device, button))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-03 15:01:35 -05:00
|
|
|
static inline bool
|
2013-12-20 10:15:00 +10:00
|
|
|
evdev_need_touch_frame(struct evdev_device *device)
|
|
|
|
|
{
|
2014-01-27 23:33:46 +01:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
2014-10-03 15:01:35 -05:00
|
|
|
return false;
|
2014-01-27 23:33:46 +01:00
|
|
|
|
2013-12-20 10:15:00 +10:00
|
|
|
switch (device->pending_event) {
|
|
|
|
|
case EVDEV_NONE:
|
|
|
|
|
case EVDEV_RELATIVE_MOTION:
|
|
|
|
|
break;
|
|
|
|
|
case EVDEV_ABSOLUTE_MT_DOWN:
|
|
|
|
|
case EVDEV_ABSOLUTE_MT_MOTION:
|
|
|
|
|
case EVDEV_ABSOLUTE_MT_UP:
|
|
|
|
|
case EVDEV_ABSOLUTE_TOUCH_DOWN:
|
|
|
|
|
case EVDEV_ABSOLUTE_TOUCH_UP:
|
|
|
|
|
case EVDEV_ABSOLUTE_MOTION:
|
2014-10-03 15:01:35 -05:00
|
|
|
return true;
|
2013-12-20 10:15:00 +10:00
|
|
|
}
|
|
|
|
|
|
2014-10-03 15:01:35 -05:00
|
|
|
return false;
|
2013-12-20 10:15:00 +10:00
|
|
|
}
|
|
|
|
|
|
2014-09-03 15:50:28 +10:00
|
|
|
static void
|
|
|
|
|
evdev_tag_external_mouse(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
|
|
|
|
int bustype;
|
|
|
|
|
|
|
|
|
|
bustype = libevdev_get_id_bustype(device->evdev);
|
|
|
|
|
if (bustype == BUS_USB || bustype == BUS_BLUETOOTH) {
|
|
|
|
|
if (device->seat_caps & EVDEV_DEVICE_POINTER)
|
|
|
|
|
device->tags |= EVDEV_TAG_EXTERNAL_MOUSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:38 +02:00
|
|
|
static void
|
|
|
|
|
evdev_tag_trackpoint(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
|
|
|
|
if (libevdev_has_property(device->evdev, INPUT_PROP_POINTING_STICK))
|
|
|
|
|
device->tags |= EVDEV_TAG_TRACKPOINT;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
static void
|
|
|
|
|
fallback_process(struct evdev_dispatch *dispatch,
|
2012-08-06 14:57:08 +03:00
|
|
|
struct evdev_device *device,
|
2012-05-17 12:18:16 +02:00
|
|
|
struct input_event *event,
|
2014-04-08 12:29:45 +02:00
|
|
|
uint64_t time)
|
2012-05-17 12:18:16 +02:00
|
|
|
{
|
2014-10-03 15:01:35 -05:00
|
|
|
bool need_frame = false;
|
2013-12-20 10:15:00 +10:00
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
switch (event->type) {
|
|
|
|
|
case EV_REL:
|
|
|
|
|
evdev_process_relative(device, event, time);
|
|
|
|
|
break;
|
|
|
|
|
case EV_ABS:
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_process_absolute(device, event, time);
|
2012-05-17 12:18:16 +02:00
|
|
|
break;
|
|
|
|
|
case EV_KEY:
|
|
|
|
|
evdev_process_key(device, event, time);
|
|
|
|
|
break;
|
2013-02-27 15:26:23 -05:00
|
|
|
case EV_SYN:
|
2013-12-20 10:15:00 +10:00
|
|
|
need_frame = evdev_need_touch_frame(device);
|
2013-09-24 12:09:03 +01:00
|
|
|
evdev_flush_pending_event(device, time);
|
2013-12-20 10:15:00 +10:00
|
|
|
if (need_frame)
|
|
|
|
|
touch_notify_frame(&device->base, time);
|
2013-02-27 15:26:23 -05:00
|
|
|
break;
|
2012-05-17 12:18:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
fallback_destroy(struct evdev_dispatch *dispatch)
|
|
|
|
|
{
|
|
|
|
|
free(dispatch);
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-03 15:50:28 +10:00
|
|
|
static void
|
|
|
|
|
fallback_tag_device(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
|
|
|
|
evdev_tag_external_mouse(device, udev_device);
|
2014-09-16 16:22:38 +02:00
|
|
|
evdev_tag_trackpoint(device, udev_device);
|
2014-09-03 15:50:28 +10:00
|
|
|
}
|
|
|
|
|
|
2014-08-26 11:41:19 +10:00
|
|
|
static int
|
|
|
|
|
evdev_calibration_has_matrix(struct libinput_device *libinput_device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *device = (struct evdev_device*)libinput_device;
|
|
|
|
|
|
|
|
|
|
return device->abs.absinfo_x && device->abs.absinfo_y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_calibration_set_matrix(struct libinput_device *libinput_device,
|
|
|
|
|
const float matrix[6])
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *device = (struct evdev_device*)libinput_device;
|
|
|
|
|
|
|
|
|
|
evdev_device_calibrate(device, matrix);
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_calibration_get_matrix(struct libinput_device *libinput_device,
|
|
|
|
|
float matrix[6])
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *device = (struct evdev_device*)libinput_device;
|
|
|
|
|
|
|
|
|
|
matrix_to_farray6(&device->abs.usermatrix, matrix);
|
|
|
|
|
|
|
|
|
|
return !matrix_is_identity(&device->abs.usermatrix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_calibration_get_default_matrix(struct libinput_device *libinput_device,
|
|
|
|
|
float matrix[6])
|
|
|
|
|
{
|
2014-08-26 13:44:03 +10:00
|
|
|
struct evdev_device *device = (struct evdev_device*)libinput_device;
|
2014-08-26 11:41:19 +10:00
|
|
|
|
2014-08-26 13:44:03 +10:00
|
|
|
matrix_to_farray6(&device->abs.default_calibration, matrix);
|
2014-08-26 11:41:19 +10:00
|
|
|
|
2014-08-26 13:44:03 +10:00
|
|
|
return !matrix_is_identity(&device->abs.default_calibration);
|
2014-08-26 11:41:19 +10:00
|
|
|
}
|
|
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
struct evdev_dispatch_interface fallback_interface = {
|
|
|
|
|
fallback_process,
|
2014-09-03 14:34:52 +10:00
|
|
|
fallback_destroy,
|
|
|
|
|
NULL, /* device_added */
|
|
|
|
|
NULL, /* device_removed */
|
2014-09-16 16:22:37 +02:00
|
|
|
NULL, /* device_suspended */
|
|
|
|
|
NULL, /* device_resumed */
|
2014-09-03 15:50:28 +10:00
|
|
|
fallback_tag_device,
|
2012-05-17 12:18:16 +02:00
|
|
|
};
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
static uint32_t
|
|
|
|
|
evdev_sendevents_get_modes(struct libinput_device *device)
|
|
|
|
|
{
|
2014-10-30 15:36:52 +10:00
|
|
|
return LIBINPUT_CONFIG_SEND_EVENTS_DISABLED;
|
2014-08-22 13:40:40 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_sendevents_set_mode(struct libinput_device *device,
|
|
|
|
|
enum libinput_config_send_events_mode mode)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device*)device;
|
|
|
|
|
struct evdev_dispatch *dispatch = evdev->dispatch;
|
|
|
|
|
|
|
|
|
|
if (mode == dispatch->sendevents.current_mode)
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
switch(mode) {
|
|
|
|
|
case LIBINPUT_CONFIG_SEND_EVENTS_ENABLED:
|
|
|
|
|
evdev_device_resume(evdev);
|
|
|
|
|
break;
|
|
|
|
|
case LIBINPUT_CONFIG_SEND_EVENTS_DISABLED:
|
|
|
|
|
evdev_device_suspend(evdev);
|
|
|
|
|
break;
|
2014-10-30 15:36:52 +10:00
|
|
|
default: /* no support for combined modes yet */
|
2014-08-22 13:40:40 +10:00
|
|
|
return LIBINPUT_CONFIG_STATUS_UNSUPPORTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dispatch->sendevents.current_mode = mode;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_send_events_mode
|
|
|
|
|
evdev_sendevents_get_mode(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device*)device;
|
|
|
|
|
struct evdev_dispatch *dispatch = evdev->dispatch;
|
|
|
|
|
|
|
|
|
|
return dispatch->sendevents.current_mode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_send_events_mode
|
|
|
|
|
evdev_sendevents_get_default_mode(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return LIBINPUT_CONFIG_SEND_EVENTS_ENABLED;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-23 13:48:06 +10:00
|
|
|
static int
|
|
|
|
|
evdev_left_handed_has(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
/* This is only hooked up when we have left-handed configuration, so we
|
|
|
|
|
* can hardcode 1 here */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
evdev_change_to_left_handed(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
if (device->buttons.want_left_handed == device->buttons.left_handed)
|
|
|
|
|
return;
|
|
|
|
|
|
2014-11-06 12:47:51 +01:00
|
|
|
if (evdev_any_button_down(device))
|
|
|
|
|
return;
|
2014-09-23 13:48:06 +10:00
|
|
|
|
|
|
|
|
device->buttons.left_handed = device->buttons.want_left_handed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_left_handed_set(struct libinput_device *device, int left_handed)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev_device = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
evdev_device->buttons.want_left_handed = left_handed ? true : false;
|
|
|
|
|
|
|
|
|
|
evdev_device->buttons.change_to_left_handed(evdev_device);
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_left_handed_get(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev_device = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
/* return the wanted configuration, even if it hasn't taken
|
|
|
|
|
* effect yet! */
|
|
|
|
|
return evdev_device->buttons.want_left_handed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_left_handed_get_default(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
evdev_init_left_handed(struct evdev_device *device,
|
|
|
|
|
void (*change_to_left_handed)(struct evdev_device *))
|
|
|
|
|
{
|
|
|
|
|
device->buttons.config_left_handed.has = evdev_left_handed_has;
|
|
|
|
|
device->buttons.config_left_handed.set = evdev_left_handed_set;
|
|
|
|
|
device->buttons.config_left_handed.get = evdev_left_handed_get;
|
|
|
|
|
device->buttons.config_left_handed.get_default = evdev_left_handed_get_default;
|
|
|
|
|
device->base.config.left_handed = &device->buttons.config_left_handed;
|
|
|
|
|
device->buttons.left_handed = false;
|
|
|
|
|
device->buttons.want_left_handed = false;
|
|
|
|
|
device->buttons.change_to_left_handed = change_to_left_handed;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 13:39:51 +01:00
|
|
|
static uint32_t
|
|
|
|
|
evdev_scroll_get_modes(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
evdev_change_scroll_mode(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
if (device->scroll.want_mode == device->scroll.mode &&
|
|
|
|
|
device->scroll.want_button == device->scroll.button)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (evdev_any_button_down(device))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
device->scroll.mode = device->scroll.want_mode;
|
|
|
|
|
device->scroll.button = device->scroll.want_button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_scroll_set_mode(struct libinput_device *device,
|
|
|
|
|
enum libinput_config_scroll_mode mode)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device*)device;
|
|
|
|
|
|
|
|
|
|
evdev->scroll.want_mode = mode;
|
|
|
|
|
evdev->scroll.change_scroll_mode(evdev);
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_scroll_mode
|
|
|
|
|
evdev_scroll_get_mode(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
/* return the wanted configuration, even if it hasn't taken
|
|
|
|
|
* effect yet! */
|
|
|
|
|
return evdev->scroll.want_mode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_scroll_mode
|
|
|
|
|
evdev_scroll_get_default_mode(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
if (libevdev_has_property(evdev->evdev, INPUT_PROP_POINTING_STICK))
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
|
|
|
|
|
else
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_NO_SCROLL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_scroll_set_button(struct libinput_device *device,
|
|
|
|
|
uint32_t button)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device*)device;
|
|
|
|
|
|
|
|
|
|
evdev->scroll.want_button = button;
|
|
|
|
|
evdev->scroll.change_scroll_mode(evdev);
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
evdev_scroll_get_button(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
/* return the wanted configuration, even if it hasn't taken
|
|
|
|
|
* effect yet! */
|
|
|
|
|
return evdev->scroll.want_button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
evdev_scroll_get_default_button(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
if (libevdev_has_property(evdev->evdev, INPUT_PROP_POINTING_STICK))
|
|
|
|
|
return BTN_MIDDLE;
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_init_button_scroll(struct evdev_device *device,
|
|
|
|
|
void (*change_scroll_mode)(struct evdev_device *))
|
|
|
|
|
{
|
|
|
|
|
libinput_timer_init(&device->scroll.timer, device->base.seat->libinput,
|
|
|
|
|
evdev_button_scroll_timeout, device);
|
|
|
|
|
device->scroll.config.get_modes = evdev_scroll_get_modes;
|
|
|
|
|
device->scroll.config.set_mode = evdev_scroll_set_mode;
|
|
|
|
|
device->scroll.config.get_mode = evdev_scroll_get_mode;
|
|
|
|
|
device->scroll.config.get_default_mode = evdev_scroll_get_default_mode;
|
|
|
|
|
device->scroll.config.set_button = evdev_scroll_set_button;
|
|
|
|
|
device->scroll.config.get_button = evdev_scroll_get_button;
|
|
|
|
|
device->scroll.config.get_default_button = evdev_scroll_get_default_button;
|
|
|
|
|
device->base.config.scroll_mode = &device->scroll.config;
|
|
|
|
|
device->scroll.mode = evdev_scroll_get_default_mode((struct libinput_device *)device);
|
|
|
|
|
device->scroll.want_mode = device->scroll.mode;
|
|
|
|
|
device->scroll.button = evdev_scroll_get_default_button((struct libinput_device *)device);
|
|
|
|
|
device->scroll.want_button = device->scroll.button;
|
|
|
|
|
device->scroll.change_scroll_mode = change_scroll_mode;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
static struct evdev_dispatch *
|
2014-08-26 11:41:19 +10:00
|
|
|
fallback_dispatch_create(struct libinput_device *device)
|
2012-05-17 12:18:16 +02:00
|
|
|
{
|
2014-08-22 13:40:40 +10:00
|
|
|
struct evdev_dispatch *dispatch = zalloc(sizeof *dispatch);
|
2014-09-23 13:48:06 +10:00
|
|
|
struct evdev_device *evdev_device = (struct evdev_device *)device;
|
|
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
if (dispatch == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
dispatch->interface = &fallback_interface;
|
2014-08-22 13:40:40 +10:00
|
|
|
|
2014-09-23 13:48:06 +10:00
|
|
|
if (evdev_device->buttons.want_left_handed &&
|
|
|
|
|
evdev_init_left_handed(evdev_device,
|
|
|
|
|
evdev_change_to_left_handed) == -1) {
|
|
|
|
|
free(dispatch);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 13:39:51 +01:00
|
|
|
if (evdev_device->scroll.want_button &&
|
|
|
|
|
evdev_init_button_scroll(evdev_device,
|
|
|
|
|
evdev_change_scroll_mode) == -1) {
|
|
|
|
|
free(dispatch);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-26 11:41:19 +10:00
|
|
|
device->config.calibration = &dispatch->calibration;
|
|
|
|
|
|
|
|
|
|
dispatch->calibration.has_matrix = evdev_calibration_has_matrix;
|
|
|
|
|
dispatch->calibration.set_matrix = evdev_calibration_set_matrix;
|
|
|
|
|
dispatch->calibration.get_matrix = evdev_calibration_get_matrix;
|
|
|
|
|
dispatch->calibration.get_default_matrix = evdev_calibration_get_default_matrix;
|
2012-05-17 12:18:16 +02:00
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
device->config.sendevents = &dispatch->sendevents.config;
|
|
|
|
|
|
|
|
|
|
dispatch->sendevents.current_mode = LIBINPUT_CONFIG_SEND_EVENTS_ENABLED;
|
|
|
|
|
dispatch->sendevents.config.get_modes = evdev_sendevents_get_modes;
|
|
|
|
|
dispatch->sendevents.config.set_mode = evdev_sendevents_set_mode;
|
|
|
|
|
dispatch->sendevents.config.get_mode = evdev_sendevents_get_mode;
|
|
|
|
|
dispatch->sendevents.config.get_default_mode = evdev_sendevents_get_default_mode;
|
|
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
return dispatch;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_process_event(struct evdev_device *device, struct input_event *e)
|
2011-01-14 14:45:42 -05:00
|
|
|
{
|
2012-05-17 12:18:16 +02:00
|
|
|
struct evdev_dispatch *dispatch = device->dispatch;
|
2014-04-08 12:29:45 +02:00
|
|
|
uint64_t time = e->time.tv_sec * 1000ULL + e->time.tv_usec / 1000;
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
dispatch->interface->process(dispatch, device, e, time);
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_device_dispatch_one(struct evdev_device *device,
|
|
|
|
|
struct input_event *ev)
|
|
|
|
|
{
|
|
|
|
|
if (!device->mtdev) {
|
|
|
|
|
evdev_process_event(device, ev);
|
|
|
|
|
} else {
|
|
|
|
|
mtdev_put_event(device->mtdev, ev);
|
|
|
|
|
if (libevdev_event_is_code(ev, EV_SYN, SYN_REPORT)) {
|
|
|
|
|
while (!mtdev_empty(device->mtdev)) {
|
|
|
|
|
struct input_event e;
|
|
|
|
|
mtdev_get_event(device->mtdev, &e);
|
|
|
|
|
evdev_process_event(device, &e);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
}
|
2012-03-20 19:52:57 -04:00
|
|
|
}
|
|
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
static int
|
|
|
|
|
evdev_sync_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct input_event ev;
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
rc = libevdev_next_event(device->evdev,
|
|
|
|
|
LIBEVDEV_READ_FLAG_SYNC, &ev);
|
|
|
|
|
if (rc < 0)
|
|
|
|
|
break;
|
|
|
|
|
evdev_device_dispatch_one(device, &ev);
|
|
|
|
|
} while (rc == LIBEVDEV_READ_STATUS_SYNC);
|
|
|
|
|
|
|
|
|
|
return rc == -EAGAIN ? 0 : rc;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-17 11:19:50 +01:00
|
|
|
static void
|
|
|
|
|
evdev_device_dispatch(void *data)
|
2012-03-20 19:52:57 -04:00
|
|
|
{
|
2013-11-17 11:19:50 +01:00
|
|
|
struct evdev_device *device = data;
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
struct libinput *libinput = device->base.seat->libinput;
|
2013-12-06 13:09:18 +10:00
|
|
|
struct input_event ev;
|
|
|
|
|
int rc;
|
2012-03-20 19:52:57 -04:00
|
|
|
|
|
|
|
|
/* If the compositor is repainting, this function is called only once
|
|
|
|
|
* per frame and we have to process all the events available on the
|
|
|
|
|
* fd, otherwise there will be input lag. */
|
|
|
|
|
do {
|
2013-12-06 13:09:18 +10:00
|
|
|
rc = libevdev_next_event(device->evdev,
|
|
|
|
|
LIBEVDEV_READ_FLAG_NORMAL, &ev);
|
|
|
|
|
if (rc == LIBEVDEV_READ_STATUS_SYNC) {
|
2014-11-05 13:32:17 +01:00
|
|
|
switch (ratelimit_test(&device->syn_drop_limit)) {
|
|
|
|
|
case RATELIMIT_PASS:
|
2014-10-29 09:56:27 -05:00
|
|
|
log_info(libinput, "SYN_DROPPED event from "
|
|
|
|
|
"\"%s\" - some input events have "
|
|
|
|
|
"been lost.\n", device->devname);
|
2014-11-05 13:32:17 +01:00
|
|
|
break;
|
|
|
|
|
case RATELIMIT_THRESHOLD:
|
|
|
|
|
log_info(libinput, "SYN_DROPPED flood "
|
|
|
|
|
"from \"%s\"\n",
|
|
|
|
|
device->devname);
|
|
|
|
|
break;
|
|
|
|
|
case RATELIMIT_EXCEEDED:
|
|
|
|
|
break;
|
2014-10-29 09:56:27 -05:00
|
|
|
}
|
|
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
/* send one more sync event so we handle all
|
|
|
|
|
currently pending events before we sync up
|
|
|
|
|
to the current state */
|
|
|
|
|
ev.code = SYN_REPORT;
|
|
|
|
|
evdev_device_dispatch_one(device, &ev);
|
|
|
|
|
|
|
|
|
|
rc = evdev_sync_device(device);
|
|
|
|
|
if (rc == 0)
|
|
|
|
|
rc = LIBEVDEV_READ_STATUS_SUCCESS;
|
|
|
|
|
} else if (rc == LIBEVDEV_READ_STATUS_SUCCESS) {
|
|
|
|
|
evdev_device_dispatch_one(device, &ev);
|
2012-03-20 19:52:57 -04:00
|
|
|
}
|
2013-12-06 13:09:18 +10:00
|
|
|
} while (rc == LIBEVDEV_READ_STATUS_SUCCESS);
|
2012-03-20 19:52:57 -04:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
if (rc != -EAGAIN && rc != -EINTR) {
|
|
|
|
|
libinput_remove_source(libinput, device->source);
|
|
|
|
|
device->source = NULL;
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
}
|
|
|
|
|
|
2014-09-19 15:09:31 +10:00
|
|
|
static int
|
|
|
|
|
evdev_accel_config_available(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
/* this function is only called if we set up ptraccel, so we can
|
|
|
|
|
reply with a resounding "Yes" */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_accel_config_set_speed(struct libinput_device *device, double speed)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *dev = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
if (!filter_set_speed(dev->pointer.filter, speed))
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_INVALID;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static double
|
|
|
|
|
evdev_accel_config_get_speed(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *dev = (struct evdev_device *)device;
|
|
|
|
|
|
|
|
|
|
return filter_get_speed(dev->pointer.filter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static double
|
|
|
|
|
evdev_accel_config_get_default_speed(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return 0.0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-04 09:44:43 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_init_pointer_acceleration(struct evdev_device *device)
|
2014-05-18 19:20:39 +02:00
|
|
|
{
|
|
|
|
|
device->pointer.filter =
|
2014-10-30 16:34:13 -05:00
|
|
|
create_pointer_accelerator_filter(
|
2014-09-19 11:10:17 +10:00
|
|
|
pointer_accel_profile_linear);
|
2014-05-18 19:20:39 +02:00
|
|
|
if (!device->pointer.filter)
|
|
|
|
|
return -1;
|
|
|
|
|
|
2014-09-19 15:09:31 +10:00
|
|
|
device->pointer.config.available = evdev_accel_config_available;
|
|
|
|
|
device->pointer.config.set_speed = evdev_accel_config_set_speed;
|
|
|
|
|
device->pointer.config.get_speed = evdev_accel_config_get_speed;
|
|
|
|
|
device->pointer.config.get_default_speed = evdev_accel_config_get_default_speed;
|
|
|
|
|
device->base.config.accel = &device->pointer.config;
|
|
|
|
|
|
2014-05-18 19:20:39 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-03 15:50:28 +10:00
|
|
|
|
2014-09-15 14:59:07 +10:00
|
|
|
static inline int
|
|
|
|
|
evdev_need_mtdev(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
|
|
|
|
|
return (libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y) &&
|
|
|
|
|
!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT));
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-03 15:50:28 +10:00
|
|
|
static void
|
|
|
|
|
evdev_tag_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct udev *udev;
|
|
|
|
|
struct udev_device *udev_device = NULL;
|
|
|
|
|
|
|
|
|
|
udev = udev_new();
|
|
|
|
|
if (!udev)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
udev_device = udev_device_new_from_syspath(udev, device->syspath);
|
|
|
|
|
if (udev_device) {
|
|
|
|
|
if (device->dispatch->interface->tag_device)
|
|
|
|
|
device->dispatch->interface->tag_device(device, udev_device);
|
|
|
|
|
udev_device_unref(udev_device);
|
|
|
|
|
}
|
|
|
|
|
udev_unref(udev);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-05 10:51:31 +10:00
|
|
|
static inline int
|
|
|
|
|
evdev_fix_abs_resolution(struct libevdev *evdev,
|
|
|
|
|
unsigned int code,
|
|
|
|
|
const struct input_absinfo *absinfo)
|
|
|
|
|
{
|
|
|
|
|
struct input_absinfo fixed;
|
|
|
|
|
|
|
|
|
|
if (absinfo->resolution == 0) {
|
|
|
|
|
fixed = *absinfo;
|
|
|
|
|
fixed.resolution = 1;
|
|
|
|
|
/* libevdev_set_abs_info() changes the absinfo we already
|
|
|
|
|
have a pointer to, no need to fetch it again */
|
|
|
|
|
libevdev_set_abs_info(evdev, code, &fixed);
|
|
|
|
|
return 1;
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-19 17:07:40 +03:00
|
|
|
static int
|
2013-12-16 11:01:56 -08:00
|
|
|
evdev_configure_device(struct evdev_device *device)
|
2011-08-19 15:06:20 +03:00
|
|
|
{
|
2014-06-18 19:51:19 +10:00
|
|
|
struct libinput *libinput = device->base.seat->libinput;
|
2014-03-24 23:12:36 +01:00
|
|
|
struct libevdev *evdev = device->evdev;
|
2013-12-06 12:01:47 +10:00
|
|
|
const struct input_absinfo *absinfo;
|
2013-12-16 15:37:16 -08:00
|
|
|
int has_abs, has_rel, has_mt;
|
2013-12-16 15:19:30 -08:00
|
|
|
int has_button, has_keyboard, has_touch;
|
2014-04-22 23:02:14 +02:00
|
|
|
struct mt_slot *slots;
|
|
|
|
|
int num_slots;
|
|
|
|
|
int active_slot;
|
|
|
|
|
int slot;
|
2012-05-30 16:31:48 +01:00
|
|
|
unsigned int i;
|
2011-08-19 17:07:40 +03:00
|
|
|
|
2013-12-16 11:25:19 -08:00
|
|
|
has_rel = 0;
|
2011-08-19 17:07:40 +03:00
|
|
|
has_abs = 0;
|
2013-12-16 13:42:40 -08:00
|
|
|
has_mt = 0;
|
2013-12-16 14:43:29 -08:00
|
|
|
has_button = 0;
|
2013-12-16 15:07:59 -08:00
|
|
|
has_keyboard = 0;
|
2013-12-16 15:19:30 -08:00
|
|
|
has_touch = 0;
|
2011-08-19 15:06:20 +03:00
|
|
|
|
2014-03-24 23:12:36 +01:00
|
|
|
if (libevdev_has_event_type(evdev, EV_ABS)) {
|
2013-08-13 14:55:39 -07:00
|
|
|
|
2014-03-24 23:12:36 +01:00
|
|
|
if ((absinfo = libevdev_get_abs_info(evdev, ABS_X))) {
|
2014-11-05 10:51:31 +10:00
|
|
|
if (evdev_fix_abs_resolution(evdev,
|
|
|
|
|
ABS_X,
|
|
|
|
|
absinfo))
|
2014-07-24 16:15:43 +10:00
|
|
|
device->abs.fake_resolution = 1;
|
2014-06-19 11:11:36 +10:00
|
|
|
device->abs.absinfo_x = absinfo;
|
2013-12-16 13:42:40 -08:00
|
|
|
has_abs = 1;
|
2011-08-19 15:06:20 +03:00
|
|
|
}
|
2014-03-24 23:12:36 +01:00
|
|
|
if ((absinfo = libevdev_get_abs_info(evdev, ABS_Y))) {
|
2014-11-05 10:51:31 +10:00
|
|
|
if (evdev_fix_abs_resolution(evdev,
|
|
|
|
|
ABS_Y,
|
|
|
|
|
absinfo))
|
2014-07-24 16:15:43 +10:00
|
|
|
device->abs.fake_resolution = 1;
|
2014-06-19 11:11:36 +10:00
|
|
|
device->abs.absinfo_y = absinfo;
|
2013-12-16 13:42:40 -08:00
|
|
|
has_abs = 1;
|
2011-08-19 15:06:20 +03:00
|
|
|
}
|
2014-11-05 11:01:45 +10:00
|
|
|
|
|
|
|
|
/* Fake MT devices have the ABS_MT_SLOT bit set because of
|
|
|
|
|
the limited ABS_* range - they aren't MT devices, they
|
|
|
|
|
just have too many ABS_ axes */
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT) &&
|
|
|
|
|
libevdev_get_num_slots(evdev) == -1) {
|
|
|
|
|
has_mt = 0;
|
|
|
|
|
has_touch = 0;
|
|
|
|
|
} else if (libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) &&
|
2014-11-18 13:26:21 +10:00
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y)) {
|
2014-03-24 23:12:36 +01:00
|
|
|
absinfo = libevdev_get_abs_info(evdev, ABS_MT_POSITION_X);
|
2014-11-05 10:51:31 +10:00
|
|
|
if (evdev_fix_abs_resolution(evdev,
|
|
|
|
|
ABS_MT_POSITION_X,
|
|
|
|
|
absinfo))
|
2014-07-24 16:15:43 +10:00
|
|
|
device->abs.fake_resolution = 1;
|
2014-06-19 11:11:36 +10:00
|
|
|
device->abs.absinfo_x = absinfo;
|
2014-11-05 10:51:31 +10:00
|
|
|
|
2014-03-24 23:12:36 +01:00
|
|
|
absinfo = libevdev_get_abs_info(evdev, ABS_MT_POSITION_Y);
|
2014-11-05 10:51:31 +10:00
|
|
|
if (evdev_fix_abs_resolution(evdev,
|
|
|
|
|
ABS_MT_POSITION_Y,
|
|
|
|
|
absinfo))
|
2014-07-24 16:15:43 +10:00
|
|
|
device->abs.fake_resolution = 1;
|
2014-06-19 11:11:36 +10:00
|
|
|
device->abs.absinfo_y = absinfo;
|
2011-12-21 19:34:09 +02:00
|
|
|
device->is_mt = 1;
|
2013-12-16 15:19:30 -08:00
|
|
|
has_touch = 1;
|
2013-12-16 13:42:40 -08:00
|
|
|
has_mt = 1;
|
2013-08-07 11:04:45 +10:00
|
|
|
|
2014-11-05 10:54:14 +10:00
|
|
|
/* We only handle the slotted Protocol B in libinput.
|
|
|
|
|
Devices with ABS_MT_POSITION_* but not ABS_MT_SLOT
|
|
|
|
|
require mtdev for conversion. */
|
2014-09-15 14:59:07 +10:00
|
|
|
if (evdev_need_mtdev(device)) {
|
2013-08-07 11:04:45 +10:00
|
|
|
device->mtdev = mtdev_new_open(device->fd);
|
2013-12-16 15:19:30 -08:00
|
|
|
if (!device->mtdev)
|
2014-02-06 09:26:00 +10:00
|
|
|
return -1;
|
2014-04-22 23:02:14 +02:00
|
|
|
|
|
|
|
|
num_slots = device->mtdev->caps.slot.maximum;
|
|
|
|
|
if (device->mtdev->caps.slot.minimum < 0 ||
|
|
|
|
|
num_slots <= 0)
|
|
|
|
|
return -1;
|
|
|
|
|
active_slot = device->mtdev->caps.slot.value;
|
2013-08-07 11:04:46 +10:00
|
|
|
} else {
|
2014-04-22 23:02:14 +02:00
|
|
|
num_slots = libevdev_get_num_slots(device->evdev);
|
|
|
|
|
active_slot = libevdev_get_current_slot(evdev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
slots = calloc(num_slots, sizeof(struct mt_slot));
|
|
|
|
|
if (!slots)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (slot = 0; slot < num_slots; ++slot) {
|
|
|
|
|
slots[slot].seat_slot = -1;
|
|
|
|
|
slots[slot].x = 0;
|
|
|
|
|
slots[slot].y = 0;
|
2013-08-07 11:04:45 +10:00
|
|
|
}
|
2014-04-22 23:02:14 +02:00
|
|
|
device->mt.slots = slots;
|
|
|
|
|
device->mt.slots_len = num_slots;
|
|
|
|
|
device->mt.slot = active_slot;
|
2011-12-21 19:34:09 +02:00
|
|
|
}
|
2011-08-19 15:06:20 +03:00
|
|
|
}
|
2014-09-16 16:22:36 +02:00
|
|
|
|
2014-03-24 23:12:36 +01:00
|
|
|
if (libevdev_has_event_code(evdev, EV_REL, REL_X) ||
|
|
|
|
|
libevdev_has_event_code(evdev, EV_REL, REL_Y))
|
2014-04-21 19:20:44 +02:00
|
|
|
has_rel = 1;
|
2013-12-06 12:01:47 +10:00
|
|
|
|
2014-03-24 23:12:36 +01:00
|
|
|
if (libevdev_has_event_type(evdev, EV_KEY)) {
|
2014-05-29 15:43:38 +10:00
|
|
|
if (!libevdev_has_property(evdev, INPUT_PROP_DIRECT) &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_KEY, BTN_TOOL_FINGER) &&
|
2014-03-24 23:12:36 +01:00
|
|
|
!libevdev_has_event_code(evdev, EV_KEY, BTN_TOOL_PEN) &&
|
2013-12-16 13:42:40 -08:00
|
|
|
(has_abs || has_mt)) {
|
2014-02-17 15:40:09 +10:00
|
|
|
device->dispatch = evdev_mt_touchpad_create(device);
|
2014-06-18 19:51:19 +10:00
|
|
|
log_info(libinput,
|
|
|
|
|
"input device '%s', %s is a touchpad\n",
|
2014-04-11 16:27:01 -07:00
|
|
|
device->devname, device->devnode);
|
2014-07-26 21:34:47 +02:00
|
|
|
return device->dispatch == NULL ? -1 : 0;
|
2013-08-07 11:04:49 +10:00
|
|
|
}
|
2014-07-13 00:25:36 +02:00
|
|
|
|
|
|
|
|
for (i = 0; i < KEY_MAX; i++) {
|
2014-03-24 23:12:36 +01:00
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, i)) {
|
2014-07-13 00:25:36 +02:00
|
|
|
switch (get_key_type(i)) {
|
|
|
|
|
case EVDEV_KEY_TYPE_NONE:
|
|
|
|
|
break;
|
|
|
|
|
case EVDEV_KEY_TYPE_KEY:
|
|
|
|
|
has_keyboard = 1;
|
|
|
|
|
break;
|
|
|
|
|
case EVDEV_KEY_TYPE_BUTTON:
|
|
|
|
|
has_button = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2012-05-30 16:31:48 +01:00
|
|
|
}
|
|
|
|
|
}
|
2014-07-13 00:25:36 +02:00
|
|
|
|
2014-03-24 23:12:36 +01:00
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, BTN_TOUCH))
|
2013-12-16 15:19:30 -08:00
|
|
|
has_touch = 1;
|
2011-08-19 15:06:20 +03:00
|
|
|
}
|
2014-03-24 23:12:36 +01:00
|
|
|
if (libevdev_has_event_type(evdev, EV_LED))
|
2013-12-16 15:07:59 -08:00
|
|
|
has_keyboard = 1;
|
2011-08-19 17:07:40 +03:00
|
|
|
|
2014-04-11 16:27:01 -07:00
|
|
|
if ((has_abs || has_rel) && has_button) {
|
2014-07-04 09:44:43 +10:00
|
|
|
if (evdev_device_init_pointer_acceleration(device) == -1)
|
2014-05-18 19:20:39 +02:00
|
|
|
return -1;
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_POINTER;
|
2014-05-18 19:20:39 +02:00
|
|
|
|
2014-06-18 19:51:19 +10:00
|
|
|
log_info(libinput,
|
|
|
|
|
"input device '%s', %s is a pointer caps =%s%s%s\n",
|
2014-04-11 16:27:01 -07:00
|
|
|
device->devname, device->devnode,
|
|
|
|
|
has_abs ? " absolute-motion" : "",
|
|
|
|
|
has_rel ? " relative-motion": "",
|
|
|
|
|
has_button ? " button" : "");
|
2014-09-23 13:48:06 +10:00
|
|
|
|
|
|
|
|
/* want left-handed config option */
|
|
|
|
|
device->buttons.want_left_handed = true;
|
2014-04-11 16:27:01 -07:00
|
|
|
}
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
if (has_rel && has_button) {
|
|
|
|
|
/* want button scrolling config option */
|
|
|
|
|
device->scroll.want_button = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-11 16:27:01 -07:00
|
|
|
if (has_keyboard) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_KEYBOARD;
|
2014-06-18 19:51:19 +10:00
|
|
|
log_info(libinput,
|
|
|
|
|
"input device '%s', %s is a keyboard\n",
|
2014-04-11 16:27:01 -07:00
|
|
|
device->devname, device->devnode);
|
|
|
|
|
}
|
|
|
|
|
if (has_touch && !has_button) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_TOUCH;
|
2014-06-18 19:51:19 +10:00
|
|
|
log_info(libinput,
|
|
|
|
|
"input device '%s', %s is a touch device\n",
|
2014-04-11 16:27:01 -07:00
|
|
|
device->devname, device->devnode);
|
|
|
|
|
}
|
2013-12-16 11:01:56 -08:00
|
|
|
|
|
|
|
|
return 0;
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-09-03 14:34:52 +10:00
|
|
|
static void
|
|
|
|
|
evdev_notify_added_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *dev;
|
|
|
|
|
|
|
|
|
|
list_for_each(dev, &device->base.seat->devices_list, link) {
|
|
|
|
|
struct evdev_device *d = (struct evdev_device*)dev;
|
|
|
|
|
if (dev == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
/* Notify existing device d about addition of device device */
|
2014-09-03 14:34:52 +10:00
|
|
|
if (d->dispatch->interface->device_added)
|
|
|
|
|
d->dispatch->interface->device_added(d, device);
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
/* Notify new device device about existing device d */
|
2014-09-03 14:34:52 +10:00
|
|
|
if (device->dispatch->interface->device_added)
|
|
|
|
|
device->dispatch->interface->device_added(device, d);
|
2014-09-16 16:22:37 +02:00
|
|
|
|
|
|
|
|
/* Notify new device device if existing device d is suspended */
|
|
|
|
|
if (d->suspended && device->dispatch->interface->device_suspended)
|
|
|
|
|
device->dispatch->interface->device_suspended(device, d);
|
2014-09-03 14:34:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
notify_added_device(&device->base);
|
|
|
|
|
}
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
struct evdev_device *
|
|
|
|
|
evdev_device_create(struct libinput_seat *seat,
|
|
|
|
|
const char *devnode,
|
2014-01-30 16:33:24 +10:00
|
|
|
const char *sysname,
|
|
|
|
|
const char *syspath)
|
2011-01-14 14:45:42 -05:00
|
|
|
{
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
struct libinput *libinput = seat->libinput;
|
2012-08-06 14:57:08 +03:00
|
|
|
struct evdev_device *device;
|
2013-12-06 12:01:47 +10:00
|
|
|
int rc;
|
2014-01-30 14:54:31 +10:00
|
|
|
int fd;
|
2014-02-10 15:40:49 +10:00
|
|
|
int unhandled_device = 0;
|
2014-01-30 14:54:31 +10:00
|
|
|
|
|
|
|
|
/* Use non-blocking mode so that we can loop on read on
|
|
|
|
|
* evdev_device_data() until all events on the fd are
|
|
|
|
|
* read. mtdev_get() also expects this. */
|
|
|
|
|
fd = open_restricted(libinput, devnode, O_RDWR | O_NONBLOCK);
|
|
|
|
|
if (fd < 0) {
|
2014-06-18 19:51:19 +10:00
|
|
|
log_info(libinput,
|
|
|
|
|
"opening input device '%s' failed (%s).\n",
|
2014-01-30 14:54:31 +10:00
|
|
|
devnode, strerror(-fd));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2013-08-08 11:57:05 +10:00
|
|
|
device = zalloc(sizeof *device);
|
2011-01-14 14:45:42 -05:00
|
|
|
if (device == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
libinput_device_init(&device->base, seat);
|
2014-08-22 14:48:42 +10:00
|
|
|
libinput_seat_ref(seat);
|
2011-09-01 13:25:50 -04:00
|
|
|
|
2013-12-06 12:01:47 +10:00
|
|
|
rc = libevdev_new_from_fd(fd, &device->evdev);
|
|
|
|
|
if (rc != 0)
|
2014-08-22 14:48:42 +10:00
|
|
|
goto err;
|
2013-12-06 12:01:47 +10:00
|
|
|
|
2014-02-19 08:45:57 +10:00
|
|
|
libevdev_set_clock_id(device->evdev, CLOCK_MONOTONIC);
|
|
|
|
|
|
2013-10-17 23:04:05 +02:00
|
|
|
device->seat_caps = 0;
|
2011-12-21 19:34:09 +02:00
|
|
|
device->is_mt = 0;
|
2012-03-16 17:33:03 -03:00
|
|
|
device->mtdev = NULL;
|
2013-11-10 17:55:40 +01:00
|
|
|
device->devnode = strdup(devnode);
|
2013-12-15 17:50:04 +01:00
|
|
|
device->sysname = strdup(sysname);
|
2014-01-30 16:33:24 +10:00
|
|
|
device->syspath = strdup(syspath);
|
2011-12-21 22:18:36 -05:00
|
|
|
device->rel.dx = 0;
|
|
|
|
|
device->rel.dy = 0;
|
2014-03-24 23:37:09 +01:00
|
|
|
device->abs.seat_slot = -1;
|
2012-05-17 12:18:16 +02:00
|
|
|
device->dispatch = NULL;
|
2013-11-10 17:55:40 +01:00
|
|
|
device->fd = fd;
|
2013-09-24 12:09:03 +01:00
|
|
|
device->pending_event = EVDEV_NONE;
|
2013-12-06 12:01:47 +10:00
|
|
|
device->devname = libevdev_get_name(device->evdev);
|
2014-09-16 16:22:35 +02:00
|
|
|
device->scroll.threshold = 5.0; /* Default may be overridden */
|
|
|
|
|
device->scroll.direction = 0;
|
2014-10-30 16:34:15 -05:00
|
|
|
device->dpi = DEFAULT_MOUSE_DPI;
|
2014-11-05 13:32:17 +01:00
|
|
|
/* at most 5 SYN_DROPPED log-messages per 30s */
|
|
|
|
|
ratelimit_init(&device->syn_drop_limit, 30ULL * 1000, 5);
|
2012-08-03 14:39:07 +03:00
|
|
|
|
2014-08-26 10:34:05 +10:00
|
|
|
matrix_init_identity(&device->abs.calibration);
|
2014-08-26 11:41:19 +10:00
|
|
|
matrix_init_identity(&device->abs.usermatrix);
|
2014-08-26 13:44:03 +10:00
|
|
|
matrix_init_identity(&device->abs.default_calibration);
|
2014-08-26 10:34:05 +10:00
|
|
|
|
2013-12-16 11:01:56 -08:00
|
|
|
if (evdev_configure_device(device) == -1)
|
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
|
|
if (device->seat_caps == 0) {
|
2014-02-10 15:40:49 +10:00
|
|
|
unhandled_device = 1;
|
2014-01-22 23:43:45 +01:00
|
|
|
goto err;
|
2013-02-16 14:29:24 -05:00
|
|
|
}
|
|
|
|
|
|
2012-05-17 12:18:16 +02:00
|
|
|
/* If the dispatch was not set up use the fallback. */
|
|
|
|
|
if (device->dispatch == NULL)
|
2014-08-26 11:41:19 +10:00
|
|
|
device->dispatch = fallback_dispatch_create(&device->base);
|
2012-05-17 12:18:16 +02:00
|
|
|
if (device->dispatch == NULL)
|
2013-08-07 11:04:48 +10:00
|
|
|
goto err;
|
2012-05-17 12:18:16 +02:00
|
|
|
|
2013-11-17 11:19:50 +01:00
|
|
|
device->source =
|
|
|
|
|
libinput_add_fd(libinput, fd, evdev_device_dispatch, device);
|
|
|
|
|
if (!device->source)
|
|
|
|
|
goto err;
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
list_insert(seat->devices_list.prev, &device->base.link);
|
2014-09-03 15:50:28 +10:00
|
|
|
|
|
|
|
|
evdev_tag_device(device);
|
2014-09-03 14:34:52 +10:00
|
|
|
evdev_notify_added_device(device);
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
|
|
|
|
|
return device;
|
2011-10-28 13:15:25 -04:00
|
|
|
|
2013-08-07 11:04:48 +10:00
|
|
|
err:
|
2014-01-30 14:54:31 +10:00
|
|
|
if (fd >= 0)
|
|
|
|
|
close_restricted(libinput, fd);
|
2013-08-07 11:04:48 +10:00
|
|
|
evdev_device_destroy(device);
|
2014-02-10 15:40:49 +10:00
|
|
|
|
|
|
|
|
return unhandled_device ? EVDEV_UNHANDLED_DEVICE : NULL;
|
2011-01-14 14:45:42 -05:00
|
|
|
}
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
int
|
|
|
|
|
evdev_device_get_keys(struct evdev_device *device, char *keys, size_t size)
|
|
|
|
|
{
|
|
|
|
|
memset(keys, 0, size);
|
2014-07-27 15:43:59 +02:00
|
|
|
return 0;
|
2013-11-10 17:55:40 +01:00
|
|
|
}
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
const char *
|
|
|
|
|
evdev_device_get_output(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return device->output_name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 17:50:04 +01:00
|
|
|
const char *
|
|
|
|
|
evdev_device_get_sysname(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return device->sysname;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-27 12:55:29 +10:00
|
|
|
const char *
|
|
|
|
|
evdev_device_get_name(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return device->devname;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
|
evdev_device_get_id_product(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return libevdev_get_id_product(device->evdev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
|
evdev_device_get_id_vendor(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return libevdev_get_id_vendor(device->evdev);
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-26 13:44:03 +10:00
|
|
|
void
|
|
|
|
|
evdev_device_set_default_calibration(struct evdev_device *device,
|
|
|
|
|
const float calibration[6])
|
|
|
|
|
{
|
|
|
|
|
matrix_from_farray6(&device->abs.default_calibration, calibration);
|
|
|
|
|
evdev_device_calibrate(device, calibration);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
void
|
2014-08-26 12:57:41 +10:00
|
|
|
evdev_device_calibrate(struct evdev_device *device,
|
|
|
|
|
const float calibration[6])
|
2013-11-10 17:55:40 +01:00
|
|
|
{
|
2014-08-26 10:34:05 +10:00
|
|
|
struct matrix scale,
|
|
|
|
|
translate,
|
|
|
|
|
transform;
|
|
|
|
|
double sx, sy;
|
|
|
|
|
|
|
|
|
|
matrix_from_farray6(&transform, calibration);
|
|
|
|
|
device->abs.apply_calibration = !matrix_is_identity(&transform);
|
|
|
|
|
|
|
|
|
|
if (!device->abs.apply_calibration) {
|
|
|
|
|
matrix_init_identity(&device->abs.calibration);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sx = device->abs.absinfo_x->maximum - device->abs.absinfo_x->minimum + 1;
|
|
|
|
|
sy = device->abs.absinfo_y->maximum - device->abs.absinfo_y->minimum + 1;
|
|
|
|
|
|
|
|
|
|
/* The transformation matrix is in the form:
|
|
|
|
|
* [ a b c ]
|
|
|
|
|
* [ d e f ]
|
|
|
|
|
* [ 0 0 1 ]
|
|
|
|
|
* Where a, e are the scale components, a, b, d, e are the rotation
|
|
|
|
|
* component (combined with scale) and c and f are the translation
|
|
|
|
|
* component. The translation component in the input matrix must be
|
|
|
|
|
* normalized to multiples of the device width and height,
|
|
|
|
|
* respectively. e.g. c == 1 shifts one device-width to the right.
|
|
|
|
|
*
|
|
|
|
|
* We pre-calculate a single matrix to apply to event coordinates:
|
|
|
|
|
* M = Un-Normalize * Calibration * Normalize
|
|
|
|
|
*
|
|
|
|
|
* Normalize: scales the device coordinates to [0,1]
|
|
|
|
|
* Calibration: user-supplied matrix
|
|
|
|
|
* Un-Normalize: scales back up to device coordinates
|
|
|
|
|
* Matrix maths requires the normalize/un-normalize in reverse
|
|
|
|
|
* order.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-08-26 11:41:19 +10:00
|
|
|
/* back up the user matrix so we can return it on request */
|
|
|
|
|
matrix_from_farray6(&device->abs.usermatrix, calibration);
|
|
|
|
|
|
2014-08-26 10:34:05 +10:00
|
|
|
/* Un-Normalize */
|
|
|
|
|
matrix_init_translate(&translate,
|
|
|
|
|
device->abs.absinfo_x->minimum,
|
|
|
|
|
device->abs.absinfo_y->minimum);
|
|
|
|
|
matrix_init_scale(&scale, sx, sy);
|
|
|
|
|
matrix_mult(&scale, &translate, &scale);
|
|
|
|
|
|
|
|
|
|
/* Calibration */
|
|
|
|
|
matrix_mult(&transform, &scale, &transform);
|
|
|
|
|
|
|
|
|
|
/* Normalize */
|
|
|
|
|
matrix_init_translate(&translate,
|
|
|
|
|
-device->abs.absinfo_x->minimum/sx,
|
|
|
|
|
-device->abs.absinfo_y->minimum/sy);
|
|
|
|
|
matrix_init_scale(&scale, 1.0/sx, 1.0/sy);
|
|
|
|
|
matrix_mult(&scale, &translate, &scale);
|
|
|
|
|
|
|
|
|
|
/* store final matrix in device */
|
|
|
|
|
matrix_mult(&device->abs.calibration, &transform, &scale);
|
2013-11-10 17:55:40 +01:00
|
|
|
}
|
|
|
|
|
|
2013-12-15 17:45:02 +01:00
|
|
|
int
|
|
|
|
|
evdev_device_has_capability(struct evdev_device *device,
|
|
|
|
|
enum libinput_device_capability capability)
|
|
|
|
|
{
|
|
|
|
|
switch (capability) {
|
|
|
|
|
case LIBINPUT_DEVICE_CAP_POINTER:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_POINTER);
|
|
|
|
|
case LIBINPUT_DEVICE_CAP_KEYBOARD:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_KEYBOARD);
|
|
|
|
|
case LIBINPUT_DEVICE_CAP_TOUCH:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_TOUCH);
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-17 15:45:07 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_get_size(struct evdev_device *device,
|
|
|
|
|
double *width,
|
|
|
|
|
double *height)
|
|
|
|
|
{
|
|
|
|
|
const struct input_absinfo *x, *y;
|
|
|
|
|
|
|
|
|
|
x = libevdev_get_abs_info(device->evdev, ABS_X);
|
|
|
|
|
y = libevdev_get_abs_info(device->evdev, ABS_Y);
|
|
|
|
|
|
2014-07-24 16:15:43 +10:00
|
|
|
if (!x || !y || device->abs.fake_resolution ||
|
|
|
|
|
!x->resolution || !y->resolution)
|
2014-06-17 15:45:07 +10:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
*width = evdev_convert_to_mm(x, x->maximum);
|
|
|
|
|
*height = evdev_convert_to_mm(y, y->maximum);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 12:27:35 +01:00
|
|
|
int
|
|
|
|
|
evdev_device_has_button(struct evdev_device *device, uint32_t code)
|
|
|
|
|
{
|
|
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_POINTER))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return libevdev_has_event_code(device->evdev, EV_KEY, code);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-10 08:39:58 +10:00
|
|
|
static inline bool
|
|
|
|
|
evdev_is_scrolling(const struct evdev_device *device,
|
|
|
|
|
enum libinput_pointer_axis axis)
|
|
|
|
|
{
|
|
|
|
|
assert(axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL ||
|
|
|
|
|
axis == LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
|
|
|
|
|
|
|
|
|
return (device->scroll.direction & (1 << axis)) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
evdev_start_scrolling(struct evdev_device *device,
|
|
|
|
|
enum libinput_pointer_axis axis)
|
|
|
|
|
{
|
|
|
|
|
assert(axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL ||
|
|
|
|
|
axis == LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
|
|
|
|
|
|
|
|
|
device->scroll.direction |= (1 << axis);
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:35 +02:00
|
|
|
void
|
|
|
|
|
evdev_post_scroll(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
double dx,
|
|
|
|
|
double dy)
|
|
|
|
|
{
|
2014-11-07 16:08:34 +10:00
|
|
|
double trigger_horiz, trigger_vert;
|
|
|
|
|
|
|
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL))
|
|
|
|
|
device->scroll.buildup_vertical += dy;
|
|
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL))
|
|
|
|
|
device->scroll.buildup_horizontal += dx;
|
|
|
|
|
|
|
|
|
|
trigger_vert = device->scroll.buildup_vertical;
|
|
|
|
|
trigger_horiz = device->scroll.buildup_horizontal;
|
|
|
|
|
|
|
|
|
|
/* If we're not scrolling yet, use a distance trigger: moving
|
|
|
|
|
past a certain distance starts scrolling */
|
|
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL) &&
|
|
|
|
|
!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL)) {
|
|
|
|
|
if (fabs(trigger_vert) >= device->scroll.threshold)
|
|
|
|
|
evdev_start_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
|
|
|
|
if (fabs(trigger_horiz) >= device->scroll.threshold)
|
|
|
|
|
evdev_start_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL);
|
|
|
|
|
/* We're already scrolling in one direction. Require some
|
|
|
|
|
trigger speed to start scrolling in the other direction */
|
|
|
|
|
} else if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL)) {
|
|
|
|
|
if (fabs(dy) >= device->scroll.threshold)
|
|
|
|
|
evdev_start_scrolling(device,
|
2014-11-10 08:39:58 +10:00
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
2014-11-07 16:08:34 +10:00
|
|
|
} else if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL)) {
|
|
|
|
|
if (fabs(dx) >= device->scroll.threshold)
|
|
|
|
|
evdev_start_scrolling(device,
|
2014-11-10 08:39:58 +10:00
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL);
|
2014-11-07 16:08:34 +10:00
|
|
|
}
|
2014-09-16 16:22:35 +02:00
|
|
|
|
2014-11-07 16:08:34 +10:00
|
|
|
/* We use the trigger to enable, but the delta from this event for
|
|
|
|
|
* the actual scroll movement. Otherwise we get a jump once
|
|
|
|
|
* scrolling engages */
|
2014-09-16 16:22:35 +02:00
|
|
|
if (dy != 0.0 &&
|
2014-11-10 08:39:58 +10:00
|
|
|
evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL)) {
|
2014-09-16 16:22:35 +02:00
|
|
|
pointer_notify_axis(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL,
|
|
|
|
|
dy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dx != 0.0 &&
|
2014-11-10 08:39:58 +10:00
|
|
|
evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL)) {
|
2014-09-16 16:22:35 +02:00
|
|
|
pointer_notify_axis(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL,
|
|
|
|
|
dx);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_stop_scroll(struct evdev_device *device, uint64_t time)
|
|
|
|
|
{
|
|
|
|
|
/* terminate scrolling with a zero scroll event */
|
|
|
|
|
if (device->scroll.direction & (1 << LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL))
|
|
|
|
|
pointer_notify_axis(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL,
|
|
|
|
|
0);
|
|
|
|
|
if (device->scroll.direction & (1 << LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL))
|
|
|
|
|
pointer_notify_axis(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL,
|
|
|
|
|
0);
|
|
|
|
|
|
2014-11-07 16:08:34 +10:00
|
|
|
device->scroll.buildup_horizontal = 0;
|
|
|
|
|
device->scroll.buildup_vertical = 0;
|
2014-09-16 16:22:35 +02:00
|
|
|
device->scroll.direction = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-27 16:02:46 +02:00
|
|
|
static void
|
|
|
|
|
release_pressed_keys(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput *libinput = device->base.seat->libinput;
|
|
|
|
|
uint64_t time;
|
|
|
|
|
int code;
|
|
|
|
|
|
2014-09-01 16:47:28 +10:00
|
|
|
if ((time = libinput_now(libinput)) == 0)
|
2014-07-27 16:02:46 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (code = 0; code < KEY_CNT; code++) {
|
2014-08-20 11:11:28 +10:00
|
|
|
int count = get_key_down_count(device, code);
|
|
|
|
|
|
|
|
|
|
if (count > 1) {
|
|
|
|
|
log_bug_libinput(libinput,
|
|
|
|
|
"Key %d is down %d times.\n",
|
|
|
|
|
code,
|
|
|
|
|
count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (get_key_down_count(device, code) > 0) {
|
2014-07-27 16:02:46 +02:00
|
|
|
switch (get_key_type(code)) {
|
|
|
|
|
case EVDEV_KEY_TYPE_NONE:
|
|
|
|
|
break;
|
|
|
|
|
case EVDEV_KEY_TYPE_KEY:
|
2014-08-20 11:11:28 +10:00
|
|
|
evdev_keyboard_notify_key(
|
|
|
|
|
device,
|
2014-07-27 16:02:46 +02:00
|
|
|
time,
|
|
|
|
|
code,
|
|
|
|
|
LIBINPUT_KEY_STATE_RELEASED);
|
|
|
|
|
break;
|
|
|
|
|
case EVDEV_KEY_TYPE_BUTTON:
|
2014-08-20 11:11:28 +10:00
|
|
|
evdev_pointer_notify_button(
|
|
|
|
|
device,
|
2014-07-27 16:02:46 +02:00
|
|
|
time,
|
2014-09-23 13:48:06 +10:00
|
|
|
evdev_to_left_handed(device, code),
|
2014-07-27 16:02:46 +02:00
|
|
|
LIBINPUT_BUTTON_STATE_RELEASED);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
void
|
|
|
|
|
evdev_notify_suspended_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *it;
|
|
|
|
|
|
|
|
|
|
if (device->suspended)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
list_for_each(it, &device->base.seat->devices_list, link) {
|
|
|
|
|
struct evdev_device *d = (struct evdev_device*)it;
|
|
|
|
|
if (it == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (d->dispatch->interface->device_suspended)
|
|
|
|
|
d->dispatch->interface->device_suspended(d, device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
device->suspended = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_notify_resumed_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *it;
|
|
|
|
|
|
|
|
|
|
if (!device->suspended)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
list_for_each(it, &device->base.seat->devices_list, link) {
|
|
|
|
|
struct evdev_device *d = (struct evdev_device*)it;
|
|
|
|
|
if (it == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (d->dispatch->interface->device_resumed)
|
|
|
|
|
d->dispatch->interface->device_resumed(d, device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
device->suspended = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 15:34:00 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_suspend(struct evdev_device *device)
|
2012-08-03 14:38:57 +03:00
|
|
|
{
|
2014-09-16 16:22:37 +02:00
|
|
|
evdev_notify_suspended_device(device);
|
|
|
|
|
|
2014-01-30 15:55:37 +10:00
|
|
|
if (device->source) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
libinput_remove_source(device->base.seat->libinput,
|
|
|
|
|
device->source);
|
2014-01-30 15:55:37 +10:00
|
|
|
device->source = NULL;
|
|
|
|
|
}
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
|
2014-07-27 16:02:46 +02:00
|
|
|
release_pressed_keys(device);
|
|
|
|
|
|
2014-01-30 15:55:37 +10:00
|
|
|
if (device->mtdev) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
mtdev_close_delete(device->mtdev);
|
2014-01-30 15:55:37 +10:00
|
|
|
device->mtdev = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (device->fd != -1) {
|
|
|
|
|
close_restricted(device->base.seat->libinput, device->fd);
|
|
|
|
|
device->fd = -1;
|
|
|
|
|
}
|
2014-01-30 15:34:00 +10:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 16:33:24 +10:00
|
|
|
static int
|
|
|
|
|
evdev_device_compare_syspath(struct evdev_device *device, int fd)
|
|
|
|
|
{
|
|
|
|
|
struct udev *udev = NULL;
|
|
|
|
|
struct udev_device *udev_device = NULL;
|
|
|
|
|
const char *syspath;
|
|
|
|
|
struct stat st;
|
|
|
|
|
int rc = 1;
|
|
|
|
|
|
|
|
|
|
udev = udev_new();
|
|
|
|
|
if (!udev)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (fstat(fd, &st) < 0)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
udev_device = udev_device_new_from_devnum(udev, 'c', st.st_rdev);
|
|
|
|
|
if (!device)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
syspath = udev_device_get_syspath(udev_device);
|
|
|
|
|
rc = strcmp(syspath, device->syspath);
|
|
|
|
|
out:
|
|
|
|
|
if (udev_device)
|
|
|
|
|
udev_device_unref(udev_device);
|
|
|
|
|
if (udev)
|
|
|
|
|
udev_unref(udev);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_resume(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput *libinput = device->base.seat->libinput;
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
if (device->fd != -1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2014-01-30 16:33:24 +10:00
|
|
|
if (device->syspath == NULL)
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
fd = open_restricted(libinput, device->devnode, O_RDWR | O_NONBLOCK);
|
|
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
2014-01-30 16:33:24 +10:00
|
|
|
if (evdev_device_compare_syspath(device, fd)) {
|
|
|
|
|
close_restricted(libinput, fd);
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
device->fd = fd;
|
|
|
|
|
|
|
|
|
|
if (evdev_need_mtdev(device)) {
|
|
|
|
|
device->mtdev = mtdev_new_open(device->fd);
|
|
|
|
|
if (!device->mtdev)
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
device->source =
|
|
|
|
|
libinput_add_fd(libinput, fd, evdev_device_dispatch, device);
|
|
|
|
|
if (!device->source) {
|
|
|
|
|
mtdev_close_delete(device->mtdev);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memset(device->hw_key_mask, 0, sizeof(device->hw_key_mask));
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
evdev_notify_resumed_device(device);
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 15:34:00 +10:00
|
|
|
void
|
|
|
|
|
evdev_device_remove(struct evdev_device *device)
|
|
|
|
|
{
|
2014-09-03 14:34:52 +10:00
|
|
|
struct libinput_device *dev;
|
|
|
|
|
|
|
|
|
|
list_for_each(dev, &device->base.seat->devices_list, link) {
|
|
|
|
|
struct evdev_device *d = (struct evdev_device*)dev;;
|
|
|
|
|
if (dev == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (d->dispatch->interface->device_removed)
|
|
|
|
|
d->dispatch->interface->device_removed(d, device);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 15:34:00 +10:00
|
|
|
evdev_device_suspend(device);
|
|
|
|
|
|
2014-01-30 16:33:24 +10:00
|
|
|
/* A device may be removed while suspended. Free the syspath to
|
|
|
|
|
* skip re-opening a different device with the same node */
|
|
|
|
|
free(device->syspath);
|
|
|
|
|
device->syspath = NULL;
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
list_remove(&device->base.link);
|
|
|
|
|
|
|
|
|
|
notify_removed_device(&device->base);
|
|
|
|
|
libinput_device_unref(&device->base);
|
2013-11-17 16:59:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_device_destroy(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_dispatch *dispatch;
|
2013-10-17 23:04:05 +02:00
|
|
|
|
2012-08-03 14:38:57 +03:00
|
|
|
dispatch = device->dispatch;
|
|
|
|
|
if (dispatch)
|
|
|
|
|
dispatch->interface->destroy(dispatch);
|
|
|
|
|
|
2014-07-04 09:39:05 +10:00
|
|
|
filter_destroy(device->pointer.filter);
|
2014-01-22 23:48:39 +01:00
|
|
|
libinput_seat_unref(device->base.seat);
|
2013-12-06 12:01:47 +10:00
|
|
|
libevdev_free(device->evdev);
|
2014-04-22 23:02:14 +02:00
|
|
|
free(device->mt.slots);
|
2012-08-03 14:38:57 +03:00
|
|
|
free(device->devnode);
|
2013-12-15 17:50:04 +01:00
|
|
|
free(device->sysname);
|
2014-01-30 16:33:24 +10:00
|
|
|
free(device->syspath);
|
2012-08-03 14:38:57 +03:00
|
|
|
free(device);
|
|
|
|
|
}
|