]>
git.ipfire.org Git - thirdparty/systemd.git/blob - hwdb.d/parse_hwdb.py
2 # SPDX-License-Identifier: MIT
4 # This file is distributed under the MIT license, see below.
6 # The MIT License (MIT)
8 # Permission is hereby granted, free of charge, to any person obtaining a copy
9 # of this software and associated documentation files (the "Software"), to deal
10 # in the Software without restriction, including without limitation the rights
11 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 # copies of the Software, and to permit persons to whom the Software is
13 # furnished to do so, subject to the following conditions:
15 # The above copyright notice and this permission notice shall be included in
16 # all copies or substantial portions of the Software.
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 from pyparsing
import (Word
, White
, Literal
, ParserElement
, Regex
, LineEnd
,
33 OneOrMore
, Combine
, Or
, Optional
, Suppress
, Group
,
34 nums
, alphanums
, printables
,
35 stringEnd
, pythonStyleComment
, QuotedString
,
38 print('pyparsing is not available')
42 from evdev
.ecodes
import ecodes
45 print('WARNING: evdev is not available')
48 from functools
import lru_cache
50 # don't do caching on old python
51 lru_cache
= lambda: (lambda f
: f
)
53 EOL
= LineEnd().suppress()
55 COMMENTLINE
= pythonStyleComment
+ EOL
57 STRING
= QuotedString('"')
58 REAL
= Combine((INTEGER
+ Optional('.' + Optional(INTEGER
))) ^
('.' + INTEGER
))
59 SIGNED_REAL
= Combine(Optional(Word('-+')) + REAL
)
60 UDEV_TAG
= Word(string
.ascii_uppercase
, alphanums
+ '_')
62 TYPES
= {'mouse': ('usb', 'bluetooth', 'ps2', '*'),
63 'evdev': ('name', 'atkbd', 'input'),
64 'id-input': ('modalias'),
65 'touchpad': ('i8042', 'rmi', 'bluetooth', 'usb'),
66 'joystick': ('i8042', 'rmi', 'bluetooth', 'usb'),
67 'keyboard': ('name', ),
68 'sensor': ('modalias', ),
73 ParserElement
.setDefaultWhitespaceChars('')
75 prefix
= Or(category
+ ':' + Or(conn
) + ':'
76 for category
, conn
in TYPES
.items())
77 matchline
= Combine(prefix
+ Word(printables
+ ' ' + '®')) + EOL
78 propertyline
= (White(' ', exact
=1).suppress() +
79 Combine(UDEV_TAG
- '=' - Word(alphanums
+ '_=:@*.!-;, "') - Optional(pythonStyleComment
)) +
81 propertycomment
= White(' ', exact
=1) + pythonStyleComment
+ EOL
83 group
= (OneOrMore(matchline('MATCHES*') ^ COMMENTLINE
.suppress()) -
84 OneOrMore(propertyline('PROPERTIES*') ^ propertycomment
.suppress()) -
85 (EMPTYLINE ^
stringEnd()).suppress())
86 commentgroup
= OneOrMore(COMMENTLINE
).suppress() - EMPTYLINE
.suppress()
88 grammar
= OneOrMore(Group(group
)('GROUPS*') ^ commentgroup
) + stringEnd()
93 def property_grammar():
94 ParserElement
.setDefaultWhitespaceChars(' ')
96 dpi_setting
= (Optional('*')('DEFAULT') + INTEGER('DPI') + Suppress('@') + INTEGER('HZ'))('SETTINGS*')
97 mount_matrix_row
= SIGNED_REAL
+ ',' + SIGNED_REAL
+ ',' + SIGNED_REAL
98 mount_matrix
= (mount_matrix_row
+ ';' + mount_matrix_row
+ ';' + mount_matrix_row
)('MOUNT_MATRIX')
100 props
= (('MOUSE_DPI', Group(OneOrMore(dpi_setting
))),
101 ('MOUSE_WHEEL_CLICK_ANGLE', INTEGER
),
102 ('MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL', INTEGER
),
103 ('MOUSE_WHEEL_CLICK_COUNT', INTEGER
),
104 ('MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL', INTEGER
),
105 ('ID_INPUT', Literal('1')),
106 ('ID_INPUT_ACCELEROMETER', Literal('1')),
107 ('ID_INPUT_JOYSTICK', Literal('1')),
108 ('ID_INPUT_KEY', Literal('1')),
109 ('ID_INPUT_KEYBOARD', Literal('1')),
110 ('ID_INPUT_MOUSE', Literal('1')),
111 ('ID_INPUT_POINTINGSTICK', Literal('1')),
112 ('ID_INPUT_SWITCH', Literal('1')),
113 ('ID_INPUT_TABLET', Literal('1')),
114 ('ID_INPUT_TABLET_PAD', Literal('1')),
115 ('ID_INPUT_TOUCHPAD', Literal('1')),
116 ('ID_INPUT_TOUCHSCREEN', Literal('1')),
117 ('ID_INPUT_TRACKBALL', Literal('1')),
118 ('MOUSE_WHEEL_TILT_HORIZONTAL', Literal('1')),
119 ('MOUSE_WHEEL_TILT_VERTICAL', Literal('1')),
120 ('POINTINGSTICK_SENSITIVITY', INTEGER
),
121 ('POINTINGSTICK_CONST_ACCEL', REAL
),
122 ('ID_INPUT_JOYSTICK_INTEGRATION', Or(('internal', 'external'))),
123 ('ID_INPUT_TOUCHPAD_INTEGRATION', Or(('internal', 'external'))),
124 ('XKB_FIXED_LAYOUT', STRING
),
125 ('XKB_FIXED_VARIANT', STRING
),
126 ('XKB_FIXED_MODEL', STRING
),
127 ('KEYBOARD_LED_NUMLOCK', Literal('0')),
128 ('KEYBOARD_LED_CAPSLOCK', Literal('0')),
129 ('ACCEL_MOUNT_MATRIX', mount_matrix
),
130 ('ACCEL_LOCATION', Or(('display', 'base'))),
131 ('PROXIMITY_NEAR_LEVEL', INTEGER
),
133 fixed_props
= [Literal(name
)('NAME') - Suppress('=') - val('VALUE')
134 for name
, val
in props
]
135 kbd_props
= [Regex(r
'KEYBOARD_KEY_[0-9a-f]+')('NAME')
137 ('!' ^
(Optional('!') - Word(alphanums
+ '_')))('VALUE')
139 abs_props
= [Regex(r
'EVDEV_ABS_[0-9a-f]{2}')('NAME')
141 Word(nums
+ ':')('VALUE')
144 grammar
= Or(fixed_props
+ kbd_props
+ abs_props
) + EOL
149 def error(fmt
, *args
, **kwargs
):
152 print(fmt
.format(*args
, **kwargs
))
154 def convert_properties(group
):
155 matches
= [m
[0] for m
in group
.MATCHES
]
156 props
= [p
[0] for p
in group
.PROPERTIES
]
157 return matches
, props
160 grammar
= hwdb_grammar()
162 with
open(fname
, 'r', encoding
='UTF-8') as f
:
163 parsed
= grammar
.parseFile(f
)
164 except ParseBaseException
as e
:
165 error('Cannot parse {}: {}', fname
, e
)
167 return [convert_properties(g
) for g
in parsed
.GROUPS
]
169 def check_match_uniqueness(groups
):
170 matches
= sum((group
[0] for group
in groups
), [])
173 for match
in matches
:
175 error('Match {!r} is duplicated', match
)
178 def check_one_default(prop
, settings
):
179 defaults
= [s
for s
in settings
if s
.DEFAULT
]
180 if len(defaults
) > 1:
181 error('More than one star entry: {!r}', prop
)
183 def check_one_mount_matrix(prop
, value
):
184 numbers
= [s
for s
in value
if s
not in {';', ','}]
185 if len(numbers
) != 9:
186 error('Wrong accel matrix: {!r}', prop
)
188 numbers
= [abs(float(number
)) for number
in numbers
]
190 error('Wrong accel matrix: {!r}', prop
)
191 bad_x
, bad_y
, bad_z
= max(numbers
[0:3]) == 0, max(numbers
[3:6]) == 0, max(numbers
[6:9]) == 0
192 if bad_x
or bad_y
or bad_z
:
193 error('Mount matrix is all zero in {} row: {!r}',
194 'x' if bad_x
else ('y' if bad_y
else 'z'),
197 def check_one_keycode(prop
, value
):
198 if value
!= '!' and ecodes
is not None:
199 key
= 'KEY_' + value
.upper()
200 if not (key
in ecodes
or
201 value
.upper() in ecodes
or
202 # new keys added in kernel 5.5
203 'KBD_LCD_MENU' in key
):
204 error('Keycode {} unknown', key
)
206 def check_properties(groups
):
207 grammar
= property_grammar()
208 for matches
, props
in groups
:
212 prop
= prop
.partition('#')[0].rstrip()
214 parsed
= grammar
.parseString(prop
)
215 except ParseBaseException
as e
:
216 error('Failed to parse: {!r}', prop
)
218 # print('{!r}'.format(parsed))
219 if parsed
.NAME
in prop_names
:
220 error('Property {} is duplicated', parsed
.NAME
)
221 prop_names
.add(parsed
.NAME
)
222 if parsed
.NAME
== 'MOUSE_DPI':
223 check_one_default(prop
, parsed
.VALUE
.SETTINGS
)
224 elif parsed
.NAME
== 'ACCEL_MOUNT_MATRIX':
225 check_one_mount_matrix(prop
, parsed
.VALUE
)
226 elif parsed
.NAME
.startswith('KEYBOARD_KEY_'):
227 val
= parsed
.VALUE
if isinstance(parsed
.VALUE
, str) else parsed
.VALUE
[0]
228 check_one_keycode(prop
, val
)
230 def print_summary(fname
, groups
):
231 n_matches
= sum(len(matches
) for matches
, props
in groups
)
232 n_props
= sum(len(props
) for matches
, props
in groups
)
233 print('{}: {} match groups, {} matches, {} properties'
234 .format(fname
, len(groups
), n_matches
, n_props
))
236 if n_matches
== 0 or n_props
== 0:
237 error('{}: no matches or props'.format(fname
))
239 if __name__
== '__main__':
240 args
= sys
.argv
[1:] or sorted(glob
.glob(os
.path
.dirname(sys
.argv
[0]) + '/[67][0-9]-*.hwdb'))
243 groups
= parse(fname
)
244 print_summary(fname
, groups
)
245 check_match_uniqueness(groups
)
246 check_properties(groups
)