Skip to content

Core

c4.diagrams.core.BaseDiagramElement

Base class for any object that belongs to a diagram.

Provides access to the current diagram context and allows attaching structured properties (e.g. key-value tables).

Source code in c4/diagrams/core.py
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
class BaseDiagramElement:
    """
    Base class for any object that belongs to a diagram.

    Provides access to the current diagram context and allows
    attaching structured properties (e.g. key-value tables).
    """

    allowed_diagram_types: tuple[DiagramType, ...] | None = None

    _diagram: Diagram

    def __init__(self, **kwargs: Any) -> None:
        """
        Initializes the element and adds it to the current diagram context.
        """
        self._diagram = current_diagram()
        self._contribute_to_diagram()
        self.properties = DiagramElementProperties()

    def _check_diagram_type(self) -> None:
        if not self.allowed_diagram_types:
            return None

        if self._diagram.type not in self.allowed_diagram_types:
            element_name = self.__class__.__name__
            diagram_type = self._diagram.type.value
            allowed = ", ".join([dt.value for dt in self.allowed_diagram_types])

            raise ValueError(
                f"{element_name} is not allowed in {diagram_type}. "
                f"Allowed diagram types: {allowed}."
            )

        return None

    def _contribute_to_diagram(self) -> None:
        self._check_diagram_type()
        self._diagram.add_base_element(self)

    def set_property_header(self, *args: str) -> Self:
        """
        Sets the column headers for the element's property table.

        This must be called either before adding any property rows, or
        the header length must match the number of values.

        Args:
            *args: Column names to use as the property header.

        Returns:
            The updated diagram element.

        Raises:
            ValueError: If header length does not match the number of values.
        """
        if not args:
            raise ValueError("The header cannot be empty")

        if self.properties.properties:
            expected_header_length = self.properties.properties[0]

            if len(args) != len(expected_header_length):
                raise ValueError(
                    "The header length does not match the number of values"
                )

        self.properties.header = list(args)

        return self

    def without_property_header(self) -> Self:
        """
        Disables the rendering of the header row in the property table.

        Returns:
            The updated diagram element.
        """
        self.properties.show_header = False

        return self

    def add_property(self, *args: str) -> Self:
        """
        Adds a row to the property table.

        The number of arguments must match the number of header columns.

        Args:
            *args: Values for each column in the property row.

        Returns:
            The updated diagram element.

        Raises:
            ValueError: If the number of values does not match the
                header length.
        """
        if len(args) != len(self.properties.header):
            raise ValueError(
                "The number of values does not match the header length"
            )

        self.properties.properties.append(list(args))

        return self

    @property
    def diagram(self) -> Diagram:
        """Returns the current diagram context."""
        return self._diagram

set_property_header

set_property_header(*args: str) -> Self

Sets the column headers for the element's property table.

This must be called either before adding any property rows, or the header length must match the number of values.

Parameters:

Name Type Description Default
*args str

Column names to use as the property header.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If header length does not match the number of values.

Source code in c4/diagrams/core.py
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
def set_property_header(self, *args: str) -> Self:
    """
    Sets the column headers for the element's property table.

    This must be called either before adding any property rows, or
    the header length must match the number of values.

    Args:
        *args: Column names to use as the property header.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If header length does not match the number of values.
    """
    if not args:
        raise ValueError("The header cannot be empty")

    if self.properties.properties:
        expected_header_length = self.properties.properties[0]

        if len(args) != len(expected_header_length):
            raise ValueError(
                "The header length does not match the number of values"
            )

    self.properties.header = list(args)

    return self

without_property_header

without_property_header() -> Self

Disables the rendering of the header row in the property table.

Returns:

Type Description
Self

The updated diagram element.

Source code in c4/diagrams/core.py
453
454
455
456
457
458
459
460
461
462
def without_property_header(self) -> Self:
    """
    Disables the rendering of the header row in the property table.

    Returns:
        The updated diagram element.
    """
    self.properties.show_header = False

    return self

add_property

add_property(*args: str) -> Self

Adds a row to the property table.

The number of arguments must match the number of header columns.

Parameters:

Name Type Description Default
*args str

Values for each column in the property row.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If the number of values does not match the header length.

Source code in c4/diagrams/core.py
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
def add_property(self, *args: str) -> Self:
    """
    Adds a row to the property table.

    The number of arguments must match the number of header columns.

    Args:
        *args: Values for each column in the property row.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If the number of values does not match the
            header length.
    """
    if len(args) != len(self.properties.header):
        raise ValueError(
            "The number of values does not match the header length"
        )

    self.properties.properties.append(list(args))

    return self

c4.diagrams.core.Element

Bases: BaseDiagramElement, ABC

Base class for all C4 elements (e.g. Person, System, Container, Component).

Elements are automatically registered in the current diagram context.

Source code in c4/diagrams/core.py
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
class Element(BaseDiagramElement, abc.ABC):
    """
    Base class for all C4 elements (e.g. Person, System, Container, Component).

    Elements are automatically registered in the current diagram context.
    """

    allowed_diagram_types: tuple[DiagramType, ...] | None = None

    _diagram: Diagram

    alias: str
    label: str
    tags: list[str] | None
    base_shape: str | None
    technology: str | None

    def __init__(
        self,
        label: Required[str] = REQUIRED,
        description: str | None = None,
        sprite: str | None = None,
        tags: list[str] | None = None,
        link: str | None = None,
        type_: str | None = None,
        alias: Maybe[str] = MISSING,
    ) -> None:
        """
        Initialize a new diagram element. Automatically adds the element to the
        current diagram.

        Args:
            label: Display name for the element. Required.
            description: Optional description text.
            sprite: Optional sprite/icon reference for rendering.
            tags: Optional tags for styling or grouping.
            link: Optional URL associated with the element.
            type_: Optional custom type or stereotype label.
            alias: Unique identifier for the element. If not provided, it is
                autogenerated from the label.

        Raises:
            ValueError: If `label` is not provided.
        """
        self.label = self._check_label(label)
        self.alias = self._check_alias(alias, self.label)
        self.sprite = sprite
        self.type = type_
        self.tags = tags
        self.link = link

        self.description = description
        self.base_shape = None
        self.technology = None

        super().__init__()

    @overload
    def __rshift__(self, other: str) -> Relationship: ...

    @overload
    def __rshift__(self, other: Element) -> _EdgeDraft: ...

    def __rshift__(self, other: str | Element) -> Relationship | _EdgeDraft:
        """
        Enables:
          - Self >> "label" >> Element2   (pending relationship)
          - Self >> Element2 | "label"    (draft for later '| "label"')
        """
        if isinstance(other, str):
            # self >> "label" >> element2
            return Relationship(label=other, from_element=self)

        if isinstance(other, Element):
            # Draft for: self >> element2 | "label"
            return _EdgeDraft(source=self, destination=other)

        return NotImplemented

    @overload
    def __lshift__(self, other: str) -> Relationship: ...

    @overload
    def __lshift__(self, other: Element) -> _EdgeDraft: ...

    def __lshift__(self, other: str | Element) -> Relationship | _EdgeDraft:
        """
        Enables:
          - Element2 << "label" << Self   (pending relationship)
          - Element2 << self | "label"      (draft for later '| "label"')
        """
        if isinstance(other, str):
            # element1 << "label" << element2
            return Relationship(label=other, to_element=self)

        if isinstance(other, Element):
            # Draft for: element1 >> element2 | "label"
            return _EdgeDraft(source=other, destination=self)

        return NotImplemented

    def __rrshift__(self, other: list[Relationship]) -> list[Relationship]:
        """
        Enables: [Relationship(...), ...] >> Element.
        """
        if isinstance(other, list) and all(
            isinstance(r, Relationship) for r in other
        ):
            return [r._connect(r.from_element, destination=self) for r in other]

        return NotImplemented  # pragma: no cover

    def __rlshift__(self, other: list[Relationship]) -> list[Relationship]:
        """
        Enables: Element << [Relationship(...), ...].
        """
        if isinstance(other, list) and all(
            isinstance(r, Relationship) for r in other
        ):
            return [
                r._connect(source=self, destination=r.to_element) for r in other
            ]

        return NotImplemented  # pragma: no cover

    def _check_label(self, label: str | Required) -> str:
        if label is REQUIRED:
            raise ValueError("The 'label' argument is required")

        return cast(str, label)

    def _check_alias(self, alias: Maybe[str], label: str) -> str:
        if alias is MISSING:
            alias = self._generate_alias(label)

        return cast(str, alias)

    @override
    def _contribute_to_diagram(self) -> None:
        self._check_diagram_type()
        self._diagram.add(self)

    def uses(
        self,
        other: _TElement,
        label: str,
        relationship_type: RelationshipType = RelationshipType.REL,
        **kwargs: Any,
    ) -> Relationship:
        """
        Declare that this element uses another.

        Args:
            other: The element being used.
            label: Description of the interaction.
            relationship_type: Type of arrow to use.
            kwargs: Optional relationship kwargs.

        Returns:
            The created relationship.
        """
        relationship_class = Relationship.get_relationship_by_type(
            relationship_type
        )
        return relationship_class(
            from_element=self,  # type: ignore[arg-type]
            to_element=other,  # type: ignore[arg-type]
            label=label,
            **kwargs,
        )

    def used_by(
        self,
        other: _TElement,
        label: str,
        relationship_type: RelationshipType = RelationshipType.REL,
        **kwargs: Any,
    ) -> Relationship:
        """
        Declare that another element uses this element.

        Args:
            other: The element that uses this element.
            label: Description of the interaction.
            relationship_type: Type of arrow to use.
            kwargs: Optional relationship kwargs.

        Returns:
            The created relationship.
        """
        relationship_class = Relationship.get_relationship_by_type(
            relationship_type
        )
        return relationship_class(
            from_element=other,  # type: ignore[arg-type]
            to_element=self,  # type: ignore[arg-type]
            label=label,
            **kwargs,
        )

    def _generate_alias(self, label: str) -> str:
        return current_diagram().generate_alias(label=label)

    @override
    def __str__(self) -> str:
        """Returns the string representation of the element."""
        cls_name = self.__class__.__name__
        return f"{cls_name}(alias={self.alias!r}, label={self.label!r})"

    def __repr__(self) -> str:
        cls_name = self.__class__.__name__
        attrs = [
            f"{self.label!r}",
        ]

        if self.description:
            attrs.append(f"{self.description!r}")

        if self.sprite:
            attrs.append(f"sprite={self.sprite!r}")

        if self.type:
            attrs.append(f"type_={self.type!r}")

        if self.tags:
            attrs.append(f"tags={self.tags!r}")

        if self.link:
            attrs.append(f"link={self.link!r}")

        if self.technology:
            attrs.append(f"technology={self.technology!r}")

        if self.base_shape:
            attrs.append(f"base_shape={self.base_shape!r}")

        attrs.append(f"alias={self.alias!r}")

        args = ", ".join(attrs)
        return f"{cls_name}({args})"

