1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
/* * @(#)MBeanConstructorInfo.java 1.37 06/03/15 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.management; import com.sun.jmx.mbeanserver.Introspector; import java.lang.annotation.Annotation; import java.lang.reflect.Constructor; import java.util.Arrays; /** * Describes a constructor exposed by an MBean. Instances of this * class are immutable. Subclasses may be mutable but this is not * recommended. * * @since 1.5 */ public class MBeanConstructorInfo extends MBeanFeatureInfo implements Cloneable { /* Serial version */ static final long serialVersionUID = 4433990064191844427L; static final MBeanConstructorInfo[] NO_CONSTRUCTORS = new MBeanConstructorInfo[0]; /** @see MBeanInfo#arrayGettersSafe */ private final transient boolean arrayGettersSafe; /** * @serial The signature of the method, that is, the class names of the arguments. */ private final MBeanParameterInfo[] signature; /** * Constructs an <CODE>MBeanConstructorInfo</CODE> object. The * {@link Descriptor} of the constructed object will include * fields contributed by any annotations on the {@code * Constructor} object that contain the {@link DescriptorKey} * meta-annotation. * * @param description A human readable description of the operation. * @param constructor The <CODE>java.lang.reflect.Constructor</CODE> * object describing the MBean constructor. */ public MBeanConstructorInfo(String description, Constructor constructor) { this(constructor.getName(), description, constructorSignature(constructor), Introspector.descriptorForElement(constructor)); } /** * Constructs an <CODE>MBeanConstructorInfo</CODE> object. * * @param name The name of the constructor. * @param signature <CODE>MBeanParameterInfo</CODE> objects * describing the parameters(arguments) of the constructor. This * may be null with the same effect as a zero-length array. * @param description A human readable description of the constructor. */ public MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature) { this(name, description, signature, null); } /** * Constructs an <CODE>MBeanConstructorInfo</CODE> object. * * @param name The name of the constructor. * @param signature <CODE>MBeanParameterInfo</CODE> objects * describing the parameters(arguments) of the constructor. This * may be null with the same effect as a zero-length array. * @param description A human readable description of the constructor. * @param descriptor The descriptor for the constructor. This may be null * which is equivalent to an empty descriptor. * * @since 1.6 */ public MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature, Descriptor descriptor) { super(name, description, descriptor); if (signature == null || signature.length == 0) signature = MBeanParameterInfo.NO_PARAMS; else signature = (MBeanParameterInfo[]) signature.clone(); this.signature = signature; this.arrayGettersSafe = MBeanInfo.arrayGettersSafe(this.getClass(), MBeanConstructorInfo.class); } /** * <p>Returns a shallow clone of this instance. The clone is * obtained by simply calling <tt>super.clone()</tt>, thus calling * the default native shallow cloning mechanism implemented by * <tt>Object.clone()</tt>. No deeper cloning of any internal * field is made.</p> * * <p>Since this class is immutable, cloning is chiefly of * interest to subclasses.</p> */ public Object clone () { try { return super.clone() ; } catch (CloneNotSupportedException e) { // should not happen as this class is cloneable return null; } } /** * <p>Returns the list of parameters for this constructor. Each * parameter is described by an <CODE>MBeanParameterInfo</CODE> * object.</p> * * <p>The returned array is a shallow copy of the internal array, * which means that it is a copy of the internal array of * references to the <CODE>MBeanParameterInfo</CODE> objects but * that each referenced <CODE>MBeanParameterInfo</CODE> object is * not copied.</p> * * @return An array of <CODE>MBeanParameterInfo</CODE> objects. */ public MBeanParameterInfo[] getSignature() { if (signature.length == 0) return signature; else return (MBeanParameterInfo[]) signature.clone(); } private MBeanParameterInfo[] fastGetSignature() { if (arrayGettersSafe) return signature; else return getSignature(); } public String toString() { return getClass().getName() + "[" + "description=" + getDescription() + ", " + "name=" + getName() + ", " + "signature=" + Arrays.asList(fastGetSignature()) + ", " + "descriptor=" + getDescriptor() + "]"; } /** * Compare this MBeanConstructorInfo to another. * * @param o the object to compare to. * * @return true if and only if <code>o</code> is an MBeanConstructorInfo such * that its {@link #getName()}, {@link #getDescription()}, * {@link #getSignature()}, and {@link #getDescriptor()} * values are equal (not necessarily * identical) to those of this MBeanConstructorInfo. Two * signature arrays are equal if their elements are pairwise * equal. */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof MBeanConstructorInfo)) return false; MBeanConstructorInfo p = (MBeanConstructorInfo) o; return (p.getName().equals(getName()) && p.getDescription().equals(getDescription()) && Arrays.equals(p.fastGetSignature(), fastGetSignature()) && p.getDescriptor().equals(getDescriptor())); } /* Unlike attributes and operations, it's quite likely we'll have more than one constructor with the same name and even description, so we include the parameter array in the hashcode. We don't include the description, though, because it could be quite long and yet the same between constructors. Likewise for the descriptor. */ public int hashCode() { int hash = getName().hashCode(); MBeanParameterInfo[] sig = fastGetSignature(); for (int i = 0; i < sig.length; i++) hash ^= sig[i].hashCode(); return hash; } private static MBeanParameterInfo[] constructorSignature(Constructor cn) { final Class[] classes = cn.getParameterTypes(); final Annotation[][] annots = cn.getParameterAnnotations(); return MBeanOperationInfo.parameters(classes, annots); } }