Any good tool to generate dependency diagram?
Input: any simple format (not always source code) to describe dependency relation of several items. E.g. A depends on B, C; C depends on D, E ...
Output: nicely organized dependency diagram.
|
Any good tool to generate dependency diagram? Input: any simple format (not always source code) to describe dependency relation of several items. E.g. A depends on B, C; C depends on D, E ... Output: nicely organized dependency diagram. |
||||
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Graphviz is what you need. (examples: click on each picture to see the code in DOT grammar that was used to generate the graph). It can handle directed and undirected graphs. (BTW: doxygen uses graphiz to generate its graphs output) |
|||||
|
|
Lately I have been using yuml.me, which has some nice features including several diagram types and short URLs. For example, this URL: |
|||||||
|
|
|
You would probably want to try graphviz as what other said. To test-drive graphviz, you may visit this site Ajax/Graphviz. You can copy and paste this simple code to the site and see the generated graph
There are more things that can be played around, try search for a tutorial, i got mine in pdf format titled Drawing graphs with dot (Emden Gansner and Eleftherios Koutsofios and Stephen North) dated January 26, 2006.. which is very detailed. This is just another example to show a FSM-variant
|
||||
|
|
|
NDepend comes with a dependency graph coupled with a dependency matrix. You can try NDepend straight on your code thanks to a Free Trial Edition. See screenshoots extracted from the documentation: NDepend Graph
NDepend also comes with a Dependency Structure Matrix, very useful when the graph becomes too big:
|
||||
|
|
|
Doesn't Doxygen generate dependency diagrams (if you have Graphviz as well)? I always thought it did; it does various other diagrams to be sure. |
|||
|
|
|
I needed something similar, but didn't want to pay for (or install) a tool to do it. I created a quick PowerShell script that goes through the project references and spits them out in a yuml.me friendly-format instead:
|
|||
|
|
|
If you can make your input conform to XMI format then most UML programs should do what you want. I've done it myself using ArgoUML. Example of XMI:
I don't have names specified in here but from memory they're quite simple. |
|||
|
|
|
As others said, Graphiz is really good way to go. However, you may want to have some automatic tools that generates such kind of information from your source code. It is possible. For Python there is an existing tool, for others I don't know. Just a tip. |
|||||
|
|
Others have mentioned Doxygen. Here are some screenshots of its inheritance diagrams: The base class (you can see FormDate, which has additional children):
A subclass with no inherited classes:
|
|||
|
|
|
Visual Studio 2010 Ultimate supports creating dependency graphs from .NET code: How to: Generate Graph Documents from Code: http://msdn.microsoft.com/en-us/library/dd409453%28VS.100%29.aspx#SeeSpecificSource
How to: Find Code Using Architecture Explorer: http://msdn.microsoft.com/en-us/library/dd409431%28VS.100%29.aspx
RC download: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=457bab91-5eb2-4b36-b0f4-d6f34683c62a. Visual Studio 2010 Architectural Discovery & Modeling Tools forum: http://social.msdn.microsoft.com/Forums/en-US/vsarch/threads |
|||
|
|
|
LaTeX with some packages added. |
||||
|
|
|
Would Structure101 be any use? |
|||
|
|
|
As silly as it seems, if you don't need to print or use it (and you're just doing it to organize your thoughts) you can use Visual Studio's Class Designer with Interfaces, since they support inheritance, and multiple inheritance. It prevents circular dependencies as well. |
|||
|
|
|
go to code project and type in dependency tool by josh smith. great tool. that guy is a genius. |
|||||
|