craft_parts.parts module

Definitions and helpers to handle parts.

class craft_parts.parts.Part(name, data, *, project_dirs=None, plugin_properties=None, partitions=None)[source]

Bases: object

Each of the components used in the project specification.

During the craft-parts lifecycle each part is processed through different steps in order to obtain its final artifacts. The Part class holds the part specification data and additional configuration information used during step processing.

Parameters:
  • name (str) – The part name.

  • data (Dict[str, Any]) – A dictionary containing the part properties.

  • partitions (Optional[Sequence[str]]) – A Sequence of partition names if partitions are enabled, or None

  • project_dirs (Optional[ProjectDirs]) – The project work directories.

  • plugin_properties (Optional[PluginProperties]) – An optional PluginProperties object for this plugin.

Raises:

PartSpecificationError – If part validation fails.

property dependencies: List[str]

Return the list of parts this part depends on.

property has_overlay: bool

Return whether this part declares overlay content.

property overlay_dir: Path

Return the overlay directory.

property part_build_dir: Path

Return the subdirectory containing the part build tree.

property part_build_subdir: Path

Return the subdirectory in build containing the source subtree (if any).

Parts that have a source subdirectory and do not support out-of-source builds will have a build subdirectory.

property part_cache_dir: Path

Return the subdirectory containing the part cache directory.

property part_install_dir: Path

Return the subdirectory to install the part build artifacts.

property part_install_dirs: Mapping[str | None, Path]

Return a mapping of partition names to install directories.

With partitions disabled, the only partition name is None

property part_layer_dir: Path

Return the subdirectory containing the part overlay files.

property part_packages_dir: Path

Return the subdirectory containing the part stage packages directory.

property part_run_dir: Path

Return the subdirectory containing the part plugin scripts.

property part_snaps_dir: Path

Return the subdirectory containing the part snap packages directory.

property part_src_dir: Path

Return the subdirectory containing the part source code.

property part_src_subdir: Path

Return the subdirectory in source containing the source subtree (if any).

property part_state_dir: Path

Return the subdirectory containing the part lifecycle state.

property parts_dir: Path

Return the directory containing work files for each part.

property prime_dir: Path

Return the primed tree containing the artifacts to deploy.

If partitions are enabled, this is the prime directory for the default partition

property prime_dirs: Mapping[str | None, Path]

A mapping of partition name to partition prime directory.

If partitions are disabled, the only key is None.

property stage_dir: Path

Return the staging area containing the installed files from all parts.

If partitions are enabled, this is the stage directory for the default partition

property stage_dirs: Mapping[str | None, Path]

A mapping of partition name to partition staging directory.

If partitions are disabled, the only key is None.

class craft_parts.parts.PartSpec(**data)[source]

Bases: BaseModel

The part specification data.

Parameters:

data (Any) –

class Config[source]

Bases: object

Pydantic model configuration.

alias_generator()
allow_mutation = False
extra = 'forbid'
validate_assignment = True
after: List[str]
build_attributes: List[str]
build_environment: List[Dict[str, str]]
build_packages: List[str]
build_snaps: List[str]
disable_parallel: bool
get_scriptlet(step)[source]

Return the scriptlet contents, if any, for the given step.

Parameters:

step (Step) – the step corresponding to the scriptlet to be retrieved.

Return type:

Optional[str]

Returns:

The scriptlet for the given step, if any.

property has_overlay: bool

Return whether this spec declares overlay content.

marshal()[source]

Create a dictionary containing the part specification data.

Return type:

Dict[str, Any]

Returns:

The newly created dictionary.

organize_files: Dict[str, str]
overlay_files: List[str]
overlay_packages: List[str]
overlay_script: Optional[str]
override_build: Optional[str]
override_prime: Optional[str]
override_pull: Optional[str]
override_stage: Optional[str]
permissions: List[Permissions]
plugin: Optional[str]
prime_files: List[str]
source: Optional[str]
source_branch: str
source_checksum: str
source_commit: str
source_depth: int
source_subdir: str
source_submodules: Optional[List[str]]
source_tag: str
source_type: str
stage_files: List[str]
stage_packages: List[str]
stage_snaps: List[str]
classmethod unmarshal(data)[source]

Create and populate a new PartSpec object from dictionary data.

The unmarshal method validates entries in the input dictionary, populating the corresponding fields in the data object.

Parameters:

data (Dict[str, Any]) – The dictionary data to unmarshal.

Return type:

PartSpec

Returns:

The newly created object.

Raises:

TypeError – If data is not a dictionary.

classmethod validate_overlay_feature(item)[source]

Check if overlay attributes specified when feature is disabled.

Parameters:

item (Any) –

Return type:

Any

classmethod validate_relative_path_list(item)[source]

Verify list is not empty and does not contain any absolute paths.

Parameters:

item (str) –

Return type:

str

classmethod validate_root(values)[source]

Check if the part spec has a valid configuration of packages and slices.

Parameters:

values (Dict[str, Any]) –

Return type:

Dict[str, Any]

craft_parts.parts.get_parts_with_overlay(*, part_list)[source]

Obtain a list of parts that declare overlay parameters.

Parameters:

part_list (List[Part]) – A list of all parts in the project.

Return type:

List[Part]

Returns:

A list of parts with overlay parameters.

craft_parts.parts.has_overlay_visibility(part, *, part_list, viewers=None)[source]

Check if a part can see the overlay filesystem.

A part that declares overlay parameters and all parts depending on it are granted permission to see overlay filesystem.

Parameters:
  • part (Part) – The part whose overlay visibility will be checked.

  • viewers (Optional[Set[Part]]) – Parts that are known to have overlay visibility.

  • part_list (List[Part]) – A list of all parts in the project.

Return type:

bool

Returns:

Whether the part has overlay visibility.

craft_parts.parts.part_by_name(name, part_list)[source]

Obtain the part with the given name from the part list.

Parameters:
  • name (str) – The name of the part to return.

  • part_list (List[Part]) – The list of all known parts.

Return type:

Part

Returns:

The part with the given name.

craft_parts.parts.part_dependencies(part, *, part_list, recursive=False)[source]

Return a set of all the parts upon which the named part depends.

Parameters:
  • part (Part) – The dependent part.

  • part_list (List[Part]) –

  • recursive (bool) –

Return type:

Set[Part]

Returns:

The set of parts the given part depends on.

craft_parts.parts.part_has_overlay(data)[source]

Whether the part described by data employs the Overlay step.

Parameters:

data (Dict[str, Any]) – The part data to query for overlay use.

Return type:

bool

craft_parts.parts.part_list_by_name(names, part_list)[source]

Return a list of parts from part_list that are named in names.

Parameters:
  • names (Optional[Sequence[str]]) – The list of part names. If the list is empty or not defined, return all parts from part_list.

  • part_list (List[Part]) – The list of all known parts.

Return type:

List[Part]

Returns:

The list of parts corresponding to the given names.

Raises:

InvalidPartName – if a part name is not defined.

craft_parts.parts.sort_parts(part_list)[source]

Perform an inefficient but easy to follow sorting of parts.

Parameters:

part_list (List[Part]) – The list of parts to sort.

Return type:

List[Part]

Returns:

The sorted list of parts.

Raises:

PartDependencyCycle – if there are circular dependencies.

craft_parts.parts.validate_part(data)[source]

Validate the given part data against common and plugin models.

Parameters:

data (Dict[str, Any]) – The part data to validate.

Return type:

None