Is anyone familiar with a code analysis tool along the lines of NDepend or JDepend for Powerbuilder?

I'm looking for something that can analyse dependencies and metrics such as SLOC, Cyclomatic Complexity etc. for a large, legacy Powerbuilder application.

link|improve this question
feedback

5 Answers

The only code analysis tool I know for PB is Visual Expert. I've given it a look some time ago but have never actually used it, so I can't say if it does what the other tools you mention do.

link|improve this answer
Took a look and it does a good job of working out dependencies and unused code but not sloc or cc – ScottB Oct 19 '11 at 12:04
There's an extension you have to enable to do SLOC. It gives you Source Lines, # Instructions, Commented Lines. – Hugh Brackett Nov 9 '11 at 20:13
feedback

Visual Expert is great. PBL Peeper can do these tasks as well, and it's free... :)

link|improve this answer
1  
Welcome aboard, Paul. Good to see another true PB expert around! – eran Sep 15 '11 at 21:11
feedback

Visual Expert is good, but has some flaws. I tried it to analyze our server side code(EA Server) and found some issues. It's impact analysis feature is good to document a Dependency/Calling Hierarchy in the PB code.

I also tried, [PB code analyzer]:http://www.ecocion.com/pbca-powerbuilder-code-analyzer and it does a good job of documenting PB code.

I am not sure, if they do the metrics you are looking for. I found below links, googling(I didn't try these myself):

http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis

http://documentation.microfocus.com/help/index.jsp?topic=%2FGUID.571F6E84.1EE2.4F68.80C7.B1DC863536CB%2FGUID-E418791C-B249-434D-BD5A-A2B570F9FA31.html

link|improve this answer
feedback

Recently I came across this tool called CAST http://en.m.wikipedia.org/wiki/CAST_Application_Intelligence_Platform

link|improve this answer
feedback

None of the other alleged metrics do any better than SLOC, and some are anti-predictive. Just run wc -l over your source files.

link|improve this answer
Or as I used to say to a guy I was mentoring: "All of your problems are in code. Your problem is you have too much code". Then I'd delete 80% of what he'd written and the program would work correctly. – Hugh Brackett Oct 13 '11 at 19:17
feedback

Your Answer

 
or
required, but never shown

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