org.glowroot.agent.weaving.AdviceMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glowroot-agent-it-harness Show documentation
Show all versions of glowroot-agent-it-harness Show documentation
Glowroot Agent Integration Test Harness
/*
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.glowroot.agent.weaving;
import java.lang.reflect.Modifier;
import java.util.Collection;
import java.util.List;
import java.util.regex.Pattern;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.collect.ImmutableList;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.collect.Lists;
import org.glowroot.agent.shaded.org.checkerframework.checker.nullness.qual.Nullable;
import org.immutables.value.Value;
import org.glowroot.agent.shaded.org.objectweb.asm.Type;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.slf4j.Logger;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.slf4j.LoggerFactory;
import org.glowroot.agent.plugin.api.weaving.MethodModifier;
import org.glowroot.agent.shaded.org.glowroot.common.util.Styles;
@Value.Immutable
@Styles.AllParameters
abstract class AdviceMatcher {
private static final Logger logger = LoggerFactory.getLogger(AdviceMatcher.class);
static ImmutableList getAdviceMatchers(String className,
List classAnnotations, Collection superClassNames,
List advisors) {
List adviceMatchers = Lists.newArrayList();
for (Advice advice : advisors) {
if (isClassMatch(className, classAnnotations, superClassNames, advice)) {
adviceMatchers.add(ImmutableAdviceMatcher.of(advice));
}
}
return ImmutableList.copyOf(adviceMatchers);
}
abstract Advice advice();
boolean isMethodLevelMatch(String methodName, List methodAnnotations,
List parameterTypes, Type returnType, int modifiers) {
if (!isMethodNameMatch(methodName) || !isAnnotationMatch(methodAnnotations,
advice().pointcutMethodAnnotationPattern(), advice().pointcut().methodAnnotation())
|| !isMethodParameterTypesMatch(parameterTypes)) {
return false;
}
return isMethodReturnMatch(returnType) && isMethodModifiersMatch(modifiers);
}
private boolean isMethodNameMatch(String methodName) {
if (methodName.equals("")) {
// static initializers are not supported
return false;
}
Pattern pointcutMethodNamePattern = advice().pointcutMethodNamePattern();
if (pointcutMethodNamePattern != null) {
// don't want patterns to match constructors
return !methodName.equals("")
&& pointcutMethodNamePattern.matcher(methodName).matches();
}
String pointcutMethodName = advice().pointcut().methodName();
return pointcutMethodName.isEmpty() || pointcutMethodName.equals(methodName);
}
private boolean isMethodParameterTypesMatch(List parameterTypes) {
List