X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fmisc%2FDemo.java;h=08a8a8971ed11a510d0edb7b7ef3b126820a1132;hp=359f71517186c305d4548b10b91a0c33ea54764e;hb=d36770411e8f4122d946a0220c7f5b007c0df177;hpb=7ebc0eeb8a2f49301620c5ba840aff819a672802 diff --git a/src/edu/berkeley/sbp/misc/Demo.java b/src/edu/berkeley/sbp/misc/Demo.java index 359f715..08a8a89 100644 --- a/src/edu/berkeley/sbp/misc/Demo.java +++ b/src/edu/berkeley/sbp/misc/Demo.java @@ -46,46 +46,40 @@ public class Demo { private final Class _cl; private final Class[] _inner; public ReflectiveMeta() { - this(MG.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 - }); + this(MG.class); + } + public ReflectiveMeta(Class c) { + this._cl = c; + this._inner = c.getDeclaredClasses(); } public ReflectiveMeta(Class c, Class[] inner) { this._cl = c; this._inner = inner; } - private boolean match(Method m, String s) { return match(m.getAnnotation(tag.class), null, s); } - private boolean match(tag t, Class c, String s) { + private boolean match(Method m, String s) { return match(m.getAnnotation(bind.as.class), null, s); } + private boolean match(bind.as t, Class c, String s) { if (t==null) return false; if (t.value().equals(s)) return true; if (c != null && t.equals("") && c.getSimpleName().equals(s)) return true; return false; } + /* private boolean match(nonterminal t, Class c, String s) { if (t==null) return false; if (t.value().equals(s)) return true; if (c != null && t.equals("") && c.getSimpleName().equals(s)) return true; return false; } + */ private boolean match(Class c, String s, String nonTerminalName) { - if (match((tag)c.getAnnotation(tag.class), c, s)) return true; - if (match((nonterminal)c.getAnnotation(nonterminal.class), c, nonTerminalName)) return true; + if (match((bind.as)c.getAnnotation(bind.as.class), c, s)) return true; + //if (match((nonterminal)c.getAnnotation(bind.as.class), c, nonTerminalName)) return true; return false; } public boolean match(Constructor con, String s, String nonTerminalName) { Class c = con.getDeclaringClass(); - if (match((tag)con.getAnnotation(tag.class), null, s)) return true; - if (match((nonterminal)con.getAnnotation(nonterminal.class), c, s)) return true; + if (match((bind.as)con.getAnnotation(bind.as.class), null, s)) return true; + //if (match((nonterminal)con.getAnnotation(bind.as.class), c, s)) return true; return false; } public Object repeatTag() { @@ -120,45 +114,51 @@ public class Demo { } - /** - * Constructors, classes, and methods with this attribute will - * match every production of the nonterminal called "value()" - * that is arg-compatible. If value() is undefined, then the - * class/constructor/method name is used. - */ - @Retention(RetentionPolicy.RUNTIME) public static @interface nonterminal { String value() default ""; } - - @Retention(RetentionPolicy.RUNTIME) public static @interface raw { } - - /** - * Constructors, classes, and methods with this attribute will - * match every tree tagged with "value()" that is arg-compatible. - * If value() is undefined, then the class/constructor/method - * name is used. - */ - @Retention(RetentionPolicy.RUNTIME) public static @interface tag { String value() default ""; } - - /** - * If any parameter to a method or field in a class has a named - * arg-tag, that parameter/field matches the child of the tree - * which either has that label or else is a reference to a - * nonterminal with the corresponding name. - * - * The remaining non-named arg-tags match the remaining children - * of the tree in sequential order. - * - * If any arg-tagged parameters/fields remain, the match fails. - * If there were no arg-tagged parameters-fields, it is as if all - * of them were non-named and arg-tagged. - * - * A method/constructor is arg-compatible if all of its arguments - * are arg-compatible. - * - * A class is arg-compatible if all of its fields are - * arg-compatible, or if one of its constructors is arg-compatible. - * - */ - @Retention(RetentionPolicy.RUNTIME) public static @interface arg { String value() default ""; } + public static class bind { + /** + * Constructors, classes, and methods with this attribute will + * match every production of the nonterminal called "value()" + * that is arg-compatible. If value() is undefined, then the + * class/constructor/method name is used. + */ + /* + @Retention(RetentionPolicy.RUNTIME) public static @interface nonterminal { String value() default ""; } + */ + + @Retention(RetentionPolicy.RUNTIME) public static @interface raw { } + + /** + * Constructors, classes, and methods with this attribute will + * match every tree tagged with "value()" that is arg-compatible. + * If value() is undefined, then the class/constructor/method + * name is used. + */ + + @Retention(RetentionPolicy.RUNTIME) public static @interface as { String value() default ""; } + + + /** + * If any parameter to a method or field in a class has a named + * arg-tag, that parameter/field matches the child of the tree + * which either has that label or else is a reference to a + * nonterminal with the corresponding name. + * + * The remaining non-named arg-tags match the remaining children + * of the tree in sequential order. + * + * If any arg-tagged parameters/fields remain, the match fails. + * If there were no arg-tagged parameters-fields, it is as if all + * of them were non-named and arg-tagged. + * + * A method/constructor is arg-compatible if all of its arguments + * are arg-compatible. + * + * A class is arg-compatible if all of its fields are + * arg-compatible, or if one of its constructors is arg-compatible. + * + */ + @Retention(RetentionPolicy.RUNTIME) public static @interface arg { String value() default ""; } + } public static class Production { public String tag; @@ -180,18 +180,38 @@ public class Demo { } public static abstract class Target { - public abstract String getName(); - public abstract tag getTag(); - public abstract nonterminal getNonTerminal(); - public abstract int[] buildSequence(Production p); + public int[] buildSequence(Production p) { + Annotation[][] annotations = _bindable.getArgAnnotations(); + 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> t) { return _bindable.impose(new Object[] { t }); } + public boolean isCompatible(Production p) { - tag t = getTag(); + bind.as t = getBindAs(); if (t != null && (t.value().equals(p.tag) || (t.value().equals("") && getName().equals(p.tag)))) return buildSequence(p)!=null; - nonterminal n = getNonTerminal(); + bind.as n = getBindAs(); if (n != null && (n.value().equals(p.nonTerminal) || (n.value().equals("") && getName().equals(p.nonTerminal)))) @@ -199,7 +219,8 @@ public class Demo { return false; } - public int[] buildSequence(Production p, String[] names, arg[] argtags) { + + public int[] buildSequence(Production p, String[] names, bind.arg[] argtags) { int argTagged = 0; for(int i=0; i> t) { return null; } + public class TargetReducer implements Tree.TreeFunctor { private Production p; private int[] map; @@ -262,122 +282,16 @@ public class Demo { public static class TargetClass extends Target { public final Class _class; - public TargetClass(Class _class) { this._class = _class; } - public String getName() { return _class.getSimpleName(); } - public tag getTag() { return (tag)_class.getAnnotation(tag.class); } - public nonterminal getNonTerminal() { return (nonterminal)_class.getAnnotation(nonterminal.class); } - public String toString() { return _class.getSimpleName(); } - public int[] buildSequence(Production p) { - Field[] f = _class.getDeclaredFields(); - String[] names = new String[f.length]; - arg[] argtags = new arg[f.length]; - for(int i=0; i name.lastIndexOf('.')) { - len--; - ofs++; - } - */ - String[] names = new String[len]; - arg[] argtags = new arg[len]; - for(int i=0; i> t) { - try { - return _method.invoke(null, new Object[] { t }); - } catch (Exception e) { - throw new RuntimeException(e); - } - } - public Object plant(Object[] fields) { - try { - Class[] argTypes = _method.getParameterTypes(); - Object[] args = new Object[argTypes.length]; - int j = 0; - for(int i=0; i") Seq arrow(Seq s, El e) { return s.follow(e); } - public static @tag("::") Seq tag(String tagname, Seq s) { return s.tag(tagname); } - public static @tag("/") Seq slash(Seq s, El e) { return s.separate(e); } + public static @bind.as("&") Seq and(Seq s, El[] elements) { return s.and(seq(elements)); } + public static @bind.as("&~") Seq andnot(Seq s, El[] elements) { return s.andnot(seq(elements)); } + public static @bind.as("->") Seq arrow(Seq s, El e) { return s.follow(e); } + public static @bind.as("::") Seq tag(String tagname, Seq s) { return s.tag(tagname); } + public static @bind.as("/") Seq slash(Seq s, El e) { return s.separate(e); } - public static @tag("ps") Seq seq(El[] elements) { return new Seq(elements); } - public static @tag Seq psx(Seq s) { return s; } - public static @tag(":") El colon(String s, El e) { return new Label(s, e); } - public static @tag(")") void close(String foo) { throw new Error("not supported"); } - public static @tag("()") El epsilon() { return new Constant(Union.epsilon); } + public static @bind.as("ps") Seq seq(El[] elements) { return new Seq(elements); } + public static @bind.as Seq psx(Seq s) { return s; } + public static @bind.as(":") El colon(String s, El e) { return new Label(s, e); } + public static @bind.as(")") void close(String foo) { throw new Error("not supported"); } + public static @bind.as("()") El epsilon() { return new Constant(Union.epsilon); } - public static @tag("nonTerminal") class NonTerminalReference extends El { - public @arg String nonTerminal; + public static @bind.as("nonTerminal") class NonTerminalReference extends El { + public @bind.arg String nonTerminal; public Element build(Context cx) { return cx.get(nonTerminal); } } public static class StringLiteral extends Constant { - public @tag("literal") StringLiteral(String string) { super(CharRange.string(string)); } + public @bind.as("literal") StringLiteral(String string) { super(CharRange.string(string)); } public boolean drop() { return true; } } public static class CharClass extends El { Range[] ranges; - public @tag("[") CharClass(Range[] ranges) { this.ranges = ranges; } + public @bind.as("[") CharClass(Range[] ranges) { this.ranges = ranges; } public Element build(Context cx) { edu.berkeley.sbp.util.Range.Set set = new edu.berkeley.sbp.util.Range.Set(); for(Range r : ranges) @@ -608,8 +522,8 @@ public class Demo { } } - public static @tag("{") class XTree extends El { - public @arg Seq body; + public static @bind.as("{") class XTree extends El { + public @bind.arg Seq body; public Element build(Context cx) { throw new Error(); } @@ -641,40 +555,40 @@ public class Demo { } // FIXME: it would be nice if we could hoist this into "Rep" - public static @tag("++") El plusmax(final El e) { return new Rep(e, null, false, true, true); } - public static @tag("+") El plus(final El e) { return new Rep(e, null, false, true, false); } - public static @tag("++/") El plusmaxfollow(final El e, final El sep) { return new Rep(e, sep, false, true, true); } - public static @tag("+/") El plusfollow(final El e, final El sep) { return new Rep(e, sep, false, true, false); } - public static @tag("**") El starmax(final El e) { return new Rep(e, null, true, true, true); } - public static @tag("*") El star(final El e) { return new Rep(e, null, true, true, false); } - public static @tag("**/") El starmaxfollow(final El e, final El sep) { return new Rep(e, sep, true, true, true); } - public static @tag("*/") El starfollow(final El e, final El sep) { return new Rep(e, sep, true, true, false); } - public static @tag("?") El question(final El e) { return new Rep(e, null, true, true, false); } - - public static @tag("!") El bang(final El e) { return new Drop(e); } - - public static @tag("^") El caret(final String s) { + public static @bind.as("++") El plusmax(final El e) { return new Rep(e, null, false, true, true); } + public static @bind.as("+") El plus(final El e) { return new Rep(e, null, false, true, false); } + public static @bind.as("++/") El plusmaxfollow(final El e, final El sep) { return new Rep(e, sep, false, true, true); } + public static @bind.as("+/") El plusfollow(final El e, final El sep) { return new Rep(e, sep, false, true, false); } + public static @bind.as("**") El starmax(final El e) { return new Rep(e, null, true, true, true); } + public static @bind.as("*") El star(final El e) { return new Rep(e, null, true, true, false); } + public static @bind.as("**/") El starmaxfollow(final El e, final El sep) { return new Rep(e, sep, true, true, true); } + public static @bind.as("*/") El starfollow(final El e, final El sep) { return new Rep(e, sep, true, true, false); } + public static @bind.as("?") El question(final El e) { return new Rep(e, null, true, true, false); } + + public static @bind.as("!") El bang(final El e) { return new Drop(e); } + + public static @bind.as("^") El caret(final String s) { return new Drop(new Constant(CharRange.string(s)) { public String getOwnerTag() { return s; } }); } - public static @tag("~") El tilde(final El e) { + public static @bind.as("~") El tilde(final El e) { return new PostProcess(e) { public Element postProcess(Element e) { return MetaGrammar.infer((Topology)Atom.toAtom(e).complement()); } }; } - public static @tag("^^") void doublecaret(final El e) { throw new Error("not implemented"); } + public static @bind.as("^^") void doublecaret(final El e) { throw new Error("not implemented"); } - //public static @tag("(") El subexpression(Seq[][] rhs) { return new NonTerminal(rhs); } + //public static @bind.as("(") El subexpression(Seq[][] rhs) { return new NonTerminal(rhs); } - public static @nonterminal("Word") String word(String s) { return s; } - public static @nonterminal("Quoted") String quoted(String s) { return s; } - public static @nonterminal("escaped") String c(char c) { return c+""; } - public static @tag("\"\"") String emptystring() { return ""; } - public static @tag("\n") String retur() { return "\n"; } - public static @tag("\r") String lf() { return "\r"; } + public static @bind.as("Word") String word(String s) { return s; } + public static @bind.as("Quoted") String quoted(String s) { return s; } + public static @bind.as("escaped") String c(char c) { return c+""; } + public static @bind.as("\"\"") String emptystring() { return ""; } + public static @bind.as("\n") String retur() { return "\n"; } + public static @bind.as("\r") String lf() { return "\r"; } } public static class Context {