C4 model

From HandWiki
Revision as of 00:19, 7 February 2024 by WikiGary (talk | contribs) (simplify)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Short description: Technique for modelling software architecture
Abstractions of the C4 model: A software system is made up of one or more containers (web applications, databases, etc), each of which contains one or more components, which in turn are implemented by one or more code elements (classes, interfaces, objects, functions, etc)

The C4 model is a lean graphical notation technique for modeling the architecture of software systems.[1][2] It is based on a structural decomposition (a hierarchical tree structure) of a system into containers and components and relies on existing modelling techniques such as Unified Modeling Language (UML) or entity–relationship diagrams (ERDs) for the more detailed decomposition of the architectural building blocks.

History

The C4 model was created by the software architect Simon Brown between 2006 and 2011 on the roots of Unified Modelling Language (UML) and the 4+1 architectural view model. The launch of an official website under a Creative Commons license[3] and an article[4] published in 2018 popularised the emerging technique.[1]

Overview

The C4 model documents the architecture of a software system, by showing multiple points of view[5] that explain the decomposition of a system into containers and components, the relationship between these elements, and, where appropriate, the relation with its users.[3]

The viewpoints are organized according to their hierarchical level:[2][3]

  • Context diagrams (level 1): show the system in scope and its relationship with users and other systems;
  • Container diagrams (level 2): decompose a system into interrelated containers. A container represents an application or a data store;
  • Component diagrams (level 3): decompose containers into interrelated components, and relate the components to other containers or other systems;
  • Code diagrams (level 4): provide additional details about the design of the architectural elements that can be mapped to code. The C4 model relies at this level on existing notations such as Unified Modelling Language (UML), Entity Relation Diagrams (ERD) or diagrams generated by Integrated Development Environments (IDE).

For level 1 to 3, the C4 model uses 5 basic diagramming elements: persons, software systems, containers, components and relationships. The technique is not prescriptive for the layout, shape, colour and style of these elements. Instead, the C4 model recommends using simple diagrams based on nested boxes in order to facilitate interactive collaborative drawing. The technique also promotes good modelling practices such as providing a title and legend on every diagram, and clear unambiguous labelling in order to facilitate the understanding by the intended audience.

The C4 model facilitates collaborative visual architecting and evolutionary architecture in the context of agile teams where more formal documentation methods and up-front architectural design are not desired.[6]

See also

References

External links