Commit Graph

155 Commits

Author SHA1 Message Date
qiurui 79cdf1ae63 add btn_left hang and screen detect 2024-06-18 09:26:43 +08:00
qiurui 62c82474b7 update README 2024-06-18 09:26:11 +08:00
Thomas Kuehne 49b79fa914 add KEY_MACRO 1-30 and other keys
Signed-off-by: Thomas Kuehne <thomas.kuehne@gmx.li>
2024-04-21 14:57:25 +02:00
Gergo Koteles 05d93e54e4 Add KEY_ROTATE_LOCK_TOGGLE, KEY_REFRESH_RATE_TOGGLE
Add definitions for these new events codes.

Signed-off-by: Gergo Koteles <soyer@irl.hu>
2024-04-19 01:26:42 +02:00
Sicelo A. Mhlongo b2a7e73816 Add SW_MACHINE_COVER
Add definition for "cover closed" event

Signed-off-by: Sicelo A. Mhlongo <absicsz@gmail.com>
2024-04-06 23:45:33 +02:00
Harry Cutts da347a8f88 evtest 1.35
Signed-off-by: Harry Cutts <hcutts@chromium.org>
2022-05-18 18:52:49 +00:00
Harry Cutts c9fc6fb3ae Add BTN_STYLUS3 to key names 2022-05-17 23:03:53 +00:00
Harry Cutts 9c20ee967a Request patches as GitLab merge requests 2021-03-03 11:44:41 -08:00
Harry Cutts 67939eded1 Reformat README as Markdown
Also reword a little to be more consistent with the evemu README.
2021-03-03 11:41:15 -08:00
Johan Korsnes 0d2918e38a Remove duplicate headers
The headers <stdio.h> and <unistd.h> were included twice.

Signed-off-by: Johan Korsnes <johan.korsnes@gmail.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2021-02-02 11:39:54 +10:00
Mateusz Piotrowski fbd7ef6fb8 Use alphasort instead of versionsort for scandir
There main reason for this change is that versionsort is not widely
supported at the moment (for example, it is not present in FreeBSD and
the manual page for GNU C library scandir documents versionsort as GNU
extension).
2020-11-24 01:27:22 +01:00
Mateusz Piotrowski 497a30b22b Replace program_invocation_short_name with argv[0]
It's good enough for our purpose and it is more portable. Also, because
argv[0] is not globally accessible, let's define a new global variable
for that called progname.
2020-11-24 01:27:22 +01:00
Mateusz Piotrowski 049396aab1 Remove PATH_MAX
This makes evtest more portable.  We could try to use ifdefs to include
sys/syslimits.h on FreeBSD to get PATH_MAX but it feels to be an
overkill for evtest.  Let's keep it simple as just replace PATH_MAX with
4096.

NB: it's fine to leave linux/input.h there, because this header is
actually available on FreeBSD via the devel/evdev-proto port.
2020-11-24 01:26:42 +01:00
Peter Hutterer 1cedf31169 Add a basic CI run
Signed-off-by:Peter Hutterer <peter.hutterer@who-t.net>
2020-11-16 11:14:28 +10:00
Peter Hutterer a7ed1c2a71 Drop linux/version.h from the includes
Hasn't been needed since d485a1d1bd

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2020-11-16 11:04:54 +10:00
Mateusz Piotrowski 2cebc0ab5c Do not check for pkg-config
It is not needed for anything in the build process.
2020-11-16 00:42:39 +00:00
Mateusz Piotrowski 0061473259 Remove checks for xsltproc from configure.ac
It is no longer needed since evtest-capture was deprecated.
2020-11-16 00:42:39 +00:00
Mateusz Piotrowski 75407f9353 Remove references to evtest-capture from INSTALL 2020-11-12 13:46:07 +00:00
Bastien Nocera ae06620465 Only install signal handlers in grab mode
It's not necessary to install signal handlers for SIGINT and SIGTERM
when not in grab mode, as there is nothing for evtest to do when
exiting, such as releasing the grab.

This causes problems with umockdev's event capture which relies on being
able to catch the SIGINT signal itself to know to flush its capture
buffers before exiting.

See https://github.com/martinpitt/umockdev/issues/96
2020-11-05 10:07:44 +01:00
Petr Vorel 78873f3a77 Revert "Add missing include of limits.h for PATH_MAX"
This reverts commit 12d5ea5ca2.

as the problem was already fixed in
5eb4ab1c13.
2020-10-09 13:08:10 +02:00
Khem Raj 648f5c1a9e Fix build on 32bit arches with 64bit time_t
time element is deprecated on new input_event structure in kernel's
input.h [1]

