mirror of
https://github.com/openharmony/ace_napi.git
synced 2026-07-22 09:15:27 -04:00
105dadb4d8
Signed-off-by: sunfei <sunfei.sun@huawei.com> Change-Id: Icd076eea5ce655b6b3f15a9023e39207f7dd1a0b
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2021 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 <string>
|
|
#include "napi/native_api.h"
|
|
#include "napi/native_node_api.h"
|
|
|
|
enum TestEnum {
|
|
ONE = 1,
|
|
TWO,
|
|
THREE,
|
|
FOUR
|
|
};
|
|
|
|
/*
|
|
* Constructor
|
|
*/
|
|
static napi_value NumberConstructor(napi_env env, napi_callback_info info)
|
|
{
|
|
napi_value thisArg = nullptr;
|
|
void* data = nullptr;
|
|
napi_get_cb_info(env, info, nullptr, nullptr, &thisArg, &data);
|
|
// Do nothing
|
|
return thisArg;
|
|
}
|
|
|
|
static napi_value Export(napi_env env, napi_value exports)
|
|
{
|
|
napi_value one = nullptr;
|
|
napi_value two = nullptr;
|
|
napi_value three = nullptr;
|
|
napi_value four = nullptr;
|
|
|
|
napi_create_int32(env, TestEnum::ONE, &one);
|
|
napi_create_int32(env, TestEnum::TWO, &two);
|
|
napi_create_int32(env, TestEnum::THREE, &three);
|
|
napi_create_int32(env, TestEnum::FOUR, &four);
|
|
|
|
napi_property_descriptor descriptors[] = {
|
|
DECLARE_NAPI_STATIC_PROPERTY("ONE", one),
|
|
DECLARE_NAPI_STATIC_PROPERTY("TWO", two),
|
|
DECLARE_NAPI_STATIC_PROPERTY("THREE", three),
|
|
DECLARE_NAPI_STATIC_PROPERTY("FOUR", four),
|
|
};
|
|
|
|
napi_value result = nullptr;
|
|
napi_define_class(env, "Number", NAPI_AUTO_LENGTH, NumberConstructor, nullptr,
|
|
sizeof(descriptors) / sizeof(*descriptors), descriptors, &result);
|
|
|
|
napi_set_named_property(env, exports, "Number", result);
|
|
return exports;
|
|
}
|
|
|
|
static napi_module numberModule = {
|
|
.nm_version = 1,
|
|
.nm_flags = 0,
|
|
.nm_filename = nullptr,
|
|
.nm_register_func = Export,
|
|
.nm_modname = "number",
|
|
.nm_priv = ((void*)0),
|
|
.reserved = { 0 },
|
|
};
|
|
|
|
extern "C" __attribute__((constructor)) void NumberRegister()
|
|
{
|
|
napi_module_register(&numberModule);
|
|
} |