summaryrefslogtreecommitdiff
path: root/tools/generate-input-keycodes.sh
blob: 988940d3a93860a59aa3030bf839d81f3d60bec6 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash

set -e

INPUT_HEADER="/usr/include/linux/input.h"
LOCAL_INPUT_HEADER="linux-input.h"
OUTPUT_MAPH="linux-input-keycodes.h"
OUTPUT_MAPC="linux-input-keycodes.c"
SKIP="KEY_MIN_INTERESTING KEY_MAX KEY_CNT"

if [ ! -e "$LOCAL_INPUT_HEADER" ]; then
	if [ ! -e "$INPUT_HEADER" ]; then
		echo "Can't find input header: $INPUT_HEADER" >&2
		exit 1
	fi

	cp "$INPUT_HEADER" "$LOCAL_INPUT_HEADER"
fi

cat > "$OUTPUT_MAPH" <<EOF
#ifndef foolinuxinputkeycodesfoo
#define foolinuxinputkeycodesfoo

/* AUTOGENERATED: DO NOT EDIT */

#include <unistd.h>
#include <stdint.h>
#include <stdbool.h>
#include "$LOCAL_INPUT_HEADER"

struct linux_input_keycode {
	const char *name;
	uint32_t value;
	bool alias;
	void *cairo_surface;
};

extern struct linux_input_keycode linux_input_keycodes[];

#endif
EOF

cat > "$OUTPUT_MAPC" << EOF
/* AUTOGENERATED: DO NOT EDIT */

#include "$LOCAL_INPUT_HEADER"
#include "$OUTPUT_MAPH"

struct linux_input_keycode linux_input_keycodes[] = {
EOF

cat "$LOCAL_INPUT_HEADER" | grep "^#define[[:space:]]*KEY_" | while read DEF NAME VALUE COMMENTS; do
	for WORD in $SKIP; do
		if [ "$NAME" = "$WORD" ]; then
			continue
		fi
	done

	if [ "${VALUE##KEY_}" != "$VALUE" ]; then
		ALIAS="true"
	else
		ALIAS="false"
	fi

	echo "	{ \"$NAME\",	$NAME,	$ALIAS,	NULL }," >> "$OUTPUT_MAPC"
done

cat >> "$OUTPUT_MAPC" << EOF
	{ NULL, 0, false, NULL }
};
EOF

exit 0