2019-10-07 18:32:30 +00:00
|
|
|
"""List the keyboards currently defined within QMK
|
|
|
|
"""
|
2020-02-17 19:42:11 +00:00
|
|
|
# We avoid pathlib here because this is performance critical code.
|
2019-10-07 18:32:30 +00:00
|
|
|
import os
|
|
|
|
import glob
|
|
|
|
|
|
|
|
from milc import cli
|
|
|
|
|
2019-11-20 22:54:18 +00:00
|
|
|
BASE_PATH = os.path.join(os.getcwd(), "keyboards") + os.path.sep
|
|
|
|
KB_WILDCARD = os.path.join(BASE_PATH, "**", "rules.mk")
|
|
|
|
|
|
|
|
|
|
|
|
def find_name(path):
|
|
|
|
"""Determine the keyboard name by stripping off the base_path and rules.mk.
|
|
|
|
"""
|
|
|
|
return path.replace(BASE_PATH, "").replace(os.path.sep + "rules.mk", "")
|
|
|
|
|
2019-11-13 01:27:08 +00:00
|
|
|
|
2019-10-07 18:32:30 +00:00
|
|
|
@cli.subcommand("List the keyboards currently defined within QMK")
|
|
|
|
def list_keyboards(cli):
|
|
|
|
"""List the keyboards currently defined within QMK
|
|
|
|
"""
|
|
|
|
# find everywhere we have rules.mk where keymaps isn't in the path
|
2019-11-20 22:54:18 +00:00
|
|
|
paths = [path for path in glob.iglob(KB_WILDCARD, recursive=True) if 'keymaps' not in path]
|
2019-10-07 18:32:30 +00:00
|
|
|
|
2019-11-20 22:54:18 +00:00
|
|
|
# Extract the keyboard name from the path and print it
|
|
|
|
for keyboard_name in sorted(map(find_name, paths)):
|
|
|
|
print(keyboard_name)
|