2019-07-04 02:18:16 -04:00
|
|
|
# The MIT License (MIT)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 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 json
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
2019-11-02 11:52:26 -04:00
|
|
|
SUPPORTED_PORTS = ["atmel-samd", "nrf", "mimxrt10xx"]
|
2019-07-04 02:18:16 -04:00
|
|
|
|
|
|
|
|
2019-07-27 10:15:37 -04:00
|
|
|
def parse_port_config(contents, chip_keyword=None):
|
|
|
|
""" Compile a dictionary of port-wide module configs, which may
|
|
|
|
be categorized by chipset.
|
|
|
|
"""
|
|
|
|
chip_fam = "all"
|
|
|
|
ifeq_found = False
|
|
|
|
port_config_results = {"all": []}
|
|
|
|
|
|
|
|
chip_pattern = ""
|
|
|
|
if chip_keyword:
|
|
|
|
chip_pattern = (
|
|
|
|
re.compile("(?<=ifeq\s\(\$\({}\)\,)(\w+)".format(chip_keyword))
|
|
|
|
)
|
|
|
|
|
|
|
|
for line in contents:
|
|
|
|
if chip_keyword:
|
|
|
|
if not ifeq_found:
|
|
|
|
check_ifeq = chip_pattern.search(line)
|
|
|
|
if check_ifeq:
|
|
|
|
ifeq_found = True
|
|
|
|
chip_fam = check_ifeq.group(1)
|
2019-07-27 11:30:57 -04:00
|
|
|
#print("found chip:", chip_fam)
|
2019-07-27 10:15:37 -04:00
|
|
|
else:
|
|
|
|
ifeq_found = False
|
|
|
|
chip_fam = "all"
|
|
|
|
else:
|
|
|
|
if "endif" in line:
|
|
|
|
ifeq_found = False
|
|
|
|
chip_fam = "all"
|
|
|
|
|
|
|
|
if "CIRCUITPY_" in line:
|
|
|
|
if chip_fam in port_config_results:
|
|
|
|
port_config_results[chip_fam].append(line.rstrip("\n"))
|
|
|
|
else:
|
|
|
|
port_config_results[chip_fam] = [line.rstrip("\n")]
|
|
|
|
|
|
|
|
#print(port_config_results)
|
|
|
|
return port_config_results
|
|
|
|
|
2019-07-04 02:18:16 -04:00
|
|
|
def get_shared_bindings():
|
|
|
|
""" Get a list of modules in shared-bindings based on folder names
|
|
|
|
"""
|
|
|
|
return [item for item in os.listdir("./shared-bindings")]
|
|
|
|
|
|
|
|
|
|
|
|
def read_mpconfig():
|
|
|
|
""" Open 'circuitpy_mpconfig.mk' and return the contents.
|
|
|
|
"""
|
|
|
|
configs = []
|
|
|
|
with open("py/circuitpy_mpconfig.mk") as mpconfig:
|
|
|
|
configs = mpconfig.read()
|
|
|
|
|
|
|
|
return configs
|
|
|
|
|
|
|
|
|
2019-07-27 10:15:37 -04:00
|
|
|
def build_module_map():
|
2019-07-04 02:18:16 -04:00
|
|
|
""" Establish the base of the JSON file, based on the contents from
|
|
|
|
`configs`. Base will contain module names, if they're part of
|
2019-09-28 00:41:34 -04:00
|
|
|
the `FULL_BUILD`, or their default value (0, 1, or a list of
|
|
|
|
modules that determine default [see audiocore, audiomixer, etc.]).
|
2019-07-04 02:18:16 -04:00
|
|
|
|
|
|
|
"""
|
2019-07-23 21:49:37 -04:00
|
|
|
base = dict()
|
2019-07-27 10:15:37 -04:00
|
|
|
modules = get_shared_bindings()
|
|
|
|
configs = read_mpconfig()
|
2019-07-04 02:18:16 -04:00
|
|
|
full_build = False
|
|
|
|
for module in modules:
|
|
|
|
full_name = module
|
|
|
|
search_name = module.lstrip("_")
|
|
|
|
re_pattern = "CIRCUITPY_{}\s=\s(.+)".format(search_name.upper())
|
2019-09-28 00:41:34 -04:00
|
|
|
find_config = re.findall(re_pattern, configs)
|
2019-07-04 02:18:16 -04:00
|
|
|
if not find_config:
|
|
|
|
continue
|
2019-09-28 00:41:34 -04:00
|
|
|
find_config = ", ".join([x.strip("$()") for x in find_config])
|
|
|
|
|
|
|
|
full_build = int("CIRCUITPY_FULL_BUILD" in find_config)
|
2019-07-04 02:18:16 -04:00
|
|
|
if not full_build:
|
2019-09-28 00:41:34 -04:00
|
|
|
default_val = find_config
|
2019-07-04 02:18:16 -04:00
|
|
|
else:
|
|
|
|
default_val = "None"
|
2019-09-28 00:41:34 -04:00
|
|
|
|
2019-07-23 21:49:37 -04:00
|
|
|
base[search_name] = {
|
2019-07-04 02:18:16 -04:00
|
|
|
"name": full_name,
|
|
|
|
"full_build": str(full_build),
|
|
|
|
"default_value": default_val,
|
2019-07-27 10:15:37 -04:00
|
|
|
"excluded": {}
|
2019-07-04 02:18:16 -04:00
|
|
|
}
|
|
|
|
|
2019-09-28 00:41:34 -04:00
|
|
|
#print(base)
|
2019-07-27 10:15:37 -04:00
|
|
|
return base
|
2019-07-04 02:18:16 -04:00
|
|
|
|
|
|
|
|
2019-07-23 21:49:37 -04:00
|
|
|
def get_excluded_boards(base):
|
2019-07-04 02:18:16 -04:00
|
|
|
""" Cycles through each board's `mpconfigboard.mk` file to determine
|
|
|
|
if each module is included or not. Boards are selected by existence
|
|
|
|
in a port listed in `SUPPORTED_PORTS` (e.g. `/port/nrf/feather_52840`)
|
2019-07-27 10:15:37 -04:00
|
|
|
|
|
|
|
Boards are further categorized by their respective chipset (SAMD21,
|
|
|
|
SAMD51, nRF52840, etc.)
|
2019-07-04 02:18:16 -04:00
|
|
|
"""
|
2019-07-23 21:49:37 -04:00
|
|
|
modules = list(base.keys())
|
2019-07-27 10:15:37 -04:00
|
|
|
|
|
|
|
re_board_chip = None
|
|
|
|
chip_keyword = None
|
2019-07-04 02:18:16 -04:00
|
|
|
for port in SUPPORTED_PORTS:
|
2019-07-27 10:15:37 -04:00
|
|
|
# each port appears to use its own define for the chipset
|
|
|
|
if port in ["atmel-samd"]:
|
|
|
|
re_board_chip = re.compile("CHIP_FAMILY\s=\s(\w+)")
|
|
|
|
chip_keyword = "CHIP_FAMILY"
|
|
|
|
elif port in ["nrf"]:
|
|
|
|
re_board_chip = re.compile("MCU_VARIANT\s=\s(\w+)")
|
|
|
|
|
|
|
|
port_dir = "ports/{}".format(port)
|
|
|
|
|
|
|
|
port_config_contents = ""
|
|
|
|
with open(os.path.join(port_dir, "mpconfigport.mk")) as port_config:
|
|
|
|
port_config_contents = port_config.readlines()
|
|
|
|
port_config = parse_port_config(port_config_contents, chip_keyword)
|
|
|
|
|
|
|
|
for entry in os.scandir(os.path.join(port_dir, "boards")):
|
2019-07-07 10:14:46 -04:00
|
|
|
if not entry.is_dir():
|
|
|
|
continue
|
2019-07-27 10:15:37 -04:00
|
|
|
|
2019-07-07 10:14:46 -04:00
|
|
|
contents = ""
|
|
|
|
board_dir = os.path.join(entry.path, "mpconfigboard.mk")
|
|
|
|
with open(board_dir) as board:
|
|
|
|
contents = board.read()
|
2019-07-27 10:15:37 -04:00
|
|
|
|
|
|
|
board_chip = re_board_chip.search(contents)
|
|
|
|
#print(entry.name, board_chip.group(1))
|
|
|
|
if not board_chip:
|
|
|
|
board_chip = "Unknown Chip"
|
|
|
|
else:
|
|
|
|
board_chip = board_chip.group(1)
|
|
|
|
|
|
|
|
# add port_config results to contents
|
|
|
|
contents += "\n" + "\n".join(port_config["all"])
|
|
|
|
if board_chip in port_config:
|
|
|
|
contents += "\n" + "\n".join(port_config[board_chip])
|
|
|
|
|
2019-09-28 00:41:34 -04:00
|
|
|
check_dependent_modules = dict()
|
2019-07-07 10:14:46 -04:00
|
|
|
for module in modules:
|
2019-07-27 10:15:37 -04:00
|
|
|
board_is_excluded = False
|
2019-07-07 10:14:46 -04:00
|
|
|
# check if board uses `SMALL_BUILD`. if yes, and current
|
|
|
|
# module is marked as `FULL_BUILD`, board is excluded
|
|
|
|
small_build = re.search("CIRCUITPY_SMALL_BUILD = 1", contents)
|
2019-07-23 21:49:37 -04:00
|
|
|
if small_build and base[module]["full_build"] == "1":
|
2019-07-27 10:15:37 -04:00
|
|
|
board_is_excluded = True
|
2019-09-28 00:41:34 -04:00
|
|
|
|
|
|
|
# check if board uses `MINIMAL_BUILD`. if yes, and current
|
|
|
|
# module is marked as `DEFAULT_BUILD`, board is excluded
|
|
|
|
min_build = re.search("CIRCUITPY_MINIMAL_BUILD = 1", contents)
|
|
|
|
if min_build and base[module]["default_value"] == "CIRCUITPY_DEFAULT_BUILD":
|
|
|
|
board_is_excluded = True
|
|
|
|
|
2019-07-07 10:14:46 -04:00
|
|
|
# check if module is specifically disabled for this board
|
2020-01-21 16:03:47 -05:00
|
|
|
re_pattern = r"CIRCUITPY_{}\s=\s(\w)".format(module.upper())
|
2019-07-07 10:14:46 -04:00
|
|
|
find_module = re.search(re_pattern, contents)
|
|
|
|
if not find_module:
|
2019-09-28 00:41:34 -04:00
|
|
|
if base[module]["default_value"].isdigit():
|
|
|
|
# check if default inclusion is off ('0'). if the board doesn't
|
|
|
|
# have it explicitly enabled, its excluded.
|
|
|
|
if base[module]["default_value"] == "0":
|
|
|
|
board_is_excluded = True
|
|
|
|
else:
|
|
|
|
# this module is dependent on another module. add it
|
|
|
|
# to the list to check after processing all other modules.
|
|
|
|
# only need to check exclusion if it isn't already excluded.
|
|
|
|
if (not board_is_excluded and
|
|
|
|
base[module]["default_value"] not in [
|
|
|
|
"None",
|
|
|
|
"CIRCUITPY_DEFAULT_BUILD"
|
|
|
|
]):
|
|
|
|
check_dependent_modules[module] = base[module]["default_value"]
|
2019-07-27 10:15:37 -04:00
|
|
|
else:
|
2020-01-21 16:03:47 -05:00
|
|
|
board_is_excluded = find_module.group(1) == "0"
|
2019-07-27 10:15:37 -04:00
|
|
|
|
|
|
|
if board_is_excluded:
|
|
|
|
if board_chip in base[module]["excluded"]:
|
|
|
|
base[module]["excluded"][board_chip].append(entry.name)
|
|
|
|
else:
|
|
|
|
base[module]["excluded"][board_chip] = [entry.name]
|
2019-09-28 00:41:34 -04:00
|
|
|
|
|
|
|
for module in check_dependent_modules:
|
|
|
|
depend_results = set()
|
|
|
|
|
|
|
|
parents = check_dependent_modules[module].split("CIRCUITPY_")
|
|
|
|
parents = [item.strip(", ").lower() for item in parents if item]
|
|
|
|
|
|
|
|
for parent in parents:
|
|
|
|
if parent in base:
|
|
|
|
if (board_chip in base[parent]["excluded"] and
|
|
|
|
entry.name in base[parent]["excluded"][board_chip]):
|
|
|
|
depend_results.add(False)
|
|
|
|
else:
|
|
|
|
depend_results.add(True)
|
|
|
|
|
|
|
|
# only exclude the module if there were zero parents enabled
|
|
|
|
# as determined by the 'depend_results' set.
|
2019-10-02 01:02:49 -04:00
|
|
|
if not any(depend_results):
|
2019-09-28 00:41:34 -04:00
|
|
|
if board_chip in base[module]["excluded"]:
|
|
|
|
base[module]["excluded"][board_chip].append(entry.name)
|
|
|
|
else:
|
|
|
|
base[module]["excluded"][board_chip] = [entry.name]
|
|
|
|
|
2019-07-27 10:15:37 -04:00
|
|
|
#print(json.dumps(base, indent=2))
|
2019-07-23 21:49:37 -04:00
|
|
|
return base
|
2019-07-04 02:18:16 -04:00
|
|
|
|
2019-07-23 21:49:37 -04:00
|
|
|
|
2019-07-27 10:15:37 -04:00
|
|
|
def support_matrix_excluded_boards():
|
|
|
|
""" Compiles a list of available modules, and which board definitions
|
|
|
|
do not include them.
|
|
|
|
"""
|
|
|
|
base = build_module_map()
|
2019-07-23 21:49:37 -04:00
|
|
|
|
2019-07-27 10:15:37 -04:00
|
|
|
return get_excluded_boards(base)
|
|
|
|
|
|
|
|
def support_matrix_by_board():
|
|
|
|
""" Compiles a list of the available core modules available for each
|
|
|
|
board.
|
|
|
|
"""
|
|
|
|
base = build_module_map()
|
|
|
|
base_with_exclusions = get_excluded_boards(base)
|
|
|
|
|
|
|
|
boards = dict()
|
|
|
|
for port in SUPPORTED_PORTS:
|
|
|
|
port_dir = "ports/{}/boards".format(port)
|
|
|
|
for entry in os.scandir(port_dir):
|
|
|
|
if not entry.is_dir():
|
|
|
|
continue
|
|
|
|
board_modules = []
|
2019-07-27 11:30:57 -04:00
|
|
|
|
|
|
|
board_name = entry.name
|
|
|
|
board_contents = ""
|
|
|
|
with open(os.path.join(entry.path, "mpconfigboard.h")) as get_name:
|
|
|
|
board_contents = get_name.read()
|
|
|
|
board_name_re = re.search("(?<=MICROPY_HW_BOARD_NAME)\s+(.+)",
|
|
|
|
board_contents)
|
|
|
|
if board_name_re:
|
|
|
|
board_name = board_name_re.group(1).strip('"')
|
|
|
|
|
2019-07-27 10:15:37 -04:00
|
|
|
for module in base_with_exclusions.keys():
|
|
|
|
#print(module)
|
|
|
|
board_has_module = True
|
|
|
|
if base_with_exclusions[module]["excluded"]:
|
|
|
|
for port in base_with_exclusions[module]["excluded"].values():
|
|
|
|
#print(port)
|
2019-07-27 12:01:10 -04:00
|
|
|
if entry.name in port:
|
2019-07-27 10:15:37 -04:00
|
|
|
board_has_module = False
|
|
|
|
|
|
|
|
if board_has_module:
|
|
|
|
board_modules.append(base_with_exclusions[module]["name"])
|
2019-07-27 11:30:57 -04:00
|
|
|
boards[board_name] = sorted(board_modules)
|
2019-07-27 10:15:37 -04:00
|
|
|
|
2019-07-27 11:30:57 -04:00
|
|
|
#print(json.dumps(boards, indent=2))
|
2019-07-27 10:15:37 -04:00
|
|
|
return boards
|