jdk/src/share/classes/java/beans/Introspector.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8760 83843c0b84f7
child 11120 f8576c769572
child 11086 09b1d6383d0b
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8760
diff changeset
     2
 * Copyright (c) 1996, 2011, Oracle and/or its affiliates. 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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4851
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4851
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4851
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4851
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4851
diff changeset
    23
 * questions.
2
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 java.beans;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
    28
import com.sun.beans.WeakCache;
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
    29
import com.sun.beans.finder.BeanInfoFinder;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import com.sun.beans.finder.ClassFinder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
7249
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
    32
import java.awt.Component;
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
    33
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
    34
import java.lang.ref.Reference;
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
    35
import java.lang.ref.SoftReference;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.lang.reflect.Modifier;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.util.EventListener;
7249
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
    44
import java.util.EventObject;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.util.TreeMap;
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
    47
import java.util.WeakHashMap;
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
    48
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
    49
import sun.awt.AppContext;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import sun.reflect.misc.ReflectUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * The Introspector class provides a standard way for tools to learn about
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * the properties, events, and methods supported by a target Java Bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * For each of those three kinds of information, the Introspector will
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * separately analyze the bean's class and superclasses looking for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * either explicit or implicit information and use that information to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * build a BeanInfo object that comprehensively describes the target bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * For each class "Foo", explicit information may be available if there exists
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * a corresponding "FooBeanInfo" class that provides a non-null value when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * queried for the information.   We first look for the BeanInfo class by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * taking the full package-qualified name of the target bean class and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * appending "BeanInfo" to form a new class name.  If this fails, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * we take the final classname component of this name, and look for that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * class in each of the packages specified in the BeanInfo package search
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * Thus for a class such as "sun.xyz.OurButton" we would first look for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * BeanInfo class called "sun.xyz.OurButtonBeanInfo" and if that failed we'd
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * look in each package in the BeanInfo search path for an OurButtonBeanInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * class.  With the default search path, this would mean looking for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * "sun.beans.infos.OurButtonBeanInfo".
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * If a class provides explicit BeanInfo about itself then we add that to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * the BeanInfo information we obtained from analyzing any derived classes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * but we regard the explicit information as being definitive for the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * class and its base classes, and do not proceed any further up the superclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * If we don't find explicit BeanInfo on a class, we use low-level
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * reflection to study the methods of the class and apply standard design
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * patterns to identify property accessors, event sources, or public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * methods.  We then proceed to analyze the class's superclass and add
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * in the information from it (and possibly on up the superclass chain).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * For more information about introspection and design patterns, please
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * consult the
8760
83843c0b84f7 7021517: java.beans code comments have issues with HTML4 compliance
malenkov
parents: 7249
diff changeset
    90
 *  <a href="http://java.sun.com/products/javabeans/docs/index.html">JavaBeans&trade; specification</a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
