1
1
/*
2
- * Copyright (c) 2016, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2016, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
* questions.
24
24
*/
25
25
26
-
27
26
#import " jni_util.h"
28
27
29
28
#import < JavaNativeFoundation/JavaNativeFoundation.h>
35
34
#import " java_awt_event_InputEvent.h"
36
35
#import " java_awt_event_KeyEvent.h"
37
36
#import " sizecalc.h"
37
+ #import " ThreadUtilities.h"
38
38
39
39
// Starting number for event numbers generated by Robot.
40
40
// Apple docs don't mention at all what are the requirements
@@ -97,38 +97,40 @@ static void PostMouseEvent(const CGPoint point, CGMouseButton button,
97
97
// Always set all states, in case Apple ever changes default behaviors.
98
98
static int setupDone = 0 ;
99
99
if (!setupDone) {
100
- int i;
101
- jint* tmp;
102
- jboolean copy = JNI_FALSE;
103
-
104
- setupDone = 1 ;
105
- // Don't block local events after posting ours
106
- CGSetLocalEventsSuppressionInterval (0.0 );
107
-
108
- // Let our event's modifier key state blend with local hardware events
109
- CGEnableEventStateCombining (TRUE );
110
-
111
- // Don't let our events block local hardware events
112
- CGSetLocalEventsFilterDuringSupressionState (
113
- kCGEventFilterMaskPermitAllEvents ,
114
- kCGEventSupressionStateSupressionInterval );
115
- CGSetLocalEventsFilterDuringSupressionState (
116
- kCGEventFilterMaskPermitAllEvents ,
117
- kCGEventSupressionStateRemoteMouseDrag );
118
-
119
- gsClickCount = 0 ;
120
- gsLastClickTime = 0 ;
121
- gsEventNumber = ROBOT_EVENT_NUMBER_START;
100
+ [ThreadUtilities performOnMainThreadWaiting: NO block: ^(){
101
+ int i;
102
+ jint* tmp;
103
+ jboolean copy = JNI_FALSE;
104
+
105
+ setupDone = 1 ;
106
+ // Don't block local events after posting ours
107
+ CGSetLocalEventsSuppressionInterval (0.0 );
108
+
109
+ // Let our event's modifier key state blend with local hardware events
110
+ CGEnableEventStateCombining (TRUE );
111
+
112
+ // Don't let our events block local hardware events
113
+ CGSetLocalEventsFilterDuringSupressionState (
114
+ kCGEventFilterMaskPermitAllEvents ,
115
+ kCGEventSupressionStateSupressionInterval );
116
+ CGSetLocalEventsFilterDuringSupressionState (
117
+ kCGEventFilterMaskPermitAllEvents ,
118
+ kCGEventSupressionStateRemoteMouseDrag );
122
119
123
- gsButtonEventNumber = (int *)SAFE_SIZE_ARRAY_ALLOC (malloc, sizeof (int ), gNumberOfButtons );
124
- if (gsButtonEventNumber == NULL ) {
125
- JNU_ThrowOutOfMemoryError (env, NULL );
126
- return ;
127
- }
120
+ gsClickCount = 0 ;
121
+ gsLastClickTime = 0 ;
122
+ gsEventNumber = ROBOT_EVENT_NUMBER_START;
128
123
129
- for (i = 0 ; i < gNumberOfButtons ; ++i) {
130
- gsButtonEventNumber[i] = ROBOT_EVENT_NUMBER_START;
131
- }
124
+ gsButtonEventNumber = (int *)SAFE_SIZE_ARRAY_ALLOC (malloc, sizeof (int ), gNumberOfButtons );
125
+ if (gsButtonEventNumber == NULL ) {
126
+ JNU_ThrowOutOfMemoryError (env, NULL );
127
+ return ;
128
+ }
129
+
130
+ for (i = 0 ; i < gNumberOfButtons ; ++i) {
131
+ gsButtonEventNumber[i] = ROBOT_EVENT_NUMBER_START;
132
+ }
133
+ }];
132
134
}
133
135
}
134
136
@@ -239,14 +241,15 @@ static void PostMouseEvent(const CGPoint point, CGMouseButton button,
239
241
Java_sun_lwawt_macosx_CRobot_mouseWheel
240
242
(JNIEnv *env, jobject peer, jint wheelAmt)
241
243
{
242
- CGEventRef event = CGEventCreateScrollWheelEvent (NULL ,
243
- kCGScrollEventUnitLine ,
244
- k_JAVA_ROBOT_WHEEL_COUNT, wheelAmt);
245
-
246
- if (event != NULL ) {
247
- CGEventPost (kCGSessionEventTap , event);
248
- CFRelease (event);
249
- }
244
+ [ThreadUtilities performOnMainThreadWaiting: YES block: ^(){
245
+ CGEventRef event = CGEventCreateScrollWheelEvent (NULL ,
246
+ kCGScrollEventUnitLine ,
247
+ k_JAVA_ROBOT_WHEEL_COUNT, wheelAmt);
248
+ if (event != NULL ) {
249
+ CGEventPost (kCGSessionEventTap , event);
250
+ CFRelease (event);
251
+ }
252
+ }];
250
253
}
251
254
252
255
/*
@@ -258,13 +261,14 @@ static void PostMouseEvent(const CGPoint point, CGMouseButton button,
258
261
Java_sun_lwawt_macosx_CRobot_keyEvent
259
262
(JNIEnv *env, jobject peer, jint javaKeyCode, jboolean keyPressed)
260
263
{
261
- CGKeyCode keyCode = GetCGKeyCode (javaKeyCode);
262
-
263
- CGEventRef event = CGEventCreateKeyboardEvent (NULL , keyCode, keyPressed);
264
- if (event != NULL ) {
265
- CGEventPost (kCGSessionEventTap , event);
266
- CFRelease (event);
267
- }
264
+ [ThreadUtilities performOnMainThreadWaiting: YES block: ^(){
265
+ CGKeyCode keyCode = GetCGKeyCode (javaKeyCode);
266
+ CGEventRef event = CGEventCreateKeyboardEvent (NULL , keyCode, keyPressed);
267
+ if (event != NULL ) {
268
+ CGEventPost (kCGSessionEventTap , event);
269
+ CFRelease (event);
270
+ }
271
+ }];
268
272
}
269
273
270
274
/*
@@ -333,13 +337,15 @@ static void PostMouseEvent(const CGPoint point, CGMouseButton button,
333
337
static void PostMouseEvent (const CGPoint point, CGMouseButton button,
334
338
CGEventType type, int clickCount, int eventNumber)
335
339
{
336
- CGEventRef mouseEvent = CGEventCreateMouseEvent (NULL , type, point, button);
337
- if (mouseEvent != NULL ) {
338
- CGEventSetIntegerValueField (mouseEvent, kCGMouseEventClickState , clickCount);
339
- CGEventSetIntegerValueField (mouseEvent, kCGMouseEventNumber , eventNumber);
340
- CGEventPost (kCGSessionEventTap , mouseEvent);
341
- CFRelease (mouseEvent);
342
- }
340
+ [ThreadUtilities performOnMainThreadWaiting: YES block: ^(){
341
+ CGEventRef mouseEvent = CGEventCreateMouseEvent (NULL , type, point, button);
342
+ if (mouseEvent != NULL ) {
343
+ CGEventSetIntegerValueField (mouseEvent, kCGMouseEventClickState , clickCount);
344
+ CGEventSetIntegerValueField (mouseEvent, kCGMouseEventNumber , eventNumber);
345
+ CGEventPost (kCGSessionEventTap , mouseEvent);
346
+ CFRelease (mouseEvent);
347
+ }
348
+ }];
343
349
}
344
350
345
351
static inline CGKeyCode GetCGKeyCode (jint javaKeyCode)
0 commit comments