checkpoint
[sbp.git] / src / edu / berkeley / sbp / util / Reflection.java
index 327a1dd..05de7dc 100644 (file)
@@ -1,6 +1,7 @@
 package edu.berkeley.sbp.util;
 import java.io.*;
 import java.lang.reflect.*;
+import java.lang.annotation.*;
 
 /** Random reflection-related utilities */
 public final class Reflection {
@@ -202,6 +203,12 @@ public final class Reflection {
     public static interface Show {
     }
 
+    public static Object impose(Object o, Object[] fields) {
+        if (o instanceof Class) return impose((Class)o, fields);
+        if (o instanceof Method) return impose((Method)o, fields);
+        if (o instanceof Constructor) return impose((Constructor)o, fields);
+        return null;
+    }
     public static Object impose(Class _class, Object[] fields) {
         try {
             Object ret = _class.newInstance();
@@ -222,6 +229,45 @@ public final class Reflection {
         }
     }
 
+    public static Object impose(Method _method, Object[] fields) {
+        try {
+            Class[] argTypes = _method.getParameterTypes();
+            Object[] args = new Object[argTypes.length];
+            int j = 0;
+            for(int i=0; i<args.length; i++) {
+                Object tgt = Reflection.lub(fields[i]);
+                if (argTypes[i] == String.class) tgt = Reflection.stringify(tgt);
+                // FUGLY
+                tgt = Reflection.coerce(tgt, argTypes[i]);
+                System.err.println("setting a " + argTypes[i].getName() + " to " + Reflection.show(tgt));
+                args[i] = tgt;
+            }
+            System.err.println("invoking " + _method + " with " + Reflection.show(args));
+            return _method.invoke(null, args);
+        } catch (Exception e) {
+            throw new RuntimeException(e);
+        }
+    }
+
+    public static Object impose(Constructor _ctor, Object[] fields) {
+        try {
+            Class[] argTypes = _ctor.getParameterTypes();
+            Object[] args = new Object[argTypes.length];
+            int j = 0;
+            for(int i=0; i<args.length; i++) {
+                Object tgt = Reflection.lub(fields[i]);
+                if (argTypes[i] == String.class) tgt = Reflection.stringify(tgt);
+                // FUGLY
+                tgt = Reflection.coerce(tgt, argTypes[i]);
+                System.err.println("setting a " + argTypes[i].getName() + " to " + Reflection.show(tgt));
+                args[i] = tgt;
+            }
+            return _ctor.newInstance(args);
+        } catch (Exception e) {
+            throw new RuntimeException(e);
+        }
+    }
+
     public static String stringify(Object o) {
         if (o==null) return "";
         if (!(o instanceof Object[])) return o.toString();