vote up 5 vote down star

I'm looking for any tools that can give you code churn metrics (graphs and charts would be even better) for a Subversion repository.

One tool I know of is statsvn - a Java tool that creates some HTML reports and some code churn metrics. Statsvn reports the number of lines modified (churned) by user over time, some descriptive stats on LOC per file and folder/subfolder, etc.

I would like to know code churn in order to get a better idea of the state of the project. Idea behind this inspired by the MS research: Use of Relative Code Churn Measures to Predict System Defect Density

In a nutshell, the more that source code is churning (changing, whether adding new lines, deleting, changing,etc) the higher the probability that defects are being introduced into the system. The MS research paper says that the number of defects produced can be predicted based on a number of relative code churn measures.

I wanted to know if there are any others that are maybe open source, extensible, etc.

flag

What's wrong with StatSVN? :) – Jason Kealey Oct 16 '08 at 4:17
Well it's good, but I'm hoping to find a tool that spits out hardcore numbers so that I can visualize them in other ways, or plug them into other formulas. – Adam Nov 6 '08 at 22:48

7 Answers

vote up 1 vote down check

If you are willing to go the commercial route check out FishEye from Atlassian (also see their demo site ). FishEye also supports adding plugins (though this does not appear to be very well supported at this time).

link|flag
vote up 3 vote down

I'm curious; what does the LOC/Churn report tell you?

What are you hoping to accomplish with churn metrics?

link|flag
vote up 0 vote down

The only one i've ever heard of and used is statsvn, searching google doesnt return many results.

link|flag
vote up 0 vote down

You can probably use svn blame to get the date each line was changed and then use sed to pull out only the year and month and then use sort and uniq -c to generate a useful report.

link|flag
vote up 3 vote down

I have written a tool called 'svnplot' (which I admit was inspired by the output of StatSVN). Its written in python and available on Google code. http://code.google.com/p/svnplot. You can see the sample output at http://thinkingcraftsman.in/projects/svnplot/index.htm

The details/output are not as elaborate as 'fisheye'. Basically it converts the Subversion log history into a 'sqlite' database and then queries sqlite database to generate graphs. You can write your own queries using the created sqlite database.

See if it works for you.

link|flag
vote up 0 vote down

The Power Software tool, KEPM, is pretty focused on CHURN these days. JP

link|flag
vote up 0 vote down

try programeter.com which analyses Subversion and many other dev. tools.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.