MSCViewer

A tool for visualization and analysis of sequence diagram chart models. To download a binary release, please go to the Release section below.

Download .zip Download .tar.gz View on GitHub

Binary Release

While MSCViewer is opensource, if you want to save yourself the hassle of building you can pick up a prebuilt release in your favorite archive format:

Just uncompress it in any directory, and run bin/mscviewer. For your convenience some example input files are provided in the examples directory.

What is MSCviewer?

MSCViewer is a tool for visualization and analysis of diagrams loosely based on UML Message Sequence Charts. Simply put, the tool loads a text file with a subset of lines in written in a simple JSON format, and creates a sequence diagram model out of it. The user can navigate the model interactively, or even write Python script to analyze it.

The tool is extremely useful for visualization and interactive analysis of execution traces/logs for systems with a large number of cooperating entities (processes, threads, etc.). By interactive we mean the tool doesn't produce a static picture of a sequence diagram: the user can interactively open as many entities as desired, sort them in the preferred order, search on events and interactions, filter undesired elements from the view, etc. Of course, if desired the user can also create a PNG capture of the current diagram.

This screen capture shows, for example, the use of MSCViewer in the context of OpenStack.

MSCViewer can also be used to create sequence diagrams for documentation, by simply typing the model for the desired diagram in a text editor.

The real power of MSCViewer though comes from the integration with a Python engine. Through this, the user can write python scripts to navigate the model. This opens a world of possibilities, including:

  • Flow-based Automated Testing: scripts can test that the trace produce by a system contains certain distributed computational flows, and that such flows are operating as expected
  • Ability to create custom graphs from the data in the model

Features

The following is a non-exhaustive list of features:

  • Extended Message Sequence Chart model and visualization - Traditional UML message sequence charts are indended for use during system design, to clearly capture the expected interactions across different entities involved in carrying on a particular flow. When visualizing traces/logs from a system execution the interactions for a flow of interest can appear together with tens or hundreds of unrelated interactions. In order for the user to be able to identify regions of interest in the data at a glance MSCViewer model expands on the concepts defined in UML Sequence Diagram Charts, adding typed events, which can be visualized with type-specific icons. An event represent something interesting happening on an entity. Certain events are paired together into an interaction. MSCViewer doesn't prescribe a particular set of events or interactions; different domains can have different type of events and interactions, and different ways to render them.

  • Event annotation - In addition to a representation via a type-specific icon, an event has an associated timestamp and label that can be visualized in the diagram

  • Event auxiliary data - an event can also have associated structured data is visualized in a separate tab in MSCViewer when the event is selected

  • Interactive Entity Selection - the user can choose which entities to see in the diagram by double-clicking on the desired ones from a tree. Once opened, entities can be organized in the preferred order by dragging their "heads". Entity columns cn be enlarged or shrank by using the '+' and '-' keys. Interactions outgoing or incoming into an entity for which the other entity involved is not open are visualized as arrow stubs.

  • Easy cursor-key navigation - The user can select an event with the mouse pointer. From then on by pressing SHIFT + cursor keys the user can navigate across events on the same entity, or to other entities through interactions. Navigating trhough an arrow stub and furhter "pushing" towards the open end of the stub causes the missing entity to be automatically opened in the diagram.

  • model-based search - A search widget allow to type expressions such as, for example, "label contains "foo"" to search through all events whose label contains the "foo" substring. The widget provides automatic completion of the search syntax by pressing the TAB key.

  • model-based filtering - Similar to the search above, but events not matching the expression are omitted from the diagram.

  • Topologically sorted graph - MSCViewer doesn't assume that the entire system has a unified concept of time, as in typical distributed systems clocks can be somewhat out of sync. MSCViewer gives priority to the partial ordering imposed by interactions when sorting events to be visualized. This means that if the input file describes an interaction going from event e1 at time T to event e2 at time T-delta, then even if in the input file e2 appears before e1, in the diagram e1 will appear first.

  • Python integration - this may be the most powerful feature of the tool. The internal Java model can be traversed from python scripts to perform all sorts of validations or computations. The scripts can be invoked from the GUI, which automatically discovers them and provides the ability to pass parameters at the invocation. Alternatively, MSCViewer can be run in batch mode, where it will load the input file and execute the desired Python scripts without ever opening a GUI. This mode is particularly useful for the execution of smoke tests.

For more information, take a look at the (somewhat incomplete) PDF manual