C4 Diagrams

C4 Diagram: This is an experimental diagram for now. The syntax and properties can change in future releases. Proper documentation will be provided when the syntax is stable.

Mermaid’s c4 diagram syntax is compatible with plantUML. See example below:

<<person>>Banking Customer AA customer of the bank, with personal bank accounts.<<person>>Banking Customer B<<external_person>>Banking Customer Cdesc<<person>>Banking Customer DA customer of the bank, with personal bank accounts.<<system>>Internet Banking SystemAllows customers to view information about their bank accounts, and make payments.<<external_system_db>>Mainframe Banking SystemStores all of the core banking information about customers, accounts, transactions, etc.<<external_system>>E-mail systemThe internal Microsoft Exchange e-mail system.<<system_db>>Banking System D DatabaseA system of the bank, with personal bank accounts.<<system>>Banking System A<<system>>Banking System BA system of the bank, with personal bank accounts. next line.BankBoundary2[ENTERPRISE]<<system_queue>>Banking System F QueueA system of the bank.<<external_system_queue>>Banking System G QueueA system of the bank, with personal bank accounts.BankBoundary3[boundary]BankBoundary[ENTERPRISE]BankBoundary0[ENTERPRISE]UsesUsesSends e-mails[SMTP]Sends e-mails toSystem Context diagram for Internet Banking System

For an example, see the source code demos/index.html

5 types of C4 charts are supported.

  • System Context (C4Context)
  • Container diagram (C4Container)
  • Component diagram (C4Component)
  • Dynamic diagram (C4Dynamic)
  • Deployment diagram (C4Deployment)

Please refer to the linked document C4-PlantUML syntax for how to write the c4 diagram.

C4 diagram is fixed style, such as css color, so different css is not provided under different skins. updateElementStyle and UpdateElementStyle are written in the diagram last part. updateElementStyle is inconsistent with the original definition and updates the style of the relationship, including the offset of the text label relative to the original position.

The layout does not use a fully automated layout algorithm. The position of shapes is adjusted by changing the order in which statements are written. So there is no plan to support the following Layout statements. The number of shapes per row and the number of boundaries can be adjusted using UpdateLayoutConfig.

  • Layout
    • Lay_U, Lay_Up
    • Lay_D, Lay_Down
    • Lay_L, Lay_Left
    • Lay_R, Lay_Right

The following unfinished features are not supported in the short term.

There are two ways to assign parameters with question marks. One uses the non-named parameter assignment method in the order of the parameters, and the other uses the named parameter assignment method, where the name must start with a $ symbol.

Example: UpdateRelStyle(from, to, ?textColor, ?lineColor, ?offsetX, ?offsetY)

UpdateRelStyle(customerA, bankA, "red", "blue", "-40", "60")
UpdateRelStyle(customerA, bankA, $offsetX="-40", $offsetY="60", $lineColor="blue", $textColor="red")
UpdateRelStyle(customerA, bankA, $offsetY="60")

C4 System Context Diagram (C4Context)

<<person>>Banking Customer AA customer of the bank, with personal bank accounts.<<person>>Banking Customer B<<external_person>>Banking Customer Cdesc<<person>>Banking Customer DA customer of the bank, with personal bank accounts.<<system>>Internet Banking SystemAllows customers to view information about their bank accounts, and make payments.<<external_system_db>>Mainframe Banking SystemStores all of the core banking information about customers, accounts, transactions, etc.<<external_system>>E-mail systemThe internal Microsoft Exchange e-mail system.<<system_db>>Banking System D DatabaseA system of the bank, with personal bank accounts.<<system>>Banking System A<<system>>Banking System BA system of the bank, with personal bank accounts. next line.BankBoundary2[ENTERPRISE]<<system_queue>>Banking System F QueueA system of the bank.<<external_system_queue>>Banking System G QueueA system of the bank, with personal bank accounts.BankBoundary3[boundary]BankBoundary[ENTERPRISE]BankBoundary0[ENTERPRISE]UsesUsesSends e-mails[SMTP]Sends e-mails toSystem Context diagram for Internet Banking System

C4 Container diagram (C4Container)

