123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- /****************************************************************************
- Copyright (c) 2010-2012 cocos2d-x.org
- Copyright (c) 2013-2016 Chukong Technologies Inc.
- Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
- http://www.cocos2d-x.org
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- ****************************************************************************/
- #ifndef __ANDROID_JNI_HELPER_H__
- #define __ANDROID_JNI_HELPER_H__
- #include <jni.h>
- #include <string>
- #include <vector>
- #include <unordered_map>
- #include <functional>
- #include "platform/CCPlatformMacros.h"
- #include "math/Vec3.h"
- NS_CC_BEGIN
- typedef struct JniMethodInfo_
- {
- JNIEnv * env;
- jclass classID;
- jmethodID methodID;
- } JniMethodInfo;
- class CC_DLL JniHelper
- {
- public:
- typedef std::unordered_map<JNIEnv*, std::vector<jobject>> LocalRefMapType;
- static void setJavaVM(JavaVM *javaVM);
- static JavaVM* getJavaVM();
- static JNIEnv* getEnv();
- static jobject getActivity();
- static bool setClassLoaderFrom(jobject activityInstance);
- static bool getStaticMethodInfo(JniMethodInfo &methodinfo,
- const char *className,
- const char *methodName,
- const char *paramCode);
- static bool getMethodInfo(JniMethodInfo &methodinfo,
- const char *className,
- const char *methodName,
- const char *paramCode);
- static std::string jstring2string(jstring str);
- static jmethodID loadclassMethod_methodID;
- static jobject classloader;
- static std::function<void()> classloaderCallback;
- /**
- @brief Call of Java static void method
- @if no such method will log error
- */
- template <typename... Ts>
- static void callStaticVoidMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")V";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- t.env->CallStaticVoidMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- }
- /**
- @brief Call of Java static boolean method
- @return value from Java static boolean method if there are proper JniMethodInfo; otherwise false.
- */
- template <typename... Ts>
- static bool callStaticBooleanMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- jboolean jret = JNI_FALSE;
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")Z";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- jret = t.env->CallStaticBooleanMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- return (jret == JNI_TRUE);
- }
- /**
- @brief Call of Java static int method
- @return value from Java static int method if there are proper JniMethodInfo; otherwise 0.
- */
- template <typename... Ts>
- static int callStaticIntMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- jint ret = 0;
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")I";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- ret = t.env->CallStaticIntMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- /**
- @brief Call of Java static float method
- @return value from Java static float method if there are proper JniMethodInfo; otherwise 0.
- */
- template <typename... Ts>
- static float callStaticFloatMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- jfloat ret = 0.0;
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")F";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- ret = t.env->CallStaticFloatMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- /**
- @brief Call of Java static float* method
- @return address of JniMethodInfo if there are proper JniMethodInfo; otherwise nullptr.
- */
- template <typename... Ts>
- static float* callStaticFloatArrayMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- static float ret[32];
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")[F";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- jfloatArray array = (jfloatArray) t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- jsize len = t.env->GetArrayLength(array);
- if (len <= 32) {
- jfloat* elems = t.env->GetFloatArrayElements(array, 0);
- if (elems) {
- memcpy(ret, elems, sizeof(float) * len);
- t.env->ReleaseFloatArrayElements(array, elems, 0);
- };
- }
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- return &ret[0];
- } else {
- reportError(className, methodName, signature);
- }
- return nullptr;
- }
- /**
- @brief Call of Java static int* method
- @return address of JniMethodInfo if there are proper JniMethodInfo; otherwise nullptr.
- */
- template <typename... Ts>
- static int* callStaticIntArrayMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- static int ret[32];
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")[I";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- jintArray array = (jintArray) t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- jsize len = t.env->GetArrayLength(array);
- if (len <= 32) {
- jint* elems = t.env->GetIntArrayElements(array, 0);
- if (elems) {
- memcpy(ret, elems, sizeof(int) * len);
- t.env->ReleaseIntArrayElements(array, elems, 0);
- };
- }
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- return &ret[0];
- } else {
- reportError(className, methodName, signature);
- }
- return nullptr;
- }
- /**
- @brief Call of Java static Vec3 method
- @return JniMethodInfo of Vec3 type if there are proper JniMethodInfo; otherwise Vec3(0, 0, 0).
- */
- template <typename... Ts>
- static Vec3 callStaticVec3Method(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- Vec3 ret;
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")[F";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- jfloatArray array = (jfloatArray) t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- jsize len = t.env->GetArrayLength(array);
- if (len == 3) {
- jfloat* elems = t.env->GetFloatArrayElements(array, 0);
- ret.x = elems[0];
- ret.y = elems[1];
- ret.z = elems[2];
- t.env->ReleaseFloatArrayElements(array, elems, 0);
- }
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- /**
- @brief Call of Java static double method
- @return value from Java static double method if there are proper JniMethodInfo; otherwise 0.
- */
- template <typename... Ts>
- static double callStaticDoubleMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- jdouble ret = 0.0;
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")D";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- ret = t.env->CallStaticDoubleMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- /**
- @brief Call of Java static string method
- @return JniMethodInfo of string type if there are proper JniMethodInfo; otherwise empty string.
- */
- template <typename... Ts>
- static std::string callStaticStringMethod(const std::string& className,
- const std::string& methodName,
- Ts... xs) {
- std::string ret;
- cocos2d::JniMethodInfo t;
- std::string signature = "(" + std::string(getJNISignature(xs...)) + ")Ljava/lang/String;";
- if (cocos2d::JniHelper::getStaticMethodInfo(t, className.c_str(), methodName.c_str(), signature.c_str())) {
- LocalRefMapType localRefs;
- jstring jret = (jstring)t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(localRefs, t, xs)...);
- ret = cocos2d::JniHelper::jstring2string(jret);
- t.env->DeleteLocalRef(t.classID);
- t.env->DeleteLocalRef(jret);
- deleteLocalRefs(t.env, localRefs);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- private:
- static JNIEnv* cacheEnv(JavaVM* jvm);
- static bool getMethodInfo_DefaultClassLoader(JniMethodInfo &methodinfo,
- const char *className,
- const char *methodName,
- const char *paramCode);
- static JavaVM* _psJavaVM;
-
- static jobject _activity;
- static jstring convert(LocalRefMapType& localRefs, cocos2d::JniMethodInfo& t, const char* x);
- static jstring convert(LocalRefMapType& localRefs, cocos2d::JniMethodInfo& t, const std::string& x);
- inline static jint convert(LocalRefMapType&, cocos2d::JniMethodInfo&, int32_t value) { return static_cast<jint>(value);}
- inline static jlong convert(LocalRefMapType&, cocos2d::JniMethodInfo&, int64_t value) { return static_cast<jlong>(value);}
- inline static jfloat convert(LocalRefMapType&, cocos2d::JniMethodInfo&, float value) { return static_cast<jfloat>(value);}
- inline static jdouble convert(LocalRefMapType&, cocos2d::JniMethodInfo&, double value) { return static_cast<jdouble>(value);}
- inline static jboolean convert(LocalRefMapType&, cocos2d::JniMethodInfo&, bool value) { return static_cast<jboolean>(value);}
- inline static jbyte convert(LocalRefMapType&, cocos2d::JniMethodInfo&, int8_t value) { return static_cast<jbyte>(value);}
- inline static jchar convert(LocalRefMapType&, cocos2d::JniMethodInfo&, uint8_t value) { return static_cast<jchar>(value);}
- inline static jshort convert(LocalRefMapType&, cocos2d::JniMethodInfo&, int16_t value) { return static_cast<jshort>(value);}
- template <typename T>
- static T convert(LocalRefMapType& localRefs, cocos2d::JniMethodInfo&, T x) {
- return x;
- }
- static void deleteLocalRefs(JNIEnv* env, LocalRefMapType& localRefs);
- static std::string getJNISignature() {
- return "";
- }
- static std::string getJNISignature(bool) {
- return "Z";
- }
- static std::string getJNISignature(char) {
- return "C";
- }
- static std::string getJNISignature(short) {
- return "S";
- }
- static std::string getJNISignature(int) {
- return "I";
- }
- static std::string getJNISignature(long) {
- return "J";
- }
- static std::string getJNISignature(float) {
- return "F";
- }
- static std::string getJNISignature(double) {
- return "D";
- }
- static std::string getJNISignature(const char*) {
- return "Ljava/lang/String;";
- }
- static std::string getJNISignature(const std::string&) {
- return "Ljava/lang/String;";
- }
- template <typename T>
- static std::string getJNISignature(T x) {
- // This template should never be instantiated
- static_assert(sizeof(x) == 0, "Unsupported argument type");
- return "";
- }
- template <typename T, typename... Ts>
- static std::string getJNISignature(T x, Ts... xs) {
- return getJNISignature(x) + getJNISignature(xs...);
- }
- static void reportError(const std::string& className, const std::string& methodName, const std::string& signature);
- };
- NS_CC_END
- #endif // __ANDROID_JNI_HELPER_H__
|