__init__

__init__(
    label: Required[str] = REQUIRED,
    description: str | None = None,
    sprite: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    type_: str | None = None,
    alias: Maybe[str] = MISSING,
) -> None

Parameters:

Name Type Description Default
label Required[str]

Display name for the element. Required.

REQUIRED
description str | None

Optional description text.

None
sprite str | None

Optional sprite/icon reference for rendering.

None
tags list[str] | None

Optional tags for styling or grouping.

None
link str | None

Optional URL associated with the element.

None
type_ str | None

Optional custom type or stereotype label.

None
alias Maybe[str]

Unique identifier for the element. If not provided, it is autogenerated from the label.

MISSING

Raises:

Type Description
ValueError

If label is not provided.

Source code in c4/diagrams/core.py
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
def __init__(
    self,
    label: Required[str] = REQUIRED,
    description: str | None = None,
    sprite: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    type_: str | None = None,
    alias: Maybe[str] = MISSING,
) -> None:
    """
    Initialize a new diagram element. Automatically adds the element to the
    current diagram.

    Args:
        label: Display name for the element. Required.
        description: Optional description text.
        sprite: Optional sprite/icon reference for rendering.
        tags: Optional tags for styling or grouping.
        link: Optional URL associated with the element.
        type_: Optional custom type or stereotype label.
        alias: Unique identifier for the element. If not provided, it is
            autogenerated from the label.

    Raises:
        ValueError: If `label` is not provided.
    """
    self.label = self._check_label(label)
    self.alias = self._check_alias(alias, self.label)
    self.sprite = sprite
    self.type = type_
    self.tags = tags
    self.link = link

    self.description = description
    self.base_shape = None
    self.technology = None

    super().__init__()

uses

uses(
    other: _TElement,
    label: str,
    relationship_type: RelationshipType = REL,
    **kwargs: Any,
) -> Relationship

Declare that this element uses another.

Parameters:

Name Type Description Default
other _TElement

The element being used.

required
label str

Description of the interaction.

required
relationship_type RelationshipType

Type of arrow to use.

REL
kwargs Any

Optional relationship kwargs.

{}

Returns:

Type Description
Relationship

The created relationship.

Source code in c4/diagrams/core.py
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
def uses(
    self,
    other: _TElement,
    label: str,
    relationship_type: RelationshipType = RelationshipType.REL,
    **kwargs: Any,
) -> Relationship:
    """
    Declare that this element uses another.

    Args:
        other: The element being used.
        label: Description of the interaction.
        relationship_type: Type of arrow to use.
        kwargs: Optional relationship kwargs.

    Returns:
        The created relationship.
    """
    relationship_class = Relationship.get_relationship_by_type(
        relationship_type
    )
    return relationship_class(
        from_element=self,  # type: ignore[arg-type]
        to_element=other,  # type: ignore[arg-type]
        label=label,
        **kwargs,
    )

used_by

used_by(
    other: _TElement,
    label: str,
    relationship_type: RelationshipType = REL,
    **kwargs: Any,
) -> Relationship

Declare that another element uses this element.

Parameters:

Name Type Description Default
other _TElement

The element that uses this element.

required
label str

Description of the interaction.

required
relationship_type RelationshipType

Type of arrow to use.

REL
kwargs Any

Optional relationship kwargs.

{}

Returns:

Type Description
Relationship

The created relationship.

Source code in c4/diagrams/core.py
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
def used_by(
    self,
    other: _TElement,
    label: str,
    relationship_type: RelationshipType = RelationshipType.REL,
    **kwargs: Any,
) -> Relationship:
    """
    Declare that another element uses this element.

    Args:
        other: The element that uses this element.
        label: Description of the interaction.
        relationship_type: Type of arrow to use.
        kwargs: Optional relationship kwargs.

    Returns:
        The created relationship.
    """
    relationship_class = Relationship.get_relationship_by_type(
        relationship_type
    )
    return relationship_class(
        from_element=other,  # type: ignore[arg-type]
        to_element=self,  # type: ignore[arg-type]
        label=label,
        **kwargs,
    )

c4.diagrams.core.ElementWithTechnology

Bases: Element

Base class for elements that define a technology field.

Source code in c4/diagrams/core.py
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
class ElementWithTechnology(Element):
    """
    Base class for elements that define a `technology` field.
    """

    def __init__(
        self,
        label: Required[str] = REQUIRED,
        description: str | None = None,
        technology: str | None = None,
        sprite: str | None = None,
        tags: list[str] | None = None,
        link: str | None = None,
        alias: Maybe[str] = MISSING,
    ) -> None:
        """
        Initialize a new diagram element.

        Args:
            label: Display name for the element. Required.
            description: Optional description text.
            technology: Optional technology.
            sprite: Optional sprite/icon reference for rendering.
            tags: Optional tags for styling or grouping.
            link: Optional URL associated with the element.
            alias: Unique identifier for the element. If not provided, it is
                autogenerated from the label.
        """
        super().__init__(
            alias=alias,
            label=label,
            description=description,
            sprite=sprite,
            tags=tags,
            link=link,
        )

        self.technology = technology

__init__

__init__(
    label: Required[str] = REQUIRED,
    description: str | None = None,
    technology: str | None = None,
    sprite: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    alias: Maybe[str] = MISSING,
) -> None

Parameters:

Name Type Description Default
label Required[str]

Display name for the element. Required.

REQUIRED
description str | None

Optional description text.

None
technology str | None

Optional technology.

None
sprite str | None

Optional sprite/icon reference for rendering.

None
tags list[str] | None

Optional tags for styling or grouping.

None
link str | None

Optional URL associated with the element.

None
alias Maybe[str]