<<external_system>>E-Mail SystemThe internal Microsoft Exchange system<<person>>CustomerA customer of the bank, with personal bank accounts<<external_system>>Mainframe Banking SystemStores all of the core banking information about customers, accounts, transactions, etc.<<container>>Single-Page App[JavaScript, Angular]Provides all the Internet banking functionality to cutomers via their web browser<<external_container>>Mobile App[C#, Xamarin]Provides a limited subset of the Internet banking functionality to customers via their mobile device<<container>>Web Application[Java, Spring MVC]Delivers the static content and the Internet banking SPA<<container_db>>Database[SQL Database]Stores user registration information, hashed auth credentials, access logs, etc.<<external_container_db>>API Application[Java, Docker Container]Provides Internet banking functionality via APIInternet Banking[CONTAINER]Uses[HTTPS]Uses[HTTPS]UsesDeliversUses[async, JSON/HTTPS]Uses[async, JSON/HTTPS]Reads from and writes to[sync, JDBC]Sends e-mails toSends e-mails using[sync, SMTP]Uses[sync/async, XML/HTTPS]Container diagram for Internet Banking System

C4 Component diagram (C4Component)

<<container>>Single Page Application[javascript and angular]Provides all the internet banking functionality to customers via their web browser.<<container>>Mobile App[Xamarin]Provides a limited subset ot the internet banking functionality to customers via their mobile mobile device.<<container_db>>Database[Relational Database Schema]Stores user registration information, hashed authentication credentials, access logs, etc.<<external_system>>Mainframe Banking SystemStores all of the core banking information about customers, accounts, transactions, etc.<<component>>Sign In Controller[MVC Rest Controller]Allows users to sign in to the internet banking system<<component>>Accounts Summary Controller[MVC Rest Controller]Provides customers with a summary of their bank accounts<<component>>Security Component[Spring Bean]Provides functionality related to singing in, changing passwords, etc.<<component>>Mainframe Banking System Facade[Spring Bean]A facade onto the mainframe banking system.API Application[CONTAINER]UsesUsesRead & write to[JDBC]Uses[XML/HTTPS]Uses[JSON/HTTPS]Uses[JSON/HTTPS]Uses[JSON/HTTPS]Uses[JSON/HTTPS]Component diagram for Internet Banking System - API Application

C4 Dynamic diagram (C4Dynamic)

<<container_db>>Database[Relational Database Schema]Stores user registration information, hashed authentication credentials, access logs, etc.<<container>>Single-Page Application[JavaScript and Angular]Provides all of the Internet banking functionality to customers via their web browser.<<component>>Security Component[Spring Bean]Provides functionality Related to signing in, changing passwords, etc.<<component>>Sign In Controller[Spring MVC Rest Controller]Allows users to sign in to the Internet Banking System.API Application[CONTAINER]1: Submits credentials to[JSON/HTTPS]2: Calls isAuthenticated() on3: select * from users where username = ?[JDBC]Dynamic diagram for Internet Banking System - API Application

C4 Deployment diagram (C4Deployment)

<<container>>Mobile App[Xamarin]Provides a limited subset of the Internet Banking functionality to customers via their mobile device.Customer's mobile device[Apple IOS or Android]<<container>>Single Page Application[JavaScript and Angular]Provides all of the Internet Banking functionality to customers via their web browser.Web Browser[Google Chrome, Mozilla Firefox, Apple Safari or Microsoft Edge]Customer's computer[Microsoft Windows or Apple macOS]<<container>>API Application[Java and Spring MVC]Provides Internet Banking functionality via a JSON/HTTPS API.Apache Tomcat[Apache Tomcat 8.x]bigbank-api*** x8[Ubuntu 16.04 LTS]<<container>>Web Application[Java and Spring MVC]Delivers the static content and the Internet Banking single page application.Apache Tomcat[Apache Tomcat 8.x]bigbank-web*** x4[Ubuntu 16.04 LTS]<<container_db>>Database[Relational Database Schema]Stores user registration information, hashed authentication credentials, access logs, etc.Oracle - Primary[Oracle 12c]bigbank-db01[Ubuntu 16.04 LTS]<<container_db>>Database[Relational Database Schema]Stores user registration information, hashed authentication credentials, access logs, etc.Oracle - Secondary[Oracle 12c]bigbank-db02[Ubuntu 16.04 LTS]Big Bank plc[Big Bank plc data center]Makes API calls to[json/HTTPS]Makes API calls to[json/HTTPS]Delivers to the customer's web browserReads from and writes to[JDBC]Reads from and writes to[JDBC]Replicates data toDeployment Diagram for Internet Banking System - Live