X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fmeta%2FGrammarAST.java;h=0085ea5590bafa133582a6ee78baf2c58fd87340;hp=e039b372c507da375ee3d425c8b20b9087429da7;hb=b3552d74adab93ce7910569579069d249debafc8;hpb=8fb8d27ebcaad8074b9d52b31d32406d522e5a57 diff --git a/src/edu/berkeley/sbp/meta/GrammarAST.java b/src/edu/berkeley/sbp/meta/GrammarAST.java index e039b37..0085ea5 100644 --- a/src/edu/berkeley/sbp/meta/GrammarAST.java +++ b/src/edu/berkeley/sbp/meta/GrammarAST.java @@ -96,6 +96,7 @@ public class GrammarAST { if (head.equals("Elements")) return new Seq((ElementNode[])Reflection.rebuild(walkChildren(t), ElementNode[].class)); if (head.equals("NonTerminalReference")) return new ReferenceNode(stringifyChildren(t.child(0))); if (head.equals(")")) return new ReferenceNode(stringifyChildren(t.child(0)), true); + if (head.equals(":")) return new LabelNode(stringifyChildren(t.child(0)), walkElement(t.child(1))); if (head.equals("::")) return walkSeq(t.child(1)).tag(walkString(t.child(0))); if (head.equals("...")) return new DropNode(new RepeatNode(new TildeNode(new AtomNode()), null, true, true, false)); @@ -204,7 +205,7 @@ public class GrammarAST { return ret + " ]"; } public Union build(String rootNonterminal) { - Context cx = new Context(this); + BuildContext cx = new BuildContext(this); Union u = null; for(GrammarAST.NonTerminalNode nt : values()) if (nt.name.equals(rootNonterminal)) @@ -213,96 +214,22 @@ 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; - - /** 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) { - this.sequences = sequences; - this.rep = rep; - this.sep = sep; - } - public boolean isDropped(Context cx) { - for(Seq[] seqs : sequences) - for(Seq seq : seqs) - if (!seq.isDropped(cx)) - return false; - return true; - } - public Atom toAtom(Context cx) { - Atom ret = null; - for(Seq[] ss : sequences) - for(Seq s : ss) - ret = ret==null ? s.toAtom(cx) : (Atom)ret.union(s.toAtom(cx)); - return ret; - } - public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { - return buildIntoPreallocatedUnion(cx, cnt, dropall, new Union(null, false)); } - public Element buildIntoPreallocatedUnion(Context cx, NonTerminalNode cnt, boolean dropall, Union u) { - Union urep = null; - if (rep) { - urep = new Union(null, false); - urep.add(Sequence.create(cnt.name, new Element[0])); - urep.add(sep==null - ? Sequence.create(new Element[] { u }, 0) - : Sequence.create(new Element[] { cx.get(sep), u }, 1)); - } - HashSet bad2 = new HashSet(); - for(int i=0; i not = new HashSet(); public boolean alwaysDrop = false; - public boolean isDropped(Context cx) { + public boolean isDropped(BuildContext cx) { if (alwaysDrop) return true; if (tag!=null) return false; for(int i=0; i, **, ++, or a similar character-class"+ " operator on a [potentially] multicharacter production"); @@ -374,14 +301,14 @@ public class GrammarAST { this.elements = elements; return this; } - public Sequence build(Context cx, Union u, NonTerminalNode cnt, boolean dropall) { + public Sequence build(BuildContext cx, Union u, NonTerminalNode cnt, boolean dropall) { Sequence ret = build0(cx, cnt, dropall); for(Seq s : and) ret = ret.and(s.build(cx, null, cnt, true)); for(Seq s : not) ret = ret.andnot(s.build(cx, null, cnt, true)); if (u!=null) u.add(ret); return ret; } - public Sequence build0(Context cx, NonTerminalNode cnt, boolean dropall) { + public Sequence build0(BuildContext cx, NonTerminalNode cnt, boolean dropall) { boolean[] drops = new boolean[elements.length]; Element[] els = new Element[elements.length]; dropall |= isDropped(cx); @@ -428,6 +355,90 @@ public class GrammarAST { } } + /** a node in the AST which is resolved into an Element */ + private abstract class ElementNode { + /** the field name to be used when synthesizing AST classes; null if none suggested */ + public String getFieldName() { return null; } + public boolean isLifted() { return false; } + public boolean isDropped(BuildContext cx) { return false; } + public Atom toAtom(BuildContext cx) { throw new Error("can't convert a " + this.getClass().getName() + " to an atom: " + this); } + public abstract Element build(BuildContext 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; + + /** 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) { + this.sequences = sequences; + this.rep = rep; + this.sep = sep; + } + public String getFieldName() { return null; } + public boolean isLifted() { return false; } + public boolean isDropped(BuildContext cx) { + for(Seq[] seqs : sequences) + for(Seq seq : seqs) + if (!seq.isDropped(cx)) + return false; + return true; + } + public Atom toAtom(BuildContext cx) { + Atom ret = null; + for(Seq[] ss : sequences) + for(Seq s : ss) + ret = ret==null ? s.toAtom(cx) : (Atom)ret.union(s.toAtom(cx)); + return ret; + } + + public Element build(BuildContext cx, NonTerminalNode cnt, boolean dropall) { + return buildIntoPreallocatedUnion(cx, cnt, dropall, new Union(null, false)); } + public Element buildIntoPreallocatedUnion(BuildContext cx, NonTerminalNode cnt, boolean dropall, Union u) { + Union urep = null; + if (rep) { + urep = new Union(null, false); + urep.add(Sequence.create(cnt.name, new Element[0])); + urep.add(sep==null + ? Sequence.create(new Element[] { u }, 0) + : Sequence.create(new Element[] { cx.get(sep), u }, 1)); + } + HashSet bad2 = new HashSet(); + for(int i=0; i)_e.toAtom(cx).complement()); } - public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { return toAtom(cx); } + public Atom toAtom(BuildContext cx) { return (Atom)((Topology)_e.toAtom(cx).complement()); } + public Element build(BuildContext cx, NonTerminalNode cnt, boolean dropall) { return toAtom(cx); } } private class DropNode extends ElementNodeWrapper { public DropNode(ElementNode e) { super(e); } - public boolean isDropped(Context cx) { return true; } + public boolean isDropped(BuildContext cx) { return true; } + } + + /** 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 String getFieldName() { return label; } } ////////////////////////////////////////////////////////////////////////////// - public class Context { + public class BuildContext { public HashMap map = new HashMap(); public GrammarNode grammar; - public Context(Tree t) { } - public Context(GrammarNode g) { this.grammar = g; } + public BuildContext(Tree t) { } + public BuildContext(GrammarNode g) { this.grammar = g; } public Union build() { Union ret = null; for(NonTerminalNode nt : grammar.values()) { @@ -573,7 +593,7 @@ public class GrammarAST { } else { ret = new Union(name, false); map.put(name, ret); - nt.buildIntoPreallocatedUnion(this, nt, nt.isDropped(this), ret); + nt.getUnionNode().buildIntoPreallocatedUnion(this, nt, nt.isDropped(this), ret); } return ret; }