X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fmisc%2FRegressionTests.java;h=d2443ad37ac6db79c51b8ba684dbcd276ce49d7e;hb=173e1696d10a91db6f5a919dbb2b2ed2c6e2a227;hp=dc52644c53851402add20edba07b0499fbf1117d;hpb=03e1f20f869819893205ec771571b2c62ab00421;p=sbp.git diff --git a/src/edu/berkeley/sbp/misc/RegressionTests.java b/src/edu/berkeley/sbp/misc/RegressionTests.java index dc52644..d2443ad 100644 --- a/src/edu/berkeley/sbp/misc/RegressionTests.java +++ b/src/edu/berkeley/sbp/misc/RegressionTests.java @@ -4,10 +4,11 @@ import java.util.*; import java.lang.reflect.*; import edu.berkeley.sbp.*; import edu.berkeley.sbp.misc.*; +import edu.berkeley.sbp.meta.*; +import edu.berkeley.sbp.bind.*; import edu.berkeley.sbp.tib.*; import edu.berkeley.sbp.chr.*; import edu.berkeley.sbp.util.*; -import static edu.berkeley.sbp.misc.Demo.*; public class RegressionTests { @@ -31,13 +32,14 @@ public class RegressionTests { } System.err.println("parsing " + s[0]); - Tree res = new CharParser(Demo.make()).parse(new FileInputStream(s[0])).expand1(); - Union meta = Demo.make(res, "s"); + Tree res = new CharParser(MetaGrammar.newInstance()).parse(new FileInputStream(s[0])).expand1(); + Union meta = Grammar.create(res, "s", new MetaGrammarBindings()); + System.err.println("parsing " + s[1]); - SequenceInputStream sis = new SequenceInputStream(new FileInputStream(s[0]), new FileInputStream(s[1])); - res = new CharParser(meta).parse(sis).expand1(); + //SequenceInputStream sis = new SequenceInputStream(new FileInputStream(s[0]), new FileInputStream(s[1])); + res = new CharParser(meta).parse(new FileInputStream(s[1])).expand1(); - Union testcasegrammar = Demo.make(res, "ts", new TestCaseMaker()); + Union testcasegrammar = Grammar.create(res, "ts", new TestCaseMaker()); if (testcasegrammar==null) return; CharParser parser = new CharParser(testcasegrammar); @@ -59,7 +61,7 @@ public class RegressionTests { System.err.println("expanding..."); Tree t = r2.expand1(); - TestCase[] expanded = (TestCase[])((Demo.Reducer)t.head()).reduce(t.children()); + TestCase[] expanded = (TestCase[])((Functor)t.head()).invoke(t); System.err.println("executing..."); for(TestCase tc : expanded) { tc.execute(); @@ -87,34 +89,24 @@ public class RegressionTests { } } - public static class TestCaseMaker extends ReflectiveMeta { + public static class TestCaseMaker extends AnnotationGrammarBindings { public TestCaseMaker() { - super(TestCaseMakerHelper.class, new Class[] { - MG.Grammar.class, - MG.NonTerminal.class, - MG.AnonUn.class, - MG.Range.class, - MG.El.class, - MG.Seq.class, - MG.NonTerminalReference.class, - MG.StringLiteral.class, - MG.XTree.class, - MG.CharClass.class - }); + super(TestCaseMakerHelper.class); + add(MetaGrammarBindings.class, "grammar"); + //add(MetaGrammarBindings.class, ""); } - public static class TestCaseMakerHelper extends MG { - public static @tag("grammaro") @raw Object grammaro(Iterable t) { - System.out.println("working on " + t); - return Demo.make(t.iterator().next(), "s", new ReflectiveMetaPlain()); + public static class TestCaseMakerHelper { + public static @bind.as("grammaro") @bind.raw Object grammaro(Iterable t) { + return Grammar.create(t.iterator().next(), "s", new Grammar.Bindings()); } - //public static @tag("tca") Object tca(Object[] o) throws IOException { + //public static @bind.as("tca") Object tca(Object[] o) throws IOException { //return new TestCase((String)o[0], (String[])o[1], (Union)o[2], false, false); } - public static @tag("tca") Object tca(String input, String[] output, Union u) throws IOException { + public static @bind.as("tca") Object tca(String input, String[] output, Union u) throws IOException { return new TestCase(input, output, u, false, false); } - public static @tag("tcb") Object tca(String input, Union u) throws IOException { + public static @bind.as("tcb") Object tca(String input, Union u) throws IOException { return new TestCase(input, new String[0], u, false, false); } - public static @tag("ts") TestCase[] go(TestCase[] cases) { return cases; } - public static @tag("o") Object o(Object[] s) { return s; } + public static @bind.as("ts") TestCase[] go(TestCase[] cases) { return cases; } + public static @bind.as("o") Object o(Object[] s) { return s; } } } @@ -162,7 +154,10 @@ public class RegressionTests { p.close(); System.out.println(parser); } - Collection> results = res==null ? new HashSet>() : res.expand(false); + + HashSet> results = new HashSet>(); + if (res != null) res.expand(results); + System.out.print("\r"); if (results == null || (results.size() == 0 && (output!=null && output.length > 0))) { System.out.print("\033[31m"); @@ -202,13 +197,13 @@ public class RegressionTests { public static class TestCaseBuilder extends StringWalker { public Object walk(Tree tree) { try { - if ("grammaro".equals(tree.head())) return Demo.make(tree, "s"); - else if ("output".equals(tree.head())) return MetaGrammar.string(tree.children()); - else if ("input".equals(tree.head())) return MetaGrammar.string(tree.children()); + if ("grammaro".equals(tree.head())) return Grammar.create(tree, "s", new MetaGrammarBindings()); + else if ("output".equals(tree.head())) return string(tree.children()); + else if ("input".equals(tree.head())) return string(tree.children()); else if ("testcase".equals(tree.head())) { - String input = MetaGrammar.string(tree.child(0)); + String input = string(tree.child(0)); String[] output = tree.numChildren()>2 ? ((String[])walk(tree, 1)) : new String[0]; - Union grammar = Demo.make(tree.child(tree.numChildren()-1), "s"); + Union grammar = Grammar.create(tree.child(tree.numChildren()-1), "s", new MetaGrammarBindings()); TestCase tc = new TestCase(input, output, grammar, false, false); return tc; } else if ("ts".equals(tree.head())) return walk(tree, 0); @@ -225,5 +220,15 @@ public class RegressionTests { } } private static String pad(int i,String s) { return s.length() >= i ? s : pad(i-1,s)+" "; } + public static String string(Tree tree) { + String ret = ""; + if (tree.head()!=null) ret += tree.head(); + ret += string(tree.children()); + return ret; + } + public static String string(Iterable> children) { + String ret = ""; + for(Tree t : children) ret += string(t); + return ret; + } } -