/*
 * Copyright 2014 - 2019 Rafael Winterhalter
 *
 * 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 net.bytebuddy.asm;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import net.bytebuddy.ClassFileVersion;
import net.bytebuddy.build.HashCodeAndEqualsPlugin;
import net.bytebuddy.description.annotation.AnnotationDescription;
import net.bytebuddy.description.enumeration.EnumerationDescription;
import net.bytebuddy.description.field.FieldDescription;
import net.bytebuddy.description.method.MethodDescription;
import net.bytebuddy.description.method.MethodList;
import net.bytebuddy.description.method.ParameterDescription;
import net.bytebuddy.description.method.ParameterList;
import net.bytebuddy.description.type.TypeDefinition;
import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.dynamic.ClassFileLocator;
import net.bytebuddy.dynamic.TargetType;
import net.bytebuddy.dynamic.scaffold.FieldLocator;
import net.bytebuddy.dynamic.scaffold.InstrumentedType;
import net.bytebuddy.implementation.Implementation;
import net.bytebuddy.implementation.SuperMethodCall;
import net.bytebuddy.implementation.bytecode.*;
import net.bytebuddy.implementation.bytecode.assign.Assigner;
import net.bytebuddy.implementation.bytecode.collection.ArrayAccess;
import net.bytebuddy.implementation.bytecode.collection.ArrayFactory;
import net.bytebuddy.implementation.bytecode.constant.*;
import net.bytebuddy.implementation.bytecode.member.FieldAccess;
import net.bytebuddy.implementation.bytecode.member.MethodInvocation;
import net.bytebuddy.implementation.bytecode.member.MethodVariableAccess;
import net.bytebuddy.matcher.ElementMatcher;
import net.bytebuddy.pool.TypePool;
import net.bytebuddy.utility.CompoundList;
import net.bytebuddy.utility.JavaType;
import net.bytebuddy.utility.OpenedClassReader;
import net.bytebuddy.utility.visitor.ExceptionTableSensitiveMethodVisitor;
import net.bytebuddy.utility.visitor.LineNumberPrependingMethodVisitor;
import net.bytebuddy.utility.visitor.StackAwareMethodVisitor;
import org.objectweb.asm.*;

import java.io.IOException;
import java.io.Serializable;
import java.lang.annotation.*;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.*;

import static net.bytebuddy.matcher.ElementMatchers.isAnnotatedWith;
import static net.bytebuddy.matcher.ElementMatchers.named;

Advice wrappers copy the code of blueprint methods to be executed before and/or after a matched method. To achieve this, a static method of a class is annotated by OnMethodEnter and/or OnMethodExit and provided to an instance of this class.

A method that is annotated with OnMethodEnter can annotate its parameters with Argument where field access to this parameter is substituted with access to the specified argument of the instrumented method. Alternatively, a parameter can be annotated by This where the this reference of the instrumented method is read when the parameter is accessed. This mechanism can also be used to assign a new value to the this reference of an instrumented method. If no annotation is used on a parameter, it is assigned the n-th parameter of the instrumented method for the n-th parameter of the advice method. All parameters must declare the exact same type as the parameters of the instrumented type or the method's declaring type for the This reference respectively if they are not marked as read-only. In the latter case, it suffices that a parameter type is a super type of the corresponding type of the instrumented method.

A method that is annotated with OnMethodExit can equally annotate its parameters with Argument and This. Additionally, it can annotate a parameter with Return to receive the original method's return value. By reassigning the return value, it is possible to replace the returned value. If an instrumented method does not return a value, this annotation must not be used. If a method returns exceptionally, the parameter is set to its default value, i.e. to 0 for primitive types and to null for reference types. The parameter's type must be equal to the instrumented method's return type if it is not set to read-only where it suffices to declare the parameter type to be of any super type to the instrumented method's return type. An exception can be read by annotating a parameter of type Throwable annotated with Thrown which is assigned the thrown Throwable or null if a method returns normally. Doing so, it is possible to exchange a thrown exception with any checked or unchecked exception.Finally, if a method annotated with OnMethodEnter exists and this method returns a value, this value can be accessed by a parameter annotated with Enter. This parameter must declare the same type as type being returned by the method annotated with OnMethodEnter. If the parameter is marked to be read-only, it suffices that the annotated parameter is of a super type of the return type of the method annotated by OnMethodEnter. If no such method exists or this method returns void, no such parameter must be declared. Any return value of a method that is annotated by OnMethodExit is discarded.

If any advice method throws an exception, the method is terminated prematurely. If the method annotated by OnMethodEnter throws an exception, the method annotated by OnMethodExit method is not invoked. If the instrumented method throws an exception, the method that is annotated by OnMethodExit is only invoked if the OnMethodExit.onThrowable() property is set to true what is the default. If this property is set to false, the Thrown annotation must not be used on any parameter.

Byte Buddy does not assert the visibility of any types that are referenced within an inlined advice method. It is the responsibility of the user of this class to assure that all types referenced within the advice methods are visible to the instrumented class. Failing to do so results in a IllegalAccessError at the instrumented class's runtime.

Advice can be used either as a AsmVisitorWrapper where any declared methods of the currently instrumented type are enhanced without replacing an existing implementation. Alternatively, advice can function as an Implementation where, by default, the original super or default method of the instrumented method is invoked. If this is not possible or undesired, the delegate implementation can be changed by specifying a wrapped implementation explicitly by wrap(Implementation).

When using an advice class as a visitor wrapper, native or abstract methods which are silently skipped when advice matches such a method.

Important: Since Java 6, class files contain stack map frames embedded into a method's byte code. When advice methods are compiled with a class file version less then Java 6 but are used for a class file that was compiled to Java 6 or newer, these stack map frames must be computed by ASM by using the ClassWriter.COMPUTE_FRAMES option. If the advice methods do not contain any branching instructions, this is not required. No action is required if the advice methods are at least compiled with Java 6 but are used on classes older than Java 6. This limitation only applies to advice methods that are inlined. Also, it is the responsibility of this class's user to assure that the advice method does not contain byte code constructs that are not supported by the class containing the instrumented method. In particular, pre Java-5 try-finally blocks cannot be inlined into classes with newer byte code levels as the jsr instruction was deprecated. Also, classes prior to Java 7 do not support the invokedynamic command which must not be contained by an advice method if the instrumented method targets an older class file format version.

Note: For the purpose of inlining, Java 5 and Java 6 byte code can be seen as the best candidate for advice methods. These versions do no longer allow subroutines, neither do they already allow invokedynamic instructions or method handles. This way, Java 5 and Java 6 byte code is compatible to both older and newer versions. One exception for backwards-incompatible byte code is the possibility to load type references from the constant pool onto the operand stack. These instructions can however easily be transformed for classes compiled to Java 4 and older by registering a TypeConstantAdjustment before the advice visitor.

Note: It is not possible to trigger break points in inlined advice methods as the debugging information of the inlined advice is not preserved. It is not possible in Java to reference more than one source file per class what makes translating such debugging information impossible. It is however possible to set break points in advice methods when invoking the original advice target. This allows debugging of advice code within unit tests that invoke the advice method without instrumentation. As a consequence of not transferring debugging information, the names of the parameters of an advice method do not matter when inlining, neither does any meta information on the advice method's body such as annotations or parameter modifiers.

Note: The behavior of this component is undefined if it is supplied with invalid byte code what might result in runtime exceptions.

Note: When using advice from a Java agent with an AgentBuilder, it often makes sense to not include any library-specific code in the agent's jar file. For being able to locate the advice code in the context of the library dependencies, Byte Buddy offers an ForAdvice implementation that allows registering the agent's class file locators for assembly of the advice class's description at runtime and with respect to the specific user dependencies.

See Also:
/** * <p> * Advice wrappers copy the code of blueprint methods to be executed before and/or after a matched method. To achieve this, a {@code static} * method of a class is annotated by {@link OnMethodEnter} and/or {@link OnMethodExit} and provided to an instance of this class. * </p> * <p> * A method that is annotated with {@link OnMethodEnter} can annotate its parameters with {@link Argument} where field access to this parameter * is substituted with access to the specified argument of the instrumented method. Alternatively, a parameter can be annotated by {@link This} * where the {@code this} reference of the instrumented method is read when the parameter is accessed. This mechanism can also be used to assign a * new value to the {@code this} reference of an instrumented method. If no annotation is used on a parameter, it is assigned the {@code n}-th * parameter of the instrumented method for the {@code n}-th parameter of the advice method. All parameters must declare the exact same type as * the parameters of the instrumented type or the method's declaring type for the {@link This} reference respectively if they are not marked as * <i>read-only</i>. In the latter case, it suffices that a parameter type is a super type of the corresponding type of the instrumented method. * </p> * <p> * A method that is annotated with {@link OnMethodExit} can equally annotate its parameters with {@link Argument} and {@link This}. Additionally, * it can annotate a parameter with {@link Return} to receive the original method's return value. By reassigning the return value, it is possible * to replace the returned value. If an instrumented method does not return a value, this annotation must not be used. If a method returns * exceptionally, the parameter is set to its default value, i.e. to {@code 0} for primitive types and to {@code null} for reference types. The * parameter's type must be equal to the instrumented method's return type if it is not set to <i>read-only</i> where it suffices to declare the * parameter type to be of any super type to the instrumented method's return type. An exception can be read by annotating a parameter of type * {@link Throwable} annotated with {@link Thrown} which is assigned the thrown {@link Throwable} or {@code null} if a method returns normally. * Doing so, it is possible to exchange a thrown exception with any checked or unchecked exception.Finally, if a method annotated with * {@link OnMethodEnter} exists and this method returns a value, this value can be accessed by a parameter annotated with {@link Enter}. * This parameter must declare the same type as type being returned by the method annotated with {@link OnMethodEnter}. If the parameter is marked * to be <i>read-only</i>, it suffices that the annotated parameter is of a super type of the return type of the method annotated by * {@link OnMethodEnter}. If no such method exists or this method returns {@code void}, no such parameter must be declared. Any return value * of a method that is annotated by {@link OnMethodExit} is discarded. * </p> * <p> * If any advice method throws an exception, the method is terminated prematurely. If the method annotated by {@link OnMethodEnter} throws an exception, * the method annotated by {@link OnMethodExit} method is not invoked. If the instrumented method throws an exception, the method that is annotated by * {@link OnMethodExit} is only invoked if the {@link OnMethodExit#onThrowable()} property is set to {@code true} what is the default. If this property * is set to {@code false}, the {@link Thrown} annotation must not be used on any parameter. * </p> * <p> * Byte Buddy does not assert the visibility of any types that are referenced within an inlined advice method. It is the responsibility of * the user of this class to assure that all types referenced within the advice methods are visible to the instrumented class. Failing to * do so results in a {@link IllegalAccessError} at the instrumented class's runtime. * </p> * <p> * Advice can be used either as a {@link AsmVisitorWrapper} where any declared methods of the currently instrumented type are enhanced without * replacing an existing implementation. Alternatively, advice can function as an {@link Implementation} where, by default, the original super * or default method of the instrumented method is invoked. If this is not possible or undesired, the delegate implementation can be changed * by specifying a wrapped implementation explicitly by {@link Advice#wrap(Implementation)}. * </p> * <p> * When using an advice class as a visitor wrapper, native or abstract methods which are silently skipped when advice matches such a method. * </p> * <p> * <b>Important</b>: Since Java 6, class files contain <i>stack map frames</i> embedded into a method's byte code. When advice methods are compiled * with a class file version less then Java 6 but are used for a class file that was compiled to Java 6 or newer, these stack map frames must be * computed by ASM by using the {@link ClassWriter#COMPUTE_FRAMES} option. If the advice methods do not contain any branching instructions, this is * not required. No action is required if the advice methods are at least compiled with Java 6 but are used on classes older than Java 6. This * limitation only applies to advice methods that are inlined. Also, it is the responsibility of this class's user to assure that the advice method * does not contain byte code constructs that are not supported by the class containing the instrumented method. In particular, pre Java-5 * try-finally blocks cannot be inlined into classes with newer byte code levels as the <i>jsr</i> instruction was deprecated. Also, classes prior * to Java 7 do not support the <i>invokedynamic</i> command which must not be contained by an advice method if the instrumented method targets an * older class file format version. * </p> * <p> * <b>Note</b>: For the purpose of inlining, Java 5 and Java 6 byte code can be seen as the best candidate for advice methods. These versions do * no longer allow subroutines, neither do they already allow invokedynamic instructions or method handles. This way, Java 5 and Java 6 byte * code is compatible to both older and newer versions. One exception for backwards-incompatible byte code is the possibility to load type references * from the constant pool onto the operand stack. These instructions can however easily be transformed for classes compiled to Java 4 and older * by registering a {@link TypeConstantAdjustment} <b>before</b> the advice visitor. * </p> * <p> * <b>Note</b>: It is not possible to trigger break points in inlined advice methods as the debugging information of the inlined advice is not * preserved. It is not possible in Java to reference more than one source file per class what makes translating such debugging information * impossible. It is however possible to set break points in advice methods when invoking the original advice target. This allows debugging * of advice code within unit tests that invoke the advice method without instrumentation. As a consequence of not transferring debugging information, * the names of the parameters of an advice method do not matter when inlining, neither does any meta information on the advice method's body * such as annotations or parameter modifiers. * </p> * <p> * <b>Note</b>: The behavior of this component is undefined if it is supplied with invalid byte code what might result in runtime exceptions. * </p> * <p> * <b>Note</b>: When using advice from a Java agent with an {@link net.bytebuddy.agent.builder.AgentBuilder}, it often makes sense to not include * any library-specific code in the agent's jar file. For being able to locate the advice code in the context of the library dependencies, Byte * Buddy offers an {@link net.bytebuddy.agent.builder.AgentBuilder.Transformer.ForAdvice} implementation that allows registering the agent's * class file locators for assembly of the advice class's description at runtime and with respect to the specific user dependencies. * </p> * * @see OnMethodEnter * @see OnMethodExit */
@HashCodeAndEqualsPlugin.Enhance public class Advice implements AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper, Implementation {
Indicates that no class reader is available to an advice method.
/** * Indicates that no class reader is available to an advice method. */
private static final ClassReader UNDEFINED = null;
A reference to the OnMethodEnter.skipOn() method.
/** * A reference to the {@link OnMethodEnter#skipOn()} method. */
private static final MethodDescription.InDefinedShape SKIP_ON;
A reference to the OnMethodEnter.prependLineNumber() method.
/** * A reference to the {@link OnMethodEnter#prependLineNumber()} method. */
private static final MethodDescription.InDefinedShape PREPEND_LINE_NUMBER;
A reference to the OnMethodEnter.inline() method.
/** * A reference to the {@link OnMethodEnter#inline()} method. */
private static final MethodDescription.InDefinedShape INLINE_ENTER;
A reference to the OnMethodEnter.suppress() method.
/** * A reference to the {@link OnMethodEnter#suppress()} method. */
private static final MethodDescription.InDefinedShape SUPPRESS_ENTER;
A reference to the OnMethodExit.repeatOn() method.
/** * A reference to the {@link OnMethodExit#repeatOn()} method. */
private static final MethodDescription.InDefinedShape REPEAT_ON;
A reference to the OnMethodExit.onThrowable() method.
/** * A reference to the {@link OnMethodExit#onThrowable()} method. */
private static final MethodDescription.InDefinedShape ON_THROWABLE;
A reference to the OnMethodExit.backupArguments() method.
/** * A reference to the {@link OnMethodExit#backupArguments()} method. */
private static final MethodDescription.InDefinedShape BACKUP_ARGUMENTS;
A reference to the OnMethodExit.inline() method.
/** * A reference to the {@link OnMethodExit#inline()} method. */
private static final MethodDescription.InDefinedShape INLINE_EXIT;
A reference to the OnMethodExit.suppress() method.
/** * A reference to the {@link OnMethodExit#suppress()} method. */
private static final MethodDescription.InDefinedShape SUPPRESS_EXIT; /* * Extracts the annotation values for the enter and exit advice annotations. */ static { MethodList<MethodDescription.InDefinedShape> enter = TypeDescription.ForLoadedType.of(OnMethodEnter.class).getDeclaredMethods(); SKIP_ON = enter.filter(named("skipOn")).getOnly(); PREPEND_LINE_NUMBER = enter.filter(named("prependLineNumber")).getOnly(); INLINE_ENTER = enter.filter(named("inline")).getOnly(); SUPPRESS_ENTER = enter.filter(named("suppress")).getOnly(); MethodList<MethodDescription.InDefinedShape> exit = TypeDescription.ForLoadedType.of(OnMethodExit.class).getDeclaredMethods(); REPEAT_ON = exit.filter(named("repeatOn")).getOnly(); ON_THROWABLE = exit.filter(named("onThrowable")).getOnly(); BACKUP_ARGUMENTS = exit.filter(named("backupArguments")).getOnly(); INLINE_EXIT = exit.filter(named("inline")).getOnly(); SUPPRESS_EXIT = exit.filter(named("suppress")).getOnly(); }
The dispatcher for instrumenting the instrumented method upon entering.
/** * The dispatcher for instrumenting the instrumented method upon entering. */
private final Dispatcher.Resolved.ForMethodEnter methodEnter;
The dispatcher for instrumenting the instrumented method upon exiting.
/** * The dispatcher for instrumenting the instrumented method upon exiting. */
private final Dispatcher.Resolved.ForMethodExit methodExit;
The assigner to use.
/** * The assigner to use. */
private final Assigner assigner;
The exception handler to apply.
/** * The exception handler to apply. */
private final ExceptionHandler exceptionHandler;
The delegate implementation to apply if this advice is used as an instrumentation.
/** * The delegate implementation to apply if this advice is used as an instrumentation. */
private final Implementation delegate;
Creates a new advice.
Params:
  • methodEnter – The dispatcher for instrumenting the instrumented method upon entering.
  • methodExit – The dispatcher for instrumenting the instrumented method upon exiting.
/** * Creates a new advice. * * @param methodEnter The dispatcher for instrumenting the instrumented method upon entering. * @param methodExit The dispatcher for instrumenting the instrumented method upon exiting. */
protected Advice(Dispatcher.Resolved.ForMethodEnter methodEnter, Dispatcher.Resolved.ForMethodExit methodExit) { this(methodEnter, methodExit, Assigner.DEFAULT, ExceptionHandler.Default.SUPPRESSING, SuperMethodCall.INSTANCE); }
Creates a new advice.
Params:
  • methodEnter – The dispatcher for instrumenting the instrumented method upon entering.
  • methodExit – The dispatcher for instrumenting the instrumented method upon exiting.
  • assigner – The assigner to use.
  • exceptionHandler – The exception handler to apply.
  • delegate – The delegate implementation to apply if this advice is used as an instrumentation.
/** * Creates a new advice. * * @param methodEnter The dispatcher for instrumenting the instrumented method upon entering. * @param methodExit The dispatcher for instrumenting the instrumented method upon exiting. * @param assigner The assigner to use. * @param exceptionHandler The exception handler to apply. * @param delegate The delegate implementation to apply if this advice is used as an instrumentation. */
private Advice(Dispatcher.Resolved.ForMethodEnter methodEnter, Dispatcher.Resolved.ForMethodExit methodExit, Assigner assigner, ExceptionHandler exceptionHandler, Implementation delegate) { this.methodEnter = methodEnter; this.methodExit = methodExit; this.assigner = assigner; this.exceptionHandler = exceptionHandler; this.delegate = delegate; }
Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is accessed by querying the class loader of the supplied class for a class file.
Params:
  • advice – The type declaring the advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is * accessed by querying the class loader of the supplied class for a class file. * * @param advice The type declaring the advice. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(Class<?> advice) { return to(advice, ClassFileLocator.ForClassLoader.of(advice.getClassLoader())); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • advice – The type declaring the advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param advice The type declaring the advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(Class<?> advice, ClassFileLocator classFileLocator) { return to(TypeDescription.ForLoadedType.of(advice), classFileLocator); }
Implements advice where every matched method is advised by the given type's advisory methods. Using this method, a non-operational class file locator is specified for the advice target. This implies that only advice targets with the inline target set to false are resolvable by the returned instance.
Params:
  • advice – The type declaring the advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. Using this method, a non-operational * class file locator is specified for the advice target. This implies that only advice targets with the <i>inline</i> target set * to {@code false} are resolvable by the returned instance. * * @param advice The type declaring the advice. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(TypeDescription advice) { return to(advice, ClassFileLocator.NoOp.INSTANCE); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • advice – A description of the type declaring the advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param advice A description of the type declaring the advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(TypeDescription advice, ClassFileLocator classFileLocator) { return to(advice, classFileLocator, Collections.<OffsetMapping.Factory<?>>emptyList()); }
Creates a new advice.
Params:
  • advice – A description of the type declaring the advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
  • userFactories – A list of custom factories for user generated offset mappings.
Returns:A method visitor wrapper representing the supplied advice.
/** * Creates a new advice. * * @param advice A description of the type declaring the advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @param userFactories A list of custom factories for user generated offset mappings. * @return A method visitor wrapper representing the supplied advice. */
protected static Advice to(TypeDescription advice, ClassFileLocator classFileLocator, List<? extends OffsetMapping.Factory<?>> userFactories) { Dispatcher.Unresolved methodEnter = Dispatcher.Inactive.INSTANCE, methodExit = Dispatcher.Inactive.INSTANCE; for (MethodDescription.InDefinedShape methodDescription : advice.getDeclaredMethods()) { methodEnter = locate(OnMethodEnter.class, INLINE_ENTER, methodEnter, methodDescription); methodExit = locate(OnMethodExit.class, INLINE_EXIT, methodExit, methodDescription); } if (!methodEnter.isAlive() && !methodExit.isAlive()) { throw new IllegalArgumentException("No advice defined by " + advice); } try { ClassReader classReader = methodEnter.isBinary() || methodExit.isBinary() ? OpenedClassReader.of(classFileLocator.locate(advice.getName()).resolve()) : UNDEFINED; return new Advice(methodEnter.asMethodEnter(userFactories, classReader, methodExit), methodExit.asMethodExit(userFactories, classReader, methodEnter)); } catch (IOException exception) { throw new IllegalStateException("Error reading class file of " + advice, exception); } }
Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is accessed by querying the class loader of the supplied class for a class file.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is * accessed by querying the class loader of the supplied class for a class file. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(Class<?> enterAdvice, Class<?> exitAdvice) { ClassLoader enterLoader = enterAdvice.getClassLoader(), exitLoader = exitAdvice.getClassLoader(); return to(enterAdvice, exitAdvice, enterLoader == exitLoader ? ClassFileLocator.ForClassLoader.of(enterLoader) : new ClassFileLocator.Compound(ClassFileLocator.ForClassLoader.of(enterLoader), ClassFileLocator.ForClassLoader.of(exitLoader))); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(Class<?> enterAdvice, Class<?> exitAdvice, ClassFileLocator classFileLocator) { return to(TypeDescription.ForLoadedType.of(enterAdvice), TypeDescription.ForLoadedType.of(exitAdvice), classFileLocator); }
Implements advice where every matched method is advised by the given type's advisory methods. Using this method, a non-operational class file locator is specified for the advice target. This implies that only advice targets with the inline target set to false are resolvable by the returned instance.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. Using this method, a non-operational * class file locator is specified for the advice target. This implies that only advice targets with the <i>inline</i> target set * to {@code false} are resolvable by the returned instance. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(TypeDescription enterAdvice, TypeDescription exitAdvice) { return to(enterAdvice, exitAdvice, ClassFileLocator.NoOp.INSTANCE); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public static Advice to(TypeDescription enterAdvice, TypeDescription exitAdvice, ClassFileLocator classFileLocator) { return to(enterAdvice, exitAdvice, classFileLocator, Collections.<OffsetMapping.Factory<?>>emptyList()); }
Creates a new advice.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
  • userFactories – A list of custom factories for user generated offset mappings.
Returns:A method visitor wrapper representing the supplied advice.
/** * Creates a new advice. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @param userFactories A list of custom factories for user generated offset mappings. * @return A method visitor wrapper representing the supplied advice. */
protected static Advice to(TypeDescription enterAdvice, TypeDescription exitAdvice, ClassFileLocator classFileLocator, List<? extends OffsetMapping.Factory<?>> userFactories) { Dispatcher.Unresolved methodEnter = Dispatcher.Inactive.INSTANCE, methodExit = Dispatcher.Inactive.INSTANCE; for (MethodDescription.InDefinedShape methodDescription : enterAdvice.getDeclaredMethods()) { methodEnter = locate(OnMethodEnter.class, INLINE_ENTER, methodEnter, methodDescription); } if (!methodEnter.isAlive()) { throw new IllegalArgumentException("No enter advice defined by " + enterAdvice); } for (MethodDescription.InDefinedShape methodDescription : exitAdvice.getDeclaredMethods()) { methodExit = locate(OnMethodExit.class, INLINE_EXIT, methodExit, methodDescription); } if (!methodExit.isAlive()) { throw new IllegalArgumentException("No exit advice defined by " + exitAdvice); } try { return new Advice(methodEnter.asMethodEnter(userFactories, methodEnter.isBinary() ? OpenedClassReader.of(classFileLocator.locate(enterAdvice.getName()).resolve()) : UNDEFINED, methodExit), methodExit.asMethodExit(userFactories, methodExit.isBinary() ? OpenedClassReader.of(classFileLocator.locate(exitAdvice.getName()).resolve()) : UNDEFINED, methodEnter)); } catch (IOException exception) { throw new IllegalStateException("Error reading class file of " + enterAdvice + " or " + exitAdvice, exception); } }
Locates a dispatcher for the method if available.
Params:
  • type – The annotation type that indicates a given form of advice that is currently resolved.
  • property – An annotation property that indicates if the advice method should be inlined.
  • dispatcher – Any previous dispatcher that was discovered or null if no such dispatcher was yet found.
  • methodDescription – The method description that is considered as an advice method.
Returns:A resolved dispatcher or null if no dispatcher was resolved.
/** * Locates a dispatcher for the method if available. * * @param type The annotation type that indicates a given form of advice that is currently resolved. * @param property An annotation property that indicates if the advice method should be inlined. * @param dispatcher Any previous dispatcher that was discovered or {@code null} if no such dispatcher was yet found. * @param methodDescription The method description that is considered as an advice method. * @return A resolved dispatcher or {@code null} if no dispatcher was resolved. */
private static Dispatcher.Unresolved locate(Class<? extends Annotation> type, MethodDescription.InDefinedShape property, Dispatcher.Unresolved dispatcher, MethodDescription.InDefinedShape methodDescription) { AnnotationDescription annotation = methodDescription.getDeclaredAnnotations().ofType(type); if (annotation == null) { return dispatcher; } else if (dispatcher.isAlive()) { throw new IllegalStateException("Duplicate advice for " + dispatcher + " and " + methodDescription); } else if (!methodDescription.isStatic()) { throw new IllegalStateException("Advice for " + methodDescription + " is not static"); } else { return annotation.getValue(property).resolve(Boolean.class) ? new Dispatcher.Inlining(methodDescription) : new Dispatcher.Delegating(methodDescription); } }
Allows for the configuration of custom annotations that are then bound to a dynamically computed, constant value.
See Also:
Returns:A builder for an Advice instrumentation with custom values.
/** * Allows for the configuration of custom annotations that are then bound to a dynamically computed, constant value. * * @return A builder for an {@link Advice} instrumentation with custom values. * @see OffsetMapping.Factory */
public static WithCustomMapping withCustomMapping() { return new WithCustomMapping(); }
Returns an ASM visitor wrapper that matches the given matcher and applies this advice to the matched methods.
Params:
  • matcher – The matcher identifying methods to apply the advice to.
Returns:A suitable ASM visitor wrapper with the compute frames option enabled.
/** * Returns an ASM visitor wrapper that matches the given matcher and applies this advice to the matched methods. * * @param matcher The matcher identifying methods to apply the advice to. * @return A suitable ASM visitor wrapper with the <i>compute frames</i> option enabled. */
public AsmVisitorWrapper.ForDeclaredMethods on(ElementMatcher<? super MethodDescription> matcher) { return new AsmVisitorWrapper.ForDeclaredMethods().invokable(matcher, this); }
{@inheritDoc}
/** * {@inheritDoc} */
public MethodVisitor wrap(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, TypePool typePool, int writerFlags, int readerFlags) { return instrumentedMethod.isAbstract() || instrumentedMethod.isNative() ? methodVisitor : doWrap(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, writerFlags, readerFlags); }
Wraps the method visitor to implement this advice.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • methodVisitor – The method visitor to write to.
  • implementationContext – The implementation context to use.
  • writerFlags – The ASM writer flags to use.
  • readerFlags – The ASM reader flags to use.
Returns:A method visitor that applies this advice.
/** * Wraps the method visitor to implement this advice. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param methodVisitor The method visitor to write to. * @param implementationContext The implementation context to use. * @param writerFlags The ASM writer flags to use. * @param readerFlags The ASM reader flags to use. * @return A method visitor that applies this advice. */
protected MethodVisitor doWrap(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, int writerFlags, int readerFlags) { methodVisitor = methodEnter.isPrependLineNumber() ? new LineNumberPrependingMethodVisitor(methodVisitor) : methodVisitor; if (!methodExit.isAlive()) { return new AdviceVisitor.WithoutExitAdvice(methodVisitor, implementationContext, assigner, exceptionHandler.resolve(instrumentedMethod, instrumentedType), instrumentedType, instrumentedMethod, methodEnter, writerFlags, readerFlags); } else if (methodExit.getThrowable().represents(NoExceptionHandler.class)) { return new AdviceVisitor.WithExitAdvice.WithoutExceptionHandling(methodVisitor, implementationContext, assigner, exceptionHandler.resolve(instrumentedMethod, instrumentedType), instrumentedType, instrumentedMethod, methodEnter, methodExit, writerFlags, readerFlags); } else if (instrumentedMethod.isConstructor()) { throw new IllegalStateException("Cannot catch exception during constructor call for " + instrumentedMethod); } else { return new AdviceVisitor.WithExitAdvice.WithExceptionHandling(methodVisitor, implementationContext, assigner, exceptionHandler.resolve(instrumentedMethod, instrumentedType), instrumentedType, instrumentedMethod, methodEnter, methodExit, writerFlags, readerFlags, methodExit.getThrowable()); } }
{@inheritDoc}
/** * {@inheritDoc} */
public InstrumentedType prepare(InstrumentedType instrumentedType) { return delegate.prepare(instrumentedType); }
{@inheritDoc}
/** * {@inheritDoc} */
public ByteCodeAppender appender(Target implementationTarget) { return new Appender(this, implementationTarget, delegate.appender(implementationTarget)); }
Configures this advice to use the specified assigner. Any previous or default assigner is replaced.
Params:
  • assigner – The assigner to use,
Returns:A version of this advice that uses the specified assigner.
/** * Configures this advice to use the specified assigner. Any previous or default assigner is replaced. * * @param assigner The assigner to use, * @return A version of this advice that uses the specified assigner. */
public Advice withAssigner(Assigner assigner) { return new Advice(methodEnter, methodExit, assigner, exceptionHandler, delegate); }
Configures this advice to call Throwable.printStackTrace() upon a suppressed exception.
Returns:A version of this advice that prints any suppressed exception.
/** * Configures this advice to call {@link Throwable#printStackTrace()} upon a suppressed exception. * * @return A version of this advice that prints any suppressed exception. */
public Advice withExceptionPrinting() { return withExceptionHandler(ExceptionHandler.Default.PRINTING); }
Configures this advice to execute the given stack manipulation upon a suppressed exception. The stack manipulation is executed with a Throwable instance on the operand stack. The stack must be empty upon completing the exception handler.
Params:
  • exceptionHandler – The exception handler to apply.
Returns:A version of this advice that applies the supplied exception handler.
/** * Configures this advice to execute the given stack manipulation upon a suppressed exception. The stack manipulation is executed with a * {@link Throwable} instance on the operand stack. The stack must be empty upon completing the exception handler. * * @param exceptionHandler The exception handler to apply. * @return A version of this advice that applies the supplied exception handler. */
public Advice withExceptionHandler(StackManipulation exceptionHandler) { return withExceptionHandler(new ExceptionHandler.Simple(exceptionHandler)); }
Configures this advice to execute the given exception handler upon a suppressed exception. The stack manipulation is executed with a Throwable instance on the operand stack. The stack must be empty upon completing the exception handler.
Params:
  • exceptionHandler – The exception handler to apply.
Returns:A version of this advice that applies the supplied exception handler.
/** * Configures this advice to execute the given exception handler upon a suppressed exception. The stack manipulation is executed with a * {@link Throwable} instance on the operand stack. The stack must be empty upon completing the exception handler. * * @param exceptionHandler The exception handler to apply. * @return A version of this advice that applies the supplied exception handler. */
public Advice withExceptionHandler(ExceptionHandler exceptionHandler) { return new Advice(methodEnter, methodExit, assigner, exceptionHandler, delegate); }
Wraps the supplied implementation to have this advice applied around it.
Params:
  • implementation – The implementation to wrap.
Returns:An implementation that applies the supplied implementation and wraps it with this advice.
/** * Wraps the supplied implementation to have this advice applied around it. * * @param implementation The implementation to wrap. * @return An implementation that applies the supplied implementation and wraps it with this advice. */
public Implementation wrap(Implementation implementation) { return new Advice(methodEnter, methodExit, assigner, exceptionHandler, implementation); }
Represents an offset mapping for an advice method to an alternative offset.
/** * Represents an offset mapping for an advice method to an alternative offset. */
public interface OffsetMapping {
Resolves an offset mapping to a given target offset.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method for which the mapping is to be resolved.
  • assigner – The assigner to use.
  • argumentHandler – The argument handler to use for resolving offsets of the local variable array of the instrumented method.
  • sort – The sort of the advice method being resolved.
Returns:A suitable target mapping.
/** * Resolves an offset mapping to a given target offset. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method for which the mapping is to be resolved. * @param assigner The assigner to use. * @param argumentHandler The argument handler to use for resolving offsets of the local variable array of the instrumented method. * @param sort The sort of the advice method being resolved. * @return A suitable target mapping. */
Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort);
A target offset of an offset mapping.
/** * A target offset of an offset mapping. */
interface Target {
Resolves a read instruction.
Returns:A stack manipulation that represents a reading of an advice parameter.
/** * Resolves a read instruction. * * @return A stack manipulation that represents a reading of an advice parameter. */
StackManipulation resolveRead();
Resolves a write instruction.
Returns:A stack manipulation that represents a writing to an advice parameter.
/** * Resolves a write instruction. * * @return A stack manipulation that represents a writing to an advice parameter. */
StackManipulation resolveWrite();
Resolves an increment instruction.
Params:
  • value – The incrementation value.
Returns:A stack manipulation that represents a writing to an advice parameter.
/** * Resolves an increment instruction. * * @param value The incrementation value. * @return A stack manipulation that represents a writing to an advice parameter. */
StackManipulation resolveIncrement(int value);
An adapter class for a target that only can be read.
/** * An adapter class for a target that only can be read. */
abstract class AbstractReadOnlyAdapter implements Target {
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { throw new IllegalStateException("Cannot write to read-only value"); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { throw new IllegalStateException("Cannot write to read-only value"); } }
A target for an offset mapping that represents a non-operational value. All writes are discarded and a value's default value is returned upon every read.
/** * A target for an offset mapping that represents a non-operational value. All writes are discarded and a value's * default value is returned upon every read. */
@HashCodeAndEqualsPlugin.Enhance abstract class ForDefaultValue implements Target {
The represented type.
/** * The represented type. */
protected final TypeDefinition typeDefinition;
A stack manipulation to apply after a read instruction.
/** * A stack manipulation to apply after a read instruction. */
protected final StackManipulation readAssignment;
Creates a new target for a default value.
Params:
  • typeDefinition – The represented type.
  • readAssignment – A stack manipulation to apply after a read instruction.
/** * Creates a new target for a default value. * * @param typeDefinition The represented type. * @param readAssignment A stack manipulation to apply after a read instruction. */
protected ForDefaultValue(TypeDefinition typeDefinition, StackManipulation readAssignment) { this.typeDefinition = typeDefinition; this.readAssignment = readAssignment; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveRead() { return new StackManipulation.Compound(DefaultValue.of(typeDefinition), readAssignment); }
A read-only target for a default value.
/** * A read-only target for a default value. */
public static class ReadOnly extends ForDefaultValue {
Creates a new writable target for a default value.
Params:
  • typeDefinition – The represented type.
/** * Creates a new writable target for a default value. * * @param typeDefinition The represented type. */
public ReadOnly(TypeDefinition typeDefinition) { this(typeDefinition, StackManipulation.Trivial.INSTANCE); }
Creates a new -writable target for a default value.
Params:
  • typeDefinition – The represented type.
  • readAssignment – A stack manipulation to apply after a read instruction.
/** * Creates a new -writable target for a default value. * * @param typeDefinition The represented type. * @param readAssignment A stack manipulation to apply after a read instruction. */
public ReadOnly(TypeDefinition typeDefinition, StackManipulation readAssignment) { super(typeDefinition, readAssignment); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { throw new IllegalStateException("Cannot write to read-only default value"); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { throw new IllegalStateException("Cannot write to read-only default value"); } }
A read-write target for a default value.
/** * A read-write target for a default value. */
public static class ReadWrite extends ForDefaultValue {
Creates a new read-only target for a default value.
Params:
  • typeDefinition – The represented type.
/** * Creates a new read-only target for a default value. * * @param typeDefinition The represented type. */
public ReadWrite(TypeDefinition typeDefinition) { this(typeDefinition, StackManipulation.Trivial.INSTANCE); }
Creates a new read-only target for a default value.
Params:
  • typeDefinition – The represented type.
  • readAssignment – A stack manipulation to apply after a read instruction.
/** * Creates a new read-only target for a default value. * * @param typeDefinition The represented type. * @param readAssignment A stack manipulation to apply after a read instruction. */
public ReadWrite(TypeDefinition typeDefinition, StackManipulation readAssignment) { super(typeDefinition, readAssignment); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { return Removal.of(typeDefinition); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { return StackManipulation.Trivial.INSTANCE; } } }
A target for an offset mapping that represents a local variable.
/** * A target for an offset mapping that represents a local variable. */
@HashCodeAndEqualsPlugin.Enhance abstract class ForVariable implements Target {
The represented type.
/** * The represented type. */
protected final TypeDefinition typeDefinition;
The value's offset.
/** * The value's offset. */
protected final int offset;
An assignment to execute upon reading a value.
/** * An assignment to execute upon reading a value. */
protected final StackManipulation readAssignment;
Creates a new target for a local variable mapping.
Params:
  • typeDefinition – The represented type.
  • offset – The value's offset.
  • readAssignment – An assignment to execute upon reading a value.
/** * Creates a new target for a local variable mapping. * * @param typeDefinition The represented type. * @param offset The value's offset. * @param readAssignment An assignment to execute upon reading a value. */
protected ForVariable(TypeDefinition typeDefinition, int offset, StackManipulation readAssignment) { this.typeDefinition = typeDefinition; this.offset = offset; this.readAssignment = readAssignment; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveRead() { return new StackManipulation.Compound(MethodVariableAccess.of(typeDefinition).loadFrom(offset), readAssignment); }
A target for a read-only mapping of a local variable.
/** * A target for a read-only mapping of a local variable. */
public static class ReadOnly extends ForVariable {
Creates a read-only mapping for a local variable.
Params:
  • typeDefinition – The represented type.
  • offset – The value's offset.
/** * Creates a read-only mapping for a local variable. * * @param typeDefinition The represented type. * @param offset The value's offset. */
public ReadOnly(TypeDefinition typeDefinition, int offset) { this(typeDefinition, offset, StackManipulation.Trivial.INSTANCE); }
Creates a read-only mapping for a local variable.
Params:
  • typeDefinition – The represented type.
  • offset – The value's offset.
  • readAssignment – An assignment to execute upon reading a value.
/** * Creates a read-only mapping for a local variable. * * @param typeDefinition The represented type. * @param offset The value's offset. * @param readAssignment An assignment to execute upon reading a value. */
public ReadOnly(TypeDefinition typeDefinition, int offset, StackManipulation readAssignment) { super(typeDefinition, offset, readAssignment); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { throw new IllegalStateException("Cannot write to read-only parameter " + typeDefinition + " at " + offset); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { throw new IllegalStateException("Cannot write to read-only variable " + typeDefinition + " at " + offset); } }
A target for a writable mapping of a local variable.
/** * A target for a writable mapping of a local variable. */
@HashCodeAndEqualsPlugin.Enhance public static class ReadWrite extends ForVariable {
A stack manipulation to apply upon a write to the variable.
/** * A stack manipulation to apply upon a write to the variable. */
private final StackManipulation writeAssignment;
Creates a new target mapping for a writable local variable.
Params:
  • typeDefinition – The represented type.
  • offset – The value's offset.
/** * Creates a new target mapping for a writable local variable. * * @param typeDefinition The represented type. * @param offset The value's offset. */
public ReadWrite(TypeDefinition typeDefinition, int offset) { this(typeDefinition, offset, StackManipulation.Trivial.INSTANCE, StackManipulation.Trivial.INSTANCE); }
Creates a new target mapping for a writable local variable.
Params:
  • typeDefinition – The represented type.
  • offset – The value's offset.
  • readAssignment – An assignment to execute upon reading a value.
  • writeAssignment – A stack manipulation to apply upon a write to the variable.
/** * Creates a new target mapping for a writable local variable. * * @param typeDefinition The represented type. * @param offset The value's offset. * @param readAssignment An assignment to execute upon reading a value. * @param writeAssignment A stack manipulation to apply upon a write to the variable. */
public ReadWrite(TypeDefinition typeDefinition, int offset, StackManipulation readAssignment, StackManipulation writeAssignment) { super(typeDefinition, offset, readAssignment); this.writeAssignment = writeAssignment; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { return new StackManipulation.Compound(writeAssignment, MethodVariableAccess.of(typeDefinition).storeAt(offset)); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { return typeDefinition.represents(int.class) ? MethodVariableAccess.of(typeDefinition).increment(offset, value) : new StackManipulation.Compound(resolveRead(), IntegerConstant.forValue(1), Addition.INTEGER, resolveWrite()); } } }
A target mapping for an array of all local variables.
/** * A target mapping for an array of all local variables. */
@HashCodeAndEqualsPlugin.Enhance abstract class ForArray implements Target {
The compound target type.
/** * The compound target type. */
protected final TypeDescription.Generic target;
The stack manipulations to apply upon reading a variable array.
/** * The stack manipulations to apply upon reading a variable array. */
protected final List<? extends StackManipulation> valueReads;
Creates a new target mapping for an array of all local variables.
Params:
  • target – The compound target type.
  • valueReads – The stack manipulations to apply upon reading a variable array.
/** * Creates a new target mapping for an array of all local variables. * * @param target The compound target type. * @param valueReads The stack manipulations to apply upon reading a variable array. */
protected ForArray(TypeDescription.Generic target, List<? extends StackManipulation> valueReads) { this.target = target; this.valueReads = valueReads; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveRead() { return ArrayFactory.forType(target).withValues(valueReads); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { throw new IllegalStateException("Cannot increment read-only array value"); }
A target mapping for a read-only target mapping for an array of local variables.
/** * A target mapping for a read-only target mapping for an array of local variables. */
public static class ReadOnly extends ForArray {
Creates a read-only target mapping for an array of all local variables.
Params:
  • target – The compound target type.
  • valueReads – The stack manipulations to apply upon reading a variable array.
/** * Creates a read-only target mapping for an array of all local variables. * * @param target The compound target type. * @param valueReads The stack manipulations to apply upon reading a variable array. */
public ReadOnly(TypeDescription.Generic target, List<? extends StackManipulation> valueReads) { super(target, valueReads); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { throw new IllegalStateException("Cannot write to read-only array value"); } }
A target mapping for a writable target mapping for an array of local variables.
/** * A target mapping for a writable target mapping for an array of local variables. */
@HashCodeAndEqualsPlugin.Enhance public static class ReadWrite extends ForArray {
The stack manipulations to apply upon writing to a variable array.
/** * The stack manipulations to apply upon writing to a variable array. */
private final List<? extends StackManipulation> valueWrites;
Creates a writable target mapping for an array of all local variables.
Params:
  • target – The compound target type.
  • valueReads – The stack manipulations to apply upon reading a variable array.
  • valueWrites – The stack manipulations to apply upon writing to a variable array.
/** * Creates a writable target mapping for an array of all local variables. * * @param target The compound target type. * @param valueReads The stack manipulations to apply upon reading a variable array. * @param valueWrites The stack manipulations to apply upon writing to a variable array. */
public ReadWrite(TypeDescription.Generic target, List<? extends StackManipulation> valueReads, List<? extends StackManipulation> valueWrites) { super(target, valueReads); this.valueWrites = valueWrites; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { return ArrayAccess.of(target).forEach(valueWrites); } } }
A target for an offset mapping that loads a field value.
/** * A target for an offset mapping that loads a field value. */
@HashCodeAndEqualsPlugin.Enhance abstract class ForField implements Target {
The field value to load.
/** * The field value to load. */
protected final FieldDescription fieldDescription;
The stack manipulation to apply upon a read.
/** * The stack manipulation to apply upon a read. */
protected final StackManipulation readAssignment;
Creates a new target for a field value mapping.
Params:
  • fieldDescription – The field value to load.
  • readAssignment – The stack manipulation to apply upon a read.
/** * Creates a new target for a field value mapping. * * @param fieldDescription The field value to load. * @param readAssignment The stack manipulation to apply upon a read. */
protected ForField(FieldDescription fieldDescription, StackManipulation readAssignment) { this.fieldDescription = fieldDescription; this.readAssignment = readAssignment; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveRead() { return new StackManipulation.Compound(fieldDescription.isStatic() ? StackManipulation.Trivial.INSTANCE : MethodVariableAccess.loadThis(), FieldAccess.forField(fieldDescription).read(), readAssignment); }
A read-only mapping for a field value.
/** * A read-only mapping for a field value. */
public static class ReadOnly extends ForField {
Creates a new read-only mapping for a field.
Params:
  • fieldDescription – The field value to load.
/** * Creates a new read-only mapping for a field. * * @param fieldDescription The field value to load. */
public ReadOnly(FieldDescription fieldDescription) { this(fieldDescription, StackManipulation.Trivial.INSTANCE); }
Creates a new read-only mapping for a field.
Params:
  • fieldDescription – The field value to load.
  • readAssignment – The stack manipulation to apply upon a read.
/** * Creates a new read-only mapping for a field. * * @param fieldDescription The field value to load. * @param readAssignment The stack manipulation to apply upon a read. */
public ReadOnly(FieldDescription fieldDescription, StackManipulation readAssignment) { super(fieldDescription, readAssignment); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { throw new IllegalStateException("Cannot write to read-only field value"); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { throw new IllegalStateException("Cannot write to read-only field value"); } }
A mapping for a writable field.
/** * A mapping for a writable field. */
@HashCodeAndEqualsPlugin.Enhance public static class ReadWrite extends ForField {
An assignment to apply prior to a field write.
/** * An assignment to apply prior to a field write. */
private final StackManipulation writeAssignment;
Creates a new target for a writable field.
Params:
  • fieldDescription – The field value to load.
/** * Creates a new target for a writable field. * * @param fieldDescription The field value to load. */
public ReadWrite(FieldDescription fieldDescription) { this(fieldDescription, StackManipulation.Trivial.INSTANCE, StackManipulation.Trivial.INSTANCE); }
Creates a new target for a writable field.
Params:
  • fieldDescription – The field value to load.
  • readAssignment – The stack manipulation to apply upon a read.
  • writeAssignment – An assignment to apply prior to a field write.
/** * Creates a new target for a writable field. * * @param fieldDescription The field value to load. * @param readAssignment The stack manipulation to apply upon a read. * @param writeAssignment An assignment to apply prior to a field write. */
public ReadWrite(FieldDescription fieldDescription, StackManipulation readAssignment, StackManipulation writeAssignment) { super(fieldDescription, readAssignment); this.writeAssignment = writeAssignment; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { StackManipulation preparation; if (fieldDescription.isStatic()) { preparation = StackManipulation.Trivial.INSTANCE; } else { preparation = new StackManipulation.Compound( MethodVariableAccess.loadThis(), Duplication.SINGLE.flipOver(fieldDescription.getType()), Removal.SINGLE ); } return new StackManipulation.Compound(writeAssignment, preparation, FieldAccess.forField(fieldDescription).write()); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { return new StackManipulation.Compound( resolveRead(), IntegerConstant.forValue(value), Addition.INTEGER, resolveWrite() ); } } }
A target for an offset mapping that represents a read-only stack manipulation.
/** * A target for an offset mapping that represents a read-only stack manipulation. */
@HashCodeAndEqualsPlugin.Enhance class ForStackManipulation implements Target {
The represented stack manipulation.
/** * The represented stack manipulation. */
private final StackManipulation stackManipulation;
Creates a new target for an offset mapping for a stack manipulation.
Params:
  • stackManipulation – The represented stack manipulation.
/** * Creates a new target for an offset mapping for a stack manipulation. * * @param stackManipulation The represented stack manipulation. */
public ForStackManipulation(StackManipulation stackManipulation) { this.stackManipulation = stackManipulation; }
Creates a target for a Method or Constructor constant.
Params:
  • methodDescription – The method or constructor to represent.
Returns:A mapping for a method or constructor constant.
/** * Creates a target for a {@link Method} or {@link Constructor} constant. * * @param methodDescription The method or constructor to represent. * @return A mapping for a method or constructor constant. */
public static Target of(MethodDescription.InDefinedShape methodDescription) { return new ForStackManipulation(MethodConstant.of(methodDescription)); }
Creates a target for an offset mapping for a type constant.
Params:
  • typeDescription – The type constant to represent.
Returns:A mapping for a type constant.
/** * Creates a target for an offset mapping for a type constant. * * @param typeDescription The type constant to represent. * @return A mapping for a type constant. */
public static Target of(TypeDescription typeDescription) { return new ForStackManipulation(ClassConstant.of(typeDescription)); }
Creates a target for an offset mapping for a constant value or null.
Params:
  • value – The constant value to represent or null.
Returns:An appropriate target for an offset mapping.
/** * Creates a target for an offset mapping for a constant value or {@code null}. * * @param value The constant value to represent or {@code null}. * @return An appropriate target for an offset mapping. */
public static Target of(Object value) { if (value == null) { return new ForStackManipulation(NullConstant.INSTANCE); } else if (value instanceof Boolean) { return new ForStackManipulation(IntegerConstant.forValue((Boolean) value)); } else if (value instanceof Byte) { return new ForStackManipulation(IntegerConstant.forValue((Byte) value)); } else if (value instanceof Short) { return new ForStackManipulation(IntegerConstant.forValue((Short) value)); } else if (value instanceof Character) { return new ForStackManipulation(IntegerConstant.forValue((Character) value)); } else if (value instanceof Integer) { return new ForStackManipulation(IntegerConstant.forValue((Integer) value)); } else if (value instanceof Long) { return new ForStackManipulation(LongConstant.forValue((Long) value)); } else if (value instanceof Float) { return new ForStackManipulation(FloatConstant.forValue((Float) value)); } else if (value instanceof Double) { return new ForStackManipulation(DoubleConstant.forValue((Double) value)); } else if (value instanceof String) { return new ForStackManipulation(new TextConstant((String) value)); } else { throw new IllegalArgumentException("Not a constant value: " + value); } }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveRead() { return stackManipulation; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveWrite() { throw new IllegalStateException("Cannot write to constant value: " + stackManipulation); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolveIncrement(int value) { throw new IllegalStateException("Cannot write to constant value: " + stackManipulation); } } }
Represents a factory for creating a OffsetMapping for a given parameter for a given annotation.
Type parameters:
  • <T> – The annotation type that triggers this factory.
/** * Represents a factory for creating a {@link OffsetMapping} for a given parameter for a given annotation. * * @param <T> The annotation type that triggers this factory. */
interface Factory<T extends Annotation> {
Returns the annotation type of this factory.
Returns:The factory's annotation type.
/** * Returns the annotation type of this factory. * * @return The factory's annotation type. */
Class<T> getAnnotationType();
Creates a new offset mapping for the supplied parameter if possible.
Params:
  • target – The parameter description for which to resolve an offset mapping.
  • annotation – The annotation that triggered this factory.
  • adviceType – true if the binding is applied using advice method delegation.
Returns:A resolved offset mapping or null if no mapping can be resolved for this parameter.
/** * Creates a new offset mapping for the supplied parameter if possible. * * @param target The parameter description for which to resolve an offset mapping. * @param annotation The annotation that triggered this factory. * @param adviceType {@code true} if the binding is applied using advice method delegation. * @return A resolved offset mapping or {@code null} if no mapping can be resolved for this parameter. */
OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType);
Describes the type of advice being applied.
/** * Describes the type of advice being applied. */
enum AdviceType {
Indicates advice where the invocation is delegated.
/** * Indicates advice where the invocation is delegated. */
DELEGATION(true),
Indicates advice where the invocation's code is copied into the target method.
/** * Indicates advice where the invocation's code is copied into the target method. */
INLINING(false);
true if delegation is used.
/** * {@code true} if delegation is used. */
private final boolean delegation;
Creates a new advice type.
Params:
  • delegation – true if delegation is used.
/** * Creates a new advice type. * * @param delegation {@code true} if delegation is used. */
AdviceType(boolean delegation) { this.delegation = delegation; }
Returns true if delegation is used.
Returns:true if delegation is used.
/** * Returns {@code true} if delegation is used. * * @return {@code true} if delegation is used. */
public boolean isDelegation() { return delegation; } }
A simple factory that binds a constant offset mapping.
Type parameters:
  • <T> – The annotation type that represents this offset mapping.
/** * A simple factory that binds a constant offset mapping. * * @param <T> The annotation type that represents this offset mapping. */
@HashCodeAndEqualsPlugin.Enhance class Simple<T extends Annotation> implements Factory<T> {
The annotation type being bound.
/** * The annotation type being bound. */
private final Class<T> annotationType;
The fixed offset mapping.
/** * The fixed offset mapping. */
private final OffsetMapping offsetMapping;
Creates a simple factory for a simple binding for an offset mapping.
Params:
  • annotationType – The annotation type being bound.
  • offsetMapping – The fixed offset mapping.
/** * Creates a simple factory for a simple binding for an offset mapping. * * @param annotationType The annotation type being bound. * @param offsetMapping The fixed offset mapping. */
public Simple(Class<T> annotationType, OffsetMapping offsetMapping) { this.annotationType = annotationType; this.offsetMapping = offsetMapping; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { return offsetMapping; } }
A factory for an annotation whose use is not permitted.
Type parameters:
  • <T> – The annotation type this factory binds.
/** * A factory for an annotation whose use is not permitted. * * @param <T> The annotation type this factory binds. */
@HashCodeAndEqualsPlugin.Enhance class Illegal<T extends Annotation> implements Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
Creates a factory that does not permit the usage of the represented annotation.
Params:
  • annotationType – The annotation type.
/** * Creates a factory that does not permit the usage of the represented annotation. * * @param annotationType The annotation type. */
public Illegal(Class<T> annotationType) { this.annotationType = annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { throw new IllegalStateException("Usage of " + annotationType + " is not allowed on " + target); } } }
Describes the sort of the executed advice.
/** * Describes the sort of the executed advice. */
enum Sort {
Indicates that an offset is mapped for an enter advice.
/** * Indicates that an offset is mapped for an enter advice. */
ENTER { @Override public boolean isPremature(MethodDescription methodDescription) { return methodDescription.isConstructor(); } },
Indicates that an offset is mapped for an exit advice.
/** * Indicates that an offset is mapped for an exit advice. */
EXIT { @Override public boolean isPremature(MethodDescription methodDescription) { return false; } };
Checks if an advice is executed in a premature state, i.e. the instrumented method is a constructor where the super constructor is not yet invoked. In this case, the this reference is not yet initialized and therefore not available.
Params:
  • methodDescription – The instrumented method.
Returns:true if the advice is executed premature for the instrumented method.
/** * Checks if an advice is executed in a premature state, i.e. the instrumented method is a constructor where the super constructor is not * yet invoked. In this case, the {@code this} reference is not yet initialized and therefore not available. * * @param methodDescription The instrumented method. * @return {@code true} if the advice is executed premature for the instrumented method. */
public abstract boolean isPremature(MethodDescription methodDescription); }
An offset mapping for a given parameter of the instrumented method.
/** * An offset mapping for a given parameter of the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance abstract class ForArgument implements OffsetMapping {
The type expected by the advice method.
/** * The type expected by the advice method. */
protected final TypeDescription.Generic target;
Determines if the parameter is to be treated as read-only.
/** * Determines if the parameter is to be treated as read-only. */
protected final boolean readOnly;
The typing to apply when assigning values.
/** * The typing to apply when assigning values. */
private final Assigner.Typing typing;
Creates a new offset mapping for a parameter of the instrumented method.
Params:
  • target – The type expected by the advice method.
  • readOnly – Determines if the parameter is to be treated as read-only.
  • typing – The typing to apply.
/** * Creates a new offset mapping for a parameter of the instrumented method. * * @param target The type expected by the advice method. * @param readOnly Determines if the parameter is to be treated as read-only. * @param typing The typing to apply. */
protected ForArgument(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing) { this.target = target; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { ParameterDescription parameterDescription = resolve(instrumentedMethod); StackManipulation readAssignment = assigner.assign(parameterDescription.getType(), target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + parameterDescription + " to " + target); } else if (readOnly) { return new Target.ForVariable.ReadOnly(parameterDescription.getType(), argumentHandler.argument(parameterDescription.getOffset()), readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, parameterDescription.getType(), typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + parameterDescription + " to " + target); } return new Target.ForVariable.ReadWrite(parameterDescription.getType(), argumentHandler.argument(parameterDescription.getOffset()), readAssignment, writeAssignment); } }
Resolves the bound parameter.
Params:
  • instrumentedMethod – The instrumented method.
Returns:The bound parameter.
/** * Resolves the bound parameter. * * @param instrumentedMethod The instrumented method. * @return The bound parameter. */
protected abstract ParameterDescription resolve(MethodDescription instrumentedMethod);
An offset mapping for a parameter of the instrumented method with a specific index.
/** * An offset mapping for a parameter of the instrumented method with a specific index. */
@HashCodeAndEqualsPlugin.Enhance public static class Unresolved extends ForArgument {
The index of the parameter.
/** * The index of the parameter. */
private final int index;
true if the parameter binding is optional.
/** * {@code true} if the parameter binding is optional. */
private final boolean optional;
Creates a new offset binding for a parameter with a given index.
Params:
  • target – The target type.
  • argument – The annotation that triggers this binding.
/** * Creates a new offset binding for a parameter with a given index. * * @param target The target type. * @param argument The annotation that triggers this binding. */
protected Unresolved(TypeDescription.Generic target, Argument argument) { this(target, argument.readOnly(), argument.typing(), argument.value(), argument.optional()); }
Creates a new offset binding for a parameter with a given index.
Params:
  • parameterDescription – The parameter triggering this binding.
/** * Creates a new offset binding for a parameter with a given index. * * @param parameterDescription The parameter triggering this binding. */
protected Unresolved(ParameterDescription parameterDescription) { this(parameterDescription.getType(), true, Assigner.Typing.STATIC, parameterDescription.getIndex()); }
Creates a non-optional offset binding for a parameter with a given index.
Params:
  • target – The type expected by the advice method.
  • readOnly – Determines if the parameter is to be treated as read-only.
  • typing – The typing to apply.
  • index – The index of the parameter.
/** * Creates a non-optional offset binding for a parameter with a given index. * * @param target The type expected by the advice method. * @param readOnly Determines if the parameter is to be treated as read-only. * @param typing The typing to apply. * @param index The index of the parameter. */
public Unresolved(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, int index) { this(target, readOnly, typing, index, false); }
Creates a new offset binding for a parameter with a given index.
Params:
  • target – The type expected by the advice method.
  • readOnly – Determines if the parameter is to be treated as read-only.
  • typing – The typing to apply.
  • index – The index of the parameter.
  • optional – true if the parameter binding is optional.
/** * Creates a new offset binding for a parameter with a given index. * * @param target The type expected by the advice method. * @param readOnly Determines if the parameter is to be treated as read-only. * @param typing The typing to apply. * @param index The index of the parameter. * @param optional {@code true} if the parameter binding is optional. */
public Unresolved(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, int index, boolean optional) { super(target, readOnly, typing); this.index = index; this.optional = optional; } @Override protected ParameterDescription resolve(MethodDescription instrumentedMethod) { ParameterList<?> parameters = instrumentedMethod.getParameters(); if (parameters.size() <= index) { throw new IllegalStateException(instrumentedMethod + " does not define an index " + index); } else { return parameters.get(index); } }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { if (optional && instrumentedMethod.getParameters().size() <= index) { return readOnly ? new Target.ForDefaultValue.ReadOnly(target) : new Target.ForDefaultValue.ReadWrite(target); } return super.resolve(instrumentedType, instrumentedMethod, assigner, argumentHandler, sort); }
A factory for a mapping of a parameter of the instrumented method.
/** * A factory for a mapping of a parameter of the instrumented method. */
protected enum Factory implements OffsetMapping.Factory<Argument> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Argument> getAnnotationType() { return Argument.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Argument> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot define writable field access for " + target + " when using delegation"); } else { return new ForArgument.Unresolved(target.getType(), annotation.loadSilent()); } } } }
An offset mapping for a specific parameter of the instrumented method.
/** * An offset mapping for a specific parameter of the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance public static class Resolved extends ForArgument {
The parameter being bound.
/** * The parameter being bound. */
private final ParameterDescription parameterDescription;
Creates an offset mapping that binds a parameter of the instrumented method.
Params:
  • target – The type expected by the advice method.
  • readOnly – Determines if the parameter is to be treated as read-only.
  • typing – The typing to apply.
  • parameterDescription – The parameter being bound.
/** * Creates an offset mapping that binds a parameter of the instrumented method. * * @param target The type expected by the advice method. * @param readOnly Determines if the parameter is to be treated as read-only. * @param typing The typing to apply. * @param parameterDescription The parameter being bound. */
public Resolved(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, ParameterDescription parameterDescription) { super(target, readOnly, typing); this.parameterDescription = parameterDescription; } @Override protected ParameterDescription resolve(MethodDescription instrumentedMethod) { if (!parameterDescription.getDeclaringMethod().equals(instrumentedMethod)) { throw new IllegalStateException(parameterDescription + " is not a parameter of " + instrumentedMethod); } return parameterDescription; }
A factory for a parameter argument of the instrumented method.
Type parameters:
  • <T> – The type of the bound annotation.
/** * A factory for a parameter argument of the instrumented method. * * @param <T> The type of the bound annotation. */
@HashCodeAndEqualsPlugin.Enhance public static class Factory<T extends Annotation> implements OffsetMapping.Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
The bound parameter.
/** * The bound parameter. */
private final ParameterDescription parameterDescription;
true if the factory should create a read-only binding.
/** * {@code true} if the factory should create a read-only binding. */
private final boolean readOnly;
The typing to use.
/** * The typing to use. */
private final Assigner.Typing typing;
Creates a new factory for binding a parameter of the instrumented method with read-only semantics and static typing.
Params:
  • annotationType – The annotation type.
  • parameterDescription – The bound parameter.
/** * Creates a new factory for binding a parameter of the instrumented method with read-only semantics and static typing. * * @param annotationType The annotation type. * @param parameterDescription The bound parameter. */
public Factory(Class<T> annotationType, ParameterDescription parameterDescription) { this(annotationType, parameterDescription, true, Assigner.Typing.STATIC); }
Creates a new factory for binding a parameter of the instrumented method.
Params:
  • annotationType – The annotation type.
  • parameterDescription – The bound parameter.
  • readOnly – true if the factory should create a read-only binding.
  • typing – The typing to use.
/** * Creates a new factory for binding a parameter of the instrumented method. * * @param annotationType The annotation type. * @param parameterDescription The bound parameter. * @param readOnly {@code true} if the factory should create a read-only binding. * @param typing The typing to use. */
public Factory(Class<T> annotationType, ParameterDescription parameterDescription, boolean readOnly, Assigner.Typing typing) { this.annotationType = annotationType; this.parameterDescription = parameterDescription; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { return new Resolved(target.getType(), readOnly, typing, parameterDescription); } } } }
An offset mapping that provides access to the this reference of the instrumented method.
/** * An offset mapping that provides access to the {@code this} reference of the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance class ForThisReference implements OffsetMapping {
The type that the advice method expects for the this reference.
/** * The type that the advice method expects for the {@code this} reference. */
private final TypeDescription.Generic target;
Determines if the parameter is to be treated as read-only.
/** * Determines if the parameter is to be treated as read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
true if the parameter should be bound to null if the instrumented method is static.
/** * {@code true} if the parameter should be bound to {@code null} if the instrumented method is static. */
private final boolean optional;
Creates a new offset mapping for a this reference.
Params:
  • target – The type that the advice method expects for the this reference.
  • annotation – The mapped annotation.
/** * Creates a new offset mapping for a {@code this} reference. * * @param target The type that the advice method expects for the {@code this} reference. * @param annotation The mapped annotation. */
protected ForThisReference(TypeDescription.Generic target, This annotation) { this(target, annotation.readOnly(), annotation.typing(), annotation.optional()); }
Creates a new offset mapping for a this reference.
Params:
  • target – The type that the advice method expects for the this reference.
  • readOnly – Determines if the parameter is to be treated as read-only.
  • typing – The typing to apply.
  • optional – true if the parameter should be bound to null if the instrumented method is static.
/** * Creates a new offset mapping for a {@code this} reference. * * @param target The type that the advice method expects for the {@code this} reference. * @param readOnly Determines if the parameter is to be treated as read-only. * @param typing The typing to apply. * @param optional {@code true} if the parameter should be bound to {@code null} if the instrumented method is static. */
public ForThisReference(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, boolean optional) { this.target = target; this.readOnly = readOnly; this.typing = typing; this.optional = optional; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { if (instrumentedMethod.isStatic() || sort.isPremature(instrumentedMethod)) { if (optional) { return readOnly ? new Target.ForDefaultValue.ReadOnly(instrumentedType) : new Target.ForDefaultValue.ReadWrite(instrumentedType); } else { throw new IllegalStateException("Cannot map this reference for static method or constructor start: " + instrumentedMethod); } } StackManipulation readAssignment = assigner.assign(instrumentedType.asGenericType(), target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + instrumentedType + " to " + target); } else if (readOnly) { return new Target.ForVariable.ReadOnly(instrumentedType.asGenericType(), argumentHandler.argument(ArgumentHandler.THIS_REFERENCE), readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, instrumentedType.asGenericType(), typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to " + instrumentedType); } return new Target.ForVariable.ReadWrite(instrumentedType.asGenericType(), argumentHandler.argument(ArgumentHandler.THIS_REFERENCE), readAssignment, writeAssignment); } }
A factory for creating a ForThisReference offset mapping.
/** * A factory for creating a {@link ForThisReference} offset mapping. */
protected enum Factory implements OffsetMapping.Factory<This> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<This> getAnnotationType() { return This.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<This> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot write to this reference for " + target + " in read-only context"); } else { return new ForThisReference(target.getType(), annotation.loadSilent()); } } } }
An offset mapping that maps an array containing all arguments of the instrumented method.
/** * An offset mapping that maps an array containing all arguments of the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance class ForAllArguments implements OffsetMapping {
The component target type.
/** * The component target type. */
private final TypeDescription.Generic target;
true if the array is read-only.
/** * {@code true} if the array is read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates a new offset mapping for an array containing all arguments.
Params:
  • target – The component target type.
  • annotation – The mapped annotation.
/** * Creates a new offset mapping for an array containing all arguments. * * @param target The component target type. * @param annotation The mapped annotation. */
protected ForAllArguments(TypeDescription.Generic target, AllArguments annotation) { this(target, annotation.readOnly(), annotation.typing()); }
Creates a new offset mapping for an array containing all arguments.
Params:
  • target – The component target type.
  • readOnly – true if the array is read-only.
  • typing – The typing to apply.
/** * Creates a new offset mapping for an array containing all arguments. * * @param target The component target type. * @param readOnly {@code true} if the array is read-only. * @param typing The typing to apply. */
public ForAllArguments(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing) { this.target = target; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { List<StackManipulation> valueReads = new ArrayList<StackManipulation>(instrumentedMethod.getParameters().size()); for (ParameterDescription parameterDescription : instrumentedMethod.getParameters()) { StackManipulation readAssignment = assigner.assign(parameterDescription.getType(), target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + parameterDescription + " to " + target); } valueReads.add(new StackManipulation.Compound(MethodVariableAccess.of(parameterDescription.getType()) .loadFrom(argumentHandler.argument(parameterDescription.getOffset())), readAssignment)); } if (readOnly) { return new Target.ForArray.ReadOnly(target, valueReads); } else { List<StackManipulation> valueWrites = new ArrayList<StackManipulation>(instrumentedMethod.getParameters().size()); for (ParameterDescription parameterDescription : instrumentedMethod.getParameters()) { StackManipulation writeAssignment = assigner.assign(target, parameterDescription.getType(), typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to " + parameterDescription); } valueWrites.add(new StackManipulation.Compound(writeAssignment, MethodVariableAccess.of(parameterDescription.getType()) .storeAt(argumentHandler.argument(parameterDescription.getOffset())))); } return new Target.ForArray.ReadWrite(target, valueReads, valueWrites); } }
A factory for an offset mapping that maps all arguments values of the instrumented method.
/** * A factory for an offset mapping that maps all arguments values of the instrumented method. */
protected enum Factory implements OffsetMapping.Factory<AllArguments> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<AllArguments> getAnnotationType() { return AllArguments.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<AllArguments> annotation, AdviceType adviceType) { if (!target.getType().represents(Object.class) && !target.getType().isArray()) { throw new IllegalStateException("Cannot use AllArguments annotation on a non-array type"); } else if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot define writable field access for " + target); } else { return new ForAllArguments(target.getType().represents(Object.class) ? TypeDescription.Generic.OBJECT : target.getType().getComponentType(), annotation.loadSilent()); } } } }
Maps the declaring type of the instrumented method.
/** * Maps the declaring type of the instrumented method. */
enum ForInstrumentedType implements OffsetMapping {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { return Target.ForStackManipulation.of(instrumentedType); } }
Maps a constant representing the instrumented method.
/** * Maps a constant representing the instrumented method. */
enum ForInstrumentedMethod implements OffsetMapping {
A constant that must be a Method instance.
/** * A constant that must be a {@link Method} instance. */
METHOD { @Override protected boolean isRepresentable(MethodDescription instrumentedMethod) { return instrumentedMethod.isMethod(); } },
A constant that must be a Constructor instance.
/** * A constant that must be a {@link Constructor} instance. */
CONSTRUCTOR { @Override protected boolean isRepresentable(MethodDescription instrumentedMethod) { return instrumentedMethod.isConstructor(); } },
A constant that must be a java.lang.reflect.Executable instance.
/** * A constant that must be a {@code java.lang.reflect.Executable} instance. */
EXECUTABLE { @Override protected boolean isRepresentable(MethodDescription instrumentedMethod) { return true; } };
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { if (!isRepresentable(instrumentedMethod)) { throw new IllegalStateException("Cannot represent " + instrumentedMethod + " as given method constant"); } return Target.ForStackManipulation.of(instrumentedMethod.asDefined()); }
Checks if the supplied method is representable for the assigned offset mapping.
Params:
  • instrumentedMethod – The instrumented method to represent.
Returns:true if this method is representable.
/** * Checks if the supplied method is representable for the assigned offset mapping. * * @param instrumentedMethod The instrumented method to represent. * @return {@code true} if this method is representable. */
protected abstract boolean isRepresentable(MethodDescription instrumentedMethod); }
An offset mapping for a field.
/** * An offset mapping for a field. */
@HashCodeAndEqualsPlugin.Enhance abstract class ForField implements OffsetMapping {
The FieldValue.value() method.
/** * The {@link FieldValue#value()} method. */
private static final MethodDescription.InDefinedShape VALUE; /** * The {@link FieldValue#declaringType()}} method. */ private static final MethodDescription.InDefinedShape DECLARING_TYPE;
The FieldValue.readOnly()} method.
/** * The {@link FieldValue#readOnly()}} method. */
private static final MethodDescription.InDefinedShape READ_ONLY;
The FieldValue.typing()} method.
/** * The {@link FieldValue#typing()}} method. */
private static final MethodDescription.InDefinedShape TYPING; /* * Looks up all annotation properties to avoid loading of the declaring field type. */ static { MethodList<MethodDescription.InDefinedShape> methods = TypeDescription.ForLoadedType.of(FieldValue.class).getDeclaredMethods(); VALUE = methods.filter(named("value")).getOnly(); DECLARING_TYPE = methods.filter(named("declaringType")).getOnly(); READ_ONLY = methods.filter(named("readOnly")).getOnly(); TYPING = methods.filter(named("typing")).getOnly(); }
The expected type that the field can be assigned to.
/** * The expected type that the field can be assigned to. */
private final TypeDescription.Generic target;
true if this mapping is read-only.
/** * {@code true} if this mapping is read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates an offset mapping for a field.
Params:
  • target – The target type.
  • readOnly – true if this mapping is read-only.
  • typing – The typing to apply.
/** * Creates an offset mapping for a field. * * @param target The target type. * @param readOnly {@code true} if this mapping is read-only. * @param typing The typing to apply. */
public ForField(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing) { this.target = target; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { FieldDescription fieldDescription = resolve(instrumentedType); if (!fieldDescription.isStatic() && instrumentedMethod.isStatic()) { throw new IllegalStateException("Cannot read non-static field " + fieldDescription + " from static method " + instrumentedMethod); } else if (sort.isPremature(instrumentedMethod) && !fieldDescription.isStatic()) { throw new IllegalStateException("Cannot access non-static field before calling constructor: " + instrumentedMethod); } StackManipulation readAssignment = assigner.assign(fieldDescription.getType(), target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + fieldDescription + " to " + target); } else if (readOnly) { return new Target.ForField.ReadOnly(fieldDescription, readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, fieldDescription.getType(), typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to " + fieldDescription); } return new Target.ForField.ReadWrite(fieldDescription.asDefined(), readAssignment, writeAssignment); } }
Resolves the field being bound.
Params:
  • instrumentedType – The instrumented type.
Returns:The field being bound.
/** * Resolves the field being bound. * * @param instrumentedType The instrumented type. * @return The field being bound. */
protected abstract FieldDescription resolve(TypeDescription instrumentedType);
An offset mapping for a field that is resolved from the instrumented type by its name.
/** * An offset mapping for a field that is resolved from the instrumented type by its name. */
@HashCodeAndEqualsPlugin.Enhance public abstract static class Unresolved extends ForField {
The name of the field.
/** * The name of the field. */
private final String name;
Creates an offset mapping for a field that is not yet resolved.
Params:
  • target – The target type.
  • readOnly – true if this mapping is read-only.
  • typing – The typing to apply.
  • name – The name of the field.
/** * Creates an offset mapping for a field that is not yet resolved. * * @param target The target type. * @param readOnly {@code true} if this mapping is read-only. * @param typing The typing to apply. * @param name The name of the field. */
public Unresolved(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, String name) { super(target, readOnly, typing); this.name = name; } @Override protected FieldDescription resolve(TypeDescription instrumentedType) { FieldLocator.Resolution resolution = fieldLocator(instrumentedType).locate(name); if (!resolution.isResolved()) { throw new IllegalStateException("Cannot locate field named " + name + " for " + instrumentedType); } else { return resolution.getField(); } }
Returns a field locator for this instance.
Params:
  • instrumentedType – The instrumented type.
Returns:An appropriate field locator.
/** * Returns a field locator for this instance. * * @param instrumentedType The instrumented type. * @return An appropriate field locator. */
protected abstract FieldLocator fieldLocator(TypeDescription instrumentedType);
An offset mapping for a field with an implicit declaring type.
/** * An offset mapping for a field with an implicit declaring type. */
public static class WithImplicitType extends Unresolved {
Creates an offset mapping for a field with an implicit declaring type.
Params:
  • target – The target type.
  • annotation – The annotation to represent.
/** * Creates an offset mapping for a field with an implicit declaring type. * * @param target The target type. * @param annotation The annotation to represent. */
protected WithImplicitType(TypeDescription.Generic target, AnnotationDescription.Loadable<FieldValue> annotation) { this(target, annotation.getValue(READ_ONLY).resolve(Boolean.class), annotation.getValue(TYPING).loadSilent(Assigner.Typing.class.getClassLoader()).resolve(Assigner.Typing.class), annotation.getValue(VALUE).resolve(String.class)); }
Creates an offset mapping for a field with an implicit declaring type.
Params:
  • target – The target type.
  • name – The name of the field.
  • readOnly – true if the field is read-only.
  • typing – The typing to apply.
/** * Creates an offset mapping for a field with an implicit declaring type. * * @param target The target type. * @param name The name of the field. * @param readOnly {@code true} if the field is read-only. * @param typing The typing to apply. */
public WithImplicitType(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, String name) { super(target, readOnly, typing, name); } @Override protected FieldLocator fieldLocator(TypeDescription instrumentedType) { return new FieldLocator.ForClassHierarchy(instrumentedType); } }
An offset mapping for a field with an explicit declaring type.
/** * An offset mapping for a field with an explicit declaring type. */
@HashCodeAndEqualsPlugin.Enhance public static class WithExplicitType extends Unresolved {
The type declaring the field.
/** * The type declaring the field. */
private final TypeDescription declaringType;
Creates an offset mapping for a field with an explicit declaring type.
Params:
  • target – The target type.
  • annotation – The annotation to represent.
  • declaringType – The field's declaring type.
/** * Creates an offset mapping for a field with an explicit declaring type. * * @param target The target type. * @param annotation The annotation to represent. * @param declaringType The field's declaring type. */
protected WithExplicitType(TypeDescription.Generic target, AnnotationDescription.Loadable<FieldValue> annotation, TypeDescription declaringType) { this(target, annotation.getValue(READ_ONLY).resolve(Boolean.class), annotation.getValue(TYPING).loadSilent(Assigner.Typing.class.getClassLoader()).resolve(Assigner.Typing.class), annotation.getValue(VALUE).resolve(String.class), declaringType); }
Creates an offset mapping for a field with an explicit declaring type.
Params:
  • target – The target type.
  • name – The name of the field.
  • readOnly – true if the field is read-only.
  • typing – The typing to apply.
  • declaringType – The field's declaring type.
/** * Creates an offset mapping for a field with an explicit declaring type. * * @param target The target type. * @param name The name of the field. * @param readOnly {@code true} if the field is read-only. * @param typing The typing to apply. * @param declaringType The field's declaring type. */
public WithExplicitType(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, String name, TypeDescription declaringType) { super(target, readOnly, typing, name); this.declaringType = declaringType; } @Override protected FieldLocator fieldLocator(TypeDescription instrumentedType) { if (!declaringType.represents(TargetType.class) && !instrumentedType.isAssignableTo(declaringType)) { throw new IllegalStateException(declaringType + " is no super type of " + instrumentedType); } return new FieldLocator.ForExactType(TargetType.resolve(declaringType, instrumentedType)); } }
A factory for a Unresolved offset mapping.
/** * A factory for a {@link Unresolved} offset mapping. */
protected enum Factory implements OffsetMapping.Factory<FieldValue> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<FieldValue> getAnnotationType() { return FieldValue.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<FieldValue> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.getValue(ForField.READ_ONLY).resolve(Boolean.class)) { throw new IllegalStateException("Cannot write to field for " + target + " in read-only context"); } else { TypeDescription declaringType = annotation.getValue(DECLARING_TYPE).resolve(TypeDescription.class); return declaringType.represents(void.class) ? new WithImplicitType(target.getType(), annotation) : new WithExplicitType(target.getType(), annotation, declaringType); } } } }
A binding for an offset mapping that represents a specific field.
/** * A binding for an offset mapping that represents a specific field. */
@HashCodeAndEqualsPlugin.Enhance public static class Resolved extends ForField {
The accessed field.
/** * The accessed field. */
private final FieldDescription fieldDescription;
Creates a resolved offset mapping for a field.
Params:
  • target – The target type.
  • readOnly – true if this mapping is read-only.
  • typing – The typing to apply.
  • fieldDescription – The accessed field.
/** * Creates a resolved offset mapping for a field. * * @param target The target type. * @param readOnly {@code true} if this mapping is read-only. * @param typing The typing to apply. * @param fieldDescription The accessed field. */
public Resolved(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, FieldDescription fieldDescription) { super(target, readOnly, typing); this.fieldDescription = fieldDescription; } @Override protected FieldDescription resolve(TypeDescription instrumentedType) { if (!fieldDescription.isStatic() && !fieldDescription.getDeclaringType().asErasure().isAssignableFrom(instrumentedType)) { throw new IllegalStateException(fieldDescription + " is no member of " + instrumentedType); } else if (!fieldDescription.isAccessibleTo(instrumentedType)) { throw new IllegalStateException("Cannot access " + fieldDescription + " from " + instrumentedType); } return fieldDescription; }
A factory that binds a field.
Type parameters:
  • <T> – The annotation type this factory binds.
/** * A factory that binds a field. * * @param <T> The annotation type this factory binds. */
@HashCodeAndEqualsPlugin.Enhance public static class Factory<T extends Annotation> implements OffsetMapping.Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
The field to be bound.
/** * The field to be bound. */
private final FieldDescription fieldDescription;
true if this factory should create a read-only binding.
/** * {@code true} if this factory should create a read-only binding. */
private final boolean readOnly;
The typing to use.
/** * The typing to use. */
private final Assigner.Typing typing;
Creates a new factory for binding a specific field with read-only semantics and static typing.
Params:
  • annotationType – The annotation type.
  • fieldDescription – The field to bind.
/** * Creates a new factory for binding a specific field with read-only semantics and static typing. * * @param annotationType The annotation type. * @param fieldDescription The field to bind. */
public Factory(Class<T> annotationType, FieldDescription fieldDescription) { this(annotationType, fieldDescription, true, Assigner.Typing.STATIC); }
Creates a new factory for binding a specific field.
Params:
  • annotationType – The annotation type.
  • fieldDescription – The field to bind.
  • readOnly – true if this factory should create a read-only binding.
  • typing – The typing to use.
/** * Creates a new factory for binding a specific field. * * @param annotationType The annotation type. * @param fieldDescription The field to bind. * @param readOnly {@code true} if this factory should create a read-only binding. * @param typing The typing to use. */
public Factory(Class<T> annotationType, FieldDescription fieldDescription, boolean readOnly, Assigner.Typing typing) { this.annotationType = annotationType; this.fieldDescription = fieldDescription; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { return new Resolved(target.getType(), readOnly, typing, fieldDescription); } } } }
An offset mapping for the Origin annotation.
/** * An offset mapping for the {@link Advice.Origin} annotation. */
@HashCodeAndEqualsPlugin.Enhance class ForOrigin implements OffsetMapping {
The delimiter character.
/** * The delimiter character. */
private static final char DELIMITER = '#';
The escape character.
/** * The escape character. */
private static final char ESCAPE = '\\';
The renderers to apply.
/** * The renderers to apply. */
private final List<Renderer> renderers;
Creates a new offset mapping for an origin value.
Params:
  • renderers – The renderers to apply.
/** * Creates a new offset mapping for an origin value. * * @param renderers The renderers to apply. */
public ForOrigin(List<Renderer> renderers) { this.renderers = renderers; }
Parses a pattern of an origin annotation.
Params:
  • pattern – The supplied pattern.
Returns:An appropriate offset mapping.
/** * Parses a pattern of an origin annotation. * * @param pattern The supplied pattern. * @return An appropriate offset mapping. */
public static OffsetMapping parse(String pattern) { if (pattern.equals(Origin.DEFAULT)) { return new ForOrigin(Collections.<Renderer>singletonList(Renderer.ForStringRepresentation.INSTANCE)); } else { List<Renderer> renderers = new ArrayList<Renderer>(pattern.length()); int from = 0; for (int to = pattern.indexOf(DELIMITER); to != -1; to = pattern.indexOf(DELIMITER, from)) { if (to != 0 && pattern.charAt(to - 1) == ESCAPE && (to == 1 || pattern.charAt(to - 2) != ESCAPE)) { renderers.add(new Renderer.ForConstantValue(pattern.substring(from, Math.max(0, to - 1)) + DELIMITER)); from = to + 1; continue; } else if (pattern.length() == to + 1) { throw new IllegalStateException("Missing sort descriptor for " + pattern + " at index " + to); } renderers.add(new Renderer.ForConstantValue(pattern.substring(from, to).replace("" + ESCAPE + ESCAPE, "" + ESCAPE))); switch (pattern.charAt(to + 1)) { case Renderer.ForMethodName.SYMBOL: renderers.add(Renderer.ForMethodName.INSTANCE); break; case Renderer.ForTypeName.SYMBOL: renderers.add(Renderer.ForTypeName.INSTANCE); break; case Renderer.ForDescriptor.SYMBOL: renderers.add(Renderer.ForDescriptor.INSTANCE); break; case Renderer.ForReturnTypeName.SYMBOL: renderers.add(Renderer.ForReturnTypeName.INSTANCE); break; case Renderer.ForJavaSignature.SYMBOL: renderers.add(Renderer.ForJavaSignature.INSTANCE); break; default: throw new IllegalStateException("Illegal sort descriptor " + pattern.charAt(to + 1) + " for " + pattern); } from = to + 2; } renderers.add(new Renderer.ForConstantValue(pattern.substring(from))); return new ForOrigin(renderers); } }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StringBuilder stringBuilder = new StringBuilder(); for (Renderer renderer : renderers) { stringBuilder.append(renderer.apply(instrumentedType, instrumentedMethod)); } return Target.ForStackManipulation.of(stringBuilder.toString()); }
A renderer for an origin pattern element.
/** * A renderer for an origin pattern element. */
public interface Renderer {
Returns a string representation for this renderer.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
Returns:The string representation.
/** * Returns a string representation for this renderer. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @return The string representation. */
String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod);
A renderer for a method's internal name.
/** * A renderer for a method's internal name. */
enum ForMethodName implements Renderer {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
The method name symbol.
/** * The method name symbol. */
public static final char SYMBOL = 'm';
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { return instrumentedMethod.getInternalName(); } }
A renderer for a method declaring type's binary name.
/** * A renderer for a method declaring type's binary name. */
enum ForTypeName implements Renderer {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
The type name symbol.
/** * The type name symbol. */
public static final char SYMBOL = 't';
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { return instrumentedType.getName(); } }
A renderer for a method descriptor.
/** * A renderer for a method descriptor. */
enum ForDescriptor implements Renderer {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
The descriptor symbol.
/** * The descriptor symbol. */
public static final char SYMBOL = 'd';
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { return instrumentedMethod.getDescriptor(); } }
A renderer for a method's Java signature in binary form.
/** * A renderer for a method's Java signature in binary form. */
enum ForJavaSignature implements Renderer {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
The signature symbol.
/** * The signature symbol. */
public static final char SYMBOL = 's';
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { StringBuilder stringBuilder = new StringBuilder("("); boolean comma = false; for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { if (comma) { stringBuilder.append(','); } else { comma = true; } stringBuilder.append(typeDescription.getName()); } return stringBuilder.append(')').toString(); } }
A renderer for a method's return type in binary form.
/** * A renderer for a method's return type in binary form. */
enum ForReturnTypeName implements Renderer {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
The return type symbol.
/** * The return type symbol. */
public static final char SYMBOL = 'r';
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { return instrumentedMethod.getReturnType().asErasure().getName(); } }
A renderer for a method's Object.toString() representation.
/** * A renderer for a method's {@link Object#toString()} representation. */
enum ForStringRepresentation implements Renderer {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { return instrumentedMethod.toString(); } }
A renderer for a constant value.
/** * A renderer for a constant value. */
@HashCodeAndEqualsPlugin.Enhance class ForConstantValue implements Renderer {
The constant value.
/** * The constant value. */
private final String value;
Creates a new renderer for a constant value.
Params:
  • value – The constant value.
/** * Creates a new renderer for a constant value. * * @param value The constant value. */
public ForConstantValue(String value) { this.value = value; }
{@inheritDoc}
/** * {@inheritDoc} */
public String apply(TypeDescription instrumentedType, MethodDescription instrumentedMethod) { return value; } } }
A factory for a method origin.
/** * A factory for a method origin. */
protected enum Factory implements OffsetMapping.Factory<Origin> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Origin> getAnnotationType() { return Origin.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Origin> annotation, AdviceType adviceType) { if (target.getType().asErasure().represents(Class.class)) { return OffsetMapping.ForInstrumentedType.INSTANCE; } else if (target.getType().asErasure().represents(Method.class)) { return OffsetMapping.ForInstrumentedMethod.METHOD; } else if (target.getType().asErasure().represents(Constructor.class)) { return OffsetMapping.ForInstrumentedMethod.CONSTRUCTOR; } else if (JavaType.EXECUTABLE.getTypeStub().equals(target.getType().asErasure())) { return OffsetMapping.ForInstrumentedMethod.EXECUTABLE; } else if (target.getType().asErasure().isAssignableFrom(String.class)) { return ForOrigin.parse(annotation.loadSilent().value()); } else { throw new IllegalStateException("Non-supported type " + target.getType() + " for @Origin annotation"); } } } }
An offset mapping for a parameter where assignments are fully ignored and that always return the parameter type's default value.
/** * An offset mapping for a parameter where assignments are fully ignored and that always return the parameter type's default value. */
@HashCodeAndEqualsPlugin.Enhance class ForUnusedValue implements OffsetMapping {
The unused type.
/** * The unused type. */
private final TypeDefinition target;
Creates a new offset mapping for an unused type.
Params:
  • target – The unused type.
/** * Creates a new offset mapping for an unused type. * * @param target The unused type. */
public ForUnusedValue(TypeDefinition target) { this.target = target; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { return new Target.ForDefaultValue.ReadWrite(target); }
A factory for an offset mapping for an unused value.
/** * A factory for an offset mapping for an unused value. */
protected enum Factory implements OffsetMapping.Factory<Unused> {
A factory for representing an unused value.
/** * A factory for representing an unused value. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Unused> getAnnotationType() { return Unused.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Unused> annotation, AdviceType adviceType) { return new ForUnusedValue(target.getType()); } } }
An offset mapping for a parameter where assignments are fully ignored and that is assigned a boxed version of the instrumented method's return value or null if the return type is not primitive or void.
/** * An offset mapping for a parameter where assignments are fully ignored and that is assigned a boxed version of the instrumented * method's return value or {@code null} if the return type is not primitive or {@code void}. */
enum ForStubValue implements OffsetMapping, Factory<StubValue> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { return new Target.ForDefaultValue.ReadOnly(instrumentedMethod.getReturnType(), assigner.assign(instrumentedMethod.getReturnType(), TypeDescription.Generic.OBJECT, Assigner.Typing.DYNAMIC)); }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<StubValue> getAnnotationType() { return StubValue.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<StubValue> annotation, AdviceType adviceType) { if (!target.getType().represents(Object.class)) { throw new IllegalStateException("Cannot use StubValue on non-Object parameter type " + target); } else { return this; } } }
An offset mapping that provides access to the value that is returned by the enter advice.
/** * An offset mapping that provides access to the value that is returned by the enter advice. */
@HashCodeAndEqualsPlugin.Enhance class ForEnterValue implements OffsetMapping {
The represented target type.
/** * The represented target type. */
private final TypeDescription.Generic target;
The enter type.
/** * The enter type. */
private final TypeDescription.Generic enterType;
true if the annotated value is read-only.
/** * {@code true} if the annotated value is read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates a new offset mapping for the enter type.
Params:
  • target – The represented target type.
  • enterType – The enter type.
  • enter – The represented annotation.
/** * Creates a new offset mapping for the enter type. * * @param target The represented target type. * @param enterType The enter type. * @param enter The represented annotation. */
protected ForEnterValue(TypeDescription.Generic target, TypeDescription.Generic enterType, Enter enter) { this(target, enterType, enter.readOnly(), enter.typing()); }
Creates a new offset mapping for the enter type.
Params:
  • target – The represented target type.
  • enterType – The enter type.
  • readOnly – true if the annotated value is read-only.
  • typing – The typing to apply.
/** * Creates a new offset mapping for the enter type. * * @param target The represented target type. * @param enterType The enter type. * @param readOnly {@code true} if the annotated value is read-only. * @param typing The typing to apply. */
public ForEnterValue(TypeDescription.Generic target, TypeDescription.Generic enterType, boolean readOnly, Assigner.Typing typing) { this.target = target; this.enterType = enterType; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation readAssignment = assigner.assign(enterType, target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + enterType + " to " + target); } else if (readOnly) { return new Target.ForVariable.ReadOnly(target, argumentHandler.enter(), readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, enterType, typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to " + enterType); } return new Target.ForVariable.ReadWrite(target, argumentHandler.enter(), readAssignment, writeAssignment); } }
A factory for creating a ForEnterValue offset mapping.
/** * A factory for creating a {@link ForEnterValue} offset mapping. */
@HashCodeAndEqualsPlugin.Enhance protected static class Factory implements OffsetMapping.Factory<Enter> {
The supplied type of the enter advice.
/** * The supplied type of the enter advice. */
private final TypeDefinition enterType;
Creates a new factory for creating a ForEnterValue offset mapping.
Params:
  • enterType – The supplied type of the enter method.
/** * Creates a new factory for creating a {@link ForEnterValue} offset mapping. * * @param enterType The supplied type of the enter method. */
protected Factory(TypeDefinition enterType) { this.enterType = enterType; }
Creates a new factory for creating a ForEnterValue offset mapping.
Params:
  • typeDefinition – The supplied type of the enter advice.
Returns:An appropriate offset mapping factory.
/** * Creates a new factory for creating a {@link ForEnterValue} offset mapping. * * @param typeDefinition The supplied type of the enter advice. * @return An appropriate offset mapping factory. */
protected static OffsetMapping.Factory<Enter> of(TypeDefinition typeDefinition) { return typeDefinition.represents(void.class) ? new Illegal<Enter>(Enter.class) : new Factory(typeDefinition); }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Enter> getAnnotationType() { return Enter.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Enter> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot use writable " + target + " on read-only parameter"); } else { return new ForEnterValue(target.getType(), enterType.asGenericType(), annotation.loadSilent()); } } } }
An offset mapping that provides access to the value that is returned by the exit advice.
/** * An offset mapping that provides access to the value that is returned by the exit advice. */
@HashCodeAndEqualsPlugin.Enhance class ForExitValue implements OffsetMapping {
The represented target type.
/** * The represented target type. */
private final TypeDescription.Generic target;
The exit type.
/** * The exit type. */
private final TypeDescription.Generic exitType;
true if the annotated value is read-only.
/** * {@code true} if the annotated value is read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates a new offset mapping for the exit type.
Params:
  • target – The represented target type.
  • exitType – The exit type.
  • exit – The represented annotation.
/** * Creates a new offset mapping for the exit type. * * @param target The represented target type. * @param exitType The exit type. * @param exit The represented annotation. */
protected ForExitValue(TypeDescription.Generic target, TypeDescription.Generic exitType, Exit exit) { this(target, exitType, exit.readOnly(), exit.typing()); }
Creates a new offset mapping for the enter type.
Params:
  • target – The represented target type.
  • exitType – The exit type.
  • readOnly – true if the annotated value is read-only.
  • typing – The typing to apply.
/** * Creates a new offset mapping for the enter type. * * @param target The represented target type. * @param exitType The exit type. * @param readOnly {@code true} if the annotated value is read-only. * @param typing The typing to apply. */
public ForExitValue(TypeDescription.Generic target, TypeDescription.Generic exitType, boolean readOnly, Assigner.Typing typing) { this.target = target; this.exitType = exitType; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation readAssignment = assigner.assign(exitType, target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + exitType + " to " + target); } else if (readOnly) { return new Target.ForVariable.ReadOnly(target, argumentHandler.exit(), readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, exitType, typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to " + exitType); } return new Target.ForVariable.ReadWrite(target, argumentHandler.exit(), readAssignment, writeAssignment); } }
A factory for creating a ForExitValue offset mapping.
/** * A factory for creating a {@link ForExitValue} offset mapping. */
@HashCodeAndEqualsPlugin.Enhance protected static class Factory implements OffsetMapping.Factory<Exit> {
The supplied type of the exit advice.
/** * The supplied type of the exit advice. */
private final TypeDefinition exitType;
Creates a new factory for creating a ForExitValue offset mapping.
Params:
  • exitType – The supplied type of the exit advice.
/** * Creates a new factory for creating a {@link ForExitValue} offset mapping. * * @param exitType The supplied type of the exit advice. */
protected Factory(TypeDefinition exitType) { this.exitType = exitType; }
Creates a new factory for creating a ForExitValue offset mapping.
Params:
  • typeDefinition – The supplied type of the enter method.
Returns:An appropriate offset mapping factory.
/** * Creates a new factory for creating a {@link ForExitValue} offset mapping. * * @param typeDefinition The supplied type of the enter method. * @return An appropriate offset mapping factory. */
protected static OffsetMapping.Factory<Exit> of(TypeDefinition typeDefinition) { return typeDefinition.represents(void.class) ? new Illegal<Exit>(Exit.class) : new Factory(typeDefinition); }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Exit> getAnnotationType() { return Exit.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Exit> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot use writable " + target + " on read-only parameter"); } else { return new ForExitValue(target.getType(), exitType.asGenericType(), annotation.loadSilent()); } } } }
An offset mapping that provides access to a named local variable that is declared by the advice methods via Local.
/** * An offset mapping that provides access to a named local variable that is declared by the advice methods via {@link Local}. */
@HashCodeAndEqualsPlugin.Enhance class ForLocalValue implements OffsetMapping {
The variable's target type.
/** * The variable's target type. */
private final TypeDescription.Generic target;
The local variable's type.
/** * The local variable's type. */
private final TypeDescription.Generic localType;
The local variable's name.
/** * The local variable's name. */
private final String name;
Creates an offset mapping for a local variable that is declared by the advice methods via Local.
Params:
  • target – The variable's target type.
  • localType – The local variable's type.
  • name – The local variable's name.
/** * Creates an offset mapping for a local variable that is declared by the advice methods via {@link Local}. * * @param target The variable's target type. * @param localType The local variable's type. * @param name The local variable's name. */
public ForLocalValue(TypeDescription.Generic target, TypeDescription.Generic localType, String name) { this.target = target; this.localType = localType; this.name = name; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation readAssignment = assigner.assign(localType, target, Assigner.Typing.STATIC); StackManipulation writeAssignment = assigner.assign(target, localType, Assigner.Typing.STATIC); if (!readAssignment.isValid() || !writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + localType + " to " + target); } else { return new Target.ForVariable.ReadWrite(target, argumentHandler.named(name), readAssignment, writeAssignment); } }
A factory for an offset mapping for a local variable that is declared by the advice methods via Local.
/** * A factory for an offset mapping for a local variable that is declared by the advice methods via {@link Local}. */
@HashCodeAndEqualsPlugin.Enhance protected static class Factory implements OffsetMapping.Factory<Local> {
The mapping of type names to their type that are available.
/** * The mapping of type names to their type that are available. */
private final Map<String, TypeDefinition> namedTypes;
Creates a factory for a Local variable mapping.
Params:
  • namedTypes – The mapping of type names to their type that are available.
/** * Creates a factory for a {@link Local} variable mapping. * * @param namedTypes The mapping of type names to their type that are available. */
protected Factory(Map<String, TypeDefinition> namedTypes) { this.namedTypes = namedTypes; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Local> getAnnotationType() { return Local.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Local> annotation, AdviceType adviceType) { String name = annotation.loadSilent().value(); TypeDefinition namedType = namedTypes.get(name); if (namedType == null) { throw new IllegalStateException("Named local variable is unknown: " + name); } return new ForLocalValue(target.getType(), namedType.asGenericType(), name); } } }
An offset mapping that provides access to the value that is returned by the instrumented method.
/** * An offset mapping that provides access to the value that is returned by the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance class ForReturnValue implements OffsetMapping {
The type that the advice method expects for the return value.
/** * The type that the advice method expects for the return value. */
private final TypeDescription.Generic target;
Determines if the parameter is to be treated as read-only.
/** * Determines if the parameter is to be treated as read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates a new offset mapping for a return value.
Params:
  • target – The type that the advice method expects for the return value.
  • annotation – The annotation being bound.
/** * Creates a new offset mapping for a return value. * * @param target The type that the advice method expects for the return value. * @param annotation The annotation being bound. */
protected ForReturnValue(TypeDescription.Generic target, Return annotation) { this(target, annotation.readOnly(), annotation.typing()); }
Creates a new offset mapping for a return value.
Params:
  • target – The type that the advice method expects for the return value.
  • readOnly – Determines if the parameter is to be treated as read-only.
  • typing – The typing to apply.
/** * Creates a new offset mapping for a return value. * * @param target The type that the advice method expects for the return value. * @param readOnly Determines if the parameter is to be treated as read-only. * @param typing The typing to apply. */
public ForReturnValue(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing) { this.target = target; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation readAssignment = assigner.assign(instrumentedMethod.getReturnType(), target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + instrumentedMethod.getReturnType() + " to " + target); } else if (readOnly) { return instrumentedMethod.getReturnType().represents(void.class) ? new Target.ForDefaultValue.ReadOnly(target) : new Target.ForVariable.ReadOnly(instrumentedMethod.getReturnType(), argumentHandler.returned(), readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, instrumentedMethod.getReturnType(), typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to " + instrumentedMethod.getReturnType()); } return instrumentedMethod.getReturnType().represents(void.class) ? new Target.ForDefaultValue.ReadWrite(target) : new Target.ForVariable.ReadWrite(instrumentedMethod.getReturnType(), argumentHandler.returned(), readAssignment, writeAssignment); } }
A factory for creating a ForReturnValue offset mapping.
/** * A factory for creating a {@link ForReturnValue} offset mapping. */
protected enum Factory implements OffsetMapping.Factory<Return> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Return> getAnnotationType() { return Return.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Return> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot write return value for " + target + " in read-only context"); } else { return new ForReturnValue(target.getType(), annotation.loadSilent()); } } } }
An offset mapping for accessing a Throwable of the instrumented method.
/** * An offset mapping for accessing a {@link Throwable} of the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance class ForThrowable implements OffsetMapping {
The type of parameter that is being accessed.
/** * The type of parameter that is being accessed. */
private final TypeDescription.Generic target;
true if the parameter is read-only.
/** * {@code true} if the parameter is read-only. */
private final boolean readOnly;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates a new offset mapping for access of the exception that is thrown by the instrumented method..
Params:
  • target – The type of parameter that is being accessed.
  • annotation – The annotation to bind.
/** * Creates a new offset mapping for access of the exception that is thrown by the instrumented method.. * * @param target The type of parameter that is being accessed. * @param annotation The annotation to bind. */
protected ForThrowable(TypeDescription.Generic target, Thrown annotation) { this(target, annotation.readOnly(), annotation.typing()); }
Creates a new offset mapping for access of the exception that is thrown by the instrumented method..
Params:
  • target – The type of parameter that is being accessed.
  • readOnly – true if the parameter is read-only.
  • typing – The typing to apply.
/** * Creates a new offset mapping for access of the exception that is thrown by the instrumented method.. * * @param target The type of parameter that is being accessed. * @param readOnly {@code true} if the parameter is read-only. * @param typing The typing to apply. */
public ForThrowable(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing) { this.target = target; this.readOnly = readOnly; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation readAssignment = assigner.assign(TypeDescription.THROWABLE.asGenericType(), target, typing); if (!readAssignment.isValid()) { throw new IllegalStateException("Cannot assign Throwable to " + target); } else if (readOnly) { return new Target.ForVariable.ReadOnly(TypeDescription.THROWABLE, argumentHandler.thrown(), readAssignment); } else { StackManipulation writeAssignment = assigner.assign(target, TypeDescription.THROWABLE.asGenericType(), typing); if (!writeAssignment.isValid()) { throw new IllegalStateException("Cannot assign " + target + " to Throwable"); } return new Target.ForVariable.ReadWrite(TypeDescription.THROWABLE, argumentHandler.thrown(), readAssignment, writeAssignment); } }
A factory for accessing an exception that was thrown by the instrumented method.
/** * A factory for accessing an exception that was thrown by the instrumented method. */
protected enum Factory implements OffsetMapping.Factory<Thrown> {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
Resolves an appropriate offset mapping factory for the Thrown parameter annotation.
Params:
  • adviceMethod – The exit advice method, annotated with OnMethodExit.
Returns:An appropriate offset mapping factory.
/** * Resolves an appropriate offset mapping factory for the {@link Thrown} parameter annotation. * * @param adviceMethod The exit advice method, annotated with {@link OnMethodExit}. * @return An appropriate offset mapping factory. */
@SuppressWarnings("unchecked") // In absence of @SafeVarargs protected static OffsetMapping.Factory<?> of(MethodDescription.InDefinedShape adviceMethod) { return adviceMethod.getDeclaredAnnotations() .ofType(OnMethodExit.class) .getValue(ON_THROWABLE) .resolve(TypeDescription.class) .represents(NoExceptionHandler.class) ? new OffsetMapping.Factory.Illegal<Thrown>(Thrown.class) : Factory.INSTANCE; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<Thrown> getAnnotationType() { return Thrown.class; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<Thrown> annotation, AdviceType adviceType) { if (adviceType.isDelegation() && !annotation.loadSilent().readOnly()) { throw new IllegalStateException("Cannot use writable " + target + " on read-only parameter"); } else { return new ForThrowable(target.getType(), annotation.loadSilent()); } } } }
An offset mapping for binding a stack manipulation.
/** * An offset mapping for binding a stack manipulation. */
@HashCodeAndEqualsPlugin.Enhance class ForStackManipulation implements OffsetMapping {
The stack manipulation that loads the bound value.
/** * The stack manipulation that loads the bound value. */
private final StackManipulation stackManipulation;
The type of the loaded value.
/** * The type of the loaded value. */
private final TypeDescription.Generic typeDescription;
The target type of the annotated parameter.
/** * The target type of the annotated parameter. */
private final TypeDescription.Generic targetType;
The typing to apply.
/** * The typing to apply. */
private final Assigner.Typing typing;
Creates an offset mapping that binds a stack manipulation.
Params:
  • stackManipulation – The stack manipulation that loads the bound value.
  • typeDescription – The type of the loaded value.
  • targetType – The target type of the annotated parameter.
  • typing – The typing to apply.
/** * Creates an offset mapping that binds a stack manipulation. * * @param stackManipulation The stack manipulation that loads the bound value. * @param typeDescription The type of the loaded value. * @param targetType The target type of the annotated parameter. * @param typing The typing to apply. */
public ForStackManipulation(StackManipulation stackManipulation, TypeDescription.Generic typeDescription, TypeDescription.Generic targetType, Assigner.Typing typing) { this.stackManipulation = stackManipulation; this.typeDescription = typeDescription; this.targetType = targetType; this.typing = typing; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation assignment = assigner.assign(typeDescription, targetType, typing); if (!assignment.isValid()) { throw new IllegalStateException("Cannot assign " + typeDescription + " to " + targetType); } return new Target.ForStackManipulation(new StackManipulation.Compound(stackManipulation, assignment)); }
A factory that binds a stack manipulation.
Type parameters:
  • <T> – The annotation type this factory binds.
/** * A factory that binds a stack manipulation. * * @param <T> The annotation type this factory binds. */
@HashCodeAndEqualsPlugin.Enhance public static class Factory<T extends Annotation> implements OffsetMapping.Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
The stack manipulation that loads the bound value.
/** * The stack manipulation that loads the bound value. */
private final StackManipulation stackManipulation;
The type of the loaded value.
/** * The type of the loaded value. */
private final TypeDescription.Generic typeDescription;
Creates a new factory for binding a type description.
Params:
  • annotationType – The annotation type.
  • typeDescription – The type to bind.
/** * Creates a new factory for binding a type description. * * @param annotationType The annotation type. * @param typeDescription The type to bind. */
public Factory(Class<T> annotationType, TypeDescription typeDescription) { this(annotationType, ClassConstant.of(typeDescription), TypeDescription.CLASS.asGenericType()); }
Creates a new factory for binding an enumeration.
Params:
  • annotationType – The annotation type.
  • enumerationDescription – The enumeration to bind.
/** * Creates a new factory for binding an enumeration. * * @param annotationType The annotation type. * @param enumerationDescription The enumeration to bind. */
public Factory(Class<T> annotationType, EnumerationDescription enumerationDescription) { this(annotationType, FieldAccess.forEnumeration(enumerationDescription), enumerationDescription.getEnumerationType().asGenericType()); }
Creates a new factory for binding a stack manipulation.
Params:
  • annotationType – The annotation type.
  • stackManipulation – The stack manipulation that loads the bound value.
  • typeDescription – The type of the loaded value.
/** * Creates a new factory for binding a stack manipulation. * * @param annotationType The annotation type. * @param stackManipulation The stack manipulation that loads the bound value. * @param typeDescription The type of the loaded value. */
public Factory(Class<T> annotationType, StackManipulation stackManipulation, TypeDescription.Generic typeDescription) { this.annotationType = annotationType; this.stackManipulation = stackManipulation; this.typeDescription = typeDescription; }
Creates a binding for a fixed String or primitive value.
Params:
  • annotationType – The annotation type.
  • value – The primitive (wrapper) value or String value to bind.
Type parameters:
  • <S> – The annotation type.
Returns:A factory for creating an offset mapping that binds the supplied value.
/** * Creates a binding for a fixed {@link String} or primitive value. * * @param annotationType The annotation type. * @param value The primitive (wrapper) value or {@link String} value to bind. * @param <S> The annotation type. * @return A factory for creating an offset mapping that binds the supplied value. */
public static <S extends Annotation> OffsetMapping.Factory<S> of(Class<S> annotationType, Object value) { StackManipulation stackManipulation; TypeDescription typeDescription; if (value == null) { return new OfDefaultValue<S>(annotationType); } else if (value instanceof Boolean) { stackManipulation = IntegerConstant.forValue((Boolean) value); typeDescription = TypeDescription.ForLoadedType.of(boolean.class); } else if (value instanceof Byte) { stackManipulation = IntegerConstant.forValue((Byte) value); typeDescription = TypeDescription.ForLoadedType.of(byte.class); } else if (value instanceof Short) { stackManipulation = IntegerConstant.forValue((Short) value); typeDescription = TypeDescription.ForLoadedType.of(short.class); } else if (value instanceof Character) { stackManipulation = IntegerConstant.forValue((Character) value); typeDescription = TypeDescription.ForLoadedType.of(char.class); } else if (value instanceof Integer) { stackManipulation = IntegerConstant.forValue((Integer) value); typeDescription = TypeDescription.ForLoadedType.of(int.class); } else if (value instanceof Long) { stackManipulation = LongConstant.forValue((Long) value); typeDescription = TypeDescription.ForLoadedType.of(long.class); } else if (value instanceof Float) { stackManipulation = FloatConstant.forValue((Float) value); typeDescription = TypeDescription.ForLoadedType.of(float.class); } else if (value instanceof Double) { stackManipulation = DoubleConstant.forValue((Double) value); typeDescription = TypeDescription.ForLoadedType.of(double.class); } else if (value instanceof String) { stackManipulation = new TextConstant((String) value); typeDescription = TypeDescription.STRING; } else { throw new IllegalStateException("Not a constant value: " + value); } return new Factory<S>(annotationType, stackManipulation, typeDescription.asGenericType()); }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { return new ForStackManipulation(stackManipulation, typeDescription, target.getType(), Assigner.Typing.STATIC); } }
A factory for binding the annotated parameter's default value.
Type parameters:
  • <T> – The annotation type this factory binds.
/** * A factory for binding the annotated parameter's default value. * * @param <T> The annotation type this factory binds. */
@HashCodeAndEqualsPlugin.Enhance public static class OfDefaultValue<T extends Annotation> implements OffsetMapping.Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
Creates a factory for an offset mapping tat binds the parameter's default value.
Params:
  • annotationType – The annotation type.
/** * Creates a factory for an offset mapping tat binds the parameter's default value. * * @param annotationType The annotation type. */
public OfDefaultValue(Class<T> annotationType) { this.annotationType = annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { return new ForStackManipulation(DefaultValue.of(target.getType()), target.getType(), target.getType(), Assigner.Typing.STATIC); } }
A factory for binding an annotation's property.
Type parameters:
  • <T> – The annotation type this factory binds.
/** * A factory for binding an annotation's property. * * @param <T> The annotation type this factory binds. */
@HashCodeAndEqualsPlugin.Enhance public static class OfAnnotationProperty<T extends Annotation> implements OffsetMapping.Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
The annotation property.
/** * The annotation property. */
private final MethodDescription.InDefinedShape property;
Creates a factory for binding an annotation property.
Params:
  • annotationType – The annotation type.
  • property – The annotation property.
/** * Creates a factory for binding an annotation property. * * @param annotationType The annotation type. * @param property The annotation property. */
protected OfAnnotationProperty(Class<T> annotationType, MethodDescription.InDefinedShape property) { this.annotationType = annotationType; this.property = property; }
Creates a factory for an offset mapping that binds an annotation property.
Params:
  • annotationType – The annotation type to bind.
  • property – The property to bind.
Type parameters:
  • <S> – The annotation type.
Returns:A factory for binding a property of the annotation type.
/** * Creates a factory for an offset mapping that binds an annotation property. * * @param annotationType The annotation type to bind. * @param property The property to bind. * @param <S> The annotation type. * @return A factory for binding a property of the annotation type. */
public static <S extends Annotation> OffsetMapping.Factory<S> of(Class<S> annotationType, String property) { if (!annotationType.isAnnotation()) { throw new IllegalArgumentException("Not an annotation type: " + annotationType); } try { return new OfAnnotationProperty<S>(annotationType, new MethodDescription.ForLoadedMethod(annotationType.getMethod(property))); } catch (NoSuchMethodException exception) { throw new IllegalArgumentException("Cannot find a property " + property + " on " + annotationType, exception); } }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { Object value = annotation.getValue(property).resolve(); OffsetMapping.Factory<T> factory; if (value instanceof TypeDescription) { factory = new Factory<T>(annotationType, (TypeDescription) value); } else if (value instanceof EnumerationDescription) { factory = new Factory<T>(annotationType, (EnumerationDescription) value); } else if (value instanceof AnnotationDescription) { throw new IllegalStateException("Cannot bind annotation as fixed value for " + property); } else { factory = Factory.of(annotationType, value); } return factory.make(target, annotation, adviceType); } } }
An offset mapping that loads a serialized value.
/** * An offset mapping that loads a serialized value. */
@HashCodeAndEqualsPlugin.Enhance class ForSerializedValue implements OffsetMapping {
The type of the serialized value as it is used.
/** * The type of the serialized value as it is used. */
private final TypeDescription.Generic target;
The class type of the serialized value.
/** * The class type of the serialized value. */
private final TypeDescription typeDescription;
The stack manipulation deserializing the represented value.
/** * The stack manipulation deserializing the represented value. */
private final StackManipulation deserialization;
Creates a new offset mapping for a serialized value.
Params:
  • target – The type of the serialized value as it is used.
  • typeDescription – The class type of the serialized value.
  • deserialization – The stack manipulation deserializing the represented value.
/** * Creates a new offset mapping for a serialized value. * * @param target The type of the serialized value as it is used. * @param typeDescription The class type of the serialized value. * @param deserialization The stack manipulation deserializing the represented value. */
public ForSerializedValue(TypeDescription.Generic target, TypeDescription typeDescription, StackManipulation deserialization) { this.target = target; this.typeDescription = typeDescription; this.deserialization = deserialization; }
{@inheritDoc}
/** * {@inheritDoc} */
public Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, ArgumentHandler argumentHandler, Sort sort) { StackManipulation assignment = assigner.assign(typeDescription.asGenericType(), target, Assigner.Typing.DYNAMIC); if (!assignment.isValid()) { throw new IllegalStateException("Cannot assign " + typeDescription + " to " + target); } return new Target.ForStackManipulation(new StackManipulation.Compound(deserialization, assignment)); }
A factory for loading a deserialized value.
Type parameters:
  • <T> – The annotation type this factory binds.
/** * A factory for loading a deserialized value. * * @param <T> The annotation type this factory binds. */
@HashCodeAndEqualsPlugin.Enhance public static class Factory<T extends Annotation> implements OffsetMapping.Factory<T> {
The annotation type.
/** * The annotation type. */
private final Class<T> annotationType;
The type description as which to treat the deserialized value.
/** * The type description as which to treat the deserialized value. */
private final TypeDescription typeDescription;
The stack manipulation that loads the represented value.
/** * The stack manipulation that loads the represented value. */
private final StackManipulation deserialization;
Creates a factory for loading a deserialized value.
Params:
  • annotationType – The annotation type.
  • typeDescription – The type description as which to treat the deserialized value.
  • deserialization – The stack manipulation that loads the represented value.
/** * Creates a factory for loading a deserialized value. * * @param annotationType The annotation type. * @param typeDescription The type description as which to treat the deserialized value. * @param deserialization The stack manipulation that loads the represented value. */
protected Factory(Class<T> annotationType, TypeDescription typeDescription, StackManipulation deserialization) { this.annotationType = annotationType; this.typeDescription = typeDescription; this.deserialization = deserialization; }
Creates a factory for an offset mapping that loads the provided value.
Params:
  • annotationType – The annotation type to be bound.
  • target – The instance representing the value to be deserialized.
  • targetType – The target type as which to use the target value.
Type parameters:
  • <S> – The annotation type the created factory binds.
Returns:An appropriate offset mapping factory.
/** * Creates a factory for an offset mapping that loads the provided value. * * @param annotationType The annotation type to be bound. * @param target The instance representing the value to be deserialized. * @param targetType The target type as which to use the target value. * @param <S> The annotation type the created factory binds. * @return An appropriate offset mapping factory. */
public static <S extends Annotation> OffsetMapping.Factory<S> of(Class<S> annotationType, Serializable target, Class<?> targetType) { if (!targetType.isInstance(target)) { throw new IllegalArgumentException(target + " is no instance of " + targetType); } return new Factory<S>(annotationType, TypeDescription.ForLoadedType.of(targetType), SerializedConstant.of(target)); }
{@inheritDoc}
/** * {@inheritDoc} */
public Class<T> getAnnotationType() { return annotationType; }
{@inheritDoc}
/** * {@inheritDoc} */
public OffsetMapping make(ParameterDescription.InDefinedShape target, AnnotationDescription.Loadable<T> annotation, AdviceType adviceType) { return new ForSerializedValue(target.getType(), typeDescription, deserialization); } } } }
An argument handler is responsible for resolving offsets of the local variable array in the context of the applied instrumentation.
/** * An argument handler is responsible for resolving offsets of the local variable array in the context of the applied instrumentation. */
public interface ArgumentHandler {
The offset of the this reference.
/** * The offset of the {@code this} reference. */
int THIS_REFERENCE = 0;
Resolves an offset relative to an offset of the instrumented method.
Params:
  • offset – The offset to resolve.
Returns:The resolved offset.
/** * Resolves an offset relative to an offset of the instrumented method. * * @param offset The offset to resolve. * @return The resolved offset. */
int argument(int offset);
Resolves the offset of the exit value of the exit advice.
Returns:The offset of the exit value.
/** * Resolves the offset of the exit value of the exit advice. * * @return The offset of the exit value. */
int exit();
Resolves the offset of the enter value of the enter advice.
Returns:The offset of the enter value.
/** * Resolves the offset of the enter value of the enter advice. * * @return The offset of the enter value. */
int enter();
Returns the offset of the local variable with the given name.
Params:
  • name – The name of the local variable being accessed.
Returns:The named variable's offset.
/** * Returns the offset of the local variable with the given name. * * @param name The name of the local variable being accessed. * @return The named variable's offset. */
int named(String name);
Resolves the offset of the returned value of the instrumented method.
Returns:The offset of the returned value of the instrumented method.
/** * Resolves the offset of the returned value of the instrumented method. * * @return The offset of the returned value of the instrumented method. */
int returned();
Resolves the offset of the thrown exception of the instrumented method.
Returns:The offset of the thrown exception of the instrumented method.
/** * Resolves the offset of the thrown exception of the instrumented method. * * @return The offset of the thrown exception of the instrumented method. */
int thrown();
An argument handler that is used for resolving the instrumented method.
/** * An argument handler that is used for resolving the instrumented method. */
interface ForInstrumentedMethod extends ArgumentHandler {
Resolves a local variable index.
Params:
  • index – The index to resolve.
Returns:The resolved local variable index.
/** * Resolves a local variable index. * * @param index The index to resolve. * @return The resolved local variable index. */
int variable(int index);
Prepares this argument handler for future offset access.
Params:
  • methodVisitor – The method visitor to which to write any potential byte code.
Returns:The minimum stack size that is required to apply this manipulation.
/** * Prepares this argument handler for future offset access. * * @param methodVisitor The method visitor to which to write any potential byte code. * @return The minimum stack size that is required to apply this manipulation. */
int prepare(MethodVisitor methodVisitor);
Binds an advice method as enter advice for this handler.
Params:
  • adviceMethod – The resolved enter advice handler.
Returns:The resolved argument handler for enter advice.
/** * Binds an advice method as enter advice for this handler. * * @param adviceMethod The resolved enter advice handler. * @return The resolved argument handler for enter advice. */
ForAdvice bindEnter(MethodDescription adviceMethod);
Binds an advice method as exit advice for this handler.
Params:
  • adviceMethod – The resolved exit advice handler.
  • skipThrowable – true if no throwable is stored.
Returns:The resolved argument handler for enter advice.
/** * Binds an advice method as exit advice for this handler. * * @param adviceMethod The resolved exit advice handler. * @param skipThrowable {@code true} if no throwable is stored. * @return The resolved argument handler for enter advice. */
ForAdvice bindExit(MethodDescription adviceMethod, boolean skipThrowable);
Returns true if the original arguments are copied before invoking the instrumented method.
Returns:true if the original arguments are copied before invoking the instrumented method.
/** * Returns {@code true} if the original arguments are copied before invoking the instrumented method. * * @return {@code true} if the original arguments are copied before invoking the instrumented method. */
boolean isCopyingArguments();
Returns a list of the named types in their declared order.
Returns:A list of the named types in their declared order.
/** * Returns a list of the named types in their declared order. * * @return A list of the named types in their declared order. */
List<TypeDescription> getNamedTypes();
A default implementation of an argument handler for an instrumented method.
/** * A default implementation of an argument handler for an instrumented method. */
abstract class Default implements ForInstrumentedMethod {
The instrumented method.
/** * The instrumented method. */
protected final MethodDescription instrumentedMethod;
The exit type or void if no exit type is defined.
/** * The exit type or {@code void} if no exit type is defined. */
protected final TypeDefinition exitType;
A mapping of all available local variables by their name to their type.
/** * A mapping of all available local variables by their name to their type. */
protected final TreeMap<String, TypeDefinition> namedTypes;
The enter type or void if no enter type is defined.
/** * The enter type or {@code void} if no enter type is defined. */
protected final TypeDefinition enterType;
Creates a new default argument handler for an instrumented method.
Params:
  • instrumentedMethod – The instrumented method.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • enterType – The enter type or void if no enter type is defined.
/** * Creates a new default argument handler for an instrumented method. * * @param instrumentedMethod The instrumented method. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. * @param enterType The enter type or {@code void} if no enter type is defined. */
protected Default(MethodDescription instrumentedMethod, TypeDefinition exitType, TreeMap<String, TypeDefinition> namedTypes, TypeDefinition enterType) { this.instrumentedMethod = instrumentedMethod; this.namedTypes = namedTypes; this.exitType = exitType; this.enterType = enterType; }
{@inheritDoc}
/** * {@inheritDoc} */
public int exit() { return instrumentedMethod.getStackSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public int named(String name) { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.headMap(name).values()); }
{@inheritDoc}
/** * {@inheritDoc} */
public int enter() { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()); }
{@inheritDoc}
/** * {@inheritDoc} */
public int returned() { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public int thrown() { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize() + instrumentedMethod.getReturnType().getStackSize().getSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public ForAdvice bindEnter(MethodDescription adviceMethod) { return new ForAdvice.Default.ForMethodEnter(instrumentedMethod, adviceMethod, exitType, namedTypes); }
{@inheritDoc}
/** * {@inheritDoc} */
public ForAdvice bindExit(MethodDescription adviceMethod, boolean skipThrowable) { return new ForAdvice.Default.ForMethodExit(instrumentedMethod, adviceMethod, exitType, namedTypes, enterType, skipThrowable ? StackSize.ZERO : StackSize.SINGLE); }
{@inheritDoc}
/** * {@inheritDoc} */
public List<TypeDescription> getNamedTypes() { List<TypeDescription> namedTypes = new ArrayList<TypeDescription>(this.namedTypes.size()); for (TypeDefinition typeDefinition : this.namedTypes.values()) { namedTypes.add(typeDefinition.asErasure()); } return namedTypes; }
A simple argument handler for an instrumented method.
/** * A simple argument handler for an instrumented method. */
@HashCodeAndEqualsPlugin.Enhance protected static class Simple extends Default {
Creates a new simple argument handler for an instrumented method.
Params:
  • instrumentedMethod – The instrumented method.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • enterType – The enter type or void if no enter type is defined.
/** * Creates a new simple argument handler for an instrumented method. * * @param instrumentedMethod The instrumented method. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. * @param enterType The enter type or {@code void} if no enter type is defined. */
protected Simple(MethodDescription instrumentedMethod, TypeDefinition exitType, TreeMap<String, TypeDefinition> namedTypes, TypeDefinition enterType) { super(instrumentedMethod, exitType, namedTypes, enterType); }
{@inheritDoc}
/** * {@inheritDoc} */
public int argument(int offset) { return offset < instrumentedMethod.getStackSize() ? offset : offset + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public int variable(int index) { return index < (instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size() ? index : index + (exitType.represents(void.class) ? 0 : 1) + StackSize.of(namedTypes.values()) + (enterType.represents(void.class) ? 0 : 1); }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isCopyingArguments() { return false; }
{@inheritDoc}
/** * {@inheritDoc} */
public int prepare(MethodVisitor methodVisitor) { return 0; } }
An argument handler for an instrumented method that copies all arguments before executing the instrumented method.
/** * An argument handler for an instrumented method that copies all arguments before executing the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance protected static class Copying extends Default {
Creates a new copying argument handler for an instrumented method.
Params:
  • instrumentedMethod – The instrumented method.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • enterType – The enter type or void if no enter type is defined.
/** * Creates a new copying argument handler for an instrumented method. * * @param instrumentedMethod The instrumented method. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. * @param enterType The enter type or {@code void} if no enter type is defined. */
protected Copying(MethodDescription instrumentedMethod, TypeDefinition exitType, TreeMap<String, TypeDefinition> namedTypes, TypeDefinition enterType) { super(instrumentedMethod, exitType, namedTypes, enterType); }
{@inheritDoc}
/** * {@inheritDoc} */
public int argument(int offset) { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize() + offset; }
{@inheritDoc}
/** * {@inheritDoc} */
public int variable(int index) { return (instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size() + (exitType.represents(void.class) ? 0 : 1) + namedTypes.size() + (enterType.represents(void.class) ? 0 : 1) + index; }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isCopyingArguments() { return true; }
{@inheritDoc}
/** * {@inheritDoc} */
public int prepare(MethodVisitor methodVisitor) { StackSize stackSize; if (!instrumentedMethod.isStatic()) { methodVisitor.visitVarInsn(Opcodes.ALOAD, 0); methodVisitor.visitVarInsn(Opcodes.ASTORE, instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize()); stackSize = StackSize.SINGLE; } else { stackSize = StackSize.ZERO; } for (ParameterDescription parameterDescription : instrumentedMethod.getParameters()) { Type type = Type.getType(parameterDescription.getType().asErasure().getDescriptor()); methodVisitor.visitVarInsn(type.getOpcode(Opcodes.ILOAD), parameterDescription.getOffset()); methodVisitor.visitVarInsn(type.getOpcode(Opcodes.ISTORE), instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize() + parameterDescription.getOffset()); stackSize = stackSize.maximum(parameterDescription.getType().getStackSize()); } return stackSize.getSize(); } } } }
An argument handler that is used for resolving an advice method.
/** * An argument handler that is used for resolving an advice method. */
interface ForAdvice extends ArgumentHandler {
Resolves an offset of the advice method.
Params:
  • offset – The offset to resolve.
Returns:The resolved offset.
/** * Resolves an offset of the advice method. * * @param offset The offset to resolve. * @return The resolved offset. */
int mapped(int offset);
A default implementation for an argument handler for an advice method.
/** * A default implementation for an argument handler for an advice method. */
abstract class Default implements ForAdvice {
The instrumented method.
/** * The instrumented method. */
protected final MethodDescription instrumentedMethod;
The advice method.
/** * The advice method. */
protected final MethodDescription adviceMethod;
The enter type or void if no enter type is defined.
/** * The enter type or {@code void} if no enter type is defined. */
protected final TypeDefinition exitType;
A mapping of all available local variables by their name to their type.
/** * A mapping of all available local variables by their name to their type. */
protected final TreeMap<String, TypeDefinition> namedTypes;
Creates a new argument handler for an enter advice.
Params:
  • instrumentedMethod – The instrumented method.
  • adviceMethod – The advice method.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
/** * Creates a new argument handler for an enter advice. * * @param instrumentedMethod The instrumented method. * @param adviceMethod The advice method. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. */
protected Default(MethodDescription instrumentedMethod, MethodDescription adviceMethod, TypeDefinition exitType, TreeMap<String, TypeDefinition> namedTypes) { this.instrumentedMethod = instrumentedMethod; this.adviceMethod = adviceMethod; this.exitType = exitType; this.namedTypes = namedTypes; }
{@inheritDoc}
/** * {@inheritDoc} */
public int argument(int offset) { return offset; }
{@inheritDoc}
/** * {@inheritDoc} */
public int exit() { return instrumentedMethod.getStackSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public int named(String name) { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.headMap(name).values()); }
{@inheritDoc}
/** * {@inheritDoc} */
public int enter() { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()); }
An argument handler for an enter advice method.
/** * An argument handler for an enter advice method. */
@HashCodeAndEqualsPlugin.Enhance protected static class ForMethodEnter extends Default {
Creates a new argument handler for an enter advice method.
Params:
  • instrumentedMethod – The instrumented method.
  • adviceMethod – The advice method.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
/** * Creates a new argument handler for an enter advice method. * * @param instrumentedMethod The instrumented method. * @param adviceMethod The advice method. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. */
protected ForMethodEnter(MethodDescription instrumentedMethod, MethodDescription adviceMethod, TypeDefinition exitType, TreeMap<String, TypeDefinition> namedTypes) { super(instrumentedMethod, adviceMethod, exitType, namedTypes); }
{@inheritDoc}
/** * {@inheritDoc} */
public int returned() { throw new IllegalStateException("Cannot resolve the return value offset during enter advice"); }
{@inheritDoc}
/** * {@inheritDoc} */
public int thrown() { throw new IllegalStateException("Cannot resolve the thrown value offset during enter advice"); }
{@inheritDoc}
/** * {@inheritDoc} */
public int mapped(int offset) { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) - adviceMethod.getStackSize() + offset; } }
An argument handler for an exit advice method.
/** * An argument handler for an exit advice method. */
@HashCodeAndEqualsPlugin.Enhance protected static class ForMethodExit extends Default {
The enter type or void if no enter type is defined.
/** * The enter type or {@code void} if no enter type is defined. */
private final TypeDefinition enterType;
The stack size of a possibly stored throwable.
/** * The stack size of a possibly stored throwable. */
private final StackSize throwableSize;
Creates a new argument handler for an exit advice method.
Params:
  • instrumentedMethod – The instrumented method.
  • adviceMethod – The advice method.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • enterType – The enter type or void if no enter type is defined.
  • throwableSize – The stack size of a possibly stored throwable.
/** * Creates a new argument handler for an exit advice method. * * @param instrumentedMethod The instrumented method. * @param adviceMethod The advice method. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. * @param enterType The enter type or {@code void} if no enter type is defined. * @param throwableSize The stack size of a possibly stored throwable. */
protected ForMethodExit(MethodDescription instrumentedMethod, MethodDescription adviceMethod, TypeDefinition exitType, TreeMap<String, TypeDefinition> namedTypes, TypeDefinition enterType, StackSize throwableSize) { super(instrumentedMethod, adviceMethod, exitType, namedTypes); this.enterType = enterType; this.throwableSize = throwableSize; }
{@inheritDoc}
/** * {@inheritDoc} */
public int returned() { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public int thrown() { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize() + instrumentedMethod.getReturnType().getStackSize().getSize(); }
{@inheritDoc}
/** * {@inheritDoc} */
public int mapped(int offset) { return instrumentedMethod.getStackSize() + exitType.getStackSize().getSize() + StackSize.of(namedTypes.values()) + enterType.getStackSize().getSize() + instrumentedMethod.getReturnType().getStackSize().getSize() + throwableSize.getSize() - adviceMethod.getStackSize() + offset; } } } }
A factory for creating an argument handler.
/** * A factory for creating an argument handler. */
enum Factory {
A factory for creating a simple argument handler.
/** * A factory for creating a simple argument handler. */
SIMPLE { @Override protected ForInstrumentedMethod resolve(MethodDescription instrumentedMethod, TypeDefinition enterType, TypeDefinition exitType, Map<String, TypeDefinition> namedTypes) { return new ForInstrumentedMethod.Default.Simple(instrumentedMethod, exitType, new TreeMap<String, TypeDefinition>(namedTypes), enterType); } },
A factory for creating an argument handler that copies all arguments before executing the instrumented method.
/** * A factory for creating an argument handler that copies all arguments before executing the instrumented method. */
COPYING { @Override protected ForInstrumentedMethod resolve(MethodDescription instrumentedMethod, TypeDefinition enterType, TypeDefinition exitType, Map<String, TypeDefinition> namedTypes) { return new ForInstrumentedMethod.Default.Copying(instrumentedMethod, exitType, new TreeMap<String, TypeDefinition>(namedTypes), enterType); } };
Creates an argument handler.
Params:
  • instrumentedMethod – The instrumented method.
  • enterType – The enter type or void if no such type is defined.
  • exitType – The exit type or void if no exit type is defined.
  • namedTypes – A mapping of all available local variables by their name to their type.
Returns:An argument handler for the instrumented method.
/** * Creates an argument handler. * * @param instrumentedMethod The instrumented method. * @param enterType The enter type or {@code void} if no such type is defined. * @param exitType The exit type or {@code void} if no exit type is defined. * @param namedTypes A mapping of all available local variables by their name to their type. * @return An argument handler for the instrumented method. */
protected abstract ForInstrumentedMethod resolve(MethodDescription instrumentedMethod, TypeDefinition enterType, TypeDefinition exitType, Map<String, TypeDefinition> namedTypes); } }
A handler for computing the instrumented method's size.
/** * A handler for computing the instrumented method's size. */
protected interface MethodSizeHandler {
Indicates that a size is not computed but handled directly by ASM.
/** * Indicates that a size is not computed but handled directly by ASM. */
int UNDEFINED_SIZE = Short.MAX_VALUE;
Records a minimum stack size required by the represented advice method.
Params:
  • stackSize – The minimum size required by the represented advice method.
/** * Records a minimum stack size required by the represented advice method. * * @param stackSize The minimum size required by the represented advice method. */
void requireStackSize(int stackSize);
Requires a minimum length of the local variable array.
Params:
  • localVariableLength – The minimal required length of the local variable array.
/** * Requires a minimum length of the local variable array. * * @param localVariableLength The minimal required length of the local variable array. */
void requireLocalVariableLength(int localVariableLength);
A method size handler for the instrumented method.
/** * A method size handler for the instrumented method. */
interface ForInstrumentedMethod extends MethodSizeHandler {
Binds a method size handler for the enter advice.
Params:
  • adviceMethod – The method representing the enter advice.
Returns:A method size handler for the enter advice.
/** * Binds a method size handler for the enter advice. * * @param adviceMethod The method representing the enter advice. * @return A method size handler for the enter advice. */
ForAdvice bindEnter(MethodDescription.InDefinedShape adviceMethod);
Binds the method size handler for the exit advice.
Params:
  • adviceMethod – The method representing the exit advice.
Returns:A method size handler for the exit advice.
/** * Binds the method size handler for the exit advice. * * @param adviceMethod The method representing the exit advice. * @return A method size handler for the exit advice. */
ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod);
Computes a compound stack size for the advice and the translated instrumented method.
Params:
  • stackSize – The required stack size of the instrumented method before translation.
Returns:The stack size required by the instrumented method and its advice methods.
/** * Computes a compound stack size for the advice and the translated instrumented method. * * @param stackSize The required stack size of the instrumented method before translation. * @return The stack size required by the instrumented method and its advice methods. */
int compoundStackSize(int stackSize);
Computes a compound local variable array length for the advice and the translated instrumented method.
Params:
  • localVariableLength – The required local variable array length of the instrumented method before translation.
Returns:The local variable length required by the instrumented method and its advice methods.
/** * Computes a compound local variable array length for the advice and the translated instrumented method. * * @param localVariableLength The required local variable array length of the instrumented method before translation. * @return The local variable length required by the instrumented method and its advice methods. */
int compoundLocalVariableLength(int localVariableLength); }
A method size handler for an advice method.
/** * A method size handler for an advice method. */
interface ForAdvice extends MethodSizeHandler {
Requires additional padding for the operand stack that is required for this advice's execution.
Params:
  • stackSizePadding – The required padding.
/** * Requires additional padding for the operand stack that is required for this advice's execution. * * @param stackSizePadding The required padding. */
void requireStackSizePadding(int stackSizePadding);
Requires additional padding for the local variable array that is required for this advice's execution.
Params:
  • localVariableLengthPadding – The required padding.
/** * Requires additional padding for the local variable array that is required for this advice's execution. * * @param localVariableLengthPadding The required padding. */
void requireLocalVariableLengthPadding(int localVariableLengthPadding);
Records the maximum values for stack size and local variable array which are required by the advice method for its individual execution without translation.
Params:
  • stackSize – The minimum required stack size.
  • localVariableLength – The minimum required length of the local variable array.
/** * Records the maximum values for stack size and local variable array which are required by the advice method * for its individual execution without translation. * * @param stackSize The minimum required stack size. * @param localVariableLength The minimum required length of the local variable array. */
void recordMaxima(int stackSize, int localVariableLength); }
A non-operational method size handler.
/** * A non-operational method size handler. */
enum NoOp implements ForInstrumentedMethod, ForAdvice {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public ForAdvice bindEnter(MethodDescription.InDefinedShape adviceMethod) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public int compoundStackSize(int stackSize) { return UNDEFINED_SIZE; }
{@inheritDoc}
/** * {@inheritDoc} */
public int compoundLocalVariableLength(int localVariableLength) { return UNDEFINED_SIZE; }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireStackSize(int stackSize) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireLocalVariableLength(int localVariableLength) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireStackSizePadding(int stackSizePadding) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireLocalVariableLengthPadding(int localVariableLengthPadding) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void recordMaxima(int stackSize, int localVariableLength) { /* do nothing */ } }
A default implementation for a method size handler.
/** * A default implementation for a method size handler. */
abstract class Default implements MethodSizeHandler.ForInstrumentedMethod {
The instrumented method.
/** * The instrumented method. */
protected final MethodDescription instrumentedMethod;
A list of virtual method arguments that are explicitly added before any code execution.
/** * A list of virtual method arguments that are explicitly added before any code execution. */
protected final List<? extends TypeDescription> initialTypes;
A list of virtual method arguments that are available before the instrumented method is executed.
/** * A list of virtual method arguments that are available before the instrumented method is executed. */
protected final List<? extends TypeDescription> preMethodTypes;
A list of virtual method arguments that are available after the instrumented method has completed.
/** * A list of virtual method arguments that are available after the instrumented method has completed. */
protected final List<? extends TypeDescription> postMethodTypes;
The maximum stack size required by a visited advice method.
/** * The maximum stack size required by a visited advice method. */
protected int stackSize;
The maximum length of the local variable array required by a visited advice method.
/** * The maximum length of the local variable array required by a visited advice method. */
protected int localVariableLength;
Creates a new default meta data handler that recomputes the space requirements of an instrumented method.
Params:
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
/** * Creates a new default meta data handler that recomputes the space requirements of an instrumented method. * * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. */
protected Default(MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes) { this.instrumentedMethod = instrumentedMethod; this.initialTypes = initialTypes; this.preMethodTypes = preMethodTypes; this.postMethodTypes = postMethodTypes; }
Creates a method size handler applicable for the given instrumented method.
Params:
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • copyArguments – true if the original arguments are copied before invoking the instrumented method.
  • writerFlags – The flags supplied to the ASM class writer.
Returns:An appropriate method size handler.
/** * Creates a method size handler applicable for the given instrumented method. * * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param copyArguments {@code true} if the original arguments are copied before invoking the instrumented method. * @param writerFlags The flags supplied to the ASM class writer. * @return An appropriate method size handler. */
protected static MethodSizeHandler.ForInstrumentedMethod of(MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes, boolean copyArguments, int writerFlags) { if ((writerFlags & (ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES)) != 0) { return NoOp.INSTANCE; } else if (copyArguments) { return new WithCopiedArguments(instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes); } else { return new WithRetainedArguments(instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes); } }
{@inheritDoc}
/** * {@inheritDoc} */
public MethodSizeHandler.ForAdvice bindEnter(MethodDescription.InDefinedShape adviceMethod) { return new ForAdvice(adviceMethod, instrumentedMethod.getStackSize() + StackSize.of(initialTypes)); }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireStackSize(int stackSize) { Default.this.stackSize = Math.max(this.stackSize, stackSize); }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireLocalVariableLength(int localVariableLength) { this.localVariableLength = Math.max(this.localVariableLength, localVariableLength); }
{@inheritDoc}
/** * {@inheritDoc} */
public int compoundStackSize(int stackSize) { return Math.max(this.stackSize, stackSize); }
{@inheritDoc}
/** * {@inheritDoc} */
public int compoundLocalVariableLength(int localVariableLength) { return Math.max(this.localVariableLength, localVariableLength + StackSize.of(postMethodTypes) + StackSize.of(initialTypes) + StackSize.of(preMethodTypes)); }
A method size handler that expects that the original arguments are retained.
/** * A method size handler that expects that the original arguments are retained. */
protected static class WithRetainedArguments extends Default {
Creates a new default method size handler that expects that the original arguments are retained.
Params:
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
/** * Creates a new default method size handler that expects that the original arguments are retained. * * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. */
protected WithRetainedArguments(MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes) { super(instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes); }
{@inheritDoc}
/** * {@inheritDoc} */
public MethodSizeHandler.ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod) { return new ForAdvice(adviceMethod, instrumentedMethod.getStackSize() + StackSize.of(postMethodTypes) + StackSize.of(initialTypes) + StackSize.of(preMethodTypes)); }
{@inheritDoc}
/** * {@inheritDoc} */
public int compoundLocalVariableLength(int localVariableLength) { return Math.max(this.localVariableLength, localVariableLength + StackSize.of(postMethodTypes) + StackSize.of(initialTypes) + StackSize.of(preMethodTypes)); } }
A method size handler that expects that the original arguments were copied.
/** * A method size handler that expects that the original arguments were copied. */
protected static class WithCopiedArguments extends Default {
Creates a new default method size handler that expects the original arguments to be copied.
Params:
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
/** * Creates a new default method size handler that expects the original arguments to be copied. * * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. */
protected WithCopiedArguments(MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes) { super(instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes); }
{@inheritDoc}
/** * {@inheritDoc} */
public MethodSizeHandler.ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod) { return new ForAdvice(adviceMethod, 2 * instrumentedMethod.getStackSize() + StackSize.of(initialTypes) + StackSize.of(preMethodTypes) + StackSize.of(postMethodTypes)); }
{@inheritDoc}
/** * {@inheritDoc} */
public int compoundLocalVariableLength(int localVariableLength) { return Math.max(this.localVariableLength, localVariableLength + instrumentedMethod.getStackSize() + StackSize.of(postMethodTypes) + StackSize.of(initialTypes) + StackSize.of(preMethodTypes)); } }
A method size handler for an advice method.
/** * A method size handler for an advice method. */
protected class ForAdvice implements MethodSizeHandler.ForAdvice {
The advice method.
/** * The advice method. */
private final MethodDescription.InDefinedShape adviceMethod;
The base of the local variable length that is implied by the method instrumentation prior to applying this advice method.
/** * The base of the local variable length that is implied by the method instrumentation prior to applying this advice method. */
private final int baseLocalVariableLength;
The additional padding to apply to the operand stack.
/** * The additional padding to apply to the operand stack. */
private int stackSizePadding;
The additional padding to apply to the local variable array.
/** * The additional padding to apply to the local variable array. */
private int localVariableLengthPadding;
Creates a default method size handler for an advice method.
Params:
  • adviceMethod – The advice method.
  • baseLocalVariableLength – The base of the local variable length that is implied by the method instrumentation prior to applying this advice method.
/** * Creates a default method size handler for an advice method. * * @param adviceMethod The advice method. * @param baseLocalVariableLength The base of the local variable length that is implied by the method instrumentation * prior to applying this advice method. */
protected ForAdvice(MethodDescription.InDefinedShape adviceMethod, int baseLocalVariableLength) { this.adviceMethod = adviceMethod; this.baseLocalVariableLength = baseLocalVariableLength; }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireStackSize(int stackSize) { Default.this.requireStackSize(stackSize); }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireLocalVariableLength(int localVariableLength) { Default.this.requireLocalVariableLength(localVariableLength); }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireStackSizePadding(int stackSizePadding) { this.stackSizePadding = Math.max(this.stackSizePadding, stackSizePadding); }
{@inheritDoc}
/** * {@inheritDoc} */
public void requireLocalVariableLengthPadding(int localVariableLengthPadding) { this.localVariableLengthPadding = Math.max(this.localVariableLengthPadding, localVariableLengthPadding); }
{@inheritDoc}
/** * {@inheritDoc} */
public void recordMaxima(int stackSize, int localVariableLength) { Default.this.requireStackSize(stackSize + stackSizePadding); Default.this.requireLocalVariableLength(localVariableLength - adviceMethod.getStackSize() + baseLocalVariableLength + localVariableLengthPadding); } } } }
A handler for computing and translating stack map frames.
/** * A handler for computing and translating stack map frames. */
protected interface StackMapFrameHandler {
Translates a frame.
Params:
  • methodVisitor – The method visitor to write the frame to.
  • type – The frame's type.
  • localVariableLength – The local variable length.
  • localVariable – An array containing the types of the current local variables.
  • stackSize – The size of the operand stack.
  • stack – An array containing the types of the current operand stack.
/** * Translates a frame. * * @param methodVisitor The method visitor to write the frame to. * @param type The frame's type. * @param localVariableLength The local variable length. * @param localVariable An array containing the types of the current local variables. * @param stackSize The size of the operand stack. * @param stack An array containing the types of the current operand stack. */
void translateFrame(MethodVisitor methodVisitor, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack);
Injects a frame indicating the beginning of a return value handler for the currently handled method.
Params:
  • methodVisitor – The method visitor onto which to apply the stack map frame.
/** * Injects a frame indicating the beginning of a return value handler for the currently handled method. * * @param methodVisitor The method visitor onto which to apply the stack map frame. */
void injectReturnFrame(MethodVisitor methodVisitor);
Injects a frame indicating the beginning of an exception handler for the currently handled method.
Params:
  • methodVisitor – The method visitor onto which to apply the stack map frame.
/** * Injects a frame indicating the beginning of an exception handler for the currently handled method. * * @param methodVisitor The method visitor onto which to apply the stack map frame. */
void injectExceptionFrame(MethodVisitor methodVisitor);
Injects a frame indicating the completion of the currently handled method, i.e. all yielded types were added.
Params:
  • methodVisitor – The method visitor onto which to apply the stack map frame.
/** * Injects a frame indicating the completion of the currently handled method, i.e. all yielded types were added. * * @param methodVisitor The method visitor onto which to apply the stack map frame. */
void injectCompletionFrame(MethodVisitor methodVisitor);
A stack map frame handler for an instrumented method.
/** * A stack map frame handler for an instrumented method. */
interface ForInstrumentedMethod extends StackMapFrameHandler {
Binds this meta data handler for the enter advice.
Params:
  • adviceMethod – The enter advice method.
Returns:An appropriate meta data handler for the enter method.
/** * Binds this meta data handler for the enter advice. * * @param adviceMethod The enter advice method. * @return An appropriate meta data handler for the enter method. */
ForAdvice bindEnter(MethodDescription.InDefinedShape adviceMethod);
Binds this meta data handler for the exit advice.
Params:
  • adviceMethod – The exit advice method.
Returns:An appropriate meta data handler for the enter method.
/** * Binds this meta data handler for the exit advice. * * @param adviceMethod The exit advice method. * @return An appropriate meta data handler for the enter method. */
ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod);
Returns a hint to supply to a ClassReader when parsing an advice method.
Returns:The reader hint to supply to an ASM class reader.
/** * Returns a hint to supply to a {@link ClassReader} when parsing an advice method. * * @return The reader hint to supply to an ASM class reader. */
int getReaderHint();
Injects a frame after initialization if any initialization is performed.
Params:
  • methodVisitor – The method visitor to write any frames to.
/** * Injects a frame after initialization if any initialization is performed. * * @param methodVisitor The method visitor to write any frames to. */
void injectInitializationFrame(MethodVisitor methodVisitor);
Injects a frame before executing the instrumented method.
Params:
  • methodVisitor – The method visitor to write any frames to.
/** * Injects a frame before executing the instrumented method. * * @param methodVisitor The method visitor to write any frames to. */
void injectStartFrame(MethodVisitor methodVisitor);
Injects a frame indicating the completion of the currently handled method, i.e. all yielded types were added.
Params:
  • methodVisitor – The method visitor onto which to apply the stack map frame.
/** * Injects a frame indicating the completion of the currently handled method, i.e. all yielded types were added. * * @param methodVisitor The method visitor onto which to apply the stack map frame. */
void injectPostCompletionFrame(MethodVisitor methodVisitor); }
A stack map frame handler for an advice method.
/** * A stack map frame handler for an advice method. */
interface ForAdvice extends StackMapFrameHandler { /* marker interface */ }
A non-operational stack map frame handler.
/** * A non-operational stack map frame handler. */
enum NoOp implements ForInstrumentedMethod, ForAdvice {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public StackMapFrameHandler.ForAdvice bindEnter(MethodDescription.InDefinedShape adviceMethod) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackMapFrameHandler.ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public int getReaderHint() { return ClassReader.SKIP_FRAMES; }
{@inheritDoc}
/** * {@inheritDoc} */
public void translateFrame(MethodVisitor methodVisitor, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectReturnFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectExceptionFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectCompletionFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectInitializationFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectStartFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectPostCompletionFrame(MethodVisitor methodVisitor) { /* do nothing */ } }
A default implementation of a stack map frame handler for an instrumented method.
/** * A default implementation of a stack map frame handler for an instrumented method. */
abstract class Default implements ForInstrumentedMethod {
An empty array indicating an empty frame.
/** * An empty array indicating an empty frame. */
protected static final Object[] EMPTY = new Object[0];
The instrumented type.
/** * The instrumented type. */
protected final TypeDescription instrumentedType;
The instrumented method.
/** * The instrumented method. */
protected final MethodDescription instrumentedMethod;
A list of virtual method arguments that are explicitly added before any code execution.
/** * A list of virtual method arguments that are explicitly added before any code execution. */
protected final List<? extends TypeDescription> initialTypes;
A list of virtual method arguments that are available before the instrumented method is executed.
/** * A list of virtual method arguments that are available before the instrumented method is executed. */
protected final List<? extends TypeDescription> preMethodTypes;
A list of virtual method arguments that are available after the instrumented method has completed.
/** * A list of virtual method arguments that are available after the instrumented method has completed. */
protected final List<? extends TypeDescription> postMethodTypes;
true if the meta data handler is expected to expand its frames.
/** * {@code true} if the meta data handler is expected to expand its frames. */
protected final boolean expandFrames;
The current frame's size divergence from the original local variable array.
/** * The current frame's size divergence from the original local variable array. */
protected int currentFrameDivergence;
Creates a new default stack map frame handler.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • expandFrames – true if the meta data handler is expected to expand its frames.
/** * Creates a new default stack map frame handler. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param expandFrames {@code true} if the meta data handler is expected to expand its frames. */
protected Default(TypeDescription instrumentedType, MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes, boolean expandFrames) { this.instrumentedType = instrumentedType; this.instrumentedMethod = instrumentedMethod; this.initialTypes = initialTypes; this.preMethodTypes = preMethodTypes; this.postMethodTypes = postMethodTypes; this.expandFrames = expandFrames; }
Creates an appropriate stack map frame handler for an instrumented method.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • exitAdvice – true if the current advice implies exit advice.
  • copyArguments – true if the original arguments are copied before invoking the instrumented method.
  • classFileVersion – The instrumented type's class file version.
  • writerFlags – The flags supplied to the ASM writer.
  • readerFlags – The reader flags supplied to the ASM reader.
Returns:An appropriate stack map frame handler for an instrumented method.
/** * Creates an appropriate stack map frame handler for an instrumented method. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param exitAdvice {@code true} if the current advice implies exit advice. * @param copyArguments {@code true} if the original arguments are copied before invoking the instrumented method. * @param classFileVersion The instrumented type's class file version. * @param writerFlags The flags supplied to the ASM writer. * @param readerFlags The reader flags supplied to the ASM reader. * @return An appropriate stack map frame handler for an instrumented method. */
protected static ForInstrumentedMethod of(TypeDescription instrumentedType, MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes, boolean exitAdvice, boolean copyArguments, ClassFileVersion classFileVersion, int writerFlags, int readerFlags) { if ((writerFlags & ClassWriter.COMPUTE_FRAMES) != 0 || classFileVersion.isLessThan(ClassFileVersion.JAVA_V6)) { return NoOp.INSTANCE; } else if (!exitAdvice) { return new Trivial(instrumentedType, instrumentedMethod, (readerFlags & ClassReader.EXPAND_FRAMES) != 0); } else if (copyArguments) { return new WithPreservedArguments.UsingArgumentCopy(instrumentedType, instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, (readerFlags & ClassReader.EXPAND_FRAMES) != 0); } else { return new WithPreservedArguments.RequiringConsistentShape(instrumentedType, instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, (readerFlags & ClassReader.EXPAND_FRAMES) != 0); } }
{@inheritDoc}
/** * {@inheritDoc} */
public StackMapFrameHandler.ForAdvice bindEnter(MethodDescription.InDefinedShape adviceMethod) { return new ForAdvice(adviceMethod, initialTypes, preMethodTypes, TranslationMode.ENTER, instrumentedMethod.isConstructor() ? Initialization.UNITIALIZED : Initialization.INITIALIZED); }
{@inheritDoc}
/** * {@inheritDoc} */
public int getReaderHint() { return expandFrames ? ClassReader.EXPAND_FRAMES : AsmVisitorWrapper.NO_FLAGS; }
Translates a frame.
Params:
  • methodVisitor – The method visitor to write the frame to.
  • translationMode – The translation mode to apply.
  • methodDescription – The method description for which the frame is written.
  • additionalTypes – The additional types to consider part of the instrumented method's parameters.
  • type – The frame's type.
  • localVariableLength – The local variable length.
  • localVariable – An array containing the types of the current local variables.
  • stackSize – The size of the operand stack.
  • stack – An array containing the types of the current operand stack.
/** * Translates a frame. * * @param methodVisitor The method visitor to write the frame to. * @param translationMode The translation mode to apply. * @param methodDescription The method description for which the frame is written. * @param additionalTypes The additional types to consider part of the instrumented method's parameters. * @param type The frame's type. * @param localVariableLength The local variable length. * @param localVariable An array containing the types of the current local variables. * @param stackSize The size of the operand stack. * @param stack An array containing the types of the current operand stack. */
protected void translateFrame(MethodVisitor methodVisitor, TranslationMode translationMode, MethodDescription methodDescription, List<? extends TypeDescription> additionalTypes, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { switch (type) { case Opcodes.F_SAME: case Opcodes.F_SAME1: break; case Opcodes.F_APPEND: currentFrameDivergence += localVariableLength; break; case Opcodes.F_CHOP: currentFrameDivergence -= localVariableLength; if (currentFrameDivergence < 0) { throw new IllegalStateException(methodDescription + " dropped " + Math.abs(currentFrameDivergence) + " implicit frames"); } break; case Opcodes.F_FULL: case Opcodes.F_NEW: if (methodDescription.getParameters().size() + (methodDescription.isStatic() ? 0 : 1) > localVariableLength) { throw new IllegalStateException("Inconsistent frame length for " + methodDescription + ": " + localVariableLength); } int offset; if (methodDescription.isStatic()) { offset = 0; } else { if (!translationMode.isPossibleThisFrameValue(instrumentedType, instrumentedMethod, localVariable[0])) { throw new IllegalStateException(methodDescription + " is inconsistent for 'this' reference: " + localVariable[0]); } offset = 1; } for (int index = 0; index < methodDescription.getParameters().size(); index++) { if (!Initialization.INITIALIZED.toFrame(methodDescription.getParameters().get(index).getType().asErasure()).equals(localVariable[index + offset])) { throw new IllegalStateException(methodDescription + " is inconsistent at " + index + ": " + localVariable[index + offset]); } } Object[] translated = new Object[localVariableLength - (methodDescription.isStatic() ? 0 : 1) - methodDescription.getParameters().size() + (instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size() + additionalTypes.size()]; int index = translationMode.copy(instrumentedType, instrumentedMethod, methodDescription, localVariable, translated); for (TypeDescription typeDescription : additionalTypes) { translated[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } System.arraycopy(localVariable, methodDescription.getParameters().size() + (methodDescription.isStatic() ? 0 : 1), translated, index, translated.length - index); localVariableLength = translated.length; localVariable = translated; currentFrameDivergence = translated.length - index; break; default: throw new IllegalArgumentException("Unexpected frame type: " + type); } methodVisitor.visitFrame(type, localVariableLength, localVariable, stackSize, stack); }
Injects a full stack map frame after the instrumented method has completed.
Params:
  • methodVisitor – The method visitor onto which to write the stack map frame.
  • initialization – The initialization to apply when resolving a reference to the instance on which a non-static method is invoked.
  • typesInArray – The types that were added to the local variable array additionally to the values of the instrumented method.
  • typesOnStack – The types currently on the operand stack.
/** * Injects a full stack map frame after the instrumented method has completed. * * @param methodVisitor The method visitor onto which to write the stack map frame. * @param initialization The initialization to apply when resolving a reference to the instance on which a non-static method is invoked. * @param typesInArray The types that were added to the local variable array additionally to the values of the instrumented method. * @param typesOnStack The types currently on the operand stack. */
protected void injectFullFrame(MethodVisitor methodVisitor, Initialization initialization, List<? extends TypeDescription> typesInArray, List<? extends TypeDescription> typesOnStack) { Object[] localVariable = new Object[instrumentedMethod.getParameters().size() + (instrumentedMethod.isStatic() ? 0 : 1) + typesInArray.size()]; int index = 0; if (!instrumentedMethod.isStatic()) { localVariable[index++] = initialization.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } for (TypeDescription typeDescription : typesInArray) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } index = 0; Object[] stackType = new Object[typesOnStack.size()]; for (TypeDescription typeDescription : typesOnStack) { stackType[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(expandFrames ? Opcodes.F_NEW : Opcodes.F_FULL, localVariable.length, localVariable, stackType.length, stackType); currentFrameDivergence = 0; }
A translation mode that determines how the fixed frames of the instrumented method are written.
/** * A translation mode that determines how the fixed frames of the instrumented method are written. */
protected enum TranslationMode {
A translation mode that simply copies the original frames which are available when translating frames of the instrumented method.
/** * A translation mode that simply copies the original frames which are available when translating frames of the instrumented method. */
COPY { @Override protected int copy(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodDescription methodDescription, Object[] localVariable, Object[] translated) { int length = instrumentedMethod.getParameters().size() + (instrumentedMethod.isStatic() ? 0 : 1); System.arraycopy(localVariable, 0, translated, 0, length); return length; } @Override protected boolean isPossibleThisFrameValue(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Object frame) { return instrumentedMethod.isConstructor() && Opcodes.UNINITIALIZED_THIS.equals(frame) || Initialization.INITIALIZED.toFrame(instrumentedType).equals(frame); } },
A translation mode for the enter advice that considers that the this reference might not be initialized for a constructor.
/** * A translation mode for the enter advice that considers that the {@code this} reference might not be initialized for a constructor. */
ENTER { @Override protected int copy(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodDescription methodDescription, Object[] localVariable, Object[] translated) { int index = 0; if (!instrumentedMethod.isStatic()) { translated[index++] = instrumentedMethod.isConstructor() ? Opcodes.UNINITIALIZED_THIS : Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { translated[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } return index; } @Override protected boolean isPossibleThisFrameValue(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Object frame) { return instrumentedMethod.isConstructor() ? Opcodes.UNINITIALIZED_THIS.equals(frame) : Initialization.INITIALIZED.toFrame(instrumentedType).equals(frame); } },
A translation mode for an exit advice where the this reference is always initialized.
/** * A translation mode for an exit advice where the {@code this} reference is always initialized. */
EXIT { @Override protected int copy(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodDescription methodDescription, Object[] localVariable, Object[] translated) { int index = 0; if (!instrumentedMethod.isStatic()) { translated[index++] = Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { translated[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } return index; } @Override protected boolean isPossibleThisFrameValue(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Object frame) { return Initialization.INITIALIZED.toFrame(instrumentedType).equals(frame); } };
Copies the fixed parameters of the instrumented method onto the operand stack.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • methodDescription – The method for which a frame is created.
  • localVariable – The original local variable array.
  • translated – The array containing the translated frames.
Returns:The amount of frames added to the translated frame array.
/** * Copies the fixed parameters of the instrumented method onto the operand stack. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param methodDescription The method for which a frame is created. * @param localVariable The original local variable array. * @param translated The array containing the translated frames. * @return The amount of frames added to the translated frame array. */
protected abstract int copy(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodDescription methodDescription, Object[] localVariable, Object[] translated);
Checks if a variable value in a stack map frame is a legal value for describing a this reference.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • frame – The frame value representing the this reference.
Returns:true if the value is a legal representation of the this reference.
/** * Checks if a variable value in a stack map frame is a legal value for describing a {@code this} reference. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param frame The frame value representing the {@code this} reference. * @return {@code true} if the value is a legal representation of the {@code this} reference. */
protected abstract boolean isPossibleThisFrameValue(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Object frame); }
Represents the initialization state of a stack value that can either be initialized or uninitialized.
/** * Represents the initialization state of a stack value that can either be initialized or uninitialized. */
protected enum Initialization {
Represents an uninitialized frame value within a constructor before invoking the super constructor.
/** * Represents an uninitialized frame value within a constructor before invoking the super constructor. */
UNITIALIZED {
{@inheritDoc}
/** * {@inheritDoc} */
protected Object toFrame(TypeDescription typeDescription) { return Opcodes.UNINITIALIZED_THIS; } },
Represents an initialized frame value.
/** * Represents an initialized frame value. */
INITIALIZED {
{@inheritDoc}
/** * {@inheritDoc} */
protected Object toFrame(TypeDescription typeDescription) { if (typeDescription.represents(boolean.class) || typeDescription.represents(byte.class) || typeDescription.represents(short.class) || typeDescription.represents(char.class) || typeDescription.represents(int.class)) { return Opcodes.INTEGER; } else if (typeDescription.represents(long.class)) { return Opcodes.LONG; } else if (typeDescription.represents(float.class)) { return Opcodes.FLOAT; } else if (typeDescription.represents(double.class)) { return Opcodes.DOUBLE; } else { return typeDescription.getInternalName(); } } };
Initializes a frame value to its frame type.
Params:
  • typeDescription – The type being resolved.
Returns:The frame value.
/** * Initializes a frame value to its frame type. * * @param typeDescription The type being resolved. * @return The frame value. */
protected abstract Object toFrame(TypeDescription typeDescription); }
A trivial stack map frame handler that applies a trivial translation for the instrumented method's stack map frames.
/** * A trivial stack map frame handler that applies a trivial translation for the instrumented method's stack map frames. */
protected static class Trivial extends Default {
Creates a new stack map frame handler that applies a trivial translation for the instrumented method's stack map frames.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • expandFrames – true if the meta data handler is expected to expand its frames.
/** * Creates a new stack map frame handler that applies a trivial translation for the instrumented method's stack map frames. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param expandFrames {@code true} if the meta data handler is expected to expand its frames. */
protected Trivial(TypeDescription instrumentedType, MethodDescription instrumentedMethod, boolean expandFrames) { super(instrumentedType, instrumentedMethod, Collections.<TypeDescription>emptyList(), Collections.<TypeDescription>emptyList(), Collections.<TypeDescription>emptyList(), expandFrames); }
{@inheritDoc}
/** * {@inheritDoc} */
public void translateFrame(MethodVisitor methodVisitor, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { methodVisitor.visitFrame(type, localVariableLength, localVariable, stackSize, stack); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackMapFrameHandler.ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod) { throw new IllegalStateException("Did not expect exit advice " + adviceMethod + " for " + instrumentedMethod); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectReturnFrame(MethodVisitor methodVisitor) { throw new IllegalStateException("Did not expect return frame for " + instrumentedMethod); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectExceptionFrame(MethodVisitor methodVisitor) { throw new IllegalStateException("Did not expect exception frame for " + instrumentedMethod); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectCompletionFrame(MethodVisitor methodVisitor) { throw new IllegalStateException("Did not expect completion frame for " + instrumentedMethod); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectPostCompletionFrame(MethodVisitor methodVisitor) { throw new IllegalStateException("Did not expect post completion frame for " + instrumentedMethod); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectInitializationFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectStartFrame(MethodVisitor methodVisitor) { /* do nothing */ } }
A stack map frame handler that requires the original arguments of the instrumented method to be preserved in their original form.
/** * A stack map frame handler that requires the original arguments of the instrumented method to be preserved in their original form. */
protected abstract static class WithPreservedArguments extends Default {
Creates a new stack map frame handler that requires the stack map frames of the original arguments to be preserved.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • expandFrames – true if the meta data handler is expected to expand its frames.
/** * Creates a new stack map frame handler that requires the stack map frames of the original arguments to be preserved. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param expandFrames {@code true} if the meta data handler is expected to expand its frames. */
protected WithPreservedArguments(TypeDescription instrumentedType, MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes, boolean expandFrames) { super(instrumentedType, instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, expandFrames); }
{@inheritDoc}
/** * {@inheritDoc} */
public StackMapFrameHandler.ForAdvice bindExit(MethodDescription.InDefinedShape adviceMethod) { return new ForAdvice(adviceMethod, CompoundList.of(initialTypes, preMethodTypes, postMethodTypes), Collections.<TypeDescription>emptyList(), TranslationMode.EXIT, Initialization.INITIALIZED); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectReturnFrame(MethodVisitor methodVisitor) { if (!expandFrames && currentFrameDivergence == 0) { if (instrumentedMethod.getReturnType().represents(void.class)) { methodVisitor.visitFrame(Opcodes.F_SAME, EMPTY.length, EMPTY, EMPTY.length, EMPTY); } else { methodVisitor.visitFrame(Opcodes.F_SAME1, EMPTY.length, EMPTY, 1, new Object[]{Initialization.INITIALIZED.toFrame(instrumentedMethod.getReturnType().asErasure())}); } } else { injectFullFrame(methodVisitor, Initialization.INITIALIZED, CompoundList.of(initialTypes, preMethodTypes), instrumentedMethod.getReturnType().represents(void.class) ? Collections.<TypeDescription>emptyList() : Collections.singletonList(instrumentedMethod.getReturnType().asErasure())); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectExceptionFrame(MethodVisitor methodVisitor) { if (!expandFrames && currentFrameDivergence == 0) { methodVisitor.visitFrame(Opcodes.F_SAME1, EMPTY.length, EMPTY, 1, new Object[]{Type.getInternalName(Throwable.class)}); } else { injectFullFrame(methodVisitor, Initialization.INITIALIZED, CompoundList.of(initialTypes, preMethodTypes), Collections.singletonList(TypeDescription.THROWABLE)); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectCompletionFrame(MethodVisitor methodVisitor) { if (!expandFrames && currentFrameDivergence == 0) { Object[] local = new Object[postMethodTypes.size()]; int index = 0; for (TypeDescription typeDescription : postMethodTypes) { local[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(Opcodes.F_APPEND, local.length, local, EMPTY.length, EMPTY); } else { injectFullFrame(methodVisitor, Initialization.INITIALIZED, CompoundList.of(initialTypes, preMethodTypes, postMethodTypes), Collections.<TypeDescription>emptyList()); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectPostCompletionFrame(MethodVisitor methodVisitor) { if (!expandFrames && currentFrameDivergence == 0) { methodVisitor.visitFrame(Opcodes.F_SAME, EMPTY.length, EMPTY, EMPTY.length, EMPTY); } else { injectFullFrame(methodVisitor, Initialization.INITIALIZED, CompoundList.of(initialTypes, preMethodTypes, postMethodTypes), Collections.<TypeDescription>emptyList()); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectInitializationFrame(MethodVisitor methodVisitor) { if (!initialTypes.isEmpty()) { if (!expandFrames && initialTypes.size() < 4) { Object[] localVariable = new Object[initialTypes.size()]; int index = 0; for (TypeDescription typeDescription : initialTypes) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(Opcodes.F_APPEND, localVariable.length, localVariable, EMPTY.length, EMPTY); } else { Object[] localVariable = new Object[(instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size() + initialTypes.size()]; int index = 0; if (instrumentedMethod.isConstructor()) { localVariable[index++] = Opcodes.UNINITIALIZED_THIS; } else if (!instrumentedMethod.isStatic()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } for (TypeDescription typeDescription : initialTypes) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(expandFrames ? Opcodes.F_NEW : Opcodes.F_FULL, localVariable.length, localVariable, EMPTY.length, EMPTY); } } }
A stack map frame handler that expects that the original argument frames remain preserved throughout the original invocation.
/** * A stack map frame handler that expects that the original argument frames remain preserved throughout the original invocation. */
protected static class RequiringConsistentShape extends WithPreservedArguments {
Creates a new stack map frame handler that expects the original frames to be preserved.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • expandFrames – true if the meta data handler is expected to expand its frames.
/** * Creates a new stack map frame handler that expects the original frames to be preserved. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param expandFrames {@code true} if the meta data handler is expected to expand its frames. */
protected RequiringConsistentShape(TypeDescription instrumentedType, MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes, boolean expandFrames) { super(instrumentedType, instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, expandFrames); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectStartFrame(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void translateFrame(MethodVisitor methodVisitor, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { translateFrame(methodVisitor, TranslationMode.COPY, instrumentedMethod, CompoundList.of(initialTypes, preMethodTypes), type, localVariableLength, localVariable, stackSize, stack); } }
A stack map frame handler that expects that an argument copy of the original method arguments was made.
/** * A stack map frame handler that expects that an argument copy of the original method arguments was made. */
protected static class UsingArgumentCopy extends WithPreservedArguments {
Creates a new stack map frame handler that expects an argument copy.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • initialTypes – A list of virtual method arguments that are explicitly added before any code execution.
  • preMethodTypes – A list of virtual method arguments that are available before the instrumented method is executed.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • expandFrames – true if the meta data handler is expected to expand its frames.
/** * Creates a new stack map frame handler that expects an argument copy. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param initialTypes A list of virtual method arguments that are explicitly added before any code execution. * @param preMethodTypes A list of virtual method arguments that are available before the instrumented method is executed. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param expandFrames {@code true} if the meta data handler is expected to expand its frames. */
protected UsingArgumentCopy(TypeDescription instrumentedType, MethodDescription instrumentedMethod, List<? extends TypeDescription> initialTypes, List<? extends TypeDescription> preMethodTypes, List<? extends TypeDescription> postMethodTypes, boolean expandFrames) { super(instrumentedType, instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, expandFrames); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectStartFrame(MethodVisitor methodVisitor) { if (!instrumentedMethod.isStatic() || !instrumentedMethod.getParameters().isEmpty()) { if (!expandFrames && (instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size() < 4) { Object[] localVariable = new Object[(instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size()]; int index = 0; if (instrumentedMethod.isConstructor()) { localVariable[index++] = Opcodes.UNINITIALIZED_THIS; } else if (!instrumentedMethod.isStatic()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(Opcodes.F_APPEND, localVariable.length, localVariable, EMPTY.length, EMPTY); } else { Object[] localVariable = new Object[(instrumentedMethod.isStatic() ? 0 : 2) + instrumentedMethod.getParameters().size() * 2 + initialTypes.size() + preMethodTypes.size()]; int index = 0; if (instrumentedMethod.isConstructor()) { localVariable[index++] = Opcodes.UNINITIALIZED_THIS; } else if (!instrumentedMethod.isStatic()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } for (TypeDescription typeDescription : initialTypes) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } for (TypeDescription typeDescription : preMethodTypes) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } if (instrumentedMethod.isConstructor()) { localVariable[index++] = Opcodes.UNINITIALIZED_THIS; } else if (!instrumentedMethod.isStatic()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { localVariable[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(expandFrames ? Opcodes.F_NEW : Opcodes.F_FULL, localVariable.length, localVariable, EMPTY.length, EMPTY); } } currentFrameDivergence = (instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size(); }
{@inheritDoc}
/** * {@inheritDoc} */
@SuppressFBWarnings(value = "RC_REF_COMPARISON_BAD_PRACTICE", justification = "Reference equality is required by ASM") public void translateFrame(MethodVisitor methodVisitor, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { switch (type) { case Opcodes.F_SAME: case Opcodes.F_SAME1: break; case Opcodes.F_APPEND: currentFrameDivergence += localVariableLength; break; case Opcodes.F_CHOP: currentFrameDivergence -= localVariableLength; break; case Opcodes.F_FULL: case Opcodes.F_NEW: Object[] translated = new Object[localVariableLength + (instrumentedMethod.isStatic() ? 0 : 1) + instrumentedMethod.getParameters().size() + initialTypes.size() + preMethodTypes.size()]; int index = 0; if (instrumentedMethod.isConstructor()) { Initialization initialization = Initialization.INITIALIZED; for (int variableIndex = 0; variableIndex < localVariableLength; variableIndex++) { if (localVariable[variableIndex] == Opcodes.UNINITIALIZED_THIS) { initialization = Initialization.UNITIALIZED; break; } } translated[index++] = initialization.toFrame(instrumentedType); } else if (!instrumentedMethod.isStatic()) { translated[index++] = Initialization.INITIALIZED.toFrame(instrumentedType); } for (TypeDescription typeDescription : instrumentedMethod.getParameters().asTypeList().asErasures()) { translated[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } for (TypeDescription typeDescription : initialTypes) { translated[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } for (TypeDescription typeDescription : preMethodTypes) { translated[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } System.arraycopy(localVariable, 0, translated, index, localVariableLength); localVariableLength = translated.length; localVariable = translated; currentFrameDivergence = localVariableLength; break; default: throw new IllegalArgumentException("Unexpected frame type: " + type); } methodVisitor.visitFrame(type, localVariableLength, localVariable, stackSize, stack); } } }
A stack map frame handler for an advice method.
/** * A stack map frame handler for an advice method. */
protected class ForAdvice implements StackMapFrameHandler.ForAdvice {
The method description for which frames are translated.
/** * The method description for which frames are translated. */
protected final MethodDescription.InDefinedShape adviceMethod;
The types provided before execution of the advice code.
/** * The types provided before execution of the advice code. */
protected final List<? extends TypeDescription> startTypes;
The types provided after execution of the advice code.
/** * The types provided after execution of the advice code. */
protected final List<? extends TypeDescription> endTypes;
The translation mode to apply for this advice method. Should be either TranslationMode.ENTER or TranslationMode.EXIT.
/** * The translation mode to apply for this advice method. Should be either {@link TranslationMode#ENTER} or {@link TranslationMode#EXIT}. */
protected final TranslationMode translationMode;
The initialization to apply when resolving a reference to the instance on which a non-static method is invoked.
/** * The initialization to apply when resolving a reference to the instance on which a non-static method is invoked. */
private final Initialization initialization;
Creates a new meta data handler for an advice method.
Params:
  • adviceMethod – The method description for which frames are translated.
  • startTypes – The types provided before execution of the advice code.
  • endTypes – The types provided after execution of the advice code.
  • translationMode – The translation mode to apply for this advice method. Should be either TranslationMode.ENTER or TranslationMode.EXIT.
  • initialization – The initialization to apply when resolving a reference to the instance on which a non-static method is invoked.
/** * Creates a new meta data handler for an advice method. * * @param adviceMethod The method description for which frames are translated. * @param startTypes The types provided before execution of the advice code. * @param endTypes The types provided after execution of the advice code. * @param translationMode The translation mode to apply for this advice method. Should be * either {@link TranslationMode#ENTER} or {@link TranslationMode#EXIT}. * @param initialization The initialization to apply when resolving a reference to the instance on which a non-static method is invoked. */
protected ForAdvice(MethodDescription.InDefinedShape adviceMethod, List<? extends TypeDescription> startTypes, List<? extends TypeDescription> endTypes, TranslationMode translationMode, Initialization initialization) { this.adviceMethod = adviceMethod; this.startTypes = startTypes; this.endTypes = endTypes; this.translationMode = translationMode; this.initialization = initialization; }
{@inheritDoc}
/** * {@inheritDoc} */
public void translateFrame(MethodVisitor methodVisitor, int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { Default.this.translateFrame(methodVisitor, translationMode, adviceMethod, startTypes, type, localVariableLength, localVariable, stackSize, stack); }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectReturnFrame(MethodVisitor methodVisitor) { if (!expandFrames && currentFrameDivergence == 0) { if (adviceMethod.getReturnType().represents(void.class)) { methodVisitor.visitFrame(Opcodes.F_SAME, EMPTY.length, EMPTY, EMPTY.length, EMPTY); } else { methodVisitor.visitFrame(Opcodes.F_SAME1, EMPTY.length, EMPTY, 1, new Object[]{Initialization.INITIALIZED.toFrame(adviceMethod.getReturnType().asErasure())}); } } else { injectFullFrame(methodVisitor, initialization, startTypes, adviceMethod.getReturnType().represents(void.class) ? Collections.<TypeDescription>emptyList() : Collections.singletonList(adviceMethod.getReturnType().asErasure())); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectExceptionFrame(MethodVisitor methodVisitor) { if (!expandFrames && currentFrameDivergence == 0) { methodVisitor.visitFrame(Opcodes.F_SAME1, EMPTY.length, EMPTY, 1, new Object[]{Type.getInternalName(Throwable.class)}); } else { injectFullFrame(methodVisitor, initialization, startTypes, Collections.singletonList(TypeDescription.THROWABLE)); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void injectCompletionFrame(MethodVisitor methodVisitor) { if (expandFrames) { injectFullFrame(methodVisitor, initialization, CompoundList.of(startTypes, endTypes), Collections.<TypeDescription>emptyList()); } else if (currentFrameDivergence == 0 && endTypes.size() < 4) { if (endTypes.isEmpty()) { methodVisitor.visitFrame(Opcodes.F_SAME, EMPTY.length, EMPTY, EMPTY.length, EMPTY); } else { Object[] local = new Object[endTypes.size()]; int index = 0; for (TypeDescription typeDescription : endTypes) { local[index++] = Initialization.INITIALIZED.toFrame(typeDescription); } methodVisitor.visitFrame(Opcodes.F_APPEND, local.length, local, EMPTY.length, EMPTY); } } else if (currentFrameDivergence < 3 && endTypes.isEmpty()) { methodVisitor.visitFrame(Opcodes.F_CHOP, currentFrameDivergence, EMPTY, EMPTY.length, EMPTY); } else { injectFullFrame(methodVisitor, initialization, CompoundList.of(startTypes, endTypes), Collections.<TypeDescription>emptyList()); } } } } }
An exception handler is responsible for providing byte code for handling an exception thrown from a suppressing advice method.
/** * An exception handler is responsible for providing byte code for handling an exception thrown from a suppressing advice method. */
public interface ExceptionHandler {
Resolves a stack manipulation to apply.
Params:
  • instrumentedMethod – The instrumented method.
  • instrumentedType – The instrumented type.
Returns:The stack manipulation to use.
/** * Resolves a stack manipulation to apply. * * @param instrumentedMethod The instrumented method. * @param instrumentedType The instrumented type. * @return The stack manipulation to use. */
StackManipulation resolve(MethodDescription instrumentedMethod, TypeDescription instrumentedType);
Default implementations for commonly used exception handlers.
/** * Default implementations for commonly used exception handlers. */
enum Default implements ExceptionHandler {
An exception handler the suppresses the exception.
/** * An exception handler the suppresses the exception. */
SUPPRESSING {
{@inheritDoc}
/** {@inheritDoc} */
public StackManipulation resolve(MethodDescription instrumentedMethod, TypeDescription instrumentedType) { return Removal.SINGLE; } },
An exception handler that invokes Throwable.printStackTrace().
/** * An exception handler that invokes {@link Throwable#printStackTrace()}. */
PRINTING {
{@inheritDoc}
/** {@inheritDoc} */
public StackManipulation resolve(MethodDescription instrumentedMethod, TypeDescription instrumentedType) { try { return MethodInvocation.invoke(new MethodDescription.ForLoadedMethod(Throwable.class.getMethod("printStackTrace"))); } catch (NoSuchMethodException exception) { throw new IllegalStateException("Cannot locate Throwable::printStackTrace"); } } } }
A simple exception handler that returns a fixed stack manipulation.
/** * A simple exception handler that returns a fixed stack manipulation. */
@HashCodeAndEqualsPlugin.Enhance class Simple implements ExceptionHandler {
The stack manipulation to execute.
/** * The stack manipulation to execute. */
private final StackManipulation stackManipulation;
Creates a new simple exception handler.
Params:
  • stackManipulation – The stack manipulation to execute.
/** * Creates a new simple exception handler. * * @param stackManipulation The stack manipulation to execute. */
public Simple(StackManipulation stackManipulation) { this.stackManipulation = stackManipulation; }
{@inheritDoc}
/** * {@inheritDoc} */
public StackManipulation resolve(MethodDescription instrumentedMethod, TypeDescription instrumentedType) { return stackManipulation; } } }
A dispatcher for implementing advice.
/** * A dispatcher for implementing advice. */
protected interface Dispatcher {
Indicates that a method does not represent advice and does not need to be visited.
/** * Indicates that a method does not represent advice and does not need to be visited. */
MethodVisitor IGNORE_METHOD = null;
Expresses that an annotation should not be visited.
/** * Expresses that an annotation should not be visited. */
AnnotationVisitor IGNORE_ANNOTATION = null;
Returns true if this dispatcher is alive.
Returns:true if this dispatcher is alive.
/** * Returns {@code true} if this dispatcher is alive. * * @return {@code true} if this dispatcher is alive. */
boolean isAlive();
The type that is produced as a result of executing this advice method.
Returns:A description of the type that is produced by this advice method.
/** * The type that is produced as a result of executing this advice method. * * @return A description of the type that is produced by this advice method. */
TypeDefinition getAdviceType();
A dispatcher that is not yet resolved.
/** * A dispatcher that is not yet resolved. */
interface Unresolved extends Dispatcher {
Indicates that this dispatcher requires access to the class file declaring the advice method.
Returns:true if this dispatcher requires access to the advice method's class file.
/** * Indicates that this dispatcher requires access to the class file declaring the advice method. * * @return {@code true} if this dispatcher requires access to the advice method's class file. */
boolean isBinary();
Returns the named types declared by this enter advice.
Returns:The named types declared by this enter advice.
/** * Returns the named types declared by this enter advice. * * @return The named types declared by this enter advice. */
Map<String, TypeDefinition> getNamedTypes();
Resolves this dispatcher as a dispatcher for entering a method.
Params:
  • userFactories – A list of custom factories for binding parameters of an advice method.
  • classReader – A class reader to query for a class file which might be null if this dispatcher is not binary.
  • methodExit – The unresolved dispatcher for the method exit advice.
Returns:This dispatcher as a dispatcher for entering a method.
/** * Resolves this dispatcher as a dispatcher for entering a method. * * @param userFactories A list of custom factories for binding parameters of an advice method. * @param classReader A class reader to query for a class file which might be {@code null} if this dispatcher is not binary. * @param methodExit The unresolved dispatcher for the method exit advice. * @return This dispatcher as a dispatcher for entering a method. */
Resolved.ForMethodEnter asMethodEnter(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodExit);
Resolves this dispatcher as a dispatcher for exiting a method.
Params:
  • userFactories – A list of custom factories for binding parameters of an advice method.
  • classReader – A class reader to query for a class file which might be null if this dispatcher is not binary.
  • methodEnter – The unresolved dispatcher for the method enter advice.
Returns:This dispatcher as a dispatcher for exiting a method.
/** * Resolves this dispatcher as a dispatcher for exiting a method. * * @param userFactories A list of custom factories for binding parameters of an advice method. * @param classReader A class reader to query for a class file which might be {@code null} if this dispatcher is not binary. * @param methodEnter The unresolved dispatcher for the method enter advice. * @return This dispatcher as a dispatcher for exiting a method. */
Resolved.ForMethodExit asMethodExit(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodEnter); }
A suppression handler for optionally suppressing exceptions.
/** * A suppression handler for optionally suppressing exceptions. */
interface SuppressionHandler {
Binds the suppression handler for instrumenting a specific method.
Params:
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
Returns:A bound version of the suppression handler.
/** * Binds the suppression handler for instrumenting a specific method. * * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @return A bound version of the suppression handler. */
Bound bind(StackManipulation exceptionHandler);
A bound version of a suppression handler that must not be reused.
/** * A bound version of a suppression handler that must not be reused. */
interface Bound {
Invoked to prepare the suppression handler, i.e. to write an exception handler entry if appropriate.
Params:
  • methodVisitor – The method visitor to apply the preparation to.
/** * Invoked to prepare the suppression handler, i.e. to write an exception handler entry if appropriate. * * @param methodVisitor The method visitor to apply the preparation to. */
void onPrepare(MethodVisitor methodVisitor);
Invoked at the start of a method.
Params:
  • methodVisitor – The method visitor of the instrumented method.
/** * Invoked at the start of a method. * * @param methodVisitor The method visitor of the instrumented method. */
void onStart(MethodVisitor methodVisitor);
Invoked at the end of a method.
Params:
  • methodVisitor – The method visitor of the instrumented method.
  • implementationContext – The implementation context to use.
  • methodSizeHandler – The advice method's method size handler.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • returnType – The return type of the advice method.
/** * Invoked at the end of a method. * * @param methodVisitor The method visitor of the instrumented method. * @param implementationContext The implementation context to use. * @param methodSizeHandler The advice method's method size handler. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param returnType The return type of the advice method. */
void onEnd(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDefinition returnType);
Invoked at the end of a method if the exception handler should be wrapped in a skipping block.
Params:
  • methodVisitor – The method visitor of the instrumented method.
  • implementationContext – The implementation context to use.
  • methodSizeHandler – The advice method's method size handler.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • returnType – The return type of the advice method.
/** * Invoked at the end of a method if the exception handler should be wrapped in a skipping block. * * @param methodVisitor The method visitor of the instrumented method. * @param implementationContext The implementation context to use. * @param methodSizeHandler The advice method's method size handler. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param returnType The return type of the advice method. */
void onEndWithSkip(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDefinition returnType); }
A non-operational suppression handler that does not suppress any method.
/** * A non-operational suppression handler that does not suppress any method. */
enum NoOp implements SuppressionHandler, Bound {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(StackManipulation exceptionHandler) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public void onPrepare(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void onStart(MethodVisitor methodVisitor) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void onEnd(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDefinition returnType) { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void onEndWithSkip(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDefinition returnType) { /* do nothing */ } }
A suppression handler that suppresses a given throwable type.
/** * A suppression handler that suppresses a given throwable type. */
@HashCodeAndEqualsPlugin.Enhance class Suppressing implements SuppressionHandler {
The suppressed throwable type.
/** * The suppressed throwable type. */
private final TypeDescription suppressedType;
Creates a new suppressing suppression handler.
Params:
  • suppressedType – The suppressed throwable type.
/** * Creates a new suppressing suppression handler. * * @param suppressedType The suppressed throwable type. */
protected Suppressing(TypeDescription suppressedType) { this.suppressedType = suppressedType; }
Resolves an appropriate suppression handler.
Params:
  • suppressedType – The suppressed type or NoExceptionHandler if no type should be suppressed.
Returns:An appropriate suppression handler.
/** * Resolves an appropriate suppression handler. * * @param suppressedType The suppressed type or {@link NoExceptionHandler} if no type should be suppressed. * @return An appropriate suppression handler. */
protected static SuppressionHandler of(TypeDescription suppressedType) { return suppressedType.represents(NoExceptionHandler.class) ? NoOp.INSTANCE : new Suppressing(suppressedType); }
{@inheritDoc}
/** * {@inheritDoc} */
public SuppressionHandler.Bound bind(StackManipulation exceptionHandler) { return new Bound(suppressedType, exceptionHandler); }
An active, bound suppression handler.
/** * An active, bound suppression handler. */
protected static class Bound implements SuppressionHandler.Bound {
The suppressed throwable type.
/** * The suppressed throwable type. */
private final TypeDescription suppressedType;
The stack manipulation to apply within a suppression handler.
/** * The stack manipulation to apply within a suppression handler. */
private final StackManipulation exceptionHandler;
A label indicating the start of the method.
/** * A label indicating the start of the method. */
private final Label startOfMethod;
A label indicating the end of the method.
/** * A label indicating the end of the method. */
private final Label endOfMethod;
Creates a new active, bound suppression handler.
Params:
  • suppressedType – The suppressed throwable type.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
/** * Creates a new active, bound suppression handler. * * @param suppressedType The suppressed throwable type. * @param exceptionHandler The stack manipulation to apply within a suppression handler. */
protected Bound(TypeDescription suppressedType, StackManipulation exceptionHandler) { this.suppressedType = suppressedType; this.exceptionHandler = exceptionHandler; startOfMethod = new Label(); endOfMethod = new Label(); }
{@inheritDoc}
/** * {@inheritDoc} */
public void onPrepare(MethodVisitor methodVisitor) { methodVisitor.visitTryCatchBlock(startOfMethod, endOfMethod, endOfMethod, suppressedType.getInternalName()); }
{@inheritDoc}
/** * {@inheritDoc} */
public void onStart(MethodVisitor methodVisitor) { methodVisitor.visitLabel(startOfMethod); }
{@inheritDoc}
/** * {@inheritDoc} */
public void onEnd(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDefinition returnType) { methodVisitor.visitLabel(endOfMethod); stackMapFrameHandler.injectExceptionFrame(methodVisitor); methodSizeHandler.requireStackSize(1 + exceptionHandler.apply(methodVisitor, implementationContext).getMaximalSize()); if (returnType.represents(boolean.class) || returnType.represents(byte.class) || returnType.represents(short.class) || returnType.represents(char.class) || returnType.represents(int.class)) { methodVisitor.visitInsn(Opcodes.ICONST_0); } else if (returnType.represents(long.class)) { methodVisitor.visitInsn(Opcodes.LCONST_0); } else if (returnType.represents(float.class)) { methodVisitor.visitInsn(Opcodes.FCONST_0); } else if (returnType.represents(double.class)) { methodVisitor.visitInsn(Opcodes.DCONST_0); } else if (!returnType.represents(void.class)) { methodVisitor.visitInsn(Opcodes.ACONST_NULL); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void onEndWithSkip(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDefinition returnType) { Label skipExceptionHandler = new Label(); methodVisitor.visitJumpInsn(Opcodes.GOTO, skipExceptionHandler); onEnd(methodVisitor, implementationContext, methodSizeHandler, stackMapFrameHandler, returnType); methodVisitor.visitLabel(skipExceptionHandler); stackMapFrameHandler.injectReturnFrame(methodVisitor); } } } }
A relocation handler is responsible for chaining the usual control flow of an instrumented method.
/** * A relocation handler is responsible for chaining the usual control flow of an instrumented method. */
interface RelocationHandler {
Binds this relocation handler to a relocation dispatcher.
Params:
  • instrumentedMethod – The instrumented method.
  • relocation – The relocation to apply.
Returns:A bound relocation handler.
/** * Binds this relocation handler to a relocation dispatcher. * * @param instrumentedMethod The instrumented method. * @param relocation The relocation to apply. * @return A bound relocation handler. */
Bound bind(MethodDescription instrumentedMethod, Relocation relocation);
A relocator is responsible for triggering a relocation if a relocation handler triggers a relocating condition.
/** * A relocator is responsible for triggering a relocation if a relocation handler triggers a relocating condition. */
interface Relocation {
Applies this relocator.
Params:
  • methodVisitor – The method visitor to use.
/** * Applies this relocator. * * @param methodVisitor The method visitor to use. */
void apply(MethodVisitor methodVisitor);
A relocation that unconditionally jumps to a given label.
/** * A relocation that unconditionally jumps to a given label. */
@HashCodeAndEqualsPlugin.Enhance class ForLabel implements Relocation {
The label to jump to.
/** * The label to jump to. */
private final Label label;
Creates a new relocation for an unconditional jump to a given label.
Params:
  • label – The label to jump to.
/** * Creates a new relocation for an unconditional jump to a given label. * * @param label The label to jump to. */
public ForLabel(Label label) { this.label = label; }
{@inheritDoc}
/** * {@inheritDoc} */
public void apply(MethodVisitor methodVisitor) { methodVisitor.visitJumpInsn(Opcodes.GOTO, label); } } } /** * A bound {@link RelocationHandler}. */ interface Bound {
Indicates that this relocation handler does not require a minimal stack size.
/** * Indicates that this relocation handler does not require a minimal stack size. */
int NO_REQUIRED_SIZE = 0;
Applies this relocation handler.
Params:
  • methodVisitor – The method visitor to use.
  • offset – The offset of the relevant value.
Returns:The minimal required stack size to apply this relocation handler.
/** * Applies this relocation handler. * * @param methodVisitor The method visitor to use. * @param offset The offset of the relevant value. * @return The minimal required stack size to apply this relocation handler. */
int apply(MethodVisitor methodVisitor, int offset); }
A disabled relocation handler that does never trigger a relocation.
/** * A disabled relocation handler that does never trigger a relocation. */
enum Disabled implements RelocationHandler, Bound {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(MethodDescription instrumentedMethod, Relocation relocation) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public int apply(MethodVisitor methodVisitor, int offset) { return NO_REQUIRED_SIZE; } }
A relocation handler that triggers a relocation for a default or non-default value.
/** * A relocation handler that triggers a relocation for a default or non-default value. */
enum ForValue implements RelocationHandler {
A relocation handler for an int type or any compatible type.
/** * A relocation handler for an {@code int} type or any compatible type. */
INTEGER(Opcodes.ILOAD, Opcodes.IFNE, Opcodes.IFEQ, 0) { @Override protected void convertValue(MethodVisitor methodVisitor) { /* do nothing */ } },
A relocation handler for a long type.
/** * A relocation handler for a {@code long} type. */
LONG(Opcodes.LLOAD, Opcodes.IFNE, Opcodes.IFEQ, 0) { @Override protected void convertValue(MethodVisitor methodVisitor) { methodVisitor.visitInsn(Opcodes.L2I); } },
A relocation handler for a float type.
/** * A relocation handler for a {@code float} type. */
FLOAT(Opcodes.FLOAD, Opcodes.IFNE, Opcodes.IFEQ, 2) { @Override protected void convertValue(MethodVisitor methodVisitor) { methodVisitor.visitInsn(Opcodes.FCONST_0); methodVisitor.visitInsn(Opcodes.FCMPL); } },
A relocation handler for a double type.
/** * A relocation handler for a {@code double} type. */
DOUBLE(Opcodes.DLOAD, Opcodes.IFNE, Opcodes.IFEQ, 4) { @Override protected void convertValue(MethodVisitor methodVisitor) { methodVisitor.visitInsn(Opcodes.DCONST_0); methodVisitor.visitInsn(Opcodes.DCMPL); } },
A relocation handler for a reference type.
/** * A relocation handler for a reference type. */
REFERENCE(Opcodes.ALOAD, Opcodes.IFNONNULL, Opcodes.IFNULL, 0) { @Override protected void convertValue(MethodVisitor methodVisitor) { /* do nothing */ } };
An opcode for loading a value of the represented type from the local variable array.
/** * An opcode for loading a value of the represented type from the local variable array. */
private final int load;
The opcode to check for a non-default value.
/** * The opcode to check for a non-default value. */
private final int defaultJump;
The opcode to check for a default value.
/** * The opcode to check for a default value. */
private final int nonDefaultJump;
The minimal required stack size to apply this relocation handler.
/** * The minimal required stack size to apply this relocation handler. */
private final int requiredSize;
Creates a new relocation handler for a type's default or non-default value.
Params:
  • load – An opcode for loading a value of the represented type from the local variable array.
  • defaultJump – The opcode to check for a non-default value.
  • nonDefaultJump – The opcode to check for a default value.
  • requiredSize – The minimal required stack size to apply this relocation handler.
/** * Creates a new relocation handler for a type's default or non-default value. * * @param load An opcode for loading a value of the represented type from the local variable array. * @param defaultJump The opcode to check for a non-default value. * @param nonDefaultJump The opcode to check for a default value. * @param requiredSize The minimal required stack size to apply this relocation handler. */
ForValue(int load, int defaultJump, int nonDefaultJump, int requiredSize) { this.load = load; this.defaultJump = defaultJump; this.nonDefaultJump = nonDefaultJump; this.requiredSize = requiredSize; }
Resolves a relocation handler for a given type.
Params:
  • typeDefinition – The type to be resolved for a relocation attempt.
  • inverted – true if the relocation should be applied for any non-default value of a type.
Returns:An appropriate relocation handler.
/** * Resolves a relocation handler for a given type. * * @param typeDefinition The type to be resolved for a relocation attempt. * @param inverted {@code true} if the relocation should be applied for any non-default value of a type. * @return An appropriate relocation handler. */
protected static RelocationHandler of(TypeDefinition typeDefinition, boolean inverted) { ForValue skipDispatcher; if (typeDefinition.represents(long.class)) { skipDispatcher = LONG; } else if (typeDefinition.represents(float.class)) { skipDispatcher = FLOAT; } else if (typeDefinition.represents(double.class)) { skipDispatcher = DOUBLE; } else if (typeDefinition.represents(void.class)) { throw new IllegalStateException("Cannot skip on default value for void return type"); } else if (typeDefinition.isPrimitive()) { // anyOf(byte, short, char, int) skipDispatcher = INTEGER; } else { skipDispatcher = REFERENCE; } return inverted ? skipDispatcher.new Inverted() : skipDispatcher; }
Applies a value conversion prior to a applying a conditional jump.
Params:
  • methodVisitor – The method visitor to use.
/** * Applies a value conversion prior to a applying a conditional jump. * * @param methodVisitor The method visitor to use. */
protected abstract void convertValue(MethodVisitor methodVisitor);
{@inheritDoc}
/** * {@inheritDoc} */
public RelocationHandler.Bound bind(MethodDescription instrumentedMethod, Relocation relocation) { return new Bound(instrumentedMethod, relocation, false); }
An inverted version of the outer relocation handler.
/** * An inverted version of the outer relocation handler. */
@HashCodeAndEqualsPlugin.Enhance(includeSyntheticFields = true) protected class Inverted implements RelocationHandler {
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(MethodDescription instrumentedMethod, Relocation relocation) { return new ForValue.Bound(instrumentedMethod, relocation, true); } }
A bound relocation handler for ForValue.
/** * A bound relocation handler for {@link ForValue}. */
@HashCodeAndEqualsPlugin.Enhance(includeSyntheticFields = true) protected class Bound implements RelocationHandler.Bound {
The instrumented method.
/** * The instrumented method. */
private final MethodDescription instrumentedMethod;
The relocation to apply.
/** * The relocation to apply. */
private final Relocation relocation;
true if the relocation should be applied for any non-default value of a type.
/** * {@code true} if the relocation should be applied for any non-default value of a type. */
private final boolean inverted;
Creates a new bound relocation handler.
Params:
  • instrumentedMethod – The instrumented method.
  • relocation – The relocation to apply.
  • inverted – true if the relocation should be applied for any non-default value of a type.
/** * Creates a new bound relocation handler. * * @param instrumentedMethod The instrumented method. * @param relocation The relocation to apply. * @param inverted {@code true} if the relocation should be applied for any non-default value of a type. */
protected Bound(MethodDescription instrumentedMethod, Relocation relocation, boolean inverted) { this.instrumentedMethod = instrumentedMethod; this.relocation = relocation; this.inverted = inverted; }
{@inheritDoc}
/** * {@inheritDoc} */
public int apply(MethodVisitor methodVisitor, int offset) { if (instrumentedMethod.isConstructor()) { throw new IllegalStateException("Cannot skip code execution from constructor: " + instrumentedMethod); } methodVisitor.visitVarInsn(load, offset); convertValue(methodVisitor); Label noSkip = new Label(); methodVisitor.visitJumpInsn(inverted ? nonDefaultJump : defaultJump, noSkip); relocation.apply(methodVisitor); methodVisitor.visitLabel(noSkip); return requiredSize; } } }
A relocation handler that is triggered if the checked value is an instance of a given type.
/** * A relocation handler that is triggered if the checked value is an instance of a given type. */
@HashCodeAndEqualsPlugin.Enhance class ForType implements RelocationHandler {
The type that triggers a relocation.
/** * The type that triggers a relocation. */
private final TypeDescription typeDescription;
Creates a new relocation handler that triggers a relocation if a value is an instance of a given type.
Params:
  • typeDescription – The type that triggers a relocation.
/** * Creates a new relocation handler that triggers a relocation if a value is an instance of a given type. * * @param typeDescription The type that triggers a relocation. */
protected ForType(TypeDescription typeDescription) { this.typeDescription = typeDescription; }
Resolves a relocation handler that is triggered if the checked instance is of a given type.
Params:
  • typeDescription – The type that triggers a relocation.
  • checkedType – The type that is carrying the checked value.
Returns:An appropriate relocation handler.
/** * Resolves a relocation handler that is triggered if the checked instance is of a given type. * * @param typeDescription The type that triggers a relocation. * @param checkedType The type that is carrying the checked value. * @return An appropriate relocation handler. */
protected static RelocationHandler of(TypeDescription typeDescription, TypeDefinition checkedType) { if (typeDescription.represents(void.class)) { return Disabled.INSTANCE; } else if (typeDescription.represents(OnDefaultValue.class)) { return ForValue.of(checkedType, false); } else if (typeDescription.represents(OnNonDefaultValue.class)) { return ForValue.of(checkedType, true); } else if (typeDescription.isPrimitive() || checkedType.isPrimitive()) { throw new IllegalStateException("Cannot skip method by instance type for primitive return type " + checkedType); } else { return new ForType(typeDescription); } }
{@inheritDoc}
/** * {@inheritDoc} */
public RelocationHandler.Bound bind(MethodDescription instrumentedMethod, Relocation relocation) { return new Bound(instrumentedMethod, relocation); }
A bound relocation handler for ForType.
/** * A bound relocation handler for {@link ForType}. */
@HashCodeAndEqualsPlugin.Enhance(includeSyntheticFields = true) protected class Bound implements RelocationHandler.Bound {
The instrumented method.
/** * The instrumented method. */
private final MethodDescription instrumentedMethod;
The relocation to use.
/** * The relocation to use. */
private final Relocation relocation;
Creates a new bound relocation handler.
Params:
  • instrumentedMethod – The instrumented method.
  • relocation – The relocation to apply.
/** * Creates a new bound relocation handler. * * @param instrumentedMethod The instrumented method. * @param relocation The relocation to apply. */
protected Bound(MethodDescription instrumentedMethod, Relocation relocation) { this.instrumentedMethod = instrumentedMethod; this.relocation = relocation; }
{@inheritDoc}
/** * {@inheritDoc} */
public int apply(MethodVisitor methodVisitor, int offset) { if (instrumentedMethod.isConstructor()) { throw new IllegalStateException("Cannot skip code execution from constructor: " + instrumentedMethod); } methodVisitor.visitVarInsn(Opcodes.ALOAD, offset); methodVisitor.visitTypeInsn(Opcodes.INSTANCEOF, typeDescription.getInternalName()); Label noSkip = new Label(); methodVisitor.visitJumpInsn(Opcodes.IFEQ, noSkip); relocation.apply(methodVisitor); methodVisitor.visitLabel(noSkip); return NO_REQUIRED_SIZE; } } } }
Represents a resolved dispatcher.
/** * Represents a resolved dispatcher. */
interface Resolved extends Dispatcher {
Binds this dispatcher for resolution to a specific method.
Params:
  • instrumentedType – The instrumented type.
  • instrumentedMethod – The instrumented method.
  • methodVisitor – The method visitor for writing the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • relocation – A relocation to use with a relocation handler.
Returns:A dispatcher that is bound to the instrumented method.
/** * Binds this dispatcher for resolution to a specific method. * * @param instrumentedType The instrumented type. * @param instrumentedMethod The instrumented method. * @param methodVisitor The method visitor for writing the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param relocation A relocation to use with a relocation handler. * @return A dispatcher that is bound to the instrumented method. */
Bound bind(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation);
Represents a resolved dispatcher for entering a method.
/** * Represents a resolved dispatcher for entering a method. */
interface ForMethodEnter extends Resolved {
Returns true if the first discovered line number information should be prepended to the advice code.
Returns:true if the first discovered line number information should be prepended to the advice code.
/** * Returns {@code true} if the first discovered line number information should be prepended to the advice code. * * @return {@code true} if the first discovered line number information should be prepended to the advice code. */
boolean isPrependLineNumber();
Returns the named types declared by this enter advice.
Returns:The named types declared by this enter advice.
/** * Returns the named types declared by this enter advice. * * @return The named types declared by this enter advice. */
Map<String, TypeDefinition> getNamedTypes(); }
Represents a resolved dispatcher for exiting a method.
/** * Represents a resolved dispatcher for exiting a method. */
interface ForMethodExit extends Resolved {
Returns the type of throwable for which this exit advice is supposed to be invoked.
Returns:The Throwable type for which to invoke this exit advice or a description of NoExceptionHandler if this exit advice does not expect to be invoked upon any throwable.
/** * Returns the type of throwable for which this exit advice is supposed to be invoked. * * @return The {@link Throwable} type for which to invoke this exit advice or a description of {@link NoExceptionHandler} * if this exit advice does not expect to be invoked upon any throwable. */
TypeDescription getThrowable();
Returns a factory for creating an ArgumentHandler.
Returns:A factory for creating an ArgumentHandler.
/** * Returns a factory for creating an {@link ArgumentHandler}. * * @return A factory for creating an {@link ArgumentHandler}. */
ArgumentHandler.Factory getArgumentHandlerFactory(); }
An abstract base implementation of a Resolved dispatcher.
/** * An abstract base implementation of a {@link Resolved} dispatcher. */
@HashCodeAndEqualsPlugin.Enhance abstract class AbstractBase implements Resolved {
The represented advice method.
/** * The represented advice method. */
protected final MethodDescription.InDefinedShape adviceMethod;
A mapping from offset to a mapping for this offset with retained iteration order of the method's parameters.
/** * A mapping from offset to a mapping for this offset with retained iteration order of the method's parameters. */
protected final Map<Integer, OffsetMapping> offsetMappings;
The suppression handler to use.
/** * The suppression handler to use. */
protected final SuppressionHandler suppressionHandler;
The relocation handler to use.
/** * The relocation handler to use. */
protected final RelocationHandler relocationHandler;
Creates a new resolved version of a dispatcher.
Params:
  • adviceMethod – The represented advice method.
  • factories – A list of factories to resolve for the parameters of the advice method.
  • throwableType – The type to handle by a suppression handler or NoExceptionHandler to not handle any exceptions.
  • relocatableType – The type to trigger a relocation of the method's control flow or void if no relocation should be executed.
  • adviceType – The applied advice type.
/** * Creates a new resolved version of a dispatcher. * * @param adviceMethod The represented advice method. * @param factories A list of factories to resolve for the parameters of the advice method. * @param throwableType The type to handle by a suppression handler or {@link NoExceptionHandler} to not handle any exceptions. * @param relocatableType The type to trigger a relocation of the method's control flow or {@code void} if no relocation should be executed. * @param adviceType The applied advice type. */
protected AbstractBase(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> factories, TypeDescription throwableType, TypeDescription relocatableType, OffsetMapping.Factory.AdviceType adviceType) { this.adviceMethod = adviceMethod; Map<TypeDescription, OffsetMapping.Factory<?>> offsetMappings = new HashMap<TypeDescription, OffsetMapping.Factory<?>>(); for (OffsetMapping.Factory<?> factory : factories) { offsetMappings.put(TypeDescription.ForLoadedType.of(factory.getAnnotationType()), factory); } this.offsetMappings = new LinkedHashMap<Integer, OffsetMapping>(); for (ParameterDescription.InDefinedShape parameterDescription : adviceMethod.getParameters()) { OffsetMapping offsetMapping = null; for (AnnotationDescription annotationDescription : parameterDescription.getDeclaredAnnotations()) { OffsetMapping.Factory<?> factory = offsetMappings.get(annotationDescription.getAnnotationType()); if (factory != null) { @SuppressWarnings("unchecked") OffsetMapping current = factory.make(parameterDescription, (AnnotationDescription.Loadable) annotationDescription.prepare(factory.getAnnotationType()), adviceType); if (offsetMapping == null) { offsetMapping = current; } else { throw new IllegalStateException(parameterDescription + " is bound to both " + current + " and " + offsetMapping); } } } this.offsetMappings.put(parameterDescription.getOffset(), offsetMapping == null ? new OffsetMapping.ForArgument.Unresolved(parameterDescription) : offsetMapping); } suppressionHandler = SuppressionHandler.Suppressing.of(throwableType); relocationHandler = RelocationHandler.ForType.of(relocatableType, adviceMethod.getReturnType()); }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isAlive() { return true; } } }
A bound resolution of an advice method.
/** * A bound resolution of an advice method. */
interface Bound {
Prepares the advice method's exception handlers.
/** * Prepares the advice method's exception handlers. */
void prepare();
Initialized the advice's methods local variables.
/** * Initialized the advice's methods local variables. */
void initialize();
Applies this dispatcher.
/** * Applies this dispatcher. */
void apply(); }
An implementation for inactive devise that does not write any byte code.
/** * An implementation for inactive devise that does not write any byte code. */
enum Inactive implements Dispatcher.Unresolved, Resolved.ForMethodEnter, Resolved.ForMethodExit, Bound {
The singleton instance.
/** * The singleton instance. */
INSTANCE;
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isAlive() { return false; }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isBinary() { return false; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getAdviceType() { return TypeDescription.VOID; }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isPrependLineNumber() { return false; }
{@inheritDoc}
/** * {@inheritDoc} */
public Map<String, TypeDefinition> getNamedTypes() { return Collections.emptyMap(); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getThrowable() { return NoExceptionHandler.DESCRIPTION; }
{@inheritDoc}
/** * {@inheritDoc} */
public ArgumentHandler.Factory getArgumentHandlerFactory() { return ArgumentHandler.Factory.SIMPLE; }
{@inheritDoc}
/** * {@inheritDoc} */
public Resolved.ForMethodEnter asMethodEnter(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodExit) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public Resolved.ForMethodExit asMethodExit(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodEnter) { return this; }
{@inheritDoc}
/** * {@inheritDoc} */
public void prepare() { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void initialize() { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public void apply() { /* do nothing */ }
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation) { return this; } }
A dispatcher for an advice method that is being inlined into the instrumented method.
/** * A dispatcher for an advice method that is being inlined into the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance class Inlining implements Unresolved {
The advice method.
/** * The advice method. */
protected final MethodDescription.InDefinedShape adviceMethod;
A mapping of all available local variables by their name to their type.
/** * A mapping of all available local variables by their name to their type. */
private final Map<String, TypeDefinition> namedTypes;
Creates a dispatcher for inlined advice method.
Params:
  • adviceMethod – The advice method.
/** * Creates a dispatcher for inlined advice method. * * @param adviceMethod The advice method. */
protected Inlining(MethodDescription.InDefinedShape adviceMethod) { this.adviceMethod = adviceMethod; namedTypes = new HashMap<String, TypeDefinition>(); for (ParameterDescription parameterDescription : adviceMethod.getParameters().filter(isAnnotatedWith(Local.class))) { String name = parameterDescription.getDeclaredAnnotations().ofType(Local.class).loadSilent().value(); TypeDefinition previous = namedTypes.put(name, parameterDescription.getType()); if (previous != null && !previous.equals(parameterDescription.getType())) { throw new IllegalStateException("Local variable for " + name + " is defined with inconsistent types"); } } }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isAlive() { return true; }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isBinary() { return true; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getAdviceType() { return adviceMethod.getReturnType().asErasure(); }
{@inheritDoc}
/** * {@inheritDoc} */
public Map<String, TypeDefinition> getNamedTypes() { return namedTypes; }
{@inheritDoc}
/** * {@inheritDoc} */
public Dispatcher.Resolved.ForMethodEnter asMethodEnter(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodExit) { return Resolved.ForMethodEnter.of(adviceMethod, namedTypes, userFactories, methodExit.getAdviceType(), classReader, methodExit.isAlive()); }
{@inheritDoc}
/** * {@inheritDoc} */
public Dispatcher.Resolved.ForMethodExit asMethodExit(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodEnter) { Map<String, TypeDefinition> namedTypes = methodEnter.getNamedTypes(); for (Map.Entry<String, TypeDefinition> entry : this.namedTypes.entrySet()) { TypeDefinition typeDefinition = this.namedTypes.get(entry.getKey()); if (typeDefinition == null) { throw new IllegalStateException(adviceMethod + " attempts use of undeclared local variable " + entry.getKey()); } else if (!typeDefinition.equals(entry.getValue())) { throw new IllegalStateException(adviceMethod + " does not read variable " + entry.getKey() + " as " + typeDefinition); } } return Resolved.ForMethodExit.of(adviceMethod, namedTypes, userFactories, classReader, methodEnter.getAdviceType()); }
A resolved version of a dispatcher.
/** * A resolved version of a dispatcher. */
protected abstract static class Resolved extends Dispatcher.Resolved.AbstractBase {
A class reader to query for the class file of the advice method.
/** * A class reader to query for the class file of the advice method. */
protected final ClassReader classReader;
Creates a new resolved version of a dispatcher.
Params:
  • adviceMethod – The represented advice method.
  • factories – A list of factories to resolve for the parameters of the advice method.
  • throwableType – The type to handle by a suppression handler or NoExceptionHandler to not handle any exceptions.
  • relocatableType – The type to trigger a relocation of the method's control flow or void if no relocation should be executed.
  • classReader – A class reader to query for the class file of the advice method.
/** * Creates a new resolved version of a dispatcher. * * @param adviceMethod The represented advice method. * @param factories A list of factories to resolve for the parameters of the advice method. * @param throwableType The type to handle by a suppression handler or {@link NoExceptionHandler} to not handle any exceptions. * @param relocatableType The type to trigger a relocation of the method's control flow or {@code void} if no relocation should be executed. * @param classReader A class reader to query for the class file of the advice method. */
protected Resolved(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> factories, TypeDescription throwableType, TypeDescription relocatableType, ClassReader classReader) { super(adviceMethod, factories, throwableType, relocatableType, OffsetMapping.Factory.AdviceType.INLINING); this.classReader = classReader; }
Resolves the initialization types of this advice method.
Params:
  • argumentHandler – The argument handler to use for resolving the initialization.
Returns:A mapping of parameter offsets to the type to initialize.
/** * Resolves the initialization types of this advice method. * * @param argumentHandler The argument handler to use for resolving the initialization. * @return A mapping of parameter offsets to the type to initialize. */
protected abstract Map<Integer, TypeDefinition> resolveInitializationTypes(ArgumentHandler argumentHandler);
Applies a resolution for a given instrumented method.
Params:
  • methodVisitor – A method visitor for writing byte code to the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – A description of the instrumented method.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
Returns:A method visitor for visiting the advice method's byte code.
/** * Applies a resolution for a given instrumented method. * * @param methodVisitor A method visitor for writing byte code to the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod A description of the instrumented method. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. * @return A method visitor for visiting the advice method's byte code. */
protected abstract MethodVisitor apply(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler);
A bound advice method that copies the code by first extracting the exception table and later appending the code of the method without copying any meta data.
/** * A bound advice method that copies the code by first extracting the exception table and later appending the * code of the method without copying any meta data. */
protected class AdviceMethodInliner extends ClassVisitor implements Bound {
A description of the instrumented type.
/** * A description of the instrumented type. */
protected final TypeDescription instrumentedType;
The instrumented method.
/** * The instrumented method. */
protected final MethodDescription instrumentedMethod;
The method visitor for writing the instrumented method.
/** * The method visitor for writing the instrumented method. */
protected final MethodVisitor methodVisitor;
The implementation context to use.
/** * The implementation context to use. */
protected final Implementation.Context implementationContext;
The assigner to use.
/** * The assigner to use. */
protected final Assigner assigner;
A handler for accessing values on the local variable array.
/** * A handler for accessing values on the local variable array. */
protected final ArgumentHandler.ForInstrumentedMethod argumentHandler;
A handler for computing the method size requirements.
/** * A handler for computing the method size requirements. */
protected final MethodSizeHandler.ForInstrumentedMethod methodSizeHandler;
A handler for translating and injecting stack map frames.
/** * A handler for translating and injecting stack map frames. */
protected final StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler;
A bound suppression handler that is used for suppressing exceptions of this advice method.
/** * A bound suppression handler that is used for suppressing exceptions of this advice method. */
protected final SuppressionHandler.Bound suppressionHandler;
A bound relocation handler that is responsible for considering a non-standard control flow.
/** * A bound relocation handler that is responsible for considering a non-standard control flow. */
protected final RelocationHandler.Bound relocationHandler;
A class reader for parsing the class file containing the represented advice method.
/** * A class reader for parsing the class file containing the represented advice method. */
protected final ClassReader classReader;
The labels that were found during parsing the method's exception handler in the order of their discovery.
/** * The labels that were found during parsing the method's exception handler in the order of their discovery. */
protected final List<Label> labels;
Creates a new advice method inliner.
Params:
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method.
  • methodVisitor – The method visitor for writing the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
  • classReader – A class reader for parsing the class file containing the represented advice method.
/** * Creates a new advice method inliner. * * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method. * @param methodVisitor The method visitor for writing the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. * @param classReader A class reader for parsing the class file containing the represented advice method. */
protected AdviceMethodInliner(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler, ClassReader classReader) { super(OpenedClassReader.ASM_API); this.instrumentedType = instrumentedType; this.instrumentedMethod = instrumentedMethod; this.methodVisitor = methodVisitor; this.implementationContext = implementationContext; this.assigner = assigner; this.argumentHandler = argumentHandler; this.methodSizeHandler = methodSizeHandler; this.stackMapFrameHandler = stackMapFrameHandler; this.suppressionHandler = suppressionHandler; this.classReader = classReader; this.relocationHandler = relocationHandler; labels = new ArrayList<Label>(); }
{@inheritDoc}
/** * {@inheritDoc} */
public void prepare() { classReader.accept(new ExceptionTableExtractor(), ClassReader.SKIP_FRAMES | ClassReader.SKIP_DEBUG); suppressionHandler.onPrepare(methodVisitor); }
{@inheritDoc}
/** * {@inheritDoc} */
public void initialize() { for (Map.Entry<Integer, TypeDefinition> typeDefinition : resolveInitializationTypes(argumentHandler).entrySet()) { if (typeDefinition.getValue().represents(boolean.class) || typeDefinition.getValue().represents(byte.class) || typeDefinition.getValue().represents(short.class) || typeDefinition.getValue().represents(char.class) || typeDefinition.getValue().represents(int.class)) { methodVisitor.visitInsn(Opcodes.ICONST_0); methodVisitor.visitVarInsn(Opcodes.ISTORE, typeDefinition.getKey()); } else if (typeDefinition.getValue().represents(long.class)) { methodVisitor.visitInsn(Opcodes.LCONST_0); methodVisitor.visitVarInsn(Opcodes.LSTORE, typeDefinition.getKey()); } else if (typeDefinition.getValue().represents(float.class)) { methodVisitor.visitInsn(Opcodes.FCONST_0); methodVisitor.visitVarInsn(Opcodes.FSTORE, typeDefinition.getKey()); } else if (typeDefinition.getValue().represents(double.class)) { methodVisitor.visitInsn(Opcodes.DCONST_0); methodVisitor.visitVarInsn(Opcodes.DSTORE, typeDefinition.getKey()); } else { methodVisitor.visitInsn(Opcodes.ACONST_NULL); methodVisitor.visitVarInsn(Opcodes.ASTORE, typeDefinition.getKey()); } methodSizeHandler.requireStackSize(typeDefinition.getValue().getStackSize().getSize()); } }
{@inheritDoc}
/** * {@inheritDoc} */
public void apply() { classReader.accept(this, ClassReader.SKIP_DEBUG | stackMapFrameHandler.getReaderHint()); } @Override public MethodVisitor visitMethod(int modifiers, String internalName, String descriptor, String signature, String[] exception) { return adviceMethod.getInternalName().equals(internalName) && adviceMethod.getDescriptor().equals(descriptor) ? new ExceptionTableSubstitutor(Inlining.Resolved.this.apply(methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, instrumentedType, instrumentedMethod, suppressionHandler, relocationHandler)) : IGNORE_METHOD; }
A class visitor that extracts the exception tables of the advice method.
/** * A class visitor that extracts the exception tables of the advice method. */
protected class ExceptionTableExtractor extends ClassVisitor {
Creates a new exception table extractor.
/** * Creates a new exception table extractor. */
protected ExceptionTableExtractor() { super(OpenedClassReader.ASM_API); } @Override public MethodVisitor visitMethod(int modifiers, String internalName, String descriptor, String signature, String[] exception) { return adviceMethod.getInternalName().equals(internalName) && adviceMethod.getDescriptor().equals(descriptor) ? new ExceptionTableCollector(methodVisitor) : IGNORE_METHOD; } }
A visitor that only writes try-catch-finally blocks to the supplied method visitor. All labels of these tables are collected for substitution when revisiting the reminder of the method.
/** * A visitor that only writes try-catch-finally blocks to the supplied method visitor. All labels of these tables are collected * for substitution when revisiting the reminder of the method. */
protected class ExceptionTableCollector extends MethodVisitor {
The method visitor for which the try-catch-finally blocks should be written.
/** * The method visitor for which the try-catch-finally blocks should be written. */
private final MethodVisitor methodVisitor;
Creates a new exception table collector.
Params:
  • methodVisitor – The method visitor for which the try-catch-finally blocks should be written.
/** * Creates a new exception table collector. * * @param methodVisitor The method visitor for which the try-catch-finally blocks should be written. */
protected ExceptionTableCollector(MethodVisitor methodVisitor) { super(OpenedClassReader.ASM_API); this.methodVisitor = methodVisitor; } @Override public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { methodVisitor.visitTryCatchBlock(start, end, handler, type); labels.addAll(Arrays.asList(start, end, handler)); } @Override public AnnotationVisitor visitTryCatchAnnotation(int typeReference, TypePath typePath, String descriptor, boolean visible) { return methodVisitor.visitTryCatchAnnotation(typeReference, typePath, descriptor, visible); } }
A label substitutor allows to visit an advice method a second time after the exception handlers were already written. Doing so, this visitor substitutes all labels that were already created during the first visit to keep the mapping consistent. It is not required to resolve labels for non-code instructions as meta information is not propagated to the target method visitor for advice code.
/** * A label substitutor allows to visit an advice method a second time after the exception handlers were already written. * Doing so, this visitor substitutes all labels that were already created during the first visit to keep the mapping * consistent. It is not required to resolve labels for non-code instructions as meta information is not propagated to * the target method visitor for advice code. */
protected class ExceptionTableSubstitutor extends MethodVisitor {
A map containing resolved substitutions.
/** * A map containing resolved substitutions. */
private final Map<Label, Label> substitutions;
The current index of the visited labels that are used for try-catch-finally blocks.
/** * The current index of the visited labels that are used for try-catch-finally blocks. */
private int index;
Creates a label substitutor.
Params:
  • methodVisitor – The method visitor for which to substitute labels.
/** * Creates a label substitutor. * * @param methodVisitor The method visitor for which to substitute labels. */
protected ExceptionTableSubstitutor(MethodVisitor methodVisitor) { super(OpenedClassReader.ASM_API, methodVisitor); substitutions = new IdentityHashMap<Label, Label>(); } @Override public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { substitutions.put(start, labels.get(index++)); substitutions.put(end, labels.get(index++)); Label actualHandler = labels.get(index++); substitutions.put(handler, actualHandler); ((CodeTranslationVisitor) mv).propagateHandler(actualHandler); } @Override public AnnotationVisitor visitTryCatchAnnotation(int typeReference, TypePath typePath, String descriptor, boolean visible) { return IGNORE_ANNOTATION; } @Override public void visitLabel(Label label) { super.visitLabel(resolve(label)); } @Override public void visitJumpInsn(int opcode, Label label) { super.visitJumpInsn(opcode, resolve(label)); } @Override public void visitTableSwitchInsn(int minimum, int maximum, Label defaultOption, Label... label) { super.visitTableSwitchInsn(minimum, maximum, defaultOption, resolve(label)); } @Override public void visitLookupSwitchInsn(Label defaultOption, int[] keys, Label[] label) { super.visitLookupSwitchInsn(resolve(defaultOption), keys, resolve(label)); }
Resolves an array of labels.
Params:
  • label – The labels to resolved.
Returns:An array containing the resolved arrays.
/** * Resolves an array of labels. * * @param label The labels to resolved. * @return An array containing the resolved arrays. */
private Label[] resolve(Label[] label) { Label[] resolved = new Label[label.length]; int index = 0; for (Label aLabel : label) { resolved[index++] = resolve(aLabel); } return resolved; }
Resolves a single label if mapped or returns the original label.
Params:
  • label – The label to resolve.
Returns:The resolved label.
/** * Resolves a single label if mapped or returns the original label. * * @param label The label to resolve. * @return The resolved label. */
private Label resolve(Label label) { Label substitution = substitutions.get(label); return substitution == null ? label : substitution; } } }
A resolved dispatcher for implementing method enter advice.
/** * A resolved dispatcher for implementing method enter advice. */
@HashCodeAndEqualsPlugin.Enhance protected abstract static class ForMethodEnter extends Inlining.Resolved implements Dispatcher.Resolved.ForMethodEnter {
A mapping of all available local variables by their name to their type.
/** * A mapping of all available local variables by their name to their type. */
private final Map<String, TypeDefinition> namedTypes;
true if the first discovered line number information should be prepended to the advice code.
/** * {@code true} if the first discovered line number information should be prepended to the advice code. */
private final boolean prependLineNumber;
Creates a new resolved dispatcher for implementing method enter advice.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
  • classReader – A class reader to query for the class file of the advice method.
/** * Creates a new resolved dispatcher for implementing method enter advice. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. * @param classReader A class reader to query for the class file of the advice method. */
@SuppressWarnings("unchecked") // In absence of @SafeVarargs protected ForMethodEnter(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType, ClassReader classReader) { super(adviceMethod, CompoundList.of(Arrays.asList(OffsetMapping.ForArgument.Unresolved.Factory.INSTANCE, OffsetMapping.ForAllArguments.Factory.INSTANCE, OffsetMapping.ForThisReference.Factory.INSTANCE, OffsetMapping.ForField.Unresolved.Factory.INSTANCE, OffsetMapping.ForOrigin.Factory.INSTANCE, OffsetMapping.ForUnusedValue.Factory.INSTANCE, OffsetMapping.ForStubValue.INSTANCE, OffsetMapping.ForThrowable.Factory.INSTANCE, OffsetMapping.ForExitValue.Factory.of(exitType), new OffsetMapping.ForLocalValue.Factory(namedTypes), new OffsetMapping.Factory.Illegal<Thrown>(Thrown.class), new OffsetMapping.Factory.Illegal<Enter>(Enter.class), new OffsetMapping.Factory.Illegal<Return>(Return.class)), userFactories), adviceMethod.getDeclaredAnnotations().ofType(OnMethodEnter.class).getValue(SUPPRESS_ENTER).resolve(TypeDescription.class), adviceMethod.getDeclaredAnnotations().ofType(OnMethodEnter.class).getValue(SKIP_ON).resolve(TypeDescription.class), classReader); this.namedTypes = namedTypes; prependLineNumber = adviceMethod.getDeclaredAnnotations().ofType(OnMethodEnter.class).getValue(PREPEND_LINE_NUMBER).resolve(Boolean.class); }
Resolves enter advice that only exposes the enter type if this is necessary.
Params:
  • adviceMethod – The advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
  • classReader – The class reader for parsing the advice method's class file.
  • methodExit – true if exit advice is applied.
Returns:An appropriate enter handler.
/** * Resolves enter advice that only exposes the enter type if this is necessary. * * @param adviceMethod The advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. * @param classReader The class reader for parsing the advice method's class file. * @param methodExit {@code true} if exit advice is applied. * @return An appropriate enter handler. */
protected static Resolved.ForMethodEnter of(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType, ClassReader classReader, boolean methodExit) { return methodExit ? new WithRetainedEnterType(adviceMethod, namedTypes, userFactories, exitType, classReader) : new WithDiscardedEnterType(adviceMethod, namedTypes, userFactories, exitType, classReader); } @Override protected Map<Integer, TypeDefinition> resolveInitializationTypes(ArgumentHandler argumentHandler) { SortedMap<Integer, TypeDefinition> namedTypes = new TreeMap<Integer, TypeDefinition>(); for (Map.Entry<String, TypeDefinition> entry : this.namedTypes.entrySet()) { namedTypes.put(argumentHandler.named(entry.getKey()), entry.getValue()); } return namedTypes; }
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation) { return new AdviceMethodInliner(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler.bind(exceptionHandler), relocationHandler.bind(instrumentedMethod, relocation), classReader); }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isPrependLineNumber() { return prependLineNumber; }
{@inheritDoc}
/** * {@inheritDoc} */
public Map<String, TypeDefinition> getNamedTypes() { return namedTypes; } @Override protected MethodVisitor apply(MethodVisitor methodVisitor, Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { return doApply(methodVisitor, implementationContext, assigner, argumentHandler.bindEnter(adviceMethod), methodSizeHandler.bindEnter(adviceMethod), stackMapFrameHandler.bindEnter(adviceMethod), instrumentedType, instrumentedMethod, suppressionHandler, relocationHandler); }
Applies a resolution for a given instrumented method.
Params:
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method that is being bound.
  • methodVisitor – The method visitor for writing to the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – The bound suppression handler to use.
  • relocationHandler – The bound relocation handler to use.
Returns:A method visitor for visiting the advice method's byte code.
/** * Applies a resolution for a given instrumented method. * * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method that is being bound. * @param methodVisitor The method visitor for writing to the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler The bound suppression handler to use. * @param relocationHandler The bound relocation handler to use. * @return A method visitor for visiting the advice method's byte code. */
protected MethodVisitor doApply(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { Map<Integer, OffsetMapping.Target> offsetMappings = new HashMap<Integer, OffsetMapping.Target>(); for (Map.Entry<Integer, OffsetMapping> entry : this.offsetMappings.entrySet()) { offsetMappings.put(entry.getKey(), entry.getValue().resolve(instrumentedType, instrumentedMethod, assigner, argumentHandler, OffsetMapping.Sort.ENTER)); } return new CodeTranslationVisitor.ForMethodEnter(methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, instrumentedMethod, adviceMethod, offsetMappings, suppressionHandler, relocationHandler); }
Implementation of an advice that does expose an enter type.
/** * Implementation of an advice that does expose an enter type. */
protected static class WithRetainedEnterType extends Inlining.Resolved.ForMethodEnter {
Creates a new resolved dispatcher for implementing method enter advice that does expose the enter type.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
  • classReader – A class reader to query for the class file of the advice method.
/** * Creates a new resolved dispatcher for implementing method enter advice that does expose the enter type. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. * @param classReader A class reader to query for the class file of the advice method. */
protected WithRetainedEnterType(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType, ClassReader classReader) { super(adviceMethod, namedTypes, userFactories, exitType, classReader); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDefinition getAdviceType() { return adviceMethod.getReturnType(); } }
Implementation of an advice that does not expose an enter type.
/** * Implementation of an advice that does not expose an enter type. */
protected static class WithDiscardedEnterType extends Inlining.Resolved.ForMethodEnter {
Creates a new resolved dispatcher for implementing method enter advice that does not expose the enter type.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
  • classReader – A class reader to query for the class file of the advice method.
/** * Creates a new resolved dispatcher for implementing method enter advice that does not expose the enter type. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. * @param classReader A class reader to query for the class file of the advice method. */
protected WithDiscardedEnterType(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType, ClassReader classReader) { super(adviceMethod, namedTypes, userFactories, exitType, classReader); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDefinition getAdviceType() { return TypeDescription.VOID; }
{@inheritDoc}
/** * {@inheritDoc} */
protected MethodVisitor doApply(MethodVisitor methodVisitor, Context implementationContext, Assigner assigner, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { methodSizeHandler.requireLocalVariableLengthPadding(adviceMethod.getReturnType().getStackSize().getSize()); return super.doApply(methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, instrumentedType, instrumentedMethod, suppressionHandler, relocationHandler); } } }
A resolved dispatcher for implementing method exit advice.
/** * A resolved dispatcher for implementing method exit advice. */
@HashCodeAndEqualsPlugin.Enhance protected abstract static class ForMethodExit extends Inlining.Resolved implements Dispatcher.Resolved.ForMethodExit {
true if the arguments of the instrumented method should be copied before executing the instrumented method.
/** * {@code true} if the arguments of the instrumented method should be copied before executing the instrumented method. */
private final boolean backupArguments;
Creates a new resolved dispatcher for implementing method exit advice.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • classReader – The class reader for parsing the advice method's class file.
  • enterType – The type of the value supplied by the enter advice method or void if no such value exists.
/** * Creates a new resolved dispatcher for implementing method exit advice. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param classReader The class reader for parsing the advice method's class file. * @param enterType The type of the value supplied by the enter advice method or {@code void} if no such value exists. */
@SuppressWarnings("unchecked") protected ForMethodExit(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, TypeDefinition enterType) { super(adviceMethod, CompoundList.of(Arrays.asList(OffsetMapping.ForArgument.Unresolved.Factory.INSTANCE, OffsetMapping.ForAllArguments.Factory.INSTANCE, OffsetMapping.ForThisReference.Factory.INSTANCE, OffsetMapping.ForField.Unresolved.Factory.INSTANCE, OffsetMapping.ForOrigin.Factory.INSTANCE, OffsetMapping.ForUnusedValue.Factory.INSTANCE, OffsetMapping.ForStubValue.INSTANCE, OffsetMapping.ForEnterValue.Factory.of(enterType), OffsetMapping.ForExitValue.Factory.of(adviceMethod.getReturnType()), new OffsetMapping.ForLocalValue.Factory(namedTypes), OffsetMapping.ForReturnValue.Factory.INSTANCE, OffsetMapping.ForThrowable.Factory.of(adviceMethod) ), userFactories), adviceMethod.getDeclaredAnnotations().ofType(OnMethodExit.class).getValue(SUPPRESS_EXIT).resolve(TypeDescription.class), adviceMethod.getDeclaredAnnotations().ofType(OnMethodExit.class).getValue(REPEAT_ON).resolve(TypeDescription.class), classReader); backupArguments = adviceMethod.getDeclaredAnnotations().ofType(OnMethodExit.class).getValue(BACKUP_ARGUMENTS).resolve(Boolean.class); }
Resolves exit advice that handles exceptions depending on the specification of the exit advice.
Params:
  • adviceMethod – The advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • classReader – The class reader for parsing the advice method's class file.
  • enterType – The type of the value supplied by the enter advice method or void if no such value exists.
Returns:An appropriate exit handler.
/** * Resolves exit advice that handles exceptions depending on the specification of the exit advice. * * @param adviceMethod The advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param classReader The class reader for parsing the advice method's class file. * @param enterType The type of the value supplied by the enter advice method or {@code void} if no such value exists. * @return An appropriate exit handler. */
protected static Resolved.ForMethodExit of(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, TypeDefinition enterType) { TypeDescription throwable = adviceMethod.getDeclaredAnnotations() .ofType(OnMethodExit.class) .getValue(ON_THROWABLE).resolve(TypeDescription.class); return throwable.represents(NoExceptionHandler.class) ? new WithoutExceptionHandler(adviceMethod, namedTypes, userFactories, classReader, enterType) : new WithExceptionHandler(adviceMethod, namedTypes, userFactories, classReader, enterType, throwable); } @Override protected Map<Integer, TypeDefinition> resolveInitializationTypes(ArgumentHandler argumentHandler) { return adviceMethod.getReturnType().represents(void.class) ? Collections.<Integer, TypeDefinition>emptyMap() : Collections.<Integer, TypeDefinition>singletonMap(argumentHandler.exit(), adviceMethod.getReturnType()); } @Override protected MethodVisitor apply(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { return doApply(methodVisitor, implementationContext, assigner, argumentHandler.bindExit(adviceMethod, getThrowable().represents(NoExceptionHandler.class)), methodSizeHandler.bindExit(adviceMethod), stackMapFrameHandler.bindExit(adviceMethod), instrumentedType, instrumentedMethod, suppressionHandler, relocationHandler); }
Applies a resolution for a given instrumented method.
Params:
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method that is being bound.
  • methodVisitor – The method visitor for writing to the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – The bound suppression handler to use.
  • relocationHandler – The bound relocation handler to use.
Returns:A method visitor for visiting the advice method's byte code.
/** * Applies a resolution for a given instrumented method. * * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method that is being bound. * @param methodVisitor The method visitor for writing to the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler The bound suppression handler to use. * @param relocationHandler The bound relocation handler to use. * @return A method visitor for visiting the advice method's byte code. */
private MethodVisitor doApply(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { Map<Integer, OffsetMapping.Target> offsetMappings = new HashMap<Integer, OffsetMapping.Target>(); for (Map.Entry<Integer, OffsetMapping> entry : this.offsetMappings.entrySet()) { offsetMappings.put(entry.getKey(), entry.getValue().resolve(instrumentedType, instrumentedMethod, assigner, argumentHandler, OffsetMapping.Sort.EXIT)); } return new CodeTranslationVisitor.ForMethodExit(methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, instrumentedMethod, adviceMethod, offsetMappings, suppressionHandler, relocationHandler); }
{@inheritDoc}
/** * {@inheritDoc} */
public ArgumentHandler.Factory getArgumentHandlerFactory() { return backupArguments ? ArgumentHandler.Factory.COPYING : ArgumentHandler.Factory.SIMPLE; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDefinition getAdviceType() { return adviceMethod.getReturnType(); }
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation) { return new AdviceMethodInliner(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler.bind(exceptionHandler), relocationHandler.bind(instrumentedMethod, relocation), classReader); }
Implementation of exit advice that handles exceptions.
/** * Implementation of exit advice that handles exceptions. */
@HashCodeAndEqualsPlugin.Enhance protected static class WithExceptionHandler extends Inlining.Resolved.ForMethodExit {
The type of the handled throwable type for which this advice is invoked.
/** * The type of the handled throwable type for which this advice is invoked. */
private final TypeDescription throwable;
Creates a new resolved dispatcher for implementing method exit advice that handles exceptions.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • classReader – The class reader for parsing the advice method's class file.
  • enterType – The type of the value supplied by the enter advice method or a description of void if no such value exists.
  • throwable – The type of the handled throwable type for which this advice is invoked.
/** * Creates a new resolved dispatcher for implementing method exit advice that handles exceptions. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param classReader The class reader for parsing the advice method's class file. * @param enterType The type of the value supplied by the enter advice method or * a description of {@code void} if no such value exists. * @param throwable The type of the handled throwable type for which this advice is invoked. */
protected WithExceptionHandler(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, TypeDefinition enterType, TypeDescription throwable) { super(adviceMethod, namedTypes, userFactories, classReader, enterType); this.throwable = throwable; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getThrowable() { return throwable; } }
Implementation of exit advice that ignores exceptions.
/** * Implementation of exit advice that ignores exceptions. */
protected static class WithoutExceptionHandler extends Inlining.Resolved.ForMethodExit {
Creates a new resolved dispatcher for implementing method exit advice that does not handle exceptions.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • classReader – A class reader to query for the class file of the advice method.
  • enterType – The type of the value supplied by the enter advice method or a description of void if no such value exists.
/** * Creates a new resolved dispatcher for implementing method exit advice that does not handle exceptions. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param classReader A class reader to query for the class file of the advice method. * @param enterType The type of the value supplied by the enter advice method or * a description of {@code void} if no such value exists. */
protected WithoutExceptionHandler(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, TypeDefinition enterType) { super(adviceMethod, namedTypes, userFactories, classReader, enterType); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getThrowable() { return NoExceptionHandler.DESCRIPTION; } } } }
A visitor for translating an advice method's byte code for inlining into the instrumented method.
/** * A visitor for translating an advice method's byte code for inlining into the instrumented method. */
protected abstract static class CodeTranslationVisitor extends MethodVisitor {
The original method visitor to which all instructions are eventually written to.
/** * The original method visitor to which all instructions are eventually written to. */
protected final MethodVisitor methodVisitor;
The implementation context to use.
/** * The implementation context to use. */
protected final Context implementationContext;
A handler for accessing values on the local variable array.
/** * A handler for accessing values on the local variable array. */
protected final ArgumentHandler.ForAdvice argumentHandler;
A handler for computing the method size requirements.
/** * A handler for computing the method size requirements. */
protected final MethodSizeHandler.ForAdvice methodSizeHandler;
A handler for translating and injecting stack map frames.
/** * A handler for translating and injecting stack map frames. */
protected final StackMapFrameHandler.ForAdvice stackMapFrameHandler;
The advice method.
/** * The advice method. */
protected final MethodDescription.InDefinedShape adviceMethod;
A mapping of offsets to resolved target offsets in the instrumented method.
/** * A mapping of offsets to resolved target offsets in the instrumented method. */
private final Map<Integer, OffsetMapping.Target> offsetMappings;
A bound suppression handler that is used for suppressing exceptions of this advice method.
/** * A bound suppression handler that is used for suppressing exceptions of this advice method. */
private final SuppressionHandler.Bound suppressionHandler;
A bound relocation handler that is responsible for considering a non-standard control flow.
/** * A bound relocation handler that is responsible for considering a non-standard control flow. */
private final RelocationHandler.Bound relocationHandler;
A label indicating the end of the advice byte code.
/** * A label indicating the end of the advice byte code. */
protected final Label endOfMethod;
Creates a new code translation visitor.
Params:
  • methodVisitor – A method visitor for writing the instrumented method's byte code.
  • implementationContext – The implementation context to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • instrumentedMethod – The instrumented method.
  • adviceMethod – The advice method.
  • offsetMappings – A mapping of offsets to resolved target offsets in the instrumented method.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
/** * Creates a new code translation visitor. * * @param methodVisitor A method visitor for writing the instrumented method's byte code. * @param implementationContext The implementation context to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param instrumentedMethod The instrumented method. * @param adviceMethod The advice method. * @param offsetMappings A mapping of offsets to resolved target offsets in the instrumented method. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. */
protected CodeTranslationVisitor(MethodVisitor methodVisitor, Context implementationContext, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, MethodDescription instrumentedMethod, MethodDescription.InDefinedShape adviceMethod, Map<Integer, OffsetMapping.Target> offsetMappings, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { super(OpenedClassReader.ASM_API, new StackAwareMethodVisitor(methodVisitor, instrumentedMethod)); this.methodVisitor = methodVisitor; this.implementationContext = implementationContext; this.argumentHandler = argumentHandler; this.methodSizeHandler = methodSizeHandler; this.stackMapFrameHandler = stackMapFrameHandler; this.adviceMethod = adviceMethod; this.offsetMappings = offsetMappings; this.suppressionHandler = suppressionHandler; this.relocationHandler = relocationHandler; endOfMethod = new Label(); }
Propagates a label for an exception handler that is typically suppressed by the overlaying ExceptionTableSubstitutor.
Params:
  • label – The label to register as a target for an exception handler.
/** * Propagates a label for an exception handler that is typically suppressed by the overlaying * {@link Resolved.AdviceMethodInliner.ExceptionTableSubstitutor}. * * @param label The label to register as a target for an exception handler. */
protected void propagateHandler(Label label) { ((StackAwareMethodVisitor) mv).register(label, Collections.singletonList(StackSize.SINGLE)); } @Override public void visitParameter(String name, int modifiers) { /* do nothing */ } @Override public void visitAnnotableParameterCount(int count, boolean visible) { /* do nothing */ } @Override public AnnotationVisitor visitAnnotationDefault() { return IGNORE_ANNOTATION; } @Override public AnnotationVisitor visitAnnotation(String descriptor, boolean visible) { return IGNORE_ANNOTATION; } @Override public AnnotationVisitor visitTypeAnnotation(int typeReference, TypePath typePath, String descriptor, boolean visible) { return IGNORE_ANNOTATION; } @Override public AnnotationVisitor visitParameterAnnotation(int index, String descriptor, boolean visible) { return IGNORE_ANNOTATION; } @Override public void visitAttribute(Attribute attribute) { /* do nothing */ } @Override public void visitCode() { suppressionHandler.onStart(methodVisitor); } @Override public void visitFrame(int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { stackMapFrameHandler.translateFrame(methodVisitor, type, localVariableLength, localVariable, stackSize, stack); } @Override public void visitVarInsn(int opcode, int offset) { OffsetMapping.Target target = offsetMappings.get(offset); if (target != null) { StackManipulation stackManipulation; StackSize expectedGrowth; switch (opcode) { case Opcodes.ILOAD: case Opcodes.FLOAD: case Opcodes.ALOAD: stackManipulation = target.resolveRead(); expectedGrowth = StackSize.SINGLE; break; case Opcodes.DLOAD: case Opcodes.LLOAD: stackManipulation = target.resolveRead(); expectedGrowth = StackSize.DOUBLE; break; case Opcodes.ISTORE: case Opcodes.FSTORE: case Opcodes.ASTORE: case Opcodes.LSTORE: case Opcodes.DSTORE: stackManipulation = target.resolveWrite(); expectedGrowth = StackSize.ZERO; break; default: throw new IllegalStateException("Unexpected opcode: " + opcode); } methodSizeHandler.requireStackSizePadding(stackManipulation.apply(mv, implementationContext).getMaximalSize() - expectedGrowth.getSize()); } else { mv.visitVarInsn(opcode, argumentHandler.mapped(offset)); } } @Override public void visitIincInsn(int offset, int value) { OffsetMapping.Target target = offsetMappings.get(offset); if (target != null) { methodSizeHandler.requireStackSizePadding(target.resolveIncrement(value).apply(mv, implementationContext).getMaximalSize()); } else { mv.visitIincInsn(argumentHandler.mapped(offset), value); } } @Override public void visitInsn(int opcode) { switch (opcode) { case Opcodes.RETURN: ((StackAwareMethodVisitor) mv).drainStack(); break; case Opcodes.IRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.ISTORE, Opcodes.ILOAD, StackSize.SINGLE)); break; case Opcodes.ARETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.ASTORE, Opcodes.ALOAD, StackSize.SINGLE)); break; case Opcodes.FRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.FSTORE, Opcodes.FLOAD, StackSize.SINGLE)); break; case Opcodes.LRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.LSTORE, Opcodes.LLOAD, StackSize.DOUBLE)); break; case Opcodes.DRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.DSTORE, Opcodes.DLOAD, StackSize.DOUBLE)); break; default: mv.visitInsn(opcode); return; } mv.visitJumpInsn(Opcodes.GOTO, endOfMethod); } @Override public void visitEnd() { suppressionHandler.onEnd(methodVisitor, implementationContext, methodSizeHandler, stackMapFrameHandler, adviceMethod.getReturnType()); methodVisitor.visitLabel(endOfMethod); if (adviceMethod.getReturnType().represents(boolean.class) || adviceMethod.getReturnType().represents(byte.class) || adviceMethod.getReturnType().represents(short.class) || adviceMethod.getReturnType().represents(char.class) || adviceMethod.getReturnType().represents(int.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.ISTORE, getReturnValueOffset()); } else if (adviceMethod.getReturnType().represents(long.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.LSTORE, getReturnValueOffset()); } else if (adviceMethod.getReturnType().represents(float.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.FSTORE, getReturnValueOffset()); } else if (adviceMethod.getReturnType().represents(double.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.DSTORE, getReturnValueOffset()); } else if (!adviceMethod.getReturnType().represents(void.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.ASTORE, getReturnValueOffset()); } methodSizeHandler.requireStackSize(relocationHandler.apply(methodVisitor, getReturnValueOffset())); stackMapFrameHandler.injectCompletionFrame(methodVisitor); } @Override public void visitMaxs(int stackSize, int localVariableLength) { methodSizeHandler.recordMaxima(stackSize, localVariableLength); }
Resolves the offset of the advice method's local variable. The returned value is only valid if this advice method does not return void.
Returns:The offset of the represented advice method.
/** * Resolves the offset of the advice method's local variable. The returned value is only valid if * this advice method does not return {@code void}. * * @return The offset of the represented advice method. */
protected abstract int getReturnValueOffset();
A code translation visitor that retains the return value of the represented advice method.
/** * A code translation visitor that retains the return value of the represented advice method. */
protected static class ForMethodEnter extends CodeTranslationVisitor {
Creates a code translation visitor for translating exit advice.
Params:
  • methodVisitor – A method visitor for writing the instrumented method's byte code.
  • implementationContext – The implementation context to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • instrumentedMethod – The instrumented method.
  • adviceMethod – The advice method.
  • offsetMappings – A mapping of offsets to resolved target offsets in the instrumented method.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
/** * Creates a code translation visitor for translating exit advice. * * @param methodVisitor A method visitor for writing the instrumented method's byte code. * @param implementationContext The implementation context to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param instrumentedMethod The instrumented method. * @param adviceMethod The advice method. * @param offsetMappings A mapping of offsets to resolved target offsets in the instrumented method. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. */
protected ForMethodEnter(MethodVisitor methodVisitor, Context implementationContext, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, MethodDescription instrumentedMethod, MethodDescription.InDefinedShape adviceMethod, Map<Integer, OffsetMapping.Target> offsetMappings, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { super(methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, instrumentedMethod, adviceMethod, offsetMappings, suppressionHandler, relocationHandler); } @Override protected int getReturnValueOffset() { return argumentHandler.enter(); } }
A code translation visitor that discards the return value of the represented advice method.
/** * A code translation visitor that discards the return value of the represented advice method. */
protected static class ForMethodExit extends CodeTranslationVisitor {
Creates a code translation visitor for translating exit advice.
Params:
  • methodVisitor – A method visitor for writing the instrumented method's byte code.
  • implementationContext – The implementation context to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • instrumentedMethod – The instrumented method.
  • adviceMethod – The advice method.
  • offsetMappings – A mapping of offsets to resolved target offsets in the instrumented method.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
/** * Creates a code translation visitor for translating exit advice. * * @param methodVisitor A method visitor for writing the instrumented method's byte code. * @param implementationContext The implementation context to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param instrumentedMethod The instrumented method. * @param adviceMethod The advice method. * @param offsetMappings A mapping of offsets to resolved target offsets in the instrumented method. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. */
protected ForMethodExit(MethodVisitor methodVisitor, Implementation.Context implementationContext, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, MethodDescription instrumentedMethod, MethodDescription.InDefinedShape adviceMethod, Map<Integer, OffsetMapping.Target> offsetMappings, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { super(methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, instrumentedMethod, adviceMethod, offsetMappings, suppressionHandler, relocationHandler); } @Override protected int getReturnValueOffset() { return argumentHandler.exit(); } } } }
A dispatcher for an advice method that is being invoked from the instrumented method.
/** * A dispatcher for an advice method that is being invoked from the instrumented method. */
@HashCodeAndEqualsPlugin.Enhance class Delegating implements Unresolved {
The advice method.
/** * The advice method. */
protected final MethodDescription.InDefinedShape adviceMethod;
Creates a new delegating advice dispatcher.
Params:
  • adviceMethod – The advice method.
/** * Creates a new delegating advice dispatcher. * * @param adviceMethod The advice method. */
protected Delegating(MethodDescription.InDefinedShape adviceMethod) { this.adviceMethod = adviceMethod; }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isAlive() { return true; }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isBinary() { return false; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getAdviceType() { return adviceMethod.getReturnType().asErasure(); }
{@inheritDoc}
/** * {@inheritDoc} */
public Map<String, TypeDefinition> getNamedTypes() { return Collections.emptyMap(); }
{@inheritDoc}
/** * {@inheritDoc} */
public Dispatcher.Resolved.ForMethodEnter asMethodEnter(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodExit) { return Resolved.ForMethodEnter.of(adviceMethod, userFactories, methodExit.getAdviceType(), methodExit.isAlive()); }
{@inheritDoc}
/** * {@inheritDoc} */
public Dispatcher.Resolved.ForMethodExit asMethodExit(List<? extends OffsetMapping.Factory<?>> userFactories, ClassReader classReader, Unresolved methodEnter) { Map<String, TypeDefinition> namedTypes = methodEnter.getNamedTypes(); for (ParameterDescription parameterDescription : adviceMethod.getParameters().filter(isAnnotatedWith(Local.class))) { String name = parameterDescription.getDeclaredAnnotations().ofType(Local.class).loadSilent().value(); TypeDefinition typeDefinition = namedTypes.get(name); if (typeDefinition == null) { throw new IllegalStateException(adviceMethod + " attempts use of undeclared local variable " + name); } else if (!typeDefinition.equals(parameterDescription.getType())) { throw new IllegalStateException(adviceMethod + " does not read variable " + name + " as " + typeDefinition); } } return Resolved.ForMethodExit.of(adviceMethod, namedTypes, userFactories, methodEnter.getAdviceType()); }
A resolved version of a dispatcher.
/** * A resolved version of a dispatcher. */
protected abstract static class Resolved extends Dispatcher.Resolved.AbstractBase {
Creates a new resolved version of a dispatcher.
Params:
  • adviceMethod – The represented advice method.
  • factories – A list of factories to resolve for the parameters of the advice method.
  • throwableType – The type to handle by a suppression handler or NoExceptionHandler to not handle any exceptions.
  • relocatableType – The type to trigger a relocation of the method's control flow or void if no relocation should be executed.
/** * Creates a new resolved version of a dispatcher. * * @param adviceMethod The represented advice method. * @param factories A list of factories to resolve for the parameters of the advice method. * @param throwableType The type to handle by a suppression handler or {@link NoExceptionHandler} to not handle any exceptions. * @param relocatableType The type to trigger a relocation of the method's control flow or {@code void} if no relocation should be executed. */
protected Resolved(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> factories, TypeDescription throwableType, TypeDescription relocatableType) { super(adviceMethod, factories, throwableType, relocatableType, OffsetMapping.Factory.AdviceType.DELEGATION); }
{@inheritDoc}
/** * {@inheritDoc} */
public Bound bind(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation) { if (!adviceMethod.isVisibleTo(instrumentedType)) { throw new IllegalStateException(adviceMethod + " is not visible to " + instrumentedMethod.getDeclaringType()); } return resolve(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, exceptionHandler, relocation); }
Binds this dispatcher for resolution to a specific method.
Params:
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method that is being bound.
  • methodVisitor – The method visitor for writing to the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • relocation – A relocation to use with a relocation handler.
Returns:An appropriate bound advice dispatcher.
/** * Binds this dispatcher for resolution to a specific method. * * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method that is being bound. * @param methodVisitor The method visitor for writing to the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param relocation A relocation to use with a relocation handler. * @return An appropriate bound advice dispatcher. */
protected abstract Bound resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation);
A bound advice method that copies the code by first extracting the exception table and later appending the code of the method without copying any meta data.
/** * A bound advice method that copies the code by first extracting the exception table and later appending the * code of the method without copying any meta data. */
protected abstract static class AdviceMethodWriter implements Bound {
Indicates an empty local variable array which is not required for calling a method.
/** * Indicates an empty local variable array which is not required for calling a method. */
private static final int EMPTY = 0;
The advice method.
/** * The advice method. */
protected final MethodDescription.InDefinedShape adviceMethod;
The offset mappings available to this advice.
/** * The offset mappings available to this advice. */
private final List<OffsetMapping.Target> offsetMappings;
The method visitor for writing the instrumented method.
/** * The method visitor for writing the instrumented method. */
protected final MethodVisitor methodVisitor;
The implementation context to use.
/** * The implementation context to use. */
protected final Implementation.Context implementationContext;
A handler for accessing values on the local variable array.
/** * A handler for accessing values on the local variable array. */
protected final ArgumentHandler.ForAdvice argumentHandler;
A handler for computing the method size requirements.
/** * A handler for computing the method size requirements. */
protected final MethodSizeHandler.ForAdvice methodSizeHandler;
A handler for translating and injecting stack map frames.
/** * A handler for translating and injecting stack map frames. */
protected final StackMapFrameHandler.ForAdvice stackMapFrameHandler;
A bound suppression handler that is used for suppressing exceptions of this advice method.
/** * A bound suppression handler that is used for suppressing exceptions of this advice method. */
private final SuppressionHandler.Bound suppressionHandler;
A bound relocation handler that is responsible for considering a non-standard control flow.
/** * A bound relocation handler that is responsible for considering a non-standard control flow. */
private final RelocationHandler.Bound relocationHandler;
Creates a new advice method writer.
Params:
  • adviceMethod – The advice method.
  • offsetMappings – The offset mappings available to this advice.
  • methodVisitor – The method visitor for writing the instrumented method.
  • implementationContext – The implementation context to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
/** * Creates a new advice method writer. * * @param adviceMethod The advice method. * @param offsetMappings The offset mappings available to this advice. * @param methodVisitor The method visitor for writing the instrumented method. * @param implementationContext The implementation context to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. */
protected AdviceMethodWriter(MethodDescription.InDefinedShape adviceMethod, List<OffsetMapping.Target> offsetMappings, MethodVisitor methodVisitor, Context implementationContext, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { this.adviceMethod = adviceMethod; this.offsetMappings = offsetMappings; this.methodVisitor = methodVisitor; this.implementationContext = implementationContext; this.argumentHandler = argumentHandler; this.methodSizeHandler = methodSizeHandler; this.stackMapFrameHandler = stackMapFrameHandler; this.suppressionHandler = suppressionHandler; this.relocationHandler = relocationHandler; }
{@inheritDoc}
/** * {@inheritDoc} */
public void prepare() { suppressionHandler.onPrepare(methodVisitor); }
{@inheritDoc}
/** * {@inheritDoc} */
public void apply() { suppressionHandler.onStart(methodVisitor); int index = 0, currentStackSize = 0, maximumStackSize = 0; for (OffsetMapping.Target offsetMapping : offsetMappings) { currentStackSize += adviceMethod.getParameters().get(index++).getType().getStackSize().getSize(); maximumStackSize = Math.max(maximumStackSize, currentStackSize + offsetMapping.resolveRead() .apply(methodVisitor, implementationContext) .getMaximalSize()); } methodVisitor.visitMethodInsn(Opcodes.INVOKESTATIC, adviceMethod.getDeclaringType().getInternalName(), adviceMethod.getInternalName(), adviceMethod.getDescriptor(), false); suppressionHandler.onEndWithSkip(methodVisitor, implementationContext, methodSizeHandler, stackMapFrameHandler, adviceMethod.getReturnType()); if (adviceMethod.getReturnType().represents(boolean.class) || adviceMethod.getReturnType().represents(byte.class) || adviceMethod.getReturnType().represents(short.class) || adviceMethod.getReturnType().represents(char.class) || adviceMethod.getReturnType().represents(int.class)) { methodVisitor.visitVarInsn(Opcodes.ISTORE, getReturnValueOffset()); } else if (adviceMethod.getReturnType().represents(long.class)) { methodVisitor.visitVarInsn(Opcodes.LSTORE, getReturnValueOffset()); } else if (adviceMethod.getReturnType().represents(float.class)) { methodVisitor.visitVarInsn(Opcodes.FSTORE, getReturnValueOffset()); } else if (adviceMethod.getReturnType().represents(double.class)) { methodVisitor.visitVarInsn(Opcodes.DSTORE, getReturnValueOffset()); } else if (!adviceMethod.getReturnType().represents(void.class)) { methodVisitor.visitVarInsn(Opcodes.ASTORE, getReturnValueOffset()); } methodSizeHandler.requireStackSize(relocationHandler.apply(methodVisitor, getReturnValueOffset())); stackMapFrameHandler.injectCompletionFrame(methodVisitor); methodSizeHandler.recordMaxima(Math.max(maximumStackSize, adviceMethod.getReturnType().getStackSize().getSize()), EMPTY); }
Resolves the offset of the advice method's local variable. The returned value is only valid if this advice method does not return void.
Returns:The offset of the represented advice method.
/** * Resolves the offset of the advice method's local variable. The returned value is only valid if * this advice method does not return {@code void}. * * @return The offset of the represented advice method. */
protected abstract int getReturnValueOffset();
An advice method writer for a method enter.
/** * An advice method writer for a method enter. */
protected static class ForMethodEnter extends AdviceMethodWriter {
Creates a new advice method writer.
Params:
  • adviceMethod – The advice method.
  • offsetMappings – The offset mappings available to this advice.
  • methodVisitor – The method visitor for writing the instrumented method.
  • implementationContext – The implementation context to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
/** * Creates a new advice method writer. * * @param adviceMethod The advice method. * @param offsetMappings The offset mappings available to this advice. * @param methodVisitor The method visitor for writing the instrumented method. * @param implementationContext The implementation context to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. */
protected ForMethodEnter(MethodDescription.InDefinedShape adviceMethod, List<OffsetMapping.Target> offsetMappings, MethodVisitor methodVisitor, Implementation.Context implementationContext, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { super(adviceMethod, offsetMappings, methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler, relocationHandler); }
{@inheritDoc}
/** * {@inheritDoc} */
public void initialize() { /* do nothing */ } @Override protected int getReturnValueOffset() { return argumentHandler.enter(); } }
An advice method writer for a method exit.
/** * An advice method writer for a method exit. */
protected static class ForMethodExit extends AdviceMethodWriter {
Creates a new advice method writer.
Params:
  • adviceMethod – The advice method.
  • offsetMappings – The offset mappings available to this advice.
  • methodVisitor – The method visitor for writing the instrumented method.
  • implementationContext – The implementation context to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – A bound suppression handler that is used for suppressing exceptions of this advice method.
  • relocationHandler – A bound relocation handler that is responsible for considering a non-standard control flow.
/** * Creates a new advice method writer. * * @param adviceMethod The advice method. * @param offsetMappings The offset mappings available to this advice. * @param methodVisitor The method visitor for writing the instrumented method. * @param implementationContext The implementation context to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler A bound suppression handler that is used for suppressing exceptions of this advice method. * @param relocationHandler A bound relocation handler that is responsible for considering a non-standard control flow. */
protected ForMethodExit(MethodDescription.InDefinedShape adviceMethod, List<OffsetMapping.Target> offsetMappings, MethodVisitor methodVisitor, Implementation.Context implementationContext, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { super(adviceMethod, offsetMappings, methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler, relocationHandler); }
{@inheritDoc}
/** * {@inheritDoc} */
public void initialize() { if (adviceMethod.getReturnType().represents(boolean.class) || adviceMethod.getReturnType().represents(byte.class) || adviceMethod.getReturnType().represents(short.class) || adviceMethod.getReturnType().represents(char.class) || adviceMethod.getReturnType().represents(int.class)) { methodVisitor.visitInsn(Opcodes.ICONST_0); methodVisitor.visitVarInsn(Opcodes.ISTORE, argumentHandler.exit()); } else if (adviceMethod.getReturnType().represents(long.class)) { methodVisitor.visitInsn(Opcodes.LCONST_0); methodVisitor.visitVarInsn(Opcodes.LSTORE, argumentHandler.exit()); } else if (adviceMethod.getReturnType().represents(float.class)) { methodVisitor.visitInsn(Opcodes.FCONST_0); methodVisitor.visitVarInsn(Opcodes.FSTORE, argumentHandler.exit()); } else if (adviceMethod.getReturnType().represents(double.class)) { methodVisitor.visitInsn(Opcodes.DCONST_0); methodVisitor.visitVarInsn(Opcodes.DSTORE, argumentHandler.exit()); } else if (!adviceMethod.getReturnType().represents(void.class)) { methodVisitor.visitInsn(Opcodes.ACONST_NULL); methodVisitor.visitVarInsn(Opcodes.ASTORE, argumentHandler.exit()); } methodSizeHandler.requireStackSize(adviceMethod.getReturnType().getStackSize().getSize()); } @Override protected int getReturnValueOffset() { return argumentHandler.exit(); } } }
A resolved dispatcher for implementing method enter advice.
/** * A resolved dispatcher for implementing method enter advice. */
@HashCodeAndEqualsPlugin.Enhance protected abstract static class ForMethodEnter extends Delegating.Resolved implements Dispatcher.Resolved.ForMethodEnter {
true if the first discovered line number information should be prepended to the advice code.
/** * {@code true} if the first discovered line number information should be prepended to the advice code. */
private final boolean prependLineNumber;
Creates a new resolved dispatcher for implementing method enter advice.
Params:
  • adviceMethod – The represented advice method.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
/** * Creates a new resolved dispatcher for implementing method enter advice. * * @param adviceMethod The represented advice method. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. */
@SuppressWarnings("unchecked") // In absence of @SafeVarargs protected ForMethodEnter(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType) { super(adviceMethod, CompoundList.of(Arrays.asList(OffsetMapping.ForArgument.Unresolved.Factory.INSTANCE, OffsetMapping.ForAllArguments.Factory.INSTANCE, OffsetMapping.ForThisReference.Factory.INSTANCE, OffsetMapping.ForField.Unresolved.Factory.INSTANCE, OffsetMapping.ForOrigin.Factory.INSTANCE, OffsetMapping.ForUnusedValue.Factory.INSTANCE, OffsetMapping.ForStubValue.INSTANCE, OffsetMapping.ForExitValue.Factory.of(exitType), new OffsetMapping.Factory.Illegal<Thrown>(Thrown.class), new OffsetMapping.Factory.Illegal<Enter>(Enter.class), new OffsetMapping.Factory.Illegal<Local>(Local.class), new OffsetMapping.Factory.Illegal<Return>(Return.class)), userFactories), adviceMethod.getDeclaredAnnotations().ofType(OnMethodEnter.class).getValue(SUPPRESS_ENTER).resolve(TypeDescription.class), adviceMethod.getDeclaredAnnotations().ofType(OnMethodEnter.class).getValue(SKIP_ON).resolve(TypeDescription.class)); prependLineNumber = adviceMethod.getDeclaredAnnotations().ofType(OnMethodEnter.class).getValue(PREPEND_LINE_NUMBER).resolve(Boolean.class); }
Resolves enter advice that only exposes the enter type if this is necessary.
Params:
  • adviceMethod – The advice method.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
  • methodExit – true if exit advice is applied.
Returns:An appropriate enter handler.
/** * Resolves enter advice that only exposes the enter type if this is necessary. * * @param adviceMethod The advice method. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. * @param methodExit {@code true} if exit advice is applied. * @return An appropriate enter handler. */
protected static Resolved.ForMethodEnter of(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType, boolean methodExit) { return methodExit ? new WithRetainedEnterType(adviceMethod, userFactories, exitType) : new WithDiscardedEnterType(adviceMethod, userFactories, exitType); }
{@inheritDoc}
/** * {@inheritDoc} */
public boolean isPrependLineNumber() { return prependLineNumber; }
{@inheritDoc}
/** * {@inheritDoc} */
public Map<String, TypeDefinition> getNamedTypes() { return Collections.emptyMap(); } @Override protected Bound resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation) { return doResolve(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler.bindEnter(adviceMethod), methodSizeHandler.bindEnter(adviceMethod), stackMapFrameHandler.bindEnter(adviceMethod), suppressionHandler.bind(exceptionHandler), relocationHandler.bind(instrumentedMethod, relocation)); }
Binds this dispatcher for resolution to a specific method.
Params:
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method that is being bound.
  • methodVisitor – The method visitor for writing to the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – The bound suppression handler to use.
  • relocationHandler – The bound relocation handler to use.
Returns:An appropriate bound advice dispatcher.
/** * Binds this dispatcher for resolution to a specific method. * * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method that is being bound. * @param methodVisitor The method visitor for writing to the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler The bound suppression handler to use. * @param relocationHandler The bound relocation handler to use. * @return An appropriate bound advice dispatcher. */
protected Bound doResolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { List<OffsetMapping.Target> offsetMappings = new ArrayList<OffsetMapping.Target>(this.offsetMappings.size()); for (OffsetMapping offsetMapping : this.offsetMappings.values()) { offsetMappings.add(offsetMapping.resolve(instrumentedType, instrumentedMethod, assigner, argumentHandler, OffsetMapping.Sort.ENTER)); } return new AdviceMethodWriter.ForMethodEnter(adviceMethod, offsetMappings, methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler, relocationHandler); }
Implementation of an advice that does expose an enter type.
/** * Implementation of an advice that does expose an enter type. */
protected static class WithRetainedEnterType extends Delegating.Resolved.ForMethodEnter {
Creates a new resolved dispatcher for implementing method enter advice that does expose the enter type.
Params:
  • adviceMethod – The represented advice method.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
/** * Creates a new resolved dispatcher for implementing method enter advice that does expose the enter type. * * @param adviceMethod The represented advice method. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. */
protected WithRetainedEnterType(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType) { super(adviceMethod, userFactories, exitType); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDefinition getAdviceType() { return adviceMethod.getReturnType(); } }
Implementation of an advice that does not expose an enter type.
/** * Implementation of an advice that does not expose an enter type. */
protected static class WithDiscardedEnterType extends Delegating.Resolved.ForMethodEnter {
Creates a new resolved dispatcher for implementing method enter advice that does not expose the enter type.
Params:
  • adviceMethod – The represented advice method.
  • userFactories – A list of user-defined factories for offset mappings.
  • exitType – The exit type or void if no exit type is defined.
/** * Creates a new resolved dispatcher for implementing method enter advice that does not expose the enter type. * * @param adviceMethod The represented advice method. * @param userFactories A list of user-defined factories for offset mappings. * @param exitType The exit type or {@code void} if no exit type is defined. */
protected WithDiscardedEnterType(MethodDescription.InDefinedShape adviceMethod, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition exitType) { super(adviceMethod, userFactories, exitType); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDefinition getAdviceType() { return TypeDescription.VOID; }
{@inheritDoc}
/** * {@inheritDoc} */
protected Bound doResolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Context implementationContext, Assigner assigner, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { methodSizeHandler.requireLocalVariableLengthPadding(adviceMethod.getReturnType().getStackSize().getSize()); return super.doResolve(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler, relocationHandler); } } }
A resolved dispatcher for implementing method exit advice.
/** * A resolved dispatcher for implementing method exit advice. */
@HashCodeAndEqualsPlugin.Enhance protected abstract static class ForMethodExit extends Delegating.Resolved implements Dispatcher.Resolved.ForMethodExit {
true if the arguments of the instrumented method should be copied prior to execution.
/** * {@code true} if the arguments of the instrumented method should be copied prior to execution. */
private final boolean backupArguments;
Creates a new resolved dispatcher for implementing method exit advice.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • enterType – The type of the value supplied by the enter advice method or void if no such value exists.
/** * Creates a new resolved dispatcher for implementing method exit advice. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param enterType The type of the value supplied by the enter advice method or {@code void} if no such value exists. */
@SuppressWarnings("unchecked") protected ForMethodExit(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition enterType) { super(adviceMethod, CompoundList.of(Arrays.asList(OffsetMapping.ForArgument.Unresolved.Factory.INSTANCE, OffsetMapping.ForAllArguments.Factory.INSTANCE, OffsetMapping.ForThisReference.Factory.INSTANCE, OffsetMapping.ForField.Unresolved.Factory.INSTANCE, OffsetMapping.ForOrigin.Factory.INSTANCE, OffsetMapping.ForUnusedValue.Factory.INSTANCE, OffsetMapping.ForStubValue.INSTANCE, OffsetMapping.ForEnterValue.Factory.of(enterType), OffsetMapping.ForExitValue.Factory.of(adviceMethod.getReturnType()), new OffsetMapping.ForLocalValue.Factory(namedTypes), OffsetMapping.ForReturnValue.Factory.INSTANCE, OffsetMapping.ForThrowable.Factory.of(adviceMethod) ), userFactories), adviceMethod.getDeclaredAnnotations().ofType(OnMethodExit.class).getValue(SUPPRESS_EXIT).resolve(TypeDescription.class), adviceMethod.getDeclaredAnnotations().ofType(OnMethodExit.class).getValue(REPEAT_ON).resolve(TypeDescription.class)); backupArguments = adviceMethod.getDeclaredAnnotations().ofType(OnMethodExit.class).getValue(BACKUP_ARGUMENTS).resolve(Boolean.class); }
Resolves exit advice that handles exceptions depending on the specification of the exit advice.
Params:
  • adviceMethod – The advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • enterType – The type of the value supplied by the enter advice method or void if no such value exists.
Returns:An appropriate exit handler.
/** * Resolves exit advice that handles exceptions depending on the specification of the exit advice. * * @param adviceMethod The advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param enterType The type of the value supplied by the enter advice method or {@code void} if no such value exists. * @return An appropriate exit handler. */
protected static Resolved.ForMethodExit of(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition enterType) { TypeDescription throwable = adviceMethod.getDeclaredAnnotations() .ofType(OnMethodExit.class) .getValue(ON_THROWABLE) .resolve(TypeDescription.class); return throwable.represents(NoExceptionHandler.class) ? new WithoutExceptionHandler(adviceMethod, namedTypes, userFactories, enterType) : new WithExceptionHandler(adviceMethod, namedTypes, userFactories, enterType, throwable); } @Override protected Bound resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForInstrumentedMethod argumentHandler, MethodSizeHandler.ForInstrumentedMethod methodSizeHandler, StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler, StackManipulation exceptionHandler, RelocationHandler.Relocation relocation) { return doResolve(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler.bindExit(adviceMethod, getThrowable().represents(NoExceptionHandler.class)), methodSizeHandler.bindExit(adviceMethod), stackMapFrameHandler.bindExit(adviceMethod), suppressionHandler.bind(exceptionHandler), relocationHandler.bind(instrumentedMethod, relocation)); }
Binds this dispatcher for resolution to a specific method.
Params:
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method that is being bound.
  • methodVisitor – The method visitor for writing to the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • argumentHandler – A handler for accessing values on the local variable array.
  • methodSizeHandler – A handler for computing the method size requirements.
  • stackMapFrameHandler – A handler for translating and injecting stack map frames.
  • suppressionHandler – The bound suppression handler to use.
  • relocationHandler – The bound relocation handler to use.
Returns:An appropriate bound advice dispatcher.
/** * Binds this dispatcher for resolution to a specific method. * * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method that is being bound. * @param methodVisitor The method visitor for writing to the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param argumentHandler A handler for accessing values on the local variable array. * @param methodSizeHandler A handler for computing the method size requirements. * @param stackMapFrameHandler A handler for translating and injecting stack map frames. * @param suppressionHandler The bound suppression handler to use. * @param relocationHandler The bound relocation handler to use. * @return An appropriate bound advice dispatcher. */
private Bound doResolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, ArgumentHandler.ForAdvice argumentHandler, MethodSizeHandler.ForAdvice methodSizeHandler, StackMapFrameHandler.ForAdvice stackMapFrameHandler, SuppressionHandler.Bound suppressionHandler, RelocationHandler.Bound relocationHandler) { List<OffsetMapping.Target> offsetMappings = new ArrayList<OffsetMapping.Target>(this.offsetMappings.size()); for (OffsetMapping offsetMapping : this.offsetMappings.values()) { offsetMappings.add(offsetMapping.resolve(instrumentedType, instrumentedMethod, assigner, argumentHandler, OffsetMapping.Sort.EXIT)); } return new AdviceMethodWriter.ForMethodExit(adviceMethod, offsetMappings, methodVisitor, implementationContext, argumentHandler, methodSizeHandler, stackMapFrameHandler, suppressionHandler, relocationHandler); }
{@inheritDoc}
/** * {@inheritDoc} */
public ArgumentHandler.Factory getArgumentHandlerFactory() { return backupArguments ? ArgumentHandler.Factory.COPYING : ArgumentHandler.Factory.SIMPLE; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDefinition getAdviceType() { return adviceMethod.getReturnType(); }
Implementation of exit advice that handles exceptions.
/** * Implementation of exit advice that handles exceptions. */
@HashCodeAndEqualsPlugin.Enhance protected static class WithExceptionHandler extends Delegating.Resolved.ForMethodExit {
The type of the handled throwable type for which this advice is invoked.
/** * The type of the handled throwable type for which this advice is invoked. */
private final TypeDescription throwable;
Creates a new resolved dispatcher for implementing method exit advice that handles exceptions.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • enterType – The type of the value supplied by the enter advice method or a description of void if no such value exists.
  • throwable – The type of the handled throwable type for which this advice is invoked.
/** * Creates a new resolved dispatcher for implementing method exit advice that handles exceptions. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param enterType The type of the value supplied by the enter advice method or * a description of {@code void} if no such value exists. * @param throwable The type of the handled throwable type for which this advice is invoked. */
protected WithExceptionHandler(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition enterType, TypeDescription throwable) { super(adviceMethod, namedTypes, userFactories, enterType); this.throwable = throwable; }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getThrowable() { return throwable; } }
Implementation of exit advice that ignores exceptions.
/** * Implementation of exit advice that ignores exceptions. */
protected static class WithoutExceptionHandler extends Delegating.Resolved.ForMethodExit {
Creates a new resolved dispatcher for implementing method exit advice that does not handle exceptions.
Params:
  • adviceMethod – The represented advice method.
  • namedTypes – A mapping of all available local variables by their name to their type.
  • userFactories – A list of user-defined factories for offset mappings.
  • enterType – The type of the value supplied by the enter advice method or a description of void if no such value exists.
/** * Creates a new resolved dispatcher for implementing method exit advice that does not handle exceptions. * * @param adviceMethod The represented advice method. * @param namedTypes A mapping of all available local variables by their name to their type. * @param userFactories A list of user-defined factories for offset mappings. * @param enterType The type of the value supplied by the enter advice method or * a description of {@code void} if no such value exists. */
protected WithoutExceptionHandler(MethodDescription.InDefinedShape adviceMethod, Map<String, TypeDefinition> namedTypes, List<? extends OffsetMapping.Factory<?>> userFactories, TypeDefinition enterType) { super(adviceMethod, namedTypes, userFactories, enterType); }
{@inheritDoc}
/** * {@inheritDoc} */
public TypeDescription getThrowable() { return NoExceptionHandler.DESCRIPTION; } } } } } }
A method visitor that weaves the advice methods' byte codes.
/** * A method visitor that weaves the advice methods' byte codes. */
protected abstract static class AdviceVisitor extends ExceptionTableSensitiveMethodVisitor implements Dispatcher.RelocationHandler.Relocation {
The actual method visitor that is underlying this method visitor to which all instructions are written.
/** * The actual method visitor that is underlying this method visitor to which all instructions are written. */
protected final MethodVisitor methodVisitor;
A description of the instrumented method.
/** * A description of the instrumented method. */
protected final MethodDescription instrumentedMethod;
A label that indicates the start of the preparation of a user method execution.
/** * A label that indicates the start of the preparation of a user method execution. */
private final Label preparationStart;
The dispatcher to be used for method enter.
/** * The dispatcher to be used for method enter. */
private final Dispatcher.Bound methodEnter;
The dispatcher to be used for method exit.
/** * The dispatcher to be used for method exit. */
protected final Dispatcher.Bound methodExit;
The handler for accessing arguments of the method's local variable array.
/** * The handler for accessing arguments of the method's local variable array. */
protected final ArgumentHandler.ForInstrumentedMethod argumentHandler;
A handler for computing the method size requirements.
/** * A handler for computing the method size requirements. */
protected final MethodSizeHandler.ForInstrumentedMethod methodSizeHandler;
A handler for translating and injecting stack map frames.
/** * A handler for translating and injecting stack map frames. */
protected final StackMapFrameHandler.ForInstrumentedMethod stackMapFrameHandler;
Creates a new advice visitor.
Params:
  • methodVisitor – The actual method visitor that is underlying this method visitor to which all instructions are written.
  • delegate – A delegate to which all instructions of the original method are written to. Must delegate to methodVisitor.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – The instrumented method.
  • methodEnter – The method enter advice.
  • methodExit – The method exit advice.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • writerFlags – The ASM writer flags that were set.
  • readerFlags – The ASM reader flags that were set.
/** * Creates a new advice visitor. * * @param methodVisitor The actual method visitor that is underlying this method visitor to which all instructions are written. * @param delegate A delegate to which all instructions of the original method are written to. Must delegate to {@code methodVisitor}. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod The instrumented method. * @param methodEnter The method enter advice. * @param methodExit The method exit advice. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param writerFlags The ASM writer flags that were set. * @param readerFlags The ASM reader flags that were set. */
protected AdviceVisitor(MethodVisitor methodVisitor, MethodVisitor delegate, Context implementationContext, Assigner assigner, StackManipulation exceptionHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, Dispatcher.Resolved.ForMethodEnter methodEnter, Dispatcher.Resolved.ForMethodExit methodExit, List<? extends TypeDescription> postMethodTypes, int writerFlags, int readerFlags) { super(OpenedClassReader.ASM_API, delegate); this.methodVisitor = methodVisitor; this.instrumentedMethod = instrumentedMethod; preparationStart = new Label(); argumentHandler = methodExit.getArgumentHandlerFactory().resolve(instrumentedMethod, methodEnter.getAdviceType(), methodExit.getAdviceType(), methodEnter.getNamedTypes()); List<TypeDescription> initialTypes = CompoundList.of(methodExit.getAdviceType().represents(void.class) ? Collections.<TypeDescription>emptyList() : Collections.singletonList(methodExit.getAdviceType().asErasure()), argumentHandler.getNamedTypes()); List<TypeDescription> preMethodTypes = methodEnter.getAdviceType().represents(void.class) ? Collections.<TypeDescription>emptyList() : Collections.singletonList(methodEnter.getAdviceType().asErasure()); methodSizeHandler = MethodSizeHandler.Default.of(instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, argumentHandler.isCopyingArguments(), writerFlags); stackMapFrameHandler = StackMapFrameHandler.Default.of(instrumentedType, instrumentedMethod, initialTypes, preMethodTypes, postMethodTypes, methodExit.isAlive(), argumentHandler.isCopyingArguments(), implementationContext.getClassFileVersion(), writerFlags, readerFlags); this.methodEnter = methodEnter.bind(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, exceptionHandler, this); this.methodExit = methodExit.bind(instrumentedType, instrumentedMethod, methodVisitor, implementationContext, assigner, argumentHandler, methodSizeHandler, stackMapFrameHandler, exceptionHandler, new ForLabel(preparationStart)); } @Override protected void onAfterExceptionTable() { methodEnter.prepare(); onUserPrepare(); methodExit.prepare(); methodEnter.initialize(); methodExit.initialize(); stackMapFrameHandler.injectInitializationFrame(methodVisitor); methodEnter.apply(); methodVisitor.visitLabel(preparationStart); methodSizeHandler.requireStackSize(argumentHandler.prepare(methodVisitor)); stackMapFrameHandler.injectStartFrame(methodVisitor); onUserStart(); }
Invoked when the user method's exception handler (if any) is supposed to be prepared.
/** * Invoked when the user method's exception handler (if any) is supposed to be prepared. */
protected abstract void onUserPrepare();
Writes the advice for entering the instrumented method.
/** * Writes the advice for entering the instrumented method. */
protected abstract void onUserStart(); @Override protected void onVisitVarInsn(int opcode, int offset) { mv.visitVarInsn(opcode, argumentHandler.argument(offset)); } @Override protected void onVisitIincInsn(int offset, int increment) { mv.visitIincInsn(argumentHandler.argument(offset), increment); } @Override public void visitFrame(int type, int localVariableLength, Object[] localVariable, int stackSize, Object[] stack) { stackMapFrameHandler.translateFrame(methodVisitor, type, localVariableLength, localVariable, stackSize, stack); } @Override public void visitMaxs(int stackSize, int localVariableLength) { onUserEnd(); methodVisitor.visitMaxs(methodSizeHandler.compoundStackSize(stackSize), methodSizeHandler.compoundLocalVariableLength(localVariableLength)); } @Override public void visitLocalVariable(String name, String descriptor, String signature, Label start, Label end, int index) { mv.visitLocalVariable(name, descriptor, signature, start, end, argumentHandler.variable(index)); } @Override public AnnotationVisitor visitLocalVariableAnnotation(int typeReference, TypePath typePath, Label[] start, Label[] end, int[] index, String descriptor, boolean visible) { int[] translated = new int[index.length]; for (int anIndex = 0; anIndex < index.length; anIndex++) { translated[anIndex] = argumentHandler.variable(index[anIndex]); } return mv.visitLocalVariableAnnotation(typeReference, typePath, start, end, translated, descriptor, visible); }
Writes the advice for completing the instrumented method.
/** * Writes the advice for completing the instrumented method. */
protected abstract void onUserEnd();
An advice visitor that does not apply exit advice.
/** * An advice visitor that does not apply exit advice. */
protected static class WithoutExitAdvice extends AdviceVisitor {
Creates an advice visitor that does not apply exit advice.
Params:
  • methodVisitor – The method visitor for the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – A description of the instrumented method.
  • methodEnter – The dispatcher to be used for method enter.
  • writerFlags – The ASM writer flags that were set.
  • readerFlags – The ASM reader flags that were set.
/** * Creates an advice visitor that does not apply exit advice. * * @param methodVisitor The method visitor for the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod A description of the instrumented method. * @param methodEnter The dispatcher to be used for method enter. * @param writerFlags The ASM writer flags that were set. * @param readerFlags The ASM reader flags that were set. */
protected WithoutExitAdvice(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, StackManipulation exceptionHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, Dispatcher.Resolved.ForMethodEnter methodEnter, int writerFlags, int readerFlags) { super(methodVisitor, methodVisitor, implementationContext, assigner, exceptionHandler, instrumentedType, instrumentedMethod, methodEnter, Dispatcher.Inactive.INSTANCE, Collections.<TypeDescription>emptyList(), writerFlags, readerFlags); }
{@inheritDoc}
/** * {@inheritDoc} */
public void apply(MethodVisitor methodVisitor) { if (instrumentedMethod.getReturnType().represents(boolean.class) || instrumentedMethod.getReturnType().represents(byte.class) || instrumentedMethod.getReturnType().represents(short.class) || instrumentedMethod.getReturnType().represents(char.class) || instrumentedMethod.getReturnType().represents(int.class)) { methodVisitor.visitInsn(Opcodes.ICONST_0); methodVisitor.visitInsn(Opcodes.IRETURN); } else if (instrumentedMethod.getReturnType().represents(long.class)) { methodVisitor.visitInsn(Opcodes.LCONST_0); methodVisitor.visitInsn(Opcodes.LRETURN); } else if (instrumentedMethod.getReturnType().represents(float.class)) { methodVisitor.visitInsn(Opcodes.FCONST_0); methodVisitor.visitInsn(Opcodes.FRETURN); } else if (instrumentedMethod.getReturnType().represents(double.class)) { methodVisitor.visitInsn(Opcodes.DCONST_0); methodVisitor.visitInsn(Opcodes.DRETURN); } else if (instrumentedMethod.getReturnType().represents(void.class)) { methodVisitor.visitInsn(Opcodes.RETURN); } else { methodVisitor.visitInsn(Opcodes.ACONST_NULL); methodVisitor.visitInsn(Opcodes.ARETURN); } } @Override protected void onUserPrepare() { /* do nothing */ } @Override protected void onUserStart() { /* do nothing */ } @Override protected void onUserEnd() { /* do nothing */ } }
An advice visitor that applies exit advice.
/** * An advice visitor that applies exit advice. */
protected abstract static class WithExitAdvice extends AdviceVisitor {
Indicates the handler for the value returned by the advice method.
/** * Indicates the handler for the value returned by the advice method. */
protected final Label returnHandler;
Creates an advice visitor that applies exit advice.
Params:
  • methodVisitor – The method visitor for the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – A description of the instrumented method.
  • methodEnter – The dispatcher to be used for method enter.
  • methodExit – The dispatcher to be used for method exit.
  • postMethodTypes – A list of virtual method arguments that are available after the instrumented method has completed.
  • writerFlags – The ASM writer flags that were set.
  • readerFlags – The ASM reader flags that were set.
/** * Creates an advice visitor that applies exit advice. * * @param methodVisitor The method visitor for the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod A description of the instrumented method. * @param methodEnter The dispatcher to be used for method enter. * @param methodExit The dispatcher to be used for method exit. * @param postMethodTypes A list of virtual method arguments that are available after the instrumented method has completed. * @param writerFlags The ASM writer flags that were set. * @param readerFlags The ASM reader flags that were set. */
protected WithExitAdvice(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, StackManipulation exceptionHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, Dispatcher.Resolved.ForMethodEnter methodEnter, Dispatcher.Resolved.ForMethodExit methodExit, List<? extends TypeDescription> postMethodTypes, int writerFlags, int readerFlags) { super(methodVisitor, new StackAwareMethodVisitor(methodVisitor, instrumentedMethod), implementationContext, assigner, exceptionHandler, instrumentedType, instrumentedMethod, methodEnter, methodExit, postMethodTypes, writerFlags, readerFlags); returnHandler = new Label(); }
{@inheritDoc}
/** * {@inheritDoc} */
public void apply(MethodVisitor methodVisitor) { if (instrumentedMethod.getReturnType().represents(boolean.class) || instrumentedMethod.getReturnType().represents(byte.class) || instrumentedMethod.getReturnType().represents(short.class) || instrumentedMethod.getReturnType().represents(char.class) || instrumentedMethod.getReturnType().represents(int.class)) { methodVisitor.visitInsn(Opcodes.ICONST_0); } else if (instrumentedMethod.getReturnType().represents(long.class)) { methodVisitor.visitInsn(Opcodes.LCONST_0); } else if (instrumentedMethod.getReturnType().represents(float.class)) { methodVisitor.visitInsn(Opcodes.FCONST_0); } else if (instrumentedMethod.getReturnType().represents(double.class)) { methodVisitor.visitInsn(Opcodes.DCONST_0); } else if (!instrumentedMethod.getReturnType().represents(void.class)) { methodVisitor.visitInsn(Opcodes.ACONST_NULL); } methodVisitor.visitJumpInsn(Opcodes.GOTO, returnHandler); } @Override protected void onVisitInsn(int opcode) { switch (opcode) { case Opcodes.RETURN: ((StackAwareMethodVisitor) mv).drainStack(); break; case Opcodes.IRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.ISTORE, Opcodes.ILOAD, StackSize.SINGLE)); break; case Opcodes.FRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.FSTORE, Opcodes.FLOAD, StackSize.SINGLE)); break; case Opcodes.DRETURN: methodSizeHandler.requireLocalVariableLength(((StackAwareMethodVisitor) mv).drainStack(Opcodes.DSTORE, Opcodes.DLOAD, StackSize.DOUBLE)); break; case Opcodes.LRETURN: methodSizeHandler.requireLocalVariableLength((((StackAwareMethodVisitor) mv).drainStack(Opcodes.LSTORE, Opcodes.LLOAD, StackSize.DOUBLE))); break; case Opcodes.ARETURN: methodSizeHandler.requireLocalVariableLength((((StackAwareMethodVisitor) mv).drainStack(Opcodes.ASTORE, Opcodes.ALOAD, StackSize.SINGLE))); break; default: mv.visitInsn(opcode); return; } mv.visitJumpInsn(Opcodes.GOTO, returnHandler); } @Override protected void onUserEnd() { methodVisitor.visitLabel(returnHandler); onUserReturn(); stackMapFrameHandler.injectCompletionFrame(methodVisitor); methodExit.apply(); onExitAdviceReturn(); if (instrumentedMethod.getReturnType().represents(boolean.class) || instrumentedMethod.getReturnType().represents(byte.class) || instrumentedMethod.getReturnType().represents(short.class) || instrumentedMethod.getReturnType().represents(char.class) || instrumentedMethod.getReturnType().represents(int.class)) { methodVisitor.visitVarInsn(Opcodes.ILOAD, argumentHandler.returned()); methodVisitor.visitInsn(Opcodes.IRETURN); } else if (instrumentedMethod.getReturnType().represents(long.class)) { methodVisitor.visitVarInsn(Opcodes.LLOAD, argumentHandler.returned()); methodVisitor.visitInsn(Opcodes.LRETURN); } else if (instrumentedMethod.getReturnType().represents(float.class)) { methodVisitor.visitVarInsn(Opcodes.FLOAD, argumentHandler.returned()); methodVisitor.visitInsn(Opcodes.FRETURN); } else if (instrumentedMethod.getReturnType().represents(double.class)) { methodVisitor.visitVarInsn(Opcodes.DLOAD, argumentHandler.returned()); methodVisitor.visitInsn(Opcodes.DRETURN); } else if (!instrumentedMethod.getReturnType().represents(void.class)) { methodVisitor.visitVarInsn(Opcodes.ALOAD, argumentHandler.returned()); methodVisitor.visitInsn(Opcodes.ARETURN); } else { methodVisitor.visitInsn(Opcodes.RETURN); } methodSizeHandler.requireStackSize(instrumentedMethod.getReturnType().getStackSize().getSize()); }
Invoked after the user method has returned.
/** * Invoked after the user method has returned. */
protected abstract void onUserReturn();
Invoked after the exit advice method has returned.
/** * Invoked after the exit advice method has returned. */
protected abstract void onExitAdviceReturn();
An advice visitor that does not capture exceptions.
/** * An advice visitor that does not capture exceptions. */
protected static class WithoutExceptionHandling extends WithExitAdvice {
Creates a new advice visitor that does not capture exceptions.
Params:
  • methodVisitor – The method visitor for the instrumented method.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • instrumentedType – A description of the instrumented type.
  • instrumentedMethod – A description of the instrumented method.
  • methodEnter – The dispatcher to be used for method enter.
  • methodExit – The dispatcher to be used for method exit.
  • writerFlags – The ASM writer flags that were set.
  • readerFlags – The ASM reader flags that were set.
/** * Creates a new advice visitor that does not capture exceptions. * * @param methodVisitor The method visitor for the instrumented method. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param instrumentedType A description of the instrumented type. * @param instrumentedMethod A description of the instrumented method. * @param methodEnter The dispatcher to be used for method enter. * @param methodExit The dispatcher to be used for method exit. * @param writerFlags The ASM writer flags that were set. * @param readerFlags The ASM reader flags that were set. */
protected WithoutExceptionHandling(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, StackManipulation exceptionHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, Dispatcher.Resolved.ForMethodEnter methodEnter, Dispatcher.Resolved.ForMethodExit methodExit, int writerFlags, int readerFlags) { super(methodVisitor, implementationContext, assigner, exceptionHandler, instrumentedType, instrumentedMethod, methodEnter, methodExit, instrumentedMethod.getReturnType().represents(void.class) ? Collections.<TypeDescription>emptyList() : Collections.singletonList(instrumentedMethod.getReturnType().asErasure()), writerFlags, readerFlags); } @Override protected void onUserPrepare() { /* do nothing */ } @Override protected void onUserStart() { /* do nothing */ } @Override protected void onUserReturn() { if (instrumentedMethod.getReturnType().represents(boolean.class) || instrumentedMethod.getReturnType().represents(byte.class) || instrumentedMethod.getReturnType().represents(short.class) || instrumentedMethod.getReturnType().represents(char.class) || instrumentedMethod.getReturnType().represents(int.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.ISTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(long.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.LSTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(float.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.FSTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(double.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.DSTORE, argumentHandler.returned()); } else if (!instrumentedMethod.getReturnType().represents(void.class)) { stackMapFrameHandler.injectReturnFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.ASTORE, argumentHandler.returned()); } } @Override protected void onExitAdviceReturn() { /* do nothing */ } }
An advice visitor that captures exceptions by weaving try-catch blocks around user code.
/** * An advice visitor that captures exceptions by weaving try-catch blocks around user code. */
protected static class WithExceptionHandling extends WithExitAdvice {
The type of the handled throwable type for which this advice is invoked.
/** * The type of the handled throwable type for which this advice is invoked. */
private final TypeDescription throwable;
Indicates the exception handler.
/** * Indicates the exception handler. */
private final Label exceptionHandler;
Indicates the start of the user method.
/** * Indicates the start of the user method. */
protected final Label userStart;
Creates a new advice visitor that captures exception by weaving try-catch blocks around user code.
Params:
  • methodVisitor – The method visitor for the instrumented method.
  • instrumentedType – A description of the instrumented type.
  • implementationContext – The implementation context to use.
  • assigner – The assigner to use.
  • exceptionHandler – The stack manipulation to apply within a suppression handler.
  • instrumentedMethod – A description of the instrumented method.
  • methodEnter – The dispatcher to be used for method enter.
  • methodExit – The dispatcher to be used for method exit.
  • writerFlags – The ASM writer flags that were set.
  • readerFlags – The ASM reader flags that were set.
  • throwable – The type of the handled throwable type for which this advice is invoked.
/** * Creates a new advice visitor that captures exception by weaving try-catch blocks around user code. * * @param methodVisitor The method visitor for the instrumented method. * @param instrumentedType A description of the instrumented type. * @param implementationContext The implementation context to use. * @param assigner The assigner to use. * @param exceptionHandler The stack manipulation to apply within a suppression handler. * @param instrumentedMethod A description of the instrumented method. * @param methodEnter The dispatcher to be used for method enter. * @param methodExit The dispatcher to be used for method exit. * @param writerFlags The ASM writer flags that were set. * @param readerFlags The ASM reader flags that were set. * @param throwable The type of the handled throwable type for which this advice is invoked. */
protected WithExceptionHandling(MethodVisitor methodVisitor, Implementation.Context implementationContext, Assigner assigner, StackManipulation exceptionHandler, TypeDescription instrumentedType, MethodDescription instrumentedMethod, Dispatcher.Resolved.ForMethodEnter methodEnter, Dispatcher.Resolved.ForMethodExit methodExit, int writerFlags, int readerFlags, TypeDescription throwable) { super(methodVisitor, implementationContext, assigner, exceptionHandler, instrumentedType, instrumentedMethod, methodEnter, methodExit, instrumentedMethod.getReturnType().represents(void.class) ? Collections.singletonList(TypeDescription.THROWABLE) : Arrays.asList(instrumentedMethod.getReturnType().asErasure(), TypeDescription.THROWABLE), writerFlags, readerFlags); this.throwable = throwable; this.exceptionHandler = new Label(); userStart = new Label(); } @Override protected void onUserPrepare() { methodVisitor.visitTryCatchBlock(userStart, returnHandler, exceptionHandler, throwable.getInternalName()); } @Override protected void onUserStart() { methodVisitor.visitLabel(userStart); } @Override protected void onUserReturn() { stackMapFrameHandler.injectReturnFrame(methodVisitor); if (instrumentedMethod.getReturnType().represents(boolean.class) || instrumentedMethod.getReturnType().represents(byte.class) || instrumentedMethod.getReturnType().represents(short.class) || instrumentedMethod.getReturnType().represents(char.class) || instrumentedMethod.getReturnType().represents(int.class)) { methodVisitor.visitVarInsn(Opcodes.ISTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(long.class)) { methodVisitor.visitVarInsn(Opcodes.LSTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(float.class)) { methodVisitor.visitVarInsn(Opcodes.FSTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(double.class)) { methodVisitor.visitVarInsn(Opcodes.DSTORE, argumentHandler.returned()); } else if (!instrumentedMethod.getReturnType().represents(void.class)) { methodVisitor.visitVarInsn(Opcodes.ASTORE, argumentHandler.returned()); } methodVisitor.visitInsn(Opcodes.ACONST_NULL); methodVisitor.visitVarInsn(Opcodes.ASTORE, argumentHandler.thrown()); Label endOfHandler = new Label(); methodVisitor.visitJumpInsn(Opcodes.GOTO, endOfHandler); methodVisitor.visitLabel(exceptionHandler); stackMapFrameHandler.injectExceptionFrame(methodVisitor); methodVisitor.visitVarInsn(Opcodes.ASTORE, argumentHandler.thrown()); if (instrumentedMethod.getReturnType().represents(boolean.class) || instrumentedMethod.getReturnType().represents(byte.class) || instrumentedMethod.getReturnType().represents(short.class) || instrumentedMethod.getReturnType().represents(char.class) || instrumentedMethod.getReturnType().represents(int.class)) { methodVisitor.visitInsn(Opcodes.ICONST_0); methodVisitor.visitVarInsn(Opcodes.ISTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(long.class)) { methodVisitor.visitInsn(Opcodes.LCONST_0); methodVisitor.visitVarInsn(Opcodes.LSTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(float.class)) { methodVisitor.visitInsn(Opcodes.FCONST_0); methodVisitor.visitVarInsn(Opcodes.FSTORE, argumentHandler.returned()); } else if (instrumentedMethod.getReturnType().represents(double.class)) { methodVisitor.visitInsn(Opcodes.DCONST_0); methodVisitor.visitVarInsn(Opcodes.DSTORE, argumentHandler.returned()); } else if (!instrumentedMethod.getReturnType().represents(void.class)) { methodVisitor.visitInsn(Opcodes.ACONST_NULL); methodVisitor.visitVarInsn(Opcodes.ASTORE, argumentHandler.returned()); } methodVisitor.visitLabel(endOfHandler); methodSizeHandler.requireStackSize(StackSize.SINGLE.getSize()); } @Override protected void onExitAdviceReturn() { methodVisitor.visitVarInsn(Opcodes.ALOAD, argumentHandler.thrown()); Label endOfHandler = new Label(); methodVisitor.visitJumpInsn(Opcodes.IFNULL, endOfHandler); methodVisitor.visitVarInsn(Opcodes.ALOAD, argumentHandler.thrown()); methodVisitor.visitInsn(Opcodes.ATHROW); methodVisitor.visitLabel(endOfHandler); stackMapFrameHandler.injectPostCompletionFrame(methodVisitor); } } } }
A byte code appender for implementing Advice.
/** * A byte code appender for implementing {@link Advice}. */
@HashCodeAndEqualsPlugin.Enhance protected static class Appender implements ByteCodeAppender {
The advice to implement.
/** * The advice to implement. */
private final Advice advice;
The current implementation target.
/** * The current implementation target. */
private final Implementation.Target implementationTarget;
The delegate byte code appender.
/** * The delegate byte code appender. */
private final ByteCodeAppender delegate;
Creates a new appender for an advice component.
Params:
  • advice – The advice to implement.
  • implementationTarget – The current implementation target.
  • delegate – The delegate byte code appender.
/** * Creates a new appender for an advice component. * * @param advice The advice to implement. * @param implementationTarget The current implementation target. * @param delegate The delegate byte code appender. */
protected Appender(Advice advice, Target implementationTarget, ByteCodeAppender delegate) { this.advice = advice; this.implementationTarget = implementationTarget; this.delegate = delegate; }
{@inheritDoc}
/** * {@inheritDoc} */
public Size apply(MethodVisitor methodVisitor, Context implementationContext, MethodDescription instrumentedMethod) { EmulatingMethodVisitor emulatingMethodVisitor = new EmulatingMethodVisitor(methodVisitor, delegate); methodVisitor = advice.doWrap(implementationTarget.getInstrumentedType(), instrumentedMethod, emulatingMethodVisitor, implementationContext, AsmVisitorWrapper.NO_FLAGS, AsmVisitorWrapper.NO_FLAGS); return emulatingMethodVisitor.resolve(methodVisitor, implementationContext, instrumentedMethod); }
A method visitor that allows for the emulation of a full method visitor invocation circle without delegating initial and ending visitations to the underlying visitor.
/** * A method visitor that allows for the emulation of a full method visitor invocation circle without delegating initial * and ending visitations to the underlying visitor. */
protected static class EmulatingMethodVisitor extends MethodVisitor {
The delegate byte code appender.
/** * The delegate byte code appender. */
private final ByteCodeAppender delegate;
The currently recorded minimal required stack size.
/** * The currently recorded minimal required stack size. */
private int stackSize;
The currently recorded minimal required local variable array length.
/** * The currently recorded minimal required local variable array length. */
private int localVariableLength;
Creates a new emulating method visitor.
Params:
  • methodVisitor – The underlying method visitor.
  • delegate – The delegate byte code appender.
/** * Creates a new emulating method visitor. * * @param methodVisitor The underlying method visitor. * @param delegate The delegate byte code appender. */
protected EmulatingMethodVisitor(MethodVisitor methodVisitor, ByteCodeAppender delegate) { super(OpenedClassReader.ASM_API, methodVisitor); this.delegate = delegate; }
Resolves this this advice emulating method visitor for its delegate.
Params:
  • methodVisitor – The method visitor to apply.
  • implementationContext – The implementation context to apply.
  • instrumentedMethod – The instrumented method.
Returns:The resulting size of the implemented method.
/** * Resolves this this advice emulating method visitor for its delegate. * * @param methodVisitor The method visitor to apply. * @param implementationContext The implementation context to apply. * @param instrumentedMethod The instrumented method. * @return The resulting size of the implemented method. */
protected ByteCodeAppender.Size resolve(MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodDescription instrumentedMethod) { methodVisitor.visitCode(); Size size = delegate.apply(methodVisitor, implementationContext, instrumentedMethod); methodVisitor.visitMaxs(size.getOperandStackSize(), size.getLocalVariableSize()); methodVisitor.visitEnd(); return new ByteCodeAppender.Size(stackSize, localVariableLength); } @Override public void visitCode() { /* do nothing */ } @Override public void visitMaxs(int stackSize, int localVariableLength) { this.stackSize = stackSize; this.localVariableLength = localVariableLength; } @Override public void visitEnd() { /* do nothing */ } } }

Indicates that this method should be inlined before the matched method is invoked. Any class must declare at most one method with this annotation. The annotated method must be static. When instrumenting constructors, the this values can only be accessed for writing fields but not for reading fields or invoking methods.

The annotated method can return a value that is made accessible to another method annotated by OnMethodExit.

See Also:
/** * <p> * Indicates that this method should be inlined before the matched method is invoked. Any class must declare * at most one method with this annotation. The annotated method must be static. When instrumenting constructors, * the {@code this} values can only be accessed for writing fields but not for reading fields or invoking methods. * </p> * <p> * The annotated method can return a value that is made accessible to another method annotated by {@link OnMethodExit}. * </p> * * @see Advice * @see Argument * @see This */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.METHOD) public @interface OnMethodEnter {

Determines if the execution of the instrumented method should be skipped. This does not include any exit advice.

When specifying a non-primitive type, this method's return value that is subject to an instanceof check where the instrumented method is only executed, if the returned instance is not an instance of the specified class. Alternatively, it is possible to specify either OnDefaultValue or OnNonDefaultValue where the instrumented method is only executed if the advice method returns a default or non-default value of the advice method's return type. It is illegal to specify a primitive type as an argument whereas setting the value to void indicates that the instrumented method should never be skipped.

Important: Constructors cannot be skipped.

Returns:A value defining what return values of the advice method indicate that the instrumented method should be skipped or void if the instrumented method should never be skipped.
/** * <p> * Determines if the execution of the instrumented method should be skipped. This does not include any exit advice. * </p> * <p> * When specifying a non-primitive type, this method's return value that is subject to an {@code instanceof} check where * the instrumented method is only executed, if the returned instance is {@code not} an instance of the specified class. * Alternatively, it is possible to specify either {@link OnDefaultValue} or {@link OnNonDefaultValue} where the instrumented * method is only executed if the advice method returns a default or non-default value of the advice method's return type. * It is illegal to specify a primitive type as an argument whereas setting the value to {@code void} indicates that the * instrumented method should never be skipped. * </p> * <p> * <b>Important</b>: Constructors cannot be skipped. * </p> * * @return A value defining what return values of the advice method indicate that the instrumented method * should be skipped or {@code void} if the instrumented method should never be skipped. */
Class<?> skipOn() default void.class;
If set to true, the instrumented method's line number information is adjusted such that stack traces generated within this advice method appear as if they were generated within the first line of the instrumented method. If set to false, no line number information is made available for such stack traces.
Returns:true if this advice code should appear as if it was added within the first line of the instrumented method.
/** * If set to {@code true}, the instrumented method's line number information is adjusted such that stack traces generated within * this advice method appear as if they were generated within the first line of the instrumented method. If set to {@code false}, * no line number information is made available for such stack traces. * * @return {@code true} if this advice code should appear as if it was added within the first line of the instrumented method. */
boolean prependLineNumber() default true;
Determines if the annotated method should be inlined into the instrumented method or invoked from it. When a method is inlined, its byte code is copied into the body of the target method. this makes it is possible to execute code with the visibility privileges of the instrumented method while loosing the privileges of the declared method methods. When a method is not inlined, it is invoked similarly to a common Java method call. Note that it is not possible to set breakpoints within a method when it is inlined as no debugging information is copied from the advice method into the instrumented method.
Returns:true if the annotated method should be inlined into the instrumented method.
/** * Determines if the annotated method should be inlined into the instrumented method or invoked from it. When a method * is inlined, its byte code is copied into the body of the target method. this makes it is possible to execute code * with the visibility privileges of the instrumented method while loosing the privileges of the declared method methods. * When a method is not inlined, it is invoked similarly to a common Java method call. Note that it is not possible to * set breakpoints within a method when it is inlined as no debugging information is copied from the advice method into * the instrumented method. * * @return {@code true} if the annotated method should be inlined into the instrumented method. */
boolean inline() default true;
Indicates that this advice should suppress any Throwable type being thrown during the advice's execution. By default, any such exception is silently suppressed. Custom behavior can be configured by using Advice.withExceptionHandler(StackManipulation).
See Also:
Returns:The type of Throwable to suppress.
/** * Indicates that this advice should suppress any {@link Throwable} type being thrown during the advice's execution. By default, * any such exception is silently suppressed. Custom behavior can be configured by using {@link Advice#withExceptionHandler(StackManipulation)}. * * @return The type of {@link Throwable} to suppress. * @see Advice#withExceptionPrinting() */
Class<? extends Throwable> suppress() default NoExceptionHandler.class; }

Indicates that this method should be executed before exiting the instrumented method. Any class must declare at most one method with this annotation. The annotated method must be static.

By default, the annotated method is not invoked if the instrumented method terminates exceptionally. This behavior can be changed by setting the onThrowable() property to an exception type for which this advice method should be invoked. By setting the value to Throwable, the advice method is always invoked.

See Also:
/** * <p> * Indicates that this method should be executed before exiting the instrumented method. Any class must declare * at most one method with this annotation. The annotated method must be static. * </p> * <p> * By default, the annotated method is not invoked if the instrumented method terminates exceptionally. This behavior * can be changed by setting the {@link OnMethodExit#onThrowable()} property to an exception type for which this advice * method should be invoked. By setting the value to {@link Throwable}, the advice method is always invoked. * </p> * * @see Advice * @see Argument * @see This * @see Enter * @see Return * @see Thrown */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.METHOD) public @interface OnMethodExit {

Determines if the execution of the instrumented method should be repeated. This does not include any enter advice.

When specifying a non-primitive type, this method's return value that is subject to an instanceof check where the instrumented method is only executed, if the returned instance is not an instance of the specified class. Alternatively, it is possible to specify either OnDefaultValue or OnNonDefaultValue where the instrumented method is only repeated if the advice method returns a default or non-default value of the advice method's return type. It is illegal to specify a primitive type as an argument whereas setting the value to void indicates that the instrumented method should never be repeated.

Important: Constructors cannot be repeated.

Returns:A value defining what return values of the advice method indicate that the instrumented method should be repeated or void if the instrumented method should never be repeated.
/** * <p> * Determines if the execution of the instrumented method should be repeated. This does not include any enter advice. * </p> * <p> * When specifying a non-primitive type, this method's return value that is subject to an {@code instanceof} check where * the instrumented method is only executed, if the returned instance is {@code not} an instance of the specified class. * Alternatively, it is possible to specify either {@link OnDefaultValue} or {@link OnNonDefaultValue} where the instrumented * method is only repeated if the advice method returns a default or non-default value of the advice method's return type. * It is illegal to specify a primitive type as an argument whereas setting the value to {@code void} indicates that the * instrumented method should never be repeated. * </p> * <p> * <b>Important</b>: Constructors cannot be repeated. * </p> * * @return A value defining what return values of the advice method indicate that the instrumented method * should be repeated or {@code void} if the instrumented method should never be repeated. */
Class<?> repeatOn() default void.class;
Indicates a Throwable super type for which this exit advice is invoked if it was thrown from the instrumented method. If an exception is thrown, it is available via the Thrown parameter annotation. If a method returns exceptionally, any parameter annotated with Return is assigned the parameter type's default value.
Returns:The type of Throwable for which this exit advice handler is invoked.
/** * Indicates a {@link Throwable} super type for which this exit advice is invoked if it was thrown from the instrumented method. * If an exception is thrown, it is available via the {@link Thrown} parameter annotation. If a method returns exceptionally, * any parameter annotated with {@link Return} is assigned the parameter type's default value. * * @return The type of {@link Throwable} for which this exit advice handler is invoked. */
Class<? extends Throwable> onThrowable() default NoExceptionHandler.class;

If true, all arguments of the instrumented method are copied before execution. Doing so, parameter reassignments applied by the instrumented are not effective during the execution of the annotated exit advice.

Disabling this option can cause problems with the translation of stack map frames (meta data that is embedded in a Java class) if these frames become inconsistent with the original arguments of the instrumented method. In this case, the original arguments are no longer available to the exit advice such that Byte Buddy must abort the instrumentation with an error. If the instrumented method does not issue a stack map frame due to a lack of branching instructions, Byte Buddy might not be able to discover such an inconsistency what can cause a VerifyError instead of a Byte Buddy-issued exception as those inconsistencies are not discovered.

Returns:true if a backup of all method arguments should be made.
/** * <p> * If {@code true}, all arguments of the instrumented method are copied before execution. Doing so, parameter reassignments applied * by the instrumented are not effective during the execution of the annotated exit advice. * </p> * <p> * Disabling this option can cause problems with the translation of stack map frames (meta data that is embedded in a Java class) if these * frames become inconsistent with the original arguments of the instrumented method. In this case, the original arguments are no longer * available to the exit advice such that Byte Buddy must abort the instrumentation with an error. If the instrumented method does not issue * a stack map frame due to a lack of branching instructions, Byte Buddy might not be able to discover such an inconsistency what can cause * a {@link VerifyError} instead of a Byte Buddy-issued exception as those inconsistencies are not discovered. * </p> * * @return {@code true} if a backup of all method arguments should be made. */
boolean backupArguments() default true;
Determines if the annotated method should be inlined into the instrumented method or invoked from it. When a method is inlined, its byte code is copied into the body of the target method. this makes it is possible to execute code with the visibility privileges of the instrumented method while loosing the privileges of the declared method methods. When a method is not inlined, it is invoked similarly to a common Java method call. Note that it is not possible to set breakpoints within a method when it is inlined as no debugging information is copied from the advice method into the instrumented method.
Returns:true if the annotated method should be inlined into the instrumented method.
/** * Determines if the annotated method should be inlined into the instrumented method or invoked from it. When a method * is inlined, its byte code is copied into the body of the target method. this makes it is possible to execute code * with the visibility privileges of the instrumented method while loosing the privileges of the declared method methods. * When a method is not inlined, it is invoked similarly to a common Java method call. Note that it is not possible to * set breakpoints within a method when it is inlined as no debugging information is copied from the advice method into * the instrumented method. * * @return {@code true} if the annotated method should be inlined into the instrumented method. */
boolean inline() default true;
Indicates that this advice should suppress any Throwable type being thrown during the advice's execution. By default, any such exception is silently suppressed. Custom behavior can be configured by using Advice.withExceptionHandler(StackManipulation).
See Also:
Returns:The type of Throwable to suppress.
/** * Indicates that this advice should suppress any {@link Throwable} type being thrown during the advice's execution. By default, * any such exception is silently suppressed. Custom behavior can be configured by using {@link Advice#withExceptionHandler(StackManipulation)}. * * @return The type of {@link Throwable} to suppress. * @see Advice#withExceptionPrinting() */
Class<? extends Throwable> suppress() default NoExceptionHandler.class; }

Indicates that the annotated parameter should be mapped to the this reference of the instrumented method.

Important: Parameters with this option must not be used when from a constructor in combination with OnMethodEnter where the this reference is not available.

See Also:
/** * <p> * Indicates that the annotated parameter should be mapped to the {@code this} reference of the instrumented method. * </p> * <p> * <b>Important</b>: Parameters with this option must not be used when from a constructor in combination with * {@link OnMethodEnter} where the {@code this} reference is not available. * </p> * * @see Advice * @see OnMethodEnter * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface This {
Determines if the parameter should be assigned null if the instrumented method is static or a constructor within an enter advice.
Returns:true if the value assignment is optional.
/** * Determines if the parameter should be assigned {@code null} if the instrumented method is static or a constructor within an enter advice. * * @return {@code true} if the value assignment is optional. */
boolean optional() default false;

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
The typing that should be applied when assigning the this value.
Returns:The typing to apply upon assignment.
/** * The typing that should be applied when assigning the {@code this} value. * * @return The typing to apply upon assignment. */
Assigner.Typing typing() default Assigner.Typing.STATIC; }
Indicates that the annotated parameter should be mapped to the parameter with index value() of the instrumented method.
See Also:
/** * Indicates that the annotated parameter should be mapped to the parameter with index {@link Argument#value()} of * the instrumented method. * * @see Advice * @see OnMethodEnter * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Argument {
Returns the index of the mapped parameter.
Returns:The index of the mapped parameter.
/** * Returns the index of the mapped parameter. * * @return The index of the mapped parameter. */
int value();

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
The typing that should be applied when assigning the argument.
Returns:The typing to apply upon assignment.
/** * The typing that should be applied when assigning the argument. * * @return The typing to apply upon assignment. */
Assigner.Typing typing() default Assigner.Typing.STATIC;
Indicates if a parameter binding is optional. If a binding is optional and a parameter with the specified index does not exist, the parameter's default value is bound.
Returns:true if the binding is optional.
/** * Indicates if a parameter binding is optional. If a binding is optional and a parameter with the specified index does not exist, * the parameter's default value is bound. * * @return {@code true} if the binding is optional. */
boolean optional() default false; }
Assigns an array containing all arguments of the instrumented method to the annotated parameter. The annotated parameter must be an array type. If the annotation indicates writability, the assigned array must have at least as many values as the instrumented method or an ArrayIndexOutOfBoundsException is thrown.
/** * Assigns an array containing all arguments of the instrumented method to the annotated parameter. The annotated parameter must * be an array type. If the annotation indicates writability, the assigned array must have at least as many values as the * instrumented method or an {@link ArrayIndexOutOfBoundsException} is thrown. */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface AllArguments {

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
The typing that should be applied when assigning the arguments.
Returns:The typing to apply upon assignment.
/** * The typing that should be applied when assigning the arguments. * * @return The typing to apply upon assignment. */
Assigner.Typing typing() default Assigner.Typing.STATIC; }

Indicates that the annotated parameter should be mapped to the return value of the instrumented method. If the instrumented method terminates exceptionally, the type's default value is assigned to the parameter, i.e. 0 for numeric types and null for reference types. If the return type is void, the annotated value is null if and only if typing() is set to Typing.DYNAMIC.

Note: This annotation must only be used on exit advice methods.

See Also:
/** * <p> * Indicates that the annotated parameter should be mapped to the return value of the instrumented method. If the instrumented * method terminates exceptionally, the type's default value is assigned to the parameter, i.e. {@code 0} for numeric types * and {@code null} for reference types. If the return type is {@code void}, the annotated value is {@code null} if and only if * {@link Return#typing()} is set to {@link Assigner.Typing#DYNAMIC}. * </p> * <p> * <b>Note</b>: This annotation must only be used on exit advice methods. * </p> * * @see Advice * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Return {

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
Determines the typing that is applied when assigning the return value.
Returns:The typing to apply when assigning the annotated parameter.
/** * Determines the typing that is applied when assigning the return value. * * @return The typing to apply when assigning the annotated parameter. */
Assigner.Typing typing() default Assigner.Typing.STATIC; }

Indicates that the annotated parameter should be mapped to the Throwable thrown by the instrumented method or to null if the method returned regularly. Note that the Java runtime does not enforce checked exceptions. In order to capture any error, the parameter type must therefore be of type Throwable. By assigning another value or null to this parameter, a thrown exception can be suppressed.

Note: This annotation must only be used on exit advice methods.

See Also:
/** * <p> * Indicates that the annotated parameter should be mapped to the {@link Throwable} thrown by the instrumented method or to {@code null} * if the method returned regularly. Note that the Java runtime does not enforce checked exceptions. In order to capture any error, the parameter * type must therefore be of type {@link Throwable}. By assigning another value or {@code null} to this parameter, a thrown exception can be * suppressed. * </p> * <p> * <b>Note</b>: This annotation must only be used on exit advice methods. * </p> * * @see Advice * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Thrown {

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
Determines the typing that is applied when assigning the captured Throwable to the annotated parameter.
Returns:The typing to apply when assigning the annotated parameter.
/** * Determines the typing that is applied when assigning the captured {@link Throwable} to the annotated parameter. * * @return The typing to apply when assigning the annotated parameter. */
Assigner.Typing typing() default Assigner.Typing.DYNAMIC; }

Indicates that the annotated parameter should be mapped to a field in the scope of the instrumented method.

Important: Parameters with this option must not be used when from a constructor in combination with OnMethodEnter and a non-static field where the this reference is not available.

Note: As the mapping is virtual, Byte Buddy might be required to reserve more space on the operand stack than the optimal value when accessing this parameter. This does not normally matter as the additional space requirement is minimal. However, if the runtime performance of class creation is secondary, one can require ASM to recompute the optimal frames by setting ClassWriter.COMPUTE_MAXS. This is however only relevant when writing to a non-static field.

See Also:
/** * <p> * Indicates that the annotated parameter should be mapped to a field in the scope of the instrumented method. * </p> * <p> * <b>Important</b>: Parameters with this option must not be used when from a constructor in combination with * {@link OnMethodEnter} and a non-static field where the {@code this} reference is not available. * </p> * <p> * <b>Note</b>: As the mapping is virtual, Byte Buddy might be required to reserve more space on the operand stack than the * optimal value when accessing this parameter. This does not normally matter as the additional space requirement is minimal. * However, if the runtime performance of class creation is secondary, one can require ASM to recompute the optimal frames by * setting {@link ClassWriter#COMPUTE_MAXS}. This is however only relevant when writing to a non-static field. * </p> * * @see Advice * @see OnMethodEnter * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface FieldValue {
Returns the name of the field.
Returns:The name of the field.
/** * Returns the name of the field. * * @return The name of the field. */
String value();
Returns the type that declares the field that should be mapped to the annotated parameter. If this property is set to void, the field is looked up implicitly within the instrumented class's class hierarchy. The value can also be set to TargetType in order to look up the type on the instrumented type.
Returns:The type that declares the field, void if this type should be determined implicitly or TargetType for the instrumented type.
/** * Returns the type that declares the field that should be mapped to the annotated parameter. If this property * is set to {@code void}, the field is looked up implicitly within the instrumented class's class hierarchy. * The value can also be set to {@link TargetType} in order to look up the type on the instrumented type. * * @return The type that declares the field, {@code void} if this type should be determined implicitly or * {@link TargetType} for the instrumented type. */
Class<?> declaringType() default void.class;

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
The typing that should be applied when assigning the field value.
Returns:The typing to apply upon assignment.
/** * The typing that should be applied when assigning the field value. * * @return The typing to apply upon assignment. */
Assigner.Typing typing() default Assigner.Typing.STATIC; }

Indicates that the annotated parameter should be mapped to a string representation of the instrumented method, a constant representing the Class declaring the adviced method or a Method, Constructor or java.lang.reflect.Executable representing this method.

Note: A constant representing a Method or Constructor is not cached but is recreated for every read.

See Also:
/** * <p> * Indicates that the annotated parameter should be mapped to a string representation of the instrumented method, * a constant representing the {@link Class} declaring the adviced method or a {@link Method}, {@link Constructor} * or {@code java.lang.reflect.Executable} representing this method. * </p> * <p> * <b>Note</b>: A constant representing a {@link Method} or {@link Constructor} is not cached but is recreated for * every read. * </p> * * @see Advice * @see OnMethodEnter * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Origin {
Indicates that the origin string should be indicated by the Object.toString() representation of the instrumented method.
/** * Indicates that the origin string should be indicated by the {@link Object#toString()} representation of the instrumented method. */
String DEFAULT = "";
Returns the pattern the annotated parameter should be assigned. By default, the Annotation.toString() representation of the method is assigned. Alternatively, a pattern can be assigned where:
  • #t inserts the method's declaring type.
  • #m inserts the name of the method (<init> for constructors and <clinit> for static initializers).
  • #d for the method's descriptor.
  • #s for the method's signature.
  • #r for the method's return type.
Any other # character must be escaped by \ which can be escaped by itself. This property is ignored if the annotated parameter is of type Class.
Returns:The pattern the annotated parameter should be assigned.
/** * Returns the pattern the annotated parameter should be assigned. By default, the {@link Origin#toString()} representation * of the method is assigned. Alternatively, a pattern can be assigned where: * <ul> * <li>{@code #t} inserts the method's declaring type.</li> * <li>{@code #m} inserts the name of the method ({@code <init>} for constructors and {@code <clinit>} for static initializers).</li> * <li>{@code #d} for the method's descriptor.</li> * <li>{@code #s} for the method's signature.</li> * <li>{@code #r} for the method's return type.</li> * </ul> * Any other {@code #} character must be escaped by {@code \} which can be escaped by itself. This property is ignored if the annotated * parameter is of type {@link Class}. * * @return The pattern the annotated parameter should be assigned. */
String value() default DEFAULT; }

Indicates that the annotated parameter should be mapped to the value that is returned by the advice method that is annotated by OnMethodEnter.

Note

: This annotation must only be used within an exit advice and is only meaningful in combination with an enter advice.
See Also:
/** * <p> * Indicates that the annotated parameter should be mapped to the value that is returned by the advice method that is annotated * by {@link OnMethodEnter}. * </p> * <p><b>Note</b></p>: This annotation must only be used within an exit advice and is only meaningful in combination with an enter advice. * * @see Advice * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Enter {

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
The typing that should be applied when assigning the enter value.
Returns:The typing to apply upon assignment.
/** * The typing that should be applied when assigning the enter value. * * @return The typing to apply upon assignment. */
Assigner.Typing typing() default Assigner.Typing.STATIC; }
Indicates that the annotated parameter should be mapped to the value that is returned by the advice method that is annotated by OnMethodExit. Before the exit advice returns for the first time, this parameter is initialized to its type's default value.
See Also:
/** * Indicates that the annotated parameter should be mapped to the value that is returned by the advice method that is annotated * by {@link OnMethodExit}. Before the exit advice returns for the first time, this parameter is initialized to its type's default value. * * @see Advice * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Exit {

Indicates if it is possible to write to this parameter. If this property is set to false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set to Typing.DYNAMIC. If this property is set to true, the annotated parameter can be any super type of the instrumented method's declaring type.

Important: This property must be set to true if the advice method is not inlined.

Returns:true if this parameter is read-only.
/** * <p> * Indicates if it is possible to write to this parameter. If this property is set to {@code false}, the annotated * type must be equal to the type declaring the instrumented method if the typing is not also set to {@link Assigner.Typing#DYNAMIC}. * If this property is set to {@code true}, the annotated parameter can be any super type of the instrumented method's declaring type. * </p> * <p> * <b>Important</b>: This property must be set to {@code true} if the advice method is not inlined. * </p> * * @return {@code true} if this parameter is read-only. */
boolean readOnly() default true;
The typing that should be applied when assigning the exit value.
Returns:The typing to apply upon assignment.
/** * The typing that should be applied when assigning the exit value. * * @return The typing to apply upon assignment. */
Assigner.Typing typing() default Assigner.Typing.STATIC; }
Declares the annotated parameter as a local variable that is created by Byte Buddy for the instrumented method. The local variable can be both read and written by advice methods with OnMethodEnter and OnMethodExit annotation and are uniquely identified by their name. However, if a local variable is referenced from an exit advice method, it must also be declared by an enter advice method. It is possible to annotate multiple parameters of an advice method with local variables of the same name as long as all annotated parameters share the same parameter type. All local variables are initialized with their default value which is 0 value for primitive types and null for reference types.
/** * Declares the annotated parameter as a local variable that is created by Byte Buddy for the instrumented method. The local variable can * be both read and written by advice methods with {@link OnMethodEnter} and {@link OnMethodExit} annotation and are uniquely identified by * their name. However, if a local variable is referenced from an exit advice method, it must also be declared by an enter advice method. * It is possible to annotate multiple parameters of an advice method with local variables of the same name as long as all annotated parameters * share the same parameter type. All local variables are initialized with their default value which is {@code 0} value for primitive types and * {@code null} for reference types. */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Local {
The name of the local variable that the annotated parameter references.
Returns:The name of the local variable that the annotated parameter references.
/** * The name of the local variable that the annotated parameter references. * * @return The name of the local variable that the annotated parameter references. */
String value(); }
Indicates that the annotated parameter should always return a default a boxed version of the instrumented methods return value (i.e. 0 for numeric values, false for boolean types and null for reference types). The annotated parameter must be of type Object and cannot be assigned a value.
See Also:
/** * Indicates that the annotated parameter should always return a default a boxed version of the instrumented methods return value * (i.e. {@code 0} for numeric values, {@code false} for {@code boolean} types and {@code null} for reference types). The annotated * parameter must be of type {@link Object} and cannot be assigned a value. * * @see Advice * @see OnMethodEnter * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface StubValue { /* empty */ }
Indicates that the annotated parameter should always return a default value (i.e. 0 for numeric values, false for boolean types and null for reference types). Any assignments to this variable are without any effect.
See Also:
/** * Indicates that the annotated parameter should always return a default value (i.e. {@code 0} for numeric values, {@code false} * for {@code boolean} types and {@code null} for reference types). Any assignments to this variable are without any effect. * * @see Advice * @see OnMethodEnter * @see OnMethodExit */
@Documented @Retention(RetentionPolicy.RUNTIME) @java.lang.annotation.Target(ElementType.PARAMETER) public @interface Unused { /* empty */ }
A builder step for creating an Advice that uses custom mappings of annotations to constant pool values.
/** * A builder step for creating an {@link Advice} that uses custom mappings of annotations to constant pool values. */
@HashCodeAndEqualsPlugin.Enhance public static class WithCustomMapping {
A map containing dynamically computed constant pool values that are mapped by their triggering annotation type.
/** * A map containing dynamically computed constant pool values that are mapped by their triggering annotation type. */
private final Map<Class<? extends Annotation>, OffsetMapping.Factory<?>> offsetMappings;
Creates a new custom mapping builder step without including any custom mappings.
/** * Creates a new custom mapping builder step without including any custom mappings. */
protected WithCustomMapping() { this(Collections.<Class<? extends Annotation>, OffsetMapping.Factory<?>>emptyMap()); }
Creates a new custom mapping builder step with the given custom mappings.
Params:
  • offsetMappings – A map containing dynamically computed constant pool values that are mapped by their triggering annotation type.
/** * Creates a new custom mapping builder step with the given custom mappings. * * @param offsetMappings A map containing dynamically computed constant pool values that are mapped by their triggering annotation type. */
protected WithCustomMapping(Map<Class<? extends Annotation>, OffsetMapping.Factory<?>> offsetMappings) { this.offsetMappings = offsetMappings; }
Binds the supplied annotation to a type constant of the supplied value. Constants can be strings, method handles, method types and any primitive or the value null.
Params:
  • type – The type of the annotation being bound.
  • value – The value to bind to the annotation.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to a type constant of the supplied value. Constants can be strings, method handles, method types * and any primitive or the value {@code null}. * * @param type The type of the annotation being bound. * @param value The value to bind to the annotation. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, Object value) { return bind(OffsetMapping.ForStackManipulation.Factory.of(type, value)); }
Binds the supplied annotation to the value of the supplied field. The field must be visible by the instrumented type and must be declared by a super type of the instrumented field.
Params:
  • type – The type of the annotation being bound.
  • field – The field to bind to this annotation.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the value of the supplied field. The field must be visible by the * instrumented type and must be declared by a super type of the instrumented field. * * @param type The type of the annotation being bound. * @param field The field to bind to this annotation. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, Field field) { return bind(type, new FieldDescription.ForLoadedField(field)); }
Binds the supplied annotation to the value of the supplied field. The field must be visible by the instrumented type and must be declared by a super type of the instrumented field. The binding is defined as read-only and applied static typing.
Params:
  • type – The type of the annotation being bound.
  • fieldDescription – The field to bind to this annotation.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the value of the supplied field. The field must be visible by the * instrumented type and must be declared by a super type of the instrumented field. The binding is defined * as read-only and applied static typing. * * @param type The type of the annotation being bound. * @param fieldDescription The field to bind to this annotation. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, FieldDescription fieldDescription) { return bind(new OffsetMapping.ForField.Resolved.Factory<T>(type, fieldDescription)); }
Binds the supplied annotation to the supplied parameter's argument.
Params:
  • type – The type of the annotation being bound.
  • method – The method that defines the parameter.
  • index – The index of the parameter.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied parameter's argument. * * @param type The type of the annotation being bound. * @param method The method that defines the parameter. * @param index The index of the parameter. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, Method method, int index) { if (index < 0) { throw new IllegalArgumentException("A parameter cannot be negative: " + index); } else if (method.getParameterTypes().length <= index) { throw new IllegalArgumentException(method + " does not declare a parameter with index " + index); } return bind(type, new MethodDescription.ForLoadedMethod(method).getParameters().get(index)); }
Binds the supplied annotation to the supplied parameter's argument.
Params:
  • type – The type of the annotation being bound.
  • constructor – The constructor that defines the parameter.
  • index – The index of the parameter.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied parameter's argument. * * @param type The type of the annotation being bound. * @param constructor The constructor that defines the parameter. * @param index The index of the parameter. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, Constructor<?> constructor, int index) { if (index < 0) { throw new IllegalArgumentException("A parameter cannot be negative: " + index); } else if (constructor.getParameterTypes().length <= index) { throw new IllegalArgumentException(constructor + " does not declare a parameter with index " + index); } return bind(type, new MethodDescription.ForLoadedConstructor(constructor).getParameters().get(index)); }
Binds the supplied annotation to the supplied parameter's argument. The binding is declared read-only and applies static typing.
Params:
  • type – The type of the annotation being bound.
  • parameterDescription – The parameter for which to bind an argument.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied parameter's argument. The binding is declared read-only and * applies static typing. * * @param type The type of the annotation being bound. * @param parameterDescription The parameter for which to bind an argument. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, ParameterDescription parameterDescription) { return bind(new OffsetMapping.ForArgument.Resolved.Factory<T>(type, parameterDescription)); }
Binds the supplied annotation to the supplied type constant.
Params:
  • type – The type of the annotation being bound.
  • value – The type constant to bind.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied type constant. * * @param type The type of the annotation being bound. * @param value The type constant to bind. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, Class<?> value) { return bind(type, TypeDescription.ForLoadedType.of(value)); }
Binds the supplied annotation to the supplied type constant.
Params:
  • type – The type of the annotation being bound.
  • value – The type constant to bind.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied type constant. * * @param type The type of the annotation being bound. * @param value The type constant to bind. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, TypeDescription value) { return bind(new OffsetMapping.ForStackManipulation.Factory<T>(type, value)); }
Binds the supplied annotation to the supplied enumeration constant.
Params:
  • type – The type of the annotation being bound.
  • value – The enumeration constant to bind.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied enumeration constant. * * @param type The type of the annotation being bound. * @param value The enumeration constant to bind. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, Enum<?> value) { return bind(type, new EnumerationDescription.ForLoadedEnumeration(value)); }
Binds the supplied annotation to the supplied enumeration constant.
Params:
  • type – The type of the annotation being bound.
  • value – The enumeration constant to bind.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied enumeration constant. * * @param type The type of the annotation being bound. * @param value The enumeration constant to bind. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, EnumerationDescription value) { return bind(new OffsetMapping.ForStackManipulation.Factory<T>(type, value)); }
Binds the supplied annotation to the supplied fixed value.
Params:
  • type – The type of the annotation being bound.
  • value – The value to bind to this annotation.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied fixed value. * * @param type The type of the annotation being bound. * @param value The value to bind to this annotation. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation type during binding. */
@SuppressWarnings("unchecked") public <T extends Annotation> WithCustomMapping bindSerialized(Class<T> type, Serializable value) { return bindSerialized(type, value, (Class<Serializable>) value.getClass()); }
Binds the supplied annotation to the supplied fixed value.
Params:
  • type – The type of the annotation being bound.
  • value – The value to bind to this annotation.
  • targetType – The type of value as which the instance should be treated.
Type parameters:
  • <T> – The annotation type.
  • <S> – The type of the serialized instance.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds the supplied annotation to the supplied fixed value. * * @param type The type of the annotation being bound. * @param value The value to bind to this annotation. * @param targetType The type of {@code value} as which the instance should be treated. * @param <T> The annotation type. * @param <S> The type of the serialized instance. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public <T extends Annotation, S extends Serializable> WithCustomMapping bindSerialized(Class<T> type, S value, Class<? super S> targetType) { return bind(OffsetMapping.ForSerializedValue.Factory.of(type, value, targetType)); }
Binds the supplied annotation to the annotation's property of the specified name.
Params:
  • type – The type of the annotation being bound.
  • property – The name of the annotation property to be bound.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation during binding.
/** * Binds the supplied annotation to the annotation's property of the specified name. * * @param type The type of the annotation being bound. * @param property The name of the annotation property to be bound. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation during binding. */
public <T extends Annotation> WithCustomMapping bindProperty(Class<T> type, String property) { return bind(OffsetMapping.ForStackManipulation.OfAnnotationProperty.of(type, property)); }
Binds the supplied annotation to the annotation's property of the specified name.
Params:
  • type – The type of the annotation being bound.
  • stackManipulation – The stack manipulation loading the bound value.
  • targetType – The type of the loaded value.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation during binding.
/** * Binds the supplied annotation to the annotation's property of the specified name. * * @param type The type of the annotation being bound. * @param stackManipulation The stack manipulation loading the bound value. * @param targetType The type of the loaded value. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, StackManipulation stackManipulation, java.lang.reflect.Type targetType) { return bind(type, stackManipulation, TypeDefinition.Sort.describe(targetType)); }
Binds the supplied annotation to the annotation's property of the specified name.
Params:
  • type – The type of the annotation being bound.
  • stackManipulation – The stack manipulation loading the bound value.
  • targetType – The type of the loaded value.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation during binding.
/** * Binds the supplied annotation to the annotation's property of the specified name. * * @param type The type of the annotation being bound. * @param stackManipulation The stack manipulation loading the bound value. * @param targetType The type of the loaded value. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, StackManipulation stackManipulation, TypeDescription.Generic targetType) { return bind(new OffsetMapping.ForStackManipulation.Factory<T>(type, stackManipulation, targetType)); }
Binds the supplied annotation to the annotation's property of the specified name.
Params:
  • type – The type of the annotation being bound.
  • offsetMapping – The offset mapping being bound.
Type parameters:
  • <T> – The annotation type.
Returns:A new builder for an advice that considers the supplied annotation during binding.
/** * Binds the supplied annotation to the annotation's property of the specified name. * * @param type The type of the annotation being bound. * @param offsetMapping The offset mapping being bound. * @param <T> The annotation type. * @return A new builder for an advice that considers the supplied annotation during binding. */
public <T extends Annotation> WithCustomMapping bind(Class<T> type, OffsetMapping offsetMapping) { return bind(new OffsetMapping.Factory.Simple<T>(type, offsetMapping)); }
Binds an annotation to a dynamically computed value. Whenever the Advice component discovers the given annotation on a parameter of an advice method, the dynamic value is asked to provide a value that is then assigned to the parameter in question.
Params:
  • offsetMapping – The dynamic value that is computed for binding the parameter to a value.
Returns:A new builder for an advice that considers the supplied annotation type during binding.
/** * Binds an annotation to a dynamically computed value. Whenever the {@link Advice} component discovers the given annotation on * a parameter of an advice method, the dynamic value is asked to provide a value that is then assigned to the parameter in question. * * @param offsetMapping The dynamic value that is computed for binding the parameter to a value. * @return A new builder for an advice that considers the supplied annotation type during binding. */
public WithCustomMapping bind(OffsetMapping.Factory<?> offsetMapping) { Map<Class<? extends Annotation>, OffsetMapping.Factory<?>> offsetMappings = new HashMap<Class<? extends Annotation>, OffsetMapping.Factory<?>>(this.offsetMappings); if (!offsetMapping.getAnnotationType().isAnnotation()) { throw new IllegalArgumentException("Not an annotation type: " + offsetMapping.getAnnotationType()); } else if (offsetMappings.put(offsetMapping.getAnnotationType(), offsetMapping) != null) { throw new IllegalArgumentException("Annotation type already mapped: " + offsetMapping.getAnnotationType()); } return new WithCustomMapping(offsetMappings); }
Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is accessed by querying the class loader of the supplied class for a class file.
Params:
  • advice – The type declaring the advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is * accessed by querying the class loader of the supplied class for a class file. * * @param advice The type declaring the advice. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(Class<?> advice) { return to(advice, ClassFileLocator.ForClassLoader.of(advice.getClassLoader())); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • advice – The type declaring the advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param advice The type declaring the advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(Class<?> advice, ClassFileLocator classFileLocator) { return to(TypeDescription.ForLoadedType.of(advice), classFileLocator); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • advice – A description of the type declaring the advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param advice A description of the type declaring the advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(TypeDescription advice, ClassFileLocator classFileLocator) { return Advice.to(advice, classFileLocator, new ArrayList<OffsetMapping.Factory<?>>(offsetMappings.values())); }
Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is accessed by querying the class loader of the supplied class for a class file.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. The advices binary representation is * accessed by querying the class loader of the supplied class for a class file. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(Class<?> enterAdvice, Class<?> exitAdvice) { ClassLoader enterLoader = enterAdvice.getClassLoader(), exitLoader = exitAdvice.getClassLoader(); return to(enterAdvice, exitAdvice, enterLoader == exitLoader ? ClassFileLocator.ForClassLoader.of(enterLoader) : new ClassFileLocator.Compound(ClassFileLocator.ForClassLoader.of(enterLoader), ClassFileLocator.ForClassLoader.of(exitLoader))); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(Class<?> enterAdvice, Class<?> exitAdvice, ClassFileLocator classFileLocator) { return to(TypeDescription.ForLoadedType.of(enterAdvice), TypeDescription.ForLoadedType.of(exitAdvice), classFileLocator); }
Implements advice where every matched method is advised by the given type's advisory methods. Using this method, a non-operational class file locator is specified for the advice target. This implies that only advice targets with the inline target set to false are resolvable by the returned instance.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. Using this method, a non-operational * class file locator is specified for the advice target. This implies that only advice targets with the <i>inline</i> target set * to {@code false} are resolvable by the returned instance. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(TypeDescription enterAdvice, TypeDescription exitAdvice) { return to(enterAdvice, exitAdvice, ClassFileLocator.NoOp.INSTANCE); }
Implements advice where every matched method is advised by the given type's advisory methods.
Params:
  • enterAdvice – The type declaring the enter advice.
  • exitAdvice – The type declaring the exit advice.
  • classFileLocator – The class file locator for locating the advisory class's class file.
Returns:A method visitor wrapper representing the supplied advice.
/** * Implements advice where every matched method is advised by the given type's advisory methods. * * @param enterAdvice The type declaring the enter advice. * @param exitAdvice The type declaring the exit advice. * @param classFileLocator The class file locator for locating the advisory class's class file. * @return A method visitor wrapper representing the supplied advice. */
public Advice to(TypeDescription enterAdvice, TypeDescription exitAdvice, ClassFileLocator classFileLocator) { return Advice.to(enterAdvice, exitAdvice, classFileLocator, new ArrayList<OffsetMapping.Factory<?>>(offsetMappings.values())); } }
A marker class that indicates that an advice method does not suppress any Throwable.
/** * A marker class that indicates that an advice method does not suppress any {@link Throwable}. */
private static class NoExceptionHandler extends Throwable {
A description of the NoExceptionHandler type.
/** * A description of the {@link NoExceptionHandler} type. */
private static final TypeDescription DESCRIPTION = TypeDescription.ForLoadedType.of(NoExceptionHandler.class);
A private constructor as this class is not supposed to be invoked.
/** * A private constructor as this class is not supposed to be invoked. */
private NoExceptionHandler() { throw new UnsupportedOperationException("This class only serves as a marker type and should not be instantiated"); } }
A marker type to be used as an argument for OnMethodEnter.skipOn(). If this value is set, the instrumented method is not invoked if the annotated advice method returns a default value. A default value is false for a boolean type, 0 for a byte, short, char, int, long, float or double type and null for a reference type. It is illegal to use this value if the advice method returns void.
/** * A marker type to be used as an argument for {@link OnMethodEnter#skipOn()}. If this value is set, the instrumented method * is not invoked if the annotated advice method <b>returns a default value</b>. A default value is {@code false} for a * {@code boolean} type, {@code 0} for a {@code byte}, {@code short}, {@code char}, {@code int}, {@code long}, {@code float} * or {@code double} type and {@code null} for a reference type. It is illegal to use this value if the advice method * returns {@code void}. */
public static final class OnDefaultValue {
A private constructor as this class is not supposed to be invoked.
/** * A private constructor as this class is not supposed to be invoked. */
private OnDefaultValue() { throw new UnsupportedOperationException("This class only serves as a marker type and should not be instantiated"); } }
A marker type to be used as an argument for OnMethodEnter.skipOn(). If this value is set, the instrumented method is not invoked if the annotated advice method returns a non-default value. A default value is false for a boolean type, 0 for a byte, short, char, int, long, float or double type and null for a reference type. It is illegal to use this value if the advice method returns void.
/** * A marker type to be used as an argument for {@link OnMethodEnter#skipOn()}. If this value is set, the instrumented method * is not invoked if the annotated advice method <b>returns a non-default value</b>. A default value is {@code false} for a * {@code boolean} type, {@code 0} for a {@code byte}, {@code short}, {@code char}, {@code int}, {@code long}, {@code float} * or {@code double} type and {@code null} for a reference type. It is illegal to use this value if the advice method * returns {@code void}. */
public static final class OnNonDefaultValue {
A private constructor as this class is not supposed to be invoked.
/** * A private constructor as this class is not supposed to be invoked. */
private OnNonDefaultValue() { throw new UnsupportedOperationException("This class only serves as a marker type and should not be instantiated"); } } }