com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils Maven / Gradle / Ivy
/**
* Copyright 2015 Netflix, Inc.
*
* 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 com.netflix.hystrix.contrib.javanica.utils.ajc;
import com.netflix.hystrix.contrib.javanica.command.MetaHolder;
import org.aspectj.lang.reflect.MethodSignature;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
/**
* Created by dmgcodevil
*/
public final class AjcUtils {
private AjcUtils() {
throw new UnsupportedOperationException("it's prohibited to create instances of this class");
}
public static Method getAjcMethod(final Class> target, final String methodName, final AdviceType adviceType, final Class>... pTypes) {
for (Method method : target.getDeclaredMethods()) {
if (method.getName().startsWith(methodName + adviceType.getPostfix())
&& Modifier.isFinal(method.getModifiers()) && Modifier.isStatic(method.getModifiers())) {
Class>[] parameterTypes = method.getParameterTypes();
if (pTypes.length == 0 && parameterTypes.length == 0) {
return method;
}
if (pTypes.length == parameterTypes.length - 2) {
boolean match = true;
Class>[] origParamTypes = removeAspectjArgs(parameterTypes);
int index = 0;
for (Class> pType : origParamTypes) {
Class> expected = pTypes[index++];
if (pType != expected) {
match = false;
}
}
if (match) {
return method;
}
}
}
}
if (target.getSuperclass() != null) {
return getAjcMethod(target.getSuperclass(), methodName, adviceType, pTypes);
}
return null;
}
public static Method getAjcMethodAroundAdvice(final Class> target, final String methodName, final Class>... pTypes) {
return getAjcMethod(target, methodName, AdviceType.Around, pTypes);
}
public static Method getAjcMethodAroundAdvice(Class> target, MethodSignature signature) {
return getAjcMethodAroundAdvice(target, signature.getMethod().getName(), signature.getParameterTypes());
}
public static Method getAjcMethodAroundAdvice(Class> target, Method method) {
return getAjcMethodAroundAdvice(target, method.getName(), method.getParameterTypes());
}
public static Object invokeAjcMethod(Method method, Object target, MetaHolder metaHolder, Object... args) throws InvocationTargetException, IllegalAccessException {
method.setAccessible(true);
Object[] extArgs = new Object[args.length + 2];
extArgs[0] = target;
System.arraycopy(args, 0, extArgs, 1, args.length);
extArgs[extArgs.length - 1] = metaHolder.getJoinPoint();
return method.invoke(target, extArgs);
}
private static Class>[] removeAspectjArgs(Class>[] parameterTypes) {
Class>[] origParamTypes = new Class[parameterTypes.length - 2];
System.arraycopy(parameterTypes, 1, origParamTypes, 0, parameterTypes.length - 2);
return origParamTypes;
}
public enum AdviceType {
Around("_aroundBody");
private String postfix;
AdviceType(String postfix) {
this.postfix = postfix;
}
public String getPostfix() {
return postfix;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy