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