-
Notifications
You must be signed in to change notification settings - Fork 966
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): refactor dynamic jni
- Loading branch information
1 parent
b6a46f1
commit fdbac85
Showing
28 changed files
with
910 additions
and
586 deletions.
There are no files selected for viewing
Binary file modified
BIN
+988 KB
(110%)
android/sdk/libs/arm64-v8a/libhippybridge.so
100755 → 100644
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* | ||
* Tencent is pleased to support the open source community by making | ||
* Hippy available. | ||
* | ||
* Copyright (C) 2019 THL A29 Limited, a Tencent company. | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <jni.h> | ||
|
||
namespace hippy { | ||
namespace bridge { | ||
|
||
jlong InitInstance(JNIEnv* j_env, | ||
jobject j_object, | ||
jbyteArray j_global_config, | ||
jboolean j_single_thread_mode, | ||
jboolean j_bridge_param_json, | ||
jboolean j_is_dev_module, | ||
jobject j_callback, | ||
jlong j_group_id); | ||
|
||
void DestroyInstance(JNIEnv* j_env, | ||
jobject j_object, | ||
jlong j_runtime_id, | ||
jboolean j_single_thread_mode, | ||
jobject j_callback); | ||
|
||
jboolean RunScriptFromUri(JNIEnv* j_env, | ||
jobject j_obj, | ||
jstring j_uri, | ||
jobject j_aasset_manager, | ||
jboolean j_can_use_code_cache, | ||
jstring j_code_cache_dir, | ||
jlong j_runtime_id, | ||
jobject j_cb); | ||
|
||
} // namespace bridge | ||
} // namespace hippy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* | ||
* Tencent is pleased to support the open source community by making | ||
* Hippy available. | ||
* | ||
* Copyright (C) 2019 THL A29 Limited, a Tencent company. | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <jni.h> | ||
|
||
namespace hippy { | ||
namespace bridge { | ||
|
||
void CallFunction(JNIEnv* j_env, | ||
jobject j_obj, | ||
jstring j_action, | ||
jbyteArray j_params, | ||
jint j_offset, | ||
jint j_length, | ||
jlong j_runtime_id, | ||
jobject j_callback); | ||
|
||
} // namespace bridge | ||
} // namespace hippy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* | ||
* Tencent is pleased to support the open source community by making | ||
* Hippy available. | ||
* | ||
* Copyright (C) 2019 THL A29 Limited, a Tencent company. | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <jni.h> | ||
|
||
#include <string> | ||
|
||
#include "core/core.h" | ||
|
||
class JNIRegisterData { | ||
public: | ||
JNIRegisterData(const char *name, const char *sign, void *pointer); | ||
JNINativeMethod ToJNINativeMethod(); | ||
|
||
private: | ||
std::string name_; | ||
std::string sign_; | ||
void *pointer_; | ||
}; | ||
|
||
class JNIRegister { | ||
public: | ||
static std::unique_ptr<JNIRegister> &GetInstance(); | ||
static bool RegisterMethods(JNIEnv *j_env); | ||
|
||
JNIRegister() = default; | ||
bool RegisterJNIModule(const char *module, | ||
const char *name, | ||
const char *signature, | ||
void *pointer) { | ||
auto it = jni_modules_.find(module); | ||
if (it != jni_modules_.end()) { | ||
jni_modules_[module].push_back({name, signature, pointer}); | ||
} else { | ||
jni_modules_[module] = {{name, signature, pointer}}; | ||
} | ||
return true; | ||
} | ||
|
||
const std::unordered_map<std::string, std::vector<JNIRegisterData>> | ||
&GetJniModules() { | ||
return jni_modules_; | ||
} | ||
|
||
private: | ||
std::unordered_map<std::string, std::vector<JNIRegisterData>> jni_modules_; | ||
|
||
DISALLOW_COPY_AND_ASSIGN(JNIRegister); | ||
}; | ||
|
||
#define REGISTER_JNI_INTERNAL(clazz, name, signature, pointer, key) \ | ||
auto __REGISTER_JNI_##key = []() { \ | ||
JNIRegister::GetInstance()->RegisterJNIModule( \ | ||
clazz, name, signature, reinterpret_cast<void *>(pointer)); \ | ||
return 0; \ | ||
}(); | ||
|
||
#define REGISTER_JNI_TEMP(clazz, name, signature, pointer, key) \ | ||
REGISTER_JNI_INTERNAL(clazz, name, signature, pointer, pointer##key) | ||
|
||
#define REGISTER_JNI(clazz, name, signature, pointer) \ | ||
REGISTER_JNI_TEMP(clazz, name, signature, pointer, __COUNTER__) |
Oops, something went wrong.