Click here to Skip to main content
15,860,943 members
Articles / Desktop Programming / Windows Forms

Diagrams with Reflector and the Graph Plug-in (Part 2)

Rate me:
Please Sign up or sign in to vote.
4.27/5 (7 votes)
23 Feb 2009CPOL6 min read 35K   1.1K   38   4
Graphing other dependencies, without Reflector now.

refractor.JPG

Introduction

In this article, we're going to try to generate useful diagrams of assemblies. I'm interested in assemblies primarily during the period of their development, but trying to understand an already completed assembly is a similar task.

The previous article (Diagrams with Reflector and the Graph Plugin (Part 1)) used Reflector as a host, hence the name of the article, but the new plug-ins use a new host called Refractor. This is all included in the download.

Background

Previously, we dealt with graphically showing which methods call which other methods, within a class. Classes come in all shapes and sizes, but the ones we're interested in diagramming are generally the ones that are difficult to understand. Typically, these include WinForms classes, where the linkage generated by events calling common methods rapidly becomes confusing. This was implemented via a plug-in to Reflector, and worked quite well.

This has already proved useful to me in my everyday job in several different ways:

  1. Whilst building a class, it's useful to keep track of the method call graph. Sometimes, I do this by hand, but having it readily available means I refer to it more often.
  2. While trying to understand someone else's class. Generally, I have the full source code for this, but it's probably been written by more than one person, and over a period of time, that leaves it difficult to understand.
  3. Whilst reviewing code, I can more easily check for oddities which can suggest a design issue.

I wanted to see if there were other useful diagrams out there, in "diagram-space". Quite quickly in fact, I needed diagrams of assembly dependencies whilst fixing a large build process, and I put together a similar plug-in to show this, for all assemblies within a project.

However, I had some issues with the host plug-in architecture.

  1. It was more difficult coding within the plug-in framework, in particular against an obfuscated host exe.
  2. The diagrams could take a long time to generate. There's no threading support in the host, so if I wanted threading, I'd have to bolt it into the plug-in myself, which seemed a little daunting at the time.
  3. I was very tired of hitting refresh and re-selecting my item for diagramming. It would be nice if the host could check for file updates, and re-load. Most people use Reflector to examine assemblies for which they don't have the source, so the assembly won't be changing. When you're developing an assembly, it changes all the time. This points to a different style of user for the host.
  4. I'm generally not interested in modules or resources, and the host tree was more confusing due to the inclusion of this, sometimes vital, information.
  5. I wasn't interested in the disassembly, which is the primary function of the host. Saying that, it's nice to have sometimes, and I've bolted in a disassembly viewer to the current host. No decompiler though!
  6. Lutz wasn't happy with me bundling Reflector with the plug-in, which is fair enough, but leaves me unable to produce a full working download.

Hence the new host.

Diagrams

Following on from the ClassMethods diagram of the first article, we have three more diagrams:

  1. AssemblyNamespaces: This has not been so useful for me, as most assemblies I deal with contain a single namespace, although it's good for seeing the exceptions to the case.
  2. NamespaceClasses: This has proved useful, in particular in spotting cyclic dependencies, and in showing the amount of complexity at the namespace level. Too much splitting, and there's not a lot there; too little splitting and there's too much there.
  3. AssemblyClasses: This is generally too wide in scope, and shows too much non-related functionality to be useful. Perhaps, it might be useful for small assemblies with an over-eager number of namespaces.

As well as the "inside" linkage of items (i.e., all those items contained by an item), we can also look at "outside" linkage, all those items that use, or are used by, an item. Conceptually, these have a "central" node, and then inward dependencies to the left, outwards, or the right. This can typically form a double fan, so I've called them "butterfly" diagrams to distinguish them.

Butterfly diagrams are more difficult to generate, as to discover the left hand side requires a search of anything that may use the item. This is the equivalent of "grepping" code, searching all source code for hits on an item, and is something your average developer does *a lot*. However, there is an up side, in that we're only interested in files we've opened as part of the host project.

  1. AssemblyButterfly
  2. While we already have a plug-in for AllAssemblies, with a large project it can be difficult to see for a single assembly, or slow to produce. This shows assemblies used by an assembly (as does Visual Studio), but also all assemblies that use this assembly (within the project). I've found this useful during build construction and maintenance.

  3. ClassButterfly
  4. This tells us who we inherit from, what we implement, who inherits or implements us, any class we use directly in functional fashion, and any class that uses us directly in functional fashion. This is quite useful in conjunction with the ClassMethod diagram - having both open and selecting a class gives you the inside view and the outside view next to each other. It's also an interesting way of navigating around the code. If I could trust that it had found every possible dependence, and if it could jump to lines of code, then it would be more useful, as a possible replacement for some of the "grepping".

  5. MethodButterfly
  6. All methods that may call the central method, and all methods that this method calls. Again, this can lead to interesting code navigation.

The GLEE viewer control

This does an amazing job of laying out a connected graph, with minimal user input. The curve drawing is fantastic. However, the control implementation is not so good, and the portion of the UI update that has to be run on the UI thread is large enough to cause freeze-time on large graphs.

I'd really like to have more flexibility with the graph - for instance, to be able to move nodes. Even hiding them proved to be a nightmare. Its placement of orphans is terrible. Sadly, it hasn't been updated on the MS site since 2006, so I assume it's not going to get updated at any point soon. I've spent some time looking at layout algorithms, and may try a replacement viewer in the near future - the plug-ins are isolated from the graph implementation.

Using the code

The entire package is quite large, and includes the library DLLs for the docking, the tree control, etc. If you've used Reflector, you shouldn't have any problems understanding the UI. There's no installer - unzipping produces the run folder, ready for program files or wherever if you decide to keep it. The source for the diagrams plug-in is also included, you should be able to open the project and hit Run. Alternatively, just run the exe in the bin folder, and drop a few DLLs/exes into the project window.

Please bear in mind that this code is still all prototype, and that it may, for one reason or another, miss certain kinds of dependencies. It should be used as a guide, and not as a definitive reference.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom
hughdoar@hotmail.com

Comments and Discussions

 
GeneralUpdate Pin
hughd18-Sep-09 7:48
hughd18-Sep-09 7:48 
GeneralTip on referencing DLLs, plus a couple wish-list items Pin
msorens9-Sep-09 6:28
msorens9-Sep-09 6:28 
GeneralVery interesting program Pin
Tom Bushell9-Jun-09 10:46
Tom Bushell9-Jun-09 10:46 
GeneralOutstanding Visualization Tool Pin
msorens28-Apr-09 7:57
msorens28-Apr-09 7:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.