UML::Translators

A package for translating code to UML specifications and UML specifications to code.

Raku UML::Translators

In brief

This repository is for a Raku package for the translations of code into Unified Modeling Language (UML) specifications and vice versa.

Currently, the package only translates Object-Oriented Programming (OOP) Raku code into:

  • The Domain Specific Language (DSL) of PlantUML

  • Argument specification of the UML class diagram function UMLClassGraph of the Mathematica / Wolfram Language (WL) package [AAp1]

Future plans

A fully fledged version of this package would translate:

  • C++, Java, Kotlin, or Raku code into UML specs

  • UML specs into C++, Java, Kotlin, or Raku code

Currently, only UML specs are generated to PlantUML's DSL and a much poorer WL DSL. Ideally, subsequent versions of this package would be able to use UML specifications encoded in XML and JSON.

Installation

From zef's ecosystem

zef install UML::Translators

From GitHub

zef install https://github.com/antononcube/Raku-UML-Translators.git 

Command Line Interface (CLI)

> to-uml-spec --help
Usage:
  to-uml-spec [--type=<Str>] [-I=<Str>] [--attributes] [--methods] [--conciseGrammarClasses] [--format=<Str>] <packageName> -- Make a UML diagram for a specified package.
  
    <packageName>              Package name.
    --type=<Str>               Type of the UML diagram. [default: 'class']
    -I=<Str>                   Using include path to find libraries. [default: '']
    --attributes               Should the class attributes be included in the UML diagrams or not? [default: True]
    --methods                  Should the class methods be included in the UML diagrams or not? [default: True]
    --conciseGrammarClasses    Should grammar classes be shortened or not? [default: True]
    --format=<Str>             Format of the output, one of 'Plant', 'PlantUML', 'WL', 'WLUML', or 'Whatever'. [default: 'PlantUML']

Usage examples

Using the script to-uml-spec:

to-uml-spec --/methods --/attributes "Lingua::NumericWordForms"

With this shell command we generate a Plant UML spec for the package "Chemistry::Stoichiometry" and create the UML diagram image with a local PlantUML JAR file (downloaded from [PUML1]):

to-uml-spec --/methods --/attributes 'Chemistry::Stoichiometry' | java -jar ~/Downloads/plantuml-1.2022.5.jar -pipe -tjpg > /tmp/myuml.jpg

Raku session

UML for ad hoc classes

use UML::Translators;
module MyPackageClass {
  role A { method a1 {} }
  class B does A { has $!b0; method b1 {} }
  class C does A is B { has $!c0; method c1 {} }
}
to-uml-spec('MyPackageClass')
# @startuml
# class MyPackageClass::B  {
#   {field} $!b0
#   {method} BUILDALL
#   {method} a1
#   {method} b1
# }
# MyPackageClass::B --|> MyPackageClass::A
# 
# 
# class MyPackageClass::A <<role>> {
#   {method} a1
# }
# 
# 
# class MyPackageClass::C  {
#   {field} $!b0
#   {field} $!c0
#   {method} BUILDALL
#   {method} a1
#   {method} c1
# }
# MyPackageClass::C --|> MyPackageClass::B
# MyPackageClass::C --|> MyPackageClass::A
# 
# 
# @enduml

UML for packages

Get PlantUML code for the package 'Chemistry::Stoichiometry':

say to-uml-spec('Chemistry::Stoichiometry'):!methods:!attributes
# @startuml
# class Chemistry::Stoichiometry::ResourceAccess  {
# }
# 
# 
# class Chemistry::Stoichiometry::Grammar <<grammar>> {
# }
# Chemistry::Stoichiometry::Grammar --|> Grammar
# Chemistry::Stoichiometry::Grammar --|> Match
# Chemistry::Stoichiometry::Grammar --|> Capture
# Chemistry::Stoichiometry::Grammar --|> Chemistry::Stoichiometry::Grammar::ChemicalElement
# Chemistry::Stoichiometry::Grammar --|> Chemistry::Stoichiometry::Grammar::ChemicalEquation
# Chemistry::Stoichiometry::Grammar --|> NQPMatchRole
# 
# 
# class Chemistry::Stoichiometry::Actions::EquationBalance  {
# }
# Chemistry::Stoichiometry::Actions::EquationBalance --|> Chemistry::Stoichiometry::Actions::EquationMatrix
# 
# 
# class Chemistry::Stoichiometry::Actions::EquationMatrix  {
# }
# 
# 
# class Chemistry::Stoichiometry::Actions::MolecularMass  {
# }
# 
# 
# class Chemistry::Stoichiometry::Actions::WL::System  {
# }
# 
# 
# @enduml

