08a8a8971ed11a510d0edb7b7ef3b126820a1132
[sbp.git] / src / edu / berkeley / sbp / misc / Demo.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 java.util.*;
6 import java.lang.annotation.*;
7 import java.lang.reflect.*;
8 import java.io.*;
9
10 public class Demo {
11     
12     public static boolean harsh = false;
13
14     public static void main(String[] s) throws Exception {
15
16         ReflectiveMeta m = new ReflectiveMeta();
17         Tree<String> res = new CharParser(MetaGrammar.make()).parse(new FileInputStream(s[0])).expand1();
18         MetaGrammar.Meta.MetaGrammarFile mgf = m.new MetaGrammarFile(res);
19         MetaGrammar.BuildContext bc = new MetaGrammar.BuildContext(mgf);
20
21         Union meta = mgf.get("s").build(bc);
22         Tree t = new CharParser(meta).parse(new FileInputStream(s[1])).expand1();
23
24         Union u = Demo.make(t, "s");
25
26         System.err.println();
27         System.err.println("== parsing with parsed grammar =================================================================================");
28         t = new CharParser((Union)u).parse(new FileInputStream(s[1])).expand1();
29         System.out.println(t.toPrettyString());
30
31         System.err.println("== parsing with parsed-parsed grammar ==========================================================================");
32         t = new CharParser(new Context(t, m).build()).parse(new FileInputStream(s[1])).expand1();
33         System.out.println(t.toPrettyString());
34     }
35
36     public static class ReflectiveMetaPlain extends ReflectiveMeta {
37         public Object repeatTag() { return null; }
38         public Sequence tryResolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
39             return null; }
40         public Sequence resolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
41             return Sequence.rewritingSequence(tag, els, labels, drops);
42         }
43     }
44
45     public static class ReflectiveMeta extends MetaGrammar.Meta {
46         private final Class _cl;
47         private final Class[] _inner;
48         public ReflectiveMeta() {
49             this(MG.class);
50         }
51         public ReflectiveMeta(Class c) {
52             this._cl = c;
53             this._inner = c.getDeclaredClasses();
54         }
55         public ReflectiveMeta(Class c, Class[] inner) {
56             this._cl = c;
57             this._inner = inner;
58         }
59         private boolean match(Method m, String s) { return match(m.getAnnotation(bind.as.class), null, s); }
60         private boolean match(bind.as t, Class c, String s) {
61             if (t==null) return false;
62             if (t.value().equals(s)) return true;
63             if (c != null && t.equals("") && c.getSimpleName().equals(s)) return true;
64             return false;
65         }
66         /*
67         private boolean match(nonterminal t, Class c, String s) {
68             if (t==null) return false;
69             if (t.value().equals(s)) return true;
70             if (c != null && t.equals("") && c.getSimpleName().equals(s)) return true;
71             return false;
72         }
73         */
74         private boolean match(Class c, String s, String nonTerminalName) {
75             if (match((bind.as)c.getAnnotation(bind.as.class), c, s)) return true;
76             //if (match((nonterminal)c.getAnnotation(bind.as.class), c, nonTerminalName)) return true;
77             return false;
78         }
79         public boolean match(Constructor con, String s, String nonTerminalName) {
80             Class c = con.getDeclaringClass();
81             if (match((bind.as)con.getAnnotation(bind.as.class), null, s)) return true;
82             //if (match((nonterminal)con.getAnnotation(bind.as.class), c, s)) return true;
83             return false;
84         }
85         public Object repeatTag() {
86             return new Tree.ArrayBuildingTreeFunctor<Object>();
87         }
88         public Sequence tryResolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
89             Production p = new Production(tag, nonTerminalName, els, labels, drops);
90             for(Method m : _cl.getMethods())
91                 if (new TargetMethod(m).isCompatible(p))
92                     return new TargetMethod(m).makeSequence(p);
93             for(Class c : _inner)
94                 for(Constructor con : c.getConstructors())
95                     if (new TargetConstructor(con).isCompatible(p))
96                         return new TargetConstructor(con).makeSequence(p);
97             for(Class c : _inner)
98                 if (new TargetClass(c).isCompatible(p))
99                     return new TargetClass(c).makeSequence(p);
100             return null;
101         }
102         public Sequence resolveTag(String tag, String nonTerminalName, Element[] els, Object[] labels, boolean[] drops) {
103             Sequence ret = tryResolveTag(tag, nonTerminalName, els, labels, drops);
104             if (ret != null) return ret;
105             String message = "could not find a Java method/class/ctor matching tag \""+tag+
106                 "\", nonterminal \""+nonTerminalName+"\" with " + els.length + " arguments";
107             if (harsh) {
108                 throw new RuntimeException(message);
109             } else {
110                 System.err.println(message);
111                 return Sequence.rewritingSequence(tag, els, labels, drops);
112             }
113         }
114     }
115
116     
117     public static class bind {    
118         /**
119          *  Constructors, classes, and methods with this attribute will
120          *  match every production of the nonterminal called "value()"
121          *  that is arg-compatible.  If value() is undefined, then the
122          *  class/constructor/method name is used.
123          */ 
124         /*
125           @Retention(RetentionPolicy.RUNTIME) public static @interface nonterminal { String value() default ""; }
126         */
127
128         @Retention(RetentionPolicy.RUNTIME) public static @interface raw { }
129
130         /**
131          *  Constructors, classes, and methods with this attribute will
132          *  match every tree tagged with "value()" that is arg-compatible.
133          *  If value() is undefined, then the class/constructor/method
134          *  name is used.
135          */ 
136
137         @Retention(RetentionPolicy.RUNTIME) public static @interface as         { String value() default ""; }
138
139
140         /**
141          *  If any parameter to a method or field in a class has a named
142          *  arg-tag, that parameter/field matches the child of the tree
143          *  which either has that label or else is a reference to a
144          *  nonterminal with the corresponding name.
145          *  
146          *  The remaining non-named arg-tags match the remaining children
147          *  of the tree in sequential order.
148          *
149          *  If any arg-tagged parameters/fields remain, the match fails.
150          *  If there were no arg-tagged parameters-fields, it is as if all
151          *  of them were non-named and arg-tagged.
152          *
153          *  A method/constructor is arg-compatible if all of its arguments
154          *  are arg-compatible.
155          *
156          *  A class is arg-compatible if all of its fields are
157          *  arg-compatible, or if one of its constructors is arg-compatible.
158          *
159          */
160         @Retention(RetentionPolicy.RUNTIME) public static @interface arg         { String value() default ""; }
161     }
162
163     public static class Production {
164         public String tag;
165         public String nonTerminal;
166         public Object[] labels;
167         public boolean[] drops;
168         public Element[] elements;
169         public int count = 0;
170         public Production(String tag, String nonTerminal, Element[] elements, Object[] labels, boolean[] drops) {
171             this.tag = tag;
172             this.elements = elements;
173             this.nonTerminal = nonTerminal;
174             this.labels = labels;
175             this.drops = drops;
176             for(int i=0; i<drops.length; i++)
177                 if (!drops[i])
178                     count++;
179         }
180     }
181
182     public static abstract class Target {
183             public int[] buildSequence(Production p) {
184                 Annotation[][] annotations = _bindable.getArgAnnotations();
185                 String[]       names       = _bindable.getArgNames();
186                 String name = _bindable.getSimpleName();
187                 int len = annotations.length;
188                 int ofs = 0;
189                 bind.arg[] argtags  = new bind.arg[len];
190                 for(int i=0; i<names.length; i++)
191                     for(Annotation a : annotations[i+ofs])
192                         if (a instanceof bind.arg)
193                             argtags[i+ofs] = (bind.arg)a;
194                 return Target.this.buildSequence(p, names, argtags);
195             }
196         private Reflection.Bindable _bindable;
197         public Target(Reflection.Bindable b) { this._bindable = b; }
198
199         public String getName() { return _bindable.getSimpleName(); }
200         public bind.as getBindAs() { return (bind.as)_bindable.getAnnotation(bind.as.class); }
201         //public nonterminal getNonTerminal() { return (nonterminal)_bindable.getAnnotation(bind.as.class); }
202         public String toString() { return _bindable.getSimpleName(); }
203         public Object plant(Object[] fields) { return _bindable.impose(fields); }
204         public boolean isRaw() { return _bindable.isAnnotationPresent(bind.raw.class); }
205         public Object invokeRaw(Iterable<Tree<Object>> t) { return _bindable.impose(new Object[] { t }); }
206
207         public boolean isCompatible(Production p) {
208             bind.as t = getBindAs();
209             if (t != null &&
210                 (t.value().equals(p.tag) ||
211                  (t.value().equals("") && getName().equals(p.tag))))
212                 return buildSequence(p)!=null;
213
214             bind.as n = getBindAs();
215             if (n != null &&
216                 (n.value().equals(p.nonTerminal) ||
217                  (n.value().equals("") && getName().equals(p.nonTerminal))))
218                 return buildSequence(p)!=null;
219
220             return false;
221         }
222
223         public int[] buildSequence(Production p, String[] names, bind.arg[] argtags) {
224             int argTagged = 0;
225             for(int i=0; i<argtags.length; i++)
226                 if (argtags[i] != null)
227                     argTagged++;
228
229             // FIXME: can be smarter here
230             if (names.length==p.count) {
231                 int[] ret = new int[p.count];
232                 for(int i=0; i<p.count; i++) ret[i] = i;
233                 return ret;
234             } else if (argTagged==p.count) {
235                 int[] ret = new int[argtags.length];
236                 int j = 0;
237                 for(int i=0; i<argtags.length; i++)
238                     ret[i] = argtags[i]==null ? -1 : (j++);
239                 return ret;
240             } else {
241                 return null;
242             }
243         }
244         public Sequence makeSequence(Production p) {
245             return Sequence.rewritingSequence(new TargetReducer(p, buildSequence(p), "reducer-"+this),
246                                               p.elements, p.labels, p.drops);
247         }
248
249         public class TargetReducer implements Tree.TreeFunctor<Object,Object> {
250             private Production p;
251             private int[] map;
252             private String name;
253             public TargetReducer(Production p, int[] map, String name) {
254                 this.p = p;
255                 this.map = map;
256                 this.name = name;
257             }
258             public String toString() { return name; }
259             public Object invoke(Iterable<Tree<Object>> t) {
260                 if (isRaw()) return invokeRaw(t);
261                 ArrayList ret = new ArrayList();
262                 for(Tree tc : t) {
263                     if (tc.head() != null && tc.head() instanceof Functor)
264                         ret.add(((Tree.TreeFunctor<Object,Object>)tc.head()).invoke(tc.children()));
265                     else if (tc.numChildren() == 0)
266                         ret.add(tc.head());
267                     else {
268                         System.err.println("FIXME: don't know what to do about " + tc);
269                         ret.add(null);
270                     }
271                 }
272                 System.err.println("input tree: " + t);
273                 Object[] o = (Object[])ret.toArray(new Object[0]);
274                 int max = 0;
275                 for(int i=0; i<map.length; i++) max = Math.max(map[i], max);
276                 Object[] o2 = new Object[max+1];
277                 for(int i=0; i<o.length; i++) o2[map[i]] = o[i];
278                 return plant(o2);
279             }
280         }
281     }
282
283     public static class TargetClass extends Target {
284         public final Class _class;
285         public TargetClass(Class _class) { super(Reflection.Bindable.create(_class)); this._class = _class; }
286     }
287
288     public static class TargetConstructor extends Target {
289         public final Constructor _ctor;
290         public TargetConstructor(Constructor _ctor) { super(Reflection.Bindable.create(_ctor)); this._ctor = _ctor; }
291     }
292     public static class TargetMethod extends Target {
293         public final Method _method;
294         public TargetMethod(Method _method) { super(Reflection.Bindable.create(_method)); this._method = _method; }
295     }
296
297     public static Union cached = null;
298     public static Union make() {
299         if (cached != null) return cached;
300         try {
301             ReflectiveMeta m = new ReflectiveMeta();
302             Tree<String> res = new CharParser(MetaGrammar.make()).parse(new FileInputStream("tests/meta.g")).expand1();
303             MetaGrammar.Meta.MetaGrammarFile mgf = m.new MetaGrammarFile(res);
304             MetaGrammar.BuildContext bc = new MetaGrammar.BuildContext(mgf);
305             Union meta = mgf.get("s").build(bc);
306             Tree t = new CharParser(meta).parse(new FileInputStream("tests/meta.g")).expand1();
307             return cached = make(t, "s");
308         } catch (Exception e) {
309             throw new RuntimeException(e);
310         }
311     }
312     public static Union make(Tree t, String s) { return make(t, s, new ReflectiveMeta()); }
313     public static Union make(Tree t, String s, ReflectiveMeta rm) {
314         Tree.TreeFunctor<Object,Object> red = (Tree.TreeFunctor<Object,Object>)t.head();
315         MG.Grammar g = (MG.Grammar)red.invoke(t.children());
316         Context cx = new Context(g,rm);
317         Union u = null;
318         for(MG.NonTerminal nt : g.nonterminals) {
319             System.out.println(nt.name);
320             Union el = (Union)cx.get(nt.name);
321             StringBuffer st = new StringBuffer();
322             el.toString(st);
323             System.err.println(st);
324             if (nt.name.equals(s)) u = el;
325         }
326         return u;
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 = MetaGrammar.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(MetaGrammar.infer(e.build(cx)), zero, many,                                   cx.rm.repeatTag())
542                     : Sequence.repeatMaximal(e.build(cx),                    zero, many, MetaGrammar.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 MetaGrammar.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 }