4789N/AOpenGrok - a wicked fast source browser
176N/A---------------------------------------
176N/AOpenGrok is a fast and usable source code search and cross reference
176N/Aengine, written in Java. It helps you search, cross-reference and navigate
176N/Ayour source tree. It can understand various program file formats and
176N/Aversion control histories like SCCS, RCS, CVS, Subversion and Mercurial.
176N/AOpenGrok is the tool used for the OpenSolaris Source Browser.
176N/A * A servlet container like Tomcat (
5.x or later)
176N/A supporting Servlet 2.4 and JSP 2.0
176N/A * Subversion 1.3.0 or later if SVN support is needed
176N/A * Mercurial 0.9.3 or later if Mercurial support is needed
176N/A * JFlex Ant task (If you want to build OpenGrok)
176N/ASRC_ROOT refers to the directory containing your source tree.
176N/AOpenGrok analyzes the source tree and builds a search index along with
176N/Across-referenced hypertext versions of the source files. These generated
176N/Adata files will be stored in DATA_ROOT directory.
176N/AOpenGrok setup Step.0 - Setting up the Sources.
2134N/A----------------------------------------------
4789N/ASource base must be available locally for OpenGrok to work efficiently. No
176N/Achanges are required to your source tree. If the code is under source control
176N/Amanagement (SCM) OpenGrok requires the checked out source tree under SRC_ROOT.
176N/AIt is possible for some SCM systems to use a remote repository (Subversion),
176N/Abut this is not recommended due to the performance penalty. CVS must have a
176N/ANote that OpenGrok ignores symbolic links.
176N/A---------------------------------------------------
176N/AUsing command line interface.
176N/A---------------------------------------------------
176N/AStep.1 - Populate DATA_ROOT Directory
176N/A=====================================
2134N/Afor using in a cronjob to run regularly. Modify the variables in the script
to point appropriate directories.
Option 2.
opengrok.jar: You can also directly use the Java application. If
the sources are all located in a directory SRC_ROOT and the data and
hypertext files generated by OpenGrok are to be stored in DATA_ROOT, run
===============================================
To configure the webapp
source.war, look into the parameters defined in
* HEADER: is the fragment of HTML that will be used to display title or
* SRC_ROOT: the absolute path name of the root directory of your source tree
* DATA_ROOT: absolute path of the directory where OpenGrok data
Optional Step.3 - Path Descriptions
-----------------------------------
OpenGrok uses path descriptions in various places (For eg. while showing
directory listings or search results) Example descriptions are in
paths.tsvfile. You can list descriptions for directories one per line tab separated
format path tab description. Refer to example 4 below.
Note 1 - Changing webapp parameters:
web.xml is the deployment descriptor
for the web application. It is in a Jar file named
source.war, you can
edit
web.xml and re-package the jar file.
Then copy the war files to <i>TOMCAT</i>/webapps directory.
* Option 3: Edit the Context container element for the webapp
When invoking OpenGrok to build the index, use -w <webapp> to set the
After the index is built, there's a couple different ways to set the
Context for the servlet container:
<Parameter name="HEADER" value='...' override="false" />
<Parameter name="SCAN_REPOS" value="false" override="false" />
- Create a Context file for the webapp
This file will be named `<webapp>.xml'.
For Tomcat, the file will be located at:
`
TOMCAT/conf/<engine_name>/<hostname>', where <engine_name>
is the Engine that is processing requests and <hostname> is a Host
associated with that Engine. By default, this path is
This file will contain something like the Context described above.
Optional Step 4 -- Subversion setup
-----------------------------------
Some additional setup is needed if you are using Subversion. OpenGrok uses
the Subversion javahl bindings, which must be installed separately.
this by copying the file into the lib-subdirectory in your OpenGrok
common directory for all web applications (For Tomcat
5.x, this is
The path to the native library svnjavahl needs to be added to
or, by using LD_LIBRARY_PATH
---------------------------------------------------
Using Standalone Swing GUI
---------------------------------------------------
opengrok.jar when invoked without any arguments, opens up the GUI search window.
The interface is similar to cscope.
To create an index, first select the browse button for "Search" drop down list.
Choose a directory to store the index (DATA_ROOT), and select the source tree
(SRC_ROOT). You may have to also select path to ctags in the Advanced Options,
if exuberant ctags can not be found in the PATH.
Clicking "Update" will create or update the search index.
The index can be searched using the cscope like GUI, which lets you customize
your favorite editor to open the matching files.
Martin Englund, Sun Microsystems
Knut Anders Hatlen, Sun Microsystems