checkpoint
[sbp.git] / src / edu / berkeley / sbp / meta / MetaGrammar.java
index a55481b..d2aae07 100644 (file)
@@ -53,176 +53,11 @@ public class MetaGrammar {
         os.close();
     }
 
-
-   
-    public static class Production {
-        public String tag;
-        public boolean[] drops;
-        public Element[] elements;
-        public int count = 0;
-        public Production(String tag, Element[] elements, boolean[] drops) {
-            this.tag = tag;
-            this.elements = elements;
-            this.drops = drops;
-            for(int i=0; i<drops.length; i++)
-                if (!drops[i])
-                    count++;
-        }
-    }
-
-    public static class Target {
-        public int[] buildSequence(Production p) {
-            Annotation[][] annotations = _bindable.getArgAnnotations();
-            Class[]        types       = _bindable.getArgTypes();
-            String[]       names       = _bindable.getArgNames();
-            String name                = _bindable.getSimpleName();
-            int len                    = annotations.length;
-            int ofs                    = 0;
-            bind.arg[] argtags  = new bind.arg[len];
-            for(int i=0; i<names.length; i++)
-                for(Annotation a : annotations[i+ofs])
-                    if (a instanceof bind.arg)
-                        argtags[i+ofs] = (bind.arg)a;
-            return Target.this.buildSequence(p, names, argtags, types);
-        }
-        private Bindable _bindable;
-
-        public Target(Object o) { this(Bindable.create(o)); }
-        public Target(Bindable b) { this._bindable = b; }
-
-        public String getName() { return _bindable.getSimpleName(); }
-        public bind getBind() { return (bind)_bindable.getAnnotation(bind.class); }
-        public bind.as getBindAs() { return (bind.as)_bindable.getAnnotation(bind.as.class); }
-        public String toString() { return _bindable.getSimpleName(); }
-        public boolean isRaw() { return _bindable.isAnnotationPresent(bind.raw.class); }
-
-        public boolean isCompatible(Production p) {
-            bind.as t = getBindAs();
-            bind b = getBind();
-
-            if (t != null &&
-                (t.value().equals(p.tag)))
-                return buildSequence(p)!=null;
-
-            if (t != null &&
-                ((t.value().equals("") && getName().equals(p.tag))))
-                return buildSequence(p)!=null;
-            if (b != null && getName().equals(p.tag))
-                return buildSequence(p)!=null;
-
-            if (t != null &&
-                (t.value().equals(p.tag)))
-                return buildSequence(p)!=null;
-            if (t != null &&
-                ((t.value().equals("") && getName().equals(p.tag))))
-                return buildSequence(p)!=null;
-            if (b != null && getName().equals(p.tag))
-                return buildSequence(p)!=null;
-
-            return false;
-        }
-
-        public int[] buildSequence(Production p, String[] names, bind.arg[] argtags, Class[] types) {
-            int argTagged = 0;
-            boolean hasloc = types.length>0 && types[0]==Input.Region.class;
-            for(int i=0; i<argtags.length; i++) {
-                if (i==0 && types[0]==Input.Region.class) continue;
-                if (argtags[i] != null)
-                    argTagged++;
-            }
-            int numNames = names.length;
-            if (hasloc) numNames--;
-
-            // FIXME: can be smarter here
-            if (argTagged==p.count) {
-                int[] ret = new int[argtags.length];
-                int j = 0;
-                for(int i=0; i<argtags.length; i++) {
-                    if (i==0 && types[0]==Input.Region.class) continue;
-                    if (argtags[i]==null) continue;
-                    if (argtags[i].value().equals(""))
-                        ret[i] = j++;
-                    else {
-                        ret[i] = -1;
-                        for(int k=0; k<names.length; k++)
-                            if (argtags[i].value().equals(names[k])){
-                                ret[i] = k;
-                                break;
-                            }
-                        if (ret[i]==-1) return null;
-                    }
-                }
-                return ret;
-            } else if (numNames==p.count) {
-                int[] ret = new int[p.count];
-                for(int i=0; i<p.count; i++) ret[i] = i+(hasloc?1:0);
-                return ret;
-            } else {
-                return null;
-            }
-        }
-        public Sequence makeSequence(Production p) {
-            return Sequence.rewritingSequence(new TargetReducer(buildSequence(p), _bindable, isRaw()),
-                                              p.elements, p.drops);
-        }
-
-    }
-
-    public static class TargetReducer implements Tree.TreeFunctor<Object,Object>, ToJava {
-        private int[] map;
-        private Bindable _bindable;
-        private boolean _israw;
-
-        public void toJava(StringBuffer sb) {
-            sb.append("new MetaGrammar.TargetReducer(new int[] {");
-            for(int i=0; i<map.length; i++) sb.append((i+"")+(i<map.length-1 ? "," : ""));
-            sb.append("}, ");
-            _bindable.toJava(sb);
-            sb.append(", ");
-            sb.append(_israw ? "true" : "false");
-            sb.append(")");
-        }
-        
-        public TargetReducer(int[] map, Bindable b, boolean raw) {
-            this.map = map;
-            this._bindable = b;
-            this._israw = raw;
-        }
-        public String toString() { return "reducer-"+_bindable.toString(); }
-        public Object invoke(Tree<Object> t) {
-            if (_israw) return _bindable.impose(new Object[] { t });
-            ArrayList ret = new ArrayList();
-            for(Tree tc : t) {
-                if (tc.head() != null && tc.head() instanceof Functor)
-                    ret.add(((Tree.TreeFunctor<Object,Object>)tc.head()).invoke(tc));
-                else if (tc.numChildren() == 0)
-                    ret.add(tc.head());
-                else {
-                    System.err.println("FIXME: don't know what to do about " + tc);
-                    ret.add(null);
-                }
-            }
-            Object[] o = (Object[])ret.toArray(new Object[0]);
-            int max = 0;
-            for(int i=0; i<map.length; i++) max = Math.max(map[i], max);
-            if (_bindable.getArgTypes().length > 0 &&
-                _bindable.getArgTypes()[0]==Input.Region.class)
-                max++;
-            Object[] o2 = new Object[max+1];
-            for(int i=0; i<o.length; i++) o2[map[i]] = o[i];
-            if (_bindable.getArgTypes().length > 0 &&
-                _bindable.getArgTypes()[0]==Input.Region.class)
-                o2[0] = t.getRegion();
-            return _bindable.impose(o2);
-        }
-    }
-
-
     public static Union make() { return make(MetaGrammarTree.meta, "s"); }
     public static Union make(Tree t, String s) { return make(t, s, new AnnotationGrammarBindingResolver(MetaGrammarBindings.class)); }
     public static Union make(Tree t, String s, GrammarBindingResolver rm) {
         Tree.TreeFunctor<Object,Object> red = (Tree.TreeFunctor<Object,Object>)t.head();
-        MetaGrammarBindings.GrammarNode g = (MetaGrammarBindings.GrammarNode)red.invoke(t);
+        MetaGrammarBindings.GrammarNode g = (MetaGrammarBindings.GrammarNode)red.invoke(t.children());
         return g.build(s, rm);
     }