I have a Perl codebase, and there are a lot of redundant functions and they are spread across many files.
Is there a convenient way to identify those redundant functions in the codebase? Is there any simple tool that can verify my codebase for this?
|
4
|
I have a Perl codebase, and there are a lot of redundant functions and they are spread across many files. Is there a convenient way to identify those redundant functions in the codebase? Is there any simple tool that can verify my codebase for this?
|
||||
|
|
|
You could use the B::Xref module to generate cross-reference reports. |
|||
|
|
|
I've run into this problem myself in the past. I've slapped together a quick little program that uses PPI to find subroutines. It normalizes the code a bit (whitespace normalized, comments removed) and reports any duplicates. Works reasonably well. PPI does all the heavy lifting. You could make the normalization a little smarter by normalizing all variable names in each routine to $a, $b, $c and maybe doing something similar for strings. Depends on how aggressive you want to be.
|
||||||
|
|
|
If you are on Linux you might use Here's an over-simplified example:
You can look for duplicates this way too. This idea may be less effective if you are using Perl's OOP capability. It might also be worth mentioning NaturalDocs, a code documentation tool. This will help you going forward. |
||||
|
|
|
It may not be convenient, but the best tool for this is your brain. Go through all the code and get an understanding of its interrelationships. Try to see the common patterns. Then, refactor! I've tagged your question with "refactoring". You may find some interesting material on this site filed under that subject. |
||||||
|