1 package test; 2 3 import java.lang.reflect.Method ; 4 import java.lang.reflect.Modifier ; 5 import alt.jiapi.*; 6 import alt.jiapi.instrumentor.*; 7 8 14 public class MethodAddTest implements Hook { 15 private Class clazz; 16 private static Object instance; 17 private boolean callStatic; 18 19 public static void main(String [] args) throws Exception { 20 MethodAddTest mct = new MethodAddTest(args.length == 0); 21 mct.run(args); 22 } 23 24 public MethodAddTest(boolean callStatic) throws Exception { 25 this.callStatic = callStatic; 26 27 String className = System.getProperty("class", "test.Foo"); 28 System.out.println("Loading class " + className); 29 InstrumentationContext ctx = new InstrumentationContext(); 30 Instrumentor i = new CreateMethodInstrumentor(Modifier.PUBLIC, 31 "foo2"); 32 33 InstrumentationDescriptor id = new InstrumentationDescriptor(); 34 id.addInstrumentation(i, null); 35 id.addInclusionRule("test.*"); 36 37 id.addExclusionRule("test.MethodAddTest"); 41 42 ctx.addInstrumentationDescriptor(id); 43 Loader loader = ctx.getLoader(); 44 ClassLoader cl = InstrumentingClassLoader.createClassLoader(loader); 45 46 this.clazz = cl.loadClass(className); 47 } 48 49 public void callMeDynamic(String s1, String s2) { 50 System.out.println ("callMeDynamic : " + s1 + ", " + s2); 51 } 52 53 public static void callMeStatic(String s1, String s2) { 54 System.out.println ("callMeStatic : " + s1 + ", " + s2); 55 } 56 57 58 public Method getHookMethod() { 60 Method hookMethod = null; 61 Class [] params = new Class [] {String .class, String .class}; 62 63 if (callStatic) { 64 System.out.println("Instrumenting for static calls"); 65 try { 66 hookMethod = 67 this.getClass().getMethod("callMeStatic", params); 68 } 69 catch(Exception e) { 70 throw new RuntimeException (e.toString ()); 72 } 73 } 74 else { 75 System.out.println("Instrumenting for dynamic calls"); 76 try { 77 hookMethod = 78 this.getClass().getMethod("callMeDynamic", params); 79 } 80 catch(Exception e) { 81 throw new RuntimeException (e.toString ()); 83 } 84 } 85 86 return hookMethod; 87 } 88 89 90 public void run(String [] args) throws Exception { 91 java.lang.reflect.Method m = 92 clazz.getMethod("main", new Class [] {String [].class}); 93 94 m.invoke(clazz, new Object [] {args}); 95 } 96 97 public Object getInstance() { 98 return this; 99 } 100 } 101
| Popular Tags
|