Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #237 from oar-team/upstream
[simgrid.git] / src / bindings / java / jmsg_process.cpp
1 /* Functions related to the java process instances.                         */
2
3 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <xbt/ex.hpp>
9
10 #include "jmsg_process.h"
11
12 #include "JavaContext.hpp"
13 #include "jmsg.hpp"
14 #include "jmsg_host.h"
15 #include "jxbt_utilities.hpp"
16
17 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(java);
18
19 extern "C" {
20
21 jfieldID jprocess_field_Process_bind;
22 jfieldID jprocess_field_Process_host;
23 jfieldID jprocess_field_Process_killTime;
24 jfieldID jprocess_field_Process_name;
25 jfieldID jprocess_field_Process_pid;
26 jfieldID jprocess_field_Process_ppid;
27
28 jobject jprocess_from_native(msg_process_t process)
29 {
30   simgrid::kernel::context::JavaContext* context = (simgrid::kernel::context::JavaContext*) MSG_process_get_smx_ctx(process);
31   return context->jprocess;
32 }
33
34 jobject jprocess_ref(jobject jprocess, JNIEnv* env)
35 {
36   return env->NewGlobalRef(jprocess);
37 }
38
39 void jprocess_unref(jobject jprocess, JNIEnv* env)
40 {
41   env->DeleteGlobalRef(jprocess);
42 }
43
44 msg_process_t jprocess_to_native(jobject jprocess, JNIEnv* env)
45 {
46   return (msg_process_t)(intptr_t)env->GetLongField(jprocess, jprocess_field_Process_bind);
47 }
48
49 void jprocess_bind(jobject jprocess, msg_process_t process, JNIEnv * env)
50 {
51   env->SetLongField(jprocess, jprocess_field_Process_bind, (intptr_t)process);
52 }
53
54 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_nativeInit(JNIEnv *env, jclass cls) {
55   jclass jprocess_class_Process = env->FindClass("org/simgrid/msg/Process");
56   xbt_assert(jprocess_class_Process, "Native initialization of msg/Process failed. Please report that bug");
57
58   jprocess_field_Process_name = jxbt_get_jfield(env, jprocess_class_Process, "name", "Ljava/lang/String;");
59   jprocess_field_Process_bind = jxbt_get_jfield(env, jprocess_class_Process, "bind", "J");
60   jprocess_field_Process_pid = jxbt_get_jfield(env, jprocess_class_Process, "pid", "I");
61   jprocess_field_Process_ppid = jxbt_get_jfield(env, jprocess_class_Process, "ppid", "I");
62   jprocess_field_Process_host = jxbt_get_jfield(env, jprocess_class_Process, "host", "Lorg/simgrid/msg/Host;");
63   jprocess_field_Process_killTime = jxbt_get_jfield(env, jprocess_class_Process, "killTime", "D");
64   xbt_assert(jprocess_field_Process_name && jprocess_field_Process_pid && jprocess_field_Process_ppid &&
65                  jprocess_field_Process_host,
66              "Native initialization of msg/Process failed. Please report that bug");
67 }
68
69 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_create(JNIEnv* env, jobject jprocess_arg, jobject jhost)
70 {
71   /* create a global java process instance */
72   jobject jprocess = jprocess_ref(jprocess_arg, env);
73
74   /* Actually build the MSG process */
75   jstring jname         = (jstring)env->GetObjectField(jprocess, jprocess_field_Process_name);
76   const char* name      = env->GetStringUTFChars(jname, 0);
77   msg_process_t process =
78       MSG_process_create_from_stdfunc(name, [jprocess]() { simgrid::kernel::context::java_main_jprocess(jprocess); },
79                                       /*data*/ nullptr, jhost_get_native(env, jhost), /* properties*/ nullptr);
80   env->ReleaseStringUTFChars(jname, name);
81
82   /* bind the java process instance to the native process */
83   jprocess_bind(jprocess, process, env);
84
85   /* Retrieve the kill time from the process */
86   jdouble jkill = env->GetDoubleField(jprocess, jprocess_field_Process_killTime);
87   MSG_process_set_kill_time(process, (double)jkill);
88
89   /* sets the PID and the PPID of the process */
90   env->SetIntField(jprocess, jprocess_field_Process_pid,(jint) MSG_process_get_PID(process));
91   env->SetIntField(jprocess, jprocess_field_Process_ppid, (jint) MSG_process_get_PPID(process));
92 }
93
94 JNIEXPORT jint JNICALL Java_org_simgrid_msg_Process_killAll(JNIEnv * env, jclass cls, jint jresetPID)
95 {
96   return (jint) MSG_process_killall((int) jresetPID);
97 }
98
99 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_fromPID(JNIEnv * env, jclass cls, jint pid)
100 {
101   msg_process_t process = MSG_process_from_PID(pid);
102
103   if (not process) {
104     jxbt_throw_process_not_found(env, std::string("PID = ") + std::to_string(static_cast<int>(pid)));
105     return nullptr;
106   }
107
108   jobject jprocess = jprocess_from_native(process);
109
110   if (not jprocess) {
111     jxbt_throw_jni(env, "get process failed");
112     return nullptr;
113   }
114
115   return jprocess;
116 }
117
118 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getProperty(JNIEnv *env, jobject jprocess, jobject jname) {
119   msg_process_t process = jprocess_to_native(jprocess, env);
120
121   if (not process) {
122     jxbt_throw_notbound(env, "process", jprocess);
123     return nullptr;
124   }
125   const char *name = env->GetStringUTFChars((jstring)jname, 0);
126
127   const char *property = MSG_process_get_property_value(process, name);
128   if (not property)
129     return nullptr;
130
131   jobject jproperty = env->NewStringUTF(property);
132
133   env->ReleaseStringUTFChars((jstring)jname, name);
134
135   return jproperty;
136 }
137
138 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getCurrentProcess(JNIEnv * env, jclass cls)
139 {
140   jobject jprocess = jprocess_from_native(MSG_process_self());
141   if (not jprocess)
142     jxbt_throw_jni(env, xbt_strdup("SIMIX_process_get_jprocess() failed"));
143
144   return jprocess;
145 }
146
147 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_suspend(JNIEnv * env, jobject jprocess)
148 {
149   msg_process_t process = jprocess_to_native(jprocess, env);
150
151   if (not process) {
152     jxbt_throw_notbound(env, "process", jprocess);
153     return;
154   }
155
156   /* try to suspend the process */
157   msg_error_t rv = MSG_process_suspend(process);
158
159   jxbt_check_res("MSG_process_suspend()", rv, MSG_OK, "unexpected error , please report this bug");
160 }
161
162 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_resume(JNIEnv * env, jobject jprocess)
163 {
164   msg_process_t process = jprocess_to_native(jprocess, env);
165
166   if (not process) {
167     jxbt_throw_notbound(env, "process", jprocess);
168     return;
169   }
170
171   /* try to resume the process */
172   msg_error_t res = MSG_process_resume(process);
173   jxbt_check_res("MSG_process_resume()", res, MSG_OK, "unexpected error , please report this bug");
174 }
175
176 JNIEXPORT void
177 JNICALL Java_org_simgrid_msg_Process_setAutoRestart (JNIEnv *env, jobject jprocess, jboolean jauto_restart) {
178
179   msg_process_t process = jprocess_to_native(jprocess, env);
180   if (not process) {
181     jxbt_throw_notbound(env, "process", jprocess);
182     return;
183   }
184
185   MSG_process_auto_restart_set(process, (jauto_restart == JNI_TRUE));
186 }
187
188 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_restart (JNIEnv *env, jobject jprocess) {
189   msg_process_t process = jprocess_to_native(jprocess, env);
190
191   if (not process) {
192     jxbt_throw_notbound(env, "process", jprocess);
193     return;
194   }
195
196   MSG_process_restart(process);
197 }
198
199 JNIEXPORT jboolean JNICALL Java_org_simgrid_msg_Process_isSuspended(JNIEnv * env, jobject jprocess)
200 {
201   msg_process_t process = jprocess_to_native(jprocess, env);
202
203   if (not process) {
204     jxbt_throw_notbound(env, "process", jprocess);
205     return 0;
206   }
207
208   /* true is the process is suspended, false otherwise */
209   return (jboolean) MSG_process_is_suspended(process);
210 }
211
212 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_sleep(JNIEnv *env, jclass cls, jlong jmillis, jint jnanos)
213  {
214   double time =  ((double)jmillis) / 1000 + ((double)jnanos) / 1000000000;
215   msg_error_t rv;
216   rv = MSG_process_sleep(time);
217   if (rv != MSG_OK) {
218     XBT_DEBUG("Something during the MSG_process_sleep invocation was wrong, trigger a HostFailureException");
219
220     jxbt_throw_host_failure(env, "");
221   }
222 }
223
224 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_waitFor(JNIEnv * env, jobject jprocess, jdouble jseconds)
225 {
226   msg_error_t rv;
227   rv = MSG_process_sleep((double)jseconds);
228   if (env->ExceptionOccurred())
229     return;
230   if (rv != MSG_OK) {
231     XBT_DEBUG("Status NOK");
232     jmsg_throw_status(env,rv);
233   }
234 }
235
236 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_kill(JNIEnv * env, jobject jprocess)
237 {
238   /* get the native instances from the java ones */
239   msg_process_t process = jprocess_to_native(jprocess, env);
240   if (not process) {
241     jxbt_throw_notbound(env, "process", jprocess);
242     return;
243   }
244   try {
245     MSG_process_kill(process);
246   } catch (xbt_ex& ex) {
247     XBT_VERB("Process %s just committed a suicide", MSG_process_get_name(process));
248     xbt_assert(process == MSG_process_self(),
249                "Killing a process should not raise an exception if it's not a suicide. Please report that bug.");
250   }
251 }
252
253 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_migrate(JNIEnv * env, jobject jprocess, jobject jhost)
254 {
255   msg_process_t process = jprocess_to_native(jprocess, env);
256
257   if (not process) {
258     jxbt_throw_notbound(env, "process", jprocess);
259     return;
260   }
261
262   msg_host_t host = jhost_get_native(env, jhost);
263
264   if (not host) {
265     jxbt_throw_notbound(env, "host", jhost);
266     return;
267   }
268
269   /* try to change the host of the process */
270   msg_error_t rv = MSG_process_migrate(process, host);
271   if (rv != MSG_OK) {
272     jmsg_throw_status(env,rv);
273     return;
274   }
275   /* change the host java side */
276   env->SetObjectField(jprocess, jprocess_field_Process_host, jhost);
277 }
278
279 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_yield(JNIEnv* env, jclass cls)
280 {
281   MSG_process_yield();
282 }
283
284 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_setKillTime (JNIEnv *env , jobject jprocess, jdouble jkilltime) {
285   msg_process_t process = jprocess_to_native(jprocess, env);
286   MSG_process_set_kill_time(process, (double)jkilltime);
287 }
288
289 JNIEXPORT jint JNICALL Java_org_simgrid_msg_Process_getCount(JNIEnv * env, jclass cls) {
290   return (jint) MSG_process_get_number();
291 }
292 }