jdk/src/share/classes/sun/awt/AppContext.java
author son
Thu, 13 Mar 2008 16:27:20 +0300
changeset 108 deaaed5cedb7
parent 2 90ce3da70b43
child 112 c7ed16a1bef2
permissions -rw-r--r--
6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination Summary: AppContext.dispose() should be ready to get exceptions during disposal of toplevels. Also now we mark windows peers as destroyed when native object has been destroyed. Reviewed-by: art
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
108
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
     2
 * Copyright 1998-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.EventQueue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.SystemTray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.TrayIcon;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.Toolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.GraphicsEnvironment;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.awt.event.InvocationEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.Collections;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.IdentityHashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.util.HashSet;
108
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
    43
import java.util.logging.Level;
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
    44
import java.util.logging.Logger;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.beans.PropertyChangeSupport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.beans.PropertyChangeListener;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * The AppContext is a table referenced by ThreadGroup which stores
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * application service instances.  (If you are not writing an application
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * service, or don't know what one is, please do not use this class.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * The AppContext allows applet access to what would otherwise be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * potentially dangerous services, such as the ability to peek at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * EventQueues or change the look-and-feel of a Swing application.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Most application services use a singleton object to provide their
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * services, either as a default (such as getSystemEventQueue or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * getDefaultToolkit) or as static methods with class data (System).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * The AppContext works with the former method by extending the concept
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * of "default" to be ThreadGroup-specific.  Application services
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * lookup their singleton in the AppContext.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * For example, here we have a Foo service, with its pre-AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * code:<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <code><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *    public class Foo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *        private static Foo defaultFoo = new Foo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *        public static Foo getDefaultFoo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *            return defaultFoo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *    ... Foo service methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *    }</pre></code><p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * The problem with the above is that the Foo service is global in scope,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * so that applets and other untrusted code can execute methods on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * single, shared Foo instance.  The Foo service therefore either needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * to block its use by untrusted code using a SecurityManager test, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * restrict its capabilities so that it doesn't matter if untrusted code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * executes it.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * Here's the Foo class written to use the AppContext:<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <code><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *    public class Foo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *        public static Foo getDefaultFoo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *            Foo foo = (Foo)AppContext.getAppContext().get(Foo.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *            if (foo == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *                foo = new Foo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *                getAppContext().put(Foo.class, foo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *            return foo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *    ... Foo service methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *    }</pre></code><p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * Since a separate AppContext can exist for each ThreadGroup, trusted
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * and untrusted code have access to different Foo instances.  This allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * untrusted code access to "system-wide" services -- the service remains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * within the AppContext "sandbox".  For example, say a malicious applet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * wants to peek all of the key events on the EventQueue to listen for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * passwords; if separate EventQueues are used for each ThreadGroup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * using AppContexts, the only key events that applet will be able to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * listen to are its own.  A more reasonable applet request would be to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * change the Swing default look-and-feel; with that default stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * an AppContext, the applet's look-and-feel will change without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * disrupting other applets or potentially the browser itself.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * Because the AppContext is a facility for safely extending application
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * service support to applets, none of its methods may be blocked by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * a SecurityManager check in a valid Java implementation.  Applets may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * therefore safely invoke any of its methods without worry of being
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * blocked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * Note: If a SecurityManager is installed which derives from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * sun.awt.AWTSecurityManager, it may override the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * AWTSecurityManager.getAppContext() method to return the proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * AppContext based on the execution context, in the case where
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * the default ThreadGroup-based AppContext indexing would return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * the main "system" AppContext.  For example, in an applet situation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * if a system thread calls into an applet, rather than returning the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * main "system" AppContext (the one corresponding to the system thread),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * an installed AWTSecurityManager may return the applet's AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * based on the execution context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @author  Thomas Ball
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * @author  Fred Ecks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
public final class AppContext {
108
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   131
    private static final Logger log = Logger.getLogger("sun.awt.AppContext");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /* Since the contents of an AppContext are unique to each Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * session, this class should never be serialized. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /* The key to put()/get() the Java EventQueue into/from the AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public static final Object EVENT_QUEUE_KEY = new StringBuffer("EventQueue");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /* A map of AppContexts, referenced by ThreadGroup.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    private static final Map<ThreadGroup, AppContext> threadGroup2appContext =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            Collections.synchronizedMap(new IdentityHashMap<ThreadGroup, AppContext>());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * Returns a set containing all <code>AppContext</code>s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public static Set<AppContext> getAppContexts() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        return new HashSet<AppContext>(threadGroup2appContext.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /* The main "system" AppContext, used by everything not otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
       contained in another AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    private static AppContext mainAppContext = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * The hash map associated with this AppContext.  A private delegate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * is used instead of subclassing HashMap so as to avoid all of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * HashMap's potentially risky methods, such as clear(), elements(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * putAll(), etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    private final HashMap table = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    private final ThreadGroup threadGroup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * If any <code>PropertyChangeListeners</code> have been registered,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * the <code>changeSupport</code> field describes them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @see #addPropertyChangeListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @see #removePropertyChangeListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @see #firePropertyChange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    private PropertyChangeSupport changeSupport = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    public static final String DISPOSED_PROPERTY_NAME = "disposed";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public static final String GUI_DISPOSED = "guidisposed";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    private boolean isDisposed = false; // true if AppContext is disposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public boolean isDisposed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        return isDisposed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        // On the main Thread, we get the ThreadGroup, make a corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        // AppContext, and instantiate the Java EventQueue.  This way, legacy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        // code is unaffected by the move to multiple AppContext ability.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        AccessController.doPrivileged(new PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
          public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            ThreadGroup currentThreadGroup =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                                Thread.currentThread().getThreadGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            ThreadGroup parentThreadGroup = currentThreadGroup.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            while (parentThreadGroup != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                // Find the root ThreadGroup to construct our main AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                currentThreadGroup = parentThreadGroup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
                parentThreadGroup = currentThreadGroup.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
            mainAppContext = new AppContext(currentThreadGroup);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            numAppContexts = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            return mainAppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * The total number of AppContexts, system-wide.  This number is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * incremented at the beginning of the constructor, and decremented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * at the end of dispose().  getAppContext() checks to see if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * number is 1.  If so, it returns the sole AppContext without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * checking Thread.currentThread().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    private static int numAppContexts;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * The context ClassLoader that was used to create this AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    private final ClassLoader contextClassLoader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * Constructor for AppContext.  This method is <i>not</i> public,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * nor should it ever be used as such.  The proper way to construct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * an AppContext is through the use of SunToolkit.createNewAppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * A ThreadGroup is created for the new AppContext, a Thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * created within that ThreadGroup, and that Thread calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * SunToolkit.createNewAppContext before calling anything else.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * That creates both the new AppContext and its EventQueue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @param   threadGroup     The ThreadGroup for the new AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @see     sun.awt.SunToolkit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    AppContext(ThreadGroup threadGroup) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        numAppContexts++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        this.threadGroup = threadGroup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        threadGroup2appContext.put(threadGroup, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        this.contextClassLoader =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            (ClassLoader) AccessController.doPrivileged(new PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                    public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                        return Thread.currentThread().getContextClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    private static MostRecentThreadAppContext mostRecentThreadAppContext = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Returns the appropriate AppContext for the caller,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * as determined by its ThreadGroup.  If the main "system" AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * would be returned and there's an AWTSecurityManager installed, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * is called to get the proper AppContext based on the execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @return  the AppContext for the caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @see     java.lang.ThreadGroup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    public final static AppContext getAppContext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        if (numAppContexts == 1)   // If there's only one system-wide,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            return mainAppContext; // return the main system AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        final Thread currentThread = Thread.currentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        AppContext appContext = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        // Note: this most recent Thread/AppContext caching is thread-hot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        // A simple test using SwingSet found that 96.8% of lookups
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        // were matched using the most recent Thread/AppContext.  By
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        // instantiating a simple MostRecentThreadAppContext object on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        // cache misses, the cache hits can be processed without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        // synchronization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        MostRecentThreadAppContext recent = mostRecentThreadAppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        if ((recent != null) && (recent.thread == currentThread))  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            appContext = recent.appContext; // Cache hit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
          appContext = (AppContext)AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                                            new PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            // Get the current ThreadGroup, and look for it and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
            // parents in the hash from ThreadGroup to AppContext --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            // it should be found, because we use createNewContext()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            // when new AppContext objects are created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            ThreadGroup currentThreadGroup = currentThread.getThreadGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            ThreadGroup threadGroup = currentThreadGroup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            AppContext context = threadGroup2appContext.get(threadGroup);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            while (context == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                threadGroup = threadGroup.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                if (threadGroup == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                    // If we get here, we're running under a ThreadGroup that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                    // has no AppContext associated with it.  This should never
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                    // happen, because createNewContext() should be used by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                    // toolkit to create the ThreadGroup that everything runs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                    // under.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                    throw new RuntimeException("Invalid ThreadGroup");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                context = threadGroup2appContext.get(threadGroup);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            // In case we did anything in the above while loop, we add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            // all the intermediate ThreadGroups to threadGroup2appContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            // so we won't spin again.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            for (ThreadGroup tg = currentThreadGroup; tg != threadGroup; tg = tg.getParent()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                threadGroup2appContext.put(tg, context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
            // Now we're done, so we cache the latest key/value pair.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            // (we do this before checking with any AWTSecurityManager, so if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            // this Thread equates with the main AppContext in the cache, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            // still will)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            mostRecentThreadAppContext =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                new MostRecentThreadAppContext(currentThread, context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            return context;
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
        if (appContext == mainAppContext)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            // Before we return the main "system" AppContext, check to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            // see if there's an AWTSecurityManager installed.  If so,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            // allow it to choose the AppContext to return.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            SecurityManager securityManager = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            if ((securityManager != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                (securityManager instanceof AWTSecurityManager))  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                AWTSecurityManager awtSecMgr =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                                      (AWTSecurityManager)securityManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                AppContext secAppContext = awtSecMgr.getAppContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                if (secAppContext != null)  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                    appContext = secAppContext; // Return what we're told
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        return appContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    private long DISPOSAL_TIMEOUT = 5000;  // Default to 5-second timeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                                           // for disposal of all Frames
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                                           // (we wait for this time twice,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                                           // once for dispose(), and once
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                                           // to clear the EventQueue).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    private long THREAD_INTERRUPT_TIMEOUT = 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
                            // Default to 1-second timeout for all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                            // interrupted Threads to exit, and another
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
                            // 1 second for all stopped Threads to die.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * Disposes of this AppContext, all of its top-level Frames, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * all Threads and ThreadGroups contained within it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * This method must be called from a Thread which is not contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * within this AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @exception  IllegalThreadStateException  if the current thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *                                    contained within this AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    public void dispose() throws IllegalThreadStateException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        // Check to be sure that the current Thread isn't in this AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        if (this.threadGroup.parentOf(Thread.currentThread().getThreadGroup())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            throw new IllegalThreadStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                "Current Thread is contained within AppContext to be disposed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
              );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        synchronized(this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            if (this.isDisposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                return; // If already disposed, bail.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            this.isDisposed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        final PropertyChangeSupport changeSupport = this.changeSupport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        if (changeSupport != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            changeSupport.firePropertyChange(DISPOSED_PROPERTY_NAME, false, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        // First, we post an InvocationEvent to be run on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        // EventDispatchThread which disposes of all top-level Frames and TrayIcons
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        final Object notificationLock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        Runnable runnable = new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                Window[] windowsToDispose = Window.getOwnerlessWindows();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                for (Window w : windowsToDispose) {
108
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   391
                    try {
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   392
                        w.dispose();
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   393
                    } catch (Throwable t) {
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   394
                        if (log.isLoggable(Level.FINER)) {
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   395
                            log.log(Level.FINER, "exception occured while disposing app context", t);
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   396
                        }
deaaed5cedb7 6592751: EmbeddedFrame disposal is fragile and breaks clean AppContext termination
son
parents: 2
diff changeset
   397
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                AccessController.doPrivileged(new PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                        public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                            if (!GraphicsEnvironment.isHeadless() && SystemTray.isSupported())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                                SystemTray systemTray = SystemTray.getSystemTray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                                TrayIcon[] trayIconsToDispose = systemTray.getTrayIcons();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                                for (TrayIcon ti : trayIconsToDispose) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                                    systemTray.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                // Alert PropertyChangeListeners that the GUI has been disposed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                if (changeSupport != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                    changeSupport.firePropertyChange(GUI_DISPOSED, false, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                synchronized(notificationLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                    notificationLock.notifyAll(); // Notify caller that we're done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        synchronized(notificationLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            SunToolkit.postEvent(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                new InvocationEvent(Toolkit.getDefaultToolkit(), runnable));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                notificationLock.wait(DISPOSAL_TIMEOUT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
            } catch (InterruptedException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        // Next, we post another InvocationEvent to the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        // EventQueue.  When it's executed, we know we've executed all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        // events in the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        runnable = new Runnable() { public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            synchronized(notificationLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                notificationLock.notifyAll(); // Notify caller that we're done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        } };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        synchronized(notificationLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            SunToolkit.postEvent(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                new InvocationEvent(Toolkit.getDefaultToolkit(), runnable));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                notificationLock.wait(DISPOSAL_TIMEOUT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            } catch (InterruptedException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        // Next, we interrupt all Threads in the ThreadGroup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        this.threadGroup.interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            // Note, the EventDispatchThread we've interrupted may dump an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            // InterruptedException to the console here.  This needs to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            // fixed in the EventDispatchThread, not here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        // Next, we sleep 10ms at a time, waiting for all of the active
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        // Threads in the ThreadGroup to exit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        long startTime = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        long endTime = startTime + (long)THREAD_INTERRUPT_TIMEOUT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        while ((this.threadGroup.activeCount() > 0) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
               (System.currentTimeMillis() < endTime)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                Thread.sleep(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            } catch (InterruptedException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        // Then, we stop any remaining Threads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        this.threadGroup.stop();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        // Next, we sleep 10ms at a time, waiting for all of the active
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        // Threads in the ThreadGroup to die.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        startTime = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        endTime = startTime + (long)THREAD_INTERRUPT_TIMEOUT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        while ((this.threadGroup.activeCount() > 0) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
               (System.currentTimeMillis() < endTime)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
                Thread.sleep(10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
            } catch (InterruptedException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        // Next, we remove this and all subThreadGroups from threadGroup2appContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        int numSubGroups = this.threadGroup.activeGroupCount();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        if (numSubGroups > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            ThreadGroup [] subGroups = new ThreadGroup[numSubGroups];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            numSubGroups = this.threadGroup.enumerate(subGroups);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            for (int subGroup = 0; subGroup < numSubGroups; subGroup++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                threadGroup2appContext.remove(subGroups[subGroup]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        threadGroup2appContext.remove(this.threadGroup);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        MostRecentThreadAppContext recent = mostRecentThreadAppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        if ((recent != null) && (recent.appContext == this))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            mostRecentThreadAppContext = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                // If the "most recent" points to this, clear it for GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        // Finally, we destroy the ThreadGroup entirely.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            this.threadGroup.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        } catch (IllegalThreadStateException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            // Fired if not all the Threads died, ignore it and proceed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        synchronized (table) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            this.table.clear(); // Clear out the Hashtable to ease garbage collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        numAppContexts--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        mostRecentKeyValue = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    static final class PostShutdownEventRunnable implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        private final AppContext appContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        public PostShutdownEventRunnable(AppContext ac) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            appContext = ac;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            final EventQueue eq = (EventQueue)appContext.get(EVENT_QUEUE_KEY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            if (eq != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                eq.postEvent(AWTAutoShutdown.getShutdownEvent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    static final class CreateThreadAction implements PrivilegedAction {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        private final AppContext appContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        private final Runnable runnable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        public CreateThreadAction(AppContext ac, Runnable r) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            appContext = ac;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            runnable = r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            Thread t = new Thread(appContext.getThreadGroup(), runnable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            t.setContextClassLoader(appContext.getContextClassLoader());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
            t.setPriority(Thread.NORM_PRIORITY + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            t.setDaemon(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            return t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    static void stopEventDispatchThreads() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        for (AppContext appContext: getAppContexts()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            if (appContext.isDisposed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            Runnable r = new PostShutdownEventRunnable(appContext);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            // For security reasons EventQueue.postEvent should only be called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            // on a thread that belongs to the corresponding thread group.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            if (appContext != AppContext.getAppContext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                // Create a thread that belongs to the thread group associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                // with the AppContext and invokes EventQueue.postEvent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                PrivilegedAction action = new CreateThreadAction(appContext, r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                Thread thread = (Thread)AccessController.doPrivileged(action);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                thread.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                r.run();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    private MostRecentKeyValue mostRecentKeyValue = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    private MostRecentKeyValue shadowMostRecentKeyValue = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * Returns the value to which the specified key is mapped in this context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * @param   key   a key in the AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * @return  the value to which the key is mapped in this AppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     *          <code>null</code> if the key is not mapped to any value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * @see     #put(Object, Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    public Object get(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
         * The most recent reference should be updated inside a synchronized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
         * block to avoid a race when put() and get() are executed in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
         * parallel on different threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        synchronized (table) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            // Note: this most recent key/value caching is thread-hot.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
            // A simple test using SwingSet found that 72% of lookups
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
            // were matched using the most recent key/value.  By instantiating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            // a simple MostRecentKeyValue object on cache misses, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            // cache hits can be processed without synchronization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            MostRecentKeyValue recent = mostRecentKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            if ((recent != null) && (recent.key == key)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                return recent.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            Object value = table.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            if(mostRecentKeyValue == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                mostRecentKeyValue = new MostRecentKeyValue(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                shadowMostRecentKeyValue = new MostRecentKeyValue(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                MostRecentKeyValue auxKeyValue = mostRecentKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                shadowMostRecentKeyValue.setPair(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                mostRecentKeyValue = shadowMostRecentKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                shadowMostRecentKeyValue = auxKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * Maps the specified <code>key</code> to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * <code>value</code> in this AppContext.  Neither the key nor the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * value can be <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * The value can be retrieved by calling the <code>get</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * with a key that is equal to the original key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * @param      key     the AppContext key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * @param      value   the value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @return     the previous value of the specified key in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *             AppContext, or <code>null</code> if it did not have one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * @exception  NullPointerException  if the key or value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *               <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * @see     #get(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    public Object put(Object key, Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        synchronized (table) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            MostRecentKeyValue recent = mostRecentKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            if ((recent != null) && (recent.key == key))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                recent.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
            return table.put(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * Removes the key (and its corresponding value) from this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * AppContext. This method does nothing if the key is not in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * @param   key   the key that needs to be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     * @return  the value to which the key had been mapped in this AppContext,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     *          or <code>null</code> if the key did not have a mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    public Object remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        synchronized (table) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            MostRecentKeyValue recent = mostRecentKeyValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
            if ((recent != null) && (recent.key == key))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                recent.value = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            return table.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * Returns the root ThreadGroup for all Threads contained within
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * this AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    public ThreadGroup getThreadGroup() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        return threadGroup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * Returns the context ClassLoader that was used to create this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * @see java.lang.Thread#getContextClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    public ClassLoader getContextClassLoader() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        return contextClassLoader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * Returns a string representation of this AppContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        return getClass().getName() + "[threadGroup=" + threadGroup.getName() + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * Returns an array of all the property change listeners
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * registered on this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * @return all of this component's <code>PropertyChangeListener</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     *         or an empty array if no property change
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *         listeners are currently registered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @see      #addPropertyChangeListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * @see      #removePropertyChangeListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * @see      #getPropertyChangeListeners(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * @see      java.beans.PropertyChangeSupport#getPropertyChangeListeners
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * @since    1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    public synchronized PropertyChangeListener[] getPropertyChangeListeners() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        if (changeSupport == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
            return new PropertyChangeListener[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        return changeSupport.getPropertyChangeListeners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * Adds a PropertyChangeListener to the listener list for a specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * property. The specified property may be one of the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     *    <li>if this AppContext is disposed ("disposed")</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     *    <li>if this AppContext's unowned Windows have been disposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     *    ("guidisposed").  Code to cleanup after the GUI is disposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *    (such as LookAndFeel.uninitialize()) should execute in response to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     *    this property being fired.  Notifications for the "guidisposed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     *    property are sent on the event dispatch thread.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * If listener is null, no exception is thrown and no action is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * @param propertyName one of the property names listed above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     * @param listener the PropertyChangeListener to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * @see #removePropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * @see #getPropertyChangeListeners(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * @see #addPropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    public synchronized void addPropertyChangeListener(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                             String propertyName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                             PropertyChangeListener listener) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
        if (listener == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        if (changeSupport == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            changeSupport = new PropertyChangeSupport(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        changeSupport.addPropertyChangeListener(propertyName, listener);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * Removes a PropertyChangeListener from the listener list for a specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * property. This method should be used to remove PropertyChangeListeners
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     * that were registered for a specific bound property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * If listener is null, no exception is thrown and no action is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * @param propertyName a valid property name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     * @param listener the PropertyChangeListener to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     * @see #addPropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * @see #getPropertyChangeListeners(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * @see #removePropertyChangeListener(java.beans.PropertyChangeListener)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    public synchronized void removePropertyChangeListener(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                             String propertyName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                             PropertyChangeListener listener) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        if (listener == null || changeSupport == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        changeSupport.removePropertyChangeListener(propertyName, listener);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * Returns an array of all the listeners which have been associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     * with the named property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * @return all of the <code>PropertyChangeListeners</code> associated with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     *         the named property or an empty array if no listeners have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     *         been added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * @see #addPropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     * @see #removePropertyChangeListener(java.lang.String, java.beans.PropertyChangeListener)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * @see #getPropertyChangeListeners
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    public synchronized PropertyChangeListener[] getPropertyChangeListeners(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                                                        String propertyName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        if (changeSupport == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
            return new PropertyChangeListener[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        return changeSupport.getPropertyChangeListeners(propertyName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
final class MostRecentThreadAppContext {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    final Thread thread;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    final AppContext appContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
    MostRecentThreadAppContext(Thread key, AppContext value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        thread = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        appContext = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
final class MostRecentKeyValue {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    Object key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    Object value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    MostRecentKeyValue(Object k, Object v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        key = k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        value = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    void setPair(Object k, Object v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        key = k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        value = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
}