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