src/java.desktop/share/classes/java/awt/SequencedEvent.java
author psadhukhan
Tue, 26 Sep 2017 10:46:23 +0530
changeset 47374 bf712ea57bb0
parent 47216 71c04702a3d5
child 49299 719064f540f3
permissions -rw-r--r--
8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode Reviewed-by: serb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 20107
diff changeset
     2
 * Copyright (c) 2000, 2014, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
47374
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    28
import java.security.AccessController;
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    29
import java.security.PrivilegedAction;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.LinkedList;
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    31
import sun.awt.AWTAccessor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.awt.AppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.awt.SunToolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * A mechanism for ensuring that a series of AWTEvents are executed in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * precise order, even across multiple AppContexts. The nested events will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * dispatched in the order in which their wrapping SequencedEvents were
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * constructed. The only exception to this rule is if the peer of the target of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * the nested event was destroyed (with a call to Component.removeNotify)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * before the wrapping SequencedEvent was able to be dispatched. In this case,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * the nested event is never dispatched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @author David Mendenhall
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
class SequencedEvent extends AWTEvent implements ActiveEvent {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     * serialVersionUID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static final long serialVersionUID = 547742659238625067L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private static final int ID =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        java.awt.event.FocusEvent.FOCUS_LAST + 1;
20107
18e644411f0b 8022184: Fix static , Raw warnings in classes belonging to java.awt
art
parents: 13652
diff changeset
    54
    private static final LinkedList<SequencedEvent> list = new LinkedList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private final AWTEvent nested;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private AppContext appContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private boolean disposed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
47374
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    60
    private static boolean fxAppThreadIsDispatchThread;
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    61
    private Thread fxCheckSequenceThread;
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    62
    static {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    63
        AWTAccessor.setSequencedEventAccessor(new AWTAccessor.SequencedEventAccessor() {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    64
            public AWTEvent getNested(AWTEvent sequencedEvent) {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    65
                return ((SequencedEvent)sequencedEvent).nested;
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    66
            }
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    67
            public boolean isSequencedEvent(AWTEvent event) {
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    68
                return event instanceof SequencedEvent;
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    69
            }
40719
4ae72a69bd3b 8129854: Remove reflection from AWT/Swing classes
alexsch
parents: 32865
diff changeset
    70
4ae72a69bd3b 8129854: Remove reflection from AWT/Swing classes
alexsch
parents: 32865
diff changeset
    71
            public AWTEvent create(AWTEvent event) {
4ae72a69bd3b 8129854: Remove reflection from AWT/Swing classes
alexsch
parents: 32865
diff changeset
    72
                return new SequencedEvent(event);
4ae72a69bd3b 8129854: Remove reflection from AWT/Swing classes
alexsch
parents: 32865
diff changeset
    73
            }
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    74
        });
47374
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    75
        AccessController.doPrivileged(new PrivilegedAction<Object>() {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    76
            public Object run() {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    77
                fxAppThreadIsDispatchThread =
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    78
                        "true".equals(System.getProperty("javafx.embed.singleThread"));
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    79
                return null;
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    80
            }
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    81
        });
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    82
    }
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 7668
diff changeset
    83
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Constructs a new SequencedEvent which will dispatch the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * nested event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @param nested the AWTEvent which this SequencedEvent's dispatch()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *        method will dispatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    public SequencedEvent(AWTEvent nested) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        super(nested.getSource(), ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        this.nested = nested;
6826
1fc6a05552f2 6991992: Need to forward-port AWT's part of the fix for 6691674
dcherepanov
parents: 5506
diff changeset
    94
        // All AWTEvents that are wrapped in SequencedEvents are (at
1fc6a05552f2 6991992: Need to forward-port AWT's part of the fix for 6691674
dcherepanov
parents: 5506
diff changeset
    95
        // least currently) implicitly generated by the system
1fc6a05552f2 6991992: Need to forward-port AWT's part of the fix for 6691674
dcherepanov
parents: 5506
diff changeset
    96
        SunToolkit.setSystemGenerated(nested);
47374
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    97
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    98
        if (fxAppThreadIsDispatchThread) {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
    99
            fxCheckSequenceThread = new Thread() {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   100
                @Override
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   101
                public void run() {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   102
                    while(!isFirstOrDisposed()) {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   103
                        try {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   104
                            Thread.sleep(100);
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   105
                        } catch (InterruptedException e) {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   106
                            break;
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   107
                        }
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   108
                    }
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   109
                }
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   110
            };
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   111
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            list.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Dispatches the nested event after all previous nested events have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * dispatched or disposed. If this method is invoked before all previous nested events
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * have been dispatched, then this method blocks until such a point is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * While waiting disposes nested events to disposed AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * NOTE: Locking protocol.  Since dispose() can get EventQueue lock,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * dispatch() shall never call dispose() while holding the lock on the list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * as EventQueue lock is held during dispatching.  The locks should be acquired
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * in the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    public final void dispatch() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            appContext = AppContext.getAppContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            if (getFirst() != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                if (EventQueue.isDispatchThread()) {
47374
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   135
                    if (Thread.currentThread() instanceof EventDispatchThread) {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   136
                        EventDispatchThread edt = (EventDispatchThread)
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   137
                                Thread.currentThread();
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   138
                        edt.pumpEvents(SentEvent.ID, new Conditional() {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   139
                            public boolean evaluate() {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   140
                                return !SequencedEvent.this.isFirstOrDisposed();
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   141
                            }
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   142
                        });
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   143
                    } else {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   144
                        if (fxAppThreadIsDispatchThread) {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   145
                            fxCheckSequenceThread.start();
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   146
                            try {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   147
                                // check if event is dispatched or disposed
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   148
                                // but since this user app thread is same as
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   149
                                // dispatch thread in fx when run with
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   150
                                // javafx.embed.singleThread=true
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   151
                                // we do not wait infinitely to avoid deadlock
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   152
                                // as dispatch will ultimately be done by this thread
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   153
                                fxCheckSequenceThread.join(500);
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   154
                            } catch (InterruptedException e) {
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   155
                            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                        }
47374
bf712ea57bb0 8088132: [Swing, singleThread] ClassCastException in nested event loop when showing multiple message dialogs in SwingNode
psadhukhan
parents: 47216
diff changeset
   157
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                    while(!isFirstOrDisposed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                        synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                                SequencedEvent.class.wait(1000);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                            } catch (InterruptedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            if (!disposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                KeyboardFocusManager.getCurrentKeyboardFocusManager().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                    setCurrentSequencedEvent(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                Toolkit.getEventQueue().dispatchEvent(nested);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * true only if event exists and nested source appContext is disposed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     */
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 25859
diff changeset
   184
    private static final boolean isOwnerAppContextDisposed(SequencedEvent se) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        if (se != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            Object target = se.nested.getSource();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            if (target instanceof Component) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                return ((Component)target).appContext.isDisposed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * Sequenced events are dispatched in order, so we cannot dispatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * until we are the first sequenced event in the queue (i.e. it's our
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * turn).  But while we wait for our turn to dispatch, the event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * could have been disposed for a number of reasons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    public final boolean isFirstOrDisposed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (disposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        // getFirstWithContext can dispose this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        return this == getFirstWithContext() || disposed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 25859
diff changeset
   208
    private static final synchronized SequencedEvent getFirst() {
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 20107
diff changeset
   209
        return list.getFirst();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    /* Disposes all events from disposed AppContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * return first valid event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 25859
diff changeset
   215
    private static final SequencedEvent getFirstWithContext() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        SequencedEvent first = getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        while(isOwnerAppContextDisposed(first)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            first.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            first = getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        return first;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * Disposes of this instance. This method is invoked once the nested event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * has been dispatched and handled, or when the peer of the target of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * nested event has been disposed with a call to Component.removeNotify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * NOTE: Locking protocol.  Since SunToolkit.postEvent can get EventQueue lock,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * it shall never be called while holding the lock on the list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * as EventQueue lock is held during dispatching and dispatch() will get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * lock on the list. The locks should be acquired in the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    final void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
      synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            if (disposed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            if (KeyboardFocusManager.getCurrentKeyboardFocusManager().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                    getCurrentSequencedEvent() == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                KeyboardFocusManager.getCurrentKeyboardFocusManager().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                    setCurrentSequencedEvent(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            disposed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        // Wake myself up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        if (appContext != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            SunToolkit.postEvent(appContext, new SentEvent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        SequencedEvent next = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        synchronized (SequencedEvent.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
          SequencedEvent.class.notifyAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
          if (list.getFirst() == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
              list.removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
              if (!list.isEmpty()) {
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 20107
diff changeset
   260
                    next = list.getFirst();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
          } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
              list.remove(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        // Wake up waiting threads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        if (next != null && next.appContext != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            SunToolkit.postEvent(next.appContext, new SentEvent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
}