jdk/src/share/classes/com/sun/jmx/mbeanserver/MBeanIntrospector.java
author emcmanus
Wed, 09 Jul 2008 10:36:07 +0200
changeset 833 bfa2bef7517c
parent 687 874e25a9844a
child 834 dc74d4ddc28e
permissions -rw-r--r--
6323980: Annotations to simplify MBean development Reviewed-by: jfdenise, dfuchs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package com.sun.jmx.mbeanserver;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import static com.sun.jmx.mbeanserver.Util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.ref.WeakReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.lang.reflect.Array;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.lang.reflect.Constructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.lang.reflect.InvocationTargetException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.lang.reflect.Type;
287
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
    37
import java.util.Arrays;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.List;
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    39
import java.util.Map;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.WeakHashMap;
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    41
import javax.management.Description;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import javax.management.Descriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import javax.management.ImmutableDescriptor;
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
    45
import javax.management.IntrospectionException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import javax.management.InvalidAttributeValueException;
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    47
import javax.management.MBean;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import javax.management.MBeanAttributeInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import javax.management.MBeanConstructorInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import javax.management.MBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import javax.management.MBeanInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import javax.management.MBeanNotificationInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import javax.management.MBeanOperationInfo;
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    54
import javax.management.MXBean;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    55
import javax.management.ManagedAttribute;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    56
import javax.management.ManagedOperation;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import javax.management.NotCompliantMBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import javax.management.NotificationBroadcaster;
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    59
import javax.management.NotificationInfo;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
    60