[1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit?id=152194fe9c3f

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-30 12:02:39 -08:00
Leo 12d5ea5ca2 Add missing include of limits.h for PATH_MAX 2019-11-24 20:58:20 +01:00
Baruch Siach 5eb4ab1c13 Add missing limits.h include
Fixes build with musl libc that does not include limits.h indirectly via
other headers.

evtest.c: In function ‘scan_devices’:
evtest.c:886:14: error: ‘PATH_MAX’ undeclared (first use in this function); did you mean  INT8_MAX’?
   char fname[PATH_MAX];
              ^~~~~~~~

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2019-08-19 09:24:14 +10:00
Harry Cutts 16e5104127 evtest 1.34
Signed-off-by: Harry Cutts <hcutts@chromium.org>
2019-08-02 11:14:30 -07:00
Peter Hutterer 8b514f92b2 Fix gcc warning for snprintf
evtest.c:887:9: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of size 53 [-Wformat-truncation=]

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2019-08-02 00:49:43 +00:00
Harry Cutts c506a8a32e Merge remote-tracking branch 'hcutts/typo-and-ignore' 2019-08-01 17:42:49 -07:00
Harry Cutts db2d927373 Fix a typo in INSTALL
Signed-off-by: Harry Cutts <hcutts@chromium.org>
2019-08-01 17:05:17 -07:00
Harry Cutts a1550b8185 Ignore `compile` file (generated by `autoreconf`)
Signed-off-by: Harry Cutts <hcutts@chromium.org>
2019-08-01 17:04:56 -07:00
Harry Cutts 025a0778a8 Add REL_WHEEL_HI_RES and REL_HWHEEL_HI_RES 2019-07-16 22:53:02 +00:00
Peter Hutterer 91f924bc9a Change all URLs to gitlab.fdo
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-06-06 18:41:57 +10:00
Dmitry Torokhov fe82803c31 Do not ignore return values of scanf/asprintf
The functions are often declared as "warn unused result", which causes
compiler time warnings. Invalid user input may also lead to not entirely
correct utility behavior.

Signed-off-by: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-09-29 07:06:18 +10:00
Dmitry Torokhov ac0c41ca95 Add SW_PEN_INSERTED
Add definition for "Pen Inserted" switch event.

Signed-off-by: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-09-29 07:06:18 +10:00
Dmitry Torokhov c44a1c578a Add more key definitions
Add more key definitions that were added to newer kernels, but were
missing in evtest.

Signed-off-by: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-09-29 06:55:44 +10:00
Dmitry Torokhov 50e8804330 Add INPUT_PROP_ACCELEROMETER
The newer "Accelerometer" input device property was missing in evtest,
let's add it.

Signed-off-by: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-09-29 06:54:05 +10:00
Dmitry Torokhov 03296ec8c0 Add KEY_ASSISTANT
Kernel recently got a new key definition for desktop assistant key,
let's plumb it through evtest as well.

Signed-off-by: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-09-29 06:53:58 +10:00
Peter Hutterer ab140a2dab evtest 1.33
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-07-23 09:51:31 +10:00
Peter Hutterer fad8842834 Print switch, led, sound current state in the device description
Intentionally not printing keys here - led/snd/sw are long-term states, keys
are short term states so there's a chance that by the time the user looks at
the output, the key has already changed anyway.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Tested-by: Bastien Nocera <hadess@hadess.net>
2015-07-23 07:23:33 +10:00
Tommi Rantala b8343ec112 Fix names for EV_SYN events
We had the wrong pointer in the names[] array for EV_SYN, so for example
codename() would print "EV_SYN" instead of "SYN_REPORT", or "EV_ABS"
instead of "SYN_DROPPED", etc.

Output from 1.31:
  Event: time 1425470463.069381, -------------- SYN_REPORT ------------

Output from 1.32:
  Event: time 1425470948.149794, -------------- EV_SYN ------------

Output after this patch:
  Event: time 1425471209.159696, -------------- SYN_REPORT ------------

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-03-05 08:48:31 +10:00
Tommi Rantala 774ce4cc3f Use sizeof(ev) to specify array size to read()
For easy experimentation with different buffer sizes, it is more
convenient to specify the array size to read() with sizeof(ev) instead
of having the array element count in two places.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-03-05 08:47:50 +10:00
Tommi Rantala 84e7446241 Highlight SYN_DROPPED
If we fail to read the input events fast enough, recent kernels give the
SYN_DROPPED event. Highlight the event to make it obvious that we missed
some events.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-03-05 08:47:18 +10:00
Tommi Rantala 58e4b0c2fe Avoid compiler warning when INPUT_PROP_SEMI_MT not defined
evtest.c: In function ‘print_device_info’:
evtest.c:985: warning: unused variable ‘prop’

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-03-05 08:47:03 +10:00
Tommi Rantala 73b1fcf2c0 Add missing INPUT_PROP_*, KEY_*, LED_* and SW_* definitions
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-03-05 08:33:00 +10:00
Tommi Rantala 00c544cded More ifdefs for ancient kernel headers
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-03-05 08:32:46 +10:00
Joseph Hwang 7f8bfdf07f Add grab flag
If the --grab flag is given in capture mode, evtest keeps an EVIOCGRAB
on the device. While this grab is active, other processes will not
receive events from the kernel devices. The grab is released again
when evtest quits.

TEST=Check that the cursor is frozen when --grab option is specified.
$ evtest --grab

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-01-30 09:05:52 +10:00
Peter Hutterer 3e81e4adca Handle holes in the event node lists
The current code simply counts the number of directory entries and takes
that as the maximum event node given. That isn't true if we have a hole in the
event range after removing a device, making the last device in the list
unaccessible.

Fix this by actually looking at the event node numbers.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2015-01-29 06:57:45 +10:00
Peter Hutterer 412c1ad90d evtest 1.32
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-08-08 12:49:19 +10:00
Peter Hutterer 4ea99348fb Free the file name on error
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-08-08 12:49:07 +10:00
Peter Hutterer c0fdef44a4 Point users at fuser to figure out what has the device open
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-08-08 12:46:30 +10:00
Peter Hutterer 0e14da978e Fix build error on kernels w/o input properties
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-08-31 15:32:39 +10:00
Peter Hutterer a45a36ee66 Rename BTN_A/B/X/Y to BTN_SOUTH/EAST/NORTH/WEST
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reported-by: Chris Healy <cphealy@gmail.com>
2013-08-29 11:03:14 +10:00