org.antlr.runtime.SerializedGrammar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr-runtime Show documentation
Show all versions of antlr-runtime Show documentation
A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.
/*
[The "BSD license"]
Copyright (c) 2005-2009 Terence Parr
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.antlr.runtime;
import java.io.IOException;
import java.io.FileInputStream;
import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.util.List;
import java.util.ArrayList;
public class SerializedGrammar {
public static final String COOKIE = "$ANTLR";
public static final int FORMAT_VERSION = 1;
//public static org.antlr.tool.Grammar gr; // TESTING ONLY; remove later
public String name;
public char type; // in {l, p, t, c}
public List rules;
class Rule {
String name;
Block block;
public Rule(String name, Block block) {
this.name = name;
this.block = block;
}
public String toString() {
return name+":"+block;
}
}
class Block {
List[] alts;
public Block(List[] alts) {
this.alts = alts;
}
public String toString() {
StringBuffer buf = new StringBuffer();
buf.append("(");
for (int i = 0; i < alts.length; i++) {
List alt = alts[i];
if ( i>0 ) buf.append("|");
buf.append(alt.toString());
}
buf.append(")");
return buf.toString();
}
}
class TokenRef {
int ttype;
public TokenRef(int ttype) { this.ttype = ttype; }
public String toString() { return String.valueOf(ttype); }
}
class RuleRef {
int ruleIndex;
public RuleRef(int ruleIndex) { this.ruleIndex = ruleIndex; }
public String toString() { return String.valueOf(ruleIndex); }
}
public SerializedGrammar(String filename) throws IOException {
System.out.println("loading "+filename);
FileInputStream fis = new FileInputStream(filename);
BufferedInputStream bos = new BufferedInputStream(fis);
DataInputStream in = new DataInputStream(bos);
readFile(in);
in.close();
}
protected void readFile(DataInputStream in) throws IOException {
String cookie = readString(in); // get $ANTLR
if ( !cookie.equals(COOKIE) ) throw new IOException("not a serialized grammar file");
int version = in.readByte();
char grammarType = (char)in.readByte();
this.type = grammarType;
String grammarName = readString(in);
this.name = grammarName;
System.out.println(grammarType+" grammar "+grammarName);
int numRules = in.readShort();
System.out.println("num rules = "+numRules);
rules = readRules(in, numRules);
}
protected List readRules(DataInputStream in, int numRules) throws IOException {
List rules = new ArrayList();
for (int i=0; i