vote up 2 vote down star
2

I am trying to bytecode generate a method signature from a java.lang.reflect.Method. The signature(generic type) part of it is tricky as the reflection api to get the type information and transform it into what asm needs is NOT straightforward. Know of any code out there which does this already?

flag

2 Answers

vote up 1 vote down

I am not aware of a tool that does this automatically. I would probably use the org.objectweb.asm.util.ASMifierClassVisitor class to figure out the relationship between the signatures and the ASM API calls.

For a class containing this code:

  public void foo1(Object o1, String s2) {
  }

...the tool will generate:

mv = cw.visitMethod(ACC_PUBLIC, "foo1",
     "(Ljava/lang/Object;Ljava/lang/String;)V", null, null);
mv.visitCode();
mv.visitInsn(RETURN);
mv.visitMaxs(0, 3);
mv.visitEnd();

For this code:

  public static final String[] foo2() {
    return null;
  }

...it will generate:

mv = cw.visitMethod(ACC_PUBLIC + ACC_FINAL + ACC_STATIC,
    "foo2", "()[Ljava/lang/String;", null, null);
mv.visitCode();
mv.visitInsn(ACONST_NULL);
mv.visitInsn(ARETURN);
mv.visitMaxs(1, 0);
mv.visitEnd();

There are notes on method signatures in the FAQ and it helps if you understand Java class nomenclature.

Note that the ASM API can also be used to turn a java.lang.reflect.Method into an org.objectweb.asm.commons.Method. Since you can get the class from the java.lang.reflect.Method, you could use ClassVisitors / MethodVisitors to inspect the methods.

link|flag
Well I was looking for a way to get directly from the reflection api without reparsing the class file using asm. The thing gets tricky with the reflection api for Generics – deshpande s Jun 13 at 0:12
OK, I think I understand - I'm not sure there would be a one-size-fits-all approach to that. If a method returns a value, you need to put some logic into it to make it valid (assuming it isn't abstract). – McDowell Jun 13 at 10:14
vote up 0 vote down

I'd suggest using an existing library like:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.