options { STATIC = false; JAVA_UNICODE_ESCAPE = true; } PARSER_BEGIN(Parser) import java.util.*; import edu.neu.ccs.demeterf.*; import edu.neu.ccs.demeter.*; public class Parser { // oit is uugly. Why isn't there a Character.valueOf(String)? static char unescapifyChar(String s) { char c = s.charAt(0); if (c == '\\') { switch (s.charAt(1)) { case 'n': c = '\n'; break; case 't': c = '\t'; break; case 'b': c = '\b'; break; case 'r': c = '\r'; break; case 'f': c = '\f'; break; case '\\': c = '\\'; break; case '\'': c = '\''; break; case '\"': c = '\"'; break; default: c = (char) Integer.parseInt(s.substring(1, s.length()), 8); break; } } return c; } // Even uglier... static String unescapify(String s) { char str[] = new char[s.length()]; int i = 0, o = 0; while (i < s.length()) { char c = s.charAt(i++); if (c == '\\') { int j = i + 1; while (j < s.length() && Character.digit(s.charAt(j), 8) != -1) { j++; } c = unescapifyChar(s.substring(i-1, j)); i = j; } str[o++] = c; } return String.valueOf(str, 0, o); } } PARSER_END(Parser) Formula _Formula() : { Formula it = null; ClauseList _clauses; SatOpt _satopt; UnsatOpt _unsatopt; } { { it=new Formula(); } _clauses=_ClauseList() { it.set_clauses(_clauses); } _satopt=_SatOpt() { it.set_satopt(_satopt); } _unsatopt=_UnsatOpt() { it.set_unsatopt(_unsatopt); } { return it; } } SatOpt _SatOpt() : { SatOpt it = null; } { ( it=_SatCount() | it=_SatAbsent() ) { return it; } } void common_SatOpt(SatOpt it) : { } { { } } SatCount _SatCount() : { SatCount it = null; Integer _sats; } { { it=new SatCount(); } "sat" _sats=_Integer() { it.set_sats(_sats); } common_SatOpt(it) { return it; } } SatAbsent _SatAbsent() : { SatAbsent it = null; } { { it=new SatAbsent(); } common_SatOpt(it) { return it; } } UnsatOpt _UnsatOpt() : { UnsatOpt it = null; } { ( it=_UnsatCount() | it=_UnsatAbsent() ) { return it; } } void common_UnsatOpt(UnsatOpt it) : { } { { } } UnsatCount _UnsatCount() : { UnsatCount it = null; Integer _unsats; } { { it=new UnsatCount(); } "unsat" _unsats=_Integer() { it.set_unsats(_unsats); } common_UnsatOpt(it) { return it; } } UnsatAbsent _UnsatAbsent() : { UnsatAbsent it = null; } { { it=new UnsatAbsent(); } common_UnsatOpt(it) { return it; } } Clause _Clause() : { Clause it = null; } { ( it=_SatClause() | it=_UnsatClause() | it=_ConcreteClause() ) { return it; } } void common_Clause(Clause it) : { } { { } } SatClause _SatClause() : { SatClause it = null; } { { it=new SatClause(); } "" common_Clause(it) { return it; } } UnsatClause _UnsatClause() : { UnsatClause it = null; } { { it=new UnsatClause(); } "" common_Clause(it) { return it; } } ConcreteClause _ConcreteClause() : { ConcreteClause it = null; Weight _weight; Literals _literals; } { { it=new ConcreteClause(); } _weight=_Weight() { it.set_weight(_weight); } _literals=_Literals() { it.set_literals(_literals); } " 0" common_Clause(it) { return it; } } Literals _Literals() : { Literals it = null; } { ( it=_SatLiteral() | it=_UnsatLiteral() | it=_LiteralList() ) { return it; } } void common_Literals(Literals it) : { } { { } } SatLiteral _SatLiteral() : { SatLiteral it = null; } { { it=new SatLiteral(); } "" common_Literals(it) { return it; } } UnsatLiteral _UnsatLiteral() : { UnsatLiteral it = null; } { { it=new UnsatLiteral(); } "" common_Literals(it) { return it; } } Literal _Literal() : { Literal it = null; } { ( it=_Positive() | it=_Negative() ) { return it; } } void common_Literal(Literal it) : { Variable _variable; } { _variable=_Variable() { it.set_variable(_variable); } { } } Positive _Positive() : { Positive it = null; } { { it=new Positive(); } common_Literal(it) { return it; } } Negative _Negative() : { Negative it = null; } { { it=new Negative(); } "-" common_Literal(it) { return it; } } Variable _Variable() : { Variable it = null; Integer _integer; } { { it=new Variable(); } _integer=_Integer() { it.set_integer(_integer); } { return it; } } Weight _Weight() : { Weight it = null; Integer _v; } { { it=new Weight(); } _v=_Integer() { it.set_v(_v); } { return it; } } Main _Main() : { Main it = null; String _s; } { { it=new Main(); } _s=_String() { it.set_s(_s); } { return it; } } ClauseList _ClauseList() : { ClauseList it = null; } { ( it=_ClauseCons() | it=_ClauseEmpty() ) { return it; } } void common_ClauseList(ClauseList it) : { } { { } } ClauseCons _ClauseCons() : { ClauseCons it = null; Clause _first; ClauseList _rest; } { { it=new ClauseCons(); } _first=_Clause() { it.set_first(_first); } _rest=_ClauseList() { it.set_rest(_rest); } common_ClauseList(it) { return it; } } ClauseEmpty _ClauseEmpty() : { ClauseEmpty it = null; } { { it=new ClauseEmpty(); } common_ClauseList(it) { return it; } } LiteralList _LiteralList() : { LiteralList it = null; } { ( it=_LiteralCons() | it=_LiteralEmpty() ) { return it; } } void common_LiteralList(LiteralList it) : { } { common_Literals(it) { } } LiteralCons _LiteralCons() : { LiteralCons it = null; Literal _first; LiteralList _rest; } { { it=new LiteralCons(); } _first=_Literal() { it.set_first(_first); } _rest=_LiteralList() { it.set_rest(_rest); } common_LiteralList(it) { return it; } } LiteralEmpty _LiteralEmpty() : { LiteralEmpty it = null; } { { it=new LiteralEmpty(); } common_LiteralList(it) { return it; } } LitCounter _LitCounter() : { LitCounter it = null; } { { it=new LitCounter(); } { return it; } } boolean _boolean() : { Token t; }{ ( t= { return true; } | t= { return false; } ) } char _char() : { Token t; } { t= { String s = t.image; return unescapifyChar(s.substring(1, s.length()-1)); } } byte _byte() : { int i; } { i=_int() { return (byte) i; } } short _short() : { int i; } { i=_int() { return (short) i; } } int _int() : { Number num; } { num=_Number() { return num.intValue(); } } long _long() : { Number num; } { num=_Number() { return num.longValue(); } } float _float() : { Number num; } { num=_Number() { return num.floatValue(); } } double _double() : { Number num; } { num=_Number() { return num.doubleValue(); } } Boolean _Boolean() : { Token t; }{ ( t= { return Boolean.TRUE; } | t= { return Boolean.FALSE; } ) } Character _Character() : { char c; } { c=_char() { return new Character(c); } } Integer _Integer() : { int i; } { i = _int() { return new Integer(i); } } Long _Long() : { long l; } { l=_long() { return new Long(l); } } Float _Float() : { float f; } { f=_float() { return new Float(f); } } Double _Double() : { double d; } { d=_double() { return new Double(d); } } Number _Number() : { Token t; String s = null; int radix = 0; Number num = null; } { ( ( t= { s = t.image; radix = 10; } | t= { // Strip off the "0x". s = t.image.substring(2, t.image.length()); radix = 16; } | t= { s = t.image; radix = 8; } ) { switch (s.charAt(s.length()-1)) { case 'l': case 'L': s = s.substring(0, s.length()-1); num = new Long(new java.math.BigInteger(s, radix).longValue()); break; default: num = new Integer(new java.math.BigInteger(s, radix).intValue()); break; } } | t= { s = t.image; switch (s.charAt(s.length()-1)) { case 'd': case 'D': num = Double.valueOf(s.substring(0, s.length()-1)); break; case 'f': case 'F': num = Float.valueOf(s.substring(0, s.length()-1)); break; default: num = Float.valueOf(s); break; } } ) { return num; } } String _String() : { Token t; } { t= { String s = t.image; return unescapify(s.substring(1, s.length()-1)); } } StringBuffer _StringBuffer() : { String s; } { s=_String() { return new StringBuffer(s); } } Ident _Ident() : { Token t; } { t= { return new Ident(t.image); } } Text _Text() : { Token t; } { t= { String s = t.image; return new Text(s.substring(2, s.length()-2)); } } Line _Line() : { Token t; } { { token_source.SwitchTo(1); } t= { return new Line(t.image); } } Word _Word() : { Token t; } { { token_source.SwitchTo(2); } t= { return new Word(t.image); } } // Lexical specification (largely taken from Java.jack): SKIP : { " " | "\t" | "\n" | "\r" | <"//" (~["\n","\r"])* ("\n"|"\r\n")> | <"/*" (~["*"])* "*" (~["/"] (~["*"])* "*")* "/"> } TOKEN : { /* LITERALS */ < DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* (["l","L"])? > | < HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ (["l","L"])? > | < OCTAL_LITERAL: "0" (["0"-"7"])* (["l","L"])? > | < FLOATING_POINT_LITERAL: (["0"-"9"])+ "." (["0"-"9"])+ ()? (["f","F","d","D"])? | "." (["0"-"9"])+ ()? (["f","F","d","D"])? | (["0"-"9"])+ (["f","F","d","D"])? | (["0"-"9"])+ ()? ["f","F","d","D"] > | < #EXPONENT: ["e","E"] (["+","-"])? (["0"-"9"])+ > | < CHARACTER_LITERAL: "'" ( (~["\'","\\","\n","\r"]) | ("\\" ( ["n","t","b","r","f","\\","\'","\""] | ["0"-"7"] ( ["0"-"7"] )? | ["0"-"3"] ["0"-"7"] ["0"-"7"] ) ) ) "'" > | < STRING_LITERAL: "\"" ( (~["\"","\\","\n","\r"]) | ("\\" ( ["n","t","b","r","f","\\","\'","\""] | ["0"-"7"] ( ["0"-"7"] )? | ["0"-"3"] ["0"-"7"] ["0"-"7"] ) ) )* "\"" > | < TEXT_LITERAL: ( "(@" (~["@"])* ( "@" ~[")"] (~["@"])* )* "@)" ) | ( "{{" (~["}"])* ( "}" ~["}"] (~["}"])* )* "}}" ) > | < TRUE: "true" > | < FALSE: "false" > } TOKEN : { /* IDENTIFIERS */ < IDENTIFIER: (|)* > | < #LETTER: [ "\u0024", "\u0041"-"\u005a", "\u005f", "\u0061"-"\u007a", "\u00c0"-"\u00d6", "\u00d8"-"\u00f6", "\u00f8"-"\u00ff", "\u0100"-"\u1fff", "\u3040"-"\u318f", "\u3300"-"\u337f", "\u3400"-"\u3d2d", "\u4e00"-"\u9fff", "\uf900"-"\ufaff" ] > | < #DIGIT: [ "\u0030"-"\u0039", "\u0660"-"\u0669", "\u06f0"-"\u06f9", "\u0966"-"\u096f", "\u09e6"-"\u09ef", "\u0a66"-"\u0a6f", "\u0ae6"-"\u0aef", "\u0b66"-"\u0b6f", "\u0be7"-"\u0bef", "\u0c66"-"\u0c6f", "\u0ce6"-"\u0cef", "\u0d66"-"\u0d6f", "\u0e50"-"\u0e59", "\u0ed0"-"\u0ed9", "\u1040"-"\u1049" ] > } TOKEN : { < LINE: (~["\n","\r"])* > : DEFAULT } SKIP : { " " | "\t" | "\n" | "\r" } TOKEN : { < WORD: (~[" ","\t","\n","\r"])* > : DEFAULT }