X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84ccd6fb41f2ffc33e8dad38d2357ecbb2df9038..53c4b4c954141e97f5f462549b309507e5b3306b:/src/bindings/java/jmsg_process.cpp diff --git a/src/bindings/java/jmsg_process.cpp b/src/bindings/java/jmsg_process.cpp index 8488ee2a69..e838a687bb 100644 --- a/src/bindings/java/jmsg_process.cpp +++ b/src/bindings/java/jmsg_process.cpp @@ -1,7 +1,6 @@ /* Functions related to the java process instances. */ -/* Copyright (c) 2007-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -15,42 +14,34 @@ #include "jxbt_utilities.h" #include "JavaContext.hpp" -XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg); +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(java); -extern "C" { +SG_BEGIN_DECL() jfieldID jprocess_field_Process_bind; jfieldID jprocess_field_Process_host; jfieldID jprocess_field_Process_killTime; -jfieldID jprocess_field_Process_id; jfieldID jprocess_field_Process_name; jfieldID jprocess_field_Process_pid; jfieldID jprocess_field_Process_ppid; -jobject native_to_java_process(msg_process_t process) +jobject jprocess_from_native(msg_process_t process) { simgrid::kernel::context::JavaContext* context = (simgrid::kernel::context::JavaContext*) MSG_process_get_smx_ctx(process); return context->jprocess; } -jobject jprocess_new_global_ref(jobject jprocess, JNIEnv * env) +jobject jprocess_ref(jobject jprocess, JNIEnv* env) { return env->NewGlobalRef(jprocess); } -void jprocess_delete_global_ref(jobject jprocess, JNIEnv * env) +void jprocess_unref(jobject jprocess, JNIEnv* env) { env->DeleteGlobalRef(jprocess); } -void jprocess_join(jobject jprocess, JNIEnv * env) -{ - msg_process_t process = jprocess_to_native_process(jprocess,env); - simgrid::kernel::context::JavaContext* context = (simgrid::kernel::context::JavaContext*) MSG_process_get_smx_ctx(process); - xbt_os_thread_join(context->thread,nullptr); -} - -msg_process_t jprocess_to_native_process(jobject jprocess, JNIEnv * env) +msg_process_t jprocess_to_native(jobject jprocess, JNIEnv* env) { return (msg_process_t)(intptr_t)env->GetLongField(jprocess, jprocess_field_Process_bind); } @@ -60,40 +51,24 @@ void jprocess_bind(jobject jprocess, msg_process_t process, JNIEnv * env) env->SetLongField(jprocess, jprocess_field_Process_bind, (intptr_t)process); } -jlong jprocess_get_id(jobject jprocess, JNIEnv * env) -{ - return (intptr_t)env->GetLongField(jprocess, jprocess_field_Process_id); -} - jstring jprocess_get_name(jobject jprocess, JNIEnv * env) { jstring jname = (jstring) env->GetObjectField(jprocess, jprocess_field_Process_name); return (jstring) env->NewGlobalRef(jname); } -jboolean jprocess_is_valid(jobject jprocess, JNIEnv * env) -{ - jfieldID id = jxbt_get_sfield(env, "org/simgrid/msg/Process", "bind", "J"); - - if (!id) - return JNI_FALSE; - - return env->GetLongField(jprocess, id) ? JNI_TRUE : JNI_FALSE; -} - JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_nativeInit(JNIEnv *env, jclass cls) { jclass jprocess_class_Process = env->FindClass("org/simgrid/msg/Process"); xbt_assert(jprocess_class_Process, "Native initialization of msg/Process failed. Please report that bug"); jprocess_field_Process_name = jxbt_get_jfield(env, jprocess_class_Process, "name", "Ljava/lang/String;"); jprocess_field_Process_bind = jxbt_get_jfield(env, jprocess_class_Process, "bind", "J"); - jprocess_field_Process_id = jxbt_get_jfield(env, jprocess_class_Process, "id", "J"); jprocess_field_Process_pid = jxbt_get_jfield(env, jprocess_class_Process, "pid", "I"); jprocess_field_Process_ppid = jxbt_get_jfield(env, jprocess_class_Process, "ppid", "I"); jprocess_field_Process_host = jxbt_get_jfield(env, jprocess_class_Process, "host", "Lorg/simgrid/msg/Host;"); jprocess_field_Process_killTime = jxbt_get_jfield(env, jprocess_class_Process, "killTime", "D"); - xbt_assert(jprocess_field_Process_id && jprocess_field_Process_name && jprocess_field_Process_pid && - jprocess_field_Process_ppid && jprocess_field_Process_host, + xbt_assert(jprocess_field_Process_name && jprocess_field_Process_pid && jprocess_field_Process_ppid && + jprocess_field_Process_host, "Native initialization of msg/Process failed. Please report that bug"); } @@ -101,62 +76,45 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_create(JNIEnv * env, jobject { jobject jprocess; /* the global reference to the java process instance */ jstring jname; /* the name of the java process instance */ - const char *name; /* the C name of the process */ - const char *hostname; - msg_process_t process; /* the native process to create */ msg_host_t host; /* Where that process lives */ - hostname = env->GetStringUTFChars((jstring) jhostname, 0); /* get the name of the java process */ jname = jprocess_get_name(jprocess_arg, env); if (!jname) { - jxbt_throw_null(env, - xbt_strdup("Internal error: Process name cannot be nullptr")); + jxbt_throw_null(env, xbt_strdup("Process name cannot be nullptr")); return; } + const char* name = env->GetStringUTFChars(jname, 0); /* bind/retrieve the msg host */ + const char* hostname = env->GetStringUTFChars((jstring)jhostname, 0); host = MSG_host_by_name(hostname); - if (!(host)) { /* not bound */ jxbt_throw_host_not_found(env, hostname); return; } + env->ReleaseStringUTFChars((jstring)jhostname, hostname); /* create a global java process instance */ - jprocess = jprocess_new_global_ref(jprocess_arg, env); + jprocess = jprocess_ref(jprocess_arg, env); if (!jprocess) { jxbt_throw_jni(env, "Can't get a global ref to the java process"); return; } - /* build the C name of the process */ - name = env->GetStringUTFChars(jname, 0); - name = xbt_strdup(name); - - /* Retrieve the kill time from the process */ - jdouble jkill = env->GetDoubleField(jprocess, jprocess_field_Process_killTime); /* Actually build the MSG process */ - process = MSG_process_create_with_environment(name, [](int argc, char** argv) -> int { - smx_actor_t process = SIMIX_process_self(); - // This is the jprocess passed as environment. - // It would be simplet if we could use a closure. - jobject jprocess = (jobject) MSG_process_get_data(process); - simgrid::kernel::context::java_main_jprocess(jprocess); - return 0; - }, jprocess, - host, - /*argc, argv, properties*/ - 0, nullptr, nullptr); - MSG_process_set_kill_time(process, (double)jkill); + msg_process_t process = MSG_process_create_from_stdfunc( + name, [jprocess]() -> void { simgrid::kernel::context::java_main_jprocess(jprocess); }, + /*data*/ nullptr, host, /* properties*/ nullptr); + + env->ReleaseStringUTFChars(jname, name); /* bind the java process instance to the native process */ jprocess_bind(jprocess, process, env); - /* release our reference to the process name (variable name becomes invalid) */ - //FIXME : This line should be uncommented but with mac it doesn't work. BIG WARNING - //env->ReleaseStringUTFChars(jname, name); - env->ReleaseStringUTFChars((jstring) jhostname, hostname); + /* Retrieve the kill time from the process */ + jdouble jkill = env->GetDoubleField(jprocess, jprocess_field_Process_killTime); + MSG_process_set_kill_time(process, (double)jkill); /* sets the PID and the PPID of the process */ env->SetIntField(jprocess, jprocess_field_Process_pid,(jint) MSG_process_get_PID(process)); @@ -181,7 +139,7 @@ JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_fromPID(JNIEnv * env, jcl return nullptr; } - jobject jprocess = native_to_java_process(process); + jobject jprocess = jprocess_from_native(process); if (!jprocess) { jxbt_throw_jni(env, "get process failed"); @@ -192,7 +150,7 @@ JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_fromPID(JNIEnv * env, jcl } JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getProperty(JNIEnv *env, jobject jprocess, jobject jname) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); if (!process) { jxbt_throw_notbound(env, "process", jprocess); @@ -222,7 +180,7 @@ JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getCurrentProcess(JNIEnv return nullptr; } - jprocess = native_to_java_process(process); + jprocess = jprocess_from_native(process); if (!jprocess) jxbt_throw_jni(env, xbt_strdup("SIMIX_process_get_jprocess() failed")); @@ -232,7 +190,7 @@ JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Process_getCurrentProcess(JNIEnv JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_suspend(JNIEnv * env, jobject jprocess) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); if (!process) { jxbt_throw_notbound(env, "process", jprocess); @@ -247,7 +205,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_suspend(JNIEnv * env, jobjec JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_resume(JNIEnv * env, jobject jprocess) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); if (!process) { jxbt_throw_notbound(env, "process", jprocess); @@ -261,7 +219,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_resume(JNIEnv * env, jobject } JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_setAutoRestart (JNIEnv *env, jobject jprocess, jboolean jauto_restart) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); xbt_ex_t e; int auto_restart = jauto_restart == JNI_TRUE ? 1 : 0; @@ -280,7 +238,7 @@ JNICALL Java_org_simgrid_msg_Process_setAutoRestart (JNIEnv *env, jobject jproce } JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_restart (JNIEnv *env, jobject jprocess) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); xbt_ex_t e; if (!process) { @@ -298,7 +256,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_restart (JNIEnv *env, jobjec } JNIEXPORT jboolean JNICALL Java_org_simgrid_msg_Process_isSuspended(JNIEnv * env, jobject jprocess) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); if (!process) { jxbt_throw_notbound(env, "process", jprocess); @@ -324,7 +282,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_sleep(JNIEnv *env, jclass cl // 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 // function msg_error_t MSG_process_sleep(double nb_sec) - jxbt_throw_host_failure(env,nullptr); + jxbt_throw_host_failure(env, ""); } } @@ -343,7 +301,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_waitFor(JNIEnv * env, jobjec JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_kill(JNIEnv * env, jobject jprocess) { /* get the native instances from the java ones */ - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); if (!process) { jxbt_throw_notbound(env, "process", jprocess); return; @@ -358,7 +316,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_kill(JNIEnv * env, jobject j JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_migrate(JNIEnv * env, jobject jprocess, jobject jhost) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); if (!process) { jxbt_throw_notbound(env, "process", jprocess); @@ -388,7 +346,7 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_yield(JNIEnv* env, jclass cl } JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_setKillTime (JNIEnv *env , jobject jprocess, jdouble jkilltime) { - msg_process_t process = jprocess_to_native_process(jprocess, env); + msg_process_t process = jprocess_to_native(jprocess, env); MSG_process_set_kill_time(process, (double)jkilltime); } @@ -396,4 +354,4 @@ JNIEXPORT jint JNICALL Java_org_simgrid_msg_Process_getCount(JNIEnv * env, jclas return (jint) MSG_process_get_number(); } -} // extern C +SG_END_DECL()