package scouter.bytebuddy.implementation;
import scouter.bytebuddy.description.method.MethodDescription;
import scouter.bytebuddy.dynamic.scaffold.InstrumentedType;
import scouter.bytebuddy.implementation.bytecode.ByteCodeAppender;
import scouter.bytebuddy.implementation.bytecode.StackManipulation;
import scouter.bytebuddy.implementation.bytecode.constant.DefaultValue;
import scouter.bytebuddy.implementation.bytecode.member.MethodReturn;
import scouter.bytebuddy.jar.asm.MethodVisitor;
/**
* This implementation creates a method stub which does nothing but returning the default value of the return
* type of the method. These default values are:
* <ol>
* <li>The value {@code 0} for all numeric type.</li>
* <li>The null character for the {@code char} type.</li>
* <li>{@code false} for the {@code boolean} type.</li>
* <li>Nothing for {@code void} types.</li>
* <li>A {@code null} reference for any reference types. Note that this includes primitive wrapper types.</li>
* </ol>
*/
public enum StubMethod implements Implementation, ByteCodeAppender {
/**
* The singleton instance.
*/
INSTANCE;
@Override
public InstrumentedType prepare(InstrumentedType instrumentedType) {
return instrumentedType;
}
@Override
public ByteCodeAppender appender(Target implementationTarget) {
return this;
}
@Override
public Size apply(MethodVisitor methodVisitor,
Context implementationContext,
MethodDescription instrumentedMethod) {
StackManipulation.Size stackSize = new StackManipulation.Compound(
DefaultValue.of(instrumentedMethod.getReturnType()),
MethodReturn.of(instrumentedMethod.getReturnType())
).apply(methodVisitor, implementationContext);
return new Size(stackSize.getMaximalSize(), instrumentedMethod.getStackSize());
}
}