checkpoint
[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; each inner class is a type of AST node. */
13 public class MetaGrammarBindings {
14
15     // FIXME ugly ugly ugly scary dangerous
16     public static String prefix = "";
17
18     /** A grammar (a set of nonterminals) */
19     public static class GrammarNode extends HashMap<String,NonTerminalNode> implements NonTerminalSource {
20         public NonTerminalNode[] getNonTerminals() {
21             return (NonTerminalNode[])values().toArray(new NonTerminalNode[0]);
22         }
23         public GrammarNode(NonTerminalNode[] nonterminals) {
24             for(NonTerminalNode nt : nonterminals) {
25                 if (nt==null) continue;
26                 if (this.get(nt.name)!=null)
27                     throw new RuntimeException("duplicate definition of nonterminal \""+nt.name+"\"");
28                 this.put(nt.name, nt);
29             }
30         }
31         public @bind.as("Grammar") GrammarNode(Object[] nt) {
32             add(nt);
33         }
34         private void add(Object[] obs) {
35             for(Object o : obs) {
36                 if (o==null) continue;
37                 else if (o instanceof Object[]) add((Object[])o);
38                 else if (o instanceof NonTerminalNode) {
39                     NonTerminalNode nt = (NonTerminalNode)o;
40                     if (this.get(nt.name)!=null)
41                         throw new RuntimeException("duplicate definition of nonterminal \""+nt.name+"\"");
42                     this.put(nt.name, nt);
43                 }
44                 else if (o instanceof NonTerminalSource) add(((NonTerminalSource)o).getNonTerminals());
45             }
46         }
47         public String toString() {
48             String ret = "[ ";
49             for(NonTerminalNode nt : values()) ret += nt + ", ";
50             return ret + " ]";
51         }
52         public Union build(String s, GrammarBindingResolver rm) {
53             Context cx = new Context(this,rm);
54             Union u = null;
55             for(MetaGrammarBindings.NonTerminalNode nt : values()) {
56                 Union el = (Union)cx.get(nt.name);
57                 StringBuffer st = new StringBuffer();
58                 el.toString(st);
59                 if (nt.name.equals(s)) u = el;
60             }
61             return u;
62         }
63     }
64
65     public abstract static class UnionNode extends ElementNode {
66         public Seq[][] sequences;
67         public void build(Context cx, Union u, NonTerminalNode cnt) {
68             HashSet<Sequence> bad2 = new HashSet<Sequence>();
69             for(int i=0; i<sequences.length; i++) {
70                 Seq[] group = sequences[i];
71                 Union u2 = new Union();
72                 if (sequences.length==1) u2 = u;
73                 for(int j=0; j<group.length; j++) {
74                     group[j].build(cx, u2, false, cnt);
75                 }
76                 if (sequences.length==1) break;
77                 Sequence seq = Sequence.singleton(u2);
78                 for(Sequence s : bad2) {
79                     s.lame = true;
80                     seq = seq.not(s);
81                 }
82                 u.add(seq);
83                 bad2.add(Sequence.singleton(u2));
84             }
85         }
86     }
87
88     public static @bind.as("#import") GrammarNode poundimport(String fileName, String as) {
89         if (as==null) as = "";
90         else if ("".equals(as)) { }
91         else as = as +".";
92         
93         System.err.println("#import " + fileName + " as " + as);
94         try {
95             Tree t = new CharParser(MetaGrammar.make()).parse(new FileInputStream(fileName)).expand1();
96             Tree.TreeFunctor<Object,Object> red = (Tree.TreeFunctor<Object,Object>)t.head();
97             String oldprefix = prefix;
98             prefix = as;
99             GrammarNode gn = (GrammarNode)red.invoke(t);
100             prefix = oldprefix;
101             return gn;
102         } catch (Exception e) {
103             e.printStackTrace();
104             throw new RuntimeException(e);
105         }
106     }
107
108     public static interface NonTerminalSource {
109         public NonTerminalNode[] getNonTerminals();
110     }
111
112     public static class NonTerminalNode extends UnionNode implements NonTerminalSource {
113         public boolean rep;
114         public String  name = null;
115         public String sep = null;
116         public NonTerminalNode[] getNonTerminals() { return new NonTerminalNode[] { this }; }
117         public @bind.as("NonTerminal") NonTerminalNode(@bind.arg String name, @bind.arg Seq[][] sequences) { this(name, sequences, false); }
118         public NonTerminalNode(String name, Seq[][] sequences, boolean rep) { this(name, sequences, rep, null); }
119         public NonTerminalNode(String name, Seq[][] sequences, boolean rep, String sep) {
120             this.name = prefix + name;
121             this.sequences = sequences;
122             this.rep = rep;
123             this.sep = prefix + sep;
124         }
125         public Element build(Context cx, NonTerminalNode cnt) { return cx.get(name); }
126         public void build(Context cx, Union u, NonTerminalNode cnt) {
127             if (!rep) { super.build(cx, u, this); return; }
128             HashSet<Sequence> bad2 = new HashSet<Sequence>();
129
130             Union urep = new Union();
131             urep.add(Sequence.empty);
132             urep.add(Sequence.singleton(new Element[] { cx.get(sep), u }, 1));
133
134             for(int i=0; i<sequences.length; i++) {
135                 Seq[] group = sequences[i];
136                 Union u2 = new Union();
137                 if (sequences.length==1) u2 = u;
138                 for(int j=0; j<group.length; j++) {
139                     Union u3 = new Union();
140                     group[j].build(cx, u3, false, this);
141                     Sequence s = Sequence.unwrap(new Element[] { u3, urep },
142                                                  cx.rm.repeatTag(),
143                                                  new boolean[] { false, false });
144                     u2.add(s);
145                 }
146                 if (sequences.length==1) break;
147                 Sequence seq = Sequence.singleton(u2);
148                 for(Sequence s : bad2) {
149                     s.lame = true;
150                     seq = seq.not(s);
151                 }
152                 u.add(seq);
153                 bad2.add(Sequence.singleton(u2));
154             }
155         }
156     }
157     public static @bind.as("=") NonTerminalNode go(@bind.arg String name, @bind.arg Seq[][] sequences) { return new NonTerminalNode(name, sequences, true); }
158     public static @bind.as("=") NonTerminalNode go(@bind.arg String name, @bind.arg String sep, @bind.arg Seq[][] sequences) {
159         return new NonTerminalNode(name, sequences, true, sep);
160     }
161
162     public static class AnonUnionNode extends UnionNode {
163         public @bind.as("(") AnonUnionNode(Seq[][] sequences) {
164             this.sequences = sequences;
165         }
166         public Element build(Context cx, NonTerminalNode cnt) {
167             Union ret = new Union();
168             build(cx, ret, cnt);
169             return ret;
170         }
171     }
172
173     public static class Range {
174         public @bind Range(char only) { first = only; last = only; }
175         public @bind Range(char first, char last) { this.first = first; this.last = last; }
176         public char first;
177         public char last;
178     }
179
180     public static abstract class ElementNode {
181         public String getLabel() { return null; }
182         public String getOwnerTag() { return null; }
183         public boolean drop() { return false; }
184         public abstract Element build(Context cx, NonTerminalNode cnt);
185     }
186
187     public static class Drop extends ElementNode {
188         public ElementNode e;
189         public Drop(ElementNode e) { this.e = e; }
190         public String getLabel() { return null; }
191         public boolean drop() { return true; }
192         public String getOwnerTag() { return e.getOwnerTag(); }
193         public Element build(Context cx, NonTerminalNode cnt) { return e.build(cx, cnt); }
194     }
195
196     public static class Label extends ElementNode {
197         public String label;
198         public ElementNode e;
199         public Label(String label, ElementNode e) { this.e = e; this.label = label; }
200         public String getLabel() { return label; }
201         public String getOwnerTag() { return e.getOwnerTag(); }
202         public Element build(Context cx, NonTerminalNode cnt) { return e.build(cx, cnt); }
203     }
204
205     public static /*abstract*/ class Seq {
206         HashSet<Seq> and = new HashSet<Seq>();
207         HashSet<Seq> not = new HashSet<Seq>();
208         ElementNode[] elements;
209         ElementNode follow;
210         String tag = null;
211         boolean lame;
212         public void append(ElementNode e) {
213             ElementNode[] elements = new ElementNode[this.elements.length+1];
214             System.arraycopy(this.elements, 0, elements, 0, this.elements.length);
215             this.elements = elements;
216             elements[elements.length-1] = e;
217         }
218         public Seq(ElementNode e) { this(new ElementNode[] { e }); }
219         public Seq(ElementNode[] elements) { this.elements = elements; }
220         public Seq tag(String tag) { this.tag = prefix+tag; return this; }
221         public Seq follow(ElementNode follow) { this.follow = follow; return this; }
222         public Seq dup() {
223             Seq ret = new Seq(elements);
224             ret.and.addAll(and);
225             ret.not.addAll(not);
226             ret.follow = follow;
227             ret.tag = prefix+tag;
228             return ret;
229         }
230         public Seq and(Seq s) { and.add(s); s.lame = true; return this; }
231         public Seq andnot(Seq s) { not.add(s); s.lame = true; return this; }
232         public Seq separate(ElementNode sep) {
233             ElementNode[] elements = new ElementNode[this.elements.length * 2 - 1];
234             for(int i=0; i<this.elements.length; i++) {
235                 elements[i*2]   = this.elements[i];
236                 if (i<this.elements.length-1)
237                     elements[i*2+1] = new Drop(sep);
238             }
239             this.elements = elements;
240             return this;
241         }
242         public Sequence build(Context cx, Union u, boolean lame, NonTerminalNode cnt) {
243             Sequence ret = build0(cx, lame || this.lame, cnt);
244             for(Seq s : and) { Sequence dork = s.build(cx, u, true, cnt); ret = ret.and(dork); }
245             for(Seq s : not) { Sequence dork = s.build(cx, u, true, cnt); ret = ret.not(dork); }
246             u.add(ret);
247             ret.lame = lame;
248             return ret;
249         }
250         public Sequence build0(Context cx, boolean lame, NonTerminalNode cnt) {
251             boolean dropAll = lame;
252             if (tag!=null && tag.endsWith("()")) dropAll = true;
253             boolean[] drops = new boolean[elements.length];
254             Element[] els = new Element[elements.length];
255             for(int i=0; i<elements.length; i++) {
256                 drops[i]  = elements[i].drop();
257                 els[i] = elements[i].build(cx, cnt);
258                 if (elements[i].getOwnerTag() != null)
259                     tag = elements[i].getOwnerTag();
260             }
261             Sequence ret = null;
262             if (dropAll)     ret = Sequence.drop(els, false);
263             else {
264                 ret = cx.rm.tryResolveTag(tag, cnt==null?null:cnt.name, els, drops);
265                 if (ret == null) {
266                     int idx = -1;
267                     for(int i=0; i<els.length; i++)
268                         if (!drops[i])
269                             if (idx==-1) idx = i;
270                             else throw new Error("multiple non-dropped elements in sequence: " + Sequence.drop(els,false));
271                     if (idx != -1) ret = Sequence.singleton(els, idx);
272                     else           ret = Sequence.drop(els, false);
273                 }
274             }
275             if (this.follow != null)
276                 ret.follow = infer(this.follow.build(cx, null));
277             ret.lame = this.lame;
278             return ret;
279         }
280     }
281     public static @bind.as("&")   Seq  and2(Seq s,        Seq a) { return s.and(a); }
282     public static @bind.as("&~")  Seq  andnot2(Seq s,     Seq a) { return s.andnot(a); }
283     public static @bind.as("->")  Seq  arrow(Seq s, ElementNode e)                { return s.follow(e); }
284     public static @bind.as("::")  Seq  tag(String tagname, Seq s)        { return s.tag(tagname); }
285     public static @bind.as("/")   Seq  slash(Seq s, ElementNode e)                { return s.separate(e); }
286
287     public static Seq  seq(ElementNode[] elements)               { return new Seq(elements); }
288     public static @bind.as("Elements")  Seq  seq2(ElementNode[] elements)               { return new Seq(elements); }
289     public static @bind.as        Seq  psx(Seq s)                        { return s; }
290     public static @bind.as(":")   ElementNode   colon(String s, ElementNode e)             { return new Label(s, e); }
291     public static @bind.as(")")   void close(String foo)                 { throw new Error("not supported"); }
292     public static @bind.as("()")  ElementNode   epsilon()                         { return new Constant(Union.epsilon); }
293
294     public static class NonTerminalReferenceNode extends ElementNode {
295         public String nonTerminal;
296         public NonTerminalReferenceNode() { }
297         public @bind.as("NonTerminalReference") NonTerminalReferenceNode(String nonTerminal) {
298             this.nonTerminal = prefix + nonTerminal;
299         }
300         public Element build(Context cx, NonTerminalNode cnt) {
301             if (!this.nonTerminal.startsWith(prefix)) nonTerminal = prefix + nonTerminal;
302             Element ret = cx.get(nonTerminal);
303             if (ret == null) throw new RuntimeException("unknown nonterminal \""+nonTerminal+"\"");
304             return ret;
305         }
306     }
307
308     public static class Literal extends Constant {
309         public @bind Literal(@bind.arg String string) { super(CharRange.string(string)); }
310         public boolean drop() { return true; }
311     }
312
313     public static                     class CharClass            extends ElementNode {
314         Range[] ranges;
315         public @bind.as("[") CharClass(Range[] ranges) { this.ranges = ranges; }
316         public Element build(Context cx, NonTerminalNode cnt) {
317             edu.berkeley.sbp.util.Range.Set set = new edu.berkeley.sbp.util.Range.Set();
318             for(Range r : ranges)
319                 set.add(r.first, r.last);
320             return CharRange.set(set);
321         }
322     }
323
324     public static @bind.as("{")           class XTree                 extends ElementNode {
325         public @bind.arg Seq body;
326         public Element build(Context cx, NonTerminalNode cnt) {
327             Union u = new Union();
328             Sequence s = body.build(cx, u, false, null);
329             Union u2 = new Union();
330             u2.add(Sequence.singleton(new Element[] {
331                 CharRange.leftBrace,
332                 cx.get("ws"),
333                 u,
334                 cx.get("ws"),
335                 CharRange.rightBrace
336             }, 2));
337             return u2;
338         }
339     }
340
341     public static class Rep extends ElementNode {
342         public ElementNode e, sep;
343         public boolean zero, many, max;
344         public Rep(ElementNode e, ElementNode sep, boolean zero, boolean many, boolean max) {
345             this.e = e; this.sep = sep; this.zero = zero; this.many = many; this.max = max;}
346         public Element build(Context cx, NonTerminalNode cnt) {
347             return (!max)
348                 ? Sequence.repeat(e.build(cx, null),        zero, many, sep==null ? null : sep.build(cx, null), cx.rm.repeatTag())
349                 : sep==null
350                 ? Sequence.repeatMaximal(infer(e.build(cx, null)), zero, many,                                   cx.rm.repeatTag())
351                 : Sequence.repeatMaximal(e.build(cx, null),                    zero, many, infer(sep.build(cx, null)), cx.rm.repeatTag());
352         }
353     }
354     public static class Constant extends ElementNode {
355         Element constant;
356         public Constant(Element constant) { this.constant = constant; }
357         public Element build(Context cx, NonTerminalNode cnt) { return constant; }
358     }
359     public abstract static class PostProcess extends ElementNode {
360         ElementNode e;
361         public PostProcess(ElementNode e) { this.e = e; }
362         public Element build(Context cx, NonTerminalNode cnt) { return postProcess(e.build(cx, cnt)); }
363         public abstract Element postProcess(Element e);
364     }
365
366     // FIXME: it would be nice if we could hoist this into "Rep"
367     public static @bind.as("++")  ElementNode plusmax(final ElementNode e)                     
368     { return new Rep(e, null, false, true, true); }
369     public static @bind.as("+")   ElementNode plus(final ElementNode e)                        
370     { return new Rep(e, null, false, true, false); }
371     public static @bind.as("++/") ElementNode plusmaxfollow(final ElementNode e, final ElementNode sep) 
372     { return new Rep(e, sep,  false, true, true); }
373     public static @bind.as("+/")  ElementNode plusfollow(final ElementNode e, final ElementNode sep)    
374     { return new Rep(e, sep,  false, true, false); }
375     public static @bind.as("**")  ElementNode starmax(final ElementNode e)                     
376     { return new Rep(e, null, true,  true, true); }
377     public static @bind.as("*")   ElementNode star(final ElementNode e)                        
378     { return new Rep(e, null, true,  true, false); }
379     public static @bind.as("**/") ElementNode starmaxfollow(final ElementNode e, final ElementNode sep) 
380     { return new Rep(e, sep,  true,  true, true); }
381     public static @bind.as("*/")  ElementNode starfollow(final ElementNode e, final ElementNode sep)    
382     { return new Rep(e, sep,  true,  true, false); }
383     public static @bind.as("?")   ElementNode question(final ElementNode e)                    
384     { return new Rep(e, null, true,  true, false); }
385     public static @bind.as("!")   ElementNode bang(final ElementNode e)                        
386     { return new Drop(e); }
387
388     public static @bind.as("^")   ElementNode caret(final String s) {
389         final String thePrefix = prefix;
390         return new Drop(new Constant(CharRange.string(s)) {
391                 public String getOwnerTag() { return thePrefix+s; }
392             });
393     }
394
395     public static @bind.as("~")   ElementNode tilde(final ElementNode e) {
396         return new PostProcess(e) {
397                 public Element postProcess(Element e) {
398                     return infer((Topology<Character>)Atom.toAtom(e).complement().minus(CharRange.braces));
399                 } }; }
400
401     public static @bind.as("Word")        String word(String s) { return s; }
402     public static @bind.as("Quoted")      String quoted(String s) { return s; }
403     public static @bind.as("escaped")     String c(char c) { return c+""; }
404     public static @bind.as("EmptyString") String emptystring() { return ""; }
405     public static @bind.as("\n")          String retur() { return "\n"; }
406     public static @bind.as("\r")          String lf() { return "\r"; }
407
408     static Atom infer(Element e)  { return infer((Topology<Character>)Atom.toAtom(e)); }
409     static Atom infer(Topology<Character> t) { return new CharRange(new CharTopology(t)); }
410
411     public static class Context {
412         public HashMap<String,Union> map = new HashMap<String,Union>();
413         public GrammarNode grammar;
414         public String cnt = null;
415         public GrammarBindingResolver rm;
416         public Context(GrammarNode g, GrammarBindingResolver rm) {
417             this.grammar = g;
418             this.rm = rm;
419         }
420         public Union build() {
421             Union ret = null;
422             for(NonTerminalNode nt : grammar.values()) {
423                 Union u = get(nt.name);
424                 if ("s".equals(nt.name))
425                     ret = u;
426             }
427             return ret;
428         }
429         public Context(Tree t, GrammarBindingResolver rm) {
430             this.rm = rm;
431             Tree.TreeFunctor<Object,Object> red = (Tree.TreeFunctor<Object,Object>)t.head();
432             this.grammar = (GrammarNode)red.invoke(t);
433         }
434         public Union peek(String name) { return map.get(name); }
435         public void  put(String name, Union u) { map.put(name, u); }
436         public Union get(String name) {
437             Union ret = map.get(name);
438             if (ret != null) return ret;
439             ret = new Union(name);
440             map.put(name, ret);
441             NonTerminalNode nt = grammar.get(name);
442             if (nt==null) {
443                 //System.err.println("*** warning could not find " + name);
444                 throw new Error("warning could not find " + name);
445             } else {
446                 String old = cnt;
447                 cnt = name;
448                 nt.build(this, ret, nt);
449                 cnt = old;
450             }
451             return ret;
452         }
453
454     }
455
456 }