Unit tests for Literate Haskell
[ohcount] / README
1 = Ohcount
2
3 The Ohloh source code line counter
4
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.
8
9 Ohcount is specifically licensed under GPL v2.0, and no later version.
10
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.
15
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/>.
18
19 == Overview
20
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.
24
25 Ohcount supports multiple languages within a single file: for example,
26 a complex HTML document might include regions of both CSS and JavaScript.
27
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.
31
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.
36
37 Ohcount includes a Ruby binding which allows you to directly access its
38 language detection features from a Ruby application.
39
40 == System Requirements
41
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.
44
45 Ohcount does not support Windows.
46
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.
49
50 Ohcount requires the pcre library (http:///www.pcre.org).
51
52 == Download
53
54 The source code for ohcount is available as a tarball:
55
56   http://labs.ohloh.net/download/ohcount-1.0.0.tgz
57
58 You can also download the source code as a Git repository:
59
60   git clone http://git.ohloh.net/git/ohcount.git
61
62 == Installation
63
64 Ohcount is packaged as a RubyGem. To build and install the gem (you will need
65 root priveleges for the install):
66
67   $ rake install
68
69 To uninstall the RubyGem:
70
71   $ gem uninstall ohcount
72
73 If you do not want to install the gem, you can simply build and run it like this:
74
75   $ rake
76   $ bin/ohcount
77
78 == First Steps
79
80 To measure the lines of code, simply pass filenames or directory names
81 to the +ohcount+ script:
82
83   $ ohcount helloworld.c
84
85 Directories will be probed recursively. If you do not pass any parameters,
86 the current directory tree will be counted.
87
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:
91
92   $ ohcount --detect | grep ^ruby
93
94 The +annotate+ option presents a line-by-line accounting
95 of the languages used in a source code file. For example:
96
97   $ ohcount --annotate ./test/src_dir/php1.php
98
99 == Loading ohcount from Ruby
100
101 If you have installed ohcount as a gem, you can load it like this:
102
103   require 'rubygems'
104   require 'ohcount'
105
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:
108
109   require 'ohcount'
110
111 The <tt>bin/ohcount</tt> script shows examples of calling the ohcount
112 libraries from Ruby.
113
114 == How to Add a New Language
115
116 These are the steps required to add a new language to ohcount:
117
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.
125
126 == Contact Ohloh
127
128 For more information visit the Ohloh website:
129    http://labs.ohloh.net
130
131 You can reach Ohloh via email at:
132    info@ohloh.net