use of com.navercorp.pinpoint.bootstrap.instrument.matcher.operand.AnnotationInternalNameMatcherOperand in project pinpoint by naver.
the class DefaultTransformerMatcherTest method matchClass.
@Test
public void matchClass() throws Exception {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
InstrumentMatcherCacheConfig config = new DefaultInstrumentMatcherCacheConfig();
TransformerMatcher matcher = new DefaultTransformerMatcher(config);
InternalClassMetadata stringClassMetadata = readClassMetadata(classLoader, String.class.getName());
InternalClassMetadata threadClassMetadata = readClassMetadata(classLoader, Thread.class.getName());
InternalClassMetadata inputStreamClassMetadata = readClassMetadata(classLoader, InputStream.class.getName());
MatcherOperand operand = null;
// single operand.
operand = new ClassInternalNameMatcherOperand("java/lang/String");
boolean result = matcher.match(classLoader, operand, stringClassMetadata);
assertTrue(result);
// not matched.
operand = new ClassInternalNameMatcherOperand("java/io/InputStream");
result = matcher.match(classLoader, operand, stringClassMetadata);
assertFalse(result);
// and operator
// package AND interface
operand = new PackageInternalNameMatcherOperand("java/lang").and(new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false));
// java.lang.Thread
result = matcher.match(classLoader, operand, threadClassMetadata);
assertTrue(result);
// java.lang.String
result = matcher.match(classLoader, operand, stringClassMetadata);
assertFalse(result);
// or operator
// package OR interface
operand = new PackageInternalNameMatcherOperand("java/lang").or(new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false));
// java.lang.Thread
result = matcher.match(classLoader, operand, threadClassMetadata);
assertTrue(result);
// java.lang.String
result = matcher.match(classLoader, operand, stringClassMetadata);
assertTrue(result);
// not operator
// NOT interface.
operand = new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false);
operand = operand.not();
// java.lang.Thread
result = matcher.match(classLoader, operand, threadClassMetadata);
assertFalse(result);
// java.lang.String
result = matcher.match(classLoader, operand, stringClassMetadata);
assertTrue(result);
// complex operator
// (class or interface) AND (class or interface) ==> class, interface
operand = new ClassInternalNameMatcherOperand("java/lang/String").or(new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false));
operand = operand.and(new ClassInternalNameMatcherOperand("java/lang/Thread").or(new InterfaceInternalNameMatcherOperand("java/lang/Comparable", false)));
result = matcher.match(classLoader, operand, stringClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, operand, threadClassMetadata);
assertTrue(result);
// (class AND interface) OR (class AND interface) ==> class, class
operand = new ClassInternalNameMatcherOperand("java/lang/String").and(new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false));
operand = operand.or(new ClassInternalNameMatcherOperand("java/lang/Thread").and(new InterfaceInternalNameMatcherOperand("java/lang/Comparable", false)));
result = matcher.match(classLoader, operand, stringClassMetadata);
assertFalse(result);
result = matcher.match(classLoader, operand, threadClassMetadata);
assertFalse(result);
// package AND (interface OR annotation) ==> package
operand = new PackageInternalNameMatcherOperand("java/lang");
operand = operand.and(new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false).or(new AnnotationInternalNameMatcherOperand("java/lang/Override", false)));
result = matcher.match(classLoader, operand, stringClassMetadata);
assertFalse(result);
result = matcher.match(classLoader, operand, threadClassMetadata);
assertTrue(result);
// class OR (interface AND NOT annotation)
operand = new ClassInternalNameMatcherOperand("java/lang/String");
operand = operand.or(new InterfaceInternalNameMatcherOperand("java/lang/Runnable", false).and(new AnnotationInternalNameMatcherOperand("java/lang/Override", false).not()));
result = matcher.match(classLoader, operand, stringClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, operand, threadClassMetadata);
assertTrue(result);
}
use of com.navercorp.pinpoint.bootstrap.instrument.matcher.operand.AnnotationInternalNameMatcherOperand in project pinpoint by naver.
the class DefaultTransformerMatcherTest method considerHierarchy.
@Test
public void considerHierarchy() throws Exception {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
InstrumentMatcherCacheConfig config = new DefaultInstrumentMatcherCacheConfig();
TransformerMatcher matcher = new DefaultTransformerMatcher(config);
boolean result = false;
InternalClassMetadata stringClassMetadata = readClassMetadata(classLoader, String.class.getName());
InternalClassMetadata threadClassMetadata = readClassMetadata(classLoader, Thread.class.getName());
InternalClassMetadata extendsThreadClassMetadata = readClassMetadata(classLoader, ExtendsThread.class.getName());
InternalClassMetadata extendsExtendsThreadClassMetadata = readClassMetadata(classLoader, ExtendsExtendsThread.class.getName());
InternalClassMetadata hasMetaAnnotationClassMetadata = readClassMetadata(classLoader, HasMetaAnnotation.class.getName());
InternalClassMetadata hasMetaMetaAnnotationClassMetadata = readClassMetadata(classLoader, HasMetaMetaAnnotation.class.getName());
// interface
InterfaceInternalNameMatcherOperand interfaceMatcherOperand = new InterfaceInternalNameMatcherOperand("java/lang/Runnable", true);
result = matcher.match(classLoader, interfaceMatcherOperand, extendsThreadClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, interfaceMatcherOperand, threadClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, interfaceMatcherOperand, stringClassMetadata);
assertFalse(result);
result = matcher.match(classLoader, interfaceMatcherOperand, extendsExtendsThreadClassMetadata);
assertTrue(result);
// super
SuperClassInternalNameMatcherOperand superMatcherOperand = new SuperClassInternalNameMatcherOperand("java/lang/Thread", true);
result = matcher.match(classLoader, superMatcherOperand, extendsExtendsThreadClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, superMatcherOperand, extendsThreadClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, superMatcherOperand, threadClassMetadata);
assertFalse(result);
result = matcher.match(classLoader, superMatcherOperand, stringClassMetadata);
assertFalse(result);
// annotation
AnnotationInternalNameMatcherOperand annotationMatcherOperand = new AnnotationInternalNameMatcherOperand("javax/annotation/Resource", true);
result = matcher.match(classLoader, annotationMatcherOperand, hasMetaAnnotationClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, annotationMatcherOperand, hasMetaMetaAnnotationClassMetadata);
assertTrue(result);
result = matcher.match(classLoader, annotationMatcherOperand, stringClassMetadata);
assertFalse(result);
result = matcher.match(classLoader, annotationMatcherOperand, threadClassMetadata);
assertFalse(result);
}
use of com.navercorp.pinpoint.bootstrap.instrument.matcher.operand.AnnotationInternalNameMatcherOperand in project pinpoint by naver.
the class TransformerMatcherExecutionPlannerTest method findIndex.
@Test
public void findIndex() {
TransformerMatcherExecutionPlanner executionPlanner = new TransformerMatcherExecutionPlanner();
// and
MatcherOperand operand = new ClassInternalNameMatcherOperand("java/lang/String");
operand = operand.and(new InterfaceInternalNameMatcherOperand("java/lang/Comparable", false));
operand = operand.and(new AnnotationInternalNameMatcherOperand("java/lang/Override", false));
operand = operand.and(new PackageInternalNameMatcherOperand("java/lang"));
List<MatcherOperand> result = executionPlanner.findIndex(operand);
assertEquals(1, result.size());
// or
operand = new ClassInternalNameMatcherOperand("java/lang/String");
operand = operand.or(new InterfaceInternalNameMatcherOperand("java/lang/Comparable", false));
operand = operand.or(new AnnotationInternalNameMatcherOperand("java/lang/Override", false));
operand = operand.or(new PackageInternalNameMatcherOperand("java/lang"));
result = executionPlanner.findIndex(operand);
assertEquals(2, result.size());
// not
operand = new InterfaceInternalNameMatcherOperand("java/lang/Comparable", false);
operand = operand.or(new AnnotationInternalNameMatcherOperand("java/lang/Override", false));
operand = operand.and(new PackageInternalNameMatcherOperand("javax").not());
result = executionPlanner.findIndex(operand);
assertEquals(0, result.size());
// none
operand = new InterfaceInternalNameMatcherOperand("java/lang/Comparable", false);
operand = operand.or(new AnnotationInternalNameMatcherOperand("java/lang/Override", false));
operand = operand.and(new SuperClassInternalNameMatcherOperand("java/lang/Object", true));
result = executionPlanner.findIndex(operand);
assertEquals(0, result.size());
}
Aggregations