jdk/src/share/classes/com/sun/jmx/mbeanserver/MBeanIntrospector.java
author emcmanus
Wed, 21 Oct 2009 17:33:18 +0200
changeset 4156 acaa49a2768a
parent 1702 50e12093123c
child 4328 9591511c1d88
permissions -rw-r--r--
6851617: Remove JSR 255 (JMX API 2.0) from JDK 7 Summary: See http://weblogs.java.net/blog/2009/06/16/jsr-255-jmx-api-20-postponed Reviewed-by: dfuchs
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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.WeakHashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.management.Descriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import javax.management.ImmutableDescriptor;
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
    43
import javax.management.IntrospectionException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import javax.management.InvalidAttributeValueException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import javax.management.MBeanAttributeInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import javax.management.MBeanConstructorInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import javax.management.MBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import javax.management.MBeanInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import javax.management.MBeanNotificationInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import javax.management.MBeanOperationInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import javax.management.NotCompliantMBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import javax.management.NotificationBroadcaster;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import javax.management.ReflectionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * 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
    57
 * of this class for Standard MBeans, and one for every MXBeanMappingFactory;
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
    58
 * 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
    59
 * class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * @param <M> the representation of methods for this kind of MBean:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * Method for Standard MBeans, ConvertingMethod for MXBeans.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * Using a type parameter <M> allows us to deal with the fact that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * Method and ConvertingMethod have no useful common ancestor, on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * which we could call getName, getGenericReturnType, etc.  A simpler approach
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * would be to wrap every Method in an object that does have a common
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * ancestor with ConvertingMethod.  But that would mean an extra object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * for every Method in every Standard MBean interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 */
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
    74
