Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / bindings / java / jmsg_synchro.cpp
1 /* Functions exporting the simgrid synchronization mechanisms to the Java world */
2
3 /* Copyright (c) 2012-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "jmsg.h"
10 #include "xbt/synchro_core.h"
11 #include "jmsg_synchro.h"
12 #include "jxbt_utilities.h"
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg);
15
16 static jfieldID jsyncro_field_Mutex_bind;
17
18 JNIEXPORT void JNICALL Java_org_simgrid_msg_Mutex_nativeInit(JNIEnv *env, jclass cls) {
19   jsyncro_field_Mutex_bind = jxbt_get_sfield(env, "org/simgrid/msg/Mutex", "bind", "J");
20   if (!jsyncro_field_Mutex_bind) {
21     jxbt_throw_native(env,bprintf("Can't find some fields in Java class. You should report this bug."));
22   }
23 }
24
25 JNIEXPORT void JNICALL Java_org_simgrid_msg_Mutex_init(JNIEnv * env, jobject obj) {
26   xbt_mutex_t mutex = xbt_mutex_init();
27
28   env->SetLongField(obj, jsyncro_field_Mutex_bind, (jlong) (uintptr_t) (mutex));
29 }
30
31 JNIEXPORT void JNICALL Java_org_simgrid_msg_Mutex_acquire(JNIEnv * env, jobject obj) {
32   xbt_mutex_t mutex = (xbt_mutex_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Mutex_bind);
33   try {
34     xbt_mutex_acquire(mutex);
35   }
36   catch(xbt_ex& e) {
37     // Nothing to do
38   }
39 }
40
41 JNIEXPORT void JNICALL Java_org_simgrid_msg_Mutex_release(JNIEnv * env, jobject obj) {
42   xbt_mutex_t mutex;
43
44   mutex = (xbt_mutex_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Mutex_bind);
45   xbt_mutex_release(mutex);
46 }
47
48 JNIEXPORT void JNICALL Java_org_simgrid_msg_Mutex_nativeFinalize(JNIEnv * env, jobject obj) {
49   xbt_mutex_t mutex;
50
51   mutex = (xbt_mutex_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Mutex_bind);
52   xbt_mutex_destroy(mutex);
53 }
54
55 static jfieldID jsyncro_field_Semaphore_bind;
56
57 JNIEXPORT void JNICALL Java_org_simgrid_msg_Semaphore_nativeInit(JNIEnv *env, jclass cls) {
58   jsyncro_field_Semaphore_bind = jxbt_get_sfield(env, "org/simgrid/msg/Semaphore", "bind", "J");
59   if (!jsyncro_field_Semaphore_bind) {
60     jxbt_throw_native(env,bprintf("Can't find some fields in Semaphore Java class. You should report this bug."));
61   }
62 }
63
64 JNIEXPORT void JNICALL Java_org_simgrid_msg_Semaphore_init(JNIEnv * env, jobject obj, jint capacity) {
65   msg_sem_t sem = MSG_sem_init((int) capacity);
66
67   env->SetLongField(obj, jsyncro_field_Semaphore_bind, (jlong) (uintptr_t) (sem));
68 }
69
70 JNIEXPORT void JNICALL Java_org_simgrid_msg_Semaphore_acquire(JNIEnv * env, jobject obj, jdouble timeout) {
71   msg_sem_t sem;
72
73   sem = (msg_sem_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Semaphore_bind);
74   msg_error_t res = MSG_sem_acquire_timeout(sem, (double) timeout);
75   if (res != MSG_OK) {
76     jmsg_throw_status(env, res);
77   }
78 }
79
80 JNIEXPORT void JNICALL Java_org_simgrid_msg_Semaphore_release(JNIEnv * env, jobject obj) {
81   msg_sem_t sem;
82
83   sem = (msg_sem_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Semaphore_bind);
84   MSG_sem_release(sem);
85 }
86
87 JNIEXPORT jboolean JNICALL Java_org_simgrid_msg_Semaphore_wouldBlock(JNIEnv * env, jobject obj) {
88   msg_sem_t sem;
89
90   sem = (msg_sem_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Semaphore_bind);
91   int res = MSG_sem_would_block(sem);
92   return (jboolean) res;
93 }
94
95 JNIEXPORT void JNICALL Java_org_simgrid_msg_Semaphore_nativeFinalize(JNIEnv * env, jobject obj) {
96   msg_sem_t sem;
97
98   sem = (msg_sem_t) (uintptr_t) env->GetLongField(obj, jsyncro_field_Semaphore_bind);
99   MSG_sem_destroy(sem);
100 }