C++ source code comprehension tools - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:06:05Zhttp://stackoverflow.com/feeds/question/390707http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/390707/c-source-code-comprehension-tools3C++ source code comprehension toolsvar2008-12-24T04:01:07Z2009-08-23T04:31:26Z
<p>I'm starting work on a huge C++ codebase, and was wondering if someone could suggest good source code comprehension tools. </p>
<p>I usually use doxygen but was curious to see if anything better existed.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/390715#3907152Answer by Colin for C++ source code comprehension toolsColin2008-12-24T04:05:29Z2008-12-24T04:05:29Z<p>There's a list of tools at <a href="http://www.stack.nl/~dimitri/doxygen/links.html" rel="nofollow">http://www.stack.nl/~dimitri/doxygen/links.html</a></p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/390718#3907181Answer by Charlie Martin for C++ source code comprehension toolsCharlie Martin2008-12-24T04:08:51Z2008-12-24T04:08:51Z<p>I've actually had good results with good old <a href="http://cscope.sourceforge.net/" rel="nofollow">cscope</a>.</p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/390766#3907660Answer by Nemanja Trifunovic for C++ source code comprehension toolsNemanja Trifunovic2008-12-24T04:45:09Z2008-12-24T04:45:09Z<p>I can recommend <a href="http://www.sourceinsight.com/" rel="nofollow">Source Insight</a>.</p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/391090#3910900Answer by Serge for C++ source code comprehension toolsSerge2008-12-24T09:32:00Z2008-12-24T09:32:00Z<p>As an emacs user I can suggest ebrowse. More info could be found <a href="http://www.gnu.org/software/emacs/manual/html_node/ebrowse/index.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/391114#3911142Answer by swamy for C++ source code comprehension toolsswamy2008-12-24T09:43:13Z2008-12-24T09:43:13Z<p><a href="http://opensolaris.org/os/project/opengrok/" rel="nofollow">OpenGrok</a> is great for a multi-language project (C,C++,shell scripts,Perl,python ...). Provide a nice web interface (apart from a stand-alone Java GUI) for search and code traversal.</p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/392374#3923742Answer by philippe for C++ source code comprehension toolsphilippe 2008-12-25T00:10:08Z2008-12-25T00:10:08Z<p><a href="http://www.scitools.com/products/understand/" rel="nofollow">Understand for C++</a> can be used for reverse engineering, documentation and metrics for C/C++ code. It generates cross reference and allow code navigation, and graphical reverse engineering views.</p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/1317004#13170040Answer by Ira Baxter for C++ source code comprehension toolsIra Baxter2009-08-22T20:44:34Z2009-08-22T20:44:34Z<p>Often understanding requires following leads from one place in the text to others.
Simple "grep" helps with this, but scales badly and has a poor "browse the text" UI (eg., none).</p>
<p>A language-sensitive source code search engine can be found
at <a href="http://www.semanticdesigns.com/Products/SearchEngine" rel="nofollow">SD Source Code Search Engine</a>. It can handle many languages at the same time.
Searches can be performed for patterns in a specific langauge,
or patterns across languages (such as "find identifiers involving TAX").
By being sensitive to langauge tokens, the number of false positives is reduced,
saving time for the user. It understands C, C++, C#, COBOL, Java, ECMAScript, Java, XML, Verilog, VHDL, and a number of other languages.</p>
http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/1317763#13177630Answer by Eugen Dinca for C++ source code comprehension toolsEugen Dinca2009-08-23T04:31:26Z2009-08-23T04:31:26Z<p>To somewhat repeat my answer for the <a href="http://stackoverflow.com/questions/1271513/c-code-visualization">C++ code visualization question</a>:</p>
<p>Check out <a href="http://sourcenav.sourceforge.net/" rel="nofollow">SourceNavigator</a>, it's open source, works on a bunch of platforms and has a Hierarchy Browser, a Class Browser, a Cross-Reference Browser and more that will allow you navigate and understand the code (it pretty much does all that Understand for C++ does).</p>
<p>If you want something online (so more than 1 guy/girl can examine the code) you can use the good old <a href="http://lxr.linux.no/" rel="nofollow">LXR</a> or (as <a href="http://stackoverflow.com/questions/390707/c-source-code-comprehension-tools/391114#391114">swamy said</a>) <a href="http://opensolaris.org/os/project/opengrok/" rel="nofollow">OpenGrok</a>.</p>