Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
scouter.agent.asm.asyncsupport.CallRunnableASM Maven / Gradle / Ivy
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package scouter.agent.asm.asyncsupport;
import scouter.org.objectweb.asm.*;
import scouter.org.objectweb.asm.commons.LocalVariablesSorter;
import scouter.agent.ClassDesc;
import scouter.agent.Configure;
import scouter.agent.Logger;
import scouter.agent.asm.IASM;
import scouter.agent.trace.TraceMain;
import scouter.util.StringUtil;
import java.util.ArrayList;
import java.util.List;
/**
* @author Gun Lee ([email protected] ) on 2017. 2. 21.
*/
public class CallRunnableASM implements IASM, Opcodes {
private Configure conf = Configure.getInstance();
private static final String CALLABLE = "java/util/concurrent/Callable";
private static final String RUNNABLE = "java/lang/Runnable";
private static List scanScopePrefix = new ArrayList();
public CallRunnableASM() {
if(conf.hook_spring_async_enabled) {
scanScopePrefix.add("org/springframework/aop/interceptor/AsyncExecutionInterceptor");
}
if(conf.hook_async_callrunnable_enabled) {
String[] prefixes = StringUtil.split(conf.hook_async_callrunnable_scan_package_prefixes, ',');
for(int i=0; i")) {
return new InitMV(access, name, desc, mv);
}
return mv;
}
}
class CallOrRunMV extends LocalVariablesSorter implements Opcodes {
private static final String TARGET = TraceMain.class.getName().replace('.', '/');
private static final String START_METHOD = "callRunnableCallInvoked";
private static final String START_SIGNATURE = "(Ljava/lang/Object;)Ljava/lang/Object;";
private static final String END_METHOD = "callRunnableCallEnd";
private static final String END_METHOD_DESC = "(" +
"Ljava/lang/Object;" +
"Ljava/lang/Object;" +
"Ljava/lang/Throwable;" +
")V";
private Label startFinally = new Label();
private Type returnType;
String name;
String desc;
private int statIdx;
public CallOrRunMV(int access, String name, String desc, MethodVisitor mv) {
super(ASM5, access, desc, mv);
this.name = name;
this.desc = desc;
this.returnType = Type.getReturnType(desc);
}
@Override
public void visitCode() {
mv.visitVarInsn(Opcodes.ALOAD, 0);
mv.visitMethodInsn(Opcodes.INVOKESTATIC, TARGET, START_METHOD, START_SIGNATURE, false);
statIdx = newLocal(Type.getType(Object.class));
mv.visitVarInsn(Opcodes.ASTORE, statIdx);
mv.visitLabel(startFinally);
mv.visitCode();
}
@Override
public void visitInsn(int opcode) {
if ((opcode >= IRETURN && opcode <= RETURN)) {
capReturn();
}
mv.visitInsn(opcode);
}
private void capReturn() {
Type tp = returnType;
if (tp == null || tp.equals(Type.VOID_TYPE)) {
mv.visitInsn(Opcodes.ACONST_NULL);
mv.visitVarInsn(Opcodes.ALOAD, statIdx);
mv.visitInsn(Opcodes.ACONST_NULL);
mv.visitMethodInsn(Opcodes.INVOKESTATIC, TARGET, END_METHOD, END_METHOD_DESC, false);
return;
}
switch (tp.getSort()) {
case Type.DOUBLE:
case Type.LONG:
mv.visitInsn(Opcodes.DUP2);
break;
default:
mv.visitInsn(Opcodes.DUP);
}
// TODO method return test dup and store
// int rtnIdx = newLocal(tp);
// mv.visitVarInsn(Opcodes.ASTORE, rtnIdx);
// mv.visitVarInsn(Opcodes.ALOAD, rtnIdx);
mv.visitVarInsn(Opcodes.ALOAD, statIdx);// stat
mv.visitInsn(Opcodes.ACONST_NULL);// throwable
mv.visitMethodInsn(Opcodes.INVOKESTATIC, TARGET, END_METHOD, END_METHOD_DESC, false);
}
@Override
public void visitMaxs(int maxStack, int maxLocals) {
Label endFinally = new Label();
mv.visitTryCatchBlock(startFinally, endFinally, endFinally, null);
mv.visitLabel(endFinally);
mv.visitInsn(DUP);
int errIdx = newLocal(Type.getType(Throwable.class));
mv.visitVarInsn(Opcodes.ASTORE, errIdx);
mv.visitInsn(Opcodes.ACONST_NULL);// return
mv.visitVarInsn(Opcodes.ALOAD, statIdx);
mv.visitVarInsn(Opcodes.ALOAD, errIdx);
mv.visitMethodInsn(Opcodes.INVOKESTATIC, TARGET, END_METHOD, END_METHOD_DESC,false);
mv.visitInsn(ATHROW);
mv.visitMaxs(maxStack + 8, maxLocals + 2);
}
}
class InitMV extends LocalVariablesSorter implements Opcodes {
private static final String TARGET = TraceMain.class.getName().replace('.', '/');
private static final String START_METHOD = "callRunnableInitInvoked";
private static final String START_SIGNATURE = "(Ljava/lang/Object;)V";
String name;
String desc;
public InitMV(int access, String name, String desc, MethodVisitor mv) {
super(ASM5, access, desc, mv);
this.name = name;
this.desc = desc;
}
@Override
public void visitInsn(int opcode) {
if ((opcode >= IRETURN && opcode <= RETURN)) {
mv.visitVarInsn(ALOAD, 0);
mv.visitMethodInsn(Opcodes.INVOKESTATIC, TARGET, START_METHOD, START_SIGNATURE, false);
}
mv.visitInsn(opcode);
}
}