checkpoint
[sbp.git] / src / edu / berkeley / sbp / misc / MetaGrammar.java
1 package edu.berkeley.sbp.misc;
2 import edu.berkeley.sbp.util.*;
3 import edu.berkeley.sbp.*;
4 import edu.berkeley.sbp.chr.*;
5 import edu.berkeley.sbp.bind.*;
6 import java.util.*;
7 import java.lang.annotation.*;
8 import java.lang.reflect.*;
9 import java.io.*;
10
11 public class MetaGrammar {
12     
13     public static boolean harsh = false;
14
15     public static void main(String[] args) throws Exception {
16         if (args.length != 2) {
17             System.err.println("usage: java " + MetaGrammar.class.getName() + " grammarfile.g com.yourdomain.package.ClassName");
18             System.exit(-1);
19         }
20         //StringBuffer sbs = new StringBuffer();
21         //((MetaGrammar)new MetaGrammar().walk(meta)).nt.get("e").toString(sbs);
22         //System.err.println(sbs);
23         String className   = args[1].substring(args[1].lastIndexOf('.')+1);
24         String packageName = args[1].substring(0, args[1].lastIndexOf('.'));
25         String fileName    = packageName.replace('.', '/') + "/" + className + ".java";
26
27         BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(fileName)));
28         StringBuffer out = new StringBuffer();
29
30         boolean skip = false;
31         for(String s = br.readLine(); s != null; s = br.readLine()) {
32             if (s.indexOf("DO NOT EDIT STUFF BELOW: IT IS AUTOMATICALLY GENERATED") != -1 && s.indexOf("\"")==-1) skip = true;
33             if (s.indexOf("DO NOT EDIT STUFF ABOVE: IT IS AUTOMATICALLY GENERATED") != -1 && s.indexOf("\"")==-1) break;
34             if (!skip) out.append(s+"\n");
35         }
36
37         out.append("\n        // DO NOT EDIT STUFF BELOW: IT IS AUTOMATICALLY GENERATED\n");
38
39         /*
40         ReflectiveMeta m = new ReflectiveMeta();
41         Tree<String> res = new CharParser(MetaGrammar.make()).parse(new FileInputStream(args[0])).expand1();
42         MetaGrammar.Meta.MetaGrammarFile mgf = m.new MetaGrammarFile(res);
43         MetaGrammar.BuildContext bc = new MetaGrammar.BuildContext(mgf);
44
45         Union meta = mgf.get("s").build(bc);
46         Tree t = new CharParser(meta).parse(new FileInputStream(args[0])).expand1();
47         */
48         Tree t = MetaGrammarTree.meta;
49         Union u = MetaGrammar.make(t, "s");
50
51         System.err.println();
52         System.err.println("== parsing with parsed grammar =================================================================================");
53         t = new CharParser((Union)u).parse(new FileInputStream(args[0])).expand1();
54         System.out.println(t.toPrettyString());
55         //Forest<String> fs = new CharParser(make()).parse(new FileInputStream(args[0]));
56         //System.out.println(fs.expand1());
57
58         //GraphViz gv = new GraphViz();
59         //fs.toGraphViz(gv);
60         //FileOutputStream fox = new FileOutputStream("out.dot");
61         //gv.dump(fox);
62         //fox.close();
63
64         t.toJava(out);
65         out.append("\n        // DO NOT EDIT STUFF ABOVE: IT IS AUTOMATICALLY GENERATED\n");
66
67         for(String s = br.readLine(); s != null; s = br.readLine()) out.append(s+"\n");
68         br.close();
69
70         OutputStream os = new FileOutputStream(fileName);
71         PrintWriter p = new PrintWriter(new OutputStreamWriter(os));
72         p.println(out.toString());
73         p.flush();
74         os.close();
75     }
76
77     public static class ReflectiveMetaPlain extends ReflectiveMeta {
78         public Object repeatTag() { return null; }
79         public Sequence tryResolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
80             return null; }
81         public Sequence resolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
82             return Sequence.rewritingSequence(tag, els, labels, drops);
83         }
84     }
85
86     public static class ReflectiveMeta /*extends MetaGrammar.Meta*/ {
87         private final Class _cl;
88         private final Class[] _inner;
89         public ReflectiveMeta() {
90             this(MG.class);
91         }
92         public ReflectiveMeta(Class c) {
93             this._cl = c;
94             this._inner = c.getDeclaredClasses();
95         }
96         public ReflectiveMeta(Class c, Class[] inner) {
97             this._cl = c;
98             this._inner = inner;
99         }
100         private boolean match(Method m, String s) { return match(m.getAnnotation(bind.as.class), null, s); }
101         private boolean match(bind.as t, Class c, String s) {
102             if (t==null) return false;
103             if (t.value().equals(s)) return true;
104             if (c != null && t.equals("") && c.getSimpleName().equals(s)) return true;
105             return false;
106         }
107         /*
108         private boolean match(nonterminal t, Class c, String s) {
109             if (t==null) return false;
110             if (t.value().equals(s)) return true;
111             if (c != null && t.equals("") && c.getSimpleName().equals(s)) return true;
112             return false;
113         }
114         */
115         private boolean match(Class c, String s, String nonTerminalName) {
116             if (match((bind.as)c.getAnnotation(bind.as.class), c, s)) return true;
117             //if (match((nonterminal)c.getAnnotation(bind.as.class), c, nonTerminalName)) return true;
118             return false;
119         }
120         public boolean match(Constructor con, String s, String nonTerminalName) {
121             Class c = con.getDeclaringClass();
122             if (match((bind.as)con.getAnnotation(bind.as.class), null, s)) return true;
123             //if (match((nonterminal)con.getAnnotation(bind.as.class), c, s)) return true;
124             return false;
125         }
126         public Object repeatTag() {
127             return new Tree.ArrayBuildingTreeFunctor<Object>();
128         }
129         public Sequence tryResolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
130             Production p = new Production(tag, nonTerminalName, els, labels, drops);
131             for(Method m : _cl.getMethods())
132                 if (new Target(m).isCompatible(p))
133                     return new Target(m).makeSequence(p);
134             for(Class c : _inner)
135                 for(Constructor con : c.getConstructors())
136                     if (new Target(con).isCompatible(p))
137                         return new Target(con).makeSequence(p);
138             for(Class c : _inner)
139                 if (new Target(c).isCompatible(p))
140                     return new Target(c).makeSequence(p);
141             return null;
142         }
143         public Sequence resolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
144             Sequence ret = tryResolveTag(tag, nonTerminalName, els, labels, drops);
145             if (ret != null) return ret;
146             String message = "could not find a Java method/class/ctor matching tag \""+tag+
147                 "\", nonterminal \""+nonTerminalName+"\" with " + els.length + " arguments";
148             if (harsh) {
149                 throw new RuntimeException(message);
150             } else {
151                 System.err.println(message);
152                 return Sequence.rewritingSequence(tag, els, labels, drops);
153             }
154         }
155     }
156
157    
158     public static class Production {
159         public String tag;
160         public String nonTerminal;
161         public Object[] labels;
162         public boolean[] drops;
163         public Element[] elements;
164         public int count = 0;
165         public Production(String tag, String nonTerminal, Element[] elements, Object[] labels, boolean[] drops) {
166             this.tag = tag;
167             this.elements = elements;
168             this.nonTerminal = nonTerminal;
169             this.labels = labels;
170             this.drops = drops;
171             for(int i=0; i<drops.length; i++)
172                 if (!drops[i])
173                     count++;
174         }
175     }
176
177     public static class Target {
178         public int[] buildSequence(Production p) {
179             Annotation[][] annotations = _bindable.getArgAnnotations();
180             String[]       names       = _bindable.getArgNames();
181             String name = _bindable.getSimpleName();
182             int len = annotations.length;
183             int ofs = 0;
184             bind.arg[] argtags  = new bind.arg[len];
185             for(int i=0; i<names.length; i++)
186                 for(Annotation a : annotations[i+ofs])
187                     if (a instanceof bind.arg)
188                         argtags[i+ofs] = (bind.arg)a;
189             return Target.this.buildSequence(p, names, argtags);
190         }
191         private Bindable _bindable;
192
193         public Target(Object o) { this(Bindable.create(o)); }
194         public Target(Bindable b) { this._bindable = b; }
195
196         public String getName() { return _bindable.getSimpleName(); }
197         public bind.as getBindAs() { return (bind.as)_bindable.getAnnotation(bind.as.class); }
198         //public nonterminal getNonTerminal() { return (nonterminal)_bindable.getAnnotation(bind.as.class); }
199         public String toString() { return _bindable.getSimpleName(); }
200         public boolean isRaw() { return _bindable.isAnnotationPresent(bind.raw.class); }
201
202         public boolean isCompatible(Production p) {
203             bind.as t = getBindAs();
204             if (t != null &&
205                 (t.value().equals(p.tag) ||
206                  (t.value().equals("") && getName().equals(p.tag))))
207                 return buildSequence(p)!=null;
208
209             bind.as n = getBindAs();
210             if (n != null &&
211                 (n.value().equals(p.nonTerminal) ||
212                  (n.value().equals("") && getName().equals(p.nonTerminal))))
213                 return buildSequence(p)!=null;
214
215             return false;
216         }
217
218         public int[] buildSequence(Production p, String[] names, bind.arg[] argtags) {
219             int argTagged = 0;
220             for(int i=0; i<argtags.length; i++)
221                 if (argtags[i] != null)
222                     argTagged++;
223
224             // FIXME: can be smarter here
225             if (names.length==p.count) {
226                 int[] ret = new int[p.count];
227                 for(int i=0; i<p.count; i++) ret[i] = i;
228                 return ret;
229             } else if (argTagged==p.count) {
230                 int[] ret = new int[argtags.length];
231                 int j = 0;
232                 for(int i=0; i<argtags.length; i++)
233                     ret[i] = argtags[i]==null ? -1 : (j++);
234                 return ret;
235             } else {
236                 return null;
237             }
238         }
239         public Sequence makeSequence(Production p) {
240             return Sequence.rewritingSequence(new TargetReducer(buildSequence(p), _bindable, isRaw()),
241                                               p.elements, p.labels, p.drops);
242         }
243
244     }
245
246     public static class TargetReducer implements Tree.TreeFunctor<Object,Object>, ToJava {
247         private int[] map;
248         private Bindable _bindable;
249         private boolean _israw;
250
251         public void toJava(StringBuffer sb) {
252             sb.append("new MetaGrammar.TargetReducer(new int[] {");
253             for(int i=0; i<map.length; i++)
254                 sb.append((i+"")+(i<map.length-1 ? "," : ""));
255             sb.append("}, ");
256             _bindable.toJava(sb);
257             sb.append(", ");
258             sb.append(_israw ? "true" : "false");
259             sb.append(")");
260         }
261         
262         public TargetReducer(int[] map, Bindable b, boolean raw) {
263             this.map = map;
264             this._bindable = b;
265             this._israw = raw;
266         }
267         public String toString() { return "reducer-"+_bindable.toString(); }
268         public Object invoke(Iterable<Tree<Object>> t) {
269             if (_israw) return _bindable.impose(new Object[] { t });
270             ArrayList ret = new ArrayList();
271             for(Tree tc : t) {
272                 if (tc.head() != null && tc.head() instanceof Functor)
273                     ret.add(((Tree.TreeFunctor<Object,Object>)tc.head()).invoke(tc.children()));
274                 else if (tc.numChildren() == 0)
275                     ret.add(tc.head());
276                 else {
277                     System.err.println("FIXME: don't know what to do about " + tc);
278                     ret.add(null);
279                 }
280             }
281             System.err.println("input tree: " + t);
282             Object[] o = (Object[])ret.toArray(new Object[0]);
283             int max = 0;
284             for(int i=0; i<map.length; i++) max = Math.max(map[i], max);
285             Object[] o2 = new Object[max+1];
286             for(int i=0; i<o.length; i++) o2[map[i]] = o[i];
287             return _bindable.impose(o2);
288         }
289     }
290
291
292     public static Union cached = null;
293     public static Union make() {
294         /*
295         if (cached != null) return cached;
296         try {
297             ReflectiveMeta m = new ReflectiveMeta();
298             Tree<String> res = new CharParser(MetaGrammar.make()).parse(new FileInputStream("tests/meta.g")).expand1();
299             MetaGrammar.Meta.MetaGrammarFile mgf = m.new MetaGrammarFile(res);
300             MetaGrammar.BuildContext bc = new MetaGrammar.BuildContext(mgf);
301             Union meta = mgf.get("s").build(bc);
302             Tree t = new CharParser(meta).parse(new FileInputStream("tests/meta.g")).expand1();
303             return cached = make(t, "s");
304         } catch (Exception e) {
305             throw new RuntimeException(e);
306         }
307         */
308         return make(MetaGrammarTree.meta, "s");
309     }
310     public static Union make(Tree t, String s) { return make(t, s, new ReflectiveMeta()); }
311     public static Union make(Tree t, String s, ReflectiveMeta rm) {
312         Tree.TreeFunctor<Object,Object> red = (Tree.TreeFunctor<Object,Object>)t.head();
313         MG.Grammar g = (MG.Grammar)red.invoke(t.children());
314         Context cx = new Context(g,rm);
315         Union u = null;
316         for(MG.NonTerminal nt : g.nonterminals) {
317             System.out.println(nt.name);
318             Union el = (Union)cx.get(nt.name);
319             StringBuffer st = new StringBuffer();
320             el.toString(st);
321             System.err.println(st);
322             if (nt.name.equals(s)) u = el;
323         }
324         return u;
325     }
326
327
328
329     public static class MG {
330         public static @bind.as("grammar") class Grammar {
331             public NonTerminal get(String s) {
332                 for(NonTerminal nt : nonterminals)
333                     if (nt.name.equals(s))
334                         return nt;
335                 return null;
336             }
337             public @bind.arg("NonTerminal") NonTerminal[] nonterminals;
338             public String toString() {
339                 String ret = "[ ";
340                 for(NonTerminal nt : nonterminals) ret += nt + ", ";
341                 return ret + " ]";
342             }
343         }
344         public abstract static class Un extends El {
345             public Seq[][] sequences;
346             public void build(Context cx, Union u) {
347                 HashSet<Sequence> bad2 = new HashSet<Sequence>();
348                 for(int i=0; i<sequences.length; i++) {
349                     Seq[] group = sequences[i];
350                     Union u2 = new Union();
351                     if (sequences.length==1) u2 = u;
352                     for(int j=0; j<group.length; j++) {
353                         group[j].build(cx, u2, false);
354                     }
355                     if (sequences.length==1) break;
356                     Sequence seq = Sequence.singleton(u2);
357                     for(Sequence s : bad2) {
358                         s.lame = true;
359                         seq = seq.not(s);
360                     }
361                     u.add(seq);
362                     bad2.add(Sequence.singleton(u2));
363                 }
364             }
365         }
366         public static class NonTerminal extends Un {
367             public String  name = null;
368             public @bind.as("=") NonTerminal(@bind.arg("Word") String name,
369                                          @bind.arg("RHS") Seq[][] sequences) {
370                 this.name = name;
371                 this.sequences = sequences;
372             }
373             public Element build(Context cx) { return cx.get(name); }
374         }
375
376         public static class AnonUn extends Un {
377             public @bind.as("(") AnonUn(Seq[][] sequences) {
378                 this.sequences = sequences;
379             }
380             public Element build(Context cx) {
381                 Union ret = new Union();
382                 build(cx, ret);
383                 return ret;
384             }
385         }
386
387         //public static @bind.as void range(char c) { }
388         public static class Range {
389             public @bind.as("range") Range(char only) { first = only; last = only; }
390             public @bind.as("-")     Range(char first, char last) { this.first = first; this.last = last; }
391             public char first;
392             public char last;
393         }
394         public static abstract class El {
395             public String getLabel() { return null; }
396             public String getOwnerTag() { return null; }
397             public boolean drop() { return false; }
398             public abstract Element build(Context cx);
399         }
400         public static class Drop extends El {
401             public El e;
402             public Drop(El e) { this.e = e; }
403             public String getLabel() { return null; }
404             public boolean drop() { return true; }
405             public String getOwnerTag() { return e.getOwnerTag(); }
406             public Element build(Context cx) { return e.build(cx); }
407         }
408         public static class Label extends El {
409             public String label;
410             public El e;
411             public Label(String label, El e) { this.e = e; this.label = label; }
412             public String getLabel() { return label; }
413             public String getOwnerTag() { return e.getOwnerTag(); }
414             public Element build(Context cx) { return e.build(cx); }
415         }
416         public static /*abstract*/ class Seq {
417             HashSet<Seq> and = new HashSet<Seq>();
418             HashSet<Seq> not = new HashSet<Seq>();
419             El[] elements;
420             El follow;
421             String tag = null;
422             boolean lame;
423             public Seq(El e) { this(new El[] { e }); }
424             public Seq(El[] elements) { this.elements = elements; }
425             public Seq tag(String tag) { this.tag = tag; return this; }
426             public Seq follow(El follow) { this.follow = follow; return this; }
427             public Seq dup() {
428                 Seq ret = new Seq(elements);
429                 ret.and.addAll(and);
430                 ret.not.addAll(not);
431                 ret.follow = follow;
432                 ret.tag = tag;
433                 return ret;
434             }
435             public Seq and(Seq s) { and.add(s); s.lame = true; return this; }
436             public Seq andnot(Seq s) { not.add(s); s.lame = true; return this; }
437             public Seq separate(El sep) {
438                 El[] elements = new El[this.elements.length * 2 - 1];
439                 for(int i=0; i<this.elements.length; i++) {
440                     elements[i*2]   = this.elements[i];
441                     if (i<this.elements.length-1)
442                         elements[i*2+1] = new Drop(sep);
443                 }
444                 this.elements = elements;
445                 return this;
446             }
447             public Sequence build(Context cx, Union u, boolean lame) {
448                 Sequence ret = build0(cx, lame || this.lame);
449                 for(Seq s : and) { Sequence dork = s.build(cx, u, true); ret = ret.and(dork); }
450                 for(Seq s : not) { Sequence dork = s.build(cx, u, true); ret = ret.not(dork); }
451                 u.add(ret);
452                 ret.lame = lame;
453                 return ret;
454             }
455             public Sequence build0(Context cx, boolean lame) {
456                 boolean unwrap = false;
457                 boolean dropAll = lame;
458                 if (tag!=null && tag.equals("[]")) unwrap  = true;
459                 if (tag!=null && "()".equals(tag)) dropAll = true;
460                 Object[] labels = new Object[elements.length];
461                 boolean[] drops = new boolean[elements.length];
462                 Element[] els = new Element[elements.length];
463                 for(int i=0; i<elements.length; i++) {
464                     labels[i] = elements[i].getLabel();
465                     drops[i]  = elements[i].drop();
466                     els[i] = elements[i].build(cx);
467                     if (elements[i].getOwnerTag() != null)
468                         tag = elements[i].getOwnerTag();
469                 }
470                 Sequence ret = null;
471                 if (dropAll)     ret = Sequence.drop(els, false);
472                 else if (unwrap) ret = Sequence.unwrap(els, cx.rm.repeatTag(), drops);
473                 else if (tag!=null) {
474                     ret = cx.rm.resolveTag(tag, cx.cnt, els, labels, drops);
475                 } else {
476                     int idx = -1;
477                     for(int i=0; i<els.length; i++)
478                         if (!drops[i])
479                             if (idx==-1) idx = i;
480                             else throw new Error("multiple non-dropped elements in sequence: " + Sequence.drop(els,false));
481                     if (idx != -1) ret = Sequence.singleton(els, idx);
482                     else           ret = Sequence.drop(els, false);
483                 }
484                 if (this.follow != null)
485                     ret.follow = infer(this.follow.build(cx));
486                 ret.lame = this.lame;
487                 return ret;
488             }
489         }
490         public static @bind.as("&")   Seq  and(Seq s,         El[] elements) { return s.and(seq(elements)); }
491         public static @bind.as("&~")  Seq  andnot(Seq s,      El[] elements) { return s.andnot(seq(elements)); }
492         public static @bind.as("->")  Seq  arrow(Seq s, El e)                { return s.follow(e); }
493         public static @bind.as("::")  Seq  tag(String tagname, Seq s)        { return s.tag(tagname); }
494         public static @bind.as("/")   Seq  slash(Seq s, El e)                { return s.separate(e); }
495
496         public static @bind.as("ps")  Seq  seq(El[] elements)                { return new Seq(elements); }
497         public static @bind.as        Seq  psx(Seq s)                        { return s; }
498         public static @bind.as(":")   El   colon(String s, El e)             { return new Label(s, e); }
499         public static @bind.as(")")   void close(String foo)                 { throw new Error("not supported"); }
500         public static @bind.as("()")  El   epsilon()                         { return new Constant(Union.epsilon); }
501
502         public static @bind.as("nonTerminal") class NonTerminalReference extends El {
503             public @bind.arg String nonTerminal;
504             public Element build(Context cx) {
505                 return cx.get(nonTerminal);
506             }
507         }
508
509         public static class StringLiteral        extends Constant {
510             public @bind.as("literal") StringLiteral(String string) { super(CharRange.string(string)); }
511             public boolean drop() { return true; }
512         }
513
514         public static                     class CharClass            extends El {
515             Range[] ranges;
516             public @bind.as("[") CharClass(Range[] ranges) { this.ranges = ranges; }
517             public Element build(Context cx) {
518                 edu.berkeley.sbp.util.Range.Set set = new edu.berkeley.sbp.util.Range.Set();
519                 for(Range r : ranges)
520                         set.add(r.first, r.last);
521                 return CharRange.set(set);
522             }
523         }
524
525         public static @bind.as("{")           class XTree                 extends El {
526             public @bind.arg Seq body;
527             public Element build(Context cx) {
528                 throw new Error();
529             }
530         }
531
532         public static class Rep extends El {
533             public El e, sep;
534             public boolean zero, many, max;
535             public Rep(El e, El sep, boolean zero, boolean many, boolean max) {
536                 this.e = e; this.sep = sep; this.zero = zero; this.many = many; this.max = max;}
537             public Element build(Context cx) {
538                 return (!max)
539                     ? Sequence.repeat(e.build(cx),        zero, many, sep==null ? null : sep.build(cx), cx.rm.repeatTag())
540                     : sep==null
541                     ? Sequence.repeatMaximal(infer(e.build(cx)), zero, many,                                   cx.rm.repeatTag())
542                     : Sequence.repeatMaximal(e.build(cx),                    zero, many, infer(sep.build(cx)), cx.rm.repeatTag());
543             }
544         }
545         public static class Constant extends El {
546             Element constant;
547             public Constant(Element constant) { this.constant = constant; }
548             public Element build(Context cx) { return constant; }
549         }
550         public abstract static class PostProcess extends El {
551             El e;
552             public PostProcess(El e) { this.e = e; }
553             public Element build(Context cx) { return postProcess(e.build(cx)); }
554             public abstract Element postProcess(Element e);
555         }
556
557         // FIXME: it would be nice if we could hoist this into "Rep"
558         public static @bind.as("++")  El plusmax(final El e)                     { return new Rep(e, null, false, true, true); }
559         public static @bind.as("+")   El plus(final El e)                        { return new Rep(e, null, false, true, false); }
560         public static @bind.as("++/") El plusmaxfollow(final El e, final El sep) { return new Rep(e, sep,  false, true, true); }
561         public static @bind.as("+/")  El plusfollow(final El e, final El sep)    { return new Rep(e, sep,  false, true, false); }
562         public static @bind.as("**")  El starmax(final El e)                     { return new Rep(e, null, true,  true, true); }
563         public static @bind.as("*")   El star(final El e)                        { return new Rep(e, null, true,  true, false); }
564         public static @bind.as("**/") El starmaxfollow(final El e, final El sep) { return new Rep(e, sep,  true,  true, true); }
565         public static @bind.as("*/")  El starfollow(final El e, final El sep)    { return new Rep(e, sep,  true,  true, false); }
566         public static @bind.as("?")   El question(final El e)                    { return new Rep(e, null, true,  true, false); }
567
568         public static @bind.as("!")   El bang(final El e)                        { return new Drop(e); }
569
570         public static @bind.as("^")   El caret(final String s) {
571             return new Drop(new Constant(CharRange.string(s)) {
572                     public String getOwnerTag() { return s; }
573                 });
574         }
575
576         public static @bind.as("~")   El tilde(final El e) {
577             return new PostProcess(e) {
578                     public Element postProcess(Element e) {
579                         return infer((Topology<Character>)Atom.toAtom(e).complement()); 
580                     } }; }
581
582         public static @bind.as("^^")  void doublecaret(final El e)                 { throw new Error("not implemented"); }
583
584         //public static @bind.as("(")   El subexpression(Seq[][] rhs)                { return new NonTerminal(rhs); }
585
586         public static @bind.as("Word")    String word(String s) { return s; }
587         public static @bind.as("Quoted")  String quoted(String s) { return s; }
588         public static @bind.as("escaped") String c(char c) { return c+""; }
589         public static @bind.as("\"\"")    String emptystring() { return ""; }
590         public static @bind.as("\n")      String retur() { return "\n"; }
591         public static @bind.as("\r")      String lf() { return "\r"; }
592
593     }
594     public static class Context {
595         HashMap<String,Union> map = new HashMap<String,Union>();
596         private MG.Grammar grammar;
597         public String cnt = null;
598         private ReflectiveMeta rm;
599         public Context(MG.Grammar g, ReflectiveMeta rm) {
600             this.grammar = g;
601             this.rm = rm;
602         }
603         public Union build() {
604             Union ret = null;
605             for(MG.NonTerminal nt : grammar.nonterminals) {
606                 Union u = get(nt.name);
607                 if ("s".equals(nt.name))
608                     ret = u;
609             }
610             return ret;
611         }
612         public Context(Tree t, ReflectiveMeta rm) {
613             this.rm = rm;
614             Tree.TreeFunctor<Object,Object> red = (Tree.TreeFunctor<Object,Object>)t.head();
615             this.grammar = (MG.Grammar)red.invoke(t.children());
616         }
617         public Union peek(String name) { return map.get(name); }
618         public void  put(String name, Union u) { map.put(name, u); }
619         public Union get(String name) {
620             Union ret = map.get(name);
621             if (ret != null) return ret;
622             ret = new Union(name);
623             map.put(name, ret);
624             MG.NonTerminal nt = grammar.get(name);
625             if (nt==null) {
626                 System.err.println("*** warning could not find " + name);
627             } else {
628                 String old = cnt;
629                 cnt = name;
630                 nt.build(this, ret);
631                 cnt = old;
632             }
633             return ret;
634         }
635
636     }
637     /*private*/ static Atom infer(Element e)  { return infer((Topology<Character>)Atom.toAtom(e)); }
638     /*private*/ static Atom infer(Topology<Character> t) { return new CharRange(new CharTopology(t)); }
639 }