* Do not load all signals at once (Draft) * Minor cleanup * Refactor remote renaming * Improve function signatures * Rename infrared_remote functions * Optimise signal loading * Implement adding signals to remote * Add read_name() method * Deprecate a function * Partially implement deleting signals (draft) * Use m-array instead of m-list for signal name directory * Use plain C strings instead of furi_string * Implement deleting signals * Implement deleting signals via generalised callback * Implement renaming signals * Rename some types * Some more renaming * Remove unused type * Implement inserting signals (internal use) * Improve InfraredMoveView * Send an event to move a signal * Remove unused type * Implement moving signals * Implement creating new remotes with one signal * Un-deprecate and rename a function * Add InfraredRemote API docs * Add InfraredSignal API docs * Better error messages * Show progress pop-up when moving buttons in a remote * Copy labels to the InfraredMoveView to avoid pointer invalidation * Improve file selection scene * Show progress pop-up when renaming buttons in a remote * Refactor a scene * Show progress when deleting a button from remote * Use a random name for temp files * Add docs to infrared_brute_force.h * Rename Infrared type to InfraredApp * Add docs to infrared_app_i.h * Deliver event data via a callback * Bundle event data together with event type * Change DataExchange behaviour * Adapt RPC debug app to new API * Remove rogue output * Add Doxygen comments to rpc_app.h * Simplify rpc_app.c code * Remove superflous parameter * Do not allocate protobuf messages on the stack * Fix GetError response * Support for button indices * Comment out shallow submodules * Fix F18 api * Fix logical error and add more debug output * fbt: testing unshallow for protobuf * github: lint&checks: unshallow prior to checks * Fix a TODO * github: do not unshallow the unshallowed * fbt: assets: only attempt to unshallow if cannot describe * Do not use the name when loading a signal by index (duh) * Simplify loading infrared signals by name * Sync with protobuf release * Infrared: use compact furi_crash macros Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			229 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			229 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
import subprocess
 | 
						|
 | 
						|
from ansi.color import fg
 | 
						|
from SCons.Action import Action
 | 
						|
from SCons.Builder import Builder
 | 
						|
from SCons.Errors import StopError
 | 
						|
from SCons.Node.FS import File
 | 
						|
 | 
						|
 | 
						|
def _icons_emitter(target, source, env):
 | 
						|
    icons_src = env.GlobRecursive("*.png", env["ICON_SRC_DIR"])
 | 
						|
    icons_src += env.GlobRecursive("**/frame_rate", env["ICON_SRC_DIR"])
 | 
						|
 | 
						|
    target = [
 | 
						|
        target[0].File(env.subst("${ICON_FILE_NAME}.c")),
 | 
						|
        target[0].File(env.subst("${ICON_FILE_NAME}.h")),
 | 
						|
    ]
 | 
						|
    return target, icons_src
 | 
						|
 | 
						|
 | 
						|
def _proto_emitter(target, source, env):
 | 
						|
    target = []
 | 
						|
    for src in source:
 | 
						|
        basename = os.path.splitext(src.name)[0]
 | 
						|
        target.append(env.File(f"compiled/{basename}.pb.c"))
 | 
						|
        target.append(env.File(f"compiled/{basename}.pb.h"))
 | 
						|
    return target, source
 | 
						|
 | 
						|
 | 
						|