import javax.management.NotificationInfos;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
import javax.management.ReflectionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * An introspector for MBeans of a certain type.  There is one instance
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
    65
 * of this class for Standard MBeans, and one for every MXBeanMappingFactory;
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
    66
 * these two cases correspond to the two concrete subclasses of this abstract
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
    67
 * class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * @param <M> the representation of methods for this kind of MBean:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * Method for Standard MBeans, ConvertingMethod for MXBeans.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * Using a type parameter <M> allows us to deal with the fact that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * Method and ConvertingMethod have no useful common ancestor, on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * which we could call getName, getGenericReturnType, etc.  A simpler approach
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * would be to wrap every Method in an object that does have a common
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * ancestor with ConvertingMethod.  But that would mean an extra object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * for every Method in every Standard MBean interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
abstract class MBeanIntrospector<M> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    static final class PerInterfaceMap<M>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            extends WeakHashMap<Class<?>, WeakReference<PerInterface<M>>> {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /** The map from interface to PerInterface for this type of MBean. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    abstract PerInterfaceMap<M> getPerInterfaceMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * The map from concrete implementation class and interface to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * MBeanInfo for this type of MBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    abstract MBeanInfoMap getMBeanInfoMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /** Make an interface analyzer for this type of MBean. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    abstract MBeanAnalyzer<M> getAnalyzer(Class<?> mbeanInterface)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    throws NotCompliantMBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /** True if MBeans with this kind of introspector are MXBeans. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    abstract boolean isMXBean();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /** Find the M corresponding to the given Method. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    abstract M mFrom(Method m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /** Get the name of this method. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    abstract String getName(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Get the return type of this method.  This is the return type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * of a method in a Java interface, so for MXBeans it is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * declared Java type, not the mapped Open Type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    abstract Type getGenericReturnType(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Get the parameter types of this method in the Java interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * it came from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    abstract Type[] getGenericParameterTypes(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Get the signature of this method as a caller would have to supply
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * it in MBeanServer.invoke.  For MXBeans, the named types will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * the mapped Open Types for the parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    abstract String[] getSignature(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * Check that this method is valid.  For example, a method in an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * MXBean interface is not valid if one of its parameters cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * mapped to an Open Type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   132
    abstract void checkMethod(M m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * Invoke the method with the given target and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @param cookie Additional information about the target.  For an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * MXBean, this is the MXBeanLookup associated with the MXBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * It would be cleaner if the type of the cookie were a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * type parameter to this class, but that would involve a lot of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * messy type parameter propagation just to avoid a couple of casts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    abstract Object invokeM2(M m, Object target, Object[] args, Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    throws InvocationTargetException, IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            MBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Test whether the given value is valid for the given parameter of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * M.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    abstract boolean validParameter(M m, Object value, int paramNo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            Object cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Construct an MBeanAttributeInfo for the given attribute based on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * given getter and setter.  One but not both of the getter and setter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * may be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    abstract MBeanAttributeInfo getMBeanAttributeInfo(String attributeName,
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   162
            M getter, M setter) throws IntrospectionException;
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   163
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   164
    final String getAttributeDescription(
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   165
            String attributeName, String defaultDescription,
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   166
            Method getter, Method setter) throws IntrospectionException {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   167
        String g = Introspector.descriptionForElement(getter);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   168
        String s = Introspector.descriptionForElement(setter);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   169
        if (g == null) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   170
            if (s == null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   171
                return defaultDescription;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   172
            else
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   173
                return s;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   174
        } else if (s == null || g.equals(s)) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   175
            return g;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   176
        } else {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   177
            throw new IntrospectionException(
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   178
                    "Inconsistent @Description on getter and setter for " +
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   179
                    "attribute " + attributeName);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   180
        }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   181
    }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   182
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Construct an MBeanOperationInfo for the given operation based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * the M it was derived from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    abstract MBeanOperationInfo getMBeanOperationInfo(String operationName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            M operation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * Get a Descriptor containing fields that MBeans of this kind will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * always have.  For example, MXBeans will always have "mxbean=true".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    abstract Descriptor getBasicMBeanDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * Get a Descriptor containing additional fields beyond the ones
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * from getBasicMBeanDescriptor that MBeans whose concrete class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * is resourceClass will always have.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    abstract Descriptor getMBeanDescriptor(Class<?> resourceClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   203
    /**
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   204
     * Get any additional Descriptor entries for this introspector instance.
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   205
     * If there is a non-default MXBeanMappingFactory, it will appear in
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   206
     * this Descriptor.
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   207
     * @return Additional Descriptor entries, or an empty Descriptor if none.
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   208
     */
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   209
    Descriptor getSpecificMBeanDescriptor() {
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   210
        return ImmutableDescriptor.EMPTY_DESCRIPTOR;
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   211
    }
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   212
287
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   213
    void checkCompliance(Class<?> mbeanType) throws NotCompliantMBeanException {
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   214
        if (!mbeanType.isInterface() &&
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   215
                !mbeanType.isAnnotationPresent(MBean.class) &&
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   216
                !Introspector.hasMXBeanAnnotation(mbeanType)) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   217
            throw new NotCompliantMBeanException("Not an interface and " +
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   218
                    "does not have @" + MBean.class.getSimpleName() +
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   219
                    " or @" + MXBean.class.getSimpleName() + " annotation: " +
287
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   220
                    mbeanType.getName());
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   221
        }
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   222
    }
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   223
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   224
    /**
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   225
     * Get the methods to be analyzed to build the MBean interface.
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   226
     */
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   227
    List<Method> getMethods(final Class<?> mbeanType) throws Exception {
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   228
        if (mbeanType.isInterface())
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   229
            return Arrays.asList(mbeanType.getMethods());
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   230
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   231
        final List<Method> methods = newList();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   232
        getAnnotatedMethods(mbeanType, methods);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   233
        return methods;
287
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   234
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    final PerInterface<M> getPerInterface(Class<?> mbeanInterface)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    throws NotCompliantMBeanException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        PerInterfaceMap<M> map = getPerInterfaceMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        synchronized (map) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            WeakReference<PerInterface<M>> wr = map.get(mbeanInterface);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            PerInterface<M> pi = (wr == null) ? null : wr.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            if (pi == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                    MBeanAnalyzer<M> analyzer = getAnalyzer(mbeanInterface);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                    MBeanInfo mbeanInfo =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                            makeInterfaceMBeanInfo(mbeanInterface, analyzer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                    pi = new PerInterface<M>(mbeanInterface, this, analyzer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                            mbeanInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                    wr = new WeakReference<PerInterface<M>>(pi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                    map.put(mbeanInterface, wr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                } catch (Exception x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                    throw Introspector.throwException(mbeanInterface,x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            return pi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * Make the MBeanInfo skeleton for the given MBean interface using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * the given analyzer.  This will never be the MBeanInfo of any real
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * MBean (because the getClassName() must be a concrete class), but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * its MBeanAttributeInfo[] and MBeanOperationInfo[] can be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * into such an MBeanInfo, and its Descriptor can be the basis for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * the MBeanInfo's Descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    private MBeanInfo makeInterfaceMBeanInfo(Class<?> mbeanInterface,
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   268
            MBeanAnalyzer<M> analyzer) throws IntrospectionException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        final MBeanInfoMaker maker = new MBeanInfoMaker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        analyzer.visit(maker);
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   271
        final String defaultDescription =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                "Information on the management interface of the MBean";
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   273
        String description = Introspector.descriptionForElement(mbeanInterface);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   274
        if (description == null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   275
            description = defaultDescription;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        return maker.makeMBeanInfo(mbeanInterface, description);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /** True if the given getter and setter are consistent. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    final boolean consistent(M getter, M setter) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        return (getter == null || setter == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                getGenericReturnType(getter).equals(getGenericParameterTypes(setter)[0]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * Invoke the given M on the given target with the given args and cookie.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * Wrap exceptions appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    final Object invokeM(M m, Object target, Object[] args, Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    throws MBeanException, ReflectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            return invokeM2(m, target, args, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            unwrapInvocationTargetException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            throw new RuntimeException(e); // not reached
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            throw new ReflectionException(e, e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        /* We do not catch and wrap RuntimeException or Error,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
         * because we're in a DynamicMBean, so the logic for DynamicMBeans
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
         * will do the wrapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * Invoke the given setter on the given target with the given argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * and cookie.  Wrap exceptions appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    /* If the value is of the wrong type for the method we are about to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * invoke, we are supposed to throw an InvalidAttributeValueException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * Rather than making the check always, we invoke the method, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * if it throws an exception we check the type to see if that was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * what caused the exception.  The assumption is that an exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * from an invalid type will arise before any user method is ever
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * called (either in reflection or in OpenConverter).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    final void invokeSetter(String name, M setter, Object target, Object arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            throws MBeanException, ReflectionException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            InvalidAttributeValueException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            invokeM2(setter, target, new Object[] {arg}, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            throw new ReflectionException(e, e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        } catch (RuntimeException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            maybeInvalidParameter(name, setter, arg, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
            maybeInvalidParameter(name, setter, arg, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            unwrapInvocationTargetException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    private void maybeInvalidParameter(String name, M setter, Object arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
            throws InvalidAttributeValueException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        if (!validParameter(setter, arg, 0, cookie)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            final String msg =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                    "Invalid value for attribute " + name + ": " + arg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            throw new InvalidAttributeValueException(msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    static boolean isValidParameter(Method m, Object value, int paramNo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        Class<?> c = m.getParameterTypes()[paramNo];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            // Following is expensive but we only call this method to determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            // if an exception is due to an incompatible parameter type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            // Plain old c.isInstance doesn't work for primitive types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            Object a = Array.newInstance(c, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            Array.set(a, 0, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        } catch (IllegalArgumentException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    private static void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            unwrapInvocationTargetException(InvocationTargetException e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            throws MBeanException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        Throwable t = e.getCause();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        if (t instanceof RuntimeException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            throw (RuntimeException) t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        else if (t instanceof Error)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            throw (Error) t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            throw new MBeanException((Exception) t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                    (t == null ? null : t.toString()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /** A visitor that constructs the per-interface MBeanInfo. */
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   372
    private class MBeanInfoMaker
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   373
            implements MBeanAnalyzer.MBeanVisitor<M, IntrospectionException> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        public void visitAttribute(String attributeName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                M getter,
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   377
                M setter) throws IntrospectionException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            MBeanAttributeInfo mbai =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                    getMBeanAttributeInfo(attributeName, getter, setter);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            attrs.add(mbai);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        public void visitOperation(String operationName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                M operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
            MBeanOperationInfo mboi =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                    getMBeanOperationInfo(operationName, operation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            ops.add(mboi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        /** Make an MBeanInfo based on the attributes and operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
         *  found in the interface. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        MBeanInfo makeMBeanInfo(Class<?> mbeanInterface,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
                String description) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            final MBeanAttributeInfo[] attrArray =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                    attrs.toArray(new MBeanAttributeInfo[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            final MBeanOperationInfo[] opArray =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                    ops.toArray(new MBeanOperationInfo[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            final String interfaceClassName =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                    "interfaceClassName=" + mbeanInterface.getName();
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   402
            final Descriptor classNameDescriptor =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                    new ImmutableDescriptor(interfaceClassName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            final Descriptor mbeanDescriptor = getBasicMBeanDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            final Descriptor annotatedDescriptor =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                    Introspector.descriptorForElement(mbeanInterface);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            final Descriptor descriptor =
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   408
                DescriptorCache.getInstance().union(
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   409
                    classNameDescriptor,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                    mbeanDescriptor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                    annotatedDescriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            return new MBeanInfo(mbeanInterface.getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                    description,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                    attrArray,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                    null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                    opArray,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                    null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                    descriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        private final List<MBeanAttributeInfo> attrs = newList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        private final List<MBeanOperationInfo> ops = newList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * Looking up the MBeanInfo for a given base class (implementation class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * is complicated by the fact that we may use the same base class with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * several different explicit MBean interfaces via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * javax.management.StandardMBean class.  It is further complicated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * by the fact that we have to be careful not to retain a strong reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * to any Class object for fear we would prevent a ClassLoader from being
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * garbage-collected.  So we have a first lookup from the base class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * to a map for each interface that base class might specify giving
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * the MBeanInfo constructed for that base class and interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    static class MBeanInfoMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            extends WeakHashMap<Class<?>, WeakHashMap<Class<?>, MBeanInfo>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * Return the MBeanInfo for the given resource, based on the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * per-interface data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     */
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   445
    final MBeanInfo getMBeanInfo(Object resource, PerInterface<M> perInterface)
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   446
    throws NotCompliantMBeanException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        MBeanInfo mbi =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
                getClassMBeanInfo(resource.getClass(), perInterface);
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   449
        MBeanNotificationInfo[] notifs;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   450
        try {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   451
            notifs = findNotifications(resource);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   452
        } catch (RuntimeException e) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   453
            NotCompliantMBeanException x =
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   454
                    new NotCompliantMBeanException(e.getMessage());
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   455
            x.initCause(e);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   456
            throw x;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   457
        }
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   458
        Descriptor d = getSpecificMBeanDescriptor();
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   459
        boolean anyNotifs = (notifs != null && notifs.length > 0);
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   460
        if (!anyNotifs && ImmutableDescriptor.EMPTY_DESCRIPTOR.equals(d))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            return mbi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        else {
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   463
            d = ImmutableDescriptor.union(d, mbi.getDescriptor());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            return new MBeanInfo(mbi.getClassName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                    mbi.getDescription(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                    mbi.getAttributes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                    mbi.getConstructors(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                    mbi.getOperations(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
                    notifs,
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   470
                    d);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * Return the basic MBeanInfo for resources of the given class and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * per-interface data.  This MBeanInfo might not be the final MBeanInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * for instances of the class, because if the class is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * NotificationBroadcaster then each instance gets to decide what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * MBeanNotificationInfo[] to put in its own MBeanInfo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    final MBeanInfo getClassMBeanInfo(Class<?> resourceClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            PerInterface<M> perInterface) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        MBeanInfoMap map = getMBeanInfoMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        synchronized (map) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            WeakHashMap<Class<?>, MBeanInfo> intfMap = map.get(resourceClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            if (intfMap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
                intfMap = new WeakHashMap<Class<?>, MBeanInfo>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
                map.put(resourceClass, intfMap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            Class<?> intfClass = perInterface.getMBeanInterface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
            MBeanInfo mbi = intfMap.get(intfClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            if (mbi == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                MBeanInfo imbi = perInterface.getMBeanInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                Descriptor descriptor =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                        ImmutableDescriptor.union(imbi.getDescriptor(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                        getMBeanDescriptor(resourceClass));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                mbi = new MBeanInfo(resourceClass.getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                        imbi.getDescription(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                        imbi.getAttributes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                        findConstructors(resourceClass),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                        imbi.getOperations(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                        (MBeanNotificationInfo[]) null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                        descriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                intfMap.put(intfClass, mbi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            return mbi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   510
    /*
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   511
     * Add to "methods" every public method that has the @ManagedAttribute
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   512
     * or @ManagedOperation annotation, in the given class or any of
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   513
     * its superclasses or superinterfaces.
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   514
     *
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   515
     * We always add superclass or superinterface methods first, so that
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   516
     * the stable sort used by eliminateCovariantMethods will put the
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   517
     * method from the most-derived class last.  This means that we will
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   518
     * see the version of the @ManagedAttribute (or ...Operation) annotation
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   519
     * from that method, which might have a different description or whatever.
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   520
     */
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   521
    private static void getAnnotatedMethods(Class<?> c, List<Method> methods)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   522
    throws Exception {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   523
        Class<?> sup = c.getSuperclass();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   524
        if (sup != null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   525
            getAnnotatedMethods(sup, methods);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   526
        Class<?>[] intfs = c.getInterfaces();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   527
        for (Class<?> intf : intfs)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   528
            getAnnotatedMethods(intf, methods);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   529
        for (Method m : c.getMethods()) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   530
            // We are careful not to add m if it is inherited from a parent
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   531
            // class or interface, because duplicate methods lead to nasty
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   532
            // behaviour in eliminateCovariantMethods.
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   533
            if (m.getDeclaringClass() == c &&
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   534
                    (m.isAnnotationPresent(ManagedAttribute.class) ||
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   535
                     m.isAnnotationPresent(ManagedOperation.class)))
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   536
                methods.add(m);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   537
        }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   538
    }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   539
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    static MBeanNotificationInfo[] findNotifications(Object moi) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        if (!(moi instanceof NotificationBroadcaster))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        MBeanNotificationInfo[] mbn =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                ((NotificationBroadcaster) moi).getNotificationInfo();
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   545
        if (mbn == null || mbn.length == 0)
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   546
            return findNotificationsFromAnnotations(moi.getClass());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        MBeanNotificationInfo[] result =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                new MBeanNotificationInfo[mbn.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        for (int i = 0; i < mbn.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            MBeanNotificationInfo ni = mbn[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            if (ni.getClass() != MBeanNotificationInfo.class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                ni = (MBeanNotificationInfo) ni.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            result[i] = ni;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   558
    private static MBeanNotificationInfo[] findNotificationsFromAnnotations(
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   559
            Class<?> mbeanClass) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   560
        Class<?> c = getAnnotatedNotificationInfoClass(mbeanClass);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   561
        if (c == null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   562
            return null;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   563
        NotificationInfo ni = c.getAnnotation(NotificationInfo.class);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   564
        NotificationInfos nis = c.getAnnotation(NotificationInfos.class);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   565
        List<NotificationInfo> list = newList();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   566
        if (ni != null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   567
            list.add(ni);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   568
        if (nis != null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   569
            list.addAll(Arrays.asList(nis.value()));
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   570
        if (list.isEmpty())
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   571
            return null;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   572
        List<MBeanNotificationInfo> mbnis = newList();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   573
        for (NotificationInfo x : list) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   574
            // The Descriptor includes any fields explicitly specified by
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   575
            // x.descriptorFields(), plus any fields from the contained
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   576
            // @Description annotation.
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   577
            Descriptor d = new ImmutableDescriptor(x.descriptorFields());
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   578
            d = ImmutableDescriptor.union(
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   579
                    d, Introspector.descriptorForAnnotation(x.description()));
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   580
            MBeanNotificationInfo mbni = new MBeanNotificationInfo(
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   581
                    x.types(), x.notificationClass().getName(),
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   582
                    x.description().value(), d);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   583
            mbnis.add(mbni);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   584
        }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   585
        return mbnis.toArray(new MBeanNotificationInfo[mbnis.size()]);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   586
    }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   587
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   588
    private static final Map<Class<?>, WeakReference<Class<?>>>
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   589
            annotatedNotificationInfoClasses = newWeakHashMap();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   590
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   591
    private static Class<?> getAnnotatedNotificationInfoClass(Class<?> baseClass) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   592
        synchronized (annotatedNotificationInfoClasses) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   593
            WeakReference<Class<?>> wr =
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   594
                    annotatedNotificationInfoClasses.get(baseClass);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   595
            if (wr != null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   596
                return wr.get();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   597
            Class<?> c = null;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   598
            if (baseClass.isAnnotationPresent(NotificationInfo.class) ||
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   599
                    baseClass.isAnnotationPresent(NotificationInfos.class)) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   600
                c = baseClass;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   601
            } else {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   602
                Class<?>[] intfs = baseClass.getInterfaces();
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   603
                for (Class<?> intf : intfs) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   604
                    Class<?> c1 = getAnnotatedNotificationInfoClass(intf);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   605
                    if (c1 != null) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   606
                        if (c != null) {
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   607
                            throw new IllegalArgumentException(
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   608
                                    "Class " + baseClass.getName() + " inherits " +
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   609
                                    "@NotificationInfo(s) from both " +
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   610
                                    c.getName() + " and " + c1.getName());
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   611
                        }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   612
                        c = c1;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   613
                    }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   614
                }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   615
            }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   616
            // Record the result of the search.  If no @NotificationInfo(s)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   617
            // were found, c is null, and we store a WeakReference(null).
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   618
            // This prevents us from having to search again and fail again.
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   619
            annotatedNotificationInfoClasses.put(baseClass,
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   620
                    new WeakReference<Class<?>>(c));
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   621
            return c;
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   622
        }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   623
    }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   624
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    private static MBeanConstructorInfo[] findConstructors(Class<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        Constructor[] cons = c.getConstructors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        MBeanConstructorInfo[] mbc = new MBeanConstructorInfo[cons.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        for (int i = 0; i < cons.length; i++) {
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   629
            String descr = "Public constructor of the MBean";
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   630
            Description d = cons[i].getAnnotation(Description.class);
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   631
            if (d != null)
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   632
                descr = d.value();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
            mbc[i] = new MBeanConstructorInfo(descr, cons[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        return mbc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
}