How do you count your Lines of Code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T17:07:51Zhttp://stackoverflow.com/feeds/question/104756http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code11How do you count your Lines of Code?Krishna2008-09-19T19:22:05Z2009-10-26T20:12:33Z
<p>We want to invite a third party for reviewing our code and they want to know a ball park figure of number of lines of code we have in all our applications!</p>
<p>Depending on the coding style of each of developer and depending on the language chosen there can be significant difference by measuring the LOC.
I am really interested in knowing, how you counted your number of Lines Of Code (if at all if you ever did)? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104771#10477120Answer by Prakash for How do you count your Lines of Code?Prakash2008-09-19T19:23:55Z2008-09-20T07:40:09Z<p><a href="http://sourceforge.net/projects/codeanalyze-gpl/" rel="nofollow">Code Analyzer</a> is simple tool which generates this kind of metrics.
<strong>Not limited</strong> to java! </p>
<p><img src="http://www.codeanalyzer.teel.ws/docs/post-analysis-shot.png" width="630" /></p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104793#1047935Answer by EmmEff for How do you count your Lines of Code?EmmEff2008-09-19T19:25:47Z2008-09-19T19:25:47Z<p>I'd be hard pressed to think that "wc -l " on every file in your source tree isn't a good enough estimate of LOC.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104795#1047954Answer by Prakash for How do you count your Lines of Code?Prakash2008-09-19T19:26:04Z2008-09-19T19:26:04Z<p>Also check <a href="http://stackoverflow.com/questions/60394/calculate-code-metrics#100173">this discussion</a> as well</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104796#1047960Answer by tenshihan for How do you count your Lines of Code?tenshihan2008-09-19T19:26:42Z2008-09-19T19:26:42Z<p>If it were perl -- I would use the Perl::tidy module because it doesn't count lines of code but rather lines of command. Or rather, it doesn't actually count but it would be very easy to add in code to allow it to count. </p>
<p>In other languages I would find a way to get that number from the interpreter/compiler or find one of many free tokenizers out there for source. Look for modules that help clean or tidy your code because they have built in tokenizers for each command and then it's a matter of adding a counter.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104818#1048183Answer by Paul Wicks for How do you count your Lines of Code?Paul Wicks2008-09-19T19:29:30Z2008-09-19T19:29:30Z<p>I've used <a href="http://cloc.sourceforge.net/" rel="nofollow">cloc</a> a number of times to do this sort of thing. It's quick and dirty and it works for a large number of languages/file types, giving you a breakdown of how many lines there are in which languages.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104820#1048200Answer by pdavis for How do you count your Lines of Code?pdavis2008-09-19T19:29:43Z2008-09-19T19:35:48Z<p>I would recommend you implement a Best Practice in code formatting. Then implement an application to format the code automatically (this works best with a continuous integration system). This way you don't have to worry if developers have their own <em>style</em> of coding since it will be automatically formatted once they check it into source control. </p>
<p>As far as how to get the line count across various languages, the easiest way is <strong>"wc -l"</strong> Granted their are other tools out there for counting lines of code (<a href="http://cloc.sourceforge.net/" rel="nofollow">CLOC</a>, <a href="http://www.dwheeler.com/sloccount/" rel="nofollow">SLOCCount</a>), but that will work across all languages.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104827#1048272Answer by CrashTECH for How do you count your Lines of Code?CrashTECH2008-09-19T19:31:08Z2008-09-19T19:31:08Z<p><a href="http://www.codeproject.com/KB/macros/linecount.aspx" rel="nofollow">Visual Studio Add-In</a></p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104857#10485710Answer by Andrew Johnson for How do you count your Lines of Code?Andrew Johnson2008-09-19T19:36:12Z2008-09-19T19:36:12Z<p>There's a perl program called <a href="http://cloc.sourceforge.net/" rel="nofollow">CLOC</a> that you can use. It is also available as a windows binary:</p>
<blockquote>
<p>cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. ... cloc is known to run on many flavors of Linux, AIX, Solaris, IRIX, z/OS, and Windows. (To run the Perl source version of cloc on Windows one needs ActiveState Perl 5.6.1 or higher, or Cygwin installed. Alternatively one can use the Windows binary of cloc generated with perl2exe to run on Windows computers that have neither Perl nor Cygwin.)</p>
</blockquote>
<p>It can produce a lot of statistics, depending on your code base, but most people will use less languages that their example:</p>
<pre>
Unix> cloc --sum-reports --report_file=script_lang perl-5.8.8.txt python-2.4.2.txt
Wrote script_lang.lang
Wrote script_lang.file
Unix> cat script_lang.lang
http://cloc.sourceforge.net v 0.72
-------------------------------------------------------------------------------
Language files blank comment code scale 3rd gen. equiv
-------------------------------------------------------------------------------
C 409 46920 35958 383652 x 0.77 = 295412.04
Python 1605 55998 31886 309549 x 4.20 = 1300105.80
Perl 1576 74568 89136 220919 x 4.00 = 883676.00
C/C++ Header 280 12169 26366 88089 x 1.00 = 88089.00
Bourne Shell 146 5201 7428 52115 x 3.81 = 198558.15
Lisp 4 1120 2291 9799 x 1.25 = 12248.75
Make 17 1092 939 5348 x 2.50 = 13370.00
Teamcenter def 10 144 88 3163 x 1.00 = 3163.00
HTML 22 516 2 2769 x 1.90 = 5261.10
yacc 2 125 72 1047 x 1.51 = 1580.97
XML 2 103 32 894 x 1.90 = 1698.60
Objective C 6 102 19 704 x 2.96 = 2083.84
C++ 4 104 215 451 x 1.51 = 681.01
DOS Batch 14 93 73 387 x 0.63 = 243.81
Expect 1 0 0 60 x 2.00 = 120.00
Java 2 6 1 23 x 1.36 = 31.28
sed 1 0 1 2 x 4.00 = 8.00
-------------------------------------------------------------------------------
SUM: 4101 198261 194507 1078971 x 2.60 = 2806331.35
-------------------------------------------------------------------------------
</pre>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104858#1048582Answer by Leigh Caldwell for How do you count your Lines of Code?Leigh Caldwell2008-09-19T19:36:23Z2008-09-19T19:36:23Z<p>On the rare occasions that this has been useful I have used a slight variation on EmmEff's "wc -l" (the following comments only apply to Java but can be adapted for other languages):</p>
<pre><code>cat *.java | grep '[;{]' | wc -l
</code></pre>
<p>that is, to find the number of occurrences of semicolons and right braces, so that you have a measure of the number of actual statements in the system rather than the number of physical lines (including blanks). This fails if your developers put all their code on the same line, but if that's the case you are already in trouble and should consider reformatting all the code.</p>
<p><strong>Edit:</strong> cloc is of course a much better tool than the above command. This is just the quick-and-dirty version.</p>
<p>It's a bit harder to measure other forms of "code": we also create lots of JSPs, object models (using a web-based tool so there is no text file involved) and of course populating databases with metadata can be an equivalent. Harder to use grep to measure all those, though you can come up with a proxy such as number of attributes in your data model, or number of records in the metadata tables.</p>
<p>The most sensible way to think of "lines of code" is to see them as the atomic unit of a programmer's thought. This is why high-level languages are much more productive both in time, and in lines of code - a single thought represents a much higher level of abstraction and therefore has more power. Simplifying drastically, a given programmer has the capacity for a given number of thoughts-per-hour, and so lines of code as a proxy for that is a (grudgingly) semi-legitimate measure.</p>
<p>I appreciate why a code review company would use it as a measure of their likely workload, though it is a bit unimaginative. Maybe you can persuade them to think instead in terms of the business value they are going to add through their services.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104868#104868-1Answer by Mike Elkins for How do you count your Lines of Code?Mike Elkins2008-09-19T19:37:31Z2008-09-19T19:37:31Z<p>Always using the same way of measuring is more important than which method you use.</p>
<p>Something simple like </p>
<pre><code>find . -regex '.+\.cc$' | xargs cat | wc
</code></pre>
<p>Just counts all lines in cc files (on linux). Adding in .h files too would be better. More (like ignoring comments) is overkill and often leads to perverse incentives.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/105079#1050790Answer by unexist for How do you count your Lines of Code?unexist2008-09-19T20:06:05Z2008-09-19T20:06:05Z<p>I never used cloc, but I will give it a try.</p>
<p>I normally use <a href="http://www.dwheeler.com/sloccount/" rel="nofollow">sloccount</a> - it also shows the COCOMA stuff - which always impresses me. <a href="http://www.ohloh.net" rel="nofollow">Ohloh</a> would be nicer with Mercurial support.. ;) </p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/111935#1119355Answer by Andy Lester for How do you count your Lines of Code?Andy Lester2008-09-21T20:09:04Z2009-10-26T20:12:33Z<p>I'm dismayed by the use of cat.</p>
<pre><code>find . -regex '.+\.cc$' | xargs cat | wc
</code></pre>
<p>is the same as</p>
<pre><code>find . -regex '.+\.cc$' | xargs wc
</code></pre>
<p>and</p>
<pre><code>cat *.java | grep '[;{]' | wc -l
</code></pre>
<p>is the same as</p>
<pre><code>grep '[;{]' *.java | wc -l
</code></pre>
<p>or even</p>
<pre><code>grep -c '[;{]' *.java
</code></pre>
<p>One rarely needs to use cat.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/378398#3783981Answer by Patrick Smacchia for How do you count your Lines of Code?Patrick Smacchia2008-12-18T16:27:38Z2008-12-18T16:27:38Z<p>The only good way to count the number of Lines of Code is to get a logical number, meaning ignoring any code style impact. This way you can compare and measure progression effectively.</p>
<p>In the .NET world you can use the tool <a href="http://www.NDepend.com" rel="nofollow">NDepend</a> to count easily the number of lines of code and get some special visualization features. By the way, NDepend comes with 82 other code metrics all listed here <a href="http://www.ndepend.com/Metrics.aspx" rel="nofollow">http://www.ndepend.com/Metrics.aspx</a>.</p>
<p>I wrote 2 blog post detailling the pro and cons of counting Lines of Code:
<br/>
<a href="http://codebetter.com/blogs/patricksmacchia/archive/2007/10/03/how-do-you-count-your-number-of-lines-of-code-loc.aspx" rel="nofollow">How do you count your number of Lines Of Code (LOC) ? </a>
<br/>
<a href="http://codebetter.com/blogs/patricksmacchia/archive/2007/10/05/why-is-it-useful-to-count-the-number-of-lines-of-code-loc.aspx" rel="nofollow">Why is it useful to count the number of Lines Of Code (LOC) ?</a></p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/1111328#11113280Answer by Saulo Silva for How do you count your Lines of Code?Saulo Silva2009-07-10T18:52:42Z2009-07-10T18:52:42Z<p>I've used the Metrics plug-in for Eclipse: <a href="http://metrics.sourceforge.net/" rel="nofollow">http://metrics.sourceforge.net/</a></p>