JarAnalyzer has always had the ability to create a dot-compliant output file that could be used with GraphViz to generate a component diagram. In the past, this had always been done using the DOTSummary class. Unfortunately, this meant that if you wanted to generate output files in both xml and dot, you had to run JarAnalyzer twice. Now, thanks to a stylesheet that I graciously stole from JDepend and modified to work with JarAnalyzer, there’s a new way to generate a dot-compliant output file that is much nicer than what you’ll get when using DOTSummary. Plus, you only have to run JarAnalyzer once, then apply two stylesheets to the xml file generated to get both the html report and component diagram.
In addition to being a bit more efficient, it’s also cleaner. The old component diagram is shown at left on top, while the new component diagram using the stylesheet is shown at bottom left. The stylesheet avoids the confusion where DOTSummary changed the name of the .jar file and stripped off the .jar extension. As seen on the diagrams, a .jar file named bill.jar now actually appears as bill.jar on the component diagram, not bill.
The new stylesheet isn’t part of the JarAnalyzer distribution…yet, but you can download the stylesheet. To run JarAnalyzer as part of your Ant build script and get both the html and component diagram output, drop the stylesheet in the directory containing JarAnalyzer (the same directory with jaranalyzer.xsl), and modify your build script similar to the following (you need GraphViz installed to run dot):
<target name="dotanalyzerapp.new" depends="bundle">
<taskdef name="jaranalyzer"
classname="com.kirkk.analyzer.textui.JarAnalyzerTask">
<classpath>
<pathelement path="${buildlib}/jaranalyzer-1.2.jar"/>
<pathelement path="${buildlib}/lib/bcel-5.2.jar"/>
<pathelement path="${buildlib}/lib/jakarta-regexp-1.3.jar"/>
<pathelement path="${buildlib}/lib"/>
</classpath>
</taskdef>
<jaranalyzer srcdir="${buildstats}"
destfile="${buildstats}/appdependencies.xml"
summaryclass="com.kirkk.analyzer.textui.XMLUISummary"/>
<style in="${buildstats}/appdependencies.xml"
out="${buildstats}/appdependencies.html"
style="${buildlib}/jaranalyzer.xsl">
</style>
<style in="${buildstats}/appdependencies.xml"
out="${buildstats}/appdependencies.grph"
style="${buildlib}/jaranalyzer2dot.xsl">
</style>
<exec executable="dot" >
<arg line="-Tpng -Nshape=box -Nfontsize=30 -Nwidth=1.5
-Nheight=1.25<br></arg> ./buildstats/appdependencies.grph
-o ./buildstats/appdependencies.png">
</exec>
</target>
Leave a Reply