* fbt: reproducible manifest builds, less rebuild on small updates; scripts: assets: using timestamp from commandline af available * fbt: added app import validation for launch_app & single app build targets * fbt: COMSTR for app imports validation * docs: minor fixes * docs: markdown fix * vscode: comments for RTOS startup Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			292 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			292 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from dataclasses import dataclass, field
 | 
						|
from typing import List, Optional, Tuple
 | 
						|
from enum import Enum
 | 
						|
import os
 | 
						|
 | 
						|
 | 
						|
class FlipperManifestException(Exception):
 | 
						|
    pass
 | 
						|
 | 
						|
 | 
						|
class FlipperAppType(Enum):
 | 
						|
    SERVICE = "Service"
 | 
						|
    SYSTEM = "System"
 | 
						|
    APP = "App"
 | 
						|
    PLUGIN = "Plugin"
 | 
						|
    DEBUG = "Debug"
 | 
						|
    ARCHIVE = "Archive"
 | 
						|
    SETTINGS = "Settings"
 | 
						|
    STARTUP = "StartupHook"
 | 
						|
    EXTERNAL = "External"
 | 
						|
    METAPACKAGE = "Package"
 | 
						|
 | 
						|
 | 
						|
@dataclass
 | 
						|
class FlipperApplication:
 | 
						|
    appid: str
 | 
						|
    apptype: FlipperAppType
 | 
						|
    name: Optional[str] = ""
 | 
						|
    entry_point: Optional[str] = None
 | 
						|
    flags: List[str] = field(default_factory=lambda: ["Default"])
 | 
						|
    cdefines: List[str] = field(default_factory=list)
 | 
						|
    requires: List[str] = field(default_factory=list)
 | 
						|
    conflicts: List[str] = field(default_factory=list)
 | 
						|
    provides: List[str] = field(default_factory=list)
 | 
						|
    stack_size: int = 2048
 | 
						|
    icon: Optional[str] = None
 | 
						|
    order: int = 0
 | 
						|
    sdk_headers: List[str] = field(default_factory=list)
 | 
						|
    # .fap-specific
 | 
						|
    sources: List[str] = field(default_factory=lambda: ["*.c*"])
 | 
						|
    fap_version: Tuple[int] = field(default_factory=lambda: (0, 1))
 | 
						|
    fap_icon: Optional[str] = None
 | 
						|
    fap_libs: List[str] = field(default_factory=list)
 | 
						|
    fap_category: str = ""
 | 
						|
    fap_description: str = ""
 | 
						|
    fap_author: str = ""
 | 
						|
    fap_weburl: str = ""
 | 
						|
    # Internally used by fbt
 | 
						|
    _appdir: Optional[object] = None
 | 
						|
    _apppath: Optional[str] = None
 | 
						|
 | 
						|
 | 
						|
class AppManager:
 | 
						|
    def __init__(self):
 | 
						|
        self.known_apps = {}
 | 
						|
 | 
						|
    def get(self, appname: str):
 | 
						|
        try:
 | 
						|
            return self.known_apps[appname]
 | 
						|
        except KeyError as _:
 | 
						|
            raise FlipperManifestException(
 | 
						|
                f"Missing application manifest for '{appname}'"
 | 
						|
            )
 | 
						|
 | 
						|
    def find_by_appdir(self, appdir: str):
 | 
						|
        for app in self.known_apps.values():
 | 
						|
            if app._appdir.name == appdir:
 | 
						|
                return app
 | 
						|
        return None
 | 
						|
 | 
						|
    def load_manifest(self, app_manifest_path: str, app_dir_node: object):
 | 
						|
        if not os.path.exists(app_manifest_path):
 | 
						|
            raise FlipperManifestException(
 | 
						|
                f"App manifest not found at path {app_manifest_path}"
 | 
						|
            )
 | 
						|
        # print("Loading", app_manifest_path)
 | 
						|
 | 
						|
        app_manifests = []
 | 
						|
 | 
						|
        def App(*args, **kw):
 | 
						|
            nonlocal app_manifests
 | 
						|
            app_manifests.append(
 | 
						|
                FlipperApplication(
 | 
						|
                    *args,
 | 
						|
                    **kw,
 | 
						|
                    _appdir=app_dir_node,
 | 
						|
                    _apppath=os.path.dirname(app_manifest_path),
 | 
						|
                ),
 | 
						|
            )
 | 
						|
 | 
						|
        try:
 | 
						|
            with open(app_manifest_path, "rt") as manifest_file:
 | 
						|
                exec(manifest_file.read())
 | 
						|
        except Exception as e:
 | 
						|
            raise FlipperManifestException(
 | 
						|
                f"Failed parsing manifest '{app_manifest_path}' : {e}"
 | 
						|
            )
 | 
						|
 | 
						|
        if len(app_manifests) == 0:
 | 
						|
            raise FlipperManifestException(
 | 
						|
                f"App manifest '{app_manifest_path}' is malformed"
 | 
						|
            )
 | 
						|
 | 
						|
        # print("Built", app_manifests)
 | 
						|
        for app in app_manifests:
 | 
						|
            self._add_known_app(app)
 | 
						|
 | 
						|
    def _add_known_app(self, app: FlipperApplication):
 | 
						|
        if self.known_apps.get(app.appid, None):
 | 
						|
            raise FlipperManifestException(f"Duplicate app declaration: {app.appid}")
 | 
						|
        self.known_apps[app.appid] = app
 | 
						|
 | 
						|
    def filter_apps(self, applist: List[str]):
 | 
						|
        return AppBuildset(self, applist)
 | 
						|
 | 
						|
 | 
						|