Get WL UML graph spec for the package [AAp1]:

say to-uml-spec('Chemistry::Stoichiometry', format => 'wluml')
# UMLClassGraph[
# "Parents" -> Flatten[{"Chemistry::Stoichiometry::Grammar" \[DirectedEdge] "Grammar", "Chemistry::Stoichiometry::Grammar" \[DirectedEdge] "Match", "Chemistry::Stoichiometry::Grammar" \[DirectedEdge] "Capture", "Chemistry::Stoichiometry::Grammar" \[DirectedEdge] "Chemistry::Stoichiometry::Grammar::ChemicalElement", "Chemistry::Stoichiometry::Grammar" \[DirectedEdge] "Chemistry::Stoichiometry::Grammar::ChemicalEquation", "Chemistry::Stoichiometry::Grammar" \[DirectedEdge] "NQPMatchRole", "Chemistry::Stoichiometry::Actions::EquationBalance" \[DirectedEdge] "Chemistry::Stoichiometry::Actions::EquationMatrix"}],
# "RegularMethods" -> Flatten[{"Chemistry::Stoichiometry::ResourceAccess" -> {"BUILDALL", "get-atomic-number", "get-atomic-weight", "get-element-data", "get-language-names-data", "get-number-of-elements", "get-standard-name", "getNumberOfInstances", "getNumberOfMakeCalls", "instance", "make", "new"}, "Chemistry::Stoichiometry::Grammar" -> {"Ac-stoichiometry", "Ag-stoichiometry", "Al-stoichiometry", "Am-stoichiometry", "Ar-stoichiometry", "As-stoichiometry", "At-stoichiometry", "Au-stoichiometry", "B-stoichiometry", "BUILDALL", "Ba-stoichiometry", "Be-stoichiometry", "Bh-stoichiometry", "Bi-stoichiometry", "Bk-stoichiometry", "Br-stoichiometry", "C-stoichiometry", "Ca-stoichiometry", "Cd-stoichiometry", "Ce-stoichiometry", "Cf-stoichiometry", "Cl-stoichiometry", "Cm-stoichiometry", "Cn-stoichiometry", "Co-stoichiometry", "Cr-stoichiometry", "Cs-stoichiometry", "Cu-stoichiometry", "Db-stoichiometry", "Ds-stoichiometry", "Dy-stoichiometry", "Er-stoichiometry", "Es-stoichiometry", "Eu-stoichiometry", "F-stoichiometry", "Fe-stoichiometry", "Fl-stoichiometry", "Fm-stoichiometry", "Fr-stoichiometry", "Ga-stoichiometry", "Gd-stoichiometry", "Ge-stoichiometry", "H-stoichiometry", "He-stoichiometry", "Hf-stoichiometry", "Hg-stoichiometry", "Ho-stoichiometry", "Hs-stoichiometry", "I-stoichiometry", "In-stoichiometry", "Ir-stoichiometry", "K-stoichiometry", "Kr-stoichiometry", "La-stoichiometry", "Li-stoichiometry", "Lr-stoichiometry", "Lu-stoichiometry", "Lv-stoichiometry", "Mc-stoichiometry", "Md-stoichiometry", "Mg-stoichiometry", "Mn-stoichiometry", "Mo-stoichiometry", "Mt-stoichiometry", "N-stoichiometry", "Na-stoichiometry", "Nb-stoichiometry", "Nd-stoichiometry", "Ne-stoichiometry", "Nh-stoichiometry", "Ni-stoichiometry", "No-stoichiometry", "Np-stoichiometry", "O-stoichiometry", "Og-stoichiometry", "Os-stoichiometry", "P-stoichiometry", "Pa-stoichiometry", "Pb-stoichiometry", "Pd-stoichiometry", "Pm-stoichiometry", "Po-stoichiometry", "Pr-stoichiometry", "Pt-stoichiometry", "Pu-stoichiometry", "Ra-stoichiometry", "Rb-stoichiometry", "Re-stoichiometry", "Rf-stoichiometry", "Rg-stoichiometry", "Rh-stoichiometry", "Rn-stoichiometry", "Ru-stoichiometry", "S-stoichiometry", "Sb-stoichiometry", "Sc-stoichiometry", "Se-stoichiometry", "Sg-stoichiometry", "Si-stoichiometry", "Sm-stoichiometry", "Sn-stoichiometry", "Sr-stoichiometry", "TOP", "Ta-stoichiometry", "Tb-stoichiometry", "Tc-stoichiometry", "Te-stoichiometry", "Th-stoichiometry", "Ti-stoichiometry", "Tl-stoichiometry", "Tm-stoichiometry", "Ts-stoichiometry", "U-stoichiometry", "V-stoichiometry", "W-stoichiometry", "Xe-stoichiometry", "Y-stoichiometry", "Yb-stoichiometry", "Zn-stoichiometry", "Zr-stoichiometry", "bond-symbol", "branch", "chain", "chemical-element", "chemical-element-mult", "chemical-equation", "dot-symbol", "group", "group-mult", "hv-sunlight", "mixture", "mixture-plus", "mixture-term", "molecule", "number", "smile", "sub-molecule", "yield-symbol"}, "Chemistry::Stoichiometry::Actions::EquationBalance" -> {"BUILDALL", "TOP", "chemical-equation", "null-space-basis"}, "Chemistry::Stoichiometry::Actions::EquationMatrix" -> {"BUILDALL", "TOP", "chemical-element", "chemical-element-mult", "chemical-equation", "group", "group-mult", "hv-sunlight", "make-basis-vector", "make-vector", "mixture", "mixture-term", "molecule", "number", "sub-molecule"}, "Chemistry::Stoichiometry::Actions::MolecularMass" -> {"BUILDALL", "TOP", "chemical-element", "chemical-element-mult", "chemical-equation", "group", "group-mult", "hv-sunlight", "mixture", "mixture-term", "molecule", "number", "sub-molecule"}, "Chemistry::Stoichiometry::Actions::WL::System" -> {"BUILDALL", "TOP"}}],
# "Abstract" -> Flatten[{"Chemistry::Stoichiometry::Grammar::ChemicalElement", "Chemistry::Stoichiometry::Grammar::ChemicalEquation", "NQPMatchRole"}],
# "EntityColumn" -> False, VertexLabelStyle -> "Text", ImageSize -> Large, GraphLayout -> "CircularEmbedding"]