def _dolphin_emitter(target, source, env):
 | 
						|
    res_root_dir = source[0].Dir(env["DOLPHIN_RES_TYPE"])
 | 
						|
    source = list()
 | 
						|
    source.extend(env.GlobRecursive("*.*", res_root_dir.srcnode()))
 | 
						|
 | 
						|
    target_base_dir = target[0]
 | 
						|
    env.Replace(_DOLPHIN_OUT_DIR=target[0])
 | 
						|
    env.Replace(_DOLPHIN_SRC_DIR=res_root_dir)
 | 
						|
 | 
						|
    if env["DOLPHIN_RES_TYPE"] == "external":
 | 
						|
        target = [target_base_dir.File("manifest.txt")]
 | 
						|
        ## A detailed list of files to be generated
 | 
						|
        # Not used ATM, becasuse it inflates the internal dependency graph too much
 | 
						|
        # Preserve original paths, do .png -> .bm conversion
 | 
						|
        # target.extend(
 | 
						|
        #     map(
 | 
						|
        #         lambda node: target_base_dir.File(
 | 
						|
        #             res_root_dir.rel_path(node).replace(".png", ".bm")
 | 
						|
        #         ),
 | 
						|
        #         filter(lambda node: isinstance(node, File), source),
 | 
						|
        #     )
 | 
						|
        # )
 | 
						|
    else:
 | 
						|
        asset_basename = f"assets_dolphin_{env['DOLPHIN_RES_TYPE']}"
 | 
						|
        target = [
 | 
						|
            target_base_dir.File(asset_basename + ".c"),
 | 
						|
            target_base_dir.File(asset_basename + ".h"),
 | 
						|
        ]
 | 
						|
 | 
						|
    ## Debug output
 | 
						|
    # print(
 | 
						|
    #     f"Dolphin res type: {env['DOLPHIN_RES_TYPE']},\ntarget files:",
 | 
						|
    #     list(f.path for f in target),
 | 
						|
    #     f"\nsource files:",
 | 
						|
    #     list(f.path for f in source),
 | 
						|
    # )
 | 
						|
    return target, source
 | 
						|
 | 
						|
 | 
						|
def __invoke_git(args, source_dir):
 | 
						|
    cmd = ["git"]
 | 
						|
    cmd.extend(args)
 | 
						|
    return (
 | 
						|
        subprocess.check_output(cmd, cwd=source_dir, stderr=subprocess.STDOUT)
 | 
						|
        .strip()
 | 
						|
        .decode()
 | 
						|
    )
 | 
						|
 | 
						|
 | 
						|
def _proto_ver_generator(target, source, env):
 | 
						|
    target_file = target[0]
 | 
						|
    src_dir = source[0].dir.abspath
 | 
						|
 | 
						|
    def fetch(unshallow=False):
 | 
						|
        git_args = ["fetch", "--tags"]
 | 
						|
        if unshallow:
 | 
						|
            git_args.append("--unshallow")
 | 
						|
 | 
						|
        try:
 | 
						|
            __invoke_git(git_args, source_dir=src_dir)
 | 
						|
        except (subprocess.CalledProcessError, EnvironmentError):
 | 
						|
            # Not great, not terrible
 | 
						|
            print(fg.boldred("Git: fetch failed"))
 | 
						|
 | 
						|
    def describe():
 | 
						|
        try:
 | 
						|
            return __invoke_git(
 | 
						|
                ["describe", "--tags", "--abbrev=0"],
 | 
						|
                source_dir=src_dir,
 | 
						|
            )
 | 
						|
        except (subprocess.CalledProcessError, EnvironmentError):
 | 
						|
            return None
 | 
						|
 | 
						|
    fetch()
 | 
						|
    git_describe = describe()
 | 
						|
    if not git_describe:
 | 
						|
        fetch(unshallow=True)
 | 
						|
        git_describe = describe()
 | 
						|
 | 
						|
    if not git_describe:
 | 
						|
        raise StopError("Failed to process git tags for protobuf versioning")
 | 
						|
 | 
						|
    git_major, git_minor = git_describe.split(".")
 | 
						|
    version_file_data = (
 | 
						|
        "#pragma once",
 | 
						|
        f"#define PROTOBUF_MAJOR_VERSION {git_major}",
 | 
						|
        f"#define PROTOBUF_MINOR_VERSION {git_minor}",
 | 
						|
        "",
 | 
						|
    )
 | 
						|
    with open(str(target_file), "wt") as file:
 | 
						|
        file.write("\n".join(version_file_data))
 | 
						|
 | 
						|
 | 
						|
def CompileIcons(env, target_dir, source_dir, *, icon_bundle_name="assets_icons"):
 | 
						|
    return env.IconBuilder(
 | 
						|
        target_dir,
 | 
						|
        None,
 | 
						|
        ICON_SRC_DIR=source_dir,
 | 
						|
        ICON_FILE_NAME=icon_bundle_name,
 | 
						|
    )
 | 
						|
 | 
						|
 | 
						|
