test/interactive: allow to set evdev offset If we want to test a keymap without the usual 8 offset. Signed-off-by: Ran Benita <ran234@gmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
diff --git a/test/interactive.c b/test/interactive.c
index 3d91dc6..66fffc9 100644
--- a/test/interactive.c
+++ b/test/interactive.c
@@ -44,7 +44,8 @@ struct keyboard {
struct keyboard *next;
};
-bool terminate;
+static bool terminate;
+static int evdev_offset = 8;
#define NLONGS(n) (((n) + LONG_BIT - 1) / LONG_BIT)
@@ -290,8 +291,6 @@ enum {
KEY_STATE_REPEAT = 2,
};
-#define EVDEV_OFFSET 8
-
static void
process_event(struct keyboard *kbd, uint16_t type, uint16_t code, int32_t value)
{
@@ -301,7 +300,7 @@ process_event(struct keyboard *kbd, uint16_t type, uint16_t code, int32_t value)
if (type != EV_KEY)
return;
- keycode = EVDEV_OFFSET + code;
+ keycode = evdev_offset + code;
keymap = xkb_state_get_keymap(kbd->state);
if (value == KEY_STATE_REPEAT && !xkb_keymap_key_repeats(keymap, keycode))
@@ -421,7 +420,7 @@ main(int argc, char *argv[])
setlocale(LC_ALL, "");
- while ((opt = getopt(argc, argv, "r:m:l:v:o:k:")) != -1) {
+ while ((opt = getopt(argc, argv, "r:m:l:v:o:k:n:")) != -1) {
switch (opt) {
case 'r':
rules = optarg;
@@ -441,12 +440,21 @@ main(int argc, char *argv[])
case 'k':
keymap_path = optarg;
break;
+ case 'n':
+ errno = 0;
+ evdev_offset = strtol(optarg, NULL, 10);
+ if (errno) {
+ fprintf(stderr, "error: -n option expects a number\n");
+ exit(EXIT_FAILURE);
+ }
+ break;
case '?':
fprintf(stderr, "Usage: %s [-r <rules>] [-m <model>] "
"[-l <layout>] [-v <variant>] [-o <options>]\n",
argv[0]);
fprintf(stderr, " or: %s -k <path to keymap file>\n",
argv[0]);
+ fprintf(stderr, "For both: -n <evdev keycode offset>\n");
exit(EX_USAGE);
}
}