Native与Sendable ArkTS对象绑定
场景介绍
通过napi_wrap_sendable将Sendable ArkTS对象与Native的C++对象绑定,后续操作时再通过napi_unwrap_sendable将ArkTS对象绑定的C++对象取出,并对其进行操作。
使用示例
-
接口声明、编译配置以及模块注册
接口声明
// index.d.ets@Sendableexport class MyObject {constructor(arg: number);plusOne(): number;public get value();public set value(newVal: number);}编译配置
# the minimum version of CMake.cmake_minimum_required(VERSION 3.5.0)project(napi_wrap_sendable_demo)set(NATIVERENDER_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR})if(DEFINED PACKAGE_FIND_FILE)include(${PACKAGE_FIND_FILE})endif()include_directories(${NATIVERENDER_ROOT_PATH}${NATIVERENDER_ROOT_PATH}/include)add_definitions("-DLOG_DOMAIN=0x0000")add_definitions("-DLOG_TAG=\"testTag\"")add_library(entry SHARED napi_init.cpp)target_link_libraries(entry PUBLIC libace_napi.z.so libhilog_ndk.z.so)模块注册
// napi_init.cpp#include "napi/native_api.h"#include "hilog/log.h"// 一个native类,它的实例在下面会包装在Sendable ArkTS对象中class MyObject {public:static napi_value Init(napi_env env, napi_value exports);static void Destructor(napi_env env, void *nativeObject, void *finalize_hint);private:explicit MyObject(double value_ = 0);~MyObject();static napi_value New(napi_env env, napi_callback_info info);static napi_value GetValue(napi_env env, napi_callback_info info);static napi_value SetValue(napi_env env, napi_callback_info info);static napi_value PlusOne(napi_env env, napi_callback_info info);double value_;napi_env env_;};static thread_local napi_ref g_ref = nullptr;MyObject::MyObject(double value) : value_(value), env_(nullptr) {}MyObject::~MyObject() {}void MyObject::Destructor(napi_env env, void *nativeObject, [[maybe_unused]] void *finalize_hint) {OH_LOG_INFO(LOG_APP, "MyObject::Destructor called");reinterpret_cast<MyObject *>(nativeObject)->~MyObject();}napi_value MyObject::Init(napi_env env, napi_value exports) {napi_value num = nullptr;napi_status status = napi_create_double(env, 0, &num);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_create_double fail");return nullptr;}napi_property_descriptor properties[] = {{"value", nullptr, nullptr, GetValue, SetValue, nullptr, napi_default, nullptr},{"plusOne", nullptr, PlusOne, nullptr, nullptr, nullptr, napi_default, nullptr},};napi_value cons = nullptr;// 定义一个Sendable class MyObjectstatus = napi_define_sendable_class(env, "MyObject", NAPI_AUTO_LENGTH, New, nullptr,sizeof(properties) / sizeof(properties[0]), properties, nullptr, &cons);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_define_sendable_class fail");return nullptr;}status = napi_create_reference(env, cons, 1, &g_ref);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_create_reference fail");return nullptr;}// 在exports对象上挂载MyObject类status = napi_set_named_property(env, exports, "MyObject", cons);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_set_named_property fail");return nullptr;}return exports;}EXTERN_C_START// 模块初始化static napi_value Init(napi_env env, napi_value exports) {MyObject::Init(env, exports);return exports;}EXTERN_C_END// 准备模块加载相关信息,将上述Init函数与本模块名等信息记录下来。static napi_module nativeModule = {.nm_version = 1,.nm_flags = 0,.nm_filename = nullptr,.nm_register_func = Init,.nm_modname = "entry",.nm_priv = nullptr,.reserved = {0},};// 加载so时,该函数会自动被调用,将上述nativeModule模块注册到系统中。extern "C" __attribute__((constructor)) void RegisterObjectWrapModule() { napi_module_register(&nativeModule); } -
在构造函数中绑定Sendable ArkTS与C++对象
napi_value MyObject::New(napi_env env, napi_callback_info info) {OH_LOG_INFO(LOG_APP, "MyObject::New called");napi_value newTarget = nullptr;napi_status status = napi_get_new_target(env, info, &newTarget);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_new_target fail");return nullptr;}if (newTarget != nullptr) {// 使用`new MyObject(...)`调用方式size_t argc = 1;napi_value args[1] = { nullptr };napi_value jsThis = nullptr;status = napi_get_cb_info(env, info, &argc, args, &jsThis, nullptr);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_cb_info fail");return nullptr;}double value = 0.0;napi_valuetype valuetype = napi_undefined;status = napi_typeof(env, args[0], &valuetype);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_typeof fail");return nullptr;}if (valuetype != napi_undefined) {status = napi_get_value_double(env, args[0], &value);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_value_double fail");return nullptr;}}MyObject *obj = new MyObject(value);obj->env_ = env;// 通过napi_wrap_sendable将Sendable ArkTS对象jsThis与C++对象obj绑定status = napi_wrap_sendable(env, jsThis, reinterpret_cast<void *>(obj), MyObject::Destructor, nullptr);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_wrap_sendable fail");delete obj;return nullptr;}return jsThis;} else {// 使用`MyObject(...)`调用方式size_t argc = 1;napi_value args[1] = { nullptr };status = napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_cb_info fail");return nullptr;}napi_value cons = nullptr;status = napi_get_reference_value(env, g_ref, &cons);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_reference_value fail");return nullptr;}napi_value instance = nullptr;status = napi_new_instance(env, cons, argc, args, &instance);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_new_instance fail");return nullptr;}return instance;}} -
将Sendable ArkTS对象之前绑定的C++对象取出,并对其进行操作
napi_value MyObject::GetValue(napi_env env, napi_callback_info info) {OH_LOG_INFO(LOG_APP, "MyObject::GetValue called");napi_value jsThis = nullptr;napi_status status = napi_get_cb_info(env, info, nullptr, nullptr, &jsThis, nullptr);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_cb_info fail");return nullptr;}MyObject *obj = nullptr;// 通过napi_unwrap_sendable将jsThis之前绑定的C++对象取出,并对其进行操作status = napi_unwrap_sendable(env, jsThis, reinterpret_cast<void **>(&obj));if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_unwrap_sendable fail");return nullptr;}napi_value num = nullptr;status = napi_create_double(env, obj->value_, &num);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_create_double fail");return nullptr;}return num;}napi_value MyObject::SetValue(napi_env env, napi_callback_info info) {OH_LOG_INFO(LOG_APP, "MyObject::SetValue called");size_t argc = 1;napi_value value = nullptr;napi_value jsThis = nullptr;napi_status status = napi_get_cb_info(env, info, &argc, &value, &jsThis, nullptr);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_cb_info fail");return nullptr;}MyObject *obj = nullptr;// 通过napi_unwrap_sendable将jsThis之前绑定的C++对象取出,并对其进行操作status = napi_unwrap_sendable(env, jsThis, reinterpret_cast<void **>(&obj));if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_unwrap_sendable fail");return nullptr;}status = napi_get_value_double(env, value, &obj->value_);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_value_double fail");return nullptr;}return nullptr;}napi_value MyObject::PlusOne(napi_env env, napi_callback_info info) {OH_LOG_INFO(LOG_APP, "MyObject::PlusOne called");napi_value jsThis = nullptr;napi_status status = napi_get_cb_info(env, info, nullptr, nullptr, &jsThis, nullptr);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_get_cb_info fail");return nullptr;}MyObject *obj = nullptr;// 通过napi_unwrap_sendable将jsThis之前绑定的C++对象取出,并对其进行操作status = napi_unwrap_sendable(env, jsThis, reinterpret_cast<void **>(&obj));if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_unwrap_sendable fail");return nullptr;}obj->value_ += 1;napi_value num = nullptr;status = napi_create_double(env, obj->value_, &num);if (status != napi_ok) {napi_throw_error(env, nullptr, "Node-API napi_create_double fail");return nullptr;}return num;} -
ArkTS侧示例代码
import { hilog } from '@kit.PerformanceAnalysisKit';import { MyObject } from 'libentry.so';try {let object : MyObject = new MyObject(0);object.value = 1023.1;hilog.info(0x0000, 'testTag', 'MyObject value after set: %{public}s', object.value.toString());hilog.info(0x0000, 'testTag', 'MyObject plusOne: %{public}s', object.plusOne().toString());} catch (error) {hilog.error(0x0000, 'testTag', 'Test Node-API error: %{public}s', error.message);}