Classes in a name space

Get the classes of a name space:

.say for get-namespace-classes( 'ML::TriesWithFrequencies' ).map({ $_ ~~ Str ?? $_ !! $_.^name }).sort
# ML::TriesWithFrequencies::LeafProbabilitiesGatherer
# ML::TriesWithFrequencies::ParetoBasedRemover
# ML::TriesWithFrequencies::PathsGatherer
# ML::TriesWithFrequencies::RegexBasedRemover
# ML::TriesWithFrequencies::ThresholdBasedRemover
# ML::TriesWithFrequencies::Trie
# ML::TriesWithFrequencies::TrieTraverse
# ML::TriesWithFrequencies::Trieish
# TRIEROOT
# TRIEVALUE

References

[AA1] Anton Antonov, et al., "Find programmatically all classes, grammars, and roles in a Raku package", (2021), StackOverflow.

[AAp1] Anton Antonov, "UML Diagram Generation Mathematica package", (2016), MathematicaForPrediction at GitHub/antononcube.

[ES1] Eugene Steinberg and Vojtech Krasa, PlantUML integration IntelliJ IDEA plugin, JetBrains Plugins Marketplace.

[GV1] graphviz.org.

[PUML1] plantuml.com.

[PUML2] PlantUML online demo server.

[UMLD1] uml-diagrams.org.

[WK1] Wikipedia entry, "Graphviz".

[WK2] Wikipedia entry, "PlantUML".

[WK3] Wikipedia entry, "Unified Modeling Language".

UML::Translators v0.1.0

A package for translating code to UML specifications and UML specifications to code.

Authors

  • Anton Antonov

License

Artistic-2.0

Dependencies

Test Dependencies

Provides

  • UML::Translators

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.