Use events instead of callbacks for capability registration
[platform/upstream/libinput.git] / src / evdev.h
1 /*
2  * Copyright © 2011, 2012 Intel Corporation
3  * Copyright © 2013 Jonas Ådahl
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and
6  * its documentation for any purpose is hereby granted without fee, provided
7  * that the above copyright notice appear in all copies and that both that
8  * copyright notice and this permission notice appear in supporting
9  * documentation, and that the name of the copyright holders not be used in
10  * advertising or publicity pertaining to distribution of the software
11  * without specific, written prior permission.  The copyright holders make
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied warranty.
14  *
15  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  */
23
24 #ifndef EVDEV_H
25 #define EVDEV_H
26
27 #include "config.h"
28
29 #include <linux/input.h>
30
31 #include "evdev.h"
32 #include "libinput-private.h"
33
34 static inline void *
35 zalloc(size_t size)
36 {
37         return calloc(1, size);
38 }
39
40 #define MAX_SLOTS 16
41
42 enum evdev_event_type {
43         EVDEV_NONE,
44         EVDEV_ABSOLUTE_TOUCH_DOWN,
45         EVDEV_ABSOLUTE_MOTION,
46         EVDEV_ABSOLUTE_TOUCH_UP,
47         EVDEV_ABSOLUTE_MT_DOWN,
48         EVDEV_ABSOLUTE_MT_MOTION,
49         EVDEV_ABSOLUTE_MT_UP,
50         EVDEV_RELATIVE_MOTION,
51 };
52
53 enum evdev_device_capability {
54         EVDEV_KEYBOARD = (1 << 0),
55         EVDEV_BUTTON = (1 << 1),
56         EVDEV_MOTION_ABS = (1 << 2),
57         EVDEV_MOTION_REL = (1 << 3),
58         EVDEV_TOUCH = (1 << 4),
59 };
60
61 enum evdev_device_seat_capability {
62         EVDEV_DEVICE_POINTER = (1 << 0),
63         EVDEV_DEVICE_KEYBOARD = (1 << 1),
64         EVDEV_DEVICE_TOUCH = (1 << 2)
65 };
66
67 struct evdev_device {
68         struct libinput_device base;
69
70         struct libinput_source *source;
71
72         struct evdev_dispatch *dispatch;
73         char *devnode;
74         char *devname;
75         int fd;
76         struct {
77                 int min_x, max_x, min_y, max_y;
78                 int32_t x, y;
79
80                 int apply_calibration;
81                 float calibration[6];
82         } abs;
83
84         struct {
85                 int slot;
86                 struct {
87                         int32_t x, y;
88                 } slots[MAX_SLOTS];
89         } mt;
90         struct mtdev *mtdev;
91
92         struct {
93                 li_fixed_t dx, dy;
94         } rel;
95
96         enum evdev_event_type pending_event;
97         enum evdev_device_capability caps;
98         enum evdev_device_seat_capability seat_caps;
99
100         int is_mt;
101 };
102
103 /* copied from udev/extras/input_id/input_id.c */
104 /* we must use this kernel-compatible implementation */
105 #define BITS_PER_LONG (sizeof(unsigned long) * 8)
106 #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
107 #define OFF(x)  ((x)%BITS_PER_LONG)
108 #define BIT(x)  (1UL<<OFF(x))
109 #define LONG(x) ((x)/BITS_PER_LONG)
110 #define TEST_BIT(array, bit)    ((array[LONG(bit)] >> OFF(bit)) & 1)
111 /* end copied */
112
113 #define EVDEV_UNHANDLED_DEVICE ((struct evdev_device *) 1)
114
115 struct evdev_dispatch;
116
117 struct evdev_dispatch_interface {
118         /* Process an evdev input event. */
119         void (*process)(struct evdev_dispatch *dispatch,
120                         struct evdev_device *device,
121                         struct input_event *event,
122                         uint32_t time);
123
124         /* Destroy an event dispatch handler and free all its resources. */
125         void (*destroy)(struct evdev_dispatch *dispatch);
126 };
127
128 struct evdev_dispatch {
129         struct evdev_dispatch_interface *interface;
130 };
131
132 struct evdev_dispatch *
133 evdev_touchpad_create(struct evdev_device *device);
134
135 void
136 evdev_device_proces_event(struct libinput_event *event);
137
138 void
139 evdev_device_led_update(struct evdev_device *device, enum libinput_led leds);
140
141 int
142 evdev_device_get_keys(struct evdev_device *device, char *keys, size_t size);
143
144 void
145 evdev_device_calibrate(struct evdev_device *device, float calibration[6]);
146
147 void
148 evdev_device_terminate(struct evdev_device *terminate);
149
150 void
151 evdev_device_destroy(struct evdev_device *device);
152
153 #endif /* EVDEV_H */