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