Let the name be dynamically allocated
[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;
56         char *phys;
57         char *uniq;
58         struct input_id ids;
59         int driver_version;
60         unsigned long bits[NLONGS(EV_CNT)];
61         unsigned long props[NLONGS(INPUT_PROP_CNT)];
62         unsigned long key_bits[NLONGS(KEY_CNT)];
63         unsigned long rel_bits[NLONGS(REL_CNT)];
64         unsigned long abs_bits[NLONGS(ABS_CNT)];
65         unsigned long led_bits[NLONGS(LED_CNT)];
66         unsigned long key_values[NLONGS(KEY_CNT)];
67         struct input_absinfo abs_info[ABS_CNT];
68         unsigned int mt_slot_vals[MAX_SLOTS][ABS_MT_CNT];
69         int num_slots; /**< valid slots in mt_slot_vals */
70         int current_slot;
71
72         int need_sync;
73         int grabbed;
74
75         struct input_event *queue;
76         size_t queue_size; /**< size of queue in elements */
77         size_t queue_next; /**< next event index */
78         size_t queue_nsync; /**< number of sync events */
79 };
80
81 /**
82  * @return a pointer to the next element in the queue, or NULL if the queue
83  * is full.
84  */
85 static inline struct input_event*
86 queue_push(struct libevdev *dev)
87 {
88         if (dev->queue_next >= dev->queue_size)
89                 return NULL;
90
91         return &dev->queue[dev->queue_next++];
92 }
93
94 /**
95  * Set ev to the last element in the queue, removing it from the queue.
96  *
97  * @return 0 on success, 1 if the queue is empty.
98  */
99 static inline int
100 queue_pop(struct libevdev *dev, struct input_event *ev)
101 {
102         if (dev->queue_next == 0)
103                 return 1;
104
105         *ev = dev->queue[--dev->queue_next];
106
107         return 0;
108 }
109
110 static inline int
111 queue_peek(struct libevdev *dev, size_t idx, struct input_event *ev)
112 {
113         if (idx > dev->queue_next)
114                 return 1;
115         *ev = dev->queue[idx];
116         return 0;
117 }
118
119
120 /**
121  * Shift the first n elements into ev and return the number of elements
122  * shifted.
123  * ev must be large enough to store n elements.
124  *
125  * @param ev The buffer to copy into, or NULL
126  * @return The number of elements in ev.
127  */
128 static inline int
129 queue_shift_multiple(struct libevdev *dev, int n, struct input_event *ev)
130 {
131         int i;
132
133         if (dev->queue_next == 0)
134                 return 0;
135
136         n = min(n, dev->queue_next);
137
138         if (ev) {
139                 for (i = 0; i < n; i++)
140                         ev[i] = dev->queue[i];
141         }
142
143         for (i = 0; i < dev->queue_next - n; i++)
144                 dev->queue[i] = dev->queue[n + i];
145
146         dev->queue_next -= n;
147         return n;
148 }
149
150 /**
151  * Set ev to the first element in the queue, shifting everything else
152  * forward by one.
153  *
154  * @return 0 on success, 1 if the queue is empty.
155  */
156 static inline int
157 queue_shift(struct libevdev *dev, struct input_event *ev)
158 {
159         return queue_shift_multiple(dev, 1, ev) == 1 ? 0 : 1;
160 }
161
162 static inline int
163 queue_alloc(struct libevdev *dev, int size)
164 {
165         dev->queue = calloc(size, sizeof(struct input_event));
166         if (!dev->queue)
167                 return -ENOSPC;
168
169         dev->queue_size = size;
170         dev->queue_next = 0;
171         return 0;
172 }
173
174 static inline void
175 queue_free(struct libevdev *dev)
176 {
177         free(dev->queue);
178         dev->queue_size = 0;
179         dev->queue_next = 0;
180 }
181
182 static inline int
183 queue_num_elements(struct libevdev *dev)
184 {
185         return dev->queue_next;
186 }
187
188 static inline int
189 queue_size(struct libevdev *dev)
190 {
191         return dev->queue_size;
192 }
193
194 static inline int
195 queue_num_free_elements(struct libevdev *dev)
196 {
197         return dev->queue_size - dev->queue_next - 1;
198 }
199
200 static inline struct input_event *
201 queue_next_element(struct libevdev *dev)
202 {
203         return &dev->queue[dev->queue_next];
204 }
205
206 static inline int
207 queue_set_num_elements(struct libevdev *dev, int nelem)
208 {
209         if (nelem > dev->queue_size)
210                 return 1;
211
212         dev->queue_next = nelem;
213
214         return 0;
215 }
216 #endif
217