2023-06-03 21:03:05 +02:00
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
import sys
|
|
|
|
|
|
|
|
warning_count = 0
|
|
|
|
|
|
|
|
def warn(msg):
|
|
|
|
global warning_count
|
|
|
|
print(msg)
|
|
|
|
warning_count += 1
|
|
|
|
|
|
|
|
def key_list_str(keys):
|
|
|
|
return ", ".join(sorted(list(keys)))
|
|
|
|
|
|
|
|
def missing_some_of(keys, symbols, class_name=None):
|
|
|
|
if class_name is None:
|
|
|
|
class_name = "of [" + ", ".join(symbols) + "]"
|
|
|
|
missing = set(symbols).difference(keys)
|
|
|
|
if len(missing) > 0 and len(missing) != len(symbols):
|
|
|
|
warn("Layout includes some %s but not all, missing: %s" % (
|
|
|
|
class_name, key_list_str(missing)))
|
|
|
|
|
|
|
|
def missing_required(keys, symbols, msg):
|
|
|
|
missing = set(symbols).difference(keys)
|
|
|
|
if len(missing) > 0:
|
|
|
|
warn("%s, missing: %s" % (msg, key_list_str(missing)))
|
|
|
|
|
|
|
|
def unexpected_keys(keys, symbols, msg):
|
|
|
|
unexpected = set(symbols).intersection(keys)
|
|
|
|
if len(unexpected) > 0:
|
|
|
|
warn("%s, unexpected: %s" % (msg, key_list_str(unexpected)))
|
|
|
|
|
|
|
|
def parse_layout(fname):
|
|
|
|
keys = set()
|
|
|
|
root = ET.parse(fname).getroot()
|
|
|
|
if root.tag != "keyboard":
|
|
|
|
return None
|
|
|
|
for row in root:
|
|
|
|
for key in row:
|
|
|
|
for attr in key.keys():
|
|
|
|
keys.add(key.get(attr).removeprefix("\\"))
|
|
|
|
return root, keys
|
|
|
|
|
|
|
|
def check_layout(layout):
|
|
|
|
root, keys = layout
|
|
|
|
missing_some_of(keys, "~!@#$%^&*(){}`[]=\\-_;:/.,?<>'\"+|", "ASCII punctuation")
|
|
|
|
missing_some_of(keys, "0123456789", "digits")
|
|
|
|
missing_some_of(keys, ["f11_placeholder", "f12_placeholder"])
|
|
|
|
missing_some_of(keys, ["esc", "tab"])
|
|
|
|
missing_required(keys, ["backspace", "delete"], "Layout doesn't define some important keys")
|
2023-08-02 12:09:15 +02:00
|
|
|
unexpected_keys(keys,
|
|
|
|
["copy", "paste", "cut", "selectAll", "shareText",
|
|
|
|
"pasteAsPlainText", "undo", "redo", "replaceText",
|
|
|
|
"textAssist", "autofill" ],
|
|
|
|
"Layout contains editing keys")
|
|
|
|
unexpected_keys(keys,
|
|
|
|
[ "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9",
|
|
|
|
"f10", "f11", "f12" ],
|
|
|
|
"Layout contains function keys")
|
2023-06-03 21:03:05 +02:00
|
|
|
|
|
|
|
bottom_row_keys = [
|
|
|
|
"ctrl", "fn", "switch_numeric", "change_method", "switch_emoji",
|
2023-07-29 18:37:06 +02:00
|
|
|
"config", "switch_forward", "switch_backward", "enter", "action",
|
|
|
|
"left", "up", "right", "down", "space"
|
2023-06-03 21:03:05 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
if root.get("bottom_row") == "false":
|
|
|
|
missing_required(keys, bottom_row_keys,
|
|
|
|
"Layout redefines the bottom row but some important keys are missing")
|
|
|
|
else:
|
|
|
|
unexpected_keys(keys, bottom_row_keys,
|
|
|
|
"Layout contains keys present in the bottom row")
|
|
|
|
|
2023-06-10 10:59:25 +02:00
|
|
|
if root.get("script") == None:
|
|
|
|
warn("Layout doesn't specify a script.")
|
|
|
|
|
2023-06-03 21:03:05 +02:00
|
|
|
for fname in sys.argv[1:]:
|
|
|
|
layout = parse_layout(fname)
|
|
|
|
if layout == None:
|
|
|
|
print("Not a layout file: %s" % fname)
|
|
|
|
else:
|
|
|
|
print("# %s" % fname)
|
|
|
|
warning_count = 0
|
|
|
|
check_layout(layout)
|
|
|
|
print("%d warnings" % warning_count)
|