# flake8: noqa: F401,F403"""This module contains API functions related to asset generation.When asset scripts are accessing those API functions, the functions can access the project information by themselves."""# Don't remove unused imports. They may be unused here but maybe in user code!from__future__importannotationsimportosfrompathlibimportPathfromtypingimportTYPE_CHECKINGfrompharaoh.assetlib.catch_exceptionsimportcatch_exceptionsfrompharaoh.assetlib.contextimportmetadata_contextfrompharaoh.assetlib.generationimportregister_asset,register_templating_contextfrompharaoh.assetlib.matlab_engineimportMatlabfrompharaoh.assetlib.resourceimport*ifTYPE_CHECKING:frompharaoh.assetlib.finderimportAssetFinderdef__get_pharaoh_project():importinspectfrompathlibimportPathimportpharaohfrompharaoh.projectimportget_projectfrom.utilimportis_relative_totry:returnget_project()exceptRuntimeError:passpharaoh_src=Path(pharaoh.__file__).parents[1]# also works for site-packages# todo: maybe we have to consider additional paths# Find the first frame whose filename is not inside the pharaoh libraryforframeininspect.stack():fname=Path(frame.filename)ifis_relative_to(fname,pharaoh_src)or"/pharaoh_contrib/"infname.as_posix():continuereturnget_project(Path(frame.filename))returnNone
[docs]defget_resource(alias:str,component:str|None=None):""" Get a Resource instance by its component name and resource alias. """proj=__get_pharaoh_project()ifnotcomponent:component=get_current_component()returnproj.get_resource(alias,component)
[docs]deffind_components(expression:str=""):""" Find components by their metadata using an evaluated expression. The expression must be a valid Python expression and following local variables may be used: - name: The name of the component - templates: A list of templates used to render the component - metadata: A dict of metadata specified - render_context: The Jinja rendering context specified - resources: A list of resource definitions :param expression: A Python expression that will be evaluated. If it evaluates to a truthy result, the component name is included in the returned list. Example: ``name == "dummy" and metadata.foo in (1,2,3)``. A failing evaluation will be treated as False. An empty expression will always match. """proj=__get_pharaoh_project()returnproj.find_components(expression)
[docs]defget_current_component()->str:""" If executed from within a script that is placed inside a Pharaoh component, the function returns the components name by analyzing the call stack. """importinspectfrompharaoh.assetlibimportutil__get_pharaoh_project()# JPY_SESSION_NAME is normally set by Jupyter runtime. In our case we use the nbconvert preprocessor# so the variable is not set. Instead the ``pharaoh.assetlib.generation.generate_assets`` function sets# this variable.jpy_nb=os.getenv("JPY_SESSION_NAME")path_iter=Path(jpy_nb).parentsifjpy_nbelse(frame.filenameforframeininspect.stack())returnutil.get_component_name_via_path_iter(path_iter)
[docs]defget_asset_finder()->AssetFinder:""" Returns the :class:`AssetFinder <pharaoh.assetlib.finder.AssetFinder>` instance for the current project """proj=__get_pharaoh_project()returnproj.asset_finder