I'm analyzing some legacy code. It is about 80.000 lines of old plsql code. There is quite some duplication in the source which needs to be removed. Instead off doing diff's manual and looking at each file there must be some tool/commandline confu out there to detect duplicate lines of source code.

My goal is to make an educated guess about the minimal size of a rewrite of source and about how much actual knowledge is captured in this program. I wrote some a basic static code analyzer to find the amount of control statements IF ELSE FOR etc and Functions in each file. But duplicated code still needs to be removed from my statistics.

Stephan.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Have you looked at Simian - Similarity Analyser? (Just checked and it's no longer free, but it is available for a period of 15 days for evaluation purposes.)

Simian (Similarity Analyser) identifies duplication in Java, C#, C, C++, COBOL, Ruby, JSP, ASP, HTML, XML, Visual Basic, Groovy source code and even plain text files. In fact, simian can be used on any human readable files such as ini files, deployment descriptors, you name it.

I have used it in practice and it does work well.

link|improve this answer
It was the best and easy to use tool I came across. The option to change the block size was very nice. -threshold=8 – Stephan Jan 19 '11 at 9:49
feedback

Sonar has duplication detection and claims to support PL/SQL, though I've never used it for that.

link|improve this answer
feedback

You would need to beg/borrow/steal/write a plsql parser and compare the resulting abstract syntax trees. With the size of the code base you have, that might be worthwhile. There would be other uses for the parser once you're done.

link|improve this answer
I found an antlr plsql grammar which after some minor fixes worked. I got a AST tree's from the source now. but I'm still clueless about how to get metrics out of them using this antlr tool. – Stephan Jan 18 '11 at 14:34
My theory is that duplicate code should parse to nearly identical AST's. As for metrics, you can count nodes of a specified type (e.g. statements, procedure definitions). – Larry Coleman Jan 18 '11 at 15:32
feedback

Your Answer

 
or
required, but never shown

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