qmk find
: usability improvements (#20440)
This commit is contained in:
parent
b93f05dc35
commit
102c42b14b
4 changed files with 67 additions and 22 deletions
|
@ -165,16 +165,31 @@ qmk find -f 'processor=STM32F411'
|
||||||
qmk find -f 'processor=STM32F411' -f 'features.rgb_matrix=true'
|
qmk find -f 'processor=STM32F411' -f 'features.rgb_matrix=true'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The following filter expressions are also supported:
|
||||||
|
|
||||||
|
- `exists(key)`: Match targets where `key` is present.
|
||||||
|
- `absent(key)`: Match targets where `key` is not present.
|
||||||
|
- `contains(key, value)`: Match targets where `key` contains `value`. Can be used for strings, arrays and object keys.
|
||||||
|
- `length(key, value)`: Match targets where the length of `key` is `value`. Can be used for strings, arrays and objects.
|
||||||
|
|
||||||
|
You can also list arbitrary values for each matched target with `--print`:
|
||||||
|
|
||||||
|
```
|
||||||
|
qmk find -f 'processor=STM32F411' -p 'keyboard_name' -p 'features.rgb_matrix'
|
||||||
|
```
|
||||||
|
|
||||||
**Usage**:
|
**Usage**:
|
||||||
|
|
||||||
```
|
```
|
||||||
qmk find [-h] [-km KEYMAP] [-f FILTER]
|
qmk find [-h] [-km KEYMAP] [-p PRINT] [-f FILTER]
|
||||||
|
|
||||||
options:
|
options:
|
||||||
-km KEYMAP, --keymap KEYMAP
|
-km KEYMAP, --keymap KEYMAP
|
||||||
The keymap name to build. Default is 'default'.
|
The keymap name to build. Default is 'default'.
|
||||||
|
-p PRINT, --print PRINT
|
||||||
|
For each matched target, print the value of the supplied info.json key. May be passed multiple times.
|
||||||
-f FILTER, --filter FILTER
|
-f FILTER, --filter FILTER
|
||||||
Filter the list of keyboards based on the supplied value in rules.mk. Matches info.json structure, and accepts the formats 'features.rgblight=true' or 'exists(matrix_pins.direct)'. May be passed multiple times, all filters need to match. Value may include wildcards such as '*' and '?'.
|
Filter the list of keyboards based on their info.json data. Accepts the formats key=value, function(key), or function(key,value), eg. 'features.rgblight=true'. Valid functions are 'absent', 'contains', 'exists' and 'length'. May be passed multiple times; all filters need to match. Value may include wildcards such as '*' and '?'.
|
||||||
```
|
```
|
||||||
|
|
||||||
## `qmk console`
|
## `qmk console`
|
||||||
|
|
|
@ -11,13 +11,17 @@ from qmk.search import search_keymap_targets
|
||||||
action='append',
|
action='append',
|
||||||
default=[],
|
default=[],
|
||||||
help= # noqa: `format-python` and `pytest` don't agree here.
|
help= # noqa: `format-python` and `pytest` don't agree here.
|
||||||
"Filter the list of keyboards based on the supplied value in rules.mk. Matches info.json structure, and accepts the formats 'features.rgblight=true' or 'exists(matrix_pins.direct)'. May be passed multiple times, all filters need to match. Value may include wildcards such as '*' and '?'." # noqa: `format-python` and `pytest` don't agree here.
|
"Filter the list of keyboards based on their info.json data. Accepts the formats key=value, function(key), or function(key,value), eg. 'features.rgblight=true'. Valid functions are 'absent', 'contains', 'exists' and 'length'. May be passed multiple times; all filters need to match. Value may include wildcards such as '*' and '?'." # noqa: `format-python` and `pytest` don't agree here.
|
||||||
)
|
)
|
||||||
|
@cli.argument('-p', '--print', arg_only=True, action='append', default=[], help="For each matched target, print the value of the supplied info.json key. May be passed multiple times.")
|
||||||
@cli.argument('-km', '--keymap', type=str, default='default', help="The keymap name to build. Default is 'default'.")
|
@cli.argument('-km', '--keymap', type=str, default='default', help="The keymap name to build. Default is 'default'.")
|
||||||
@cli.subcommand('Find builds which match supplied search criteria.')
|
@cli.subcommand('Find builds which match supplied search criteria.')
|
||||||
def find(cli):
|
def find(cli):
|
||||||
"""Search through all keyboards and keymaps for a given search criteria.
|
"""Search through all keyboards and keymaps for a given search criteria.
|
||||||
"""
|
"""
|
||||||
targets = search_keymap_targets(cli.args.keymap, cli.args.filter)
|
targets = search_keymap_targets(cli.args.keymap, cli.args.filter, cli.args.print)
|
||||||
for target in targets:
|
for keyboard, keymap, print_vals in targets:
|
||||||
print(f'{target[0]}:{target[1]}')
|
print(f'{keyboard}:{keymap}')
|
||||||
|
|
||||||
|
for key, val in print_vals:
|
||||||
|
print(f' {key}={val}')
|
||||||
|
|
|
@ -18,7 +18,7 @@ def parse_rules_mk_file(file, rules_mk=None):
|
||||||
|
|
||||||
file = Path(file)
|
file = Path(file)
|
||||||
if file.exists():
|
if file.exists():
|
||||||
rules_mk_lines = file.read_text().split("\n")
|
rules_mk_lines = file.read_text(encoding='utf-8').split("\n")
|
||||||
|
|
||||||
for line in rules_mk_lines:
|
for line in rules_mk_lines:
|
||||||
# Filter out comments
|
# Filter out comments
|
||||||
|
|
|
@ -45,7 +45,7 @@ def _load_keymap_info(keyboard, keymap):
|
||||||
return (keyboard, keymap, keymap_json(keyboard, keymap))
|
return (keyboard, keymap, keymap_json(keyboard, keymap))
|
||||||
|
|
||||||
|
|
||||||
def search_keymap_targets(keymap='default', filters=[]):
|
def search_keymap_targets(keymap='default', filters=[], print_vals=[]):
|
||||||
targets = []
|
targets = []
|
||||||
|
|
||||||
with multiprocessing.Pool() as pool:
|
with multiprocessing.Pool() as pool:
|
||||||
|
@ -66,14 +66,43 @@ def search_keymap_targets(keymap='default', filters=[]):
|
||||||
cli.log.info('Parsing data for all matching keyboard/keymap combinations...')
|
cli.log.info('Parsing data for all matching keyboard/keymap combinations...')
|
||||||
valid_keymaps = [(e[0], e[1], dotty(e[2])) for e in pool.starmap(_load_keymap_info, target_list)]
|
valid_keymaps = [(e[0], e[1], dotty(e[2])) for e in pool.starmap(_load_keymap_info, target_list)]
|
||||||
|
|
||||||
|
function_re = re.compile(r'^(?P<function>[a-zA-Z]+)\((?P<key>[a-zA-Z0-9_\.]+)(,\s*(?P<value>[^#]+))?\)$')
|
||||||
equals_re = re.compile(r'^(?P<key>[a-zA-Z0-9_\.]+)\s*=\s*(?P<value>[^#]+)$')
|
equals_re = re.compile(r'^(?P<key>[a-zA-Z0-9_\.]+)\s*=\s*(?P<value>[^#]+)$')
|
||||||
exists_re = re.compile(r'^exists\((?P<key>[a-zA-Z0-9_\.]+)\)$')
|
|
||||||
for filter_txt in filters:
|
for filter_expr in filters:
|
||||||
f = equals_re.match(filter_txt)
|
function_match = function_re.match(filter_expr)
|
||||||
if f is not None:
|
equals_match = equals_re.match(filter_expr)
|
||||||
key = f.group('key')
|
|
||||||
value = f.group('value')
|
if function_match is not None:
|
||||||
cli.log.info(f'Filtering on condition ("{key}" == "{value}")...')
|
func_name = function_match.group('function').lower()
|
||||||
|
key = function_match.group('key')
|
||||||
|
value = function_match.group('value')
|
||||||
|
|
||||||
|
if value is not None:
|
||||||
|
if func_name == 'length':
|
||||||
|
valid_keymaps = filter(lambda e: key in e[2] and len(e[2].get(key)) == int(value), valid_keymaps)
|
||||||
|
elif func_name == 'contains':
|
||||||
|
valid_keymaps = filter(lambda e: key in e[2] and value in e[2].get(key), valid_keymaps)
|
||||||
|
else:
|
||||||
|
cli.log.warning(f'Unrecognized filter expression: {function_match.group(0)}')
|
||||||
|
continue
|
||||||
|
|
||||||
|
cli.log.info(f'Filtering on condition: {{fg_green}}{func_name}{{fg_reset}}({{fg_cyan}}{key}{{fg_reset}}, {{fg_cyan}}{value}{{fg_reset}})...')
|
||||||
|
else:
|
||||||
|
if func_name == 'exists':
|
||||||
|
valid_keymaps = filter(lambda e: key in e[2], valid_keymaps)
|
||||||
|
elif func_name == 'absent':
|
||||||
|
valid_keymaps = filter(lambda e: key not in e[2], valid_keymaps)
|
||||||
|
else:
|
||||||
|
cli.log.warning(f'Unrecognized filter expression: {function_match.group(0)}')
|
||||||
|
continue
|
||||||
|
|
||||||
|
cli.log.info(f'Filtering on condition: {{fg_green}}{func_name}{{fg_reset}}({{fg_cyan}}{key}{{fg_reset}})...')
|
||||||
|
|
||||||
|
elif equals_match is not None:
|
||||||
|
key = equals_match.group('key')
|
||||||
|
value = equals_match.group('value')
|
||||||
|
cli.log.info(f'Filtering on condition: {{fg_cyan}}{key}{{fg_reset}} == {{fg_cyan}}{value}{{fg_reset}}...')
|
||||||
|
|
||||||
def _make_filter(k, v):
|
def _make_filter(k, v):
|
||||||
expr = fnmatch.translate(v)
|
expr = fnmatch.translate(v)
|
||||||
|
@ -87,13 +116,10 @@ def search_keymap_targets(keymap='default', filters=[]):
|
||||||
return f
|
return f
|
||||||
|
|
||||||
valid_keymaps = filter(_make_filter(key, value), valid_keymaps)
|
valid_keymaps = filter(_make_filter(key, value), valid_keymaps)
|
||||||
|
else:
|
||||||
|
cli.log.warning(f'Unrecognized filter expression: {filter_expr}')
|
||||||
|
continue
|
||||||
|
|
||||||
f = exists_re.match(filter_txt)
|
targets = [(e[0], e[1], [(p, e[2].get(p)) for p in print_vals]) for e in valid_keymaps]
|
||||||
if f is not None:
|
|
||||||
key = f.group('key')
|
|
||||||
cli.log.info(f'Filtering on condition (exists: "{key}")...')
|
|
||||||
valid_keymaps = filter(lambda e: e[2].get(key) is not None, valid_keymaps)
|
|
||||||
|
|
||||||
targets = [(e[0], e[1]) for e in valid_keymaps]
|
|
||||||
|
|
||||||
return targets
|
return targets
|
||||||
|
|
Loading…
Reference in a new issue