capella2polarion.data_model package¶
A module for custom data models of cappela2polarion.
Submodules¶
capella2polarion.data_model.converter_config module¶
Module providing pydantic classes for the converter config.
- class capella2polarion.data_model.converter_config.AddAttributesParams(*, attributes: list[dict[str, str]] = [])¶
Bases:
BaseModel
Parameters for ‘add_attributes’ serializer.
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.AddJinjaFieldsParams(*, fields: dict[str, Any] = {})¶
Bases:
BaseModel
Parameters for ‘add_jinja_fields’, expects a dict of fields.
- classmethod ensure_input_is_fields_dict(values: dict[str, Any]) dict[str, Any] ¶
Ensure the input dict has the ‘fields’ key.
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.BaseModel¶
Bases:
BaseModel
Custom base model for common configuration.
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.CapellaTypeConfigInput(*, polarion_type: str | None = None, links: list[str | LinkConfigInput] = [], serializer: None | str | list[str] | dict[str, Any] = None, is_actor: bool | None = None, nature: str | None = None)¶
Bases:
BaseModel
Represents a single entry for a Capella type config from YAML.
- links: list[str | LinkConfigInput]¶
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- classmethod normalize_link_input(v: Any) list[dict[str, Any]] | Any ¶
Allow link input list items as string or dict.
- class capella2polarion.data_model.converter_config.CapellaTypeConfigProcessed(*, p_type: str, converters: dict[str, BaseModel] = {}, links: list[LinkConfigProcessed] = [], is_actor_specifier: bool | None = None, nature_specifier: str | None = None)¶
Bases:
BaseModel
Represents a fully validated and processed type configuration.
- links: list[LinkConfigProcessed]¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.DiagramFilter(*, func: Callable, args: dict[str, Any] = {})¶
Bases:
BaseModel
Represents a single filter function reference.
- func: t.Callable¶
- model_config: ClassVar[ConfigDict] = {'arbitrary_types_allowed': True, 'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.DiagramParams(*, filters: list[DiagramFilter] = [], render_params: dict[str, Any] = {})¶
Bases:
BaseModel
Parameters for diagram serializers like ‘add_context_diagram’.
- filters: list[DiagramFilter]¶
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.FullConfigInput(root: RootModelRootType = PydanticUndefined)¶
Bases:
RootModel[dict[str, dict[str, list[CapellaTypeConfigInput]]]]
Parses the entire YAML structure, ensuring types map to lists.
- classmethod ensure_type_configs_are_lists(values: Any) Any ¶
Ensure that each Capella type maps to a list of configs.
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.JinjaAsDescriptionParams(*, template_folder: Annotated[Path, PathType(path_type=dir)], template_path: str, resolved_template_path: Path | None = None)¶
Bases:
BaseModel
Parameters for ‘jinja_as_description’ serializer.
- check_full_template_path() JinjaAsDescriptionParams ¶
Check existence of resolved template path.
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- resolved_template_path: pathlib.Path | None¶
- template_folder: DirectoryPath¶
- class capella2polarion.data_model.converter_config.LinkConfigInput(*, capella_attr: str, polarion_role: str | None = None, include: ~capella2polarion.data_model.converter_config.LinkIncludeConfig = <factory>, link_field: str | None = None, reverse_field: str | None = None)¶
Bases:
BaseModel
Raw input structure for a link config (dict format from YAML).
- include: LinkIncludeConfig¶
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.LinkConfigProcessed(*, capella_attr: str, polarion_role: str | None = None, include: ~capella2polarion.data_model.converter_config.LinkIncludeConfig = <factory>, link_field: str | None = None, reverse_field: str | None = None)¶
Bases:
LinkConfigInput
Processed Link Config.
Defaults are applied and prefixes potentially added.
- capella_attr¶
The attribute name on the capellambse model object.
- polarion_role¶
The identifier used in Polarion for the link role (guaranteed).
- include¶
Dictionary mapping display names to included attributes from linked objects.
- link_field¶
The Polarion field name for the forward link (guaranteed).
- reverse_field¶
The Polarion field name for the reverse link (guaranteed).
- classmethod apply_link_defaults(values: dict[str, Any]) dict[str, Any] ¶
Derive role, link_field, reverse_field if not provided.
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.LinkIncludeConfig(root: RootModelRootType = PydanticUndefined)¶
Bases:
RootModel[dict[str, str]]
Represents the ‘include’ dictionary: {DisplayName: capella_attr}.
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class capella2polarion.data_model.converter_config.SimpleParams(**extra_data: Any)¶
Bases:
BaseModel
Parameters for simple serializers (accepts any dict or empty).
- model_config: ClassVar[ConfigDict] = {'extra': 'allow'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
capella2polarion.data_model.document_data module¶
Module providing data classes for documents.
- class capella2polarion.data_model.document_data.DocumentData(document: Document, headings: list[WorkItem], text_work_item_provider: TextWorkItemProvider)¶
Bases:
object
A class to store data related to a rendered document.
- document: Document¶
- text_work_item_provider: TextWorkItemProvider¶
capella2polarion.data_model.work_item_attachments module¶
Module providing the CapellaWorkItemAttachment classes.
- class capella2polarion.data_model.work_item_attachments.Capella2PolarionAttachment(work_item_id: str, id: str, title: str | None = None, content_bytes: bytes | None = None, mime_type: str | None = None, file_name: str | None = None, _checksum: str | None = None)¶
Bases:
WorkItemAttachment
Stub Base-Class for Capella2Polarion attachments.
- class capella2polarion.data_model.work_item_attachments.CapellaContextDiagramAttachment(diagram: ContextDiagram, file_name: str, render_params: dict[str, Any] | None, title: str)¶
Bases:
CapellaDiagramAttachment
A dedicated attachment type for Capella context diagrams.
Implements a checksum property using the elk input instead of content. This will speed up the checksum calculation a lot.
- class capella2polarion.data_model.work_item_attachments.CapellaDiagramAttachment(diagram: AbstractDiagram, file_name: str, render_params: dict[str, Any] | None, title: str)¶
Bases:
Capella2PolarionAttachment
A class for lazy loading content_bytes for diagram attachments.
- class capella2polarion.data_model.work_item_attachments.PngConvertedSvgAttachment(attachment: WorkItemAttachment)¶
Bases:
Capella2PolarionAttachment
A special attachment type for PNGs which shall be created from SVGs.
An SVG attachment must be provided to create this attachment. The actual conversion of SVG to PNG takes place when content bytes are requested. For that reason creating this attachment does not trigger diagram rendering as long as context_bytes aren’t requested.
capella2polarion.data_model.work_items module¶
Module providing the CapellaWorkItem class.
- class capella2polarion.data_model.work_items.CapellaWorkItem(id: str | None = None, *, title: str | None = None, description_type: str | None = None, description: TextContent | str | None = None, type: str | None = None, status: str | None = None, additional_attributes: dict[str, Any] | None = None, linked_work_items: list[WorkItemLink] | None = None, attachments: list[WorkItemAttachment] | None = None, linked_work_items_truncated: bool = False, attachments_truncated: bool = False, home_document: DocumentReference | None = None, **kwargs)¶
Bases:
WorkItem
A WorkItem class with additional Capella related attributes.
- calculate_checksum() str ¶
Calculate and return a checksum for this WorkItem.
In addition, the checksum will be written to self._checksum. Filenames must be unique and same filenames are only valid for png&svg pairs.
- clear_attributes()¶
Clear all additional attributes except the checksum.