pumla
= PlantUML Manager
It seems that PlantUML is quite liked by a lot of software developers. With PlantUML they do architecture documentation even without an architect forcing them to do. One of the reasons for that is the text-based and code-like approach, I guess.
But PlantUML has a big drawback from my point of view (the systems and software architect point of view, but I am also a software developer): with PlantUML you basically program diagrams. What the architect would like to do is to "draw/model/program" a system/software model with the possibility to re-use the once-modelled elements in different views on different diagrams exposing different aspects, attributes, interactions and relations.
So the approach with pumla
is to dock onto the success of PlantUML but to extend it in order
to get rid of the "no re-usable model" drawback (and some other smaller drawbacks and
limitations).
Therefore, in order to enable systematic re-use for architecture models with PlantUML,
pumla
is intended to be an extension around PlantUML to organize and enable
this systematic re-use.
click to expand!
- Architecture modelling of bigger software solutions using PlantUML
- Have the same model elements in different diagrams as single source entities
- Keep the architecture descriptions close to the Source Code --> Architecture as text
- Allow modularity of the architecture elements and loose coupling --> no complicated include mechanisms with "paths" that then make refactoring hard --> architecture modelling files can be everywhere in the source tree and will be found.
- enable better "bridging"/mixing of the dynamic and the static world, e.g. state or sequence diagrams with deployment diagrams.
- Create an arc42 architecture documentation based on common PlantUML description patterns with almost no effort.
click to expand!
Here's an overview of the idea.
In blue you can see the parts developed as pumla
and how they interact
with other applications and documents during software development.
Here is a quick example from scratch to show you how to use pumla to make re-use of PlantUML-modelled elements. It consists of two steps: first you model the element in PlantUML with little pumla-specific adders to make it re-usable. Then as second step, you create a new diagram where you just re-use the element you modelled before on that diagram by putting it there with just one pumla command. See the following chapters for the details:
click to expand!
Of course you need to have pumla
installed. See further below for
installation instructions.
Then:
- Create a folder for the example.
- Change into that folder.
- Call
pumla setupprj
. That prepares your example folder as a project containing a pumla architecture documentation. 3 files should have been created in the folder:pumla_macros.puml
,pumla_blacklist.txt
andpumla_project_config.puml
. - Create a file like this:
File: simpleElement.puml
'PUMLAMR
@startuml
!include pumla_macros.puml
!include modelrepo_json.puml
PUMLAReUsableAsset("A simple Element", simpleElement, component, "<<block>>") {
PUMLARUAPutTaggedValues()
PUMLARUAInternals() {
component compA
component "compB"
component "signal processing"
}
}
PUMLARUAAddTaggedValue("Vendor", "A GmbH")
PUMLARUAInterface("interfaceA", ifA_simpleELement, "out")
note as dn_simpleElement
Example of a simple element.
This can be re-used.
end note
PUMLARUADescr(dn_simpleElement)
PUMLAReUsableAssetFinalize()
@enduml
After saving the file, call pumla update
. The model repository database
got created in a file called modelrepo_json.puml
. The model repo
contains the "simpleElement" that you created. So this can now easily
be re-used on other diagrams, see next step.
If you are using a PlantUML plugin in your editor, you directly see the code of the file rendered to a diagram like this:
click to expand!
Create a PlantUML diagram like this:
File: simpleDiagram.puml
@startuml
!include pumla_macros.puml
!include modelrepo_json.puml
!$PUMVarShowDescr = %false()
!$PUMVarShowInterfaces = %false()
!$PUMVarShowBodyInternals = %true()
!$PUMVarShowTaggedValues = %true()
title Put a re-usable element onto the diagram
' put the "simpleElement" from the model repository
' onto the diagram
PUMLAPutElement(simpleElement)
note as n1
The re-usable element "simpleElement"
is put onto the diagram.
Via the global variables, showing the
description of the element as well as
the interfaces is turned off.
So you have a different, more restrained
view on the element on this diagram.
end note
@enduml
This works out of the box, as everything the diagram needs is already
there, the pumla_macros.puml
as well as the model repo containing the
"simpleElement".
Again, in your editor with PlantUML plugin or when rendering the file explicitly with PlantUML, your diagram looks like this:
For more examples showing off the functionality and magic of pumla
, see the following examples:
follow this link to the Simple Hierarchical System example
This is a comprehensive set with a bigger model and a lot of different diagrams. Follow the following link to an overview on these examples:
follow this link to the WeatherStation examples
This is an advanced example showing how to re-use C4 model elements with pumla
. Follow this link
to an overview and description an that example:
follow this link to the C4 example
In order to play around with the previously mentioned examples, you need to initialise the examples repository to work on your system. To do that, take the following steps starting in the pumla package root directory (after following the installation steps of the next chapter, you are already there):
click to expand: prepare example "WeatherStation"
This is a comprehensive example showing off the standard PlantUML and pumla features.
cd test/examples/WeatherStation
pumla init
pumla update
click to expand: prepare example "C4example"
This is an example to show how the C4model extension of PlantUML can be used and also C4model elements can be made re-usable.
cd test/examples/C4example
pumla init
pumla update
click to expand: Explanation to preparation of both examples
The "init" step in both examples creates or updates the file "pumla_macros.puml", that connects your repo with the pumla installation/deployment on your computer. This step must only be executed once after a checkout/clone.
The "update" step creates or updates the modelrepo_json.puml with the current content of the examples repository and also considers the file structure/paths on your computer. This step needs to be executed everytime you changed something on the model repository, e.g. added a new re-usable architecture model element or changed an existing one.
In order to easily generate picture files (like .png) for the text-based diagram sources (PlantUML or pumla files), pumla has an easy-to-use installation mechanism for the PlantUML JAR lib. This downloads and installs a compatible version of the PlantUML JAR lib. To install that just call the following command (only needed once after pumla installation):
pumla installplantuml
If PlantUML has been installed that way successfully, you can use the pumla command line tool to generate corresponding picture files like this:
Change to an example source file folder:
cd test/examples/WeatherStation/anotherClass
Generate a picture file (default is .png):
pumla gendiagram ./anotherClass.puml
Generate an SVG picture file:
pumla gendiagram ./anotherClass.puml svg
To get the latest developments, clone this git repo to a place somewhere on your Mac/Raspberry Pi or other Unix-like system:
git clone https://github.com/DrMarkusVoss/pumla.git
cd pumla
pip install -e .
pumla setup
After that you should be able to call pumla <cmd>
at any place, e.g. pumla init
or pumla update
.
The following instructions work only for release equal to or newer than 0.8.3. For installation of older releases, please read the installation instructions in the README.md of the downloaded archive.
To get a release, do the following:
- go to the Release page, choose a release version and download the corresponding Source Code archive (.zip or .tar.gz).
- extract the archive
- change to the unpacked pumla folder, e.g.
cd pumla-0.8.3
- install pumla with:
pip install .
- call from same folder:
pumla setup
You can directly dive into the details by taking a look into the User's Guide:
This guideline gives you hints and rules in order to write
pumla
conforming PlantUML files, so that you can get the
benefit of model element and diagram re-use:
I use PyCharm
as development environment for developing
pumla
with the PlantUML integration
plugin and the
internal bundled markdown handling activated. That way
you have fast previews of the .puml
and markdown files.
- currently
pumla
supports only Unix-like systems like Linux, Unix, Raspbian/Raspberry Pi OS and MacOS. I didn't do the file paths handling in a way that it works across Windows and Unix platform, as I also do not have a Windows test platform at hand anymore. It is proven to run on my Macbook (Mojave) with Python 3.8.2 and Raspberry Pi 3 with Python 3.7.3 and pip3. - tested with PlantUML library v1.2022.6 (via the PyCharm Plugin "PlantUML integration" version 5.16.1)
- needs at least the PlantUML v1.2022.2, as now use of the %splitstr() preprocessor feature is made that was introduced then
The pumla
Architecture is also documented using pumla
.
Here is a first rough overview:
Link to pumla architecture documentation
See here:
Link to pumla wiki with roadmap
Here is a rough description of the test strategy:
Link to pumla test strategy document
Original pumla source code developed by Dr. Markus Voss 2021 - 2024.
Original pumla repository: https://github.com/DrMarkusVoss/pumla
Enjoy.