PlantUML uses
Graphviz/DOT to compute node positionning for some UML diagrams (only
usecase diagrams,
class diagrams,
object diagrams,
component diagrams,
deployment diagram,
state diagrams and
Legacy activity diagrams).
The fact that DOT computes automatically the position of node is a key feature, and algorithms implemented in DOT usually give very good result.
However, there are some drawbacks of using DOT :
the computation is done by an external program (
dot.exe
on Windows,
dot
on linux), and that means that :
- PlantUML has to create a new process for each diagram, (and communication with this new process could be source of bugs).
- Users have to install DOT on their system, in addition of Java.
- PlantUML is not fully portable.
Another way of using DOT would be to use it as a library, and to link it with PlantUML using JNI
(Java Native Interface) but that would not be perfect thought.
If a Java version of Graphviz/DOT would exist, this would allow to greatly simplify the installation and the use of PlantUML.
So we have started a port from C to Java of GraphViz/DOT source code: see
Smetana project