package scouter.bytebuddy.build;
import scouter.bytebuddy.ByteBuddy;
import scouter.bytebuddy.description.type.TypeDescription;
import scouter.bytebuddy.dynamic.ClassFileLocator;
import scouter.bytebuddy.dynamic.DynamicType;
import scouter.bytebuddy.dynamic.scaffold.inline.MethodNameTransformer;
import scouter.bytebuddy.implementation.Implementation;
import scouter.bytebuddy.matcher.ElementMatchers;
import static scouter.bytebuddy.matcher.ElementMatchers.isDeclaredBy;
/**
* An entry point for a build tool which is responsible for the transformation's configuration.
*/
public interface EntryPoint {
/**
* Returns the Byte Buddy instance to use.
*
* @return The Byte Buddy instance to use.
*/
ByteBuddy getByteBuddy();
/**
* Applies a transformation.
*
* @param typeDescription The type to transform.
* @param byteBuddy The Byte Buddy instance to use.
* @param classFileLocator The class file locator to use.
* @param methodNameTransformer The Method name transformer to use.
* @return A builder for the dynamic type to create.
*/
DynamicType.Builder<?> transform(TypeDescription typeDescription,
ByteBuddy byteBuddy,
ClassFileLocator classFileLocator,
MethodNameTransformer methodNameTransformer);
/**
* Default implementations for an entry point.
*/
enum Default implements EntryPoint {
/**
* An entry point that rebases a type.
*/
REBASE(new ByteBuddy()) {
@Override
public DynamicType.Builder<?> transform(TypeDescription typeDescription,
ByteBuddy byteBuddy,
ClassFileLocator classFileLocator,
MethodNameTransformer methodNameTransformer) {
return byteBuddy.rebase(typeDescription, classFileLocator, methodNameTransformer);
}
},
/**
* An entry point that redefines a type.
*/
REDEFINE(new ByteBuddy()) {
@Override
public DynamicType.Builder<?> transform(TypeDescription typeDescription,
ByteBuddy byteBuddy,
ClassFileLocator classFileLocator,
MethodNameTransformer methodNameTransformer) {
return byteBuddy.redefine(typeDescription, classFileLocator);
}
},
/**
* An entry point that redefines a type and which does not change the dynamic type's shape, i.e. does
* not add any methods or considers intercepting inherited methods.
*/
REDEFINE_LOCAL(new ByteBuddy().with(Implementation.Context.Disabled.Factory.INSTANCE)) {
@Override
public DynamicType.Builder<?> transform(TypeDescription typeDescription,
ByteBuddy byteBuddy,
ClassFileLocator classFileLocator,
MethodNameTransformer methodNameTransformer) {
return byteBuddy.redefine(typeDescription, classFileLocator).ignoreAlso(ElementMatchers.not(ElementMatchers.isDeclaredBy(typeDescription)));
}
};
/**
* The Byte Buddy instance to use.
*/
private final ByteBuddy byteBuddy;
/**
* Creates a default entry point.
*
* @param byteBuddy The Byte Buddy instance to use.
*/
Default(ByteBuddy byteBuddy) {
this.byteBuddy = byteBuddy;
}
@Override
public ByteBuddy getByteBuddy() {
return byteBuddy;
}
}
}