Automatic tool to generate Sequence and Class Diagrams (UML)

31 Ansichten (letzte 30 Tage)
per isakson
per isakson am 6 Feb. 2012
Bearbeitet: Benjamin am 4 Nov. 2024
Last month, 2020-10-03, I uploaded
which is a complete rewrite. (It generates UML class diagrams from m-code.)
=====================================
Answer 2 on 2012-03-10:
Answer 2 on 2012-03-07: I replaced the diagram. The possibilities to control the layout are limited. How much control is needed?
Answer 2 on 2012-02-29: What characteristics of a UML sketching and documentation tool are required to make it useful in the design and programming process?
Answer 1 on 2012-02-24: I have started to make a tool.
Question on 2012-02-12: Does it exist a tool to automatically generate UML-diagrams from Matlab m-code? If not I plan to make a simple tool.
=====================================
I want an automatic tool to generate UML diagrams from MATLAB code. Thus, I ask for your comments on the following idea. Is is worth to try? Is there already such a tool for MATLAB? There are for other languages.
Currently, I sporadically use the interactive tool UMLet, which is really easy to use. However, I don't update the diagrams when I make changes to my MATLAB-code.
The idea is to put together a tool that consists of three parts
  • A home made MATLAB-code that reads MATLAB class definition files and writes code in a simple domain specific language, DSL, for PlantUML
  • PlantUML converts the DSL-code to a GraphViz dot-file
  • GraphViz produces the diagrams
I have looked at the three open source tools, TextUML, UMLGraph and PlantUML. I have experimented a bit with PlantUML and picked that.
I hope to get something working in a short time. However, there is a tool, PlantUML Dependency, which creates code for PlantUML from Java-code. It's many lines of code!
There are a number of contributions in the File Exchange. I'll study them.
Here is a list of the tools that I've found.
Maybe, The Mathworks has a tool that can be contributed to the File Exchange. However, I assume that this UML Class Diagram is not generated automatically.
  8 Kommentare
Jason
Jason am 15 Mär. 2022
Hi Michelle,
After using the Class Diagram Viewer (and the related Dependency Analyzer) in R2022a, I've come to realize that they both lack a way to visualize composition. That is, the use of class instances that utilize other objects as its properties. You can show dependencies in the Dependency Analyzer, but that is information overload because it shows function calls, etc. At least in my experience, I find it much easier to explain a project hierarchy to others in terms of its composition, rather than inheritance aspects.
Thanks,
Jason
Benjamin
Benjamin am 4 Nov. 2024
Bearbeitet: Benjamin am 4 Nov. 2024
I'd totally second this.
The new Class Diagram Viewer is nice but it lacks the (essential) functionality to display not just (static, "is-a") inheritance but also (dynamic, "has-a") composition.
That way dependencies between classes would be much more apparent:
  • Which class makes use of which other class?
  • Which class holds or references an instance of another class?
I think there is some more development to the Class Diagram Viewer necessary before it becomes really, really useful.
Though I like what I see in R2023b already. :-)

Melden Sie sich an, um zu kommentieren.

Antworten (2)

per isakson
per isakson am 24 Feb. 2012
I've done some experiments with PlantUML+Graphviz. My Matlab tool automatically generates PlantUML-code based on the m-files. This class diagram is based on the classes, which are provided in the FEX-contribution "Class Inheritance Browser". (I can use some advise on including pictures.)
UML diagrams can include a lot of detail. How much detail is useful? How do I extract the needed information from the Matlab-code? I know of meta.class.fromname, profile('info'), evalc( 'mlint( ''-calls'', filespec )' ); and my tracer4m.
Is it a good idea to write "UML-code" in the comments of the m-files for this tool to read? Is there a "language" that I could borrow from? (V) in the diagram stands for value-class.
UML-diagrams for real programs easily becomes so huge and cluttered that they are useless. Would it be a good idea to include "UML-code" in comments of the m-files, based om which it is possible to filter the diagram, e.g conditionally exclude unimportant classes?
I need help to make a useful tool and FEX-contribution!
  3 Kommentare
per isakson
per isakson am 24 Feb. 2012
And inherits twice from Car
per isakson
per isakson am 29 Feb. 2012
I defined the class Taxi twice.

Melden Sie sich an, um zu kommentieren.


per isakson
per isakson am 29 Feb. 2012
2010-03-07: I replaced the diagram. (S) stands for Singleton.
================
I incude a Class Diagram that I just generated automatically. It shows some classes from an experiment I did last year. The red square in ICE_waitbar indicates that it is a singleton; the constructor is private. The last thing I did was to suppress displaying of inherited properties and methods. (H) stands for inheritance from the handle class. I don't want a separate box for the handle class.     
The associations between State and IceProxy looks a bit strange. (I cannot do much to the crossing arrows!)
Now, I'm need to think about the requirements. What would be useful and what not. Goals:
  • The diagram shall provide overview. 
  • Little effort and little distraction; m2uml must not disturb the workflow 
  • Simple and cheap (require little time) to use 
  • Include m-functions in the class diagram.  
Would it be a good idea to include "significant comments" in the comments of the Matlab source code? That is to say short strings preceded by some special character, e.g. "¤". For example, I thought about the codes "¤L1", "¤L2" and "¤L3" (level 1,2 and 3) to use a bit like outline view in Ms Word. A class at level, L3, would not be included in an overview. From there it is easy to envision a set of keywords forming a kind of language. Multiplicity might be specified with a "significant comment"
-

Kategorien

Mehr zu Function Creation finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by