com.ui4j.bytebuddy.instrumentation.attribute.FieldAttributeAppender Maven / Gradle / Ivy
The newest version!
package com.ui4j.bytebuddy.instrumentation.attribute;
import com.ui4j.bytebuddy.instrumentation.attribute.annotation.AnnotationAppender;
import com.ui4j.bytebuddy.instrumentation.attribute.annotation.AnnotationDescription;
import com.ui4j.bytebuddy.instrumentation.attribute.annotation.AnnotationList;
import com.ui4j.bytebuddy.instrumentation.field.FieldDescription;
import com.ui4j.bytebuddy.instrumentation.type.TypeDescription;
import com.ui4j.bytebuddy.jar.asm.FieldVisitor;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.util.Arrays;
/**
* An appender that writes attributes or annotations to a given ASM {@link com.ui4j.bytebuddy.jar.asm.FieldVisitor}.
*/
public interface FieldAttributeAppender {
/**
* Applies this attribute appender to a given field visitor.
*
* @param fieldVisitor The field visitor to which the attributes that are represented by this attribute appender
* are written to.
* @param fieldDescription The description of the field to which the field visitor belongs to.
*/
void apply(FieldVisitor fieldVisitor, FieldDescription fieldDescription);
/**
* A field attribute appender that does not append any attributes.
*/
static enum NoOp implements FieldAttributeAppender, Factory {
/**
* The singleton instance.
*/
INSTANCE;
@Override
public FieldAttributeAppender make(TypeDescription typeDescription) {
return this;
}
@Override
public void apply(FieldVisitor fieldVisitor, FieldDescription fieldDescription) {
/* do nothing */
}
}
/**
* A factory that creates field attribute appenders for a given type.
*/
static interface Factory {
/**
* Returns a field attribute appender that is applicable for a given type description.
*
* @param typeDescription The type for which a field attribute appender is to be applied for.
* @return The field attribute appender which should be applied for the given type.
*/
FieldAttributeAppender make(TypeDescription typeDescription);
/**
* A field attribute appender factory that combines several field attribute appender factories to be
* represented as a single factory.
*/
static class Compound implements Factory {
/**
* The factories that this compound factory represents in their application order.
*/
private final Factory[] factory;
/**
* Creates a new compound field attribute appender factory.
*
* @param factory The factories that are to be combined by this compound factory in the order of their
* application.
*/
public Compound(Factory... factory) {
this.factory = factory;
}
@Override
public FieldAttributeAppender make(TypeDescription typeDescription) {
FieldAttributeAppender[] fieldAttributeAppender = new FieldAttributeAppender[factory.length];
int index = 0;
for (Factory factory : this.factory) {
fieldAttributeAppender[index++] = factory.make(typeDescription);
}
return new FieldAttributeAppender.Compound(fieldAttributeAppender);
}
@Override
public boolean equals(Object other) {
return this == other || !(other == null || getClass() != other.getClass())
&& Arrays.equals(factory, ((Compound) other).factory);
}
@Override
public int hashCode() {
return Arrays.hashCode(factory);
}
@Override
public String toString() {
return "FieldAttributeAppender.Factory.Compound{factory=" + Arrays.toString(factory) + '}';
}
}
}
/**
* Appends an annotation to a field. The visibility of the annotation is determined by the annotation type's
* {@link java.lang.annotation.RetentionPolicy} annotation.
*/
static class ForAnnotation implements FieldAttributeAppender, Factory {
/**
* The annotations that this appender appends.
*/
private final AnnotationList annotations;
/**
* Creates a new field annotation appender.
*
* @param annotation The annotations to be appended to the field.
*/
public ForAnnotation(Annotation... annotation) {
annotations = new AnnotationList.ForLoadedAnnotation(annotation);
}
@Override
public void apply(FieldVisitor fieldVisitor, FieldDescription fieldDescription) {
AnnotationAppender annotationAppender =
new AnnotationAppender.Default(new AnnotationAppender.Target.OnField(fieldVisitor));
for (AnnotationDescription annotation : annotations) {
annotationAppender.append(annotation, AnnotationAppender.AnnotationVisibility.of(annotation));
}
}
@Override
public FieldAttributeAppender make(TypeDescription typeDescription) {
return this;
}
@Override
public boolean equals(Object other) {
return this == other || !(other == null || getClass() != other.getClass())
&& annotations.equals(((ForAnnotation) other).annotations);
}
@Override
public int hashCode() {
return annotations.hashCode();
}
@Override
public String toString() {
return "FieldAttributeAppender.ForAnnotation{annotations=" + annotations + '}';
}
}
/**
* Writes all annotations that are found on a field that belongs to a loaded type of the JVM as visible
* annotations.
*/
static class ForLoadedField implements FieldAttributeAppender, Factory {
/**
* The field from which the annotations should be copied.
*/
private final FieldDescription fieldDescription;
/**
* Creates a new field attribute appender that appends all annotations that are found on a loaded field.
*
* @param field The field from which the annotations to append are read.
*/
public ForLoadedField(Field field) {
this.fieldDescription = new FieldDescription.ForLoadedField(field);
}
@Override
public void apply(FieldVisitor fieldVisitor, FieldDescription fieldDescription) {
AnnotationAppender annotationAppender =
new AnnotationAppender.Default(new AnnotationAppender.Target.OnField(fieldVisitor));
for (AnnotationDescription annotation : this.fieldDescription.getDeclaredAnnotations()) {
annotationAppender.append(annotation, AnnotationAppender.AnnotationVisibility.RUNTIME);
}
}
@Override
public FieldAttributeAppender make(TypeDescription typeDescription) {
return this;
}
@Override
public boolean equals(Object other) {
return this == other || !(other == null || getClass() != other.getClass())
&& fieldDescription.equals(((ForLoadedField) other).fieldDescription);
}
@Override
public int hashCode() {
return fieldDescription.hashCode();
}
@Override
public String toString() {
return "FieldAttributeAppender.ForLoadedField{fieldDescription=" + fieldDescription + '}';
}
}
/**
* A field attribute appender that combines several method attribute appenders to be represented as a single
* field attribute appender.
*/
static class Compound implements FieldAttributeAppender {
/**
* The field attribute appenders this appender represents in their application order.
*/
private final FieldAttributeAppender[] fieldAttributeAppender;
/**
* Creates a new compound field attribute appender.
*
* @param fieldAttributeAppender The field attribute appenders that are to be combined by this compound appender
* in the order of their application.
*/
public Compound(FieldAttributeAppender... fieldAttributeAppender) {
this.fieldAttributeAppender = fieldAttributeAppender;
}
@Override
public void apply(FieldVisitor fieldVisitor, FieldDescription fieldDescription) {
for (FieldAttributeAppender fieldAttributeAppender : this.fieldAttributeAppender) {
fieldAttributeAppender.apply(fieldVisitor, fieldDescription);
}
}
@Override
public boolean equals(Object other) {
return this == other || !(other == null || getClass() != other.getClass())
&& Arrays.equals(fieldAttributeAppender, ((Compound) other).fieldAttributeAppender);
}
@Override
public int hashCode() {
return Arrays.hashCode(fieldAttributeAppender);
}
@Override
public String toString() {
return "FieldAttributeAppender.Compound{fieldAttributeAppender=" + Arrays.toString(fieldAttributeAppender) + '}';
}
}
}