mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 06:19:07 +00:00

This renames the macros used in the tests from `NAPI_*` to `NODE_API_*`. PR-URL: https://github.com/nodejs/node/pull/37217 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
#include <js_native_api.h>
|
|
#include "../common.h"
|
|
|
|
static napi_value createDate(napi_env env, napi_callback_info info) {
|
|
size_t argc = 1;
|
|
napi_value args[1];
|
|
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL));
|
|
|
|
NODE_API_ASSERT(env, argc >= 1, "Wrong number of arguments");
|
|
|
|
napi_valuetype valuetype0;
|
|
NODE_API_CALL(env, napi_typeof(env, args[0], &valuetype0));
|
|
|
|
NODE_API_ASSERT(env, valuetype0 == napi_number,
|
|
"Wrong type of arguments. Expects a number as first argument.");
|
|
|
|
double time;
|
|
NODE_API_CALL(env, napi_get_value_double(env, args[0], &time));
|
|
|
|
napi_value date;
|
|
NODE_API_CALL(env, napi_create_date(env, time, &date));
|
|
|
|
return date;
|
|
}
|
|
|
|
static napi_value isDate(napi_env env, napi_callback_info info) {
|
|
napi_value date, result;
|
|
size_t argc = 1;
|
|
bool is_date;
|
|
|
|
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &date, NULL, NULL));
|
|
NODE_API_CALL(env, napi_is_date(env, date, &is_date));
|
|
NODE_API_CALL(env, napi_get_boolean(env, is_date, &result));
|
|
|
|
return result;
|
|
}
|
|
|
|
static napi_value getDateValue(napi_env env, napi_callback_info info) {
|
|
napi_value date, result;
|
|
size_t argc = 1;
|
|
double value;
|
|
|
|
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &date, NULL, NULL));
|
|
NODE_API_CALL(env, napi_get_date_value(env, date, &value));
|
|
NODE_API_CALL(env, napi_create_double(env, value, &result));
|
|
|
|
return result;
|
|
}
|
|
|
|
EXTERN_C_START
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
napi_property_descriptor descriptors[] = {
|
|
DECLARE_NODE_API_PROPERTY("createDate", createDate),
|
|
DECLARE_NODE_API_PROPERTY("isDate", isDate),
|
|
DECLARE_NODE_API_PROPERTY("getDateValue", getDateValue),
|
|
};
|
|
|
|
NODE_API_CALL(env, napi_define_properties(
|
|
env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors));
|
|
|
|
return exports;
|
|
}
|
|
EXTERN_C_END
|