add ImportResolver mechanism
authoradam <adam@megacz.com>
Wed, 30 May 2007 17:00:01 +0000 (13:00 -0400)
committeradam <adam@megacz.com>
Wed, 30 May 2007 17:00:01 +0000 (13:00 -0400)
darcs-hash:20070530170001-5007d-0226fb2546ba2eeeb2d1ff4db72dc3c9b952b5d2.gz

src/edu/berkeley/sbp/meta/GrammarAST.java
src/edu/berkeley/sbp/meta/MetaGrammar.java
src/edu/berkeley/sbp/misc/RegressionTests.java

index 297886b..046c3ac 100644 (file)
@@ -16,12 +16,16 @@ import java.io.*;
  */
 public class GrammarAST {
 
  */
 public class GrammarAST {
 
+    public static interface ImportResolver {
+        public InputStream getImportStream(String importname);
+    }
+
     /**
      *  Returns a Union representing the metagrammar (<tt>meta.g</tt>); the Tree produced by
      *  parsing with this Union should be provided to <tt>buildFromAST</tt>
      */
     public static Union getMetaGrammar() {
     /**
      *  Returns a Union representing the metagrammar (<tt>meta.g</tt>); the Tree produced by
      *  parsing with this Union should be provided to <tt>buildFromAST</tt>
      */
     public static Union getMetaGrammar() {
-        return buildFromAST(MetaGrammar.meta, "s", new File[0]);
+        return buildFromAST(MetaGrammar.meta, "s", null);
     }
 
     /**
     }
 
     /**
@@ -31,8 +35,8 @@ public class GrammarAST {
      *  @param s   the name of the "start symbol"
      *  @param gbr a GrammarBindingResolver that resolves grammatical reductions into tree-node-heads
      */
      *  @param s   the name of the "start symbol"
      *  @param gbr a GrammarBindingResolver that resolves grammatical reductions into tree-node-heads
      */
-    public static Union buildFromAST(Tree grammarAST, String startingNonterminal, File[] includes) {
-        return new GrammarAST(includes, "").buildGrammar(grammarAST, startingNonterminal);
+    public static Union buildFromAST(Tree grammarAST, String startingNonterminal, ImportResolver resolver) {
+        return new GrammarAST(resolver, "").buildGrammar(grammarAST, startingNonterminal);
     }
 
     private static Object illegalTag = ""; // this is the tag that should never appear in the non-dropped output FIXME
     }
 
     private static Object illegalTag = ""; // this is the tag that should never appear in the non-dropped output FIXME
@@ -40,11 +44,11 @@ public class GrammarAST {
     // Instance //////////////////////////////////////////////////////////////////////////////
 
     private final String prefix;
     // Instance //////////////////////////////////////////////////////////////////////////////
 
     private final String prefix;
-    private final File[] includes;
+    private final ImportResolver resolver;
 
 
-    public GrammarAST(File[] includes, String prefix) {
+    public GrammarAST(ImportResolver resolver, String prefix) {
         this.prefix = prefix;
         this.prefix = prefix;
-        this.includes = includes;
+        this.resolver = resolver;
     }
 
     // Methods //////////////////////////////////////////////////////////////////////////////
     }
 
     // Methods //////////////////////////////////////////////////////////////////////////////
@@ -134,7 +138,7 @@ public class GrammarAST {
         if (head.equals("\"\"")) return "";
         if (head.equals("\n"))   return "\n";
         if (head.equals("\r"))   return "\r";
         if (head.equals("\"\"")) return "";
         if (head.equals("\n"))   return "\n";
         if (head.equals("\r"))   return "\r";
-        if (head.equals("SubGrammar")) return GrammarAST.buildFromAST(t.child(0), "s", includes);
+        if (head.equals("SubGrammar")) return GrammarAST.buildFromAST(t.child(0), "s", resolver);
         if (head.equals("NonTerminal"))
             return new NonTerminalNode(walkString(t.child(0)),
                                        (Seq[][])walkChildren(t.child(1)), false, null, false);
         if (head.equals("NonTerminal"))
             return new NonTerminalNode(walkString(t.child(0)),
                                        (Seq[][])walkChildren(t.child(1)), false, null, false);
@@ -147,20 +151,21 @@ public class GrammarAST {
             return new NonTerminalNode(tag, seqs, false, null, false);
         }
         if (head.equals("#import")) {
             return new NonTerminalNode(tag, seqs, false, null, false);
         }
         if (head.equals("#import")) {
-            String fileName = (String)stringifyChildren(t.child(0));
-            for(File f : includes) {
-                File file = new File(f.getAbsolutePath()+File.separatorChar+fileName);
-                if (!file.exists()) continue;
+            if (resolver != null) {
+                String fileName = (String)stringifyChildren(t.child(0));
                 try {
                     String newPrefix = t.size()<2 ? "" : (walkString(t.child(1))+".");
                 try {
                     String newPrefix = t.size()<2 ? "" : (walkString(t.child(1))+".");
-                    FileInputStream fis = new FileInputStream(file);
+                    InputStream fis = resolver.getImportStream(fileName);
+                    if (fis==null)
+                        throw new RuntimeException("unable to find #include file \""+fileName+"\"");
                     Tree tr = new CharParser(getMetaGrammar()).parse(fis).expand1();
                     Tree tr = new CharParser(getMetaGrammar()).parse(fis).expand1();
-                    return (GrammarNode)new GrammarAST(includes, newPrefix).walk(tr);
+                    return (GrammarNode)new GrammarAST(resolver, newPrefix).walk(tr);
                 } catch (Exception e) {
                 } catch (Exception e) {
-                    throw new RuntimeException("while parsing " + file, e);
+                    throw new RuntimeException("while parsing " + fileName, e);
                 }
                 }
+            } else {
+                throw new RuntimeException("no resolver given");
             }
             }
-            throw new RuntimeException("unable to find #include file \""+fileName+"\"");
         }
         throw new RuntimeException("unknown head: \"" + head + "\" => " + (head.equals("...")));
     }
         }
         throw new RuntimeException("unknown head: \"" + head + "\" => " + (head.equals("...")));
     }
@@ -210,7 +215,7 @@ public class GrammarAST {
     /** a node in the AST which is resolved into an Element */
     private abstract class ElementNode {
         public boolean isLifted() { return false; }
     /** a node in the AST which is resolved into an Element */
     private abstract class ElementNode {
         public boolean isLifted() { return false; }
-        public boolean drop(Context cx) { return false; }
+        public boolean isDropped(Context cx) { return false; }
         public Atom toAtom(Context cx) { throw new Error("can't convert a " + this.getClass().getName() + " to an atom: " + this); }
         public abstract Element build(Context cx, NonTerminalNode cnt, boolean dropall);
     }
         public Atom toAtom(Context cx) { throw new Error("can't convert a " + this.getClass().getName() + " to an atom: " + this); }
         public abstract Element build(Context cx, NonTerminalNode cnt, boolean dropall);
     }
@@ -226,10 +231,10 @@ public class GrammarAST {
             this.rep = rep;
             this.sep = sep;
         }
             this.rep = rep;
             this.sep = sep;
         }
-        public boolean drop(Context cx) {
+        public boolean isDropped(Context cx) {
             for(Seq[] seqs : sequences)
                 for(Seq seq : seqs)
             for(Seq[] seqs : sequences)
                 for(Seq seq : seqs)
-                    if (!seq.drop(cx))
+                    if (!seq.isDropped(cx))
                         return false;
             return true;
         }
                         return false;
             return true;
         }
@@ -281,7 +286,7 @@ public class GrammarAST {
     private class NonTerminalNode extends UnionNode {
         public boolean alwaysDrop;
         public String  name = null;
     private class NonTerminalNode extends UnionNode {
         public boolean alwaysDrop;
         public String  name = null;
-        public boolean drop(Context cx) { return alwaysDrop; }
+        public boolean isDropped(Context cx) { return alwaysDrop; }
         public NonTerminalNode(String name, Seq[][] sequences, boolean rep, String sep, boolean alwaysDrop) {
             super(sequences, rep, sep==null?null:(prefix + sep));
             this.name = prefix + name;
         public NonTerminalNode(String name, Seq[][] sequences, boolean rep, String sep, boolean alwaysDrop) {
             super(sequences, rep, sep==null?null:(prefix + sep));
             this.name = prefix + name;
@@ -292,11 +297,11 @@ public class GrammarAST {
 
     private class Seq {
         public boolean alwaysDrop = false;
 
     private class Seq {
         public boolean alwaysDrop = false;
-        public boolean drop(Context cx) {
+        public boolean isDropped(Context cx) {
             if (alwaysDrop) return true;
             if (tag!=null) return false;
             for(int i=0; i<elements.length; i++)
             if (alwaysDrop) return true;
             if (tag!=null) return false;
             for(int i=0; i<elements.length; i++)
-                if (!elements[i].drop(cx))
+                if (!elements[i].isDropped(cx))
                     return false;
             return true;
         }
                     return false;
             return true;
         }
@@ -363,10 +368,10 @@ public class GrammarAST {
         public Sequence build0(Context cx, NonTerminalNode cnt, boolean dropall) {
             boolean[] drops = new boolean[elements.length];
             Element[] els = new Element[elements.length];
         public Sequence build0(Context cx, NonTerminalNode cnt, boolean dropall) {
             boolean[] drops = new boolean[elements.length];
             Element[] els = new Element[elements.length];
-            dropall |= drop(cx);
+            dropall |= isDropped(cx);
             for(int i=0; i<elements.length; i++) {
                 if (dropall) drops[i] = true;
             for(int i=0; i<elements.length; i++) {
                 if (dropall) drops[i] = true;
-                else         drops[i] = elements[i].drop(cx);
+                else         drops[i] = elements[i].isDropped(cx);
                 if (elements[i] instanceof LiteralNode && ((LiteralNode)elements[i]).caret) {
                     if (tag != null) throw new RuntimeException("cannot have multiple tags in a sequence: " + this);
                     tag = ((LiteralNode)elements[i]).getLiteralTag();
                 if (elements[i] instanceof LiteralNode && ((LiteralNode)elements[i]).caret) {
                     if (tag != null) throw new RuntimeException("cannot have multiple tags in a sequence: " + this);
                     tag = ((LiteralNode)elements[i]).getLiteralTag();
@@ -426,7 +431,7 @@ public class GrammarAST {
             if (ret == null) throw new RuntimeException("unknown nonterminal \""+nonTerminal+"\"");
             return ret.toAtom(cx);
         }
             if (ret == null) throw new RuntimeException("unknown nonterminal \""+nonTerminal+"\"");
             return ret.toAtom(cx);
         }
-        public boolean drop(Context cx) { return resolve(cx).drop(cx); }
+        public boolean isDropped(Context cx) { return resolve(cx).isDropped(cx); }
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall) {
             Element ret = cx.get(nonTerminal);
             if (ret == null) throw new RuntimeException("unknown nonterminal \""+nonTerminal+"\"");
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall) {
             Element ret = cx.get(nonTerminal);
             if (ret == null) throw new RuntimeException("unknown nonterminal \""+nonTerminal+"\"");
@@ -445,7 +450,7 @@ public class GrammarAST {
         }
         public String getLiteralTag() { return caret ? thePrefix+string : null; }
         public String toString() { return "\""+string+"\""; }
         }
         public String getLiteralTag() { return caret ? thePrefix+string : null; }
         public String toString() { return "\""+string+"\""; }
-        public boolean drop(Context cx) { return true; }
+        public boolean isDropped(Context cx) { return true; }
         public Atom toAtom(Context cx) {
             if (string.length()!=1) return super.toAtom(cx);
             Range.Set set = new Range.Set();
         public Atom toAtom(Context cx) {
             if (string.length()!=1) return super.toAtom(cx);
             Range.Set set = new Range.Set();
@@ -475,11 +480,11 @@ public class GrammarAST {
             this.e = e; this.sep = sep; this.zero = zero; this.many = many; this.max = max;
         }
         public Atom toAtom(Context cx) { return sep==null ? e.toAtom(cx) : super.toAtom(cx); }
             this.e = e; this.sep = sep; this.zero = zero; this.many = many; this.max = max;
         }
         public Atom toAtom(Context cx) { return sep==null ? e.toAtom(cx) : super.toAtom(cx); }
-        public boolean drop(Context cx) { return e.drop(cx); }
+        public boolean isDropped(Context cx) { return e.isDropped(cx); }
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall) {
             Element ret = build(cx, cnt, dropall, illegalTag);
             String must = "must be tagged unless they appear within a dropped expression or their contents are dropped: ";
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall) {
             Element ret = build(cx, cnt, dropall, illegalTag);
             String must = "must be tagged unless they appear within a dropped expression or their contents are dropped: ";
-            if (!dropall && !drop(cx) && !e.drop(cx))
+            if (!dropall && !isDropped(cx) && !e.isDropped(cx))
                 if (!many)      throw new RuntimeException("options (?) " + must + ret);
                 else if (zero)  throw new RuntimeException("zero-or-more repetitions (*) " + must + ret);
                 else            throw new RuntimeException("one-or-more repetitions (+) " + must + ret);
                 if (!many)      throw new RuntimeException("options (?) " + must + ret);
                 else if (zero)  throw new RuntimeException("zero-or-more repetitions (*) " + must + ret);
                 else            throw new RuntimeException("one-or-more repetitions (+) " + must + ret);
@@ -497,7 +502,7 @@ public class GrammarAST {
     private abstract class ElementNodeWrapper extends ElementNode {
         protected ElementNode _e;
         public ElementNodeWrapper(ElementNode e) { this._e = e; }
     private abstract class ElementNodeWrapper extends ElementNode {
         protected ElementNode _e;
         public ElementNodeWrapper(ElementNode e) { this._e = e; }
-        public boolean drop(Context cx) { return _e.drop(cx); }
+        public boolean isDropped(Context cx) { return _e.isDropped(cx); }
         public Atom toAtom(Context cx) { return _e.toAtom(cx); }
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { return _e.build(cx, cnt, dropall); }
     }
         public Atom toAtom(Context cx) { return _e.toAtom(cx); }
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall) { return _e.build(cx, cnt, dropall); }
     }
@@ -515,7 +520,7 @@ public class GrammarAST {
 
     private class DropNode extends ElementNodeWrapper {
         public DropNode(ElementNode e) { super(e); }
 
     private class DropNode extends ElementNodeWrapper {
         public DropNode(ElementNode e) { super(e); }
-        public boolean drop(Context cx) { return true; }
+        public boolean isDropped(Context cx) { return true; }
     }
 
     //////////////////////////////////////////////////////////////////////////////
     }
 
     //////////////////////////////////////////////////////////////////////////////
@@ -545,7 +550,7 @@ public class GrammarAST {
             } else {
                 ret = new Union(name, false);
                 map.put(name, ret);
             } else {
                 ret = new Union(name, false);
                 map.put(name, ret);
-                nt.buildIntoPreallocatedUnion(this, nt, nt.drop(this), ret);
+                nt.buildIntoPreallocatedUnion(this, nt, nt.isDropped(this), ret);
             }
             return ret;
         }
             }
             return ret;
         }
index cb138be..70a7c4a 100644 (file)
@@ -34,7 +34,7 @@ class MetaGrammar {
 
         out.append("\n        // DO NOT EDIT STUFF BELOW: IT IS AUTOMATICALLY GENERATED\n");
 
 
         out.append("\n        // DO NOT EDIT STUFF BELOW: IT IS AUTOMATICALLY GENERATED\n");
 
-        Union u = GrammarAST.buildFromAST(MetaGrammar.meta, "s", new File[0]);
+        Union u = GrammarAST.buildFromAST(MetaGrammar.meta, "s", null);
         Tree t = new CharParser((Union)u).parse(new FileInputStream(args[0])).expand1();
 
         t.toJava(out);
         Tree t = new CharParser((Union)u).parse(new FileInputStream(args[0])).expand1();
 
         t.toJava(out);
index 33e17ac..8976043 100644 (file)
@@ -13,7 +13,15 @@ public class RegressionTests {
 
     public static boolean yes = false;
     public static boolean graph = false;
 
     public static boolean yes = false;
     public static boolean graph = false;
-    public static File[] includes = new File[] { new File("tests") };
+    public static GrammarAST.ImportResolver resolver = new GrammarAST.ImportResolver() {
+            public InputStream getImportStream(String importname) {
+                try {
+                    return new FileInputStream("tests/"+importname);
+                } catch (IOException e) {
+                    throw new RuntimeException(e);
+                }
+            }
+        };
 
     public static void main() throws Exception {
         main(new String[] { null, "tests/testcase.g", "tests/regression.tc" });
 
     public static void main() throws Exception {
         main(new String[] { null, "tests/testcase.g", "tests/regression.tc" });
@@ -40,12 +48,12 @@ public class RegressionTests {
                 ? RegressionTests.class.getClassLoader().getResourceAsStream("edu/berkeley/sbp/meta/meta.g")
                 : new FileInputStream(s[0]);
             Tree<String> res = new CharParser(GrammarAST.getMetaGrammar()).parse(metaGrammarStream).expand1();
                 ? RegressionTests.class.getClassLoader().getResourceAsStream("edu/berkeley/sbp/meta/meta.g")
                 : new FileInputStream(s[0]);
             Tree<String> res = new CharParser(GrammarAST.getMetaGrammar()).parse(metaGrammarStream).expand1();
-            Union meta = GrammarAST.buildFromAST(res, "s", includes);
+            Union meta = GrammarAST.buildFromAST(res, "s", resolver);
 
             System.err.println("parsing " + s[1]);
             res = new CharParser(meta).parse(new FileInputStream(s[1])).expand1();
 
 
             System.err.println("parsing " + s[1]);
             res = new CharParser(meta).parse(new FileInputStream(s[1])).expand1();
 
-            Union testcasegrammar = GrammarAST.buildFromAST(res, "s", includes);
+            Union testcasegrammar = GrammarAST.buildFromAST(res, "s", resolver);
             if (testcasegrammar==null) return;
             CharParser parser = new CharParser(testcasegrammar);
 
             if (testcasegrammar==null) return;
             CharParser parser = new CharParser(testcasegrammar);
 
@@ -76,7 +84,7 @@ public class RegressionTests {
                 cases.add(new TestCase(stringifyChildren(t.child(0)),
                                        stringifyChildren(t.child(1)),
                                        expect,
                 cases.add(new TestCase(stringifyChildren(t.child(0)),
                                        stringifyChildren(t.child(1)),
                                        expect,
-                                       GrammarAST.buildFromAST(t.child(3), "s", includes),
+                                       GrammarAST.buildFromAST(t.child(3), "s", resolver),
                                        false,
                                        false));
                 
                                        false,
                                        false));