Package net.bytebuddy.agent.builder
Class LambdaFactory
java.lang.Object
net.bytebuddy.agent.builder.LambdaFactory
This class serves as a dispatcher for creating lambda expression objects when Byte Buddy is configured to instrument the
java.lang.invoke.LambdaMetafactory
. For this purpose, this class is injected into the class path to serve as a VM-global
singleton and for becoming reachable from the JVM's meta factory. This class keeps a reference to all registered transformers which need
to be explicitly deregistered in order to avoid a memory leak.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Map
<ClassFileTransformer, LambdaFactory> A mapping of all registered class file transformers and their lambda factories, linked in their application order.private final Method
The dispatcher method to invoke for creating a new lambda instance.private static final String
The name of the field to access.private final Object
The target instance that is a factory for creating lambdas. -
Constructor Summary
ConstructorsConstructorDescriptionLambdaFactory
(Object target, Method dispatcher) Creates a new lambda factory. -
Method Summary
Modifier and TypeMethodDescriptionprivate byte[]
invoke
(Object caller, String invokedName, Object invokedType, Object samMethodType, Object implMethod, Object instantiatedMethodType, boolean serializable, List<Class<?>> markerInterfaces, List<?> additionalBridges, Collection<ClassFileTransformer> classFileTransformers) Applies this lambda meta factory.static byte[]
make
(Object caller, String invokedName, Object invokedType, Object samMethodType, Object implMethod, Object instantiatedMethodType, boolean serializable, List<Class<?>> markerInterfaces, List<?> additionalBridges) Dispatches the creation of a new class representing a class file.static boolean
register
(ClassFileTransformer classFileTransformer, Object classFileFactory) Registers a class file transformer together with a factory for creating a lambda expression.static boolean
release
(ClassFileTransformer classFileTransformer) Releases a class file transformer.
-
Field Details
-
FIELD_NAME
The name of the field to access.- See Also:
-
CLASS_FILE_TRANSFORMERS
A mapping of all registered class file transformers and their lambda factories, linked in their application order. This field must not be accessed directly but only by reading this class from the system class loader. -
target
The target instance that is a factory for creating lambdas. -
dispatcher
The dispatcher method to invoke for creating a new lambda instance.
-
-
Constructor Details
-
LambdaFactory
Creates a new lambda factory.- Parameters:
target
- The target instance that is a factory for creating lambdas.dispatcher
- The dispatcher method to invoke for creating a new lambda instance.
-
-
Method Details
-
register
Registers a class file transformer together with a factory for creating a lambda expression. It is possible to call this method independently of the class loader's context as the supplied injector makes sure that the manipulated collection is the one that is held by the system class loader.- Parameters:
classFileTransformer
- The class file transformer to register.classFileFactory
- The lambda class file factory to use. This factory must define a visible instance method with the signaturebyte[] make(Object, String, Object, Object, Object, Object, boolean, List, List, Collection
. The arguments provided are the invokedynamic call site's lookup object, the lambda method's name, the factory method's type, the lambda method's type, the target method's handle, the specialized method type of the lambda expression, a boolean to indicate serializability, a list of marker interfaces, a list of additional bridges and a collection of class file transformers to apply.- Returns:
true
if this is the first registered transformer. This indicates that theLambdaMetafactory
must be instrumented to delegate to this alternative factory.
-
release
Releases a class file transformer.- Parameters:
classFileTransformer
- The class file transformer to release.- Returns:
true
if the removed transformer was the last class file transformer registered. This indicates that theLambdaMetafactory
must be instrumented to no longer delegate to this alternative factory.
-
invoke
private byte[] invoke(Object caller, String invokedName, Object invokedType, Object samMethodType, Object implMethod, Object instantiatedMethodType, boolean serializable, List<Class<?>> markerInterfaces, List<?> additionalBridges, Collection<ClassFileTransformer> classFileTransformers) Applies this lambda meta factory.- Parameters:
caller
- A lookup context representing the creating class of this lambda expression.invokedName
- The name of the lambda expression's represented method.invokedType
- The type of the lambda expression's factory method.samMethodType
- The type of the lambda expression's represented method.implMethod
- A handle representing the target of the lambda expression's method.instantiatedMethodType
- A specialization of the type of the lambda expression's represented method.serializable
-true
if the lambda expression should be serializable.markerInterfaces
- A list of interfaces for the lambda expression to represent.additionalBridges
- A list of additional bridge methods to be implemented by the lambda expression.classFileTransformers
- A collection of class file transformers to apply when creating the class.- Returns:
- A binary representation of the transformed class file.
-
make
public static byte[] make(Object caller, String invokedName, Object invokedType, Object samMethodType, Object implMethod, Object instantiatedMethodType, boolean serializable, List<Class<?>> markerInterfaces, List<?> additionalBridges) Dispatches the creation of a new class representing a class file.- Parameters:
caller
- A lookup context representing the creating class of this lambda expression.invokedName
- The name of the lambda expression's represented method.invokedType
- The type of the lambda expression's factory method.samMethodType
- The type of the lambda expression's represented method.implMethod
- A handle representing the target of the lambda expression's method.instantiatedMethodType
- A specialization of the type of the lambda expression's represented method.serializable
-true
if the lambda expression should be serializable.markerInterfaces
- A list of interfaces for the lambda expression to represent.additionalBridges
- A list of additional bridge methods to be implemented by the lambda expression.- Returns:
- A binary representation of the transformed class file.
-