Class Morph.Binder.RedirectionProxy
java.lang.Object
net.bytebuddy.implementation.bytecode.StackManipulation.AbstractBase
net.bytebuddy.implementation.bind.annotation.Morph.Binder.RedirectionProxy
- All Implemented Interfaces:
AuxiliaryType
,StackManipulation
- Enclosing class:
- Morph.Binder
@Enhance
protected static class Morph.Binder.RedirectionProxy
extends StackManipulation.AbstractBase
implements AuxiliaryType
A proxy that implements the installed interface in order to allow for a morphed super method invocation.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
Creates an instance of the proxy when instrumenting an instance method.protected static class
Implements a the method call of the morphing method.protected static enum
Creates an instance of the proxy when instrumenting a static method.Nested classes/interfaces inherited from interface net.bytebuddy.implementation.auxiliary.AuxiliaryType
AuxiliaryType.NamingStrategy, AuxiliaryType.SignatureRelevant
Nested classes/interfaces inherited from interface net.bytebuddy.implementation.bytecode.StackManipulation
StackManipulation.AbstractBase, StackManipulation.Compound, StackManipulation.Illegal, StackManipulation.Simple, StackManipulation.Size, StackManipulation.Trivial
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Assigner
The assigner to use.protected static final String
The name of the field that carries an instance for invoking a super method on.private final TypeDescription
The type that is instrumented on which the super method is invoked.private final TypeDescription
The interface type that is implemented by the generated proxy.private final boolean
Determines if the generated proxy should beSerializable
.private final Implementation.SpecialMethodInvocation
The special method invocation to be executed by the morphing type via an accessor on the instrumented type.Fields inherited from interface net.bytebuddy.implementation.auxiliary.AuxiliaryType
DEFAULT_TYPE_MODIFIER
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
RedirectionProxy
(TypeDescription morphingType, TypeDescription instrumentedType, Implementation.SpecialMethodInvocation specialMethodInvocation, Assigner assigner, boolean serializableProxy) Creates a new redirection proxy. -
Method Summary
Modifier and TypeMethodDescriptionapply
(org.objectweb.asm.MethodVisitor methodVisitor, Implementation.Context implementationContext) Applies the stack manipulation that is described by this instance.Produces a suffix that gives this auxiliary type a stable name.make
(String auxiliaryTypeName, ClassFileVersion classFileVersion, MethodAccessorFactory methodAccessorFactory) Creates a new auxiliary type.Methods inherited from class net.bytebuddy.implementation.bytecode.StackManipulation.AbstractBase
isValid
-
Field Details
-
FIELD_NAME
The name of the field that carries an instance for invoking a super method on.- See Also:
-
morphingType
The interface type that is implemented by the generated proxy. -
instrumentedType
The type that is instrumented on which the super method is invoked. -
specialMethodInvocation
The special method invocation to be executed by the morphing type via an accessor on the instrumented type. -
assigner
The assigner to use. -
serializableProxy
private final boolean serializableProxyDetermines if the generated proxy should beSerializable
.
-
-
Constructor Details
-
RedirectionProxy
protected RedirectionProxy(TypeDescription morphingType, TypeDescription instrumentedType, Implementation.SpecialMethodInvocation specialMethodInvocation, Assigner assigner, boolean serializableProxy) Creates a new redirection proxy.- Parameters:
morphingType
- The interface type that is implemented by the generated proxy.instrumentedType
- The type that is instrumented on which the super method is invoked.specialMethodInvocation
- The special method invocation to be executed by the morphing type via an accessor on the instrumented type.assigner
- The assigner to use.serializableProxy
-true
if the proxy should be serializable.
-
-
Method Details
-
getSuffix
Produces a suffix that gives this auxiliary type a stable name. A best effort is made that this suffix is unique.- Specified by:
getSuffix
in interfaceAuxiliaryType
- Returns:
- The suffix for this auxiliary type.
-
make
public DynamicType make(String auxiliaryTypeName, ClassFileVersion classFileVersion, MethodAccessorFactory methodAccessorFactory) Creates a new auxiliary type.- Specified by:
make
in interfaceAuxiliaryType
- Parameters:
auxiliaryTypeName
- The fully qualified binary name for this auxiliary type. The type should be in the same package than the instrumented type this auxiliary type is providing services to in order to allow package-private access.classFileVersion
- The class file version the auxiliary class should be written in.methodAccessorFactory
- A factory for accessor methods.- Returns:
- A dynamically created type representing this auxiliary type.
-
apply
public StackManipulation.Size apply(org.objectweb.asm.MethodVisitor methodVisitor, Implementation.Context implementationContext) Applies the stack manipulation that is described by this instance.- Specified by:
apply
in interfaceStackManipulation
- Parameters:
methodVisitor
- The method visitor used to write the method implementation to.implementationContext
- The context of the current implementation.- Returns:
- The changes to the size of the operand stack that are implied by this stack manipulation.
-