-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements `napi_create_date()` as well as `napi_is_date()` to allow working with JavaScript Date objects. PR-URL: #25917 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
d6759db
commit e72cb94
Showing
7 changed files
with
227 additions
and
0 deletions.
There are no files selected for viewing
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,11 @@ | ||
{ | ||
"targets": [ | ||
{ | ||
"target_name": "test_date", | ||
"sources": [ | ||
"../entry_point.c", | ||
"test_date.c" | ||
] | ||
} | ||
] | ||
} |
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,21 @@ | ||
'use strict'; | ||
|
||
const common = require('../../common'); | ||
|
||
// This tests the date-related n-api calls | ||
|
||
const assert = require('assert'); | ||
const test_date = require(`./build/${common.buildType}/test_date`); | ||
|
||
const dateTypeTestDate = test_date.createDate(1549183351); | ||
assert.strictEqual(test_date.isDate(dateTypeTestDate), true); | ||
|
||
assert.strictEqual(test_date.isDate(new Date(1549183351)), true); | ||
|
||
assert.strictEqual(test_date.isDate(2.4), false); | ||
assert.strictEqual(test_date.isDate('not a date'), false); | ||
assert.strictEqual(test_date.isDate(undefined), false); | ||
assert.strictEqual(test_date.isDate(null), false); | ||
assert.strictEqual(test_date.isDate({}), false); | ||
|
||
assert.strictEqual(test_date.getDateValue(new Date(1549183351)), 1549183351); |
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,65 @@ | ||
#define NAPI_EXPERIMENTAL | ||
|
||
#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]; | ||
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); | ||
|
||
NAPI_ASSERT(env, argc >= 1, "Wrong number of arguments"); | ||
|
||
napi_valuetype valuetype0; | ||
NAPI_CALL(env, napi_typeof(env, args[0], &valuetype0)); | ||
|
||
NAPI_ASSERT(env, valuetype0 == napi_number, | ||
"Wrong type of arguments. Expects a number as first argument."); | ||
|
||
double time; | ||
NAPI_CALL(env, napi_get_value_double(env, args[0], &time)); | ||
|
||
napi_value date; | ||
NAPI_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; | ||
|
||
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, &date, NULL, NULL)); | ||
NAPI_CALL(env, napi_is_date(env, date, &is_date)); | ||
NAPI_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; | ||
|
||
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, &date, NULL, NULL)); | ||
NAPI_CALL(env, napi_get_date_value(env, date, &value)); | ||
NAPI_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_NAPI_PROPERTY("createDate", createDate), | ||
DECLARE_NAPI_PROPERTY("isDate", isDate), | ||
DECLARE_NAPI_PROPERTY("getDateValue", getDateValue), | ||
}; | ||
|
||
NAPI_CALL(env, napi_define_properties( | ||
env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors)); | ||
|
||
return exports; | ||
} | ||
EXTERN_C_END |