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