2022-11-05 11:30:09 +01:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from qmk.json_schema import deep_update, json_load, validate
|
|
|
|
|
2022-12-09 01:54:52 +01:00
|
|
|
CONSTANTS_PATH = Path('data/constants/')
|
|
|
|
KEYCODES_PATH = CONSTANTS_PATH / 'keycodes'
|
|
|
|
EXTRAS_PATH = KEYCODES_PATH / 'extras'
|
|
|
|
|
|
|
|
|
|
|
|
def _find_versions(path, prefix):
|
|
|
|
ret = []
|
|
|
|
for file in path.glob(f'{prefix}_[0-9].[0-9].[0-9].hjson'):
|
|
|
|
ret.append(file.stem.split('_')[-1])
|
|
|
|
|
|
|
|
ret.sort(reverse=True)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
|
|
|
def _load_fragments(path, prefix, version):
|
|
|
|
file = path / f'{prefix}_{version}.hjson'
|
|
|
|
if not file.exists():
|
|
|
|
raise ValueError(f'Requested keycode spec ({prefix}:{version}) is invalid!')
|
|
|
|
|
|
|
|
# Load base
|
|
|
|
spec = json_load(file)
|
|
|
|
|
|
|
|
# Merge in fragments
|
|
|
|
fragments = path.glob(f'{prefix}_{version}_*.hjson')
|
|
|
|
for file in fragments:
|
|
|
|
deep_update(spec, json_load(file))
|
|
|
|
|
|
|
|
return spec
|
|
|
|
|
|
|
|
|
|
|
|
def _search_path(lang=None):
|
|
|
|
return EXTRAS_PATH if lang else KEYCODES_PATH
|
|
|
|
|
|
|
|
|
|
|
|
def _search_prefix(lang=None):
|
|
|
|
return f'keycodes_{lang}' if lang else 'keycodes'
|
2022-11-05 11:30:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
def _validate(spec):
|
|
|
|
# first throw it to the jsonschema
|
|
|
|
validate(spec, 'qmk.keycodes.v1')
|
|
|
|
|
|
|
|
# no duplicate keycodes
|
|
|
|
keycodes = []
|
|
|
|
for value in spec['keycodes'].values():
|
|
|
|
keycodes.append(value['key'])
|
|
|
|
keycodes.extend(value.get('aliases', []))
|
|
|
|
duplicates = set([x for x in keycodes if keycodes.count(x) > 1])
|
|
|
|
if duplicates:
|
|
|
|
raise ValueError(f'Keycode spec contains duplicate keycodes! ({",".join(duplicates)})')
|
|
|
|
|
|
|
|
|
2022-12-09 01:54:52 +01:00
|
|
|
def load_spec(version, lang=None):
|
2022-11-05 11:30:09 +01:00
|
|
|
"""Build keycode data from the requested spec file
|
|
|
|
"""
|
|
|
|
if version == 'latest':
|
2022-12-09 01:54:52 +01:00
|
|
|
version = list_versions(lang)[0]
|
2022-11-05 11:30:09 +01:00
|
|
|
|
2022-12-09 01:54:52 +01:00
|
|
|
path = _search_path(lang)
|
|
|
|
prefix = _search_prefix(lang)
|
2022-11-05 11:30:09 +01:00
|
|
|
|
|
|
|
# Load base
|
2022-12-09 01:54:52 +01:00
|
|
|
spec = _load_fragments(path, prefix, version)
|
2022-11-05 11:30:09 +01:00
|
|
|
|
|
|
|
# Sort?
|
2022-12-09 01:54:52 +01:00
|
|
|
spec['keycodes'] = dict(sorted(spec.get('keycodes', {}).items()))
|
2022-11-05 11:30:09 +01:00
|
|
|
|
|
|
|
# Validate?
|
|
|
|
_validate(spec)
|
|
|
|
|
|
|
|
return spec
|
|
|
|
|
|
|
|
|
2022-12-09 01:54:52 +01:00
|
|
|
def list_versions(lang=None):
|
2022-11-05 11:30:09 +01:00
|
|
|
"""Return available versions - sorted newest first
|
|
|
|
"""
|
2022-12-09 01:54:52 +01:00
|
|
|
path = _search_path(lang)
|
|
|
|
prefix = _search_prefix(lang)
|
|
|
|
|
|
|
|
return _find_versions(path, prefix)
|
|
|
|
|
|
|
|
|
|
|
|
def list_languages():
|
|
|
|
"""Return available languages
|
|
|
|
"""
|
|
|
|
ret = set()
|
|
|
|
for file in EXTRAS_PATH.glob('keycodes_*_[0-9].[0-9].[0-9].hjson'):
|
|
|
|
ret.add(file.stem.split('_')[1])
|
2022-11-05 11:30:09 +01:00
|
|
|
|
|
|
|
return ret
|