* Copyright (C) 2026 Huawei Device Co., Ltd.
* 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.
*/
#include "napi/native_api.h"
#include "hilog/log.h"
class MyObject {
public:
static napi_value Init(napi_env env, napi_value exports);
static void Destructor(napi_env env, void *nativeObject, void *finalizeHint);
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 *finalizeHint)
{
OH_LOG_INFO(LOG_APP, "MyObject::Destructor called");
reinterpret_cast<MyObject *>(nativeObject)->~MyObject();
}
napi_value MyObject::New(napi_env env, napi_callback_info info)
{
OH_LOG_INFO(LOG_APP, "MyObject::New called");
napi_value newTarget;
napi_get_new_target(env, info, &newTarget);
if (newTarget != nullptr) {
size_t argc = 1;
napi_value args[1];
napi_value jsThis;
napi_get_cb_info(env, info, &argc, args, &jsThis, nullptr);
double value = 0.0;
napi_valuetype valuetype;
napi_typeof(env, args[0], &valuetype);
if (valuetype != napi_undefined) {
napi_get_value_double(env, args[0], &value);
}
MyObject *obj = new MyObject(value);
obj->env_ = env;
napi_wrap_sendable(env, jsThis, reinterpret_cast<void *>(obj), MyObject::Destructor, nullptr);
return jsThis;
} else {
size_t argc = 1;
napi_value args[1];
napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
napi_value cons;
napi_get_reference_value(env, g_ref, &cons);
napi_value instance;
napi_new_instance(env, cons, argc, args, &instance);
return instance;
}
}
napi_value MyObject::GetValue(napi_env env, napi_callback_info info)
{
OH_LOG_INFO(LOG_APP, "MyObject::GetValue called");
napi_value jsThis;
napi_get_cb_info(env, info, nullptr, nullptr, &jsThis, nullptr);
MyObject *obj;
napi_unwrap_sendable(env, jsThis, reinterpret_cast<void **>(&obj));
napi_value num;
napi_create_double(env, obj->value_, &num);
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;
napi_value jsThis;
napi_get_cb_info(env, info, &argc, &value, &jsThis, nullptr);
MyObject *obj;
napi_unwrap_sendable(env, jsThis, reinterpret_cast<void **>(&obj));
napi_get_value_double(env, value, &obj->value_);
return nullptr;
}
napi_value MyObject::PlusOne(napi_env env, napi_callback_info info)
{
OH_LOG_INFO(LOG_APP, "MyObject::PlusOne called");
napi_value jsThis;
napi_get_cb_info(env, info, nullptr, nullptr, &jsThis, nullptr);
MyObject *obj;
napi_unwrap_sendable(env, jsThis, reinterpret_cast<void **>(&obj));
obj->value_ += 1;
napi_value num;
napi_create_double(env, obj->value_, &num);
return num;
}
napi_value MyObject::Init(napi_env env, napi_value exports)
{
napi_value num;
napi_create_double(env, 0, &num);
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;
napi_define_sendable_class(env, "MyObject", NAPI_AUTO_LENGTH, New, nullptr,
sizeof(properties) / sizeof(properties[0]), properties, nullptr, &cons);
napi_create_reference(env, cons, 1, &g_ref);
napi_set_named_property(env, exports, "MyObject", cons);
return exports;
}
EXTERN_C_START
static napi_value Init(napi_env env, napi_value exports)
{
MyObject::Init(env, exports);
return exports;
}
EXTERN_C_END
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},
};
extern "C" __attribute__((constructor)) void RegisterObjectWrapModule() { napi_module_register(&nativeModule); }