123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- /****************************************************************************
- Copyright (c) 2010-2012 cocos2d-x.org
- Copyright (c) 2013-2017 Chukong Technologies Inc.
- 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:
- 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;
- 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())) {
- t.env->CallStaticVoidMethod(t.classID, t.methodID, convert(t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env);
- } else {
- reportError(className, methodName, signature);
- }
- }
- 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())) {
- jret = t.env->CallStaticBooleanMethod(t.classID, t.methodID, convert(t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env);
- } else {
- reportError(className, methodName, signature);
- }
- return (jret == JNI_TRUE);
- }
- 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())) {
- ret = t.env->CallStaticIntMethod(t.classID, t.methodID, convert(t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- 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())) {
- ret = t.env->CallStaticFloatMethod(t.classID, t.methodID, convert(t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- 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())) {
- jfloatArray array = (jfloatArray) t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(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);
- return &ret[0];
- } else {
- reportError(className, methodName, signature);
- }
- return nullptr;
- }
- 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())) {
- jfloatArray array = (jfloatArray) t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(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);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- 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())) {
- ret = t.env->CallStaticDoubleMethod(t.classID, t.methodID, convert(t, xs)...);
- t.env->DeleteLocalRef(t.classID);
- deleteLocalRefs(t.env);
- } else {
- reportError(className, methodName, signature);
- }
- return ret;
- }
- 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())) {
- jstring jret = (jstring)t.env->CallStaticObjectMethod(t.classID, t.methodID, convert(t, xs)...);
- ret = cocos2d::JniHelper::jstring2string(jret);
- t.env->DeleteLocalRef(t.classID);
- t.env->DeleteLocalRef(jret);
- deleteLocalRefs(t.env);
- } 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(cocos2d::JniMethodInfo& t, const char* x);
- static jstring convert(cocos2d::JniMethodInfo& t, const std::string& x);
- template <typename T>
- static T convert(cocos2d::JniMethodInfo&, T x) {
- return x;
- }
- static std::unordered_map<JNIEnv*, std::vector<jobject>> localRefs;
- static void deleteLocalRefs(JNIEnv* env);
- 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__
|