1 /* Functions related to the java process instances. */
3 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */
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. */
10 #include "jmsg_process.h"
13 #include "jmsg_host.h"
14 #include "jxbt_utilities.h"
15 #include "JavaContext.hpp"
17 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(java);
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;
28 jobject jprocess_from_native(msg_process_t process)
30 simgrid::kernel::context::JavaContext* context = (simgrid::kernel::context::JavaContext*) MSG_process_get_smx_ctx(process);
31 return context->jprocess;
34 jobject jprocess_ref(jobject jprocess, JNIEnv* env)
36 return env->NewGlobalRef(jprocess);
39 void jprocess_unref(jobject jprocess, JNIEnv* env)
41 env->DeleteGlobalRef(jprocess);
44 msg_process_t jprocess_to_native(jobject jprocess, JNIEnv* env)
46 return (msg_process_t)(intptr_t)env->GetLongField(jprocess, jprocess_field_Process_bind);
49 void jprocess_bind(jobject jprocess, msg_process_t process, JNIEnv * env)
51 env->SetLongField(jprocess, jprocess_field_Process_bind, (intptr_t)process);
54 jstring jprocess_get_name(jobject jprocess, JNIEnv * env)
56 jstring jname = (jstring) env->GetObjectField(jprocess, jprocess_field_Process_name);
57 return (jstring) env->NewGlobalRef(jname);
60 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_nativeInit(JNIEnv *env, jclass cls) {
61 jclass jprocess_class_Process = env->FindClass("org/simgrid/msg/Process");
62 xbt_assert(jprocess_class_Process, "Native initialization of msg/Process failed. Please report that bug");
64 jprocess_field_Process_name = jxbt_get_jfield(env, jprocess_class_Process, "name", "Ljava/lang/String;");
65 jprocess_field_Process_bind = jxbt_get_jfield(env, jprocess_class_Process, "bind", "J");
66 jprocess_field_Process_pid = jxbt_get_jfield(env, jprocess_class_Process, "pid", "I");
67 jprocess_field_Process_ppid = jxbt_get_jfield(env, jprocess_class_Process, "ppid", "I");
68 jprocess_field_Process_host = jxbt_get_jfield(env, jprocess_class_Process, "host", "Lorg/simgrid/msg/Host;");
69 jprocess_field_Process_killTime = jxbt_get_jfield(env, jprocess_class_Process, "killTime", "D");
70 xbt_assert(jprocess_field_Process_name && jprocess_field_Process_pid && jprocess_field_Process_ppid &&
71 jprocess_field_Process_host,
72 "Native initialization of msg/Process failed. Please report that bug");
75 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_create(JNIEnv * env, jobject jprocess_arg, jobject jhostname)
77 jobject jprocess; /* the global reference to the java process instance */
78 jstring jname; /* the name of the java process instance */
79 msg_host_t host; /* Where that process lives */
82 /* get the name of the java process */
83 jname = jprocess_get_name(jprocess_arg, env);
85 jxbt_throw_null(env, xbt_strdup("Process name cannot be nullptr"));
88 const char* name = env->GetStringUTFChars(jname, 0);
90 /* bind/retrieve the msg host */
91 const char* hostname = env->GetStringUTFChars((jstring)jhostname, 0);
92 host = MSG_host_by_name(hostname);
93 if (!(host)) { /* not bound */
94 jxbt_throw_host_not_found(env, hostname);
97 env->ReleaseStringUTFChars((jstring)jhostname, hostname);
99 /* create a global java process instance */
100 jprocess = jprocess_ref(jprocess_arg, env);
102 jxbt_throw_jni(env, "Can't get a global ref to the java process");
106 /* Actually build the MSG process */
107 msg_process_t process = MSG_process_create_from_stdfunc(
108 name, [jprocess]() -> void { simgrid::kernel::context::java_main_jprocess(jprocess); },
109 /*data*/ nullptr, host, /* properties*/ nullptr);
111 env->ReleaseStringUTFChars(jname, name);
112 /* bind the java process instance to the native process */
113 jprocess_bind(jprocess, process, env);
115 /* Retrieve the kill time from the process */
116 jdouble jkill = env->GetDoubleField(jprocess, jprocess_field_Process_killTime);
117 MSG_process_set_kill_time(process, (double)jkill);
119 /* sets the PID and the PPID of the process */
120 env->SetIntField(jprocess, jprocess_field_Process_pid,(jint) MSG_process_get_PID(process));
121 env->SetIntField(jprocess, jprocess_field_Process_ppid, (jint) MSG_process_get_PPID(process));
122 /* sets the Host of the process */
123 jobject jhost = Java_org_simgrid_msg_Host_getByName(env,nullptr, (jstring)jhostname);
125 env->SetObjectField(jprocess, jprocess_field_Process_host, jhost);
128 JNIEXPORT jint JNICALL Java_org_simgrid_msg_Process_killAll(JNIEnv * env, jclass cls, jint jresetPID)
130 return (jint) MSG_process_killall((int) jresetPID);
133 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_fromPID(JNIEnv * env, jclass cls, jint pid)
135 msg_process_t process = MSG_process_from_PID(pid);
138 jxbt_throw_process_not_found(env, bprintf("PID = %d",static_cast<int>(pid)));
142 jobject jprocess = jprocess_from_native(process);
145 jxbt_throw_jni(env, "get process failed");
152 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getProperty(JNIEnv *env, jobject jprocess, jobject jname) {
153 msg_process_t process = jprocess_to_native(jprocess, env);
156 jxbt_throw_notbound(env, "process", jprocess);
159 const char *name = env->GetStringUTFChars((jstring)jname, 0);
161 const char *property = MSG_process_get_property_value(process, name);
166 jobject jproperty = env->NewStringUTF(property);
168 env->ReleaseStringUTFChars((jstring)jname, name);
173 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getCurrentProcess(JNIEnv * env, jclass cls)
175 msg_process_t process = MSG_process_self();
179 jxbt_throw_jni(env, xbt_strdup("MSG_process_self() failed"));
183 jprocess = jprocess_from_native(process);
186 jxbt_throw_jni(env, xbt_strdup("SIMIX_process_get_jprocess() failed"));
191 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_suspend(JNIEnv * env, jobject jprocess)
193 msg_process_t process = jprocess_to_native(jprocess, env);
196 jxbt_throw_notbound(env, "process", jprocess);
200 /* try to suspend the process */
201 msg_error_t rv = MSG_process_suspend(process);
203 jxbt_check_res("MSG_process_suspend()", rv, MSG_OK, bprintf("unexpected error , please report this bug"));
206 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_resume(JNIEnv * env, jobject jprocess)
208 msg_process_t process = jprocess_to_native(jprocess, env);
211 jxbt_throw_notbound(env, "process", jprocess);
215 /* try to resume the process */
216 msg_error_t rv = MSG_process_resume(process);
218 jxbt_check_res("MSG_process_resume()", rv, MSG_OK, bprintf("unexpected error , please report this bug"));
221 JNICALL Java_org_simgrid_msg_Process_setAutoRestart (JNIEnv *env, jobject jprocess, jboolean jauto_restart) {
222 msg_process_t process = jprocess_to_native(jprocess, env);
225 int auto_restart = jauto_restart == JNI_TRUE ? 1 : 0;
228 jxbt_throw_notbound(env, "process", jprocess);
233 MSG_process_auto_restart_set(process,auto_restart);
240 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_restart (JNIEnv *env, jobject jprocess) {
241 msg_process_t process = jprocess_to_native(jprocess, env);
245 jxbt_throw_notbound(env, "process", jprocess);
250 MSG_process_restart(process);
257 JNIEXPORT jboolean JNICALL Java_org_simgrid_msg_Process_isSuspended(JNIEnv * env, jobject jprocess)
259 msg_process_t process = jprocess_to_native(jprocess, env);
262 jxbt_throw_notbound(env, "process", jprocess);
266 /* true is the process is suspended, false otherwise */
267 return (jboolean) MSG_process_is_suspended(process);
270 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_sleep(JNIEnv *env, jclass cls, jlong jmillis, jint jnanos)
272 double time = ((double)jmillis) / 1000 + ((double)jnanos) / 1000000000;
274 rv = MSG_process_sleep(time);
276 XBT_DEBUG("Something during the MSG_process_sleep invocation was wrong, trigger a HostFailureException");
278 //jmsg_throw_status(env,rv);
280 // adsein, the code above as been replaced by the code below. Indeed, according to the documentation, a sleep can only
281 // trigger a host_failure exception. When the sleep crashes due to a host shutdown, the exception thrown by smx_context_java.c
282 // is a cancelled_error, see bindings/java/smx_context_java.c, function void smx_ctx_java_stop(smx_context_t context) and src/msg/msg_gos.c
283 // function msg_error_t MSG_process_sleep(double nb_sec)
285 jxbt_throw_host_failure(env, "");
289 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_waitFor(JNIEnv * env, jobject jprocess, jdouble jseconds)
292 rv = MSG_process_sleep((double)jseconds);
293 if (env->ExceptionOccurred())
296 XBT_DEBUG("Status NOK");
297 jmsg_throw_status(env,rv);
301 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_kill(JNIEnv * env, jobject jprocess)
303 /* get the native instances from the java ones */
304 msg_process_t process = jprocess_to_native(jprocess, env);
306 jxbt_throw_notbound(env, "process", jprocess);
311 MSG_process_kill(process);
312 } catch (xbt_ex& ex) {
313 XBT_VERB("This process just killed itself.");
317 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_migrate(JNIEnv * env, jobject jprocess, jobject jhost)
319 msg_process_t process = jprocess_to_native(jprocess, env);
322 jxbt_throw_notbound(env, "process", jprocess);
326 msg_host_t host = jhost_get_native(env, jhost);
329 jxbt_throw_notbound(env, "host", jhost);
333 /* try to change the host of the process */
334 msg_error_t rv = MSG_process_migrate(process, host);
336 jmsg_throw_status(env,rv);
339 /* change the host java side */
340 env->SetObjectField(jprocess, jprocess_field_Process_host, jhost);
343 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_yield(JNIEnv* env, jclass cls)
348 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_setKillTime (JNIEnv *env , jobject jprocess, jdouble jkilltime) {
349 msg_process_t process = jprocess_to_native(jprocess, env);
350 MSG_process_set_kill_time(process, (double)jkilltime);
353 JNIEXPORT jint JNICALL Java_org_simgrid_msg_Process_getCount(JNIEnv * env, jclass cls) {
354 return (jint) MSG_process_get_number();