-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1165480
commit 3d0a7e0
Showing
38 changed files
with
140 additions
and
89 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
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,59 @@ | ||
#ifndef JS_NATIVE_API_COMMON_INL_H_ | ||
#define JS_NATIVE_API_COMMON_INL_H_ | ||
|
||
#include <js_native_api.h> | ||
#include "common.h" | ||
|
||
#if !defined(__wasm__) || (defined(__EMSCRIPTEN__) || defined(__wasi__)) | ||
#include <stdio.h> | ||
#endif | ||
|
||
inline void add_returned_status(napi_env env, | ||
const char* key, | ||
napi_value object, | ||
char* expected_message, | ||
napi_status expected_status, | ||
napi_status actual_status) { | ||
char napi_message_string[100] = ""; | ||
napi_value prop_value; | ||
#if !defined(__wasm__) || (defined(__EMSCRIPTEN__) || defined(__wasi__)) | ||
if (actual_status != expected_status) { | ||
snprintf(napi_message_string, | ||
sizeof(napi_message_string), | ||
"Invalid status [%d]", | ||
actual_status); | ||
} | ||
#endif | ||
|
||
NODE_API_CALL_RETURN_VOID( | ||
env, | ||
napi_create_string_utf8( | ||
env, | ||
(actual_status == expected_status ? expected_message | ||
: napi_message_string), | ||
NAPI_AUTO_LENGTH, | ||
&prop_value)); | ||
NODE_API_CALL_RETURN_VOID( | ||
env, napi_set_named_property(env, object, key, prop_value)); | ||
} | ||
|
||
inline void add_last_status(napi_env env, | ||
const char* key, | ||
napi_value return_value) { | ||
napi_value prop_value; | ||
const napi_extended_error_info* p_last_error; | ||
NODE_API_CALL_RETURN_VOID(env, napi_get_last_error_info(env, &p_last_error)); | ||
|
||
NODE_API_CALL_RETURN_VOID( | ||
env, | ||
napi_create_string_utf8( | ||
env, | ||
(p_last_error->error_message == NULL ? "napi_ok" | ||
: p_last_error->error_message), | ||
NAPI_AUTO_LENGTH, | ||
&prop_value)); | ||
NODE_API_CALL_RETURN_VOID( | ||
env, napi_set_named_property(env, return_value, key, prop_value)); | ||
} | ||
|
||
#endif // JS_NATIVE_API_COMMON_INL_H_ |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
#ifndef JS_NATIVE_API_ENTRY_POINT_H_ | ||
#define JS_NATIVE_API_ENTRY_POINT_H_ | ||
|
||
#include <node_api.h> | ||
|
||
EXTERN_C_START | ||
napi_value Init(napi_env env, napi_value exports); | ||
EXTERN_C_END | ||
|
||
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init) | ||
|
||
#endif // JS_NATIVE_API_ENTRY_POINT_H_ |
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
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
Oops, something went wrong.