Unique identifier for the element. If not provided, it is autogenerated from the label.

MISSING
Source code in c4/diagrams/core.py
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
def __init__(
    self,
    label: Required[str] = REQUIRED,
    description: str | None = None,
    technology: str | None = None,
    sprite: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    alias: Maybe[str] = MISSING,
) -> None:
    """
    Initialize a new diagram element.

    Args:
        label: Display name for the element. Required.
        description: Optional description text.
        technology: Optional technology.
        sprite: Optional sprite/icon reference for rendering.
        tags: Optional tags for styling or grouping.
        link: Optional URL associated with the element.
        alias: Unique identifier for the element. If not provided, it is
            autogenerated from the label.
    """
    super().__init__(
        alias=alias,
        label=label,
        description=description,
        sprite=sprite,
        tags=tags,
        link=link,
    )

    self.technology = technology

c4.diagrams.core.Boundary

Bases: Element

Represents a boundary element that groups other elements.

Boundaries can be nested, and manage their own child elements.

Source code in c4/diagrams/core.py
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
class Boundary(Element):
    """
    Represents a boundary element that groups other elements.

    Boundaries can be nested, and manage their own child elements.
    """

    def __init__(
        self,
        label: Required[str] = REQUIRED,
        description: str | None = None,
        type_: str | None = None,
        tags: list[str] | None = None,
        link: str | None = None,
        alias: Maybe[str] = MISSING,
    ) -> None:
        """
        Initialize a new boundary element.

        Args:
            label: Human-readable name for the boundary. Required.
            description: Optional description.
            type_: Optional stereotype or visual marker.
            tags: Optional tags for styling or grouping.
            link: Optional hyperlink associated with the boundary.
            alias: Unique identifier for the boundary.
                If not provided, one is autogenerated.

        Notes:
            - If the boundary is created within another boundary context, it is
              added as a nested boundary.
            - Otherwise, it is added directly to the current diagram.
        """
        self._parent = get_boundary()

        super().__init__(
            label=label,
            alias=alias,
            description=description,
            type_=type_,
            tags=tags,
            link=link,
        )

        self._elements: list[Element] = []
        self._relationships: list[Relationship] = []
        self._boundaries: list[Boundary] = []

        self.__ordered_elements: list[BaseDiagramElement] = []

    @override
    def _contribute_to_diagram(self) -> None:
        self._check_diagram_type()
        self._diagram.add_boundary(self)

    @property
    def elements(self) -> list[Element]:
        """
        Returns the list of diagram elements added to this boundary.

        Returns:
            Child elements grouped under this boundary.
        """
        return self._elements

    @property
    def boundaries(self) -> list[Boundary]:
        """
        Returns the list of nested boundaries inside this boundary.

        Returns:
            Child boundaries nested within this boundary.
        """
        return self._boundaries

    @property
    def ordered_elements(self) -> list[BaseDiagramElement]:
        """
        Return the boundary elements in their order of definition,
        preserving the original declaration order for rendering.
        """
        return self.__ordered_elements

    @property
    def relationships(self) -> list[Relationship]:
        """
        Returns all relationships defined in the boundary.
        """
        return self._relationships

    def __enter__(self) -> Self:
        """
        Enter the boundary context.

        Returns:
            The boundary instance now active as context.
        """
        set_boundary(self)
        return self

    def __exit__(
        self,
        exc_type: type[BaseException] | None,
        exc_value: BaseException | None,
        traceback: TracebackType | None,
    ) -> None:
        """
        Exit the boundary context and restore the previous boundary.
        """
        set_boundary(self._parent)

    def add(self, element: _TElement) -> _TElement:
        """
        Add a diagram element to this boundary.

        Args:
            element: The element to add.

        Returns:
            The added element.
        """
        self._elements.append(element)
        self.__ordered_elements.append(element)

        return element

    def add_boundary(self, boundary: _TBoundary) -> _TBoundary:
        """
        Add a nested boundary to this boundary.

        Args:
            boundary: The boundary to add.

        Returns:
            The added boundary.
        """
        self._boundaries.append(boundary)
        self.__ordered_elements.append(boundary)

        return boundary

    def add_relationship(self, relationship: _TRelationship) -> _TRelationship:
        """
        Add a relationship between elements.

        Args:
            relationship: The relationship to add.

        Returns:
            The added relationship.
        """
        self._relationships.append(relationship)
        self.__ordered_elements.append(relationship)

        return relationship

__init__

__init__(
    label: Required[str] = REQUIRED,
    description: str | None = None,
    type_: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    alias: Maybe[str] = MISSING,
) -> None

Parameters:

Name Type Description Default
label Required[str]

Human-readable name for the boundary. Required.

REQUIRED
description str | None

Optional description.

None
type_ str | None

Optional stereotype or visual marker.

None
tags list[str] | None

Optional tags for styling or grouping.

None
link str | None

Optional hyperlink associated with the boundary.

None
alias Maybe[str]

Unique identifier for the boundary. If not provided, one is autogenerated.

MISSING
Notes
  • If the boundary is created within another boundary context, it is added as a nested boundary.
  • Otherwise, it is added directly to the current diagram.
Source code in c4/diagrams/core.py
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
def __init__(
    self,
    label: Required[str] = REQUIRED,
    description: str | None = None,
    type_: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    alias: Maybe[str] = MISSING,
) -> None:
    """
    Initialize a new boundary element.

    Args:
        label: Human-readable name for the boundary. Required.
        description: Optional description.
        type_: Optional stereotype or visual marker.
        tags: Optional tags for styling or grouping.
        link: Optional hyperlink associated with the boundary.
        alias: Unique identifier for the boundary.
            If not provided, one is autogenerated.

    Notes:
        - If the boundary is created within another boundary context, it is
          added as a nested boundary.
        - Otherwise, it is added directly to the current diagram.
    """
    self._parent = get_boundary()

    super().__init__(
        label=label,
        alias=alias,
        description=description,
        type_=type_,
        tags=tags,
        link=link,
    )

    self._elements: list[Element] = []
    self._relationships: list[Relationship] = []
    self._boundaries: list[Boundary] = []

    self.__ordered_elements: list[BaseDiagramElement] = []

elements property

elements: list[Element]

Returns the list of diagram elements added to this boundary.

Returns:

Type Description
list[Element]

Child elements grouped under this boundary.

boundaries property

boundaries: list[Boundary]

Returns the list of nested boundaries inside this boundary.

Returns:

Type Description
list[Boundary]

Child boundaries nested within this boundary.

relationships property

relationships: list[Relationship]

Returns all relationships defined in the boundary.

__enter__

__enter__() -> Self

Enter the boundary context.

Returns:

Type Description
Self

The boundary instance now active as context.

Source code in c4/diagrams/core.py
1174
1175
1176
1177
1178
1179
1180
1181
1182
def __enter__(self) -> Self:
    """
    Enter the boundary context.

    Returns:
        The boundary instance now active as context.
    """
    set_boundary(self)
    return self

__exit__

