X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fmeta%2FGrammarAST.java;h=586d519d607defd2cefc7de8d1eefe6c7727c814;hp=0ea8ae3d720912ad64affe7c914b47cd021965ba;hb=f95343b3b6e918434ff68924e79df22b9cb074e8;hpb=5eea0a7ad35fb17a5b7203fa40119ad5cab01ec0 diff --git a/src/edu/berkeley/sbp/meta/GrammarAST.java b/src/edu/berkeley/sbp/meta/GrammarAST.java index 0ea8ae3..586d519 100644 --- a/src/edu/berkeley/sbp/meta/GrammarAST.java +++ b/src/edu/berkeley/sbp/meta/GrammarAST.java @@ -16,6 +16,18 @@ import java.io.*; */ public class GrammarAST { + public static interface ImportResolver { + public InputStream getImportStream(String importname); + } + + /** + * Returns a Union representing the metagrammar (meta.g); the Tree produced by + * parsing with this Union should be provided to buildFromAST + */ + public static Union getMetaGrammar() { + return buildFromAST(MetaGrammar.meta, "s", null); + } + /** * Create a grammar from a parse tree and binding resolver * @@ -23,8 +35,8 @@ public class GrammarAST { * @param s the name of the "start symbol" * @param gbr a GrammarBindingResolver that resolves grammatical reductions into tree-node-heads */ - public static Union buildFromAST(Tree grammarAST, String startingNonterminal, File[] includes) { - return new GrammarAST(includes, "").buildGrammar(grammarAST, startingNonterminal); + public static Union buildFromAST(Tree grammarAST, String startingNonterminal, ImportResolver resolver) { + return new GrammarAST(resolver, "").buildGrammar(grammarAST, startingNonterminal); } private static Object illegalTag = ""; // this is the tag that should never appear in the non-dropped output FIXME @@ -32,29 +44,28 @@ public class GrammarAST { // Instance ////////////////////////////////////////////////////////////////////////////// private final String prefix; - private final File[] includes; + private final ImportResolver resolver; - public GrammarAST(File[] includes, String prefix) { + public GrammarAST(ImportResolver resolver, String prefix) { this.prefix = prefix; - this.includes = includes; + this.resolver = resolver; } // Methods ////////////////////////////////////////////////////////////////////////////// private Union buildGrammar(Tree t, String rootNonTerminal) { - return ((GrammarAST.GrammarNode)walk(t)).build(rootNonTerminal); + Object o = walk(t); + if (o instanceof Union) return (Union)o; + return ((GrammarAST.GrammarNode)o).build(rootNonTerminal); } - public Object[] walkChildren(Tree t) { + private Object[] walkChildren(Tree t) { Object[] ret = new Object[t.size()]; - for(int i=0; i")) return walkSeq(t.child(0)).follow(walkElement(t.child(1))); if (head.equals("DropNT")) return new NonTerminalNode(walkString(t.child(0)), (Seq[][])walkChildren(t.child(1)), false, null, true); if (head.equals("=")) return new NonTerminalNode(walkString(t.child(0)), (Seq[][])walk(t.child(2)), true, t.size()==2 ? null : walkString(t.child(1)), false); - if (head.equals("&")) return and2(walkSeq(t.child(0)), walkSeq(t.child(1))); - if (head.equals("&~")) return andnot2(walkSeq(t.child(0)), walkSeq(t.child(1))); + if (head.equals("&")) return walkSeq(t.child(0)).and(walkSeq(t.child(1))); + if (head.equals("&~")) return walkSeq(t.child(0)).andnot(walkSeq(t.child(1))); if (head.equals("/")) return (walkSeq(t.child(0))).separate(walkElement(t.child(1))); if (head.equals("()")) return new LiteralNode(""); if (head.equals("[")) return new AtomNode((char[][])Reflection.rebuild(walkChildren(t), char[][].class)); @@ -119,17 +130,17 @@ public class GrammarAST { if (head.equals("<<")) return new DropNode(new AtomNode(new char[] { CharAtom.right, CharAtom.right })); if (head.equals("~")) return new TildeNode(walkElement(t.child(0))); if (head.equals("~~")) return new Seq(new RepeatNode(new TildeNode(new AtomNode()), null, true, true, false)).andnot(walkSeq(t.child(0))); - if (head.equals("Range") && t.size()==2 && ">".equals(t.child(0).head())) - return new char[] { CharAtom.left, CharAtom.left }; - if (head.equals("Range") && t.size()==2 && "<".equals(t.child(0).head())) - return new char[] { CharAtom.right, CharAtom.right }; - if (head.equals("Range") && t.size()==1) return new char[] { unescape(t).charAt(0), unescape(t).charAt(0) }; - if (head.equals("Range")) return new char[] { unescape(t).charAt(0), unescape(t).charAt(1) }; + if (head.equals("Range")) { + if (t.size()==2 && ">".equals(t.child(0).head())) return new char[] { CharAtom.left, CharAtom.left }; + if (t.size()==2 && "<".equals(t.child(0).head())) return new char[] { CharAtom.right, CharAtom.right }; + if (t.size()==1) return new char[] { unescape(t).charAt(0), unescape(t).charAt(0) }; + return new char[] { unescape(t).charAt(0), unescape(t).charAt(1) }; + } if (head.equals("\"\"")) return ""; - if (head.equals("\n")) return "\n"; - if (head.equals("\r")) return "\r"; - if (head.equals("grammar.Grammar")) return walkChildren(t); - if (head.equals("SubGrammar")) return GrammarAST.buildFromAST(t.child(0), "s", includes); + if (head.equals("\n")) return "\n"; + if (head.equals("\t")) return "\t"; + if (head.equals("\r")) return "\r"; + if (head.equals("SubGrammar")) return GrammarAST.buildFromAST(t.child(0), "s", resolver); if (head.equals("NonTerminal")) return new NonTerminalNode(walkString(t.child(0)), (Seq[][])walkChildren(t.child(1)), false, null, false); @@ -141,28 +152,22 @@ public class GrammarAST { seq[i] = seq[i].tag(tag); return new NonTerminalNode(tag, seqs, false, null, false); } - if (head.equals("TestCase")) - return new RegressionTests.TestCase(walkString(t.child(0)), - walkString(t.child(1)), - (String[])Reflection.coerce(walkChildren(t.child(2)), String[].class), - (Union)walk(t.child(3)), - false, - false); if (head.equals("#import")) { - String fileName = (String)stringifyChildren(t.child(0)); - for(File f : includes) { - File file = new File(f.getAbsolutePath()+File.separatorChar+fileName); - if (!file.exists()) continue; + if (resolver != null) { + String fileName = (String)stringifyChildren(t.child(0)); try { String newPrefix = t.size()<2 ? "" : (walkString(t.child(1))+"."); - FileInputStream fis = new FileInputStream(file); - Tree tr = new CharParser(MetaGrammar.newInstance()).parse(fis).expand1(); - return (GrammarNode)new GrammarAST(includes, newPrefix).walk(tr); + InputStream fis = resolver.getImportStream(fileName); + if (fis==null) + throw new RuntimeException("unable to find #include file \""+fileName+"\""); + Tree tr = new CharParser(getMetaGrammar()).parse(fis).expand1(); + return (GrammarNode)new GrammarAST(resolver, newPrefix).walk(tr); } catch (Exception e) { - throw new RuntimeException("while parsing " + file, e); + throw new RuntimeException("while parsing " + fileName, e); } + } else { + throw new RuntimeException("no resolver given"); } - throw new RuntimeException("unable to find #include file \""+fileName+"\""); } throw new RuntimeException("unknown head: \"" + head + "\" => " + (head.equals("..."))); } @@ -209,10 +214,26 @@ public class GrammarAST { } } + /** a node in the AST which is resolved into an Element */ + private abstract class ElementNode { + public boolean isLifted() { return false; } + public boolean isDropped(Context cx) { return false; } + public Atom toAtom(Context cx) { throw new Error("can't convert a " + this.getClass().getName() + " to an atom: " + this); } + public abstract Element build(Context cx, NonTerminalNode cnt, boolean dropall); + } + + /** a union, produced by a ( .. | .. | .. ) construct */ private class UnionNode extends ElementNode { + + /** each component of a union is a sequence */ public Seq[][] sequences; - public String sep = null; + + /** if the union is a NonTerminal specified as Foo*=..., this is true */ public boolean rep; + + /** if the union is a NonTerminal specified as Foo* /ws=..., then this is "ws" */ + public String sep = null; + public UnionNode(Seq seq) { this(new Seq[][] { new Seq[] { seq } }); } public UnionNode(Seq[][] sequences) { this(sequences, false, null); } public UnionNode(Seq[][] sequences, boolean rep, String sep) { @@ -220,10 +241,10 @@ public class GrammarAST { this.rep = rep; this.sep = sep; } - public boolean drop(Context cx) { + public boolean isDropped(Context cx) { for(Seq[] seqs : sequences) for(Seq seq : seqs) - if (!seq.drop(cx)) + if (!seq.isDropped(cx)) return false; return true; } @@ -272,10 +293,11 @@ public class GrammarAST { } } + /** a NonTerminal is always a union at the top level */ private class NonTerminalNode extends UnionNode { public boolean alwaysDrop; public String name = null; - public boolean drop(Context cx) { return alwaysDrop; } + public boolean isDropped(Context cx) { return alwaysDrop; } public NonTerminalNode(String name, Seq[][] sequences, boolean rep, String sep, boolean alwaysDrop) { super(sequences, rep, sep==null?null:(prefix + sep)); this.name = prefix + name; @@ -284,21 +306,27 @@ public class GrammarAST { public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { return cx.get(name); } } + /** a sequence */ private class Seq { + /** elements of the sequence */ + ElementNode[] elements; + /** follow-set, if explicit */ + ElementNode follow; + /** tag to add when building the AST */ + String tag = null; + /** positive conjuncts */ + HashSet and = new HashSet(); + /** negative conjuncts */ + HashSet not = new HashSet(); public boolean alwaysDrop = false; - public boolean drop(Context cx) { + public boolean isDropped(Context cx) { if (alwaysDrop) return true; if (tag!=null) return false; for(int i=0; i and = new HashSet(); - HashSet not = new HashSet(); - ElementNode[] elements; - ElementNode follow; - String tag = null; public Seq(ElementNode e) { this(new ElementNode[] { e }); } public Seq(ElementNode[] elements) { this(elements, true); } public Seq(ElementNode[] el, boolean check) { @@ -307,7 +335,6 @@ public class GrammarAST { for(int i=0; i)_e.toAtom(cx).complement()); } @@ -518,29 +544,15 @@ public class GrammarAST { private class DropNode extends ElementNodeWrapper { public DropNode(ElementNode e) { super(e); } - public boolean drop(Context cx) { return true; } + public boolean isDropped(Context cx) { return true; } } - // FIXME: doesn't this require a tag? - private class BracedNode extends ElementNode { - public Seq body; - public BracedNode(Seq seq) { this.body = seq; } - public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { - Union u = new Union(null, false); - Sequence s = body.build(cx, u, null, dropall); - Union u2 = new Union(null, false); - u2.add(Sequence.create(new Element[] { - CharAtom.leftBrace, - u, - CharAtom.rightBrace - }, 1)); - return u2; - } + /** provides a label on the fields of a Seq */ + private class LabelNode extends ElementNodeWrapper { + public final String label; + public LabelNode(String label, ElementNode e) { super(e); this.label = label; } } - public Seq and2(Seq s, Seq a) { a.alwaysDrop = true; return s.and(a); } - public Seq andnot2(Seq s, Seq a) { a.alwaysDrop = true; return s.andnot(a); } - ////////////////////////////////////////////////////////////////////////////// public class Context { @@ -568,7 +580,7 @@ public class GrammarAST { } else { ret = new Union(name, false); map.put(name, ret); - nt.buildIntoPreallocatedUnion(this, nt, nt.drop(this), ret); + nt.buildIntoPreallocatedUnion(this, nt, nt.isDropped(this), ret); } return ret; }