org.glassfish.gmbal.impl.DescriptorIntrospector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* Copyright (c) 2007, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.glassfish.gmbal.impl;
import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import javax.management.Descriptor;
import org.glassfish.gmbal.DescriptorKey ;
import org.glassfish.gmbal.DescriptorFields ;
/**
* This class contains the methods for performing all the tests needed to verify
* that a class represents a JMX compliant MBean.
*
* @since 1.5
*/
public class DescriptorIntrospector {
// private constructor defined to "hide" the default public constructor
private DescriptorIntrospector() {
}
/* If elmt is a class, we need to take the union of all inherited annotations.
* If elmt is a field or method, we just need the information from the element.
* XXX Should we also consider information from overridden methods?
*/
public static Descriptor descriptorForElement(
final ManagedObjectManagerInternal mom, final AnnotatedElement elmt) {
if (elmt == null) {
return DescriptorUtility.EMPTY_DESCRIPTOR;
}
Collection annots = null ;
if (mom == null) {
annots = Arrays.asList( elmt.getAnnotations() ) ;
} else {
annots = mom.getAnnotations( elmt );
}
return descriptorForAnnotations(annots);
}
private static Descriptor descriptorForAnnotations(Collection annots) {
if (annots.isEmpty()) {
return DescriptorUtility.EMPTY_DESCRIPTOR;
}
Map descriptorMap = new HashMap();
for (Annotation a : annots) {
if (a instanceof DescriptorFields) {
addDescriptorFieldsToMap(descriptorMap,
(DescriptorFields) a);
}
addAnnotationFieldsToMap(descriptorMap, a);
}
if (descriptorMap.isEmpty()) {
return DescriptorUtility.EMPTY_DESCRIPTOR;
} else {
return DescriptorUtility.makeDescriptor(descriptorMap);
}
}
private static void addDescriptorFieldsToMap(
Map descriptorMap, DescriptorFields df) {
for (String field : df.value()) {
int eq = field.indexOf('=');
if (eq < 0) {
throw Exceptions.self.excForAddDescriptorFieldsToMap( field ) ;
}
String name = field.substring(0, eq);
String value = field.substring(eq + 1);
addToMap(descriptorMap, name, value);
}
}
private static void addAnnotationFieldsToMap(
Map descriptorMap, Annotation a) {
Class extends Annotation> c = a.annotationType();
Method[] elements = c.getMethods();
for (Method element : elements) {
DescriptorKey key = element.getAnnotation(DescriptorKey.class);
if (key != null) {
String name = key.value();
Object value;
try {
value = element.invoke(a);
} catch (RuntimeException e) {
// we don't expect this - except for possibly
// security exceptions?
// RuntimeExceptions shouldn't be "UndeclaredThrowable".
// anyway...
throw e;
} catch (Exception e) {
throw Exceptions.self.excForAddAnnotationFieldsToMap( e ) ;
}
if (!key.omitIfDefault() ||
!equals(value, element.getDefaultValue())) {
value = annotationToField(value);
addToMap(descriptorMap, name, value);
}
}
}
}
private static void addToMap(
Map descriptorMap, String name, Object value) {
Object oldValue = descriptorMap.put(name, value);
if (oldValue != null && !equals(oldValue, value)) {
throw Exceptions.self.excForAddToMap( name, value, oldValue ) ;
}
}
// Convert a value from an annotation element to a descriptor field value
// E.g. with @interface Foo {class value()} an annotation @Foo(String.class)
// will produce a Descriptor field value "java.lang.String"
private static Object annotationToField(Object x) {
// An annotation element cannot have a null value but never mind
if (x == null) {
return null;
}
if (x instanceof Number || x instanceof String ||
x instanceof Character || x instanceof Boolean ||
x instanceof String[]) {
return x;
}
// Remaining possibilities: array of primitive (e.g. int[]),
// enum, class, array of enum or class.
Class> c = x.getClass();
if (c.isArray()) {
if (c.getComponentType().isPrimitive()) {
return x;
}
Object[] xx = (Object[]) x;
String[] ss = new String[xx.length];
for (int i = 0; i < xx.length; i++) {
ss[i] = (String) annotationToField(xx[i]);
}
return ss;
}
if (x instanceof Class) {
return ((Class>) x).getName();
}
if (x instanceof Enum) {
return ((Enum) x).name();
}
// The only other possibility is that the value is another
// annotation, or that the language has evolved since this code
// was written. We don't allow for either of those currently.
// If it is indeed another annotation, then x will be a proxy
// with an unhelpful name like $Proxy2. So we extract the
// proxy's interface to use that in the exception message.
if (Proxy.isProxyClass(c)) {
c = c.getInterfaces()[0]; // array "can't be empty"
} // array "can't be empty"
throw Exceptions.self.excForAnnotationToField( c.getName() ) ;
}
// This must be consistent with the check for duplicate field values in
// ImmutableDescriptor.union. But we don't expect to be called very
// often so this inefficient check should be enough.
private static boolean equals(Object x, Object y) {
return Arrays.deepEquals(new Object[] {x}, new Object[] {y});
}
}