com.appland.appmap.transform.annotations.HookAnnotatedSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
package com.appland.appmap.transform.annotations;
import java.util.Map;
import com.appland.appmap.config.AppMapConfig;
import com.appland.appmap.util.FullyQualifiedName;
import javassist.CtBehavior;
public class HookAnnotatedSystem extends SourceMethodSystem {
private String annotationClass;
private HookAnnotatedSystem(CtBehavior behavior, String annotationClass) {
super(behavior, HookAnnotated.class);
this.annotationClass = annotationClass;
}
/**
* Factory method. Reads any relevant annotation information and caches it.
* @param behavior The hook behavior
* @return A new {@code HookAnnotatedSystem} if {@link HookAnnotated} is found. Otherwise,
* {@code null}.
*/
public static ISystem from(CtBehavior behavior) {
String annotatedClass = (String) AnnotationUtil.getValue(behavior, HookAnnotated.class, null);
if (annotatedClass == null) {
return null;
}
return new HookAnnotatedSystem(behavior, annotatedClass);
}
@Override
public Boolean match(CtBehavior behavior, Map matchResult) {
final Boolean isExplicitlyExcluded = AppMapConfig.get().excludes(new FullyQualifiedName(behavior));
return behavior.hasAnnotation(this.annotationClass) && !isExplicitlyExcluded;
}
}