abstract class MBeanIntrospector<M> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    static final class PerInterfaceMap<M>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            extends WeakHashMap<Class<?>, WeakReference<PerInterface<M>>> {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /** The map from interface to PerInterface for this type of MBean. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    abstract PerInterfaceMap<M> getPerInterfaceMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * The map from concrete implementation class and interface to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * MBeanInfo for this type of MBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    abstract MBeanInfoMap getMBeanInfoMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /** Make an interface analyzer for this type of MBean. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    abstract MBeanAnalyzer<M> getAnalyzer(Class<?> mbeanInterface)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    throws NotCompliantMBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /** True if MBeans with this kind of introspector are MXBeans. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    abstract boolean isMXBean();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /** Find the M corresponding to the given Method. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    abstract M mFrom(Method m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /** Get the name of this method. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    abstract String getName(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Get the return type of this method.  This is the return type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * of a method in a Java interface, so for MXBeans it is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * declared Java type, not the mapped Open Type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    abstract Type getGenericReturnType(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * Get the parameter types of this method in the Java interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * it came from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    abstract Type[] getGenericParameterTypes(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * Get the signature of this method as a caller would have to supply
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * it in MBeanServer.invoke.  For MXBeans, the named types will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * the mapped Open Types for the parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    abstract String[] getSignature(M m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Check that this method is valid.  For example, a method in an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * MXBean interface is not valid if one of its parameters cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * mapped to an Open Type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   124
    abstract void checkMethod(M m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * Invoke the method with the given target and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @param cookie Additional information about the target.  For an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * MXBean, this is the MXBeanLookup associated with the MXBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * It would be cleaner if the type of the cookie were a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * type parameter to this class, but that would involve a lot of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * messy type parameter propagation just to avoid a couple of casts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    abstract Object invokeM2(M m, Object target, Object[] args, Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    throws InvocationTargetException, IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            MBeanException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * Test whether the given value is valid for the given parameter of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * M.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    abstract boolean validParameter(M m, Object value, int paramNo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            Object cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Construct an MBeanAttributeInfo for the given attribute based on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * given getter and setter.  One but not both of the getter and setter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * may be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    abstract MBeanAttributeInfo getMBeanAttributeInfo(String attributeName,
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   154
            M getter, M setter);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * Construct an MBeanOperationInfo for the given operation based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * the M it was derived from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    abstract MBeanOperationInfo getMBeanOperationInfo(String operationName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            M operation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * Get a Descriptor containing fields that MBeans of this kind will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * always have.  For example, MXBeans will always have "mxbean=true".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    abstract Descriptor getBasicMBeanDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Get a Descriptor containing additional fields beyond the ones
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * from getBasicMBeanDescriptor that MBeans whose concrete class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * is resourceClass will always have.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    abstract Descriptor getMBeanDescriptor(Class<?> resourceClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   175
    /**
287
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   176
     * Get the methods to be analyzed to build the MBean interface.
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   177
     */
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   178
    List<Method> getMethods(final Class<?> mbeanType) throws Exception {
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   179
        return Arrays.asList(mbeanType.getMethods());
287
bff5501b2a02 6610917: Define a generic NotificationFilter
emcmanus
parents: 2
diff changeset
   180
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    final PerInterface<M> getPerInterface(Class<?> mbeanInterface)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    throws NotCompliantMBeanException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        PerInterfaceMap<M> map = getPerInterfaceMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        synchronized (map) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            WeakReference<PerInterface<M>> wr = map.get(mbeanInterface);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            PerInterface<M> pi = (wr == null) ? null : wr.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            if (pi == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                    MBeanAnalyzer<M> analyzer = getAnalyzer(mbeanInterface);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                    MBeanInfo mbeanInfo =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                            makeInterfaceMBeanInfo(mbeanInterface, analyzer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                    pi = new PerInterface<M>(mbeanInterface, this, analyzer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                            mbeanInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                    wr = new WeakReference<PerInterface<M>>(pi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                    map.put(mbeanInterface, wr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                } catch (Exception x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                    throw Introspector.throwException(mbeanInterface,x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
            return pi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * Make the MBeanInfo skeleton for the given MBean interface using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * the given analyzer.  This will never be the MBeanInfo of any real
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * MBean (because the getClassName() must be a concrete class), but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * its MBeanAttributeInfo[] and MBeanOperationInfo[] can be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * into such an MBeanInfo, and its Descriptor can be the basis for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * the MBeanInfo's Descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    private MBeanInfo makeInterfaceMBeanInfo(Class<?> mbeanInterface,
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   214
            MBeanAnalyzer<M> analyzer) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        final MBeanInfoMaker maker = new MBeanInfoMaker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        analyzer.visit(maker);
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   217
        final String description =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                "Information on the management interface of the MBean";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        return maker.makeMBeanInfo(mbeanInterface, description);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    /** True if the given getter and setter are consistent. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    final boolean consistent(M getter, M setter) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        return (getter == null || setter == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                getGenericReturnType(getter).equals(getGenericParameterTypes(setter)[0]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * Invoke the given M on the given target with the given args and cookie.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Wrap exceptions appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    final Object invokeM(M m, Object target, Object[] args, Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    throws MBeanException, ReflectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            return invokeM2(m, target, args, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            unwrapInvocationTargetException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            throw new RuntimeException(e); // not reached
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            throw new ReflectionException(e, e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        /* We do not catch and wrap RuntimeException or Error,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
         * because we're in a DynamicMBean, so the logic for DynamicMBeans
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
         * will do the wrapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * Invoke the given setter on the given target with the given argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * and cookie.  Wrap exceptions appropriately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    /* If the value is of the wrong type for the method we are about to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * invoke, we are supposed to throw an InvalidAttributeValueException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Rather than making the check always, we invoke the method, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * if it throws an exception we check the type to see if that was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * what caused the exception.  The assumption is that an exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * from an invalid type will arise before any user method is ever
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * called (either in reflection or in OpenConverter).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    final void invokeSetter(String name, M setter, Object target, Object arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            throws MBeanException, ReflectionException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            InvalidAttributeValueException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            invokeM2(setter, target, new Object[] {arg}, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            throw new ReflectionException(e, e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        } catch (RuntimeException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            maybeInvalidParameter(name, setter, arg, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            maybeInvalidParameter(name, setter, arg, cookie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            unwrapInvocationTargetException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    private void maybeInvalidParameter(String name, M setter, Object arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            Object cookie)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            throws InvalidAttributeValueException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        if (!validParameter(setter, arg, 0, cookie)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            final String msg =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                    "Invalid value for attribute " + name + ": " + arg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            throw new InvalidAttributeValueException(msg);
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
    static boolean isValidParameter(Method m, Object value, int paramNo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        Class<?> c = m.getParameterTypes()[paramNo];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            // Following is expensive but we only call this method to determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            // if an exception is due to an incompatible parameter type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            // Plain old c.isInstance doesn't work for primitive types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            Object a = Array.newInstance(c, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            Array.set(a, 0, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        } catch (IllegalArgumentException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    private static void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            unwrapInvocationTargetException(InvocationTargetException e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            throws MBeanException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        Throwable t = e.getCause();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        if (t instanceof RuntimeException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            throw (RuntimeException) t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        else if (t instanceof Error)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            throw (Error) t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            throw new MBeanException((Exception) t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                    (t == null ? null : t.toString()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    /** A visitor that constructs the per-interface MBeanInfo. */
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   315
    private class MBeanInfoMaker
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   316
            implements MBeanAnalyzer.MBeanVisitor<M> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        public void visitAttribute(String attributeName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                M getter,
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   320
                M setter) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            MBeanAttributeInfo mbai =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                    getMBeanAttributeInfo(attributeName, getter, setter);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            attrs.add(mbai);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        public void visitOperation(String operationName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                M operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
            MBeanOperationInfo mboi =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                    getMBeanOperationInfo(operationName, operation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
            ops.add(mboi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        /** Make an MBeanInfo based on the attributes and operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
         *  found in the interface. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        MBeanInfo makeMBeanInfo(Class<?> mbeanInterface,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                String description) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            final MBeanAttributeInfo[] attrArray =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    attrs.toArray(new MBeanAttributeInfo[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            final MBeanOperationInfo[] opArray =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                    ops.toArray(new MBeanOperationInfo[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            final String interfaceClassName =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                    "interfaceClassName=" + mbeanInterface.getName();
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   345
            final Descriptor classNameDescriptor =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
                    new ImmutableDescriptor(interfaceClassName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            final Descriptor mbeanDescriptor = getBasicMBeanDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            final Descriptor annotatedDescriptor =
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   349
                    Introspector.descriptorForElement(mbeanInterface);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            final Descriptor descriptor =
687
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   351
                DescriptorCache.getInstance().union(
874e25a9844a 6562936: Support custom type mappings in MXBeans
emcmanus
parents: 287
diff changeset
   352
                    classNameDescriptor,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                    mbeanDescriptor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                    annotatedDescriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            return new MBeanInfo(mbeanInterface.getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                    description,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                    attrArray,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                    null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                    opArray,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                    null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                    descriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        private final List<MBeanAttributeInfo> attrs = newList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        private final List<MBeanOperationInfo> ops = newList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * Looking up the MBeanInfo for a given base class (implementation class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * is complicated by the fact that we may use the same base class with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * several different explicit MBean interfaces via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * javax.management.StandardMBean class.  It is further complicated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * by the fact that we have to be careful not to retain a strong reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * to any Class object for fear we would prevent a ClassLoader from being
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * garbage-collected.  So we have a first lookup from the base class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * to a map for each interface that base class might specify giving
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * the MBeanInfo constructed for that base class and interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    static class MBeanInfoMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            extends WeakHashMap<Class<?>, WeakHashMap<Class<?>, MBeanInfo>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * Return the MBeanInfo for the given resource, based on the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * per-interface data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     */
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   388
    final MBeanInfo getMBeanInfo(Object resource, PerInterface<M> perInterface) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        MBeanInfo mbi =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                getClassMBeanInfo(resource.getClass(), perInterface);
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   391
        MBeanNotificationInfo[] notifs = findNotifications(resource);
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   392
        if (notifs == null || notifs.length == 0)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            return mbi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            return new MBeanInfo(mbi.getClassName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                    mbi.getDescription(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                    mbi.getAttributes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                    mbi.getConstructors(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                    mbi.getOperations(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                    notifs,
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   401
                    mbi.getDescriptor());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * Return the basic MBeanInfo for resources of the given class and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * per-interface data.  This MBeanInfo might not be the final MBeanInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * for instances of the class, because if the class is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * NotificationBroadcaster then each instance gets to decide what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * MBeanNotificationInfo[] to put in its own MBeanInfo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    final MBeanInfo getClassMBeanInfo(Class<?> resourceClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            PerInterface<M> perInterface) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        MBeanInfoMap map = getMBeanInfoMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        synchronized (map) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            WeakHashMap<Class<?>, MBeanInfo> intfMap = map.get(resourceClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            if (intfMap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                intfMap = new WeakHashMap<Class<?>, MBeanInfo>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                map.put(resourceClass, intfMap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            Class<?> intfClass = perInterface.getMBeanInterface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            MBeanInfo mbi = intfMap.get(intfClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            if (mbi == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                MBeanInfo imbi = perInterface.getMBeanInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                Descriptor descriptor =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                        ImmutableDescriptor.union(imbi.getDescriptor(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                        getMBeanDescriptor(resourceClass));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                mbi = new MBeanInfo(resourceClass.getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                        imbi.getDescription(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
                        imbi.getAttributes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                        findConstructors(resourceClass),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                        imbi.getOperations(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                        (MBeanNotificationInfo[]) null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                        descriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                intfMap.put(intfClass, mbi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            return mbi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    static MBeanNotificationInfo[] findNotifications(Object moi) {
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   442
        if (!(moi instanceof NotificationBroadcaster))
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   443
            return null;
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   444
        MBeanNotificationInfo[] mbn =
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   445
                ((NotificationBroadcaster) moi).getNotificationInfo();
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   446
        if (mbn == null)
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   447
            return null;
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   448
        MBeanNotificationInfo[] result =
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   449
                new MBeanNotificationInfo[mbn.length];
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   450
        for (int i = 0; i < mbn.length; i++) {
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   451
            MBeanNotificationInfo ni = mbn[i];
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   452
            if (ni.getClass() != MBeanNotificationInfo.class)
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   453
                ni = (MBeanNotificationInfo) ni.clone();
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   454
            result[i] = ni;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        }
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   456
        return result;
833
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   457
    }
bfa2bef7517c 6323980: Annotations to simplify MBean development
emcmanus
parents: 687
diff changeset
   458
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    private static MBeanConstructorInfo[] findConstructors(Class<?> c) {
1221
e3dc70e4e610 6746196: Some JMX classes do not compile with Eclipse compiler
emcmanus
parents: 834
diff changeset
   460
        Constructor<?>[] cons = c.getConstructors();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        MBeanConstructorInfo[] mbc = new MBeanConstructorInfo[cons.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        for (int i = 0; i < cons.length; i++) {
4156
acaa49a2768a 6851617: Remove JSR 255 (JMX API 2.0) from JDK 7
emcmanus
parents: 1702
diff changeset
   463
            final String descr = "Public constructor of the MBean";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            mbc[i] = new MBeanConstructorInfo(descr, cons[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        return mbc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
}