public class Introspector {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    // Flags that can be used to control getBeanInfo:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    public final static int USE_ALL_BEANINFO           = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    public final static int IGNORE_IMMEDIATE_BEANINFO  = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    public final static int IGNORE_ALL_BEANINFO        = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    // Static Caches to speed up introspection.
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   101
    private static WeakCache<Class<?>, Method[]> declaredMethodCache =
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   102
            new WeakCache<Class<?>, Method[]>();
3438
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   103
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   104
    private static final Object BEANINFO_CACHE = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    private Class beanClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    private BeanInfo explicitBeanInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private BeanInfo superBeanInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private BeanInfo additionalBeanInfo[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private boolean propertyChangeSource = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private static Class eventListenerType = EventListener.class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    // These should be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    private String defaultEventName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    private String defaultPropertyName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    private int defaultEventIndex = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    private int defaultPropertyIndex = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    // Methods maps from Method objects to MethodDescriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    private Map methods;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    // properties maps from String names to PropertyDescriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    private Map properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    // events maps from String names to EventSetDescriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    private Map events;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    private final static EventSetDescriptor[] EMPTY_EVENTSETDESCRIPTORS = new EventSetDescriptor[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    static final String ADD_PREFIX = "add";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    static final String REMOVE_PREFIX = "remove";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    static final String GET_PREFIX = "get";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    static final String SET_PREFIX = "set";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    static final String IS_PREFIX = "is";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
   137
    private static final Object FINDER_KEY = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    //======================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    //                          Public methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    //======================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Introspect on a Java Bean and learn about all its properties, exposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * methods, and events.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * If the BeanInfo class for a Java Bean has been previously Introspected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * then the BeanInfo class is retrieved from the BeanInfo cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param beanClass  The bean class to be analyzed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @return  A BeanInfo object describing the target bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @exception IntrospectionException if an exception occurs during
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *              introspection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @see #flushCaches
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * @see #flushFromCaches
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    public static BeanInfo getBeanInfo(Class<?> beanClass)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        throws IntrospectionException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        if (!ReflectUtil.isPackageAccessible(beanClass)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            return (new Introspector(beanClass, null, USE_ALL_BEANINFO)).getBeanInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   163
        Map<Class<?>, BeanInfo> beanInfoCache;
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   164
        BeanInfo beanInfo;
3438
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   165
        synchronized (BEANINFO_CACHE) {
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   166
            beanInfoCache = (Map<Class<?>, BeanInfo>) AppContext.getAppContext().get(BEANINFO_CACHE);
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   167
            if (beanInfoCache == null) {
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
   168
                beanInfoCache = new WeakHashMap<Class<?>, BeanInfo>();
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   169
                AppContext.getAppContext().put(BEANINFO_CACHE, beanInfoCache);
3438
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   170
            }
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   171
            beanInfo = beanInfoCache.get(beanClass);
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   172
        }
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   173
        if (beanInfo == null) {
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   174
            beanInfo = new Introspector(beanClass, null, USE_ALL_BEANINFO).getBeanInfo();
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   175
            synchronized (BEANINFO_CACHE) {
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   176
                beanInfoCache.put(beanClass, beanInfo);
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   177
            }
3438
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   178
        }
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   179
        return beanInfo;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Introspect on a Java bean and learn about all its properties, exposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * methods, and events, subject to some control flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * If the BeanInfo class for a Java Bean has been previously Introspected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * based on the same arguments then the BeanInfo class is retrieved
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * from the BeanInfo cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @param beanClass  The bean class to be analyzed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @param flags  Flags to control the introspection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     *     If flags == USE_ALL_BEANINFO then we use all of the BeanInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *          classes we can discover.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *     If flags == IGNORE_IMMEDIATE_BEANINFO then we ignore any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     *           BeanInfo associated with the specified beanClass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *     If flags == IGNORE_ALL_BEANINFO then we ignore all BeanInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *           associated with the specified beanClass or any of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *           parent classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @return  A BeanInfo object describing the target bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @exception IntrospectionException if an exception occurs during
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *              introspection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public static BeanInfo getBeanInfo(Class<?> beanClass, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                                                throws IntrospectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        return getBeanInfo(beanClass, null, flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * Introspect on a Java bean and learn all about its properties, exposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * methods, below a given "stop" point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * If the BeanInfo class for a Java Bean has been previously Introspected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * based on the same arguments, then the BeanInfo class is retrieved
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * from the BeanInfo cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param beanClass The bean class to be analyzed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @param stopClass The baseclass at which to stop the analysis.  Any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     *    methods/properties/events in the stopClass or in its baseclasses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *    will be ignored in the analysis.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @exception IntrospectionException if an exception occurs during
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *              introspection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    public static BeanInfo getBeanInfo(Class<?> beanClass, Class<?> stopClass)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                                                throws IntrospectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        return getBeanInfo(beanClass, stopClass, USE_ALL_BEANINFO);
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
     * Introspect on a Java Bean and learn about all its properties,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * exposed methods and events, below a given {@code stopClass} point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * subject to some control {@code flags}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * <dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *  <dt>USE_ALL_BEANINFO</dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *  <dd>Any BeanInfo that can be discovered will be used.</dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     *  <dt>IGNORE_IMMEDIATE_BEANINFO</dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     *  <dd>Any BeanInfo associated with the specified {@code beanClass} will be ignored.</dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *  <dt>IGNORE_ALL_BEANINFO</dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *  <dd>Any BeanInfo associated with the specified {@code beanClass}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     *      or any of its parent classes will be ignored.</dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * </dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Any methods/properties/events in the {@code stopClass}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * or in its parent classes will be ignored in the analysis.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * If the BeanInfo class for a Java Bean has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * previously introspected based on the same arguments then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * the BeanInfo class is retrieved from the BeanInfo cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * @param beanClass  the bean class to be analyzed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @param stopClass  the parent class at which to stop the analysis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @param flags      flags to control the introspection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @return a BeanInfo object describing the target bean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @exception IntrospectionException if an exception occurs during introspection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public static BeanInfo getBeanInfo(Class<?> beanClass, Class<?> stopClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                                        int flags) throws IntrospectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        BeanInfo bi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        if (stopClass == null && flags == USE_ALL_BEANINFO) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            // Same parameters to take advantage of caching.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            bi = getBeanInfo(beanClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            bi = (new Introspector(beanClass, stopClass, flags)).getBeanInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        return bi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        // Old behaviour: Make an independent copy of the BeanInfo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        //return new GenericBeanInfo(bi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Utility method to take a string and convert it to normal Java variable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * name capitalization.  This normally means converting the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * character from upper case to lower case, but in the (unusual) special
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * case when there is more than one character and both the first and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * second characters are upper case, we leave it alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * Thus "FooBah" becomes "fooBah" and "X" becomes "x", but "URL" stays
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * as "URL".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * @param  name The string to be decapitalized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * @return  The decapitalized version of the string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    public static String decapitalize(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        if (name == null || name.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        if (name.length() > 1 && Character.isUpperCase(name.charAt(1)) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                        Character.isUpperCase(name.charAt(0))){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        char chars[] = name.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        chars[0] = Character.toLowerCase(chars[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        return new String(chars);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * Gets the list of package names that will be used for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     *          finding BeanInfo classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @return  The array of package names that will be searched in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *          order to find BeanInfo classes. The default value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *          for this array is implementation-dependent; e.g.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *          Sun implementation initially sets to {"sun.beans.infos"}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
   308
    public static String[] getBeanInfoSearchPath() {
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   309
        return getFinder().getPackages();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * Change the list of package names that will be used for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     *          finding BeanInfo classes.  The behaviour of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *          this method is undefined if parameter path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *          is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * <p>First, if there is a security manager, its <code>checkPropertiesAccess</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * method is called. This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @param path  Array of package names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *             <code>checkPropertiesAccess</code> method doesn't allow setting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     *              of system properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * @see SecurityManager#checkPropertiesAccess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
   328
    public static void setBeanInfoSearchPath(String[] path) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            sm.checkPropertiesAccess();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        }
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   333
        getFinder().setPackages(path);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * Flush all of the Introspector's internal caches.  This method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * not normally required.  It is normally only needed by advanced
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * tools that update existing "Class" objects in-place and need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * to make the Introspector re-analyze existing Class objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public static void flushCaches() {
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   345
        synchronized (BEANINFO_CACHE) {
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
   346
            Map beanInfoCache = (Map) AppContext.getAppContext().get(BEANINFO_CACHE);
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   347
            if (beanInfoCache != null) {
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   348
                beanInfoCache.clear();
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   349
            }
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   350
            declaredMethodCache.clear();
3438
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   351
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * Flush the Introspector's internal cached information for a given class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * This method is not normally required.  It is normally only needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * by advanced tools that update existing "Class" objects in-place
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * and need to make the Introspector re-analyze an existing Class object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Note that only the direct state associated with the target Class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * object is flushed.  We do not flush state for other Class objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * with the same name, nor do we flush state for any related Class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * objects (such as subclasses), even though their state may include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * information indirectly obtained from the target Class object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @param clz  Class object to be flushed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * @throws NullPointerException If the Class object is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    public static void flushFromCaches(Class<?> clz) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        if (clz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        }
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   373
        synchronized (BEANINFO_CACHE) {
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
   374
            Map beanInfoCache = (Map) AppContext.getAppContext().get(BEANINFO_CACHE);
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   375
            if (beanInfoCache != null) {
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   376
                beanInfoCache.put(clz, null);
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   377
            }
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
   378
            declaredMethodCache.put(clz, null);
3438
8bd2d2eeac83 6660539: Introspector shares cache of mutable BeanInfo between AppContexts.
malenkov
parents: 2
diff changeset
   379
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    //======================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    //                  Private implementation methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    //======================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    private Introspector(Class beanClass, Class stopClass, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                                            throws IntrospectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        this.beanClass = beanClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        // Check stopClass is a superClass of startClass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        if (stopClass != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            boolean isSuper = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            for (Class c = beanClass.getSuperclass(); c != null; c = c.getSuperclass()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                if (c == stopClass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
                    isSuper = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            if (!isSuper) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                throw new IntrospectionException(stopClass.getName() + " not superclass of " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                                        beanClass.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        if (flags == USE_ALL_BEANINFO) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            explicitBeanInfo = findExplicitBeanInfo(beanClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        Class superClass = beanClass.getSuperclass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        if (superClass != stopClass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            int newFlags = flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            if (newFlags == IGNORE_IMMEDIATE_BEANINFO) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                newFlags = USE_ALL_BEANINFO;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            superBeanInfo = getBeanInfo(superClass, stopClass, newFlags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        if (explicitBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            additionalBeanInfo = explicitBeanInfo.getAdditionalBeanInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        if (additionalBeanInfo == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            additionalBeanInfo = new BeanInfo[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * Constructs a GenericBeanInfo class from the state of the Introspector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    private BeanInfo getBeanInfo() throws IntrospectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        // the evaluation order here is import, as we evaluate the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        // event sets and locate PropertyChangeListeners before we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        // look for properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        BeanDescriptor bd = getTargetBeanDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        MethodDescriptor mds[] = getTargetMethodInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        EventSetDescriptor esds[] = getTargetEventInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        PropertyDescriptor pds[] = getTargetPropertyInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        int defaultEvent = getTargetDefaultEventIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        int defaultProperty = getTargetDefaultPropertyIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        return new GenericBeanInfo(bd, esds, defaultEvent, pds,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                        defaultProperty, mds, explicitBeanInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * Looks for an explicit BeanInfo class that corresponds to the Class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * First it looks in the existing package that the Class is defined in,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * then it checks to see if the class is its own BeanInfo. Finally,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * the BeanInfo search path is prepended to the class and searched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     *
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
   451
     * @param beanClass  the class type of the bean
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * @return Instance of an explicit BeanInfo class or null if one isn't found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     */
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
   454
    private static BeanInfo findExplicitBeanInfo(Class beanClass) {
5959
3ff758c11233 6963811: Deadlock-prone locking changes in Introspector
malenkov
parents: 5947
diff changeset
   455
        return getFinder().find(beanClass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @return An array of PropertyDescriptors describing the editable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * properties supported by the target bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    private PropertyDescriptor[] getTargetPropertyInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        // Check if the bean has its own BeanInfo that will provide
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        // explicit information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        PropertyDescriptor[] explicitProperties = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        if (explicitBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            explicitProperties = getPropertyDescriptors(this.explicitBeanInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        if (explicitProperties == null && superBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            // We have no explicit BeanInfo properties.  Check with our parent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            addPropertyDescriptors(getPropertyDescriptors(this.superBeanInfo));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        for (int i = 0; i < additionalBeanInfo.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            addPropertyDescriptors(additionalBeanInfo[i].getPropertyDescriptors());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        if (explicitProperties != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            // Add the explicit BeanInfo data to our results.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            addPropertyDescriptors(explicitProperties);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
            // Apply some reflection to the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            // First get an array of all the public methods at this level
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            Method methodList[] = getPublicDeclaredMethods(beanClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            // Now analyze each method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            for (int i = 0; i < methodList.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                Method method = methodList[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                if (method == null || method.isSynthetic()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                // skip static methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                int mods = method.getModifiers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                if (Modifier.isStatic(mods)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                String name = method.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                Class argTypes[] = method.getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                Class resultType = method.getReturnType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                int argCount = argTypes.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                PropertyDescriptor pd = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                if (name.length() <= 3 && !name.startsWith(IS_PREFIX)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                    // Optimization. Don't bother with invalid propertyNames.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                    if (argCount == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                        if (name.startsWith(GET_PREFIX)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                            // Simple getter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                            pd = new PropertyDescriptor(this.beanClass, name.substring(3), method, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                        } else if (resultType == boolean.class && name.startsWith(IS_PREFIX)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                            // Boolean getter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                            pd = new PropertyDescriptor(this.beanClass, name.substring(2), method, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                    } else if (argCount == 1) {
3241
6fd229e009e7 6723447: Introspector doesn't check return type for indexed property setters
malenkov
parents: 3239
diff changeset
   525
                        if (int.class.equals(argTypes[0]) && name.startsWith(GET_PREFIX)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                            pd = new IndexedPropertyDescriptor(this.beanClass, name.substring(3), null, null, method, null);
3241
6fd229e009e7 6723447: Introspector doesn't check return type for indexed property setters
malenkov
parents: 3239
diff changeset
   527
                        } else if (void.class.equals(resultType) && name.startsWith(SET_PREFIX)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                            // Simple setter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                            pd = new PropertyDescriptor(this.beanClass, name.substring(3), null, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                            if (throwsException(method, PropertyVetoException.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                                pd.setConstrained(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                    } else if (argCount == 2) {
3241
6fd229e009e7 6723447: Introspector doesn't check return type for indexed property setters
malenkov
parents: 3239
diff changeset
   535
                            if (void.class.equals(resultType) && int.class.equals(argTypes[0]) && name.startsWith(SET_PREFIX)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                            pd = new IndexedPropertyDescriptor(this.beanClass, name.substring(3), null, null, null, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                            if (throwsException(method, PropertyVetoException.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                                pd.setConstrained(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                } catch (IntrospectionException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                    // This happens if a PropertyDescriptor or IndexedPropertyDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                    // constructor fins that the method violates details of the deisgn
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                    // pattern, e.g. by having an empty name, or a getter returning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                    // void , or whatever.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                    pd = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                if (pd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                    // If this class or one of its base classes is a PropertyChange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                    // source, then we assume that any properties we discover are "bound".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                    if (propertyChangeSource) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                        pd.setBound(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                    addPropertyDescriptor(pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        processPropertyDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        // Allocate and populate the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        PropertyDescriptor result[] = new PropertyDescriptor[properties.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        result = (PropertyDescriptor[])properties.values().toArray(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        // Set the default index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        if (defaultPropertyName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            for (int i = 0; i < result.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                if (defaultPropertyName.equals(result[i].getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                    defaultPropertyIndex = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    private HashMap pdStore = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * Adds the property descriptor to the list store.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    private void addPropertyDescriptor(PropertyDescriptor pd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        String propName = pd.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        List list = (List)pdStore.get(propName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        if (list == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            list = new ArrayList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            pdStore.put(propName, list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        if (this.beanClass != pd.getClass0()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            // replace existing property descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            // only if we have types to resolve
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            // in the context of this.beanClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                String name = pd.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                Method read = pd.getReadMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                Method write = pd.getWriteMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                boolean cls = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                if (read != null) cls = cls && read.getGenericReturnType() instanceof Class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                if (write != null) cls = cls && write.getGenericParameterTypes()[0] instanceof Class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                if (pd instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                    IndexedPropertyDescriptor ipd = (IndexedPropertyDescriptor)pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                    Method readI = ipd.getIndexedReadMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    Method writeI = ipd.getIndexedWriteMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                    if (readI != null) cls = cls && readI.getGenericReturnType() instanceof Class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                    if (writeI != null) cls = cls && writeI.getGenericParameterTypes()[1] instanceof Class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                    if (!cls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                        pd = new IndexedPropertyDescriptor(this.beanClass, name, read, write, readI, writeI);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                } else if (!cls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                    pd = new PropertyDescriptor(this.beanClass, name, read, write);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            } catch ( IntrospectionException e ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        list.add(pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    private void addPropertyDescriptors(PropertyDescriptor[] descriptors) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        if (descriptors != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
            for (PropertyDescriptor descriptor : descriptors) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                addPropertyDescriptor(descriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    private PropertyDescriptor[] getPropertyDescriptors(BeanInfo info) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        PropertyDescriptor[] descriptors = info.getPropertyDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        int index = info.getDefaultPropertyIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        if ((0 <= index) && (index < descriptors.length)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
            this.defaultPropertyName = descriptors[index].getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        return descriptors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * Populates the property descriptor table by merging the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * lists of Property descriptors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    private void processPropertyDescriptors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        if (properties == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
            properties = new TreeMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        List list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        PropertyDescriptor pd, gpd, spd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        IndexedPropertyDescriptor ipd, igpd, ispd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        Iterator it = pdStore.values().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        while (it.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            pd = null; gpd = null; spd = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
            ipd = null; igpd = null; ispd = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            list = (List)it.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            // First pass. Find the latest getter method. Merge properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            // of previous getter methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            for (int i = 0; i < list.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
                pd = (PropertyDescriptor)list.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
                if (pd instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                    ipd = (IndexedPropertyDescriptor)pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                    if (ipd.getIndexedReadMethod() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                        if (igpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                            igpd = new IndexedPropertyDescriptor(igpd, ipd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                            igpd = ipd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                    if (pd.getReadMethod() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                        if (gpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                            // Don't replace the existing read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                            // method if it starts with "is"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                            Method method = gpd.getReadMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
                            if (!method.getName().startsWith(IS_PREFIX)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
                                gpd = new PropertyDescriptor(gpd, pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
                            gpd = pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
            // Second pass. Find the latest setter method which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
            // has the same type as the getter method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
            for (int i = 0; i < list.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
                pd = (PropertyDescriptor)list.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
                if (pd instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
                    ipd = (IndexedPropertyDescriptor)pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
                    if (ipd.getIndexedWriteMethod() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
                        if (igpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                            if (igpd.getIndexedPropertyType()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
                                == ipd.getIndexedPropertyType()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
                                if (ispd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                                    ispd = new IndexedPropertyDescriptor(ispd, ipd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
                                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
                                    ispd = ipd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                            if (ispd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
                                ispd = new IndexedPropertyDescriptor(ispd, ipd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                                ispd = ipd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                    if (pd.getWriteMethod() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                        if (gpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                            if (gpd.getPropertyType() == pd.getPropertyType()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                                if (spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
                                    spd = new PropertyDescriptor(spd, pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                                    spd = pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                            if (spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                                spd = new PropertyDescriptor(spd, pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                                spd = pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            // At this stage we should have either PDs or IPDs for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            // representative getters and setters. The order at which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
            // property descriptors are determined represent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
            // precedence of the property ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            pd = null; ipd = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
            if (igpd != null && ispd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
                // Complete indexed properties set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
                // Merge any classic property descriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                if (gpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                    PropertyDescriptor tpd = mergePropertyDescriptor(igpd, gpd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                    if (tpd instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                        igpd = (IndexedPropertyDescriptor)tpd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
                if (spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
                    PropertyDescriptor tpd = mergePropertyDescriptor(ispd, spd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
                    if (tpd instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                        ispd = (IndexedPropertyDescriptor)tpd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                if (igpd == ispd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                    pd = igpd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                    pd = mergePropertyDescriptor(igpd, ispd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            } else if (gpd != null && spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                // Complete simple properties set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                if (gpd == spd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                    pd = gpd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                    pd = mergePropertyDescriptor(gpd, spd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
            } else if (ispd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                // indexed setter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                pd = ispd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                // Merge any classic property descriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                if (spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                    pd = mergePropertyDescriptor(ispd, spd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                if (gpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                    pd = mergePropertyDescriptor(ispd, gpd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
            } else if (igpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                // indexed getter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                pd = igpd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                // Merge any classic property descriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                if (gpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                    pd = mergePropertyDescriptor(igpd, gpd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                if (spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                    pd = mergePropertyDescriptor(igpd, spd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            } else if (spd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                // simple setter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                pd = spd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
            } else if (gpd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
                // simple getter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                pd = gpd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
            // Very special case to ensure that an IndexedPropertyDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            // doesn't contain less information than the enclosed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            // PropertyDescriptor. If it does, then recreate as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            // PropertyDescriptor. See 4168833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
            if (pd instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                ipd = (IndexedPropertyDescriptor)pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                if (ipd.getIndexedReadMethod() == null && ipd.getIndexedWriteMethod() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                    pd = new PropertyDescriptor(ipd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
            // Find the first property descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            // which does not have getter and setter methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            // See regression bug 4984912.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
            if ( (pd == null) && (list.size() > 0) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                pd = (PropertyDescriptor) list.get(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
            if (pd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                properties.put(pd.getName(), pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
     * Adds the property descriptor to the indexedproperty descriptor only if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     * types are the same.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * The most specific property descriptor will take precedence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    private PropertyDescriptor mergePropertyDescriptor(IndexedPropertyDescriptor ipd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
                                                       PropertyDescriptor pd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        PropertyDescriptor result = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        Class propType = pd.getPropertyType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        Class ipropType = ipd.getIndexedPropertyType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        if (propType.isArray() && propType.getComponentType() == ipropType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            if (pd.getClass0().isAssignableFrom(ipd.getClass0())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                result = new IndexedPropertyDescriptor(pd, ipd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                result = new IndexedPropertyDescriptor(ipd, pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
            // Cannot merge the pd because of type mismatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            // Return the most specific pd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
            if (pd.getClass0().isAssignableFrom(ipd.getClass0())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                result = ipd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                result = pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
                // Try to add methods which may have been lost in the type change
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                // See 4168833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                Method write = result.getWriteMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                Method read = result.getReadMethod();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                if (read == null && write != null) {
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
   848
                    read = findMethod(result.getClass0(),
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
   849
                                      GET_PREFIX + NameGenerator.capitalize(result.getName()), 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                    if (read != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                            result.setReadMethod(read);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                        } catch (IntrospectionException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                            // no consequences for failure.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                if (write == null && read != null) {
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
   859
                    write = findMethod(result.getClass0(),
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
   860
                                       SET_PREFIX + NameGenerator.capitalize(result.getName()), 1,
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
   861
                                       new Class[] { FeatureDescriptor.getReturnType(result.getClass0(), read) });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                    if (write != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                            result.setWriteMethod(write);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                        } catch (IntrospectionException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                            // no consequences for failure.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    // Handle regular pd merge
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    private PropertyDescriptor mergePropertyDescriptor(PropertyDescriptor pd1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                                                       PropertyDescriptor pd2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
        if (pd1.getClass0().isAssignableFrom(pd2.getClass0())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
            return new PropertyDescriptor(pd1, pd2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
            return new PropertyDescriptor(pd2, pd1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    // Handle regular ipd merge
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
    private PropertyDescriptor mergePropertyDescriptor(IndexedPropertyDescriptor ipd1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
                                                       IndexedPropertyDescriptor ipd2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        if (ipd1.getClass0().isAssignableFrom(ipd2.getClass0())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
            return new IndexedPropertyDescriptor(ipd1, ipd2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
            return new IndexedPropertyDescriptor(ipd2, ipd1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * @return An array of EventSetDescriptors describing the kinds of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * events fired by the target bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    private EventSetDescriptor[] getTargetEventInfo() throws IntrospectionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        if (events == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            events = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        // Check if the bean has its own BeanInfo that will provide
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        // explicit information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        EventSetDescriptor[] explicitEvents = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
        if (explicitBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
            explicitEvents = explicitBeanInfo.getEventSetDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
            int ix = explicitBeanInfo.getDefaultEventIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            if (ix >= 0 && ix < explicitEvents.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
                defaultEventName = explicitEvents[ix].getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
        if (explicitEvents == null && superBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
            // We have no explicit BeanInfo events.  Check with our parent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
            EventSetDescriptor supers[] = superBeanInfo.getEventSetDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            for (int i = 0 ; i < supers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
                addEvent(supers[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
            int ix = superBeanInfo.getDefaultEventIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            if (ix >= 0 && ix < supers.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
                defaultEventName = supers[ix].getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        for (int i = 0; i < additionalBeanInfo.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
            EventSetDescriptor additional[] = additionalBeanInfo[i].getEventSetDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
            if (additional != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
                for (int j = 0 ; j < additional.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
                    addEvent(additional[j]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        if (explicitEvents != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            // Add the explicit explicitBeanInfo data to our results.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
            for (int i = 0 ; i < explicitEvents.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
                addEvent(explicitEvents[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
            // Apply some reflection to the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
            // Get an array of all the public beans methods at this level
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
            Method methodList[] = getPublicDeclaredMethods(beanClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
            // Find all suitable "add", "remove" and "get" Listener methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
            // The name of the listener type is the key for these hashtables
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
            // i.e, ActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
            Map adds = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
            Map removes = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
            Map gets = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            for (int i = 0; i < methodList.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                Method method = methodList[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                if (method == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
                // skip static methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
                int mods = method.getModifiers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
                if (Modifier.isStatic(mods)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
                String name = method.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
                // Optimization avoid getParameterTypes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                if (!name.startsWith(ADD_PREFIX) && !name.startsWith(REMOVE_PREFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                    && !name.startsWith(GET_PREFIX)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                Class argTypes[] = FeatureDescriptor.getParameterTypes(beanClass, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                Class resultType = FeatureDescriptor.getReturnType(beanClass, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                if (name.startsWith(ADD_PREFIX) && argTypes.length == 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                    resultType == Void.TYPE &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
                    Introspector.isSubclass(argTypes[0], eventListenerType)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
                    String listenerName = name.substring(3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                    if (listenerName.length() > 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                        argTypes[0].getName().endsWith(listenerName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                        if (adds == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
                            adds = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
                        adds.put(listenerName, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
                else if (name.startsWith(REMOVE_PREFIX) && argTypes.length == 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
                         resultType == Void.TYPE &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
                         Introspector.isSubclass(argTypes[0], eventListenerType)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
                    String listenerName = name.substring(6);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
                    if (listenerName.length() > 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
                        argTypes[0].getName().endsWith(listenerName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
                        if (removes == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
                            removes = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
                        removes.put(listenerName, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
                else if (name.startsWith(GET_PREFIX) && argTypes.length == 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
                         resultType.isArray() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
                         Introspector.isSubclass(resultType.getComponentType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
                                                 eventListenerType)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
                    String listenerName  = name.substring(3, name.length() - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
                    if (listenerName.length() > 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
                        resultType.getComponentType().getName().endsWith(listenerName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
                        if (gets == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
                            gets = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
                        gets.put(listenerName, method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
            if (adds != null && removes != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
                // Now look for matching addFooListener+removeFooListener pairs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
                // Bonus if there is a matching getFooListeners method as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
                Iterator keys = adds.keySet().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
                while (keys.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
                    String listenerName = (String) keys.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
                    // Skip any "add" which doesn't have a matching "remove" or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
                    // a listener name that doesn't end with Listener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
                    if (removes.get(listenerName) == null || !listenerName.endsWith("Listener")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
                    String eventName = decapitalize(listenerName.substring(0, listenerName.length()-8));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
                    Method addMethod = (Method)adds.get(listenerName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
                    Method removeMethod = (Method)removes.get(listenerName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
                    Method getMethod = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
                    if (gets != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
                        getMethod = (Method)gets.get(listenerName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
                    Class argType = FeatureDescriptor.getParameterTypes(beanClass, addMethod)[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
                    // generate a list of Method objects for each of the target methods:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
                    Method allMethods[] = getPublicDeclaredMethods(argType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
                    List validMethods = new ArrayList(allMethods.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
                    for (int i = 0; i < allMethods.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                        if (allMethods[i] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
                            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
                        if (isEventHandler(allMethods[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
                            validMethods.add(allMethods[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
                    Method[] methods = (Method[])validMethods.toArray(new Method[validMethods.size()]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                    EventSetDescriptor esd = new EventSetDescriptor(eventName, argType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
                                                                    methods, addMethod,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
                                                                    removeMethod,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
                                                                    getMethod);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
                    // If the adder method throws the TooManyListenersException then it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
                    // is a Unicast event source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
                    if (throwsException(addMethod,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
                                        java.util.TooManyListenersException.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
                        esd.setUnicast(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
                    addEvent(esd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
            } // if (adds != null ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        EventSetDescriptor[] result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
        if (events.size() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
            result = EMPTY_EVENTSETDESCRIPTORS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            // Allocate and populate the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            result = new EventSetDescriptor[events.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
            result = (EventSetDescriptor[])events.values().toArray(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            // Set the default index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
            if (defaultEventName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
                for (int i = 0; i < result.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
                    if (defaultEventName.equals(result[i].getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
                        defaultEventIndex = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
    private void addEvent(EventSetDescriptor esd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
        String key = esd.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        if (esd.getName().equals("propertyChange")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            propertyChangeSource = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
        EventSetDescriptor old = (EventSetDescriptor)events.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
        if (old == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            events.put(key, esd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
        EventSetDescriptor composite = new EventSetDescriptor(old, esd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
        events.put(key, composite);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * @return An array of MethodDescriptors describing the private
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * methods supported by the target bean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
    private MethodDescriptor[] getTargetMethodInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
        if (methods == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
            methods = new HashMap(100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
        // Check if the bean has its own BeanInfo that will provide
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
        // explicit information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
        MethodDescriptor[] explicitMethods = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
        if (explicitBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
            explicitMethods = explicitBeanInfo.getMethodDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
        if (explicitMethods == null && superBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
            // We have no explicit BeanInfo methods.  Check with our parent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
            MethodDescriptor supers[] = superBeanInfo.getMethodDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
            for (int i = 0 ; i < supers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
                addMethod(supers[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        for (int i = 0; i < additionalBeanInfo.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
            MethodDescriptor additional[] = additionalBeanInfo[i].getMethodDescriptors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
            if (additional != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
                for (int j = 0 ; j < additional.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
                    addMethod(additional[j]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
        if (explicitMethods != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
            // Add the explicit explicitBeanInfo data to our results.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
            for (int i = 0 ; i < explicitMethods.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
                addMethod(explicitMethods[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
            // Apply some reflection to the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            // First get an array of all the beans methods at this level
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
            Method methodList[] = getPublicDeclaredMethods(beanClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
            // Now analyze each method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
            for (int i = 0; i < methodList.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
                Method method = methodList[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
                if (method == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
                MethodDescriptor md = new MethodDescriptor(method);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
                addMethod(md);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        // Allocate and populate the result array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        MethodDescriptor result[] = new MethodDescriptor[methods.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        result = (MethodDescriptor[])methods.values().toArray(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
    private void addMethod(MethodDescriptor md) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
        // We have to be careful here to distinguish method by both name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
        // and argument lists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        // This method gets called a *lot, so we try to be efficient.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
        String name = md.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
        MethodDescriptor old = (MethodDescriptor)methods.get(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
        if (old == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
            // This is the common case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
            methods.put(name, md);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        // We have a collision on method names.  This is rare.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        // Check if old and md have the same type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        String[] p1 = md.getParamNames();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        String[] p2 = old.getParamNames();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        boolean match = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
        if (p1.length == p2.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
            match = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
            for (int i = 0; i < p1.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
                if (p1[i] != p2[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
                    match = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        if (match) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            MethodDescriptor composite = new MethodDescriptor(old, md);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
            methods.put(name, composite);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
        // We have a collision on method names with different type signatures.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        // This is very rare.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        String longKey = makeQualifiedMethodName(name, p1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
        old = (MethodDescriptor)methods.get(longKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
        if (old == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
            methods.put(longKey, md);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
        MethodDescriptor composite = new MethodDescriptor(old, md);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
        methods.put(longKey, composite);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * Creates a key for a method in a method cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
    private static String makeQualifiedMethodName(String name, String[] params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
        StringBuffer sb = new StringBuffer(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
        sb.append('=');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
        for (int i = 0; i < params.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
            sb.append(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
            sb.append(params[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
    private int getTargetDefaultEventIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
        return defaultEventIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
    private int getTargetDefaultPropertyIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
        return defaultPropertyIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
    private BeanDescriptor getTargetBeanDescriptor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
        // Use explicit info, if available,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
        if (explicitBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
            BeanDescriptor bd = explicitBeanInfo.getBeanDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
            if (bd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
                return (bd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        // OK, fabricate a default BeanDescriptor.
7249
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1240
        return new BeanDescriptor(this.beanClass, findCustomizerClass(this.beanClass));
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1241
    }
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1242
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1243
    private static Class<?> findCustomizerClass(Class<?> type) {
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1244
        String name = type.getName() + "Customizer";
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1245
        try {
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1246
            type = ClassFinder.findClass(name, type.getClassLoader());
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1247
            // Each customizer should inherit java.awt.Component and implement java.beans.Customizer
8760
83843c0b84f7 7021517: java.beans code comments have issues with HTML4 compliance
malenkov
parents: 7249
diff changeset
  1248
            // according to the section 9.3 of JavaBeans&trade; specification
7249
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1249
            if (Component.class.isAssignableFrom(type) && Customizer.class.isAssignableFrom(type)) {
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1250
                return type;
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1251
            }
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1252
        }
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1253
        catch (Exception exception) {
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1254
            // ignore any exceptions
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1255
        }
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1256
        return null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
    private boolean isEventHandler(Method m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        // We assume that a method is an event handler if it has a single
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        // argument, whose type inherit from java.util.Event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
        Class argTypes[] = FeatureDescriptor.getParameterTypes(beanClass, m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
        if (argTypes.length != 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
        }
7249
34380acce3b6 6447751: Bean Customizer should be detectable by reflection name alone
malenkov
parents: 6657
diff changeset
  1266
        return isSubclass(argTypes[0], EventObject.class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     * Internal method to return *public* methods within a class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
     */
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1272
    private static Method[] getPublicDeclaredMethods(Class clz) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
        // Looking up Class.getDeclaredMethods is relatively expensive,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
        // so we cache the results.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
        if (!ReflectUtil.isPackageAccessible(clz)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
            return new Method[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
        }
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1278
        synchronized (BEANINFO_CACHE) {
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1279
            Method[] result = declaredMethodCache.get(clz);
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1280
            if (result == null) {
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1281
                result = clz.getMethods();
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1282
                for (int i = 0; i < result.length; i++) {
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1283
                    Method method = result[i];
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1284
                    if (!method.getDeclaringClass().equals(clz)) {
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1285
                        result[i] = null;
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1286
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
                }
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1288
                declaredMethodCache.put(clz, result);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
            }
4382
c0759b1ccb56 5102804: Memory leak in Introspector.getBeanInfo(Class) for custom BeanInfo: Class param
malenkov
parents: 3476
diff changeset
  1290
            return result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
    //======================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
    // Package private support methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
    //======================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1298
    /**
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1299
     * Internal support for finding a target methodName with a given
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1300
     * parameter list on a given class.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1301
     */
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1302
    private static Method internalFindMethod(Class start, String methodName,
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1303
                                                 int argCount, Class args[]) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1304
        // For overriden methods we need to find the most derived version.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1305
        // So we start with the given class and walk up the superclass chain.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1306
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1307
        Method method = null;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1308
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1309
        for (Class cl = start; cl != null; cl = cl.getSuperclass()) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1310
            Method methods[] = getPublicDeclaredMethods(cl);
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1311
            for (int i = 0; i < methods.length; i++) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1312
                method = methods[i];
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1313
                if (method == null) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1314
                    continue;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
                }
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1316
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1317
                // make sure method signature matches.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1318
                Class params[] = FeatureDescriptor.getParameterTypes(start, method);
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1319
                if (method.getName().equals(methodName) &&
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1320
                    params.length == argCount) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1321
                    if (args != null) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1322
                        boolean different = false;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1323
                        if (argCount > 0) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1324
                            for (int j = 0; j < argCount; j++) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1325
                                if (params[j] != args[j]) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1326
                                    different = true;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1327
                                    continue;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1328
                                }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1329
                            }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1330
                            if (different) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1331
                                continue;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1332
                            }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1333
                        }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1334
                    }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1335
                    return method;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
        }
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1339
        method = null;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1340
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1341
        // Now check any inherited interfaces.  This is necessary both when
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1342
        // the argument class is itself an interface, and when the argument
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1343
        // class is an abstract class.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1344
        Class ifcs[] = start.getInterfaces();
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1345
        for (int i = 0 ; i < ifcs.length; i++) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1346
            // Note: The original implementation had both methods calling
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1347
            // the 3 arg method. This is preserved but perhaps it should
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1348
            // pass the args array instead of null.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1349
            method = internalFindMethod(ifcs[i], methodName, argCount, null);
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1350
            if (method != null) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1351
                break;
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1352
            }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1353
        }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1354
        return method;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1357
    /**
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1358
     * Find a target methodName on a given class.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1359
     */
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1360
    static Method findMethod(Class cls, String methodName, int argCount) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1361
        return findMethod(cls, methodName, argCount, null);
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1362
    }
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1363
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1364
    /**
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1365
     * Find a target methodName with specific parameter list on a given class.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1366
     * <p>
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1367
     * Used in the contructors of the EventSetDescriptor,
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1368
     * PropertyDescriptor and the IndexedPropertyDescriptor.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1369
     * <p>
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1370
     * @param cls The Class object on which to retrieve the method.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1371
     * @param methodName Name of the method.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1372
     * @param argCount Number of arguments for the desired method.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1373
     * @param args Array of argument types for the method.
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1374
     * @return the method or null if not found
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1375
     */
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1376
    static Method findMethod(Class cls, String methodName, int argCount,
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1377
                             Class args[]) {
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1378
        if (methodName == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
        }
6657
15dbb366c6a3 6976577: JCK7 api/java_beans/EventSetDescriptor/descriptions.html#Ctor1 fails since jdk7 b102
malenkov
parents: 5959
diff changeset
  1381
        return internalFindMethod(cls, methodName, argCount, args);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
     * Return true if class a is either equivalent to class b, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     * if class a is a subclass of class b, i.e. if a either "extends"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
     * or "implements" b.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
     * Note tht either or both "Class" objects may represent interfaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
    static  boolean isSubclass(Class a, Class b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
        // We rely on the fact that for any given java class or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
        // primtitive type there is a unqiue Class object, so
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
        // we can use object equivalence in the comparisons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
        if (a == b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
        if (a == null || b == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        for (Class x = a; x != null; x = x.getSuperclass()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
            if (x == b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
            if (b.isInterface()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
                Class interfaces[] = x.getInterfaces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
                for (int i = 0; i < interfaces.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
                    if (isSubclass(interfaces[i], b)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * Return true iff the given method throws the given exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
    private boolean throwsException(Method method, Class exception) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
        Class exs[] = method.getExceptionTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
        for (int i = 0; i < exs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
            if (exs[i] == exception) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
3239
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1429
    private static BeanInfoFinder getFinder() {
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1430
        AppContext context = AppContext.getAppContext();
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1431
        Object object = context.get(FINDER_KEY);
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1432
        if (object instanceof BeanInfoFinder) {
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1433
            return (BeanInfoFinder) object;
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1434
        }
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1435
        BeanInfoFinder finder = new BeanInfoFinder();
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1436
        context.put(FINDER_KEY, finder);
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1437
        return finder;
f675984c2349 6380849: RFE: Automatic discovery of PersistanceDelegates
malenkov
parents: 2
diff changeset
  1438
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
     * Try to create an instance of a named class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
     * First try the classloader of "sibling", then try the system
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     * classloader then the class loader of the current Thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
    static Object instantiate(Class sibling, String className)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
                 throws InstantiationException, IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
                                                ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
        // First check with sibling's classloader (if any).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
        ClassLoader cl = sibling.getClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
        Class cls = ClassFinder.findClass(className, cl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
        return cls.newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
} // end class Introspector
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
//===========================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
 * Package private implementation support class for Introspector's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
 * internal use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
 * Mostly this is used as a placeholder for the descriptors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
class GenericBeanInfo extends SimpleBeanInfo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
    private BeanDescriptor beanDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
    private EventSetDescriptor[] events;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
    private int defaultEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
    private PropertyDescriptor[] properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
    private int defaultProperty;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
    private MethodDescriptor[] methods;
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
  1473
    private final Reference<BeanInfo> targetBeanInfoRef;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
    public GenericBeanInfo(BeanDescriptor beanDescriptor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
                EventSetDescriptor[] events, int defaultEvent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
                PropertyDescriptor[] properties, int defaultProperty,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
                MethodDescriptor[] methods, BeanInfo targetBeanInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
        this.beanDescriptor = beanDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
        this.events = events;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
        this.defaultEvent = defaultEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
        this.properties = properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
        this.defaultProperty = defaultProperty;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
        this.methods = methods;
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
  1485
        this.targetBeanInfoRef = new SoftReference<BeanInfo>(targetBeanInfo);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     * Package-private dup constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
     * This must isolate the new object from any changes to the old object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
    GenericBeanInfo(GenericBeanInfo old) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        beanDescriptor = new BeanDescriptor(old.beanDescriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        if (old.events != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
            int len = old.events.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
            events = new EventSetDescriptor[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
            for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
                events[i] = new EventSetDescriptor(old.events[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
        defaultEvent = old.defaultEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
        if (old.properties != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
            int len = old.properties.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
            properties = new PropertyDescriptor[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
            for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
                PropertyDescriptor oldp = old.properties[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
                if (oldp instanceof IndexedPropertyDescriptor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
                    properties[i] = new IndexedPropertyDescriptor(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
                                        (IndexedPropertyDescriptor) oldp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
                    properties[i] = new PropertyDescriptor(oldp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
        defaultProperty = old.defaultProperty;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
        if (old.methods != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
            int len = old.methods.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
            methods = new MethodDescriptor[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
            for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
                methods[i] = new MethodDescriptor(old.methods[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
        }
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
  1524
        this.targetBeanInfoRef = old.targetBeanInfoRef;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
    public PropertyDescriptor[] getPropertyDescriptors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
        return properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
    public int getDefaultPropertyIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
        return defaultProperty;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
    public EventSetDescriptor[] getEventSetDescriptors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        return events;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
    public int getDefaultEventIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
        return defaultEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
    public MethodDescriptor[] getMethodDescriptors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
        return methods;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
    public BeanDescriptor getBeanDescriptor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
        return beanDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
    public java.awt.Image getIcon(int iconKind) {
4851
4f7de5eeeac7 6921057: REGRESSION: persistence delegate issue on Windows and Linux against 5.u23b03/6u17b11
malenkov
parents: 4393
diff changeset
  1552
        BeanInfo targetBeanInfo = this.targetBeanInfoRef.get();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
        if (targetBeanInfo != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
            return targetBeanInfo.getIcon(iconKind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
        return super.getIcon(iconKind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
}