package org.jdiameter.client.impl.annotation.internal; import java.lang.annotation.Annotation; import java.lang.reflect.Method; import java.util.Collection; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; public class MethodInfo { private Storage storage; private Method method; private ClassInfo classInfo; private Collection<Annotation> annotationsCache; private Map<Class<?>, Annotation> annotationStorage; public MethodInfo(Storage storage, ClassInfo classInfo, Method method) { this.storage = storage; this.classInfo = classInfo; this.method = method; } public Method getMethod() { return method; } public ClassInfo getClassInfo() { return classInfo; } public Collection<Annotation> getAnnotations() { return annotationsCache == null ? (annotationsCache = getAnnotationStorage().values()) : annotationsCache; } public <T> T getAnnotation(Class<?> annotation) { for (Annotation a : getAnnotations()) { if (a.annotationType() == annotation) { return (T) a; } } return null; } private Map<Class<?>, Annotation> getAnnotationStorage(){ if (annotationStorage == null) { annotationStorage = new ConcurrentHashMap<Class<?>, Annotation>(); Class<?> parent = getClassInfo().getAttachedClass().getSuperclass(); if (parent != null) { addAnnotations(storage.getClassInfo(parent).getMethodInfo(getMethod().getName(), getMethod().getParameterTypes())); } for (Class<?> i : getClassInfo().getAttachedClass().getInterfaces()) { addAnnotations(storage.getClassInfo(i).getMethodInfo(getMethod().getName(),getMethod().getParameterTypes())); } for (Annotation a : getMethod().getDeclaredAnnotations()) { annotationStorage.put(a.getClass().getInterfaces()[0], a); } } return annotationStorage; } private void addAnnotations(MethodInfo method) { if (method != null) { for (Annotation annotation : method.getAnnotations()) { if (annotation != null) { for (Class<?> _interface : annotation.getClass().getInterfaces()) { annotationStorage.put( _interface, annotation ); // [0] } } } } } }