def generate(env):
 | 
						|
    env.SetDefault(
 | 
						|
        ASSETS_COMPILER="${FBT_SCRIPT_DIR}/assets.py",
 | 
						|
        NANOPB_COMPILER="${ROOT_DIR}/lib/nanopb/generator/nanopb_generator.py",
 | 
						|
    )
 | 
						|
    env.AddMethod(CompileIcons)
 | 
						|
 | 
						|
    if not env["VERBOSE"]:
 | 
						|
        env.SetDefault(
 | 
						|
            ICONSCOMSTR="\tICONS\t${TARGET}",
 | 
						|
            PROTOCOMSTR="\tPROTO\t${SOURCE}",
 | 
						|
            DOLPHINCOMSTR="\tDOLPHIN\t${DOLPHIN_RES_TYPE}",
 | 
						|
            PBVERCOMSTR="\tPBVER\t${TARGET}",
 | 
						|
        )
 | 
						|
 | 
						|
    env.Append(
 | 
						|
        BUILDERS={
 | 
						|
            "IconBuilder": Builder(
 | 
						|
                action=Action(
 | 
						|
                    [
 | 
						|
                        [
 | 
						|
                            "${PYTHON3}",
 | 
						|
                            "${ASSETS_COMPILER}",
 | 
						|
                            "icons",
 | 
						|
                            "${ICON_SRC_DIR}",
 | 
						|
                            "${TARGET.dir}",
 | 
						|
                            "--filename",
 | 
						|
                            "${ICON_FILE_NAME}",
 | 
						|
                        ],
 | 
						|
                    ],
 | 
						|
                    "${ICONSCOMSTR}",
 | 
						|
                ),
 | 
						|
                emitter=_icons_emitter,
 | 
						|
            ),
 | 
						|
            "ProtoBuilder": Builder(
 | 
						|
                action=Action(
 | 
						|
                    [
 | 
						|
                        [
 | 
						|
                            "${PYTHON3}",
 | 
						|
                            "${NANOPB_COMPILER}",
 | 
						|
                            "-q",
 | 
						|
                            "-I${SOURCE.dir.posix}",
 | 
						|
                            "-D${TARGET.dir.posix}",
 | 
						|
                            "${SOURCES.posix}",
 | 
						|
                        ],
 | 
						|
                    ],
 | 
						|
                    "${PROTOCOMSTR}",
 | 
						|
                ),
 | 
						|
                emitter=_proto_emitter,
 | 
						|
                suffix=".pb.c",
 | 
						|
                src_suffix=".proto",
 | 
						|
            ),
 | 
						|
            "DolphinSymBuilder": Builder(
 | 
						|
                action=Action(
 | 
						|
                    [
 | 
						|
                        [
 | 
						|
                            "${PYTHON3}",
 | 
						|
                            "${ASSETS_COMPILER}",
 | 
						|
                            "dolphin",
 | 
						|
                            "-s",
 | 
						|
                            "dolphin_${DOLPHIN_RES_TYPE}",
 | 
						|
                            "${_DOLPHIN_SRC_DIR}",
 | 
						|
                            "${_DOLPHIN_OUT_DIR}",
 | 
						|
                        ],
 | 
						|
                    ],
 | 
						|
                    "${DOLPHINCOMSTR}",
 | 
						|
                ),
 | 
						|
                emitter=_dolphin_emitter,
 | 
						|
            ),
 | 
						|
            "DolphinExtBuilder": Builder(
 | 
						|
                action=Action(
 | 
						|
                    [
 | 
						|
                        [
 | 
						|
                            "${PYTHON3}",
 | 
						|
                            "${ASSETS_COMPILER}",
 | 
						|
                            "dolphin",
 | 
						|
                            "${_DOLPHIN_SRC_DIR}",
 | 
						|
                            "${_DOLPHIN_OUT_DIR}",
 | 
						|
                        ],
 | 
						|
                    ],
 | 
						|
                    "${DOLPHINCOMSTR}",
 | 
						|
                ),
 | 
						|
                emitter=_dolphin_emitter,
 | 
						|
            ),
 | 
						|
            "ProtoVerBuilder": Builder(
 | 
						|
                action=Action(
 | 
						|
                    _proto_ver_generator,
 | 
						|
                    "${PBVERCOMSTR}",
 | 
						|
                ),
 | 
						|
            ),
 | 
						|
        }
 | 
						|
    )
 | 
						|
 | 
						|
 | 
						|
def exists(env):
 | 
						|
    return True
 |