Diagrams and components
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
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
set_property_header ¶
set_property_header(*args: str) -> Self
Sets the column headers for the element's property table.
This must be called before adding any property rows.
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 properties were already added before setting the header. |
Source code in c4/diagrams/core.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | |
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
247 248 249 250 251 252 253 254 255 256 | |
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
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
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
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 | |
__init__ ¶
__init__(
label: str | Required = not_provided,
description: str = "",
sprite: str = "",
tags: str = "",
link: str = "",
type_: str = "",
alias: str | EmptyStr = empty,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
label
|
str | Required
|
Display name for the element. Required. |
not_provided
|
description
|
str
|
Optional description text. |
''
|
sprite
|
str
|
Optional sprite/icon reference for rendering. |
''
|
tags
|
str
|
Optional comma-separated tags for grouping/styling. |
''
|
link
|
str
|
Optional URL associated with the element. |
''
|
type_
|
str
|
Optional custom type or stereotype label. |
''
|
alias
|
str | EmptyStr
|
Unique identifier for the element. If not provided, it is autogenerated from the label. |
empty
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in c4/diagrams/core.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 | |
uses ¶
uses(
other: Element,
label: str,
relationship_type: RelationshipType = REL,
**kwargs: Any,
) -> Relationship
Declare that this element uses another.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other
|
Element
|
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
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 | |
used_by ¶
used_by(
other: Element,
label: str,
relationship_type: RelationshipType = REL,
**kwargs: Any,
) -> Relationship
Declare that another element uses this element.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other
|
Element
|
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
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 | |
c4.diagrams.core.ElementWithTechnology ¶
Bases: Element
Base class for elements that define a technology field.
Source code in c4/diagrams/core.py
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 | |
__init__ ¶
__init__(
label: str | Required = not_provided,
description: str = "",
technology: str = "",
sprite: str = "",
tags: str = "",
link: str = "",
alias: str | EmptyStr = empty,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
label
|
str | Required
|
Display name for the element. Required. |
not_provided
|
description
|
str
|
Optional description text. |
''
|
technology
|
str
|
Optional technology. |
''
|
sprite
|
str
|
Optional sprite/icon reference for rendering. |
''
|
tags
|
str
|
Optional comma-separated tags for grouping/styling. |
''
|
link
|
str
|
Optional URL associated with the element. |
''
|
alias
|
str | EmptyStr
|
Unique identifier for the element. If not provided, it is autogenerated from the label. |
empty
|
Source code in c4/diagrams/core.py
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 | |
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
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 | |
__init__ ¶
__init__(
label: str | Required = not_provided,
description: str = "",
type_: str = "",
tags: str = "",
link: str = "",
alias: str | EmptyStr = empty,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
label
|
str | Required
|
Human-readable name for the boundary. Required. |
not_provided
|
description
|
str
|
Optional description. |
''
|
type_
|
str
|
Optional stereotype or visual marker. |
''
|
tags
|
str
|
Optional comma-separated tags for styling or grouping. |
''
|
link
|
str
|
Optional hyperlink associated with the boundary. |
''
|
alias
|
str | EmptyStr
|
Unique identifier for the boundary. If not provided, one is autogenerated. |
empty
|
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
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 | |
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
883 884 885 886 887 888 889 890 891 | |
__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
893 894 895 896 897 898 899 900 901 902 | |
c4.diagrams.core.RelationshipType ¶
Bases: StrEnum
Enum representing different types of relationships between diagram elements.
Source code in c4/diagrams/core.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
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
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 1239 1240 1241 1242 1243 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 | |
__init__ ¶
__init__(
label: str,
description: str = "",
technology: str = "",
sprite: str = "",
tags: str = "",
link: str = "",
index: str | BaseIndex | None = None,
from_element: Element | None = None,
to_element: Element | None = None,
relationship_type: RelationshipType | None = None,
) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
label
|
str
|
The label shown on the relationship edge. |
required |
description
|
str
|
Additional details about the relationship. |
''
|
technology
|
str
|
The technology used in the communication. |
''
|
sprite
|
str
|
Optional sprite to represent the relationship. |
''
|
tags
|
str
|
Comma-separated tags for styling or grouping. |
''
|
link
|
str
|
URL link associated with the relationship. |
''
|
index
|
str | BaseIndex | None
|
Index associated with the relationship. |
None
|
from_element
|
Element | None
|
The source element. Optional. |
None
|
to_element
|
Element | None
|
The destination element. Optional. |
None
|
relationship_type
|
RelationshipType | None
|
Type of the relationship.
Defaults to the class-level |
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
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 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 | |
get_attrs ¶
get_attrs() -> dict[str, Any]
Returns a dictionary of all relationship attributes.
Source code in c4/diagrams/core.py
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 | |
copy ¶
copy(**overrides: Any) -> Relationship
Clone the relationship, optionally overriding fields.
Source code in c4/diagrams/core.py
1380 1381 1382 1383 1384 1385 1386 | |
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
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 | |
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
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 1039 1040 1041 1042 1043 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 1082 1083 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 | |
__init__ ¶
__init__(
title: str | None = None,
default_renderer: BaseRenderer[Diagram] | 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
|
Source code in c4/diagrams/core.py
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 | |
base_elements
property
¶
base_elements: list[BaseDiagramElement]
Returns a list of base elements of the diagram that should be rendered in a strict order.
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
980 981 982 983 984 985 986 987 988 989 990 | |
__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
992 993 994 995 996 997 998 999 1000 1001 | |
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 renderer. |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
The rendered PlantUML code. |
Source code in c4/diagrams/core.py
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 | |
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
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 | |
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
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 | |
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
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 | |
c4.diagrams.core.Layout ¶
Bases: BaseDiagramElement, ABC
Represents a relative layout constraint between two elements.
Source code in c4/diagrams/core.py
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 | |
__init__ ¶
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 |
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 1573 1574 1575 1576 1577 1578 1579 | |
Note
You can find a detailed description of the different layout types in the corresponding sections of the documentation.