Source code for craft_parts.state_manager.prime_state
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-## Copyright 2016-2023 Canonical Ltd.## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU Lesser General Public# License version 3 as published by the Free Software Foundation.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU# Lesser General Public License for more details.## You should have received a copy of the GNU Lesser General Public License# along with this program. If not, see <http://www.gnu.org/licenses/>."""State definitions for the prime state."""fromtypingimportAnyfromoverridesimportoverridefrom.step_stateimportStepState
[docs]classPrimeState(StepState):"""Context information for the prime step."""dependency_paths:set[str]=set()primed_stage_packages:set[str]=set()
[docs]@classmethod@overridedefunmarshal(cls,data:dict[str,Any])->"PrimeState":"""Create and populate a new ``PrimeState`` object from dictionary data. The unmarshal method validates entries in the input dictionary, populating the corresponding fields in the state object. :param data: The dictionary data to unmarshal. :return: The newly created object. :raise TypeError: If data is not a dictionary. """ifnotisinstance(data,dict):raiseTypeError("state data is not a dictionary")returncls(**data)
[docs]@overridedefproperties_of_interest(self,part_properties:dict[str,Any],*,extra_properties:list[str]|None=None,)->dict[str,Any]:"""Return relevant properties concerning this step. :param part_properties: A dictionary containing all part properties. :param extra_properties: Additional relevant properties to be returned. :return: A dictionary containing properties of interest. """relevant_properties=["override-prime","prime",*(extra_propertiesor[]),]return{name:part_properties.get(name)fornameinrelevant_properties}
[docs]@overridedefproject_options_of_interest(self,project_options:dict[str,Any])->dict[str,Any]:"""Return relevant project options concerning this step. :param project_options: A dictionary containing all project options. :return: A dictionary containing project options of interest. """return{"project_vars_part_name":project_options.get("project_vars_part_name"),}