Software:
News ToolsReg Shops |
JavaCC: Don't talk backImplementing a parser-analyserPublished Tuesday 23rd May 2006 15:23 GMT In many cases, with the advent of XML, if data must be exchanged, or information read, a simple solution is to mark that document up using XML and then parse it using an XML parser. However, in some situations the documents to be processed may not be in XML format. This could be because of legacy systems, external constraints or because they adhere to other standards. In such situations you still need to parse the documents to ensure that they conform to whatever standard is expected, to analyse the contents of such documents to determine the information they provide and to take some action based on that information. To do this you may implement your own parser-analyser or you could choose to look at an existing parser generator tool. Probably the best stabled parser generator tool is JavaCC (Java Compiler Compiler). Java CC is a parser generator in the best tradition of tools such as YACC (Yet Another Compiler Compiler). JavaCC started out life as Jack and was developed by Sun Microsystems. It was then passed to a company called Metamata and renamed JavaCC. It is now an open source project and is very widely used. JavaCC offers the Java developer a tool that processes a grammar specification and produces a set of Java classes that can read and analyse input that matches that grammar. JavaCC also provides additional tools that can be used with the main JavaCC tool such as the JJTree tree building tool for displaying grammars. The grammar to be analysed is defined in a BNF-like notation that is quick to learn and allows Java to be embedded within it (to allow callbacks to your own Java code). Obtaining JavaCC You can download JavaCC from the official JavaCC website. From here you can download the latest version of the JavaCC classes (or indeed the source if you so wish). What you get when you download JavaCC Binary distribution is:
You can also find sample JavaCC Grammars here. A useful textbook is Aho, R. Sethi, and J.D. Ullman, Compilers: Principles, Techniques and Tools, Prentice Hall, 1986. You can buy it at Cash 'n' Carrion. A Sample GrammarA JavaCC grammar file can be divided into a number of parts. These parts are:
Each of these is described in a little more detail below: A List of OptionsThe developer can influence the way in which the grammar is processed using these options (which may also be specified from the command line if the JavaCC command is being used). In the following example, we declare the LOOKAHEAD option that specifies number of tokens to look ahead before making a decision at a choice point during parsing:
options {
LOOKAHEAD=2;
}
Other options include STATIC (which indicates whether a static only set of methods should be produced), DEBUG_PARSER (which can be used to include debugging information in the generated parser and IGNORE_CASE (which indicates whether the grammar should be case sensitive or not). Java Compilation UnitThe Java compilation unit is enclosed between
PARSER_BEGIN(SimpleCalculator)
import java.io.*;
public class SimpleCalculator {
public static void main(String [] args) throws Exception {
File file = new File("test.dat");
System.out.println("Reading: " + file.getAbsolutePath());
FileReader reader = new FileReader("test.dat") ;
SimpleCalculator sc = new SimpleCalculator(reader);
while (true) {
sc.calc();
}
}
}
PARSER_END(SimpleCalculator)
The Lexical SpecificationNext we have our lexical specification. This defines the tokens to be recognised when parsing data input. For example:
SKIP:
{
" "
| "\r"
}
TOKEN:
{
<NUMBER:(<DIGIT>)>
| <DIGIT:["0"-"9"]>
| <EOL: "\n" >
}
This specifies that white space and carriage returns should be skipped. It then defines the set of tokens to be understood by the parser. In this case it means that NUMBERs are defined as being digits in the range 0 to 9. Finally the EOL (or End Of Line) is defined to be a Newline (“/n”).
Track this type of story as a custom Atom/RSS feed or by email.
|
Developer HeadlinesThe UK's latest developer news from MSDN |
Top 20 stories • All The Week’s Headlines • Archive • Search