50fd0b33f7d6f1ba16a091dce0d8a922862cc6ea
[sbp.git] / src / edu / berkeley / sbp / meta / MetaGrammarBindings.java
1 package edu.berkeley.sbp.meta;
2 import edu.berkeley.sbp.util.*;
3 import edu.berkeley.sbp.*;
4 import edu.berkeley.sbp.chr.*;
5 import edu.berkeley.sbp.misc.*;
6 import edu.berkeley.sbp.bind.*;
7 import java.util.*;
8 import java.lang.annotation.*;
9 import java.lang.reflect.*;
10 import java.io.*;
11
12 /** The java classes typically used to represent a parsed grammar AST */
13 public class MetaGrammarBindings {
14
15     /** A grammar (a set of nonterminals) */
16     public static class Grammar extends HashMap<String,NonTerminal> {
17         public @bind Grammar(NonTerminal[] nonterminals) {
18             for(NonTerminal nt : nonterminals) this.put(nt.name, nt); }
19         public String toString() {
20             String ret = "[ ";
21             for(NonTerminal nt : values()) ret += nt + ", ";
22             return ret + " ]";
23         }
24     }
25
26     public abstract static class Un extends El {
27         public Seq[][] sequences;
28         public void build(MetaGrammar.Context cx, Union u) {
29             HashSet<Sequence> bad2 = new HashSet<Sequence>();
30             for(int i=0; i<sequences.length; i++) {
31                 Seq[] group = sequences[i];
32                 Union u2 = new Union();
33                 if (sequences.length==1) u2 = u;
34                 for(int j=0; j<group.length; j++) {
35                     group[j].build(cx, u2, false);
36                 }
37                 if (sequences.length==1) break;
38                 Sequence seq = Sequence.singleton(u2);
39                 for(Sequence s : bad2) {
40                     s.lame = true;
41                     seq = seq.not(s);
42                 }
43                 u.add(seq);
44                 bad2.add(Sequence.singleton(u2));
45             }
46         }
47     }
48
49     public static class NonTerminal extends Un {
50         public String  name = null;
51         public @bind NonTerminal(@bind.arg String name,
52                                  @bind.arg Seq[][] sequences) {
53             this.name = name;
54             this.sequences = sequences;
55         }
56         public Element build(MetaGrammar.Context cx) { return cx.get(name); }
57     }
58
59     public static class AnonUn extends Un {
60         public @bind.as("(") AnonUn(Seq[][] sequences) {
61             this.sequences = sequences;
62         }
63         public Element build(MetaGrammar.Context cx) {
64             Union ret = new Union();
65             build(cx, ret);
66             return ret;
67         }
68     }
69
70     public static class Range {
71         public @bind Range(char only) { first = only; last = only; }
72         public @bind Range(char first, char last) { this.first = first; this.last = last; }
73         public char first;
74         public char last;
75     }
76     public static abstract class El {
77         public String getLabel() { return null; }
78         public String getOwnerTag() { return null; }
79         public boolean drop() { return false; }
80         public abstract Element build(MetaGrammar.Context cx);
81     }
82     public static class Drop extends El {
83         public El e;
84         public Drop(El e) { this.e = e; }
85         public String getLabel() { return null; }
86         public boolean drop() { return true; }
87         public String getOwnerTag() { return e.getOwnerTag(); }
88         public Element build(MetaGrammar.Context cx) { return e.build(cx); }
89     }
90     public static class Label extends El {
91         public String label;
92         public El e;
93         public Label(String label, El e) { this.e = e; this.label = label; }
94         public String getLabel() { return label; }
95         public String getOwnerTag() { return e.getOwnerTag(); }
96         public Element build(MetaGrammar.Context cx) { return e.build(cx); }
97     }
98     public static /*abstract*/ class Seq {
99         HashSet<Seq> and = new HashSet<Seq>();
100         HashSet<Seq> not = new HashSet<Seq>();
101         El[] elements;
102         El follow;
103         String tag = null;
104         boolean lame;
105         public Seq(El e) { this(new El[] { e }); }
106         public Seq(El[] elements) { this.elements = elements; }
107         public Seq tag(String tag) { this.tag = tag; return this; }
108         public Seq follow(El follow) { this.follow = follow; return this; }
109         public Seq dup() {
110             Seq ret = new Seq(elements);
111             ret.and.addAll(and);
112             ret.not.addAll(not);
113             ret.follow = follow;
114             ret.tag = tag;
115             return ret;
116         }
117         public Seq and(Seq s) { and.add(s); s.lame = true; return this; }
118         public Seq andnot(Seq s) { not.add(s); s.lame = true; return this; }
119         public Seq separate(El sep) {
120             El[] elements = new El[this.elements.length * 2 - 1];
121             for(int i=0; i<this.elements.length; i++) {
122                 elements[i*2]   = this.elements[i];
123                 if (i<this.elements.length-1)
124                     elements[i*2+1] = new Drop(sep);
125             }
126             this.elements = elements;
127             return this;
128         }
129         public Sequence build(MetaGrammar.Context cx, Union u, boolean lame) {
130             Sequence ret = build0(cx, lame || this.lame);
131             for(Seq s : and) { Sequence dork = s.build(cx, u, true); ret = ret.and(dork); }
132             for(Seq s : not) { Sequence dork = s.build(cx, u, true); ret = ret.not(dork); }
133             u.add(ret);
134             ret.lame = lame;
135             return ret;
136         }
137         public Sequence build0(MetaGrammar.Context cx, boolean lame) {
138             boolean unwrap = false;
139             boolean dropAll = lame;
140             if (tag!=null && tag.equals("[]")) unwrap  = true;
141             if (tag!=null && "()".equals(tag)) dropAll = true;
142             Object[] labels = new Object[elements.length];
143             boolean[] drops = new boolean[elements.length];
144             Element[] els = new Element[elements.length];
145             for(int i=0; i<elements.length; i++) {
146                 labels[i] = elements[i].getLabel();
147                 drops[i]  = elements[i].drop();
148                 els[i] = elements[i].build(cx);
149                 if (elements[i].getOwnerTag() != null)
150                     tag = elements[i].getOwnerTag();
151             }
152             Sequence ret = null;
153             if (dropAll)     ret = Sequence.drop(els, false);
154             else if (unwrap) ret = Sequence.unwrap(els, cx.rm.repeatTag(), drops);
155             else if (tag!=null) {
156                 ret = cx.rm.resolveTag(tag, cx.cnt, els, labels, drops);
157             } else {
158                 ret = cx.rm.tryResolveTag(tag, cx.cnt, els, labels, drops);
159                 if (ret == null) {
160                     int idx = -1;
161                     for(int i=0; i<els.length; i++)
162                         if (!drops[i])
163                             if (idx==-1) idx = i;
164                             else throw new Error("multiple non-dropped elements in sequence: " + Sequence.drop(els,false));
165                     if (idx != -1) ret = Sequence.singleton(els, idx);
166                     else           ret = Sequence.drop(els, false);
167                 }
168             }
169             if (this.follow != null)
170                 ret.follow = infer(this.follow.build(cx));
171             ret.lame = this.lame;
172             return ret;
173         }
174     }
175     public static   Seq  and(Seq s,         El[] elements) { return s.and(seq2(elements)); }
176     public static   Seq  andnot(Seq s,      El[] elements) { return s.andnot(seq2(elements)); }
177     public static @bind.as("&")   Seq  and2(Seq s,        Seq a) { return s.and(a); }
178     public static @bind.as("&~")  Seq  andnot2(Seq s,     Seq a) { return s.andnot(a); }
179     public static @bind.as("->")  Seq  arrow(Seq s, El e)                { return s.follow(e); }
180     public static @bind.as("::")  Seq  tag(String tagname, Seq s)        { return s.tag(tagname); }
181     public static @bind.as("/")   Seq  slash(Seq s, El e)                { return s.separate(e); }
182
183     public static Seq  seq(El[] elements)               { return new Seq(elements); }
184     public static @bind.as("PS")  Seq  seq2(El[] elements)               { return new Seq(elements); }
185     public static @bind.as        Seq  psx(Seq s)                        { return s; }
186     public static @bind.as(":")   El   colon(String s, El e)             { return new Label(s, e); }
187     public static @bind.as(")")   void close(String foo)                 { throw new Error("not supported"); }
188     public static @bind.as("()")  El   epsilon()                         { return new Constant(Union.epsilon); }
189
190     public static @bind class NonTerminalReference extends El {
191         public @bind.arg String nonTerminal;
192         public Element build(MetaGrammar.Context cx) { return cx.get(nonTerminal); }
193     }
194
195     public static class Literal extends Constant {
196         public @bind Literal(@bind.arg String string) { super(CharRange.string(string)); }
197         public boolean drop() { return true; }
198     }
199
200     public static                     class CharClass            extends El {
201         Range[] ranges;
202         public @bind.as("[") CharClass(Range[] ranges) { this.ranges = ranges; }
203         public Element build(MetaGrammar.Context cx) {
204             edu.berkeley.sbp.util.Range.Set set = new edu.berkeley.sbp.util.Range.Set();
205             for(Range r : ranges)
206                 set.add(r.first, r.last);
207             return CharRange.set(set);
208         }
209     }
210
211     public static @bind.as("{")           class XTree                 extends El {
212         public @bind.arg Seq body;
213         public Element build(MetaGrammar.Context cx) {
214             throw new Error();
215         }
216     }
217
218     public static class Rep extends El {
219         public El e, sep;
220         public boolean zero, many, max;
221         public Rep(El e, El sep, boolean zero, boolean many, boolean max) {
222             this.e = e; this.sep = sep; this.zero = zero; this.many = many; this.max = max;}
223         public Element build(MetaGrammar.Context cx) {
224             return (!max)
225                 ? Sequence.repeat(e.build(cx),        zero, many, sep==null ? null : sep.build(cx), cx.rm.repeatTag())
226                 : sep==null
227                 ? Sequence.repeatMaximal(infer(e.build(cx)), zero, many,                                   cx.rm.repeatTag())
228                 : Sequence.repeatMaximal(e.build(cx),                    zero, many, infer(sep.build(cx)), cx.rm.repeatTag());
229         }
230     }
231     public static class Constant extends El {
232         Element constant;
233         public Constant(Element constant) { this.constant = constant; }
234         public Element build(MetaGrammar.Context cx) { return constant; }
235     }
236     public abstract static class PostProcess extends El {
237         El e;
238         public PostProcess(El e) { this.e = e; }
239         public Element build(MetaGrammar.Context cx) { return postProcess(e.build(cx)); }
240         public abstract Element postProcess(Element e);
241     }
242
243     // FIXME: it would be nice if we could hoist this into "Rep"
244     public static @bind.as("++")  El plusmax(final El e)                     { return new Rep(e, null, false, true, true); }
245     public static @bind.as("+")   El plus(final El e)                        { return new Rep(e, null, false, true, false); }
246     public static @bind.as("++/") El plusmaxfollow(final El e, final El sep) { return new Rep(e, sep,  false, true, true); }
247     public static @bind.as("+/")  El plusfollow(final El e, final El sep)    { return new Rep(e, sep,  false, true, false); }
248     public static @bind.as("**")  El starmax(final El e)                     { return new Rep(e, null, true,  true, true); }
249     public static @bind.as("*")   El star(final El e)                        { return new Rep(e, null, true,  true, false); }
250     public static @bind.as("**/") El starmaxfollow(final El e, final El sep) { return new Rep(e, sep,  true,  true, true); }
251     public static @bind.as("*/")  El starfollow(final El e, final El sep)    { return new Rep(e, sep,  true,  true, false); }
252     public static @bind.as("?")   El question(final El e)                    { return new Rep(e, null, true,  true, false); }
253
254     public static @bind.as("!")   El bang(final El e)                        { return new Drop(e); }
255
256     public static @bind.as("^")   El caret(final String s) {
257         return new Drop(new Constant(CharRange.string(s)) {
258                 public String getOwnerTag() { return s; }
259             });
260     }
261
262     public static @bind.as("~")   El tilde(final El e) {
263         return new PostProcess(e) {
264                 public Element postProcess(Element e) {
265                     return infer((Topology<Character>)Atom.toAtom(e).complement()); 
266                 } }; }
267
268     public static @bind.as("^^")  void doublecaret(final El e)                 { throw new Error("not implemented"); }
269
270     //public static @bind.as("(")   El subexpression(Seq[][] rhs)                { return new NonTerminal(rhs); }
271
272     public static @bind.as("Word")    String word(String s) { return s; }
273     public static @bind.as("Quoted")  String quoted(String s) { return s; }
274     public static @bind.as("escaped") String c(char c) { return c+""; }
275     public static @bind.as("\"\"")    String emptystring() { return ""; }
276     public static @bind.as("\n")      String retur() { return "\n"; }
277     public static @bind.as("\r")      String lf() { return "\r"; }
278
279     static Atom infer(Element e)  { return infer((Topology<Character>)Atom.toAtom(e)); }
280     static Atom infer(Topology<Character> t) { return new CharRange(new CharTopology(t)); }
281 }