From b3b610d65969bcd5325bdba70f9e9c9e03cc83b3 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 27 May 2007 16:29:15 -0400 Subject: [PATCH] lots of misc cleanups to GrammarAST darcs-hash:20070527202915-5007d-f093deca58721692fc7987bb2aa2222939922d39.gz --- src/edu/berkeley/sbp/meta/GrammarAST.java | 181 ++++++++++++++++++----------- 1 file changed, 114 insertions(+), 67 deletions(-) diff --git a/src/edu/berkeley/sbp/meta/GrammarAST.java b/src/edu/berkeley/sbp/meta/GrammarAST.java index 19f12a3..fc76a00 100644 --- a/src/edu/berkeley/sbp/meta/GrammarAST.java +++ b/src/edu/berkeley/sbp/meta/GrammarAST.java @@ -27,7 +27,9 @@ public class GrammarAST { return new GrammarAST(includes, "").buildGrammar(grammarAST, startingNonterminal); } - public static Object illegalTag = ""; // this is the tag that should never appear in the non-dropped output FIXME + private static Object illegalTag = ""; // this is the tag that should never appear in the non-dropped output FIXME + + // Instance ////////////////////////////////////////////////////////////////////////////// private final String prefix; private final File[] includes; @@ -52,7 +54,7 @@ public class GrammarAST { } return Reflection.lub(ret); } - public String stringifyChildren(Tree t) { + private String stringifyChildren(Tree t) { StringBuffer sb = new StringBuffer(); for(int i=0; i 0) head = head.substring(head.indexOf('.')+1); @@ -77,7 +82,7 @@ public class GrammarAST { if (head.equals("Grammar")) return new GrammarNode(walkChildren(t)); if (head.equals("(")) return new UnionNode((Seq[][])walkChildren(t.child(0))); if (head.equals("Word")) return stringifyChildren(t); - if (head.equals("Elements")) return seq2((ElementNode[])Reflection.rebuild(walkChildren(t), ElementNode[].class)); + 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 BracedNode(walkSeq(t.child(0))); @@ -124,16 +129,16 @@ public class GrammarAST { 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 GrammarBuilder.buildFromAST(t.child(0), "s", includes); + if (head.equals("SubGrammar")) return GrammarAST.buildFromAST(t.child(0), "s", includes); if (head.equals("NonTerminal")) - return new NonTerminalNode((String)walk(t.child(0)), + return new NonTerminalNode(walkString(t.child(0)), (Seq[][])walkChildren(t.child(1)), false, null, false); if (head.equals("Colons")) { - String tag = (String)walk(t.child(0)); + String tag = walkString(t.child(0)); Seq[][] seqs = (Seq[][])walk(t.child(1)); for(Seq[] seq : seqs) for(int i=0; i " + (head.equals("..."))); } + // Nodes ////////////////////////////////////////////////////////////////////////////// @@ -203,16 +209,24 @@ public class GrammarAST { } } - public class UnionNode extends ElementNode { + private class UnionNode extends ElementNode { public Seq[][] sequences; public String sep = null; public boolean rep; + 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 drop(Context cx) { + for(Seq[] seqs : sequences) + for(Seq seq : seqs) + if (!seq.drop(cx)) + return false; + return true; + } public Atom toAtom(Context cx) { Atom ret = null; for(Seq[] ss : sequences) @@ -226,7 +240,7 @@ public class GrammarAST { Union urep = null; if (rep) { urep = new Union(null, false); - urep.add(Sequence.create(new Element[0], cnt.name)); + 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)); @@ -245,7 +259,7 @@ public class GrammarAST { Sequence s = Sequence.create(cnt.name, new Element[] { u3, urep }, new boolean[] { false, false }, - true); + new boolean[] { false, true}); u2.add(s); } if (sequences.length==1) break; @@ -258,7 +272,7 @@ public class GrammarAST { } } - public class NonTerminalNode extends UnionNode { + private class NonTerminalNode extends UnionNode { public boolean alwaysDrop; public String name = null; public boolean drop(Context cx) { return alwaysDrop; } @@ -270,20 +284,49 @@ public class GrammarAST { public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { return cx.get(name); } } - public class Seq { + private class Seq { public boolean alwaysDrop = false; - public boolean drop(Context cx) { return alwaysDrop; } + public boolean drop(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 = elements; - for(int i=0; i)_e.toAtom(cx).complement()); } public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { return toAtom(cx); } } - public class DropNode extends ElementNodeWrapper { + private class DropNode extends ElementNodeWrapper { public DropNode(ElementNode e) { super(e); } public boolean drop(Context cx) { return true; } } - 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 Seq arrow(Seq s, ElementNode e) { return s.follow(e); } - public Seq tag(String tagname, Seq s) { return s.tag(tagname); } - public Seq seq(ElementNode[] elements) { return new Seq(elements); } - public Seq seq2(ElementNode[] elements) { return new Seq(elements); } - public ElementNode plusmax(final ElementNode e) { return new RepeatNode(e, null, false, true, true); } - public ElementNode plus(final ElementNode e) { return new RepeatNode(e, null, false, true, false); } - public ElementNode plusmaxfollow(final ElementNode e, final ElementNode sep) { return new RepeatNode(e, sep, false, true, true); } - public ElementNode plusfollow(final ElementNode e, final ElementNode sep) { return new RepeatNode(e, sep, false, true, false); } - public ElementNode starmax(final ElementNode e) { return new RepeatNode(e, null, true, true, true); } - public ElementNode star(final ElementNode e) { return new RepeatNode(e, null, true, true, false); } - public ElementNode starmaxfollow(final ElementNode e, final ElementNode sep) { return new RepeatNode(e, sep, true, true, true); } - public ElementNode starfollow(final ElementNode e, final ElementNode sep) { return new RepeatNode(e, sep, true, true, false); } - public ElementNode question(final ElementNode e) { return new RepeatNode(e, null, true, false, false); } + // 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; + } + } + + 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); } ////////////////////////////////////////////////////////////////////////////// -- 1.7.10.4