blob: ea95f7855129d5ffdc2d8587876f7c929f62181e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.bval.jsr303.xml;
import java.io.Serializable;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.HashMap;
import java.util.Map;
import java.util.SortedSet;
import java.util.TreeSet;
import org.apache.bval.jsr303.util.SecureActions;
/**
* Description: <br/>
* InvocationHandler implementation of <code>Annotation</code> that pretends it
* is a "real" source code annotation.
* <p/>
*/
// TODO move this guy up to org.apache.bval.jsr303 or
// org.apache.bval.jsr303.model
class AnnotationProxy implements Annotation, InvocationHandler, Serializable {
/** Serialization version */
private static final long serialVersionUID = 1L;
private final Class<? extends Annotation> annotationType;
private final Map<String, Object> values;
/**
* Create a new AnnotationProxy instance.
*
* @param <A>
* @param descriptor
*/
public <A extends Annotation> AnnotationProxy(AnnotationProxyBuilder<A> descriptor) {
this.annotationType = descriptor.getType();
values = getAnnotationValues(descriptor);
}
private <A extends Annotation> Map<String, Object> getAnnotationValues(AnnotationProxyBuilder<A> descriptor) {
Map<String, Object> result = new HashMap<String, Object>();
int processedValuesFromDescriptor = 0;
final Method[] declaredMethods = doPrivileged(
SecureActions.getDeclaredMethods(annotationType)
);
for (Method m : declaredMethods) {
if (descriptor.contains(m.getName())) {
result.put(m.getName(), descriptor.getValue(m.getName()));
processedValuesFromDescriptor++;
} else if (m.getDefaultValue() != null) {
result.put(m.getName(), m.getDefaultValue());
} else {
throw new IllegalArgumentException("No value provided for " + m.getName());
}
}
if (processedValuesFromDescriptor != descriptor.size()) {
throw new RuntimeException("Trying to instanciate " + annotationType + " with unknown paramters.");
}
return result;
}
/**
* {@inheritDoc}
*/
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
if (values.containsKey(method.getName())) {
return values.get(method.getName());
}
return method.invoke(this, args);
}
/**
* {@inheritDoc}
*/
public Class<? extends Annotation> annotationType() {
return annotationType;
}
/**
* {@inheritDoc}
*/
public String toString() {
StringBuilder result = new StringBuilder();
result.append('@').append(annotationType().getName()).append('(');
boolean comma = false;
for (String m : getMethodsSorted()) {
if (comma)
result.append(", ");
result.append(m).append('=').append(values.get(m));
comma = true;
}
result.append(")");
return result.toString();
}
private SortedSet<String> getMethodsSorted() {
SortedSet<String> result = new TreeSet<String>();
result.addAll(values.keySet());
return result;
}
private static <T> T doPrivileged(final PrivilegedAction<T> action) {
if (System.getSecurityManager() != null) {
return AccessController.doPrivileged(action);
} else {
return action.run();
}
}
}