Document mailing list
[platform/upstream/libevdev.git] / libevdev / libevdev.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_H
24 #define libevdev_H
25
26 #include <linux/input.h>
27 #include <stdarg.h>
28
29 /**
30  * @mainpage
31  *
32  * **libevdev** is a library for handling evdev kernel devices. It abstracts
33  * the ioctls through type-safe interfaces and provides functions to change
34  * the appearance of the device.
35  *
36  * Development of libevdev is discussed on
37  * [input-tools@lists.freedesktop.org](http://lists.freedesktop.org/mailman/listinfo/input-tools)
38  * Please submit patches, questions or general comments there.
39  *
40  * Handling events and SYN_DROPPED
41  * ===============================
42  *
43  * libevdev provides an interface for handling events, including most notably
44  * SYN_DROPPED events. SYN_DROPPED events are sent by the kernel when the
45  * process does not read events fast enough and the kernel is forced to drop
46  * some events. This causes the device to get out of sync with the process'
47  * view of it. libevdev handles this by telling the caller that a SYN_DROPPED
48  * has been received and that the state of the device is different to what is
49  * to be expected. It then provides the delta between the previous state and
50  * the actual state of the device as a set of events. See
51  * libevdev_next_event() for more information.
52  *
53  * Signal safety
54  * =============
55  *
56  * libevdev is signal-safe for the majority of its operations. Check the API
57  * documentation to make sure, unless explicitly stated a call is <b>not</b>
58  * signal safe.
59  *
60  * Device handling
61  * ===============
62  *
63  * libevdev does not attempt duplicate detection. Initializing two libevdev
64  * devices for the same fd is valid and behaves the same as for two different
65  * devices.
66  *
67  * libevdev does not handle the file descriptors directly, it merely uses
68  * them. The caller is responsible for opening the file descriptors, setting
69  * them to O_NONBLOCK and handling permissions.
70  *
71  * Where does libevdev sit?
72  * ========================
73  *
74  * libevdev is essentially a `read(2)` on steroids for `/dev/input/eventX
75  * devices. It sits below the process that handles input events, in between
76  * the kernel and that process. In the simplest case, e.g. an evtest-like tool
77  * the stack would look like this:
78  *
79  *      kernel → libevdev → evtest
80  *
81  * For X.Org input modules, the stack would look like this:
82  *
83  *      kernel → libevdev → xf86-input-evdev → X server → X client
84  *
85  * For Weston/Wayland, the stack would look like this:
86  *
87  *      kernel → libevdev → Weston → Wayland client
88  *
89  * libevdev does **not** have knowledge of X clients or Wayland clients, it is
90  * too low in the stack.
91  *
92  * Example
93  * =======
94  * Below is a simple example that shows how libevdev could be used. This example
95  * opens a device, checks for relative axes and a left mouse button and if it
96  * finds them monitors the device to print the event.
97  *
98  * @code
99  *      struct libevdev *dev = NULL;
100  *      int fd;
101  *      int rc = 1;
102  *
103  *      fd = open("/dev/input/event0", O_RDONLY|O_NONBLOCK);
104  *      rc = libevdev_new_from_fd(fd, &dev);
105  *      if (rc < 0) {
106  *              fprintf(stderr, "Failed to init libevdev (%s)\n", strerror(-rc));
107  *              exit(1);
108  *      }
109  *      printf("Input device name: \"%s\"\n", libevdev_get_name(dev));
110  *      printf("Input device ID: bus %#x vendor %#x product %#x\n",
111  *             libevdev_get_bustype(dev),
112  *             libevdev_get_vendor_id(dev),
113  *             libevdev_get_product_id(dev));
114  *      if (!libevdev_has_event_type(dev, EV_REL) ||
115  *          !libevdev_has_event_code(dev, EV_KEY, BTN_LEFT)) {
116  *              printf("This device does not look like a mouse\n");
117  *              exit(1);
118  *      }
119  *
120  *      do {
121  *              struct input_event ev;
122  *              rc = libevdev_next_event(dev, LIBEVDEV_READ_NORMAL, &ev);
123  *              if (rc == 0)
124  *                      printf("Event: %s %s %d\n",
125  *                             libevdev_get_event_type_name(ev.type),
126  *                             libevdev_get_event_code_name(ev.type, ev.code),
127  *                             ev.value);
128  *      } while (rc == 1 || rc == 0 || rc == -EAGAIN);
129  * @endcode
130  *
131  * A more complete example is available with the libevdev-events tool here:
132  * http://cgit.freedesktop.org/libevdev/tree/tools/libevdev-events.c
133  *
134  * libevdev internal test suite
135  * ============================
136  *
137  * libevdev's internal test suite uses the
138  * [Check unit testing framework](http://check.sourceforge.net/). Tests are
139  * divided into test suites and test cases. Most tests create a uinput device,
140  * so you'll need to run as root.
141  *
142  * To run a specific suite only:
143  *
144  *     export CK_RUN_SUITE="suite name"
145  *
146  * To run a specific test case only:
147  *
148  *     export CK_RUN_TEST="test case name"
149  *
150  * To get a list of all suites or tests:
151  *
152  *     git grep "suite_create"
153  *     git grep "tcase_create"
154  *
155  * By default, check forks, making debugging harder. Run gdb as below to avoid
156  * forking.
157  *
158  *     sudo CK_FORK=no CK_RUN_TEST="test case name" gdb ./test/test-libevdev
159  *
160  * A special target `make gcov-report.txt` exists that runs gcov and leaves a
161  * `libevdev.c.gcov` file. Check that for test coverage.
162  *
163  * `make check` is hooked up to run the test and gcov (again, needs root).
164  *
165  * The test suite creates a lot of devices, very quickly. Add the following
166  * xorg.conf.d snippet to avoid the devices being added as X devices (at the
167  * time of writing, mutter can't handle these devices and exits after getting
168  * a BadDevice error).
169  *
170  *     $ cat /etc/X11/xorg.conf.d/99-ignore-libevdev-devices.conf
171  *     Section "InputClass"
172  *             Identifier "Ignore libevdev test devices"
173  *             MatchProduct "libevdev test device"
174  *             Option "Ignore" "on"
175  *     EndSection
176  *
177  * License information
178  * ===================
179  * libevdev is licensed under the
180  * [X11 license](http://cgit.freedesktop.org/libevdev/tree/COPYING).
181  *
182  * Reporting bugs
183  * ==============
184  * Please report bugs in the freedesktop.org bugzilla under the libevdev product:
185  * https://bugs.freedesktop.org/enter_bug.cgi?product=libevdev
186  */
187
188 /**
189  * @defgroup init Initialization and setup
190  *
191  * Initialization, initial setup and file descriptor handling.
192  * These functions are the main entry points for users of libevdev, usually a
193  * caller will use this series of calls:
194  *
195  * @code
196  * struct libevdev *dev;
197  * int err;
198  *
199  * dev = libevdev_new();
200  * if (!dev)
201  *         return ENOSPC;
202  *
203  * err = libevdev_set_fd(dev, fd);
204  * if (err < 0) {
205  *         printf("Failed (errno %d): %s\n", -err, strerror(-err));
206  *
207  * libevdev_free(dev);
208  * @endcode
209  *
210  * libevdev_set_fd() is the central call and initializes the internal structs
211  * for the device at the given fd. libevdev functions will fail if called
212  * before libevdev_set_fd() unless documented otherwise.
213  */
214
215 /**
216  * @defgroup bits Querying device capabilities
217  *
218  * Abstraction functions to handle device capabilities, specificially
219  * device propeties such as the name of the device and the bits
220  * representing the events suppported by this device.
221  *
222  * The logical state returned may lag behind the physical state of the device.
223  * libevdev queries the device state on libevdev_set_fd() and then relies on
224  * the caller to parse events through libevdev_next_fd(). If a caller does not
225  * use libevdev_next_fd(), libevdev will not update the internal state of the
226  * device and thus returns outdated values.
227  */
228
229 /**
230  * @defgroup mt Multi-touch related functions
231  * Functions for querying multi-touch-related capabilities. MT devices
232  * following the kernel protocol B (using ABS_MT_SLOT) provide multiple touch
233  * points through so-called slots on the same axis. The slots are enumerated,
234  * a client reading from the device will first get an ABS_MT_SLOT event, then
235  * the values of axes changed in this slot. Multiple slots may be provided in
236  * before an EV_SYN event.
237  *
238  * As with @ref bits, the logical state of the device as seen by the library
239  * depends on the caller using libevdev_next_event().
240  */
241
242 /**
243  * @defgroup kernel Modifying the appearance or capabilities of the device
244  *
245  * Modifying the set of events reported by this device. By default, the
246  * libevdev device mirrors the kernel device, enabling only those bits
247  * exported by the kernel. This set of functions enable or disable bits as
248  * seen from the caller.
249  *
250  * Enabling an event type or code does not affect event reporting - a
251  * software-enabled event will not be generated by the physical hardware.
252  * Disabling an event will prevent libevdev from routing such events to the
253  * caller. Enabling and disabling event types and codes is at the library
254  * level and thus only affects the caller.
255  *
256  * If an event type or code is enabled at kernel-level, future users of this
257  * device will see this event enabled. Currently there is no option of
258  * disabling an event type or code at kernel-level.
259  */
260
261 /**
262  * @defgroup misc Miscellaneous helper functions
263  *
264  * Functions for printing or querying event ranges. The list of names is
265  * compiled into libevdev and will not change when the kernel changes. Adding
266  * or removing names requires a re-compilation of libevdev. Likewise, the max
267  * for each event type is compiled in and does not check the underlying
268  * kernel.
269  */
270
271 /**
272  * @defgroup events Event handling
273  *
274  * Functions to handle events and fetch the current state of the event. Generally,
275  * libevdev updates its internal state as the event is processed and forwarded
276  * to the caller. Thus, the libevdev state of the device should always be identical
277  * to the caller's state. It may however lag behind the actual state of the device.
278  */
279
280 /**
281  * @ingroup init
282  *
283  * Opaque struct representing an evdev device.
284  */
285 struct libevdev;
286
287 enum EvdevReadFlags {
288         LIBEVDEV_READ_SYNC              = 1, /**< Process data in sync mode */
289         LIBEVDEV_READ_NORMAL            = 2, /**< Process data in normal mode */
290         LIBEVDEV_FORCE_SYNC             = 4, /**< Pretend the next event is a SYN_DROPPED. There is
291                                                   no reason to ever use this except for
292                                                   automated tests, so don't. */
293         LIBEVDEV_READ_BLOCKING          = 8, /**< The fd is not in O_NONBLOCK and a read may block */
294 };
295
296 /**
297  * @ingroup init
298  *
299  * Initialize a new libevdev device. This function only allocates the
300  * required memory and initializes the struct to sane default values.
301  * To actually hook up the device to a kernel device, use
302  * libevdev_set_fd().
303  *
304  * Memory allocated through libevdev_new() must be released by the
305  * caller with libevdev_free().
306  *
307  * @see libevdev_set_fd
308  * @see libevdev_free
309  */
310 struct libevdev* libevdev_new(void);
311
312 /**
313  * @ingroup init
314  *
315  * Initialize a new libevdev device from the given fd.
316  *
317  * This is a shortcut for
318  *
319  * @code
320  * int err;
321  * struct libevdev *dev = libevdev_new();
322  * err = libevdev_set_fd(dev, fd);
323  * @endcode
324  *
325  * @param fd A file descriptor to the device in O_RDWR or O_RDONLY mode.
326  * @param[out] dev The newly initialized evdev device.
327  *
328  * @return On success, zero is returned and dev is set to the newly
329  * allocated struct. On failure, a negative errno is returned and the value
330  * of dev is undefined.
331  *
332  * @see libevdev_free
333  */
334 int libevdev_new_from_fd(int fd, struct libevdev **dev);
335
336 /**
337  * @ingroup init
338  *
339  * Clean up and free the libevdev struct. After completion, the <code>struct
340  * libevdev</code> is invalid and must not be used.
341  *
342  * @param dev The evdev device
343  *
344  * @note This function may be called before libevdev_set_fd().
345  */
346 void libevdev_free(struct libevdev *dev);
347
348 /**
349  * Logging function called by library-internal logging.
350  * This function is expected to treat it's input like printf would.
351  *
352  * @param format printf-style format string
353  * @param args List of arguments
354  *
355  * @see libevdev_set_log_handler
356  */
357 typedef void (*libevdev_log_func_t)(const char *format, va_list args);
358
359 /**
360  * Set a printf-style logging handler for library-internal logging. The default
361  * logging function is a noop.
362  *
363  * @param dev The evdev device
364  * @param logfunc The logging function for this device. If NULL, the current
365  * logging function is unset.
366  *
367  * @note This function may be called before libevdev_set_fd().
368  */
369 void libevdev_set_log_handler(struct libevdev *dev, libevdev_log_func_t logfunc);
370
371
372 enum EvdevGrabModes {
373         LIBEVDEV_GRAB = 3,
374         LIBEVDEV_UNGRAB = 4,
375 };
376
377 /**
378  * Grab or ungrab the device through a kernel EVIOCGRAB. This prevents other
379  * clients (including kernel-internal ones such as rfkill) from receiving
380  * events from this device.
381  *
382  * This is generally a bad idea. Don't do this.
383  *
384  * Grabbing an already grabbed device, or ungrabbing an ungrabbed device is
385  * a noop and always succeeds.
386  *
387  * @param dev The evdev device, already initialized with libevdev_set_fd()
388  * @param grab If true, grab the device. Otherwise ungrab the device.
389  *
390  * @return 0 if the device was successfull grabbed or ungrabbed, or a
391  * negative errno in case of failure.
392  */
393 int libevdev_grab(struct libevdev *dev, int grab);
394
395 /**
396  * @ingroup init
397  *
398  * Set the fd for this struct and initialize internal data.
399  * The fd must be in O_RDONLY or O_RDWR mode.
400  *
401  * This function may only be called once per device. If the device changed and
402  * you need to re-read a device, use libevdev_free() and libevdev_new(). If
403  * you need to change the fd after closing and re-opening the same device, use
404  * libevdev_change_fd().
405  *
406  * Unless otherwise specified, libevdev function behavior is undefined until
407  * a successfull call to libevdev_set_fd().
408  *
409  * @param dev The evdev device
410  * @param fd The file descriptor for the device
411  *
412  * @return 0 on success, or a negative error code on failure
413  *
414  * @see libevdev_change_fd
415  * @see libevdev_new
416  * @see libevdev_free
417  */
418 int libevdev_set_fd(struct libevdev* dev, int fd);
419
420 /**
421  * @ingroup init
422  *
423  * Change the fd for this device, without re-reading the actual device. If the fd
424  * changes after initializing the device, for example after a VT-switch in the
425  * X.org X server, this function updates the internal fd to the newly opened.
426  * No check is made that new fd points to the same device. If the device has
427  * changed, libevdev's behavior is undefined.
428  *
429  * The fd may be open in O_RDONLY or O_RDWR.
430  *
431  * It is an error to call this function before calling libevdev_set_fd().
432  *
433  * @param dev The evdev device, already initialized with libevdev_set_fd()
434  * @param fd The new fd
435  *
436  * @return 0 on success, or -1 on failure.
437  *
438  * @see libevdev_set_fd
439  */
440 int libevdev_change_fd(struct libevdev* dev, int fd);
441
442 /**
443  * @param dev The evdev device
444  *
445  * @return The previously set fd, or -1 if none had been set previously.
446  * @note This function may be called before libevdev_set_fd().
447  */
448 int libevdev_get_fd(const struct libevdev* dev);
449
450 /**
451  * @ingroup events
452  *
453  * Get the next event from the device. This function operates in two different
454  * modes: normal mode or sync mode.
455  *
456  * In normal mode, this function returns 0 and returns the event in the
457  * parameter ev. If no events are available at this time, it returns -EAGAIN
458  * and ev is undefined.
459  *
460  * If a SYN_DROPPED is read from the device, this function returns 1. The
461  * caller should now call this function with the LIBEVDEV_READ_SYNC flag set,
462  * to get the set of events that make up the device state delta. This function
463  * returns 1 for each event part of that delta, until it returns -EAGAIN once
464  * all events have been synced.
465  *
466  * If a device needs to be synced by the caller but the caller does not call
467  * with the LIBEVDEV_READ_SYNC flag set, all events from the diff are dropped
468  * and event processing continues as normal.
469  *
470  * @param dev The evdev device, already initialized with libevdev_set_fd()
471  * @param flags Set of flags to determine behaviour. If LIBEVDEV_READ_NORMAL
472  * is set, the next event is read in normal mode. If LIBEVDEV_READ_SYNC is
473  * set, the next event is read in sync mode.
474  * @param ev On success, set to the current event.
475  * @return On failure, a negative errno is returned.
476  * @retval 0 One or more events where read of the device
477  * @retval -EAGAIN No events are currently available on the device
478  * @retval 1 A SYN_DROPPED event was received, or a synced event was
479  * returned.
480  *
481  * @note This function is signal-safe.
482  */
483 int libevdev_next_event(struct libevdev *dev, unsigned int flags, struct input_event *ev);
484
485 /**
486  * @ingroup bits
487  *
488  * @param dev The evdev device, already initialized with libevdev_set_fd()
489  *
490  * @return The device name as read off the kernel device. The name is never
491  * NULL but it may be the empty string.
492  *
493  * @note This function is signal-safe.
494  */
495 const char* libevdev_get_name(const struct libevdev *dev);
496
497 /**
498  * @ingroup bits
499  *
500  * Virtual devices such as uinput devices have no phys location.
501  *
502  * @param dev The evdev device, already initialized with libevdev_set_fd()
503  *
504  * @return The physical location of this device, or NULL if there is none
505  *
506  * @note This function is signal safe.
507  */
508 const char * libevdev_get_phys(const struct libevdev *dev);
509
510 /**
511  * @ingroup bits
512  *
513  * @param dev The evdev device, already initialized with libevdev_set_fd()
514  *
515  * @return The unique identifier for this device, or NULL if there is none
516  *
517  * @note This function is signal safe.
518  */
519 const char * libevdev_get_uniq(const struct libevdev *dev);
520
521 /**
522  * @ingroup bits
523  *
524  * @param dev The evdev device, already initialized with libevdev_set_fd()
525  *
526  * @return The device's product ID
527  *
528  * @note This function is signal-safe.
529  */
530 int libevdev_get_product_id(const struct libevdev *dev);
531
532 /**
533  * @ingroup bits
534  *
535  * @param dev The evdev device, already initialized with libevdev_set_fd()
536  *
537  * @return The device's vendor ID
538  *
539  * @note This function is signal-safe.
540  */
541 int libevdev_get_vendor_id(const struct libevdev *dev);
542
543 /**
544  * @ingroup bits
545  *
546  * @param dev The evdev device, already initialized with libevdev_set_fd()
547  *
548  * @return The device's bus type
549  *
550  * @note This function is signal-safe.
551  */
552 int libevdev_get_bustype(const struct libevdev *dev);
553
554 /**
555  * @ingroup bits
556  *
557  * @param dev The evdev device, already initialized with libevdev_set_fd()
558  *
559  * @return The device's firmware version
560  *
561  * @note This function is signal-safe.
562  */
563 int libevdev_get_version(const struct libevdev *dev);
564
565 /**
566  * @ingroup bits
567  *
568  * @param dev The evdev device, already initialized with libevdev_set_fd()
569  *
570  * @return The driver version for this device
571  *
572  * @note This function is signal-safe.
573  */
574 int libevdev_get_driver_version(const struct libevdev *dev);
575
576 /**
577  * @ingroup bits
578  *
579  * @param dev The evdev device, already initialized with libevdev_set_fd()
580  * @param prop The input property to query for, one of INPUT_PROP_...
581  *
582  * @return 1 if the device provides this input property, or 0 otherwise.
583  *
584  * @note This function is signal-safe
585  */
586 int libevdev_has_property(const struct libevdev *dev, unsigned int prop);
587
588 /**
589  * @ingroup bits
590  *
591  * @param dev The evdev device, already initialized with libevdev_set_fd()
592  * @param type The event type to query for, one of EV_SYN, EV_REL, etc.
593  *
594  * @return 1 if the device supports this event type, or 0 otherwise.
595  *
596  * @note This function is signal-safe.
597  */
598 int libevdev_has_event_type(const struct libevdev *dev, unsigned int type);
599
600 /**
601  * @ingroup bits
602  *
603  * @param dev The evdev device, already initialized with libevdev_set_fd()
604  * @param type The event type for the code to query (EV_SYN, EV_REL, etc.)
605  * @param code The event code to query for, one of ABS_X, REL_X, etc.
606  *
607  * @return 1 if the device supports this event type and code, or 0 otherwise.
608  *
609  * @note This function is signal-safe.
610  */
611 int libevdev_has_event_code(const struct libevdev *dev, unsigned int type, unsigned int code);
612
613 /**
614  * @ingroup bits
615  *
616  * Get the minimum axis value for the given axis, as advertised by the kernel.
617  *
618  * @param dev The evdev device, already initialized with libevdev_set_fd()
619  * @param code The EV_ABS event code to query for, one of ABS_X, ABS_Y, etc.
620  *
621  * @return axis minimum for the given axis or 0 if the axis is invalid
622  */
623 int libevdev_get_abs_min(const struct libevdev *dev, unsigned int code);
624 /**
625  * @ingroup bits
626  *
627  * Get the maximum axis value for the given axis, as advertised by the kernel.
628  *
629  * @param dev The evdev device, already initialized with libevdev_set_fd()
630  * @param code The EV_ABS event code to query for, one of ABS_X, ABS_Y, etc.
631  *
632  * @return axis maximum for the given axis or 0 if the axis is invalid
633  */
634 int libevdev_get_abs_max(const struct libevdev *dev, unsigned int code);
635 /**
636  * @ingroup bits
637  *
638  * Get the axis fuzz for the given axis, as advertised by the kernel.
639  *
640  * @param dev The evdev device, already initialized with libevdev_set_fd()
641  * @param code The EV_ABS event code to query for, one of ABS_X, ABS_Y, etc.
642  *
643  * @return axis fuzz for the given axis or 0 if the axis is invalid
644  */
645 int libevdev_get_abs_fuzz(const struct libevdev *dev, unsigned int code);
646 /**
647  * @ingroup bits
648  *
649  * Get the axis flat for the given axis, as advertised by the kernel.
650  *
651  * @param dev The evdev device, already initialized with libevdev_set_fd()
652  * @param code The EV_ABS event code to query for, one of ABS_X, ABS_Y, etc.
653  *
654  * @return axis flat for the given axis or 0 if the axis is invalid
655  */
656 int libevdev_get_abs_flat(const struct libevdev *dev, unsigned int code);
657 /**
658  * @ingroup bits
659  *
660  * Get the axis resolution for the given axis, as advertised by the kernel.
661  *
662  * @param dev The evdev device, already initialized with libevdev_set_fd()
663  * @param code The EV_ABS event code to query for, one of ABS_X, ABS_Y, etc.
664  *
665  * @return axis resolution for the given axis or 0 if the axis is invalid
666  */
667 int libevdev_get_abs_resolution(const struct libevdev *dev, unsigned int code);
668
669 /**
670  * @ingroup bits
671  *
672  * Get the axis info for the given axis, as advertised by the kernel.
673  *
674  * @param dev The evdev device, already initialized with libevdev_set_fd()
675  * @param code The EV_ABS event code to query for, one of ABS_X, ABS_Y, etc.
676  *
677  * @return The input_absinfo for the given code, or NULL if the device does
678  * not support this event code.
679  */
680 const struct input_absinfo* libevdev_get_abs_info(const struct libevdev *dev, unsigned int code);
681
682 /**
683  * @ingroup bits
684  *
685  * Behaviour of this function is undefined if the device does not provide
686  * the event.
687  *
688  * @param dev The evdev device, already initialized with libevdev_set_fd()
689  * @param type The event type for the code to query (EV_SYN, EV_REL, etc.)
690  * @param code The event code to query for, one of ABS_X, REL_X, etc.
691  *
692  * @return The current value of the event.
693  *
694  * @note This function is signal-safe.
695  * @note The value for ABS_MT_ events is undefined, use
696  * libevdev_get_slot_value() instead
697  *
698  * @see libevdev_get_slot_value
699  */
700 int libevdev_get_event_value(const struct libevdev *dev, unsigned int type, unsigned int code);
701
702 /**
703  * @ingroup bits
704  *
705  * Fetch the current value of the event type. This is a shortcut for
706  *
707  * @code
708  *   if (libevdev_has_event_type(dev, t) && libevdev_has_event_code(dev, t, c))
709  *       val = libevdev_get_event_value(dev, t, c);
710  * @endcode
711  *
712  * @param dev The evdev device, already initialized with libevdev_set_fd()
713  * @param type The event type for the code to query (EV_SYN, EV_REL, etc.)
714  * @param code The event code to query for, one of ABS_X, REL_X, etc.
715  * @param[out] value The current value of this axis returned.
716  *
717  * @return If the device supports this event type and code, the return value is
718  * non-zero and value is set to the current value of this axis. Otherwise,
719  * zero is returned and value is unmodified.
720  *
721  * @note This function is signal-safe.
722  * @note The value for ABS_MT_ events is undefined, use
723  * libevdev_fetch_slot_value() instead
724  *
725  * @see libevdev_fetch_slot_value
726  */
727 int libevdev_fetch_event_value(const struct libevdev *dev, unsigned int type, unsigned int code, int *value);
728
729 /**
730  * @ingroup mt
731  *
732  * Return the current value of the code for the given slot.
733  *
734  * The return value is undefined for a slot exceeding the available slots on
735  * the device, for a code that is not in the permitted ABS_MT range or for a
736  * device that does not have slots.
737  *
738  * @param dev The evdev device, already initialized with libevdev_set_fd()
739  * @param slot The numerical slot number, must be smaller than the total number
740  * of slots on this * device
741  * @param code The event code to query for, one of ABS_MT_POSITION_X, etc.
742  *
743  * @note This function is signal-safe.
744  * @note The value for events other than ABS_MT_ is undefined, use
745  * libevdev_fetch_value() instead
746  *
747  * @see libevdev_get_value
748  */
749 int libevdev_get_slot_value(const struct libevdev *dev, unsigned int slot, unsigned int code);
750
751 /**
752  * @ingroup mt
753  *
754  * Fetch the current value of the code for the given slot. This is a shortcut for
755  *
756  * @code
757  *   if (libevdev_has_event_type(dev, EV_ABS) &&
758  *       libevdev_has_event_code(dev, EV_ABS, c) &&
759  *       slot < device->number_of_slots)
760  *       val = libevdev_get_slot_value(dev, slot, c);
761  * @endcode
762  *
763  * @param dev The evdev device, already initialized with libevdev_set_fd()
764  * @param slot The numerical slot number, must be smaller than the total number
765  * of slots on this * device
766  * @param[out] value The current value of this axis returned.
767  *
768  * @param code The event code to query for, one of ABS_MT_POSITION_X, etc.
769  * @return If the device supports this event code, the return value is
770  * non-zero and value is set to the current value of this axis. Otherwise, or
771  * if the event code is not an ABS_MT_* event code, zero is returned and value
772  * is unmodified.
773  *
774  * @note This function is signal-safe.
775  */
776 int libevdev_fetch_slot_value(const struct libevdev *dev, unsigned int slot, unsigned int code, int *value);
777
778 /**
779  * @ingroup mt
780  *
781  * Get the number of slots supported by this device.
782  *
783  * @param dev The evdev device, already initialized with libevdev_set_fd()
784  *
785  * @return The number of slots supported, or -1 if the device does not provide
786  * any slots
787  *
788  * @note A device may provide ABS_MT_SLOT but a total number of 0 slots. Hence
789  * the return value of -1 for "device does not provide slots at all"
790  */
791 int libevdev_get_num_slots(const struct libevdev *dev);
792
793 /**
794  * @ingroup mt
795  *
796  * Get the currently active slot. This may differ from the value
797  * an ioctl may return at this time as events may have been read off the fd
798  * since changing the slot value but those events are still in the buffer
799  * waiting to be processed. The returned value is the value a caller would
800  * see if it were to process events manually one-by-one.
801  *
802  * @param dev The evdev device, already initialized with libevdev_set_fd()
803  *
804  * @return the currently active slot (logically)
805  */
806 int libevdev_get_current_slot(const struct libevdev *dev);
807
808 /**
809  * @ingroup kernel
810  *
811  * Forcibly enable an event type on this device, even if the underlying
812  * device does not support it. While this cannot make the device actually
813  * report such events, it will now return true for libevdev_has_event_type().
814  *
815  * This is a local modification only affecting only this representation of
816  * this device.
817  *
818  * @param dev The evdev device, already initialized with libevdev_set_fd()
819  * @param type The event type to enable (EV_ABS, EV_KEY, ...)
820  *
821  * @return 0 on success or -1 otherwise
822  *
823  * @see libevdev_has_event_type
824  */
825 int libevdev_enable_event_type(struct libevdev *dev, unsigned int type);
826
827 /**
828  * @ingroup kernel
829  *
830  * Forcibly disable an event type on this device, even if the underlying
831  * device provides it, effectively muting all keys or axes. libevdev will
832  * filter any events matching this type and none will reach the caller.
833  * libevdev_has_event_type() will return false for this type.
834  *
835  * In most cases, a caller likely only wants to disable a single code, not
836  * the whole type. Use libevdev_disable_event_code() for that.
837  *
838  * Disabling EV_SYN will not work. Don't shoot yourself in the foot.
839  * It hurts.
840  *
841  * This is a local modification only affecting only this representation of
842  * this device.
843  *
844  * @param dev The evdev device, already initialized with libevdev_set_fd()
845  * @param type The event type to disable (EV_ABS, EV_KEY, ...)
846  *
847  * @return 0 on success or -1 otherwise
848  *
849  * @see libevdev_has_event_type
850  * @see libevdev_disable_event_type
851  */
852 int libevdev_disable_event_type(struct libevdev *dev, unsigned int type);
853
854 /**
855  * @ingroup kernel
856  *
857  * Forcibly enable an event type on this device, even if the underlying
858  * device does not support it. While this cannot make the device actually
859  * report such events, it will now return true for libevdev_has_event_code().
860  *
861  * The last argument depends on the type and code:
862  * - If type is EV_ABS, data must be a pointer to a struct input_absinfo
863  * containing the data for this axis.
864  * - For all other types, the argument must be NULL.
865  *
866  * This function calls libevdev_enable_event_type() if necessary.
867  *
868  * This is a local modification only affecting only this representation of
869  * this device.
870  *
871  * @param dev The evdev device, already initialized with libevdev_set_fd()
872  * @param type The event type to enable (EV_ABS, EV_KEY, ...)
873  * @param code The event code to enable (ABS_X, REL_X, etc.)
874  * @param data If type is EV_ABS, data points to a struct input_absinfo. Otherwise, data must be
875  * NULL
876  *
877  * @return 0 on success or -1 otherwise
878  *
879  * @see libevdev_enable_event_type
880  */
881 int libevdev_enable_event_code(struct libevdev *dev, unsigned int type, unsigned int code, const void *data);
882
883 /**
884  * @ingroup kernel
885  *
886  * Forcibly disable an event code on this device, even if the underlying
887  * device provides it, effectively muting this key or axis. libevdev will
888  * filter any events matching this type and code and none will reach the
889  * caller.
890  * libevdev_has_event_code() will return false for this code combination.
891  *
892  * Disabling all event codes for a given type will not disable the event
893  * type. Use libevdev_disable_event_type() for that.
894  *
895  * This is a local modification only affecting only this representation of
896  * this device.
897  *
898  * Disabling EV_SYN will not work. Don't shoot yourself in the foot.
899  * It hurts.
900  *
901  * @param dev The evdev device, already initialized with libevdev_set_fd()
902  * @param type The event type to disable (EV_ABS, EV_KEY, ...)
903  * @param code The event code to disable (ABS_X, REL_X, etc.)
904  *
905  * @return 0 on success or -1 otherwise
906  *
907  * @see libevdev_has_event_code
908  * @see libevdev_disable_event_type
909  */
910 int libevdev_disable_event_code(struct libevdev *dev, unsigned int type, unsigned int code);
911
912 /**
913  * @ingroup kernel
914  *
915  * Set the device's EV_ABS axis to the value defined in the abs
916  * parameter. This will be written to the kernel.
917  *
918  * @param dev The evdev device, already initialized with libevdev_set_fd()
919  * @param code The EV_ABS event code to modify, one of ABS_X, ABS_Y, etc.
920  * @param abs Axis info to set the kernel axis to
921  *
922  * @return zero on success, or a negative errno on failure
923  *
924  * @see libevdev_enable_event_code
925  */
926 int libevdev_kernel_set_abs_value(struct libevdev *dev, unsigned int code, const struct input_absinfo *abs);
927
928 /**
929  * @ingroup misc
930  *
931  * Helper function to check if an event is of a specific type. This is
932  * virtually the same as:
933  *
934  *      ev->type == type
935  *
936  * with the exception that some sanity checks are performed to ensure type
937  * is valid.
938  *
939  * @param ev The input event to check
940  * @param type Input event type to compare the event against (EV_REL, EV_ABS,
941  * etc.)
942  *
943  * @return 1 if the event type matches the given type, 0 otherwise (or if
944  * type is invalid)
945  */
946 int libevdev_is_event_type(const struct input_event *ev, unsigned int type);
947
948 /**
949  * @ingroup misc
950  *
951  * Helper function to check if an event is of a specific type and code. This
952  * is virtually the same as:
953  *
954  *      ev->type == type && ev->code == code
955  *
956  * with the exception that some sanity checks are performed to ensure type and
957  * code are valid.
958  *
959  * @param ev The input event to check
960  * @param type Input event type to compare the event against (EV_REL, EV_ABS,
961  * etc.)
962  * @param code Input event code to compare the event against (ABS_X, REL_X,
963  * etc.)
964  *
965  * @return 1 if the event type matches the given type and code, 0 otherwise
966  * (or if type/code are invalid)
967  */
968 int libevdev_is_event_code(const struct input_event *ev, unsigned int type, unsigned int code);
969
970 /**
971  * @ingroup misc
972  *
973  * @param type The event type to return the name for.
974  *
975  * @return The name of the given event type (e.g. EV_ABS) or NULL for an
976  * invalid type
977  *
978  * @note The list of names is compiled into libevdev. If the kernel adds new
979  * defines for new properties libevdev will not automatically pick these up.
980  */
981 const char * libevdev_get_event_type_name(unsigned int type);
982 /**
983  * @ingroup misc
984  *
985  * @param type The event type for the code to query (EV_SYN, EV_REL, etc.)
986  * @param code The event code to return the name for (e.g. ABS_X)
987  *
988  * @return The name of the given event code (e.g. ABS_X) or NULL for an
989  * invalid type or code
990  *
991  * @note The list of names is compiled into libevdev. If the kernel adds new
992  * defines for new properties libevdev will not automatically pick these up.
993  */
994 const char * libevdev_get_event_code_name(unsigned int type, unsigned int code);
995
996 /**
997  * @ingroup misc
998  *
999  * @param prop The input prop to return the name for (e.g. INPUT_PROP_BUTTONPAD)
1000  *
1001  * @return The name of the given input prop (e.g. INPUT_PROP_BUTTONPAD) or NULL for an
1002  * invalid property
1003  *
1004  * @note The list of names is compiled into libevdev. If the kernel adds new
1005  * defines for new properties libevdev will not automatically pick these up.
1006  * @note On older kernels input properties may not be defined and
1007  * libevdev_get_input_prop_name() will always return NULL
1008  */
1009 const char * libevdev_get_input_prop_name(unsigned int prop);
1010
1011 /**
1012  * @ingroup misc
1013  *
1014  * @param type The event type to return the maximum for (EV_ABS, EV_REL, etc.). No max is defined for
1015  * EV_SYN.
1016  *
1017  * @return The max value defined for the given event type, e.g. ABS_MAX for a type of EV_ABS, or -1
1018  * for an invalid type.
1019  *
1020  * @note The max value is compiled into libevdev. If the kernel changes the
1021  * max value, libevdev will not automatically pick these up.
1022  */
1023 int libevdev_get_event_type_max(unsigned int type);
1024
1025 /**
1026  * @ingroup bits
1027  *
1028  * Get the repeat delay and repeat period values for this device.
1029  *
1030  * @param dev The evdev device, already initialized with libevdev_set_fd()
1031  * @param delay If not null, set to the repeat delay value
1032  * @param period If not null, set to the repeat period value
1033  *
1034  * @return 0 on success, -1 if this device does not have repeat settings.
1035  *
1036  * @note This function is signal-safe
1037  */
1038 int libevdev_get_repeat(struct libevdev *dev, int *delay, int *period);
1039
1040 #endif /* libevdev_H */