__exit__(
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None

Exit the boundary context and restore the previous boundary.

Source code in c4/diagrams/core.py
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
def __exit__(
    self,
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None:
    """
    Exit the boundary context and restore the previous boundary.
    """
    set_boundary(self._parent)

set_property_header

set_property_header(*args: str) -> Self

Sets the column headers for the element's property table.

This must be called either before adding any property rows, or the header length must match the number of values.

Parameters:

Name Type Description Default
*args str

Column names to use as the property header.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If header length does not match the number of values.

Source code in c4/diagrams/core.py
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
def set_property_header(self, *args: str) -> Self:
    """
    Sets the column headers for the element's property table.

    This must be called either before adding any property rows, or
    the header length must match the number of values.

    Args:
        *args: Column names to use as the property header.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If header length does not match the number of values.
    """
    if not args:
        raise ValueError("The header cannot be empty")

    if self.properties.properties:
        expected_header_length = self.properties.properties[0]

        if len(args) != len(expected_header_length):
            raise ValueError(
                "The header length does not match the number of values"
            )

    self.properties.header = list(args)

    return self

without_property_header

without_property_header() -> Self

Disables the rendering of the header row in the property table.

Returns:

Type Description
Self

The updated diagram element.

Source code in c4/diagrams/core.py
453
454
455
456
457
458
459
460
461
462
def without_property_header(self) -> Self:
    """
    Disables the rendering of the header row in the property table.

    Returns:
        The updated diagram element.
    """
    self.properties.show_header = False

    return self

add_property

add_property(*args: str) -> Self

Adds a row to the property table.

The number of arguments must match the number of header columns.

Parameters:

Name Type Description Default
*args str

Values for each column in the property row.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If the number of values does not match the header length.

Source code in c4/diagrams/core.py
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
def add_property(self, *args: str) -> Self:
    """
    Adds a row to the property table.

    The number of arguments must match the number of header columns.

    Args:
        *args: Values for each column in the property row.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If the number of values does not match the
            header length.
    """
    if len(args) != len(self.properties.header):
        raise ValueError(
            "The number of values does not match the header length"
        )

    self.properties.properties.append(list(args))

    return self

c4.diagrams.core.RelationshipType

Bases: EnumDescriptionsMixin, StrEnum

Enum representing different types of relationships between diagram elements.

Source code in c4/diagrams/core.py
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
@unique
class RelationshipType(EnumDescriptionsMixin, StrEnum):
    """
    Enum representing different types of relationships between
    diagram elements.
    """

    REL = "REL"
    BI_REL = "BI_REL"
    REL_BACK = "REL_BACK"
    REL_NEIGHBOR = "REL_NEIGHBOR"
    BI_REL_NEIGHBOR = "BI_REL_NEIGHBOR"
    REL_BACK_NEIGHBOR = "REL_BACK_NEIGHBOR"
    REL_D = "REL_D"
    REL_DOWN = "REL_DOWN"
    BI_REL_D = "BI_REL_D"
    BI_REL_DOWN = "BI_REL_DOWN"
    REL_U = "REL_U"
    REL_UP = "REL_UP"
    BI_REL_U = "BI_REL_U"
    BI_REL_UP = "BI_REL_UP"
    REL_L = "REL_L"
    REL_LEFT = "REL_LEFT"
    BI_REL_L = "BI_REL_L"
    BI_REL_LEFT = "BI_REL_LEFT"
    REL_R = "REL_R"
    REL_RIGHT = "REL_RIGHT"
    BI_REL_R = "BI_REL_R"
    BI_REL_RIGHT = "BI_REL_RIGHT"

    @classmethod
    def get_descriptions(cls) -> dict[RelationshipType, str]:
        """Return the Enum items description used in documentation."""
        return {
            cls.BI_REL: "A bidirectional relationship between two elements.",
            cls.BI_REL_DOWN: "A bidirectional downward relationship.",
            cls.BI_REL_D: (
                "A bidirectional downward relationship. "
                "Shorthand for `BI_REL_DOWN`."
            ),
            cls.BI_REL_LEFT: "A bidirectional leftward relationship.",
            cls.BI_REL_L: (
                "A bidirectional leftward relationship. "
                "Shorthand for `BI_REL_LEFT`."
            ),
            cls.BI_REL_NEIGHBOR: (
                "A bidirectional neighboring relationship between two elements."
            ),
            cls.BI_REL_RIGHT: "A bidirectional rightward relationship.",
            cls.BI_REL_R: (
                "A bidirectional rightward relationship. "
                "Shorthand for `BI_REL_RIGHT`."
            ),
            cls.BI_REL_UP: "A bidirectional upward relationship.",
            cls.BI_REL_U: (
                "A bidirectional upward relationship. "
                "Shorthand for `BI_REL_UP`."
            ),
            cls.REL: "A unidirectional relationship between two elements.",
            cls.REL_BACK: "A unidirectional relationship pointing backward.",
            cls.REL_BACK_NEIGHBOR: (
                "A unidirectional relationship combining backward "
                "and neighboring semantics."
            ),
            cls.REL_DOWN: "A unidirectional downward relationship.",
            cls.REL_D: (
                "A unidirectional downward relationship. "
                "Shorthand for `REL_DOWN`."
            ),
            cls.REL_LEFT: "A unidirectional leftward relationship.",
            cls.REL_L: (
                "A unidirectional leftward relationship. "
                "Shorthand for `REL_LEFT`."
            ),
            cls.REL_NEIGHBOR: (
                "A unidirectional relationship representing a lateral "
                "or neighboring interaction."
            ),
            cls.REL_RIGHT: "A unidirectional rightward relationship.",
            cls.REL_R: (
                "A unidirectional rightward relationship. "
                "Shorthand for `REL_RIGHT`."
            ),
            cls.REL_UP: "A unidirectional upward relationship.",
            cls.REL_U: (
                "A unidirectional upward relationship. Shorthand for `REL_UP`."
            ),
        }

get_descriptions classmethod

get_descriptions() -> dict[RelationshipType, str]

Return the Enum items description used in documentation.

Source code in c4/diagrams/core.py
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
@classmethod
def get_descriptions(cls) -> dict[RelationshipType, str]:
    """Return the Enum items description used in documentation."""
    return {
        cls.BI_REL: "A bidirectional relationship between two elements.",
        cls.BI_REL_DOWN: "A bidirectional downward relationship.",
        cls.BI_REL_D: (
            "A bidirectional downward relationship. "
            "Shorthand for `BI_REL_DOWN`."
        ),
        cls.BI_REL_LEFT: "A bidirectional leftward relationship.",
        cls.BI_REL_L: (
            "A bidirectional leftward relationship. "
            "Shorthand for `BI_REL_LEFT`."
        ),
        cls.BI_REL_NEIGHBOR: (
            "A bidirectional neighboring relationship between two elements."
        ),
        cls.BI_REL_RIGHT: "A bidirectional rightward relationship.",
        cls.BI_REL_R: (
            "A bidirectional rightward relationship. "
            "Shorthand for `BI_REL_RIGHT`."
        ),
        cls.BI_REL_UP: "A bidirectional upward relationship.",
        cls.BI_REL_U: (
            "A bidirectional upward relationship. "
            "Shorthand for `BI_REL_UP`."
        ),
        cls.REL: "A unidirectional relationship between two elements.",
        cls.REL_BACK: "A unidirectional relationship pointing backward.",
        cls.REL_BACK_NEIGHBOR: (
            "A unidirectional relationship combining backward "
            "and neighboring semantics."
        ),
        cls.REL_DOWN: "A unidirectional downward relationship.",
        cls.REL_D: (
            "A unidirectional downward relationship. "
            "Shorthand for `REL_DOWN`."
        ),
        cls.REL_LEFT: "A unidirectional leftward relationship.",
        cls.REL_L: (
            "A unidirectional leftward relationship. "
            "Shorthand for `REL_LEFT`."
        ),
        cls.REL_NEIGHBOR: (
            "A unidirectional relationship representing a lateral "
            "or neighboring interaction."
        ),
        cls.REL_RIGHT: "A unidirectional rightward relationship.",
        cls.REL_R: (
            "A unidirectional rightward relationship. "
            "Shorthand for `REL_RIGHT`."
        ),
        cls.REL_UP: "A unidirectional upward relationship.",
        cls.REL_U: (
            "A unidirectional upward relationship. Shorthand for `REL_UP`."
        ),
    }

c4.diagrams.core.Relationship

Bases: BaseDiagramElement

Represents a connection between two elements.

Supports fluent chaining using >> and << operators, and subclass registration for each RelationshipType.

Source code in c4/diagrams/core.py
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
class Relationship(BaseDiagramElement):
    """
    Represents a connection between two elements.

    Supports fluent chaining using `>>` and `<<` operators, and
    subclass registration for each `RelationshipType`.
    """

    __relationship_by_type: ClassVar[
        dict[RelationshipType, type[Relationship]]
    ] = {}

    relationship_type: RelationshipType = RelationshipType.REL

    def __init__(
        self,
        label: str | None = None,
        description: str | None = None,
        technology: str | None = None,
        sprite: str | None = None,
        tags: list[str] | None = None,
        link: str | None = None,
        index: str | BaseIndex | None = None,
        from_element: _TElement | None = None,
        to_element: _TElement | None = None,
        relationship_type: RelationshipType | None = None,
    ) -> None:
        """
        Initialize a relationship between two elements.

        Args:
            label: The label shown on the relationship edge.
            description: Additional details about the relationship.
            technology: The technology used in the communication.
            sprite: Optional sprite to represent the relationship.
            tags: Optional tags for styling or grouping.
            link: URL link associated with the relationship.
            index: Index associated with the relationship.
            from_element: The source element. Optional.
            to_element: The destination element. Optional.
            relationship_type: Type of the relationship.
                Defaults to the class-level `relationship_type`.

        Notes:
            If both `from_element` and `to_element` are provided,
            the relationship will be registered in the current
            diagram immediately.
        """
        self.from_element = from_element
        self.to_element = to_element
        self.label = label
        self.technology = technology
        self.description = description
        self.sprite = sprite
        self.tags = tags
        self.link = link
        self.index = index

        self.relationship_type = relationship_type or self.relationship_type

        super().__init__()

    @override
    def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None:
        """
        Registers the relationship subclass under its unique
        `relationship_type`.
        """
        super().__init_subclass__(*args, **kwargs)

        relationship_type = getattr(cls, "relationship_type", None)
        if (
            relationship_type is None
            or relationship_type in cls.__relationship_by_type
        ):
            raise TypeError(
                f"Please provide an unique `relationship_type` for this"
                f" class {cls.__name__}"
            )

        cls.__relationship_by_type[relationship_type] = cls

    def get_participants(self) -> tuple[_TElement, _TElement]:
        if not self.from_element:
            raise ValueError("from_element not provided")

        if not self.to_element:
            raise ValueError("to_element not provided")

        return self.from_element, self.to_element  # type: ignore[return-value]

    @overload
    def __rshift__(
        self, other: _TElement
    ) -> Relationship: ...  # pragma: no cover

    @overload
    def __rshift__(
        self, other: list[_TElement]
    ) -> list[Relationship]: ...  # pragma: no cover

    def __rshift__(
        self, other: _TElement | list[_TElement]
    ) -> Relationship | list[Relationship]:
        """Implements Self >> _TElement and Self >> [_TElement]."""
        self._ensure_not_completed()

        return self._connect(source=self.from_element, destination=other)  # type: ignore[arg-type,type-var]

    @overload
    def __lshift__(
        self, other: _TElement
    ) -> Relationship: ...  # pragma: no cover

    @overload
    def __lshift__(
        self, other: list[_TElement]
    ) -> list[Relationship]: ...  # pragma: no cover

    def __lshift__(
        self, other: _TElement | list[_TElement]
    ) -> Relationship | list[Relationship]:
        """Implements Self << _TElement and Self << [_TElement]."""
        self._ensure_not_completed()

        return self._connect(source=other, destination=self.to_element)  # type: ignore[arg-type,type-var]

    @overload
    def __rrshift__(
        self, other: _TElement
    ) -> Relationship: ...  # pragma: no cover

    @overload
    def __rrshift__(
        self, other: list[_TElement]
    ) -> list[Relationship]: ...  # pragma: no cover

    def __rrshift__(
        self, other: _TElement | list[_TElement]
    ) -> Relationship | list[Relationship]:
        """Called for [_TElement] >> Self or _TElement >> Self."""
        self._ensure_not_completed()

        return self._connect(source=other, destination=self.to_element)  # type: ignore[arg-type,type-var]

    @overload
    def __rlshift__(
        self, other: _TElement
    ) -> Relationship: ...  # pragma: no cover

    @overload
    def __rlshift__(
        self, other: list[_TElement]
    ) -> list[Relationship]: ...  # pragma: no cover

    def __rlshift__(
        self, other: _TElement | list[_TElement]
    ) -> Relationship | list[Relationship]:
        """Called for [_TElement] << Self or _TElement << Self."""
        self._ensure_not_completed()

        return self._connect(source=self.from_element, destination=other)  # type: ignore[arg-type,type-var]

    def __repr__(self) -> str:
        cls_name = self.__class__.__name__
        attrs = [
            f"{self.label!r}",
        ]

        if self.description:
            attrs.append(f"{self.description!r}")

        repr_attrs = [
            "technology",
            "sprite",
            "tags",
            "link",
            "index",
        ]

        for attr in repr_attrs:
            value = getattr(self, attr)
            if value:
                attrs.append(f"{attr}={value!r}")

        args = ", ".join(attrs)
        return f"{cls_name}({args})"

    @overload
    def _connect(
        self, source: None, destination: None
    ) -> NoReturn: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: _TElement, destination: None
    ) -> NoReturn: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: None, destination: _TElement
    ) -> NoReturn: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: _TElement, destination: _TElement
    ) -> Relationship: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: list[_TElement], destination: None
    ) -> NoReturn: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: None, destination: list[_TElement]
    ) -> NoReturn: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: list[_TElement], destination: list[_TElement]
    ) -> NoReturn: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: list[_TElement], destination: _TElement
    ) -> list[Relationship]: ...  # pragma: no cover

    @overload
    def _connect(
        self, source: _TElement, destination: list[_TElement]
    ) -> list[Relationship]: ...  # pragma: no cover

    def _connect(
        self,
        source: _TElement | list[_TElement] | None,
        destination: _TElement | list[_TElement] | None,
    ) -> Relationship | list[Relationship]:
        self._ensure_not_completed()

        if not source and not destination:
            raise ValueError("Either source or destination must be provided")

        if isinstance(source, list) and isinstance(destination, list):
            raise ValueError(  # noqa: TRY004
                "Either source or destination must be a single element"
            )

        if isinstance(source, list):
            from_iter = source
            to_iter: Iterable[_TElement] = repeat(destination)  # type: ignore[arg-type]
        elif isinstance(destination, list):
            from_iter: Iterable[_TElement] = repeat(source)  # type: ignore[no-redef]
            to_iter = destination
        else:
            # Both are single elements
            return self.copy(from_element=source, to_element=destination)

        return [
            self.copy(from_element=src, to_element=dst)
            for src, dst in zip(from_iter, to_iter, strict=False)
        ]

    def _ensure_not_completed(self) -> None:
        if self.from_element and self.to_element:
            raise ValueError(
                "Cannot modify relationship with both specified elements"
            )

    @override
    def _contribute_to_diagram(self) -> None:
        if self.from_element and self.to_element:
            self._diagram.add_relationship(self)

    def get_attrs(self) -> dict[str, Any]:
        """
        Returns a dictionary of all relationship attributes.
        """
        return {
            "from_element": self.from_element,
            "to_element": self.to_element,
            "label": self.label,
            "technology": self.technology,
            "description": self.description,
            "sprite": self.sprite,
            "tags": self.tags,
            "link": self.link,
            "index": self.index,
            "relationship_type": self.relationship_type,
        }

    def copy(self, **overrides: Any) -> Relationship:
        """
        Clone the relationship, optionally overriding fields.
        """
        attrs = {**self.get_attrs(), **overrides}

        cls = self.get_relationship_by_type(self.relationship_type)

        relationship_copy = cls(**attrs)

        if self.properties.properties:
            relationship_copy.properties = copy.deepcopy(self.properties)

        return relationship_copy

    @classmethod
    def get_relationship_by_type(
        cls, relationship_type: RelationshipType
    ) -> type[Relationship]:
        """
        Retrieve the relationship class associated with the
        given RelationshipType.

        Args:
            relationship_type: The enum value representing the
                type of relationship.

        Returns:
            The corresponding Relationship subclass.

        Raises:
            KeyError: If no class is registered for the provided
                relationship type.
        """
        return cls.__relationship_by_type[relationship_type]

