3 The Ohloh source code line counter
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License Version 2 as
7 published by the Free Software Foundation.
9 Ohcount is specifically licensed under GPL v2.0, and no later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 Ohcount is a library for counting lines of source code.
22 It was originally developed at Ohloh, and is used to generate
23 the reports at www.ohloh.net.
25 Ohcount supports multiple languages within a single file: for example,
26 a complex HTML document might include regions of both CSS and JavaScript.
28 Ohcount has two main components: a detector which determines the primary
29 language family used by a particular source file, and a parser which
30 provides a line-by-line breakdown of the contents of a source file.
32 Ohcount includes a command line tool that allows you to count individual
33 files or whole directory trees. It also allows you to find source code
34 files by language family, or to create a detailed annotation of an
35 individual source file.
37 Ohcount includes a Ruby binding which allows you to directly access its
38 language detection features from a Ruby application.
40 == System Requirements
42 Ohcount is supported on Mac OS X 10.4 and Ubuntu 6.06 LTS. Other Linux
43 environments should also work, but your mileage may vary.
45 Ohcount does not support Windows.
47 Ohcount targets Ruby 1.8.6. The build script targets Rake 0.7.3. You will
48 also require a C compiler to build the native extensions.
50 Ohcount requires the pcre library (http:///www.pcre.org).
54 The source code for ohcount is available as a tarball:
56 http://labs.ohloh.net/download/ohcount-1.0.0.tgz
58 You can also download the source code as a Git repository:
60 git clone http://git.ohloh.net/git/ohcount.git
64 Ohcount is packaged as a RubyGem. To build and install the gem (you will need
65 root priveleges for the install):
69 To uninstall the RubyGem:
71 $ gem uninstall ohcount
73 If you do not want to install the gem, you can simply build and run it like this:
80 To measure the lines of code, simply pass filenames or directory names
81 to the +ohcount+ script:
83 $ ohcount helloworld.c
85 Directories will be probed recursively. If you do not pass any parameters,
86 the current directory tree will be counted.
88 You can use the ohcount +detect+ option to simply determine the language
89 family of each source file. The files will not be parsed or counted.
90 For example, to find all of the ruby files in the current directory tree:
92 $ ohcount --detect | grep ^ruby
94 The +annotate+ option presents a line-by-line accounting
95 of the languages used in a source code file. For example:
97 $ ohcount --annotate ./test/src_dir/php1.php
99 == Loading ohcount from Ruby
101 If you have installed ohcount as a gem, you can load it like this:
106 If you have not installed the gem, you'll have to make sure that
107 ohcount is on your ruby load path and then require:
111 The <tt>bin/ohcount</tt> script shows examples of calling the ohcount
114 == How to Add a New Language
116 These are the steps required to add a new language to ohcount:
118 * Update Ohcount::Detector to identify files that use the new language.
119 * Update Ohcount::DetectorTest to confirm the Detector changes.
120 * In Ohcount::Generator, instantiate a new Ohcount::Monoglot or
121 Ohcount::Polyglot to parse the language.
122 * In Ohcount::SlocInfo, provide a "nice name" and category (procedural
123 code vs. markup) for the new language.
124 * Create a new Ohcount::Test to verify the parser.
128 For more information visit the Ohloh website:
129 http://labs.ohloh.net
131 You can reach Ohloh via email at: