X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ae701792ae00d4b822b890780619878e0a624980..38673a54ed696e3bf4fb66577f40e5586436674d:/src/bindings/java/jxbt_utilities.cpp diff --git a/src/bindings/java/jxbt_utilities.cpp b/src/bindings/java/jxbt_utilities.cpp index c735ff410c..79142aed1c 100644 --- a/src/bindings/java/jxbt_utilities.cpp +++ b/src/bindings/java/jxbt_utilities.cpp @@ -1,22 +1,19 @@ /* Various JNI helper functions */ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. 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. */ +#include "jxbt_utilities.hpp" +#include "xbt/string.hpp" #include "xbt/sysdep.h" -#include "jxbt_utilities.h" - -#include /* abort */ - -SG_BEGIN_DECL() jclass jxbt_get_class(JNIEnv * env, const char *name) { jclass cls = env->FindClass(name); - if (!cls) { + if (not cls) { jxbt_throw_jni(env, std::string("Class ") + name + " not found"); return nullptr; } @@ -28,20 +25,18 @@ jmethodID jxbt_get_jmethod(JNIEnv * env, jclass cls, const char *name, const cha { jmethodID id; - if (!cls) - return 0; + if (not cls) + return nullptr; id = env->GetMethodID(cls, name, signature); - if (!id) { - + if (not id) { jmethodID tostr_id = env->GetMethodID(cls, "getName", "()Ljava/lang/String;"); - jstring jclassname = (jstring) env->CallObjectMethod(cls, tostr_id, nullptr); - const char *classname = env->GetStringUTFChars(jclassname, 0); + auto jclassname = (jstring)env->CallObjectMethod(cls, tostr_id, nullptr); + jstring_wrapper classname(env, jclassname); + auto msg = std::string("Cannot find method") + name + "(" + signature + ") in " + classname.value; - env->ReleaseStringUTFChars(jclassname, classname); - - jxbt_throw_jni(env, std::string("Cannot find method") + name + "(" + signature + ") in " + classname); - return 0; + jxbt_throw_jni(env, msg); + return nullptr; } return id; @@ -51,19 +46,18 @@ jmethodID jxbt_get_static_jmethod(JNIEnv * env, jclass cls, const char *name, co { jmethodID id; - if (!cls) - return 0; + if (not cls) + return nullptr; id = env->GetStaticMethodID(cls, name, signature); - if (!id) { + if (not id) { jmethodID tostr_id = env->GetMethodID(cls, "getName", "()Ljava/lang/String;"); - jstring jclassname = (jstring) env->CallObjectMethod(cls, tostr_id, nullptr); - const char *classname = env->GetStringUTFChars(jclassname, 0); - - env->ReleaseStringUTFChars(jclassname, classname); + auto jclassname = (jstring)env->CallObjectMethod(cls, tostr_id, nullptr); + jstring_wrapper classname(env, jclassname); + auto msg = std::string("Cannot find static method") + name + "(" + signature + ") in " + classname.value; - jxbt_throw_jni(env, std::string("Cannot find static method") + name + "(" + signature + ") in " + classname); - return 0; + jxbt_throw_jni(env, msg); + return nullptr; } return id; @@ -75,14 +69,14 @@ jmethodID jxbt_get_static_smethod(JNIEnv * env, const char *classname, const cha jmethodID id; cls = jxbt_get_class(env, classname); - if (!cls) - return 0; + if (not cls) + return nullptr; id = env->GetStaticMethodID(cls, name, signature); - if (!id) { + if (not id) { jxbt_throw_jni(env, std::string("Cannot find static method") + name + "(" + signature + ") in " + classname); - return 0; + return nullptr; } return id; } @@ -93,14 +87,14 @@ jmethodID jxbt_get_smethod(JNIEnv * env, const char *classname, const char *name jmethodID id; cls = jxbt_get_class(env, classname); - if (!cls) - return 0; + if (not cls) + return nullptr; id = env->GetMethodID(cls, name, signature); - if (!id) { + if (not id) { jxbt_throw_jni(env, std::string("Cannot find method") + name + "(" + signature + ") in " + classname); - return 0; + return nullptr; } return id; } @@ -109,21 +103,21 @@ jfieldID jxbt_get_jfield(JNIEnv * env, jclass cls, const char *name, const char { jfieldID id; - if (!cls) - return 0; + if (not cls) + return nullptr; id = env->GetFieldID(cls, name, signature); - if (!id) { + if (not id) { jmethodID getname_id = env->GetMethodID(cls, "getName", "()Ljava/lang/String;"); - jstring jclassname = (jstring) env->CallObjectMethod(cls, getname_id, nullptr); - const char *classname = env->GetStringUTFChars(jclassname, 0); + auto jclassname = (jstring)env->CallObjectMethod(cls, getname_id, nullptr); + const char* classname = env->GetStringUTFChars(jclassname, nullptr); env->ReleaseStringUTFChars(jclassname, classname); jxbt_throw_jni(env, std::string("Cannot find field") + signature + " " + name + " in " + classname); - return 0; + return nullptr; } return id; @@ -134,20 +128,20 @@ jfieldID jxbt_get_sfield(JNIEnv * env, const char *classname, const char *name, jclass cls = jxbt_get_class(env, classname); jfieldID id; - if (!cls) - return 0; + if (not cls) + return nullptr; id = env->GetFieldID(cls, name, signature); - if (!id) { + if (not id) { jxbt_throw_jni(env, std::string("Cannot find field") + signature + " " + name + " in " + classname); - return 0; + return nullptr; } return id; } -void jxbt_throw_by_name(JNIEnv* env, const char* name, std::string msg) +void jxbt_throw_by_name(JNIEnv* env, const char* name, const std::string& msg) { jclass cls = env->FindClass(name); @@ -156,60 +150,53 @@ void jxbt_throw_by_name(JNIEnv* env, const char* name, std::string msg) env->ThrowNew(cls, msg.c_str()); } -void jxbt_throw_jni(JNIEnv* env, std::string msg) +void jxbt_throw_jni(JNIEnv* env, const std::string& msg) { jxbt_throw_by_name(env, "org/simgrid/msg/JniException", "Internal or JNI error: " + msg); } -void jxbt_throw_notbound(JNIEnv* env, std::string kind, void* pointer) +void jxbt_throw_notbound(JNIEnv* env, const std::string& kind, void* pointer) { jxbt_throw_by_name(env, "org/simgrid/msg/JniException", - "Internal error: " + kind + " " + static_cast(pointer) + " not bound"); + simgrid::xbt::string_printf("Internal error: %s %p not bound", kind.c_str(), pointer)); } -void jxbt_throw_null(JNIEnv* env, std::string msg) +void jxbt_throw_null(JNIEnv* env, const std::string& msg) { jxbt_throw_by_name(env, "java/lang/NullPointerException", msg); } -void jxbt_throw_illegal(JNIEnv* env, std::string msg) +void jxbt_throw_illegal(JNIEnv* env, const std::string& msg) { jxbt_throw_by_name(env, "java/lang/IllegalArgumentException", msg); } -void jxbt_throw_host_not_found(JNIEnv* env, std::string invalid_name) +void jxbt_throw_host_not_found(JNIEnv* env, const std::string& invalid_name) { jxbt_throw_by_name(env, "org/simgrid/msg/HostNotFoundException", "No such host: " + invalid_name); } -void jxbt_throw_storage_not_found(JNIEnv* env, std::string invalid_name) -{ - jxbt_throw_by_name(env, "org/simgrid/msg/StorageNotFoundException", "No such storage: " + invalid_name); -} - -void jxbt_throw_process_not_found(JNIEnv* env, std::string invalid_name) +void jxbt_throw_process_not_found(JNIEnv* env, const std::string& invalid_name) { jxbt_throw_by_name(env, "org/simgrid/msg/ProcessNotFoundException", "No such process: " + invalid_name); } -void jxbt_throw_transfer_failure(JNIEnv* env, std::string details) +void jxbt_throw_transfer_failure(JNIEnv* env, const std::string& details) { jxbt_throw_by_name(env, "org/simgrid/msg/TransferFailureException", details); } -void jxbt_throw_host_failure(JNIEnv* env, std::string details) +void jxbt_throw_host_failure(JNIEnv* env, const std::string& details) { - jxbt_throw_by_name(env, "org/simgrid/msg/HostFailureException", "Host Failure " + details); + jxbt_throw_by_name(env, "org/simgrid/msg/HostFailureException", "Host Failure" + details); } -void jxbt_throw_time_out_failure(JNIEnv* env, std::string details) +void jxbt_throw_time_out_failure(JNIEnv* env, const std::string& details) { jxbt_throw_by_name(env, "org/simgrid/msg/TimeoutException", details); } -void jxbt_throw_task_cancelled(JNIEnv* env, std::string details) +void jxbt_throw_task_cancelled(JNIEnv* env, const std::string& details) { jxbt_throw_by_name(env, "org/simgrid/msg/TaskCancelledException", details); } - -SG_END_DECL()