After a SYN_DROPPED, drop all events in the queue
[platform/upstream/libevdev.git] / libevdev / libevdev-int.h
1 /*
2  * Copyright © 2013 Red Hat, Inc.
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22
23 #ifndef libevdev_INT_H
24 #define libevdev_INT_H
25
26 #include <config.h>
27 #include "libevdev.h"
28
29 #define LONG_BITS (sizeof(long) * 8)
30 #define NLONGS(x) (((x) + LONG_BITS - 1) / LONG_BITS)
31 #define ARRAY_LENGTH(a) (sizeof(a) / (sizeof((a)[0])))
32 #define MAX_NAME 256
33 #define MAX_SLOTS 32
34 #define ABS_MT_MIN ABS_MT_SLOT
35 #define ABS_MT_MAX ABS_MT_TOOL_Y
36 #define ABS_MT_CNT (ABS_MT_MAX - ABS_MT_MIN + 1)
37
38 #undef min
39 #undef max
40 #define min(a,b) \
41                 ({ __typeof__ (a) _a = (a); \
42                   __typeof__ (b) _b = (b); \
43                 _a > _b ? _b : _a; \
44                 })
45 #define max(a,b) \
46                 ({ __typeof__ (a) _a = (a); \
47                   __typeof__ (b) _b = (b); \
48                 _a > _b ? _a : _b; \
49                 })
50
51 struct libevdev {
52         int fd;
53         libevdev_log_func_t log;
54
55         char name[MAX_NAME];
56         struct input_id ids;
57         unsigned long bits[NLONGS(EV_CNT)];
58         unsigned long props[NLONGS(INPUT_PROP_CNT)];
59         unsigned long key_bits[NLONGS(KEY_CNT)];
60         unsigned long rel_bits[NLONGS(REL_CNT)];
61         unsigned long abs_bits[NLONGS(ABS_CNT)];
62         unsigned long led_bits[NLONGS(LED_CNT)];
63         unsigned long key_values[NLONGS(KEY_CNT)];
64         struct input_absinfo abs_info[ABS_CNT];
65         unsigned int mt_slot_vals[MAX_SLOTS][ABS_MT_CNT];
66         int num_slots; /**< valid slots in mt_slot_vals */
67
68         int need_sync;
69         int grabbed;
70
71         struct input_event *queue;
72         size_t queue_size; /**< size of queue in elements */
73         size_t queue_next; /**< next event index */
74         size_t queue_nsync; /**< number of sync events */
75 };
76
77 /**
78  * @return a pointer to the next element in the queue, or NULL if the queue
79  * is full.
80  */
81 static inline struct input_event*
82 queue_push(struct libevdev *dev)
83 {
84         if (dev->queue_next >= dev->queue_size)
85                 return NULL;
86
87         return &dev->queue[dev->queue_next++];
88 }
89
90 /**
91  * Set ev to the last element in the queue, removing it from the queue.
92  *
93  * @return 0 on success, 1 if the queue is empty.
94  */
95 static inline int
96 queue_pop(struct libevdev *dev, struct input_event *ev)
97 {
98         if (dev->queue_next == 0)
99                 return 1;
100
101         *ev = dev->queue[--dev->queue_next];
102
103         return 0;
104 }
105
106 static inline int
107 queue_peek(struct libevdev *dev, size_t idx, struct input_event *ev)
108 {
109         if (idx > dev->queue_next)
110                 return 1;
111         *ev = dev->queue[idx];
112         return 0;
113 }
114
115
116 /**
117  * Shift the first n elements into ev and return the number of elements
118  * shifted.
119  * ev must be large enough to store n elements.
120  *
121  * @param ev The buffer to copy into, or NULL
122  * @return The number of elements in ev.
123  */
124 static inline int
125 queue_shift_multiple(struct libevdev *dev, int n, struct input_event *ev)
126 {
127         int i;
128
129         if (dev->queue_next == 0)
130                 return 0;
131
132         n = min(n, dev->queue_next);
133
134         if (ev) {
135                 for (i = 0; i < n; i++)
136                         ev[i] = dev->queue[i];
137         }
138
139         for (i = 0; i < dev->queue_next - n; i++)
140                 dev->queue[i] = dev->queue[n + i];
141
142         dev->queue_next -= n;
143         return n;
144 }
145
146 /**
147  * Set ev to the first element in the queue, shifting everything else
148  * forward by one.
149  *
150  * @return 0 on success, 1 if the queue is empty.
151  */
152 static inline int
153 queue_shift(struct libevdev *dev, struct input_event *ev)
154 {
155         return queue_shift_multiple(dev, 1, ev) == 1 ? 0 : 1;
156 }
157
158 static inline int
159 queue_alloc(struct libevdev *dev, int size)
160 {
161         dev->queue = calloc(size, sizeof(struct input_event));
162         if (!dev->queue)
163                 return -ENOSPC;
164
165         dev->queue_size = size;
166         dev->queue_next = 0;
167         return 0;
168 }
169
170 static inline int
171 queue_num_elements(struct libevdev *dev)
172 {
173         return dev->queue_next;
174 }
175
176 static inline int
177 queue_size(struct libevdev *dev)
178 {
179         return dev->queue_size;
180 }
181
182 static inline int
183 queue_num_free_elements(struct libevdev *dev)
184 {
185         return dev->queue_size - dev->queue_next - 1;
186 }
187
188 static inline struct input_event *
189 queue_next_element(struct libevdev *dev)
190 {
191         return &dev->queue[dev->queue_next];
192 }
193
194 static inline int
195 queue_set_num_elements(struct libevdev *dev, int nelem)
196 {
197         if (nelem > dev->queue_size)
198                 return 1;
199
200         dev->queue_next = nelem;
201
202         return 0;
203 }
204 #endif
205