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