__init__

__init__(
    label: str | None = None,
    description: str | None = None,
    technology: str | None = None,
    sprite: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    index: str | BaseIndex | None = None,
    from_element: _TElement | None = None,
    to_element: _TElement | None = None,
    relationship_type: RelationshipType | None = None,
) -> None

Parameters:

Name Type Description Default
label str | None

The label shown on the relationship edge.

None
description str | None

Additional details about the relationship.

None
technology str | None

The technology used in the communication.

None
sprite str | None

Optional sprite to represent the relationship.

None
tags list[str] | None

Optional tags for styling or grouping.

None
link str | None

URL link associated with the relationship.

None
index str | BaseIndex | None

Index associated with the relationship.

None
from_element _TElement | None

The source element. Optional.

None
to_element _TElement | None

The destination element. Optional.

None
relationship_type RelationshipType | None

Type of the relationship. Defaults to the class-level relationship_type.

None
Notes

If both from_element and to_element are provided, the relationship will be registered in the current diagram immediately.

Source code in c4/diagrams/core.py
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
def __init__(
    self,
    label: str | None = None,
    description: str | None = None,
    technology: str | None = None,
    sprite: str | None = None,
    tags: list[str] | None = None,
    link: str | None = None,
    index: str | BaseIndex | None = None,
    from_element: _TElement | None = None,
    to_element: _TElement | None = None,
    relationship_type: RelationshipType | None = None,
) -> None:
    """
    Initialize a relationship between two elements.

    Args:
        label: The label shown on the relationship edge.
        description: Additional details about the relationship.
        technology: The technology used in the communication.
        sprite: Optional sprite to represent the relationship.
        tags: Optional tags for styling or grouping.
        link: URL link associated with the relationship.
        index: Index associated with the relationship.
        from_element: The source element. Optional.
        to_element: The destination element. Optional.
        relationship_type: Type of the relationship.
            Defaults to the class-level `relationship_type`.

    Notes:
        If both `from_element` and `to_element` are provided,
        the relationship will be registered in the current
        diagram immediately.
    """
    self.from_element = from_element
    self.to_element = to_element
    self.label = label
    self.technology = technology
    self.description = description
    self.sprite = sprite
    self.tags = tags
    self.link = link
    self.index = index

    self.relationship_type = relationship_type or self.relationship_type

    super().__init__()