class AppBuilderException(Exception):
 | 
						|
    pass
 | 
						|
 | 
						|
 | 
						|
class AppBuildset:
 | 
						|
    BUILTIN_APP_TYPES = (
 | 
						|
        FlipperAppType.SERVICE,
 | 
						|
        FlipperAppType.SYSTEM,
 | 
						|
        FlipperAppType.APP,
 | 
						|
        FlipperAppType.PLUGIN,
 | 
						|
        FlipperAppType.DEBUG,
 | 
						|
        FlipperAppType.ARCHIVE,
 | 
						|
        FlipperAppType.SETTINGS,
 | 
						|
        FlipperAppType.STARTUP,
 | 
						|
    )
 | 
						|
 | 
						|
    def __init__(self, appmgr: AppManager, appnames: List[str]):
 | 
						|
        self.appmgr = appmgr
 | 
						|
        self.appnames = set(appnames)
 | 
						|
        self._orig_appnames = appnames
 | 
						|
        self._process_deps()
 | 
						|
        self._check_conflicts()
 | 
						|
        self._check_unsatisfied()  # unneeded?
 | 
						|
        self.apps = sorted(
 | 
						|
            list(map(self.appmgr.get, self.appnames)),
 | 
						|
            key=lambda app: app.appid,
 | 
						|
        )
 | 
						|
 | 
						|
    def _is_missing_dep(self, dep_name: str):
 | 
						|
        return dep_name not in self.appnames
 | 
						|
 | 
						|
    def _process_deps(self):
 | 
						|
        while True:
 | 
						|
            provided = []
 | 
						|
            for app in self.appnames:
 | 
						|
                # print(app)
 | 
						|
                provided.extend(
 | 
						|
                    filter(
 | 
						|
                        self._is_missing_dep,
 | 
						|
                        self.appmgr.get(app).provides + self.appmgr.get(app).requires,
 | 
						|
                    )
 | 
						|
                )
 | 
						|
            # print("provides round", provided)
 | 
						|
            if len(provided) == 0:
 | 
						|
                break
 | 
						|
            self.appnames.update(provided)
 | 
						|
 | 
						|
    def _check_conflicts(self):
 | 
						|
        conflicts = []
 | 
						|
        for app in self.appnames:
 | 
						|
            # print(app)
 | 
						|
            if conflict_app_name := list(
 | 
						|
                filter(
 | 
						|
                    lambda dep_name: dep_name in self.appnames,
 | 
						|
                    self.appmgr.get(app).conflicts,
 | 
						|
                )
 | 
						|
            ):
 | 
						|
                conflicts.append((app, conflict_app_name))
 | 
						|
 | 
						|
        if len(conflicts):
 | 
						|
            raise AppBuilderException(
 | 
						|
                f"App conflicts for {', '.join(f'{conflict_dep[0]}: {conflict_dep[1]}' for conflict_dep in conflicts)}"
 | 
						|
            )
 | 
						|
 | 
						|
    def _check_unsatisfied(self):
 | 
						|
        unsatisfied = []
 | 
						|
        for app in self.appnames:
 | 
						|
            if missing_dep := list(
 | 
						|
                filter(self._is_missing_dep, self.appmgr.get(app).requires)
 | 
						|
            ):
 | 
						|
                unsatisfied.append((app, missing_dep))
 | 
						|
 | 
						|
        if len(unsatisfied):
 | 
						|
            raise AppBuilderException(
 | 
						|
                f"Unsatisfied dependencies for {', '.join(f'{missing_dep[0]}: {missing_dep[1]}' for missing_dep in unsatisfied)}"
 | 
						|
            )
 | 
						|
 | 
						|
    def get_apps_cdefs(self):
 | 
						|
        cdefs = set()
 | 
						|
        for app in self.apps:
 | 
						|
            cdefs.update(app.cdefines)
 | 
						|
        return sorted(list(cdefs))
 | 
						|
 | 
						|
    def get_sdk_headers(self):
 | 
						|
        sdk_headers = []
 | 
						|
        for app in self.apps:
 | 
						|
            sdk_headers.extend([app._appdir.File(header) for header in app.sdk_headers])
 | 
						|
        return sdk_headers
 | 
						|
 | 
						|
    def get_apps_of_type(self, apptype: FlipperAppType, all_known: bool = False):
 | 
						|
        return sorted(
 | 
						|
            filter(
 | 
						|
                lambda app: app.apptype == apptype,
 | 
						|
                self.appmgr.known_apps.values() if all_known else self.apps,
 | 
						|
            ),
 | 
						|
            key=lambda app: app.order,
 | 
						|
        )
 | 
						|
 | 
						|
    def get_builtin_apps(self):
 | 
						|
        return list(
 | 
						|
            filter(lambda app: app.apptype in self.BUILTIN_APP_TYPES, self.apps)
 | 
						|
        )
 | 
						|
 | 
						|
    def get_builtin_app_folders(self):
 | 
						|
        return sorted(
 | 
						|
            set(
 | 
						|
                (app._appdir, source_type)
 | 
						|
                for app in self.get_builtin_apps()
 | 
						|
                for source_type in app.sources
 | 
						|
            )
 | 
						|
        )
 | 
						|
 | 
						|
 | 
						|
