-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEventDispatchThread.java
More file actions
606 lines (550 loc) · 17.3 KB
/
Copy pathEventDispatchThread.java
File metadata and controls
606 lines (550 loc) · 17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
/*
* Some portions of this file have been modified by Robert Hanson hansonr.at.stolaf.edu 2012-2017
* for use in SwingJS via transpilation into JavaScript using Java2Script.
*
* Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package jsjava.awt;
//import jsjava.awt.event.InputEvent;
import jsjava.awt.event.MouseEvent;
import jsjava.awt.event.ActionEvent;
import jsjava.awt.event.WindowEvent;
//import java.lang.reflect.Method;
//import jsjava.security.AccessController;
//import jssun.security.action.GetPropertyAction;
import jssun.awt.AWTAutoShutdown;
import jssun.awt.ModalExclude;
import jssun.awt.SunToolkit;
import java.util.Vector;
import javajs.api.JSFunction;
import javajs.util.JSThread;
import javajs.util.Lst;
//import java.util.logging.*;
import swingjs.JSToolkit;
//import sun.awt.dnd.SunDragSourceContextPeer;
/**
* EventDispatchThread is a package-private AWT class which takes events off the
* EventQueue and dispatches them to the appropriate AWT components.
*
* The Thread starts a "permanent" event pump with a call to
* pumpEvents(Conditional) in its run() method. Event handlers can choose to
* block this event pump at any time, but should start a new pump (<b>not</b> a
* new EventDispatchThread) by again calling pumpEvents(Conditional). This
* secondary event pump will exit automatically as soon as the Condtional
* evaluate()s to false and an additional Event is pumped and dispatched.
*
* @author Tom Ball
* @author Amy Fowler
* @author Fred Ecks
* @author David Mendenhall
*
* @since 1.1
*/
class EventDispatchThread extends JSThread {
/**
* SwingJS: In JavaScript we have just one thread. So what we do is to
* (a) initialize the thread; (b) run the thread via a setTimeout that
* has a function callback to restart this method at the "LOOP" mode.
*
*/
@Override
protected boolean myInit() {
addEventFilter(filter);
return true;
}
@Override
protected boolean isLooping() {
return (doDispatch && (cond == null || cond.evaluate()) && !isInterrupted() || (doDispatch = false));
}
@SuppressWarnings("unused")
@Override
protected boolean myLoop() {
final int myid = id;
Runnable r = new Runnable() {
@Override
public void run() {
pumpOneEventForFilters(myid);
}
};
JSFunction f = null;
JSThread me = this;
int mode = LOOP;
/**
* @j2sNative
*
* f = function() {r.run();me.run1(mode)};
*
*/
{
}
JSToolkit.dispatch(f, 0, 0);
// handling sleepAndReturn myself
// and once through only
return (doDispatch = false);
}
@Override
protected int getDelayMillis() {
return 0;
}
@Override
protected void whenDone() {
}
@Override
protected void doFinally() {
if (!doDispatch)
finish();
}
@Override
protected void onException(Exception e) {
// JSToolkit.dispatch() will handle this
}
// private static final Logger eventLog =
// Logger.getLogger("jsjava.awt.event.EventDispatchThread");
private EventQueue theQueue;
static final int ANY_EVENT = -1;
private Lst<EventFilter> eventFilters = new Lst<EventFilter>();
// used in handleException
private int modalFiltersCount = 0;
private EventFilter filter;
private Conditional cond;
private int id;
protected boolean doDispatch = true;
EventDispatchThread(ThreadGroup group, String name, EventQueue queue) {
super(group, name);
theQueue = queue;
}
void stopDispatchingImpl(boolean wait) {
// Note: We stop dispatching via a flag rather than using
// Thread.interrupt() because we can't guarantee that the wait()
// we interrupt will be EventQueue.getNextEvent()'s. -fredx 8-11-98
StopDispatchEvent stopEvent = new StopDispatchEvent();
// wait for the dispatcher to complete
if (Thread.currentThread() != this) {
// fix 4122683, 4128923
// Post an empty event to ensure getNextEvent is unblocked
//
// We have to use postEventPrivate instead of postEvent because
// EventQueue.pop calls EventDispatchThread.stopDispatching.
// Calling SunToolkit.flushPendingEvents in this case could
// lead to deadlock.
theQueue.postEventPrivate(stopEvent);
if (wait) {
try {
join();
} catch (InterruptedException e) {
}
}
} else {
stopEvent.dispatch();
}
synchronized (theQueue) {
if (theQueue.getDispatchThread() == this) {
theQueue.detachDispatchThread();
}
}
}
public void stopDispatching() {
stopDispatchingImpl(true);
}
public void stopDispatchingLater() {
stopDispatchingImpl(false);
}
class StopDispatchEvent extends AWTEvent implements ActiveEvent {
/*
* serialVersionUID
*/
static final long serialVersionUID = -3692158172100730735L;
public StopDispatchEvent() {
super(EventDispatchThread.this, 0);
}
@Override
public void dispatch() {
doDispatch = false;
}
}
@Override
public void start() {
super.start();
}
@Override
public void run() {
pumpEvents(ANY_EVENT, null);
}
// void pumpEventsForHierarchyAny(Conditional cond, Component modalComponent)
// {
// pumpEventsForHierarchy(ANY_EVENT, cond, modalComponent);
// }
//
void pumpEvents(int id, Conditional cond) {
//System.out.println("EventDispatch pumpEvents" + id);
pumpEventsForHierarchy(id, cond, null);
}
void pumpEventsForHierarchy(int id, Conditional cond, Component modalComponent) {
pumpEventsForFilter(id, cond, new HierarchyEventFilter(modalComponent));
}
// void pumpEventsForFilterAny(Conditional cond, EventFilter filter) {
// pumpEventsForFilter(ANY_EVENT, cond, filter);
// }
//
void pumpEventsForFilter(int id, Conditional cond, EventFilter filter) {
this.filter = filter;
this.cond = cond;
this.id = id;
run1(INIT);
}
// @Override
// protected void run1(int mode) {
// try {
// while (true)
// switch (mode) {
// case INIT:
// addEventFilter(filter);
// mode = LOOP;
// //$FALL-THROUGH$
// case LOOP:
// if (!doDispatch || cond != null && !cond.evaluate() || isInterrupted()) {
// doDispatch = false;
// return;
// }
// final int myid = id;
// Runnable r = new Runnable() {
// @Override
// public void run() {
// pumpOneEventForFilters(myid);
// }
// };
// dispatchAndReturn(r, mode);
// if (isJS)
// return;
// break;
// case DONE:
// doDispatch = false;
// return;
// }
// } finally {
// if (!doDispatch)
// finish();
// }
// }
//
/**
* override JSThread so that we do not use any queuing
*/
@SuppressWarnings("unused")
protected void dispatchAndReturn(Runnable r, int mode) {
JSFunction f = null;
JSThread me = this;
/**
* @j2sNative
*
* f = function() {r.run();me.run1(mode)
* };
*
*/
{
}
JSToolkit.dispatch(f, 0, 0);
}
private void finish() {
doDispatch = false;
/*
* This synchronized block is to secure that the event dispatch thread won't
* die in the middle of posting a new event to the associated event queue.
* It is important because we notify that the event dispatch thread is busy
* after posting a new event to its queue, so the EventQueue.dispatchThread
* reference must be valid at that point.
*/
removeEventFilter(filter);
synchronized (theQueue) {
if (theQueue.getDispatchThread() == this) {
theQueue.detachDispatchThread();
}
/*
* Event dispatch thread dies in case of an uncaught exception. A new
* event dispatch thread for this queue will be started only if a new
* event is posted to it. In case if no more events are posted after this
* thread died all events that currently are in the queue will never be
* dispatched.
*/
/*
* Fix for 4648733. Check both the associated java event queue and the
* PostEventQueue.
*/
if (theQueue.peekEventSAEM() != null || !SunToolkit.isPostEventQueueEmpty()) {
theQueue.initDispatchThread();
}
AWTAutoShutdown.getInstance().notifyThreadFree(this);
}
}
void addEventFilter(EventFilter filter) {
synchronized (eventFilters) {
if (!eventFilters.contains(filter)) {
if (filter instanceof ModalEventFilter) {
ModalEventFilter newFilter = (ModalEventFilter) filter;
int k = 0;
for (k = 0; k < eventFilters.size(); k++) {
EventFilter f = eventFilters.get(k);
if (f instanceof ModalEventFilter) {
ModalEventFilter cf = (ModalEventFilter) f;
if (cf.compareTo(newFilter) > 0) {
break;
}
}
}
eventFilters.add(k, filter);
modalFiltersCount++;
} else {
eventFilters.addLast(filter);
}
}
}
}
void removeEventFilter(EventFilter filter) {
synchronized (eventFilters) {
if (eventFilters.contains(filter)) {
if (filter instanceof ModalEventFilter) {
modalFiltersCount--;
}
eventFilters.removeObj(filter);
}
}
}
boolean pumpOneEventForFilters(int id) {
try {
AWTEvent event;
boolean eventOK;
do {
event = (id == ANY_EVENT) ? theQueue.getNextEvent() : theQueue
.getNextEventForID(id);
//SwingJS -- cannot wait for a valid event
if (event == null)
return (doDispatch = false);
eventOK = true;
synchronized (eventFilters) {
for (int i = eventFilters.size() - 1; i >= 0; i--) {
EventFilter f = eventFilters.get(i);
EventFilter.FilterAction accept = f.acceptEvent(event);
if (accept == EventFilter.FilterAction.REJECT) {
eventOK = false;
break;
} else if (accept == EventFilter.FilterAction.ACCEPT_IMMEDIATELY) {
break;
}
}
}
// SwingJS TODO eventOK = eventOK &&
// SunDragSourceContextPeer.checkEvent(event);
if (!eventOK) {
event.consume();
}
} while (eventOK == false);
// if (eventLog.isLoggable(Level.FINEST)) {
// eventLog.log(Level.FINEST, "Dispatching: " + event);
// }
//
theQueue.dispatchEvent(event);
return doDispatch = true;
} catch (ThreadDeath death) {
return doDispatch = false;
} catch (InterruptedException interruptedException) {
return doDispatch = false; // AppContext.dispose() interrupts all
// Threads in the AppContext
} catch (Throwable e) {
processException(e, modalFiltersCount > 0);
}
return doDispatch = true;
}
private void processException(Throwable e, boolean isModal) {
// if (eventLog.isLoggable(Level.FINE)) {
// eventLog.log(Level.FINE, "Processing exception: " + e +
// ", isModal = " + isModal);
// }
if (!handleException(e)) {
// See bug ID 4499199.
// If we are in a modal dialog, we cannot throw
// an exception for the ThreadGroup to handle (as added
// in RFE 4063022). If we did, the message pump of
// the modal dialog would be interrupted.
// We instead choose to handle the exception ourselves.
// It may be useful to add either a runtime flag or API
// later if someone would like to instead dispose the
// dialog and allow the thread group to handle it.
if (isModal) {
System.err.println("Exception occurred during event dispatching:");
e.printStackTrace();
} else if (e instanceof RuntimeException) {
throw (RuntimeException) e;
} else if (e instanceof Error) {
throw (Error) e;
}
}
}
// private static final String handlerPropName = "sun.awt.exception.handler";
// private static String handlerClassName = null;
// private static String NO_HANDLER = new String();
/**
* Handles an exception thrown in the event-dispatch thread.
*
* <p>
* If the system property "sun.awt.exception.handler" is defined, then when
* this method is invoked it will attempt to do the following:
*
* <ol>
* <li>Load the class named by the value of that property, using the current
* thread's context class loader,
* <li>Instantiate that class using its zero-argument constructor,
* <li>Find the resulting handler object's <tt>public void handle</tt> method,
* which should take a single argument of type <tt>Throwable</tt>, and
* <li>Invoke the handler's <tt>handle</tt> method, passing it the
* <tt>thrown</tt> argument that was passed to this method.
* </ol>
*
* If any of the first three steps fail then this method will return
* <tt>false</tt> and all following invocations of this method will return
* <tt>false</tt> immediately. An exception thrown by the handler object's
* <tt>handle</tt> will be caught, and will cause this method to return
* <tt>false</tt>. If the handler's <tt>handle</tt> method is successfully
* invoked, then this method will return <tt>true</tt>. This method will never
* throw any sort of exception.
*
* <p>
* <i>Note:</i> This method is a temporary hack to work around the absence of
* a real API that provides the ability to replace the event-dispatch thread.
* The magic "sun.awt.exception.handler" property <i>will be removed</i> in a
* future release.
*
* @param thrown
* The Throwable that was thrown in the event-dispatch thread
*
* @return <tt>false</tt> if any of the above steps failed, otherwise
* <tt>true</tt>
*/
private boolean handleException(Throwable thrown) {
// SwingJS not implementing "handle" method
return false;
// try {
//
// if (handlerClassName == NO_HANDLER) {
// return false; /* Already tried, and failed */
// }
//
// /* Look up the class name */
// if (handlerClassName == null) {
// handlerClassName = ((String) AccessController.doPrivileged(
// new GetPropertyAction(handlerPropName)));
// if (handlerClassName == null) {
// handlerClassName = NO_HANDLER; /* Do not try this again */
// return false;
// }
// }
//
// /* Load the class, instantiate it, and find its handle method */
// Method m;
// Object h;
// try {
// ClassLoader cl = Thread.currentThread().getContextClassLoader();
// Class c = Class.forName(handlerClassName, true, cl);
// m = c.getMethod("handle", new Class[] { Throwable.class });
// h = c.newInstance();
// } catch (Throwable x) {
// handlerClassName = NO_HANDLER; /* Do not try this again */
// return false;
// }
//
// /* Finally, invoke the handler */
// m.invoke(h, new Object[] { thrown });
//
// } catch (Throwable x) {
// return false;
// }
//
// return true;
}
boolean isDispatching(EventQueue eq) {
return theQueue.equals(eq);
}
EventQueue getEventQueue() {
return theQueue;
}
private static class HierarchyEventFilter implements EventFilter {
private Component modalComponent;
public HierarchyEventFilter(Component modalComponent) {
this.modalComponent = modalComponent;
}
@Override
public FilterAction acceptEvent(AWTEvent event) {
if (modalComponent != null) {
int eventID = event.getID();
boolean mouseEvent = (eventID >= MouseEvent.MOUSE_FIRST)
&& (eventID <= MouseEvent.MOUSE_LAST);
boolean actionEvent = (eventID >= ActionEvent.ACTION_FIRST)
&& (eventID <= ActionEvent.ACTION_LAST);
boolean windowClosingEvent = (eventID == WindowEvent.WINDOW_CLOSING);
/*
* filter out MouseEvent and ActionEvent that's outside the
* modalComponent hierarchy. KeyEvent is handled by using
* enqueueKeyEvent in Dialog.show
*/
if (Component
.isInstanceOf(modalComponent, "javax.swing.JInternalFrame")) {
/*
* Modal internal frames are handled separately. If event is for some
* component from another heavyweight than modalComp, it is accepted.
* If heavyweight is the same - we still accept event and perform
* further filtering in LightweightDispatcher
*/
return windowClosingEvent ? FilterAction.REJECT : FilterAction.ACCEPT;
}
if (mouseEvent || actionEvent || windowClosingEvent) {
Object o = event.getSource();
if (o instanceof ModalExclude) {
// Exclude this object from modality and
// continue to pump it's events.
return FilterAction.ACCEPT;
} else if (o instanceof Component) {
Component c = (Component) o;
// 5.0u3 modal exclusion
boolean modalExcluded = false;
if (modalComponent instanceof Container) {
while (c != modalComponent && c != null) {
if ((c instanceof Window)
&& (SunToolkit.isModalExcluded((Window) c))) {
// Exclude this window and all its children from
// modality and continue to pump it's events.
modalExcluded = true;
break;
}
c = c.getParent();
}
}
if (!modalExcluded && (c != modalComponent)) {
return FilterAction.REJECT;
}
}
}
}
return FilterAction.ACCEPT;
}
}
}