get_attrs

get_attrs() -> dict[str, Any]

Returns a dictionary of all relationship attributes.

Source code in c4/diagrams/core.py
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
def get_attrs(self) -> dict[str, Any]:
    """
    Returns a dictionary of all relationship attributes.
    """
    return {
        "from_element": self.from_element,
        "to_element": self.to_element,
        "label": self.label,
        "technology": self.technology,
        "description": self.description,
        "sprite": self.sprite,
        "tags": self.tags,
        "link": self.link,
        "index": self.index,
        "relationship_type": self.relationship_type,
    }

copy

copy(**overrides: Any) -> Relationship

Clone the relationship, optionally overriding fields.

Source code in c4/diagrams/core.py
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
def copy(self, **overrides: Any) -> Relationship:
    """
    Clone the relationship, optionally overriding fields.
    """
    attrs = {**self.get_attrs(), **overrides}

    cls = self.get_relationship_by_type(self.relationship_type)

    relationship_copy = cls(**attrs)

    if self.properties.properties:
        relationship_copy.properties = copy.deepcopy(self.properties)

    return relationship_copy

get_relationship_by_type classmethod

get_relationship_by_type(
    relationship_type: RelationshipType,
) -> type[Relationship]

Retrieve the relationship class associated with the given RelationshipType.

Parameters:

Name Type Description Default
relationship_type RelationshipType

The enum value representing the type of relationship.

required

Returns:

Type Description
type[Relationship]

The corresponding Relationship subclass.

Raises:

Type Description
KeyError

If no class is registered for the provided relationship type.

Source code in c4/diagrams/core.py
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
@classmethod
def get_relationship_by_type(
    cls, relationship_type: RelationshipType
) -> type[Relationship]:
    """
    Retrieve the relationship class associated with the
    given RelationshipType.

    Args:
        relationship_type: The enum value representing the
            type of relationship.

    Returns:
        The corresponding Relationship subclass.

    Raises:
        KeyError: If no class is registered for the provided
            relationship type.
    """
    return cls.__relationship_by_type[relationship_type]

set_property_header

set_property_header(*args: str) -> Self

Sets the column headers for the element's property table.

This must be called either before adding any property rows, or the header length must match the number of values.

Parameters:

Name Type Description Default
*args str

Column names to use as the property header.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If header length does not match the number of values.

Source code in c4/diagrams/core.py
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
def set_property_header(self, *args: str) -> Self:
    """
    Sets the column headers for the element's property table.

    This must be called either before adding any property rows, or
    the header length must match the number of values.

    Args:
        *args: Column names to use as the property header.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If header length does not match the number of values.
    """
    if not args:
        raise ValueError("The header cannot be empty")

    if self.properties.properties:
        expected_header_length = self.properties.properties[0]

        if len(args) != len(expected_header_length):
            raise ValueError(
                "The header length does not match the number of values"
            )

    self.properties.header = list(args)

    return self

without_property_header

without_property_header() -> Self

Disables the rendering of the header row in the property table.

Returns:

Type Description
Self

The updated diagram element.

Source code in c4/diagrams/core.py
453
454
455
456
457
458
459
460
461
462
def without_property_header(self) -> Self:
    """
    Disables the rendering of the header row in the property table.

    Returns:
        The updated diagram element.
    """
    self.properties.show_header = False

    return self

add_property

add_property(*args: str) -> Self

Adds a row to the property table.

The number of arguments must match the number of header columns.

Parameters:

Name Type Description Default
*args str

Values for each column in the property row.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If the number of values does not match the header length.

Source code in c4/diagrams/core.py
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
def add_property(self, *args: str) -> Self:
    """
    Adds a row to the property table.

    The number of arguments must match the number of header columns.

    Args:
        *args: Values for each column in the property row.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If the number of values does not match the
            header length.
    """
    if len(args) != len(self.properties.header):
        raise ValueError(
            "The number of values does not match the header length"
        )

    self.properties.properties.append(list(args))

    return self

Note

You can find a detailed description of the different relationship types in the corresponding sections of the documentation.

c4.diagrams.core.Diagram

Represents a complete C4 diagram.

Manages the registration and layout of elements, boundaries, relationships, and renderers.

