summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorfoamyguy <foamyguy@gmail.com>2020-11-08 18:32:15 -0600
committerGitHub <noreply@github.com>2020-11-08 18:32:15 -0600
commitcf21c4da601e00a614efd8ade774a0c8e5444c64 (patch)
tree118a157edbc1884f502de8e9e26f79d178ed8c9a /tools
parent7611e71a1bc49bcb426e0854519d5143eb262a17 (diff)
parenteec9821fdc19ca81c2d0811a6b6c5909a54b8c81 (diff)
Merge pull request #1 from adafruit/main
merge from adafruit
Diffstat (limited to 'tools')
-rw-r--r--tools/build_board_info.py2
-rw-r--r--tools/ci_check_duplicate_usb_vid_pid.py148
-rw-r--r--tools/extract_pyi.py9
3 files changed, 157 insertions, 2 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py
index 6ed8b8c16..f83282ea9 100644
--- a/tools/build_board_info.py
+++ b/tools/build_board_info.py
@@ -42,7 +42,7 @@ extension_by_port = {
"cxd56": SPK,
"mimxrt10xx": HEX_UF2,
"litex": DFU,
- "esp32s2": BIN
+ "esp32s2": BIN_UF2
}
# Per board overrides
diff --git a/tools/ci_check_duplicate_usb_vid_pid.py b/tools/ci_check_duplicate_usb_vid_pid.py
new file mode 100644
index 000000000..cb4efc5f1
--- /dev/null
+++ b/tools/ci_check_duplicate_usb_vid_pid.py
@@ -0,0 +1,148 @@
+#!/usr/bin/env python3
+#
+# This file is part of the MicroPython project, http://micropython.org/
+#
+# The MIT License (MIT)
+#
+# Copyright (c) 2020 Michael Schroeder
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+import argparse
+import pathlib
+import re
+import sys
+
+DEFAULT_IGNORELIST = [
+ "circuitplayground_express",
+ "circuitplayground_express_crickit",
+ "circuitplayground_express_displayio",
+ "pycubed",
+ "pycubed_mram",
+ "pygamer",
+ "pygamer_advance",
+ "trinket_m0",
+ "trinket_m0_haxpress",
+ "sparkfun_qwiic_micro_with_flash",
+ "sparkfun_qwiic_micro_no_flash",
+ "feather_m0_express",
+ "feather_m0_supersized",
+ "cp32-m4",
+ "metro_m4_express",
+ "unexpectedmaker_feathers2",
+ "unexpectedmaker_feathers2_prerelease"
+]
+
+cli_parser = argparse.ArgumentParser(description="USB VID/PID Duplicate Checker")
+cli_parser.add_argument(
+ "--ignorelist",
+ dest="ignorelist",
+ nargs="?",
+ action="store",
+ default=DEFAULT_IGNORELIST,
+ help=(
+ "Board names to ignore duplicate VID/PID combinations. Pass an empty "
+ "string to disable all duplicate ignoring. Defaults are: "
+ f"{', '.join(DEFAULT_IGNORELIST)}"
+ )
+)
+
+def configboard_files():
+ """ A pathlib glob search for all ports/*/boards/*/mpconfigboard.mk file
+ paths.
+
+ :returns: A ``pathlib.Path.glob()`` genarator object
+ """
+ working_dir = pathlib.Path().resolve()
+ if not working_dir.name.startswith("circuitpython"):
+ raise RuntimeError(
+ "Please run USB VID/PID duplicate verification at the "
+ "top-level directory."
+ )
+ return working_dir.glob("ports/**/boards/**/mpconfigboard.mk")
+
+def check_vid_pid(files, ignorelist):
+ """ Compiles a list of USB VID & PID values for all boards, and checks
+ for duplicates. Exits with ``sys.exit()`` (non-zero exit code)
+ if duplicates are found, and lists the duplicates.
+ """
+
+ duplicates_found = False
+
+ usb_ids = {}
+
+ vid_pattern = re.compile(r"^USB_VID\s*\=\s*(.*)", flags=re.M)
+ pid_pattern = re.compile(r"^USB_PID\s*\=\s*(.*)", flags=re.M)
+
+ for board_config in files:
+ src_text = board_config.read_text()
+
+ usb_vid = vid_pattern.search(src_text)
+ usb_pid = pid_pattern.search(src_text)
+
+ board_name = board_config.parts[-2]
+
+ board_ignorelisted = False
+ if board_name in ignorelist:
+ board_ignorelisted = True
+ board_name += " (ignorelisted)"
+
+ if usb_vid and usb_pid:
+ id_group = f"{usb_vid.group(1)}:{usb_pid.group(1)}"
+ if id_group not in usb_ids:
+ usb_ids[id_group] = {
+ "boards": [board_name],
+ "duplicate": False
+ }
+ else:
+ usb_ids[id_group]['boards'].append(board_name)
+ if not board_ignorelisted:
+ usb_ids[id_group]['duplicate'] = True
+ duplicates_found = True
+
+ if duplicates_found:
+ duplicates = ""
+ for key, value in usb_ids.items():
+ if value["duplicate"]:
+ duplicates += (
+ f"- VID/PID: {key}\n"
+ f" Boards: {', '.join(value['boards'])}\n"
+ )
+
+ duplicate_message = (
+ f"Duplicate VID/PID usage found!\n{duplicates}\n"
+ f"If you are open source maker, then you can request a PID from http://pid.codes\n"
+ f"Otherwise, companies should pay the USB-IF for a vendor ID: https://www.usb.org/getting-vendor-id"
+ )
+ sys.exit(duplicate_message)
+ else:
+ print("No USB PID duplicates found.")
+
+
+if __name__ == "__main__":
+ arguments = cli_parser.parse_args()
+
+ print("Running USB VID/PID Duplicate Checker...")
+ print(
+ f"Ignoring the following boards: {', '.join(arguments.ignorelist)}",
+ end="\n\n"
+ )
+
+ board_files = configboard_files()
+ check_vid_pid(board_files, arguments.ignorelist)
diff --git a/tools/extract_pyi.py b/tools/extract_pyi.py
index 651216e11..b7ce584a1 100644
--- a/tools/extract_pyi.py
+++ b/tools/extract_pyi.py
@@ -17,7 +17,8 @@ import black
IMPORTS_IGNORE = frozenset({'int', 'float', 'bool', 'str', 'bytes', 'tuple', 'list', 'set', 'dict', 'bytearray', 'slice', 'file', 'buffer', 'range', 'array', 'struct_time'})
-IMPORTS_TYPING = frozenset({'Any', 'Optional', 'Union', 'Tuple', 'List', 'Sequence', 'NamedTuple', 'Iterable', 'Iterator', 'Callable', 'AnyStr', 'overload'})
+IMPORTS_TYPING = frozenset({'Any', 'Optional', 'Union', 'Tuple', 'List', 'Sequence', 'NamedTuple', 'Iterable', 'Iterator', 'Callable', 'AnyStr', 'overload', 'Type'})
+IMPORTS_TYPES = frozenset({'TracebackType'})
CPY_TYPING = frozenset({'ReadableBuffer', 'WriteableBuffer', 'AudioSample', 'FrameBuffer'})
@@ -63,6 +64,7 @@ def find_stub_issues(tree):
def extract_imports(tree):
modules = set()
typing = set()
+ types = set()
cpy_typing = set()
def collect_annotations(anno_tree):
@@ -74,6 +76,8 @@ def extract_imports(tree):
continue
elif node.id in IMPORTS_TYPING:
typing.add(node.id)
+ elif node.id in IMPORTS_TYPES:
+ types.add(node.id)
elif node.id in CPY_TYPING:
cpy_typing.add(node.id)
elif isinstance(node, ast.Attribute):
@@ -94,6 +98,7 @@ def extract_imports(tree):
return {
"modules": sorted(modules),
"typing": sorted(typing),
+ "types": sorted(types),
"cpy_typing": sorted(cpy_typing),
}
@@ -181,6 +186,8 @@ def convert_folder(top_level, stub_directory):
# Add import statements
imports = extract_imports(tree)
import_lines = ["from __future__ import annotations"]
+ if imports["types"]:
+ import_lines.append("from types import " + ", ".join(imports["types"]))
if imports["typing"]:
import_lines.append("from typing import " + ", ".join(imports["typing"]))
if imports["cpy_typing"]: