forked from platformio/platformio-core
730 lines
24 KiB
Python
730 lines
24 KiB
Python
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# pylint: disable=no-member, no-self-use, unused-argument
|
|
# pylint: disable=too-many-instance-attributes, too-many-public-methods
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import os
|
|
import sys
|
|
from os.path import basename, commonprefix, isdir, isfile, join, realpath, sep
|
|
from platform import system
|
|
|
|
import SCons.Scanner
|
|
from SCons.Script import ARGUMENTS, DefaultEnvironment
|
|
|
|
from platformio import util
|
|
from platformio.builder.tools import platformio as piotool
|
|
from platformio.managers.lib import LibraryManager
|
|
|
|
|
|
class LibBuilderFactory(object):
|
|
|
|
@staticmethod
|
|
def new(env, path, verbose=False):
|
|
clsname = "UnknownLibBuilder"
|
|
if isfile(join(path, "library.json")):
|
|
clsname = "PlatformIOLibBuilder"
|
|
else:
|
|
used_frameworks = LibBuilderFactory.get_used_frameworks(env, path)
|
|
common_frameworks = (
|
|
set(env.get("PIOFRAMEWORK", [])) & set(used_frameworks))
|
|
if common_frameworks:
|
|
clsname = "%sLibBuilder" % list(common_frameworks)[0].title()
|
|
elif used_frameworks:
|
|
clsname = "%sLibBuilder" % used_frameworks[0].title()
|
|
|
|
obj = getattr(sys.modules[__name__], clsname)(
|
|
env, path, verbose=verbose)
|
|
assert isinstance(obj, LibBuilderBase)
|
|
return obj
|
|
|
|
@staticmethod
|
|
def get_used_frameworks(env, path):
|
|
if any([
|
|
isfile(join(path, fname))
|
|
for fname in ("library.properties", "keywords.txt")
|
|
]):
|
|
return ["arduino"]
|
|
|
|
if isfile(join(path, "module.json")):
|
|
return ["mbed"]
|
|
|
|
# check source files
|
|
for root, _, files in os.walk(path, followlinks=True):
|
|
for fname in files:
|
|
if not env.IsFileWithExt(
|
|
fname, piotool.SRC_BUILD_EXT + piotool.SRC_HEADER_EXT):
|
|
continue
|
|
with open(join(root, fname)) as f:
|
|
content = f.read()
|
|
if "Arduino.h" in content:
|
|
return ["arduino"]
|
|
elif "mbed.h" in content:
|
|
return ["mbed"]
|
|
return []
|
|
|
|
|
|
class LibBuilderBase(object):
|
|
|
|
LDF_MODES = ["off", "chain", "deep", "chain+", "deep+"]
|
|
LDF_MODE_DEFAULT = "chain"
|
|
|
|
CLASSIC_SCANNER = SCons.Scanner.C.CScanner()
|
|
ADVANCED_SCANNER = SCons.Scanner.C.CScanner(advanced=True)
|
|
INC_DIRS_CACHE = None
|
|
|
|
def __init__(self, env, path, manifest=None, verbose=False):
|
|
self.env = env.Clone()
|
|
self.envorigin = env.Clone()
|
|
self.path = realpath(env.subst(path))
|
|
self.verbose = verbose
|
|
|
|
self._manifest = manifest if manifest else self.load_manifest()
|
|
self._ldf_mode = self.validate_ldf_mode(
|
|
self.env.get("LIB_LDF_MODE", self.LDF_MODE_DEFAULT))
|
|
self._is_dependent = False
|
|
self._is_built = False
|
|
self._depbuilders = list()
|
|
self._circular_deps = list()
|
|
self._scanned_paths = list()
|
|
|
|
# reset source filter, could be overridden with extra script
|
|
self.env['SRC_FILTER'] = ""
|
|
|
|
# process extra options and append to build environment
|
|
self.process_extra_options()
|
|
|
|
def __repr__(self):
|
|
return "%s(%r)" % (self.__class__, self.path)
|
|
|
|
def __contains__(self, path):
|
|
p1 = self.path
|
|
p2 = path
|
|
if system() == "Windows":
|
|
p1 = p1.lower()
|
|
p2 = p2.lower()
|
|
return commonprefix((p1 + sep, p2)) == p1 + sep
|
|
|
|
@property
|
|
def name(self):
|
|
return self._manifest.get("name", basename(self.path))
|
|
|
|
@property
|
|
def version(self):
|
|
return self._manifest.get("version")
|
|
|
|
@property
|
|
def dependencies(self):
|
|
return LibraryManager.normalize_dependencies(
|
|
self._manifest.get("dependencies", []))
|
|
|
|
@property
|
|
def src_filter(self):
|
|
return piotool.SRC_FILTER_DEFAULT + [
|
|
"-<example%s>" % os.sep,
|
|
"-<examples%s>" % os.sep,
|
|
"-<test%s>" % os.sep,
|
|
"-<tests%s>" % os.sep
|
|
]
|
|
|
|
@property
|
|
def src_dir(self):
|
|
return (join(self.path, "src")
|
|
if isdir(join(self.path, "src")) else self.path)
|
|
|
|
@property
|
|
def build_dir(self):
|
|
return join("$BUILD_DIR", "lib", basename(self.path))
|
|
|
|
def get_inc_dirs(self):
|
|
items = [self.src_dir]
|
|
if all([isdir(join(self.path, d)) for d in ("inc", "src")]):
|
|
items.append(join(self.path, "inc"))
|
|
return items
|
|
|
|
@property
|
|
def build_flags(self):
|
|
return None
|
|
|
|
@property
|
|
def build_unflags(self):
|
|
return None
|
|
|
|
@property
|
|
def extra_script(self):
|
|
return None
|
|
|
|
@property
|
|
def lib_archive(self):
|
|
return self.env.get("LIB_ARCHIVE", "") != "false"
|
|
|
|
@staticmethod
|
|
def validate_ldf_mode(mode):
|
|
if isinstance(mode, basestring):
|
|
mode = mode.strip().lower()
|
|
if mode in LibBuilderBase.LDF_MODES:
|
|
return mode
|
|
try:
|
|
return LibBuilderBase.LDF_MODES[int(mode)]
|
|
except (IndexError, ValueError):
|
|
pass
|
|
return LibBuilderBase.LDF_MODE_DEFAULT
|
|
|
|
@property
|
|
def lib_ldf_mode(self):
|
|
return self._ldf_mode
|
|
|
|
@property
|
|
def depbuilders(self):
|
|
return self._depbuilders
|
|
|
|
@property
|
|
def dependent(self):
|
|
return self._is_dependent
|
|
|
|
@property
|
|
def is_built(self):
|
|
return self._is_built
|
|
|
|
@staticmethod
|
|
def items_in_list(items, ilist):
|
|
|
|
def _items_to_list(items_):
|
|
if not isinstance(items_, list):
|
|
items_ = [i.strip() for i in items_.split(",")]
|
|
return [i.lower() for i in items_ if i]
|
|
|
|
items = _items_to_list(items)
|
|
ilist = _items_to_list(ilist)
|
|
if "*" in items or "*" in ilist:
|
|
return True
|
|
return set(items) & set(ilist)
|
|
|
|
def is_platforms_compatible(self, platforms):
|
|
return True
|
|
|
|
def is_frameworks_compatible(self, frameworks):
|
|
return True
|
|
|
|
def load_manifest(self):
|
|
return {}
|
|
|
|
def get_src_files(self):
|
|
return [
|
|
join(self.src_dir, item)
|
|
for item in self.env.MatchSourceFiles(self.src_dir,
|
|
self.src_filter)
|
|
]
|
|
|
|
def process_extra_options(self):
|
|
with util.cd(self.path):
|
|
self.env.ProcessUnFlags(self.build_unflags)
|
|
self.env.ProcessFlags(self.build_flags)
|
|
if self.extra_script:
|
|
self.env.SConscriptChdir(1)
|
|
self.env.SConscript(
|
|
realpath(self.extra_script),
|
|
exports={
|
|
"env": self.env,
|
|
"pio_lib_builder": self
|
|
})
|
|
|
|
def _process_dependencies(self):
|
|
if not self.dependencies:
|
|
return
|
|
for item in self.dependencies:
|
|
skip = False
|
|
for key in ("platforms", "frameworks"):
|
|
env_key = "PIO" + key.upper()[:-1]
|
|
if env_key not in self.env:
|
|
continue
|
|
if (key in item and
|
|
not self.items_in_list(self.env[env_key], item[key])):
|
|
if self.verbose:
|
|
sys.stderr.write(
|
|
"Skip %s incompatible dependency %s\n" % (key[:-1],
|
|
item))
|
|
skip = True
|
|
if skip:
|
|
continue
|
|
|
|
found = False
|
|
for lb in self.envorigin.GetLibBuilders():
|
|
if item['name'] != lb.name:
|
|
continue
|
|
elif "frameworks" in item and \
|
|
not lb.is_frameworks_compatible(item["frameworks"]):
|
|
continue
|
|
elif "platforms" in item and \
|
|
not lb.is_platforms_compatible(item["platforms"]):
|
|
continue
|
|
found = True
|
|
self.depend_recursive(lb)
|
|
break
|
|
|
|
if not found:
|
|
sys.stderr.write(
|
|
"Error: Could not find `%s` dependency for `%s` "
|
|
"library\n" % (item['name'], self.name))
|
|
self.env.Exit(1)
|
|
|
|
def _validate_search_paths(self, search_paths=None):
|
|
if not search_paths:
|
|
search_paths = []
|
|
assert isinstance(search_paths, list)
|
|
|
|
_search_paths = []
|
|
for path in search_paths:
|
|
if path not in self._scanned_paths:
|
|
_search_paths.append(path)
|
|
self._scanned_paths.append(path)
|
|
|
|
return _search_paths
|
|
|
|
def _get_found_includes(self, search_paths=None):
|
|
# all include directories
|
|
if not LibBuilderBase.INC_DIRS_CACHE:
|
|
inc_dirs = []
|
|
used_inc_dirs = []
|
|
for lb in self.envorigin.GetLibBuilders():
|
|
items = [self.env.Dir(d) for d in lb.get_inc_dirs()]
|
|
if lb.dependent:
|
|
used_inc_dirs.extend(items)
|
|
else:
|
|
inc_dirs.extend(items)
|
|
LibBuilderBase.INC_DIRS_CACHE = used_inc_dirs + inc_dirs
|
|
|
|
# append self include directories
|
|
inc_dirs = [self.env.Dir(d) for d in self.get_inc_dirs()]
|
|
inc_dirs.extend(LibBuilderBase.INC_DIRS_CACHE)
|
|
|
|
result = []
|
|
for path in self._validate_search_paths(search_paths):
|
|
try:
|
|
assert "+" in self.lib_ldf_mode
|
|
incs = self.env.File(path).get_found_includes(
|
|
self.env, LibBuilderBase.ADVANCED_SCANNER, tuple(inc_dirs))
|
|
except Exception as e: # pylint: disable=broad-except
|
|
if self.verbose and "+" in self.lib_ldf_mode:
|
|
sys.stderr.write(
|
|
"Warning! Classic Pre Processor is used for `%s`, "
|
|
"advanced has failed with `%s`\n" % (path, e))
|
|
incs = self.env.File(path).get_found_includes(
|
|
self.env, LibBuilderBase.CLASSIC_SCANNER, tuple(inc_dirs))
|
|
# print path, map(lambda n: n.get_abspath(), incs)
|
|
for inc in incs:
|
|
if inc not in result:
|
|
result.append(inc)
|
|
return result
|
|
|
|
def depend_recursive(self, lb, search_paths=None):
|
|
|
|
def _already_depends(_lb):
|
|
if self in _lb.depbuilders:
|
|
return True
|
|
for __lb in _lb.depbuilders:
|
|
if _already_depends(__lb):
|
|
return True
|
|
return False
|
|
|
|
# assert isinstance(lb, LibBuilderBase)
|
|
if self != lb:
|
|
if _already_depends(lb):
|
|
if self.verbose:
|
|
sys.stderr.write("Warning! Circular dependencies detected "
|
|
"between `%s` and `%s`\n" % (self.path,
|
|
lb.path))
|
|
self._circular_deps.append(lb)
|
|
elif lb not in self._depbuilders:
|
|
self._depbuilders.append(lb)
|
|
LibBuilderBase.INC_DIRS_CACHE = None
|
|
lb.search_deps_recursive(search_paths)
|
|
|
|
def search_deps_recursive(self, search_paths=None):
|
|
if not self._is_dependent:
|
|
self._is_dependent = True
|
|
self._process_dependencies()
|
|
|
|
if self.lib_ldf_mode.startswith("deep"):
|
|
search_paths = self.get_src_files()
|
|
|
|
# when LDF is disabled
|
|
if self.lib_ldf_mode == "off":
|
|
return
|
|
|
|
lib_inc_map = {}
|
|
for inc in self._get_found_includes(search_paths):
|
|
for lb in self.envorigin.GetLibBuilders():
|
|
if inc.get_abspath() in lb:
|
|
if lb not in lib_inc_map:
|
|
lib_inc_map[lb] = []
|
|
lib_inc_map[lb].append(inc.get_abspath())
|
|
break
|
|
|
|
for lb, lb_search_paths in lib_inc_map.items():
|
|
self.depend_recursive(lb, lb_search_paths)
|
|
|
|
def build(self):
|
|
libs = []
|
|
for lb in self._depbuilders:
|
|
libs.extend(lb.build())
|
|
# copy shared information to self env
|
|
for key in ("CPPPATH", "LIBPATH", "LIBS", "LINKFLAGS"):
|
|
self.env.AppendUnique(**{key: lb.env.get(key)})
|
|
|
|
for lb in self._circular_deps:
|
|
self.env.AppendUnique(CPPPATH=lb.get_inc_dirs())
|
|
|
|
if self._is_built:
|
|
return libs
|
|
self._is_built = True
|
|
|
|
self.env.AppendUnique(CPPPATH=self.get_inc_dirs())
|
|
|
|
if self.lib_ldf_mode == "off":
|
|
for lb in self.envorigin.GetLibBuilders():
|
|
if self == lb or not lb.is_built:
|
|
continue
|
|
for key in ("CPPPATH", "LIBPATH", "LIBS", "LINKFLAGS"):
|
|
self.env.AppendUnique(**{key: lb.env.get(key)})
|
|
|
|
if self.lib_archive:
|
|
libs.append(
|
|
self.env.BuildLibrary(self.build_dir, self.src_dir,
|
|
self.src_filter))
|
|
else:
|
|
self.env.BuildSources(self.build_dir, self.src_dir,
|
|
self.src_filter)
|
|
return libs
|
|
|
|
|
|
class UnknownLibBuilder(LibBuilderBase):
|
|
pass
|
|
|
|
|
|
class ArduinoLibBuilder(LibBuilderBase):
|
|
|
|
def load_manifest(self):
|
|
manifest = {}
|
|
if not isfile(join(self.path, "library.properties")):
|
|
return manifest
|
|
with open(join(self.path, "library.properties")) as fp:
|
|
for line in fp.readlines():
|
|
if "=" not in line:
|
|
continue
|
|
key, value = line.split("=", 1)
|
|
manifest[key.strip()] = value.strip()
|
|
return manifest
|
|
|
|
def get_inc_dirs(self):
|
|
inc_dirs = LibBuilderBase.get_inc_dirs(self)
|
|
if isdir(join(self.path, "src")):
|
|
return inc_dirs
|
|
if isdir(join(self.path, "utility")):
|
|
inc_dirs.append(join(self.path, "utility"))
|
|
return inc_dirs
|
|
|
|
@property
|
|
def src_filter(self):
|
|
if isdir(join(self.path, "src")):
|
|
return LibBuilderBase.src_filter.fget(self)
|
|
src_filter = []
|
|
is_utility = isdir(join(self.path, "utility"))
|
|
for ext in piotool.SRC_BUILD_EXT + piotool.SRC_HEADER_EXT:
|
|
src_filter.append("+<*.%s>" % ext)
|
|
if is_utility:
|
|
src_filter.append("+<utility%s*.%s>" % (sep, ext))
|
|
return src_filter
|
|
|
|
def is_frameworks_compatible(self, frameworks):
|
|
return self.items_in_list(frameworks, ["arduino", "energia"])
|
|
|
|
|
|
class MbedLibBuilder(LibBuilderBase):
|
|
|
|
def load_manifest(self):
|
|
if not isfile(join(self.path, "module.json")):
|
|
return {}
|
|
return util.load_json(join(self.path, "module.json"))
|
|
|
|
@property
|
|
def src_dir(self):
|
|
if isdir(join(self.path, "source")):
|
|
return join(self.path, "source")
|
|
return LibBuilderBase.src_dir.fget(self)
|
|
|
|
def get_inc_dirs(self):
|
|
inc_dirs = LibBuilderBase.get_inc_dirs(self)
|
|
if self.path not in inc_dirs:
|
|
inc_dirs.append(self.path)
|
|
for p in self._manifest.get("extraIncludes", []):
|
|
inc_dirs.append(join(self.path, p))
|
|
return inc_dirs
|
|
|
|
def is_frameworks_compatible(self, frameworks):
|
|
return self.items_in_list(frameworks, ["mbed"])
|
|
|
|
|
|
class PlatformIOLibBuilder(LibBuilderBase):
|
|
|
|
def load_manifest(self):
|
|
assert isfile(join(self.path, "library.json"))
|
|
manifest = util.load_json(join(self.path, "library.json"))
|
|
assert "name" in manifest
|
|
return manifest
|
|
|
|
def _is_arduino_manifest(self):
|
|
return isfile(join(self.path, "library.properties"))
|
|
|
|
@property
|
|
def src_dir(self):
|
|
if all([
|
|
"srcFilter" in self._manifest.get("build", {})
|
|
or self.env['SRC_FILTER'], not self._is_arduino_manifest()
|
|
]):
|
|
return self.path
|
|
return LibBuilderBase.src_dir.fget(self)
|
|
|
|
@property
|
|
def src_filter(self):
|
|
if "srcFilter" in self._manifest.get("build", {}):
|
|
return self._manifest.get("build").get("srcFilter")
|
|
elif self.env['SRC_FILTER']:
|
|
return self.env['SRC_FILTER']
|
|
elif self._is_arduino_manifest():
|
|
return ArduinoLibBuilder.src_filter.fget(self)
|
|
return LibBuilderBase.src_filter.fget(self)
|
|
|
|
@property
|
|
def build_flags(self):
|
|
if "flags" in self._manifest.get("build", {}):
|
|
return self._manifest.get("build").get("flags")
|
|
return LibBuilderBase.build_flags.fget(self)
|
|
|
|
@property
|
|
def build_unflags(self):
|
|
if "unflags" in self._manifest.get("build", {}):
|
|
return self._manifest.get("build").get("unflags")
|
|
return LibBuilderBase.build_unflags.fget(self)
|
|
|
|
@property
|
|
def extra_script(self):
|
|
if "extraScript" in self._manifest.get("build", {}):
|
|
return self._manifest.get("build").get("extraScript")
|
|
return LibBuilderBase.extra_script.fget(self)
|
|
|
|
@property
|
|
def lib_archive(self):
|
|
if "libArchive" in self._manifest.get("build", {}):
|
|
return self._manifest.get("build").get("libArchive")
|
|
return LibBuilderBase.lib_archive.fget(self)
|
|
|
|
@property
|
|
def lib_ldf_mode(self):
|
|
if "libLDFMode" in self._manifest.get("build", {}):
|
|
return self.validate_ldf_mode(
|
|
self._manifest.get("build").get("libLDFMode"))
|
|
return LibBuilderBase.lib_ldf_mode.fget(self)
|
|
|
|
def is_platforms_compatible(self, platforms):
|
|
items = self._manifest.get("platforms")
|
|
if not items:
|
|
return LibBuilderBase.is_platforms_compatible(self, platforms)
|
|
return self.items_in_list(platforms, items)
|
|
|
|
def is_frameworks_compatible(self, frameworks):
|
|
items = self._manifest.get("frameworks")
|
|
if not items:
|
|
return LibBuilderBase.is_frameworks_compatible(self, frameworks)
|
|
return self.items_in_list(frameworks, items)
|
|
|
|
def get_inc_dirs(self):
|
|
inc_dirs = LibBuilderBase.get_inc_dirs(self)
|
|
|
|
# backwards compatibility with PlatformIO 2.0
|
|
if ("build" not in self._manifest and self._is_arduino_manifest()
|
|
and not isdir(join(self.path, "src"))
|
|
and isdir(join(self.path, "utility"))):
|
|
inc_dirs.append(join(self.path, "utility"))
|
|
|
|
for path in self.env.get("CPPPATH", []):
|
|
if path not in self.envorigin.get("CPPPATH", []):
|
|
inc_dirs.append(self.env.subst(path))
|
|
return inc_dirs
|
|
|
|
|
|
class ProjectAsLibBuilder(LibBuilderBase):
|
|
|
|
@property
|
|
def src_dir(self):
|
|
return self.env.subst("$PROJECTSRC_DIR")
|
|
|
|
@property
|
|
def lib_ldf_mode(self):
|
|
mode = LibBuilderBase.lib_ldf_mode.fget(self)
|
|
if not mode.startswith("chain"):
|
|
return mode
|
|
# parse all project files
|
|
return "deep+" if "+" in mode else "deep"
|
|
|
|
@property
|
|
def src_filter(self):
|
|
return self.env.get("SRC_FILTER", LibBuilderBase.src_filter.fget(self))
|
|
|
|
def process_extra_options(self):
|
|
# skip for project, options are already processed
|
|
pass
|
|
|
|
def search_deps_recursive(self, search_paths=None):
|
|
for dep in self.env.get("LIB_DEPS", []):
|
|
for token in ("@", "="):
|
|
if token in dep:
|
|
dep, _ = dep.split(token, 1)
|
|
for lb in self.envorigin.GetLibBuilders():
|
|
if lb.name == dep:
|
|
if lb not in self.depbuilders:
|
|
self.depend_recursive(lb)
|
|
break
|
|
return LibBuilderBase.search_deps_recursive(self, search_paths)
|
|
|
|
def build(self):
|
|
self._is_built = True # do not build Project now
|
|
self.env.AppendUnique(CPPPATH=self.get_inc_dirs())
|
|
return LibBuilderBase.build(self)
|
|
|
|
|
|
def GetLibBuilders(env): # pylint: disable=too-many-branches
|
|
|
|
if "__PIO_LIB_BUILDERS" in DefaultEnvironment():
|
|
return DefaultEnvironment()['__PIO_LIB_BUILDERS']
|
|
|
|
items = []
|
|
compat_mode = int(env.get("LIB_COMPAT_MODE", 1))
|
|
verbose = (int(ARGUMENTS.get("PIOVERBOSE", 0))
|
|
and not env.GetOption('clean'))
|
|
|
|
def _check_lib_builder(lb):
|
|
if lb.name in env.get("LIB_IGNORE", []):
|
|
if verbose:
|
|
sys.stderr.write("Ignored library %s\n" % lb.path)
|
|
return
|
|
if compat_mode > 1 and not lb.is_platforms_compatible(
|
|
env['PIOPLATFORM']):
|
|
if verbose:
|
|
sys.stderr.write(
|
|
"Platform incompatible library %s\n" % lb.path)
|
|
return False
|
|
if compat_mode > 0 and "PIOFRAMEWORK" in env and \
|
|
not lb.is_frameworks_compatible(env.get("PIOFRAMEWORK", [])):
|
|
if verbose:
|
|
sys.stderr.write(
|
|
"Framework incompatible library %s\n" % lb.path)
|
|
return False
|
|
return True
|
|
|
|
found_incompat = False
|
|
for libs_dir in env['LIBSOURCE_DIRS']:
|
|
libs_dir = env.subst(libs_dir)
|
|
if not isdir(libs_dir):
|
|
continue
|
|
for item in sorted(os.listdir(libs_dir)):
|
|
if item == "__cores__" or not isdir(join(libs_dir, item)):
|
|
continue
|
|
try:
|
|
lb = LibBuilderFactory.new(
|
|
env, join(libs_dir, item), verbose=verbose)
|
|
except ValueError:
|
|
if verbose:
|
|
sys.stderr.write("Skip library with broken manifest: %s\n"
|
|
% join(libs_dir, item))
|
|
continue
|
|
if _check_lib_builder(lb):
|
|
items.append(lb)
|
|
else:
|
|
found_incompat = True
|
|
|
|
for lb in env.get("EXTRA_LIB_BUILDERS", []):
|
|
if _check_lib_builder(lb):
|
|
items.append(lb)
|
|
else:
|
|
found_incompat = True
|
|
|
|
if verbose and found_incompat:
|
|
sys.stderr.write(
|
|
"More details about \"Library Compatibility Mode\": "
|
|
"http://docs.platformio.org/page/librarymanager/ldf.html#"
|
|
"ldf-compat-mode\n")
|
|
|
|
DefaultEnvironment()['__PIO_LIB_BUILDERS'] = items
|
|
return items
|
|
|
|
|
|
def BuildProjectLibraries(env):
|
|
lib_builders = env.GetLibBuilders()
|
|
|
|
def correct_found_libs():
|
|
# build full dependency graph
|
|
found_lbs = [lb for lb in lib_builders if lb.dependent]
|
|
for lb in lib_builders:
|
|
if lb in found_lbs:
|
|
lb.search_deps_recursive(lb.get_src_files())
|
|
for lb in lib_builders:
|
|
for deplb in lb.depbuilders[:]:
|
|
if deplb not in found_lbs:
|
|
lb.depbuilders.remove(deplb)
|
|
|
|
def print_deps_tree(root, level=0):
|
|
margin = "| " * (level)
|
|
for lb in root.depbuilders:
|
|
title = "<%s>" % lb.name
|
|
if lb.version:
|
|
title += " v%s" % lb.version
|
|
if int(ARGUMENTS.get("PIOVERBOSE", 0)):
|
|
title += " (%s)" % lb.path
|
|
print "%s|-- %s" % (margin, title)
|
|
if lb.depbuilders:
|
|
print_deps_tree(lb, level + 1)
|
|
|
|
print "Collected %d compatible libraries" % len(lib_builders)
|
|
print "Looking for dependencies..."
|
|
|
|
project = ProjectAsLibBuilder(env, "$PROJECT_DIR")
|
|
project.env = env
|
|
project.search_deps_recursive()
|
|
|
|
if (LibBuilderBase.validate_ldf_mode(
|
|
env.get("LIB_LDF_MODE", LibBuilderBase.LDF_MODE_DEFAULT))
|
|
.startswith("chain") and project.depbuilders):
|
|
correct_found_libs()
|
|
|
|
if project.depbuilders:
|
|
print "Library Dependency Graph"
|
|
print_deps_tree(project)
|
|
else:
|
|
print "No dependencies"
|
|
|
|
return project.build()
|
|
|
|
|
|
def exists(_):
|
|
return True
|
|
|
|
|
|
def generate(env):
|
|
env.AddMethod(GetLibBuilders)
|
|
env.AddMethod(BuildProjectLibraries)
|
|
return env
|