Source code in c4/diagrams/core.py
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
class Diagram:
    """
    Represents a complete C4 diagram.

    Manages the registration and layout of elements, boundaries,
    relationships, and renderers.
    """

    type: ClassVar[DiagramType] = DiagramType.DIAGRAM

    def __init__(
        self,
        title: str | None = None,
        default_renderer: BaseRenderer[Diagram] | None = None,
        render_options: RenderOptions | None = None,
    ) -> None:
        """
        Initialize a new diagram.

        Args:
            title: Optional title to label the diagram.
            default_renderer: Optional default renderer to use for rendering.
            render_options: Optional renderer-specific options.
        """
        self._title = title
        self._default_renderer = default_renderer
        self._elements: list[Element] = []
        self._boundaries: list[Boundary] = []
        self._relationships: list[Relationship] = []
        self._layouts: list[Layout] = []
        self._base_elements: list[BaseDiagramElement] = []
        self._render_options = render_options

        self.__elements_by_alias: dict[str, Element] = {}
        self.__elements_by_label: dict[str, list[Element]] = {}
        self.__alias_generator = AliasGenerator()
        self.__referenced_elements: list[str] = []
        self.__ordered_elements: list[BaseDiagramElement] = []

    def __enter__(self) -> Self:
        """
        Enter the diagram context.

        Automatically sets this diagram as the current active diagram.

        Returns:
            The current instance.
        """
        set_diagram(self)
        return self

    def __exit__(
        self,
        exc_type: type[BaseException] | None,  # type: ignore[valid-type]
        exc_value: BaseException | None,
        traceback: TracebackType | None,
    ) -> None:
        """
        Exit the diagram context and clear the current diagram.
        """
        set_diagram(None)

    def __repr__(self) -> str:
        cls_name = self.__class__.__name__
        attrs = []

        if self._title:
            attrs.append(f"title={self._title!r}")

        args = ", ".join(attrs)
        return f"{cls_name}({args})"

    def _check_alias(self, element: Element) -> None:
        alias = element.alias

        if existing_element := self.get_element_by_alias(alias):
            raise ValueError(f"Duplicated alias {alias!r}: {existing_element}.")

        if not alias.isidentifier():
            raise ValueError(
                f"Alias {alias!r} of {element} must be a valid identifier."
            )

        self.__elements_by_alias[alias] = element

    def _check_label(self, element: Element) -> None:
        label = element.label

        self.__elements_by_label.setdefault(label, [])
        self.__elements_by_label[label].append(element)

    @property
    def title(self) -> str | None:
        """
        Returns the title of the diagram.
        """
        return self._title

    @property
    def elements(self) -> list[Element]:
        """
        Returns a list of top-level elements in the diagram.
        """
        return self._elements

    @property
    def base_elements(self) -> list[BaseDiagramElement]:
        """
        Returns a list of base elements of the diagram that should be rendered
        in a strict order.
        """
        return self._base_elements

    @property
    def boundaries(self) -> list[Boundary]:
        """
        Returns all top-level boundaries in the diagram.
        """
        return self._boundaries

    @property
    def layouts(self) -> list[Layout]:
        """
        Returns all layout constraints defined for the diagram.
        """
        return self._layouts

    @property
    def ordered_elements(self) -> list[BaseDiagramElement]:
        """
        Return the diagram elements in their order of definition,
        preserving the original declaration order for rendering.
        """
        return self.__ordered_elements

    @property
    def relationships(self) -> list[Relationship]:
        """
        Returns all relationships defined in the diagram.
        """
        return self._relationships

    def get_element_by_alias(self, alias: str) -> Element | None:
        """Return the element with the given alias."""
        return self.__elements_by_alias.get(alias)

    def get_elements_by_label(self, label: str) -> list[Element]:
        """Return all elements that share the given label."""
        return self.__elements_by_label.get(label, [])

    def generate_alias(
        self,
        label: str,
        alias: str | None = None,
    ) -> str:
        """
        Generate a unique alias.

        Args:
            label: Source label used to derive the alias when `alias` is None.
            alias: Optional explicit alias. If provided, it must be unique.

        Returns:
            A unique alias string.

        Raises:
            ValueError: If alias already exists.
        """
        return self.__alias_generator.generate(label, alias)

    def add_base_element(
        self, element: BaseDiagramElement
    ) -> BaseDiagramElement:
        """
        Add a base element to the diagram.

        rgs:
            element: The base element to add.

        Returns:
            The added base element.
        """
        self._base_elements.append(element)
        self.__ordered_elements.append(element)

        return element

    def add(self, element: _TElement) -> _TElement:
        """
        Add an element to the diagram or the currently active boundary.

        Args:
            element: The element to add.

        Returns:
            The added element.
        """
        self._check_alias(element)
        self._check_label(element)

        if boundary := get_boundary():
            boundary.add(element)
        else:
            self._elements.append(element)
            self.__ordered_elements.append(element)

        return element

    def add_boundary(self, boundary: _TBoundary) -> _TBoundary:
        """
        Add a top-level boundary to the diagram.

        Args:
            boundary: The boundary to add.

        Returns:
            The added boundary.
        """
        self._check_alias(boundary)
        self._check_label(boundary)

        if parent := get_boundary():
            parent.add_boundary(boundary)
        else:
            self._boundaries.append(boundary)
            self.__ordered_elements.append(boundary)

        return boundary

    def add_relationship(self, relationship: _TRelationship) -> _TRelationship:
        """
        Add a relationship between elements.

        Args:
            relationship: The relationship to add.

        Returns:
            The added relationship.
        """
        from_element, to_element = relationship.get_participants()  # type: ignore[var-annotated]
        self.__referenced_elements.append(from_element.alias)
        self.__referenced_elements.append(to_element.alias)

        if boundary := get_boundary():
            boundary.add_relationship(relationship)
        else:
            self._relationships.append(relationship)
            self.__ordered_elements.append(relationship)

        return relationship

    def add_layout(self, layout: _TLayout) -> _TLayout:
        """
        Add a layout constraint between elements.

        Args:
            layout: The layout constraint to add.

        Returns:
            The added layout.
        """
        self.__referenced_elements.append(layout.from_element.alias)
        self.__referenced_elements.append(layout.to_element.alias)

        self._layouts.append(layout)

        self.__ordered_elements.append(layout)

        return layout

    def as_plantuml(self, **kwargs: Any) -> str:
        """
        Render the diagram using the built-in PlantUML renderer.

        Args:
            **kwargs: Optional keyword arguments passed to the
                [PlantUML renderer][c4.renderers.PlantUMLRenderer].

        Returns:
            The rendered PlantUML code.
        """
        renderer = self._build_plantuml_renderer(**kwargs)

        return self.render(renderer)

    def as_mermaid(self, **kwargs: Any) -> str:
        """
        Render the diagram using the built-in Mermaid renderer.

        Args:
            **kwargs: Optional keyword arguments passed to the
                [Mermaid renderer][c4.renderers.MermaidRenderer].

        Returns:
            The rendered Mermaid code.
        """
        renderer = self._build_mermaid_renderer(**kwargs)

        return self.render(renderer)

    def is_element_referenced_by_alias(self, alias: str) -> bool:
        """
        Check whether an element identified by the given alias is referenced.

        An element is considered "referenced" if it participates
        in relationships or layout definitions, and therefore must be
        rendered using its alias.
        """
        return alias in self.__referenced_elements

    def render(self, renderer: BaseRenderer[Diagram] | None = None) -> str:
        """
        Render the diagram to a string using the given or default renderer.

        Args:
            renderer: Optional renderer to override the default.

        Returns:
            The rendered diagram output.

        Raises:
            ValueError: If no renderer is provided and no default
                renderer is set.
        """
        renderer = renderer or self._default_renderer
        if not renderer:
            raise ValueError("No renderer provided and no default_renderer set")

        return renderer.render(self)

    def save(
        self,
        path: str | Path,
        renderer: BaseRenderer[Diagram] | None = None,
    ) -> None:
        """
        Render and save the diagram to a file.

        Args:
            path: Target path to save the rendered output.
            renderer: Optional renderer to override the default.
        """
        path = Path(path)

        path.parent.mkdir(parents=True, exist_ok=True)

        content = self.render(renderer)

        path.write_text(content, encoding="utf-8")

    def save_as_plantuml(self, path: str | Path, **kwargs: Any) -> None:
        """
        Render and save the diagram using the PlantUML renderer.

        Args:
            path: Target file path.
            **kwargs: Optional kwargs passed to the
                [PlantUML renderer][c4.renderers.PlantUMLRenderer].
        """
        renderer = self._build_plantuml_renderer(**kwargs)

        return self.save(path, renderer=renderer)

    def save_as_mermaid(self, path: str | Path, **kwargs: Any) -> None:
        """
        Render and save the diagram using the Mermaid renderer.

        Args:
            path: Target file path.
            **kwargs: Optional kwargs passed to the
                [Mermaid renderer][c4.renderers.MermaidRenderer].
        """
        renderer = self._build_mermaid_renderer(**kwargs)

        return self.save(path, renderer=renderer)

    @property
    def render_options(self) -> RenderOptions | None:
        """Return rendering options for the diagram."""
        return self._render_options

    @render_options.setter
    def render_options(self, render_options: RenderOptions) -> None:
        """Set rendering options for the diagram."""
        self._render_options = render_options

    def _build_plantuml_renderer(self, **kwargs: Any) -> PlantUMLRenderer:
        """
        Create and configure a `PlantUMLRenderer` instance.

        If diagram render options are set and include PlantUML-specific
        settings, they are applied as default `render_options` unless
        explicitly provided in `kwargs`.

        Args:
            **kwargs: Additional keyword arguments passed directly to
                `PlantUMLRenderer`.

        Returns:
            A configured `PlantUMLRenderer` instance.
        """
        from c4.renderers import PlantUMLRenderer

        if self._render_options and self._render_options.plantuml:
            kwargs.setdefault("render_options", self._render_options.plantuml)

        return PlantUMLRenderer(**kwargs)

    def _build_mermaid_renderer(self, **kwargs: Any) -> MermaidRenderer:
        """
        Create and configure a `MermaidRenderer` instance.

        If diagram render options are set and include Mermaid-specific
        settings, they are applied as default `render_options` unless
        explicitly provided in `kwargs`.

        Args:
            **kwargs: Additional keyword arguments passed directly to
                `MermaidRenderer`.

        Returns:
            A configured `MermaidRenderer` instance.
        """
        from c4.renderers import MermaidRenderer

        if self._render_options and self._render_options.mermaid:
            kwargs.setdefault("render_options", self._render_options.mermaid)

        return MermaidRenderer(**kwargs)

__init__

__init__(
    title: str | None = None,
    default_renderer: BaseRenderer[Diagram] | None = None,
    render_options: RenderOptions | None = None,
) -> None

Parameters:

Name Type Description Default
title str | None

Optional title to label the diagram.

None
default_renderer BaseRenderer[Diagram] | None

Optional default renderer to use for rendering.

None
render_options RenderOptions | None

Optional renderer-specific options.

