Overview of the Revision Graph feature
If you are just looking for a quick-start, then right-click on a file either in your local
workspace or the SVN Repository view and look for the "View file history as graph" option. This
will open the revision graph for the selected item. The option is enabled for files and folders
but really only works well for files. Depending on the size of your repository and whether
the local cache has already been built, you should see something like the following:
History Cache
The Subversion repository format is not naturally conducive to supporting a revision
graph because it does not store or record copy-to information in the repository. Consequently,
the only way to get this information is to retrieve the history of the entire repository and
calculate that information in the graph itself. For obvious reasons, this does not perform
well. To make performance generally acceptable we maintain a local cache of revision history
and update it when necessary. Of course this means the first time you use the option you will
take a performance hit while the cache is initially loaded. Subsequent actions should be relatively
quick and the cache will update with new revisions as needed.
The cache is associated with a repository, so if you have multiple projects from the same
repository, you do not need to maintain a separate cache for each project. We have added options
in the SVN Repository view to clear/build the cache for a repository. Those were mainly added to
make it easier for us to maintain the cache during development. They are not really needed in
normal usage but could become necessary if we run into bugs in maintaining the cache information.
A lot of effort went into making the cache as performant as possible.
We currently use a custom binary format that is yielding pretty good performance. When used on the
nearly 40k revision Subversion repository, as an example, the cache builds in around a minute. You
still might not want to use the feature on really large repositories, such as the Apache.org
repository.
Visualization
A major problem we have seen with other attempts at a Subversion revision graph is that
they are typically too big, with too much information, to be useful. We cannot claim to have
solved that problem but we have made attempts to "reduce the noise". For example, for any
location where an item has been copied but not modified, we treat it as a "tag" and rather than
showing it on the graph, we instead annotate the revision that was copied with the tag locations.
Another area where we help reduce noise is deleted branches. For this scenario, we give you
three options. You can simply hide these, show these or hide them only if the file was never
modified on the branch.
The revision graph was built using the Eclipse Draw2D/GEF plugins. It includes a number
of features that are common in plugins built on top of GEF. You can zoom in/out, export to
a graphic, and also navigate a large diagram using the Outline view.
There are certainly
improvements that could be made in the visualization. We went with the current approach as
it produced a compact, but generally useful visualization. We would welcome any experts
in graphics or GEF in particular to help make it better.
Support for Merge Information
We wanted to include support for showing merges on the revision graph. With Subversion
1.5 and the introduction of merge tracking, this is something that should now be possible.
What we discovered in testing and development was that the way the Subversion API currently works
it is not conducive to retrieving the merge information for an entire repository. It just killed
the performance. So what we did to offset this was the following. When the cache is built, it
does not gather any merge information, and when you bring up a graph you will not see any merge
information. However, for any given revision in the graph, you can select it and take the
"Refresh revision" option. That will go out and get the merge information for that revision,
store it in the cache, and re-draw the graph. Using the toolbar, you can refresh all of the
revisions on the graph at once, although performance for that option is not always great either.
This approach has allowed us to make the graph support the display of merge information and will
make it easier for us to improve this in the future as the Subversion API is refined to allow
this information to be retrieved in a way that is more performant.
Here is a simple example where the graph has been refreshed to show the merges: