
javax.enterprise.util.AnnotationLiteral Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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 javax.enterprise.util;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Arrays;
/**
* Supports inline instantiation of annotation type instances.
*
* An instance of an annotation type may be obtained by subclassing
* AnnotationLiteral.
*
*
* public abstract class PayByQualifier
* extends AnnotationLiteral<PayBy>
* implements PayBy {}
*
*
*
* PayBy payby = new PayByQualifier() { public value() { return CHEQUE; } };
*
*
* @author Pete Muir
* @author Gavin King
*
* @param the annotation type
*
* @see javax.enterprise.inject.Instance#select(Annotation...)
* @see javax.enterprise.event.Event#select(Annotation...)
*
*/
public abstract class AnnotationLiteral implements
Annotation
{
private Class annotationType;
private Method[] members;
protected AnnotationLiteral()
{
Class> annotationLiteralSubclass = getAnnotationLiteralSubclass(this.getClass());
if (annotationLiteralSubclass == null)
{
throw new RuntimeException(getClass() + "is not a subclass of AnnotationLiteral ");
}
annotationType = getTypeParameter(annotationLiteralSubclass);
if (annotationType == null)
{
throw new RuntimeException(getClass() + " is missing type parameter in AnnotationLiteral");
}
this.members = annotationType.getDeclaredMethods();
}
private static Class> getAnnotationLiteralSubclass(Class> clazz)
{
Class> superclass = clazz.getSuperclass();
if (superclass.equals(AnnotationLiteral.class))
{
return clazz;
}
else if (superclass.equals(Object.class))
{
return null;
}
else
{
return (getAnnotationLiteralSubclass(superclass));
}
}
@SuppressWarnings("unchecked")
private static Class getTypeParameter(Class> annotationLiteralSuperclass)
{
Type type = annotationLiteralSuperclass.getGenericSuperclass();
if (type instanceof ParameterizedType)
{
ParameterizedType parameterizedType = (ParameterizedType) type;
if (parameterizedType.getActualTypeArguments().length == 1)
{
return (Class) parameterizedType
.getActualTypeArguments()[0];
}
}
return null;
}
public Class extends Annotation> annotationType()
{
return annotationType;
}
@Override
public String toString()
{
String string = "@" + annotationType().getName() + "(";
for (int i = 0; i < members.length; i++)
{
string += members[i].getName() + "=";
string += invoke(members[i], this);
if (i < members.length - 1)
{
string += ",";
}
}
return string + ")";
}
@Override
public boolean equals(Object other)
{
if (other instanceof Annotation)
{
Annotation that = (Annotation) other;
if (this.annotationType().equals(that.annotationType()))
{
for (Method member : members)
{
Object thisValue = invoke(member, this);
Object thatValue = invoke(member, that);
if (thisValue.getClass().isArray() && thatValue.getClass().isArray())
{
if (!Arrays.equals(Object[].class.cast(thisValue), Object[].class.cast(thatValue)))
{
return false;
}
}
else if (!thisValue.equals(thatValue))
{
return false;
}
}
return true;
}
}
return false;
}
@Override
public int hashCode()
{
int hashCode = 0;
for (Method member : members)
{
int memberNameHashCode = 127 * member.getName().hashCode();
Object value = invoke(member, this);
int memberValueHashCode = value.getClass().isArray() ? Arrays.hashCode(Object[].class.cast(value)) : value.hashCode();
hashCode += memberNameHashCode ^ memberValueHashCode;
}
return hashCode;
}
private static Object invoke(Method method, Object instance)
{
try
{
method.setAccessible(true);
return method.invoke(instance);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException("Error checking value of member method " + method.getName() + " on " + method.getDeclaringClass(), e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException("Error checking value of member method " + method.getName() + " on " + method.getDeclaringClass(), e);
}
catch (InvocationTargetException e)
{
throw new RuntimeException("Error checking value of member method " + method.getName() + " on " + method.getDeclaringClass(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy