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