-
Notifications
You must be signed in to change notification settings - Fork 63
/
mac_javabridge_utils.c
408 lines (370 loc) · 12.2 KB
/
mac_javabridge_utils.c
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
/* mac_javabridge_utils.c - Utilities for managing the Java Bridge on OS/X
*
* CellProfiler is distributed under the GNU General Public License,
* but this file is licensed under the more permissive BSD license.
* See the accompanying file LICENSE for details.
*
* Copyright (c) 2003-2009 Massachusetts Institute of Technology
* Copyright (c) 2009-2014 Broad Institute
* All rights reserved.
*
* Please see the AUTHORS file for credits.
*
* Website: http://www.cellprofiler.org
*
* The launching strategy and some of the code are liberally borrowed from
* the Fiji launcher (ij-launcher/ImageJ.c) (Thanks to Dscho)
*
* Copyright 2007-2011 Johannes Schindelin, Mark Longair, Albert Cardona
* Benjamin Schmid, Erwin Frise and Gregory Jefferis
*
* The source is distributed under the BSD license.
*/
#include <dlfcn.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "jni.h"
#include <pthread.h>
#include <CoreFoundation/CoreFoundation.h>
JNIEnv *pEnv;
static void *thread_function(void *);
typedef struct {
JavaVM **pvm;
const char *path_to_libjvm;
const char *path_to_libjli;
const char *class_name;
JavaVMInitArgs *pVMArgs;
int result;
char message[256];
} ThreadFunctionArgs;
/**********************************************************
*
* The JVM thread
*
**********************************************************/
static pthread_t thread;
/**********************************************************
*
* JVM start communication
*
***********************************************************/
static pthread_mutex_t start_mutex;
static pthread_cond_t start_cv;
static int started = 0;
/**********************************************************
*
* JVM stop communication
*
**********************************************************/
static pthread_mutex_t stop_mutex;
static pthread_cond_t stop_cv;
static int stopped = 0;
/**********************************************************
*
* Run loop synchronization
*
**********************************************************/
#define RLS_BEFORE_START 1
#define RLS_STARTED 2
#define RLS_TERMINATING 3
#define RLS_TERMINATED 4
static pthread_mutex_t run_loop_mutex;
static pthread_cond_t run_loop_cv;
static int run_loop_state = RLS_BEFORE_START;
/**********************************************************
*
* MacStartVM
*
* Start the VM on its own thread, instantiate the thread's runnable
* and run it until exit.
*
* vm_args - a pointer to a JavaVMInitArgs structure
* as documented for JNI_CreateJavaVM
*
* class_name - instantiate this class in the startup thread
*
* path_to_libjvm - path to libjvm.dylib to be dlopened.
*
* path_to_libjli - path to libjli to be opened.
*
* Returns only after the thread terminates. Exit code other
* than zero indicates failure.
**********************************************************/
int MacStartVM(JavaVM **pVM, JavaVMInitArgs *pVMArgs,
const char *class_name, const char *path_to_libjvm,
const char *path_to_libjli)
{
ThreadFunctionArgs threadArgs;
pthread_attr_t attr;
void *retval;
int result;
threadArgs.pvm = pVM;
pthread_mutex_init(&start_mutex, NULL);
pthread_cond_init(&start_cv, NULL);
pthread_mutex_init(&stop_mutex, NULL);
pthread_cond_init(&stop_cv, NULL);
pthread_attr_init(&attr);
pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
threadArgs.pVMArgs = pVMArgs;
threadArgs.class_name = class_name;
threadArgs.path_to_libjvm = path_to_libjvm;
threadArgs.path_to_libjli = path_to_libjli;
threadArgs.result = -1;
/* Start the thread that we will start the JVM on. */
result = pthread_create(&thread, &attr, thread_function, &threadArgs);
if (result)
return result;
pthread_attr_destroy(&attr);
pthread_mutex_lock(&start_mutex);
while (started == 0) {
pthread_cond_wait(&start_cv, &start_mutex);
}
pthread_mutex_unlock(&start_mutex);
if (threadArgs.result) {
printf("%s\n", threadArgs.message);
}
return threadArgs.result;
}
/************************************************************
*
* Stop the JVM
*
************************************************************/
void MacStopVM()
{
pthread_mutex_lock(&stop_mutex);
stopped = 1;
pthread_cond_signal(&stop_cv);
pthread_mutex_unlock(&stop_mutex);
pthread_join(thread, NULL);
}
static void signal_start()
{
pthread_mutex_lock(&start_mutex);
started = 1;
pthread_cond_signal(&start_cv);
pthread_mutex_unlock(&start_mutex);
}
static void *thread_function(void *arg)
{
JNIEnv *env;
jclass klass;
jmethodID method;
jobject instance;
jthrowable exception;
JavaVM *vm;
void *handleToJVM;
void *handleToJLI;
static jint (* JNI_CreateJavaVM)(JavaVM **pvm, void **penv, void *args);
ThreadFunctionArgs *pThreadArgs = (ThreadFunctionArgs *)arg;
/*
* dlopen libjli.dylib
*/
handleToJLI = dlopen(pThreadArgs->path_to_libjli, RTLD_LAZY);
if (dlerror()) {
strcpy(pThreadArgs->message, "Failed to open libjli.dylib.\n");
signal_start();
return NULL;
}
/*
* Get the pointer to JNI_CreateJavaVM via dlopen and dlsym
*/
handleToJVM = dlopen(pThreadArgs->path_to_libjvm, RTLD_LAZY);
if (dlerror()) {
strcpy(pThreadArgs->message, "Failed to open libjvm.dylib.\n");
signal_start();
dlclose(handleToJLI);
return NULL;
}
JNI_CreateJavaVM = dlsym(handleToJVM, "JNI_CreateJavaVM");
if (dlerror()) {
JNI_CreateJavaVM = dlsym(handleToJVM, "JNI_CreateJavaVM_Impl");
if (dlerror()) {
strcpy(pThreadArgs->message, "Could not find JNI_CreateJavaVM in libjvm.dylib\n");
signal_start();
return NULL;
}
}
pThreadArgs->result = JNI_CreateJavaVM(&vm, (void **)&env,
pThreadArgs->pVMArgs);
*pThreadArgs->pvm = vm;
if (pThreadArgs->result) {
strcpy(pThreadArgs->message, "Failed to create Java virtual machine.\n");
signal_start();
return NULL;
}
klass = (*env)->FindClass(env, pThreadArgs->class_name);
if ((*env)->ExceptionOccurred(env)) {
snprintf(pThreadArgs->message, 256, "Failed to find class %s\n",
pThreadArgs->class_name);
pThreadArgs->result = -1;
signal_start();
goto STOP_VM;
}
method = (*env)->GetMethodID(env, klass, "<init>", "()V");
if ((*env)->ExceptionOccurred(env)) {
(*env)->ExceptionDescribe(env);
snprintf(pThreadArgs->message, 256, "%s has no default constructor\n",
pThreadArgs->class_name);
pThreadArgs->result = -2;
signal_start();
goto STOP_VM;
}
instance = (*env)->NewObjectA(env, klass, method, NULL);
if ((*env)->ExceptionOccurred(env)) {
(*env)->ExceptionDescribe(env);
snprintf(pThreadArgs->message, 256, "Failed to construct %s\n",
pThreadArgs->class_name);
pThreadArgs->result = -3;
signal_start();
goto STOP_VM;
}
signal_start();
method = (*env)->GetMethodID(env, klass, "run", "()V");
if ((*env)->ExceptionOccurred(env)) {
(*env)->ExceptionDescribe(env);
snprintf(pThreadArgs->message, 256, "%s has no run method\n",
pThreadArgs->class_name);
pThreadArgs->result = -4;
goto STOP_VM;
}
(*env)->CallVoidMethodA(env, instance, method, NULL);
if ((*env)->ExceptionOccurred(env)) {
(*env)->ExceptionDescribe(env);
snprintf(pThreadArgs->message, 256, "Failed to execute run method for %s\n",
pThreadArgs->class_name);
pThreadArgs->result = -5;
goto STOP_VM;
}
STOP_VM:
pthread_mutex_lock(&stop_mutex);
while (stopped == 0) {
pthread_cond_wait(&stop_cv, &stop_mutex);
}
started = 0;
pthread_mutex_unlock(&stop_mutex);
(*vm)->DestroyJavaVM(vm);
dlclose(handleToJVM);
dlclose(handleToJLI);
return NULL;
}
/**************************************************************************
*
* CBPerform - a dummy run loop source context perform callback
*
**************************************************************************/
static void CBPerform(void *info)
{
}
/*************************************************************************
*
* CBObserve - a CFRunLoopObserver callback which is called when the
* run loop's state changes
*
*************************************************************************/
static void CBObserve(CFRunLoopObserverRef observer,
CFRunLoopActivity activity,
void *info)
{
if (activity == kCFRunLoopEntry) {
pthread_mutex_lock(&run_loop_mutex);
if (run_loop_state == RLS_BEFORE_START) {
run_loop_state = RLS_STARTED;
pthread_cond_signal(&run_loop_cv);
}
pthread_mutex_unlock(&run_loop_mutex);
}
if (run_loop_state == RLS_TERMINATING) {
/* Kill, Kill, Kill */
CFRunLoopStop(CFRunLoopGetCurrent());
}
}
/*************************************************************************
*
* MacRunLoopInit - Configure the main event loop with an observer and source
*
*************************************************************************/
void MacRunLoopInit()
{
CFRunLoopObserverContext observerContext;
CFRunLoopObserverRef observerRef;
CFRunLoopSourceContext sourceContext;
CFRunLoopSourceRef sourceRef;
pthread_mutex_init(&run_loop_mutex, NULL);
pthread_cond_init(&run_loop_cv, NULL);
memset(&sourceContext, 0, sizeof(sourceContext));
sourceContext.perform = CBPerform;
sourceRef = CFRunLoopSourceCreate(kCFAllocatorDefault, 0, &sourceContext);
CFRunLoopAddSource(CFRunLoopGetCurrent(), sourceRef, kCFRunLoopCommonModes);
}
/*************************************************************************
*
* MacRunLoopReset - reset the run loop state to before start
*
*************************************************************************/
void MacRunLoopReset()
{
run_loop_state = RLS_BEFORE_START;
}
/*************************************************************************
*
* MacRunLoopRun - run the event loop until stopped
*
*************************************************************************/
void MacRunLoopRun()
{
CFRunLoopRun();
pthread_mutex_lock(&run_loop_mutex);
run_loop_state = RLS_TERMINATED;
pthread_cond_signal(&run_loop_cv);
pthread_mutex_unlock(&run_loop_mutex);
}
/*************************************************************************
*
* MacRunLoopRunInMode - run the event loop until timeout or stopped
*
*************************************************************************/
void MacRunLoopRunInMode(double timeInterval)
{
CFRunLoopRunInMode(kCFRunLoopDefaultMode, timeInterval, 1);
}
/****************************************************************************
*
* MacRunLoopStop - stop the Mac run loop
*
****************************************************************************/
void MacRunLoopStop()
{
pthread_mutex_lock(&run_loop_mutex);
while(1) {
if (run_loop_state == RLS_BEFORE_START) {
pthread_cond_wait(&run_loop_cv, &run_loop_mutex);
} else if (run_loop_state == RLS_STARTED) {
run_loop_state = RLS_TERMINATING;
CFRunLoopStop(CFRunLoopGetMain());
pthread_cond_signal(&run_loop_cv);
while (run_loop_state == RLS_TERMINATING) {
pthread_cond_wait(&run_loop_cv, &run_loop_mutex);
}
break;
} else {
/*
* Assume either RLS_TERMINATING (called twice) or RLS_TERMINATED
*/
break;
}
}
pthread_mutex_unlock(&run_loop_mutex);
}
/***************************************************************
*
* MacIsMainThread - return true if the run loop of this thread
* is the main run loop
*
***************************************************************/
int MacIsMainThread()
{
return CFRunLoopGetCurrent() == CFRunLoopGetMain();
}