Welcome to RandyLoops! SourceForge Logo

Main

Group Members

Documentation

Files

Wiki Page

Meeting Notes

Metrics

The metric suite that we chose to use for our metric gathering this semester is JStyle. JStyle is specifically designed to look for metrics associated with object orientated programming, and in particular the Java programming language. This we found to be well suited our project Randyloops, because of its Java implementation. JStyle gave us the option of looking at metrics over the entire project, particular files, individual classes, and individual methods. The class metric summaries in JStyle were used to display many of the standard metrics found in object-orientated programming for each class in our project. These include Depth of Inheritance Tree, Response of Class, Weighted Methods per Class, Lack of Cohesion, and many more. In large object-orientated projects these metrics would be rather helpful as they would help indicate when certain classes are becoming too large, the misuse of inheritance, the abundance of message passing between classes, and other problems. Our project Randyloops however, is comprised of only a few classes, with a limited amount of inheritance. After running JStyle on Randyloops and bringing up the class metric report, we found that many metrics were insignificant to our project and the others were at very low levels. This was a little helpful in that it reassured that we were not abusing any part of object-orientated programming, but because of the scale of our project this was expected and did not really modify the way in which we approached our work. The method metric report in JStyle however, was a little more useful. The method metrics gathered by JStyle include Number of Statements, Cyclomatic Number, Number of static variables, and many others. Using the method metric spreadsheet in JStyle was somewhat helpful in organizing our methods into a single list so that we could observe their complexities as we worked on our project. In particular there were cases in which we observed either high coupling between two methods or a lack of cohesion in a single method. This prompted us to merge or split methods as appropriate. Using JStyle to collect metrics was a little helpful, but would have been more useful if our project was on a larger object-orientated scale. We first used JStyle to gather metrics during the metric homework assignment. We continued to gather metrics on our project after each subsequent release and in some cases when we modified specific files. Our metric results can be found at the links below. Also for questions regarding JStyle, visit http://www.mmsindia.com/jstyle.html

Due to the sheer number of files generated by JStyle, you may download the entire metrics package for a paticular release here. The root file for each set of metrics is METSummary.html

homework_metrics.zip - contains the metrics for the version that existed at the time of the metrics homework, dated about Feb. 20.

anydir_metrics.zip - contains the metrics just after we fixed the directory limitation on RandyLoops, dated around April 5.

beginning_parser.zip - contains the metrics for the code just after we added the ability to view the style information in the GUI, dated around April 30.

randyloops-050603_metrics.zip - contains the metrics for the version of randyloops which allows for editing of the style files in the GUI, dated around May 3.

randyloops-050603-v2_metrics.zip - contains the metrics for the 5/6 release, which randomly generates midi music and fixes some bugs in the style editor

randyloops-050803-v2_metrics.zip - metrics for the final 5/8 release. Contains several fixes and improvements to the style editor, along with a new splash screen.

finalver1.zip - metrics for the 05/12 randyloops presentation. Contains a few new features.

finalver2.zip - metrics for the bugfix release of the 05/12 presentation version. The random number generation has been improved and there has been a slight code reduction in the generator.