To show model elements in diagrams or in textual representations you can define different kind of views. The kind of view defines the visual rendering of the elements and the kind of elements and relations that are shown.
In a specific view you can reference the model elements you want to include in this view. A Model element can be included in as many views as you want, but the element has to match the expected kinds of model elements to be shown. For example, a system landscape view renders person and system elements but no use cases or state machines, even if they are referenced in the view. Please consult the models for the model and view elements.
Overarch supports the description of all C4 core and supplementary views except from code views, which ideally should be generated from the code if needed. The core C4 views form a hierarchy of views.
See c4model.com for the rationale and detailed information about the C4 Model.
The views can reference elements from the model as their content. The content of a view should be a list instead of a set because the order of elements may be relevant in the rendering of a view.
key | type | values | description |
---|---|---|---|
:el | keyword | see views | type of the view |
:id | keyword | namespaced id | used for export file name |
:title | string | rendered title | |
:spec | map | see view specs | rendering customization (e.g. styling) |
:ct | list | model refs (or elements) | view specific keys possible |
Shows the system in the context of the actors and other systems it is interacting with. Contains users, external systems and the system to be described.
Shows the containers (e.g. processes, deployment units of the system) and the interactions between them and the outside world. Contains the elements of the system context diagram and the containers of the system to be described. The system to be described is rendered as a system boundary in the container diagram.
Shows the components and their interactions inside of a container and with outside systems and actors.
A C4 code view is not supported, the level of abstraction for implementation details is usually not high enough to justify modelling implemeted code. Also the speed of change in the code is most likely to high and renders a code model obsolete fast. If you want to visualize existing code, you can use the features of your IDE to generate a diagram of it.
On the other hand it can be useful to create a view of code not yet implemented. An UML class view can be used to model a domain and communicate a design. See UML views for that.
The system landscape view shows a high level picture, a broader view of the system landscape and the interactions of the systems.
The deployment view shows the infrastucture and deployment of the containers of the system.
Shows the order of interactions. The relations get numerated in the given order and the nuber is rendered in the diagram.
Overarch supports selected UML views to show aspects of a system that are not covered by the C4 Model.
A use case view is used to show the actors of the system under design and their goals using this system.
A state machine view is used to show the different states a component can be in. It also shows the transitions between these states based on the input events, the component receives.
A code view is used to show the design of parts of the software. You can use it e.g. to model a domain and to communicate the model with domain experts.
Overarch also supports conceptual views as part of the documentation of the system. Conceptual views can be used in early stages of the development project, when the requirements and the architecture are not yet fixed, to get an overview of the system to be designed. They can also be used to document the relevant concept ofthe domain of the system for discussion, onboarding and learning. Concepts should also be part of the glossary, as well as actors, systems and the applications and containers developed for the system.
The concept view is a graphical view. It shows the concepts as a concept map with the relations between the concepts.
The glossary view is a textual view. It shows a sorted list of elements with their type and their descriptions.
Views can be customized with the :spec
key. View specs may include general
directives for a view or directives for specific renderers (e.g. PlantUML).
key | type | example values | description |
---|---|---|---|
:include | keyword | :relations :related | specify automatic includes (work in progress) |
:selection | map or vector | {:namespace "banking"} | select the content by criteria (see Model Element Selection) |
:layout | keyword | :top-down, :left-right | rendering direction |
:linetype | keyword | :orthogonal, :polygonal | different line types for relations |
:sketch | boolean | true, false | visual clue for sketches |
:styles | set | see Styling | visual customization of elements |
:theme | keyword | id of the theme | theme containing styles |
With the :selection
key a criteria map or a vector of criterias can be specified.
The matching elements will be included in the view. This feature can be used to
create 'dynamic' views that always contain the latest model content matching
the criteria. See section Model Element Selection by Criteria
for details and banking views for examples.
With the :include
key elements can be automatically included in a view.
The default behaviour is :referenced-only
which only includes the referenced
elements.
With the value :relations
all relations to the referenced elements will be
automatically included.
With the value :related
all elements participating in the referenced
relations will be automatically included in addidtion to the referenced
elements.
Criteria based selection, direct element references and includes can be combined in a view. First the selection is merged with the references in such a way, that key overrides and additions on references are preserved. Then the included elements are calculated and merged. This merge also preserves the key overrides and additions made on the references.
Therefore you can select the content with the :selection
and :include
keys
and customize the rendering with direct references in the :ct
vector of the
view.
Overarch supports custom styles for elements. For an example see views.edn.
key | type | values | description |
---|---|---|---|
:id | keyword | namespaced id | used to reference styles |
:for | keyword | :rel, :element | element type to be styled |
:line-style | keyword | :dashed, :dotted, :bold | line style for relations |
:line-color | hex rgb | #0000FF for bright blue | line color for relations |
:border-color | hex rgb | #FF0000 for bright red | border color for nodes |
:text-color | hex rgb | #003300 for dark green | text color for names and descriptions |
:legend-text | string | meaningful text to show in legend |
The specified views C4 architecture and UML viewscan be exported to PlantUML diagrams. These can be rendered into different formats (e.g. SVG, PNG, PDF) with PlantUML.
You can specify PlantUML specific directives with the :plantuml key of a view spec.
:spec {:plantuml {:sprite-libs [:azure]}}
key | type | example values | description |
---|---|---|---|
:node-separation | integer | 50 (for 50 pixels) | separation between nodes |
:rank-separation | integer | 250 (for 250 pixels) | separation between ranks |
:sprite-libs | vector | sprite-lib keywords | used to render sprites for techs, order defines precedence of the libs |
:skinparams | map | {"monochrome" "true"} | render generic skinparams (as skinparam <key> <value> ) |
Overarch supports PlantUML sprites to show a visual cue of the technology in the elements of a diagram. It does so by matching the value of the :tech key of a model element to the list of sprites. You can also directly add a :sprite key to the reference of a model element in a view. The explicit :sprite value takes precedence over the :tech value.
The list of sprites contains sprites of the PlantUML standard library, e.g. sprites for AWS and Azure. The mapping files from tech name to sprite reside in resources/plantuml.
Currently the following keys for sprite libs are supported:
The command line interface supports the option --plantuml-list-sprites
which prints the (long) list of sprite mappings.
The Visual Studio Code PlantUML Extension allows previewing and exporting these diagrams right from the IDE.
PlantUML plugins also exists for major IDEs and build tools (e.g. IntelliJ, Eclipse, Maven, Leiningen).
The concept view can be exported as a concept map to a GraphViz *.dot file.
For GraphViz there are a few Visual Studio Code extensions available that allow previews of the generated Graphviz files.
The images can be created with the dot executable, which resides in the bin directory of the GraphViz installation.
You can specify Graphviz directives with the :graphviz key in a view spec. Currently only the configuration of the layout engine is supported.
key | type | values | description |
---|---|---|---|
:engine | keyword | e.g. :dot, :neato, :sfdp | the graphviz layout engine to use |
Markdown is used to render textual representations of the views. You can use converters to generate other formats like HTML or PDF from markdown.
You can specify Markdown directives with the :markdown key in a view spec.
key | type | values | description |
---|---|---|---|
:references | boolean | true, false | render references for nodes |
:diagram | map | {:format "png"} | render diagram image |
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close