我正在使用 java Instrumentation 和 ASM ByteCode Library 来开发 Javaagent。如何获取方法抛出的运行时异常?
附上代码。这里正在获取该方法是正常终止还是抛出异常。但无法检索异常。如何检索异常?
package com.abc.agent.servlet;
import org.objectweb.asm.Label;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
import com.abc.agent.matcher.HttpServletMethodMatcher;
public class AbcServletMethodVisitorAdapter extends MethodVisitor {
private String methodName;
private String className;
private String description;
private boolean doMethodMatch;
private int opcode = -1;
public AbcServletMethodVisitorAdapter(MethodVisitor mv , String methodName , String description , String className) {
super(Opcodes.ASM4, mv);
this.methodName = methodName;
this.className = className;
this.description = description;
this.doMethodMatch = false;
}
public void visitCode() {
super.visitCode();
if(methodName.equals("<clinit>") || methodName.equals("<init>"))
return;
HttpServletMethodMatcher httpServletMethodMatcher = new HttpServletMethodMatcher(className , methodName , description);
this.doMethodMatch = httpServletMethodMatcher.isHttpServletMatch();
if(this.doMethodMatch){
mv.visitVarInsn(Opcodes.ALOAD, 0);
mv.visitVarInsn(Opcodes.ALOAD, 1);
mv.visitLdcInsn(this.className);
mv.visitLdcInsn(this.methodName);
mv.visitLdcInsn(this.description);
mv.visitMethodInsn(Opcodes.INVOKESTATIC, "com/abc/agent/trace/RootTracer", "httpServletDoMethodBegin", "(Ljava/lang/Object;Ljavax/servlet/http/HttpServletRequest;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
mv.visitCode();
}
else // Other Methods defined in the HttpServlet...
{
mv.visitLdcInsn(this.className);
mv.visitLdcInsn(this.methodName);
mv.visitLdcInsn(this.description);
mv.visitMethodInsn(Opcodes.INVOKESTATIC, "com/abc/agent/trace/RootTracer", "httpServletOtherMethodBegin", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
mv.visitCode();
}
}
public void visitMaxs(int maxStack, int maxLocals) {
super.visitMaxs(maxStack + 4, maxLocals);
}
public void visitInsn(int opcode) {
if(methodName.equals("<clinit>") || methodName.equals("<init>")){
// Do nothing....
}
else{
if ((opcode >= Opcodes.IRETURN && opcode <= Opcodes.RETURN) || opcode == Opcodes.ATHROW) {
this.opcode = opcode;
mv.visitLdcInsn(this.className);
mv.visitLdcInsn(this.methodName);
mv.visitLdcInsn(this.description);
mv.visitLdcInsn(this.opcode);
if(this.doMethodMatch) {
mv.visitMethodInsn(Opcodes.INVOKESTATIC, "com/abc/agent/trace/RootTracer", "httpServletDoMethodEnd", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V");
}
else{
mv.visitMethodInsn(Opcodes.INVOKESTATIC, "com/abc/agent/trace/RootTracer", "httpServletOtherMethodEnd", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V");
}
}
}
mv.visitInsn(opcode);
}
}