2020-07-20 02:42:30 +00:00
|
|
|
#
|
2020-07-26 02:40:44 +00:00
|
|
|
# common-dependencies.py
|
2020-07-20 02:42:30 +00:00
|
|
|
# Convenience script to check dependencies and add libs and sources for Marlin Enabled Features
|
|
|
|
#
|
2021-11-04 10:28:42 +00:00
|
|
|
import pioutil
|
|
|
|
if pioutil.is_pio_build():
|
2020-08-20 07:47:16 +00:00
|
|
|
|
2021-11-04 10:28:42 +00:00
|
|
|
import subprocess,os,re
|
|
|
|
Import("env")
|
2020-10-09 21:42:23 +00:00
|
|
|
|
2021-11-04 10:28:42 +00:00
|
|
|
from platformio.package.meta import PackageSpec
|
|
|
|
from platformio.project.config import ProjectConfig
|
2020-07-20 02:42:30 +00:00
|
|
|
|
2021-11-04 10:28:42 +00:00
|
|
|
verbose = 0
|
|
|
|
FEATURE_CONFIG = {}
|
|
|
|
|
|
|
|
def validate_pio():
|
2022-05-19 14:15:57 +00:00
|
|
|
PIO_VERSION_MIN = (6, 0, 1)
|
2021-11-04 10:28:42 +00:00
|
|
|
try:
|
|
|
|
from platformio import VERSION as PIO_VERSION
|
|
|
|
weights = (1000, 100, 1)
|
|
|
|
version_min = sum([x[0] * float(re.sub(r'[^0-9]', '.', str(x[1]))) for x in zip(weights, PIO_VERSION_MIN)])
|
|
|
|
version_cur = sum([x[0] * float(re.sub(r'[^0-9]', '.', str(x[1]))) for x in zip(weights, PIO_VERSION)])
|
|
|
|
if version_cur < version_min:
|
|
|
|
print()
|
|
|
|
print("**************************************************")
|
|
|
|
print("****** An update to PlatformIO is ******")
|
|
|
|
print("****** required to build Marlin Firmware. ******")
|
|
|
|
print("****** ******")
|
|
|
|
print("****** Minimum version: ", PIO_VERSION_MIN, " ******")
|
|
|
|
print("****** Current Version: ", PIO_VERSION, " ******")
|
|
|
|
print("****** ******")
|
|
|
|
print("****** Update PlatformIO and try again. ******")
|
|
|
|
print("**************************************************")
|
|
|
|
print()
|
|
|
|
exit(1)
|
|
|
|
except SystemExit:
|
|
|
|
exit(1)
|
|
|
|
except:
|
|
|
|
print("Can't detect PlatformIO Version")
|
|
|
|
|
|
|
|
def blab(str,level=1):
|
|
|
|
if verbose >= level:
|
|
|
|
print("[deps] %s" % str)
|
|
|
|
|
|
|
|
def add_to_feat_cnf(feature, flines):
|
|
|
|
|
|
|
|
try:
|
|
|
|
feat = FEATURE_CONFIG[feature]
|
|
|
|
except:
|
|
|
|
FEATURE_CONFIG[feature] = {}
|
|
|
|
|
|
|
|
# Get a reference to the FEATURE_CONFIG under construction
|
2020-08-06 13:14:00 +00:00
|
|
|
feat = FEATURE_CONFIG[feature]
|
|
|
|
|
2021-11-04 10:28:42 +00:00
|
|
|
# Split up passed lines on commas or newlines and iterate
|
|
|
|
# Add common options to the features config under construction
|
|
|
|
# For lib_deps replace a previous instance of the same library
|
2022-07-24 18:51:43 +00:00
|
|
|
atoms = re.sub(r',\s*', '\n', flines).strip().split('\n')
|
2021-11-04 10:28:42 +00:00
|
|
|
for line in atoms:
|
|
|
|
parts = line.split('=')
|
|
|
|
name = parts.pop(0)
|
|
|
|
if name in ['build_flags', 'extra_scripts', 'src_filter', 'lib_ignore']:
|
|
|
|
feat[name] = '='.join(parts)
|
|
|
|
blab("[%s] %s=%s" % (feature, name, feat[name]), 3)
|
|
|
|
else:
|
2022-07-24 18:51:43 +00:00
|
|
|
for dep in re.split(r',\s*', line):
|
2021-11-04 10:28:42 +00:00
|
|
|
lib_name = re.sub(r'@([~^]|[<>]=?)?[\d.]+', '', dep.strip()).split('=').pop(0)
|
|
|
|
lib_re = re.compile('(?!^' + lib_name + '\\b)')
|
|
|
|
feat['lib_deps'] = list(filter(lib_re.match, feat['lib_deps'])) + [dep]
|
|
|
|
blab("[%s] lib_deps = %s" % (feature, dep), 3)
|
|
|
|
|
2022-07-21 09:18:17 +00:00
|
|
|
def load_features():
|
2021-11-04 10:28:42 +00:00
|
|
|
blab("========== Gather [features] entries...")
|
2022-07-21 09:18:17 +00:00
|
|
|
for key in ProjectConfig().items('features'):
|
2021-11-04 10:28:42 +00:00
|
|
|
feature = key[0].upper()
|
|
|
|
if not feature in FEATURE_CONFIG:
|
|
|
|
FEATURE_CONFIG[feature] = { 'lib_deps': [] }
|
|
|
|
add_to_feat_cnf(feature, key[1])
|
|
|
|
|
|
|
|
# Add options matching custom_marlin.MY_OPTION to the pile
|
|
|
|
blab("========== Gather custom_marlin entries...")
|
2022-07-21 09:18:17 +00:00
|
|
|
for n in env.GetProjectOptions():
|
2021-11-04 10:28:42 +00:00
|
|
|
key = n[0]
|
|
|
|
mat = re.match(r'custom_marlin\.(.+)', key)
|
|
|
|
if mat:
|
|
|
|
try:
|
|
|
|
val = env.GetProjectOption(key)
|
|
|
|
except:
|
|
|
|
val = None
|
|
|
|
if val:
|
2022-07-24 18:51:43 +00:00
|
|
|
opt = mat[1].upper()
|
2021-11-04 10:28:42 +00:00
|
|
|
blab("%s.custom_marlin.%s = '%s'" % ( env['PIOENV'], opt, val ))
|
|
|
|
add_to_feat_cnf(opt, val)
|
|
|
|
|
|
|
|
def get_all_known_libs():
|
|
|
|
known_libs = []
|
|
|
|
for feature in FEATURE_CONFIG:
|
|
|
|
feat = FEATURE_CONFIG[feature]
|
|
|
|
if not 'lib_deps' in feat:
|
|
|
|
continue
|
2020-08-06 13:14:00 +00:00
|
|
|
for dep in feat['lib_deps']:
|
2021-11-04 10:28:42 +00:00
|
|
|
known_libs.append(PackageSpec(dep).name)
|
|
|
|
return known_libs
|
|
|
|
|
|
|
|
def get_all_env_libs():
|
|
|
|
env_libs = []
|
|
|
|
lib_deps = env.GetProjectOption('lib_deps')
|
|
|
|
for dep in lib_deps:
|
|
|
|
env_libs.append(PackageSpec(dep).name)
|
|
|
|
return env_libs
|
|
|
|
|
|
|
|
def set_env_field(field, value):
|
|
|
|
proj = env.GetProjectConfig()
|
|
|
|
proj.set("env:" + env['PIOENV'], field, value)
|
|
|
|
|
|
|
|
# All unused libs should be ignored so that if a library
|
|
|
|
# exists in .pio/lib_deps it will not break compilation.
|
|
|
|
def force_ignore_unused_libs():
|
|
|
|
env_libs = get_all_env_libs()
|
|
|
|
known_libs = get_all_known_libs()
|
|
|
|
diff = (list(set(known_libs) - set(env_libs)))
|
|
|
|
lib_ignore = env.GetProjectOption('lib_ignore') + diff
|
|
|
|
blab("Ignore libraries: %s" % lib_ignore)
|
|
|
|
set_env_field('lib_ignore', lib_ignore)
|
|
|
|
|
|
|
|
def apply_features_config():
|
2022-07-21 09:18:17 +00:00
|
|
|
load_features()
|
2021-11-04 10:28:42 +00:00
|
|
|
blab("========== Apply enabled features...")
|
|
|
|
for feature in FEATURE_CONFIG:
|
2022-07-21 09:18:17 +00:00
|
|
|
if not env.MarlinHas(feature):
|
2020-07-26 01:52:44 +00:00
|
|
|
continue
|
|
|
|
|
2021-11-04 10:28:42 +00:00
|
|
|
feat = FEATURE_CONFIG[feature]
|
|
|
|
|
|
|
|
if 'lib_deps' in feat and len(feat['lib_deps']):
|
|
|
|
blab("========== Adding lib_deps for %s... " % feature, 2)
|
|
|
|
|
|
|
|
# feat to add
|
|
|
|
deps_to_add = {}
|
|
|
|
for dep in feat['lib_deps']:
|
|
|
|
deps_to_add[PackageSpec(dep).name] = dep
|
|
|
|
blab("==================== %s... " % dep, 2)
|
|
|
|
|
|
|
|
# Does the env already have the dependency?
|
|
|
|
deps = env.GetProjectOption('lib_deps')
|
|
|
|
for dep in deps:
|
|
|
|
name = PackageSpec(dep).name
|
|
|
|
if name in deps_to_add:
|
|
|
|
del deps_to_add[name]
|
|
|
|
|
|
|
|
# Are there any libraries that should be ignored?
|
|
|
|
lib_ignore = env.GetProjectOption('lib_ignore')
|
|
|
|
for dep in deps:
|
|
|
|
name = PackageSpec(dep).name
|
|
|
|
if name in deps_to_add:
|
|
|
|
del deps_to_add[name]
|
|
|
|
|
|
|
|
# Is there anything left?
|
|
|
|
if len(deps_to_add) > 0:
|
|
|
|
# Only add the missing dependencies
|
|
|
|
set_env_field('lib_deps', deps + list(deps_to_add.values()))
|
|
|
|
|
|
|
|
if 'build_flags' in feat:
|
|
|
|
f = feat['build_flags']
|
|
|
|
blab("========== Adding build_flags for %s: %s" % (feature, f), 2)
|
|
|
|
new_flags = env.GetProjectOption('build_flags') + [ f ]
|
|
|
|
env.Replace(BUILD_FLAGS=new_flags)
|
|
|
|
|
|
|
|
if 'extra_scripts' in feat:
|
|
|
|
blab("Running extra_scripts for %s... " % feature, 2)
|
|
|
|
env.SConscript(feat['extra_scripts'], exports="env")
|
|
|
|
|
|
|
|
if 'src_filter' in feat:
|
2022-05-19 14:15:57 +00:00
|
|
|
blab("========== Adding build_src_filter for %s... " % feature, 2)
|
2021-11-04 10:28:42 +00:00
|
|
|
src_filter = ' '.join(env.GetProjectOption('src_filter'))
|
|
|
|
# first we need to remove the references to the same folder
|
|
|
|
my_srcs = re.findall(r'[+-](<.*?>)', feat['src_filter'])
|
|
|
|
cur_srcs = re.findall(r'[+-](<.*?>)', src_filter)
|
|
|
|
for d in my_srcs:
|
|
|
|
if d in cur_srcs:
|
|
|
|
src_filter = re.sub(r'[+-]' + d, '', src_filter)
|
|
|
|
|
|
|
|
src_filter = feat['src_filter'] + ' ' + src_filter
|
2022-05-19 14:15:57 +00:00
|
|
|
set_env_field('build_src_filter', [src_filter])
|
2021-11-04 10:28:42 +00:00
|
|
|
env.Replace(SRC_FILTER=src_filter)
|
|
|
|
|
|
|
|
if 'lib_ignore' in feat:
|
|
|
|
blab("========== Adding lib_ignore for %s... " % feature, 2)
|
|
|
|
lib_ignore = env.GetProjectOption('lib_ignore') + [feat['lib_ignore']]
|
|
|
|
set_env_field('lib_ignore', lib_ignore)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Use the compiler to get a list of all enabled features
|
|
|
|
#
|
|
|
|
def load_marlin_features():
|
|
|
|
if 'MARLIN_FEATURES' in env:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Process defines
|
2021-12-14 06:22:06 +00:00
|
|
|
from preprocessor import run_preprocessor
|
|
|
|
define_list = run_preprocessor(env)
|
2021-11-04 10:28:42 +00:00
|
|
|
marlin_features = {}
|
|
|
|
for define in define_list:
|
|
|
|
feature = define[8:].strip().decode().split(' ')
|
|
|
|
feature, definition = feature[0], ' '.join(feature[1:])
|
|
|
|
marlin_features[feature] = definition
|
|
|
|
env['MARLIN_FEATURES'] = marlin_features
|
|
|
|
|
|
|
|
#
|
|
|
|
# Return True if a matching feature is enabled
|
|
|
|
#
|
2022-07-21 09:18:17 +00:00
|
|
|
def MarlinHas(env, feature):
|
2021-11-04 10:28:42 +00:00
|
|
|
load_marlin_features()
|
|
|
|
r = re.compile('^' + feature + '$')
|
|
|
|
found = list(filter(r.match, env['MARLIN_FEATURES']))
|
|
|
|
|
|
|
|
# Defines could still be 'false' or '0', so check
|
|
|
|
some_on = False
|
|
|
|
if len(found):
|
|
|
|
for f in found:
|
|
|
|
val = env['MARLIN_FEATURES'][f]
|
|
|
|
if val in [ '', '1', 'true' ]:
|
|
|
|
some_on = True
|
|
|
|
elif val in env['MARLIN_FEATURES']:
|
2022-07-21 09:18:17 +00:00
|
|
|
some_on = env.MarlinHas(val)
|
2021-11-04 10:28:42 +00:00
|
|
|
|
|
|
|
return some_on
|
|
|
|
|
|
|
|
validate_pio()
|
2020-07-20 02:42:30 +00:00
|
|
|
|
2021-11-04 10:28:42 +00:00
|
|
|
try:
|
|
|
|
verbose = int(env.GetProjectOption('custom_verbose'))
|
|
|
|
except:
|
|
|
|
pass
|
2020-07-20 02:42:30 +00:00
|
|
|
|
2021-12-14 06:22:06 +00:00
|
|
|
#
|
2021-11-04 10:28:42 +00:00
|
|
|
# Add a method for other PIO scripts to query enabled features
|
2021-12-14 06:22:06 +00:00
|
|
|
#
|
2022-07-21 09:18:17 +00:00
|
|
|
env.AddMethod(MarlinHas)
|
2020-07-20 02:42:30 +00:00
|
|
|
|
2021-12-14 06:22:06 +00:00
|
|
|
#
|
2021-11-04 10:28:42 +00:00
|
|
|
# Add dependencies for enabled Marlin features
|
2021-12-14 06:22:06 +00:00
|
|
|
#
|
2021-11-04 10:28:42 +00:00
|
|
|
apply_features_config()
|
|
|
|
force_ignore_unused_libs()
|
2021-12-14 06:22:06 +00:00
|
|
|
|
|
|
|
#print(env.Dump())
|
|
|
|
|
|
|
|
from signature import compute_build_signature
|
|
|
|
compute_build_signature(env)
|