None
Source code in c4/diagrams/core.py
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
def __init__(
    self,
    title: str | None = None,
    default_renderer: BaseRenderer[Diagram] | None = None,
    render_options: RenderOptions | None = None,
) -> None:
    """
    Initialize a new diagram.

    Args:
        title: Optional title to label the diagram.
        default_renderer: Optional default renderer to use for rendering.
        render_options: Optional renderer-specific options.
    """
    self._title = title
    self._default_renderer = default_renderer
    self._elements: list[Element] = []
    self._boundaries: list[Boundary] = []
    self._relationships: list[Relationship] = []
    self._layouts: list[Layout] = []
    self._base_elements: list[BaseDiagramElement] = []
    self._render_options = render_options

    self.__elements_by_alias: dict[str, Element] = {}
    self.__elements_by_label: dict[str, list[Element]] = {}
    self.__alias_generator = AliasGenerator()
    self.__referenced_elements: list[str] = []
    self.__ordered_elements: list[BaseDiagramElement] = []

title property

title: str | None

Returns the title of the diagram.

elements property

elements: list[Element]

Returns a list of top-level elements in the diagram.

base_elements property

base_elements: list[BaseDiagramElement]

Returns a list of base elements of the diagram that should be rendered in a strict order.

boundaries property

boundaries: list[Boundary]

Returns all top-level boundaries in the diagram.

layouts property

layouts: list[Layout]

Returns all layout constraints defined for the diagram.

relationships property

relationships: list[Relationship]

Returns all relationships defined in the diagram.

__enter__

__enter__() -> Self

Enter the diagram context.

Automatically sets this diagram as the current active diagram.

Returns:

Type Description
Self

The current instance.

Source code in c4/diagrams/core.py
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
def __enter__(self) -> Self:
    """
    Enter the diagram context.

    Automatically sets this diagram as the current active diagram.

    Returns:
        The current instance.
    """
    set_diagram(self)
    return self

__exit__

__exit__(
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None

Exit the diagram context and clear the current diagram.

Source code in c4/diagrams/core.py
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
def __exit__(
    self,
    exc_type: type[BaseException] | None,  # type: ignore[valid-type]
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None:
    """
    Exit the diagram context and clear the current diagram.
    """
    set_diagram(None)

as_plantuml

as_plantuml(**kwargs: Any) -> str

Render the diagram using the built-in PlantUML renderer.

Parameters:

Name Type Description Default
**kwargs Any

Optional keyword arguments passed to the PlantUML renderer.

{}

Returns:

Type Description
str

The rendered PlantUML code.

Source code in c4/diagrams/core.py
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
def as_plantuml(self, **kwargs: Any) -> str:
    """
    Render the diagram using the built-in PlantUML renderer.

    Args:
        **kwargs: Optional keyword arguments passed to the
            [PlantUML renderer][c4.renderers.PlantUMLRenderer].

    Returns:
        The rendered PlantUML code.
    """
    renderer = self._build_plantuml_renderer(**kwargs)

    return self.render(renderer)

render

render(
    renderer: BaseRenderer[Diagram] | None = None,
) -> str

Render the diagram to a string using the given or default renderer.

Parameters:

Name Type Description Default
renderer BaseRenderer[Diagram] | None

Optional renderer to override the default.

None

Returns:

Type Description
str

The rendered diagram output.

Raises:

Type Description
ValueError

If no renderer is provided and no default renderer is set.

Source code in c4/diagrams/core.py
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
def render(self, renderer: BaseRenderer[Diagram] | None = None) -> str:
    """
    Render the diagram to a string using the given or default renderer.

    Args:
        renderer: Optional renderer to override the default.

    Returns:
        The rendered diagram output.

    Raises:
        ValueError: If no renderer is provided and no default
            renderer is set.
    """
    renderer = renderer or self._default_renderer
    if not renderer:
        raise ValueError("No renderer provided and no default_renderer set")

    return renderer.render(self)

save

save(
    path: str | Path,
    renderer: BaseRenderer[Diagram] | None = None,
) -> None

Render and save the diagram to a file.

Parameters:

Name Type Description Default
path str | Path

Target path to save the rendered output.

required
renderer BaseRenderer[Diagram] | None

Optional renderer to override the default.

None
Source code in c4/diagrams/core.py
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
def save(
    self,
    path: str | Path,
    renderer: BaseRenderer[Diagram] | None = None,
) -> None:
    """
    Render and save the diagram to a file.

    Args:
        path: Target path to save the rendered output.
        renderer: Optional renderer to override the default.
    """
    path = Path(path)

    path.parent.mkdir(parents=True, exist_ok=True)

    content = self.render(renderer)

    path.write_text(content, encoding="utf-8")

save_as_plantuml

save_as_plantuml(path: str | Path, **kwargs: Any) -> None

Render and save the diagram using the PlantUML renderer.

Parameters:

Name Type Description Default
path str | Path

Target file path.

required
**kwargs Any

Optional kwargs passed to the PlantUML renderer.

{}
Source code in c4/diagrams/core.py
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
def save_as_plantuml(self, path: str | Path, **kwargs: Any) -> None:
    """
    Render and save the diagram using the PlantUML renderer.

    Args:
        path: Target file path.
        **kwargs: Optional kwargs passed to the
            [PlantUML renderer][c4.renderers.PlantUMLRenderer].
    """
    renderer = self._build_plantuml_renderer(**kwargs)

    return self.save(path, renderer=renderer)

c4.diagrams.core.Layout

Bases: BaseDiagramElement, ABC

Represents a relative layout constraint between two elements.

Source code in c4/diagrams/core.py
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
class Layout(BaseDiagramElement, abc.ABC):
    """
    Represents a relative layout constraint between two elements.
    """

    layout_type: LayoutType

    __layout_by_type: ClassVar[dict[LayoutType, type[Layout]]] = {}

    def __init__(
        self,
        from_element: Element,
        to_element: Element,
    ) -> None:
        """
        Initialize a layout constraint between two elements.

        Args:
            from_element: The element to be positioned.
            to_element: The element to position relative to.

        Raises:
            ValueError: If `layout_type` is not provided and the subclass
                does not define a class-level ``layout_type``.
        """
        self.from_element = from_element
        self.to_element = to_element

        if not hasattr(self, "layout_type"):
            raise ValueError(
                "`layout_type` must be provided explicitly or defined as "
                "a class attribute"
            )

        super().__init__()

    @override
    def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None:
        """
        Registers the layout subclass under its unique
        `layout_type`.
        """
        super().__init_subclass__(*args, **kwargs)

        layout_type = getattr(cls, "layout_type", None)
        if layout_type is None or layout_type in cls.__layout_by_type:
            raise TypeError(
                f"Please provide an unique `layout_type` for this"
                f" class {cls.__name__}"
            )

        cls.__layout_by_type[layout_type] = cls

    @override
    def _contribute_to_diagram(self) -> None:
        self._diagram.add_layout(self)

    def __repr__(self) -> str:
        cls_name = self.__class__.__name__
        from_ = self.from_element.alias
        to_ = self.to_element.alias

        return f"{cls_name}({from_}, {to_})"

    @classmethod
    def get_layout_by_type(cls, layout_type: LayoutType) -> type[Layout]:
        """
        Retrieve the layout class associated with the
        given LayoutType.

        Args:
            layout_type: The enum value representing the
                type of layout.

        Returns:
            The corresponding Layout subclass.

        Raises:
            KeyError: If no class is registered for the provided
                layout type.
        """
        return cls.__layout_by_type[layout_type]

__init__

__init__(
    from_element: Element, to_element: Element
) -> None

Parameters:

Name Type Description Default
from_element Element

The element to be positioned.

required
to_element Element

The element to position relative to.

required

Raises:

Type Description
ValueError

If layout_type is not provided and the subclass does not define a class-level layout_type.

Source code in c4/diagrams/core.py
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
def __init__(
    self,
    from_element: Element,
    to_element: Element,
) -> None:
    """
    Initialize a layout constraint between two elements.

    Args:
        from_element: The element to be positioned.
        to_element: The element to position relative to.

    Raises:
        ValueError: If `layout_type` is not provided and the subclass
            does not define a class-level ``layout_type``.
    """
    self.from_element = from_element
    self.to_element = to_element

    if not hasattr(self, "layout_type"):
        raise ValueError(
            "`layout_type` must be provided explicitly or defined as "
            "a class attribute"
        )

    super().__init__()

Note

You can find a detailed description of the different layout types in the corresponding sections of the documentation.