class ApplicationsCGenerator:
 | 
						|
    APP_TYPE_MAP = {
 | 
						|
        FlipperAppType.SERVICE: ("FlipperApplication", "FLIPPER_SERVICES"),
 | 
						|
        FlipperAppType.SYSTEM: ("FlipperApplication", "FLIPPER_SYSTEM_APPS"),
 | 
						|
        FlipperAppType.APP: ("FlipperApplication", "FLIPPER_APPS"),
 | 
						|
        FlipperAppType.PLUGIN: ("FlipperApplication", "FLIPPER_PLUGINS"),
 | 
						|
        FlipperAppType.DEBUG: ("FlipperApplication", "FLIPPER_DEBUG_APPS"),
 | 
						|
        FlipperAppType.SETTINGS: ("FlipperApplication", "FLIPPER_SETTINGS_APPS"),
 | 
						|
        FlipperAppType.STARTUP: ("FlipperOnStartHook", "FLIPPER_ON_SYSTEM_START"),
 | 
						|
    }
 | 
						|
 | 
						|
    def __init__(self, buildset: AppBuildset, autorun_app: str = ""):
 | 
						|
        self.buildset = buildset
 | 
						|
        self.autorun = autorun_app
 | 
						|
 | 
						|
    def get_app_ep_forward(self, app: FlipperApplication):
 | 
						|
        if app.apptype == FlipperAppType.STARTUP:
 | 
						|
            return f"extern void {app.entry_point}();"
 | 
						|
        return f"extern int32_t {app.entry_point}(void* p);"
 | 
						|
 | 
						|
    def get_app_descr(self, app: FlipperApplication):
 | 
						|
        if app.apptype == FlipperAppType.STARTUP:
 | 
						|
            return app.entry_point
 | 
						|
        return f"""
 | 
						|
    {{.app = {app.entry_point},
 | 
						|
     .name = "{app.name}",
 | 
						|
     .stack_size = {app.stack_size},
 | 
						|
     .icon = {f"&{app.icon}" if app.icon else "NULL"},
 | 
						|
     .flags = {'|'.join(f"FlipperApplicationFlag{flag}" for flag in app.flags)} }}"""
 | 
						|
 | 
						|
    def generate(self):
 | 
						|
        contents = [
 | 
						|
            '#include "applications.h"',
 | 
						|
            "#include <assets_icons.h>",
 | 
						|
            f'const char* FLIPPER_AUTORUN_APP_NAME = "{self.autorun}";',
 | 
						|
        ]
 | 
						|
        for apptype in self.APP_TYPE_MAP:
 | 
						|
            contents.extend(
 | 
						|
                map(self.get_app_ep_forward, self.buildset.get_apps_of_type(apptype))
 | 
						|
            )
 | 
						|
            entry_type, entry_block = self.APP_TYPE_MAP[apptype]
 | 
						|
            contents.append(f"const {entry_type} {entry_block}[] = {{")
 | 
						|
            contents.append(
 | 
						|
                ",\n".join(
 | 
						|
                    map(self.get_app_descr, self.buildset.get_apps_of_type(apptype))
 | 
						|
                )
 | 
						|
            )
 | 
						|
            contents.append("};")
 | 
						|
            contents.append(
 | 
						|
                f"const size_t {entry_block}_COUNT = COUNT_OF({entry_block});"
 | 
						|
            )
 | 
						|
 | 
						|
        archive_app = self.buildset.get_apps_of_type(FlipperAppType.ARCHIVE)
 | 
						|
        if archive_app:
 | 
						|
            contents.extend(
 | 
						|
                [
 | 
						|
                    self.get_app_ep_forward(archive_app[0]),
 | 
						|
                    f"const FlipperApplication FLIPPER_ARCHIVE = {self.get_app_descr(archive_app[0])};",
 | 
						|
                ]
 | 
						|
            )
 | 
						|
 | 
						|
        return "\n".join(contents)
 |