package org.jboss.resteasy.util;
import javax.ws.rs.CookieParam;
import javax.ws.rs.FormParam;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.MatrixParam;
import javax.ws.rs.PathParam;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Context;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
@SuppressWarnings("unchecked")
public final class FindAnnotation
{
private static final Class<? extends Annotation>[] JAXRS_ANNOTATIONS =
(Class<? extends Annotation>[]) new Class[] {
QueryParam.class,
HeaderParam.class,
CookieParam.class,
PathParam.class,
MatrixParam.class,
FormParam.class,
Context.class,
org.jboss.resteasy.annotations.jaxrs.QueryParam.class,
org.jboss.resteasy.annotations.jaxrs.HeaderParam.class,
org.jboss.resteasy.annotations.jaxrs.CookieParam.class,
org.jboss.resteasy.annotations.jaxrs.PathParam.class,
org.jboss.resteasy.annotations.jaxrs.MatrixParam.class,
org.jboss.resteasy.annotations.jaxrs.FormParam.class,
};
@SuppressWarnings("rawtypes")
private static final Class[] findJaxRSAnnotations_TYPE = new Class[]{};
private FindAnnotation()
{
}
public static <T> T findAnnotation(Annotation[] searchList, Class<T> annotation)
{
if (searchList == null) return null;
for (Annotation ann : searchList)
{
if (ann.annotationType().equals(annotation))
{
return (T) ann;
}
}
return null;
}
public static Class<? extends Annotation>[] findJaxRSAnnotations(Annotation[] searchList)
{
LinkedList<Class<? extends Annotation>> result = new LinkedList<Class<? extends Annotation>>();
for (Class<? extends Annotation> clazz : JAXRS_ANNOTATIONS)
{
if (findAnnotation(searchList, clazz) != null)
result.add(clazz);
}
return result.toArray(findJaxRSAnnotations_TYPE);
}
public static Annotation[] getResourcesAnnotations(Method method)
{
Map<Class<?>, Annotation> annotations = new HashMap<Class<?>, Annotation>();
for (Annotation annotation : method.getDeclaringClass().getAnnotations())
{
annotations.put(annotation.getClass(), annotation);
}
for (Annotation annotation : method.getAnnotations())
{
annotations.put(annotation.getClass(), annotation);
}
return annotations.values().toArray(new Annotation[annotations.size()]);
}
public static <T extends Annotation> T findAnnotation(Class<?> type, Annotation[] annotations, Class<T> annotation)
{
T config = FindAnnotation.findAnnotation(annotations, annotation);
if (config == null)
{
config = type.getAnnotation(annotation);
}
return config;
}
}