Skip to content

Commit 7f4a9ed

Browse files
Reorganize examples into categorized folders (#341)
* refactor: create directory structure to organize exmaples * test: update test_all to work with new directory structure * fix: bug in test_all if no package.json scripts * test: cleanup output of test_all * fix: remove default test script that throws from thread_safe_function_with_object_wrap * fix: remove build_with_cmake from .gitignore * fix: swith to ' from " and remove subdir from getAllTests call * test: add extra test cases for npm start and just running the pkgJson.main with node * refactor: move all examples to src directory * refactor: add numbers to categories so they are ordered in the src folder * refactor: simplify getAllExamples in test_all.js * docs: add directory structure to README.md * docs: update directory structure to README.md * docs: update directory structure to README.md * docs: update directory structure to README.md * docs: update directory structure example in readme * add back build_with_cmake --------- Co-authored-by: legendecas <[email protected]>
1 parent e68ad0f commit 7f4a9ed

File tree

274 files changed

+167
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

274 files changed

+167
-121
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
build/
2-
build_with_cmake/
32
node_modules/
43
Debug/
54
Release/

README.md

+26-18
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

1_hello_world/node-addon-api-addon-class/hello.cc src/1-getting-started/1_hello_world/node-addon-api-addon-class/hello.cc

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
class HelloAddon : public Napi::Addon<HelloAddon> {
44
public:
55
HelloAddon(Napi::Env env, Napi::Object exports) {
6-
DefineAddon(exports, {
7-
InstanceMethod("hello", &HelloAddon::Hello, napi_enumerable)
8-
});
6+
DefineAddon(exports,
7+
{InstanceMethod("hello", &HelloAddon::Hello, napi_enumerable)});
98
}
109

1110
private:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

8_passing_wrapped/node-addon-api/myobject.cc src/2-js-to-native-conversion/8_passing_wrapped/node-addon-api/myobject.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ void MyObject::Init(Napi::Env env, Napi::Object exports) {
1212

1313
Napi::FunctionReference* constructor = new Napi::FunctionReference();
1414
*constructor = Napi::Persistent(func);
15-
env.SetInstanceData(constructor); //NOTE: this assumes only 1 class is exported
16-
//for multiple exported classes, need a struct or other mechanism
15+
env.SetInstanceData(constructor); // NOTE: this assumes only 1 class is
16+
// exported for multiple exported classes,
17+
// need a struct or other mechanism
1718

1819
exports.Set("MyObject", func);
1920
}

object-template-demo/nan/object-template-demo.cc src/2-js-to-native-conversion/object-template-demo/nan/object-template-demo.cc

+19-23
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ class NamedInterceptor : public ObjectWrap {
1515
char buf[256];
1616

1717
public:
18-
NamedInterceptor() { std::strncpy(this->buf, "foo", sizeof (this->buf)); }
18+
NamedInterceptor() { std::strncpy(this->buf, "foo", sizeof(this->buf)); }
1919
static NAN_MODULE_INIT(Init);
20-
static v8::Local<v8::Value> NewInstance ();
20+
static v8::Local<v8::Value> NewInstance();
2121
static NAN_METHOD(New);
2222

2323
static NAN_PROPERTY_GETTER(PropertyGetter);
@@ -35,33 +35,32 @@ NAN_METHOD(CreateNew) {
3535

3636
NAN_MODULE_INIT(NamedInterceptor::Init) {
3737
v8::Local<v8::FunctionTemplate> tpl =
38-
Nan::New<v8::FunctionTemplate>(NamedInterceptor::New);
38+
Nan::New<v8::FunctionTemplate>(NamedInterceptor::New);
3939
namedinterceptors_constructor.Reset(tpl);
4040
tpl->SetClassName(Nan::New("NamedInterceptor").ToLocalChecked());
4141
tpl->InstanceTemplate()->SetInternalFieldCount(1);
4242
v8::Local<v8::ObjectTemplate> inst = tpl->InstanceTemplate();
4343

44-
SetNamedPropertyHandler(
45-
inst
46-
, NamedInterceptor::PropertyGetter
47-
, NamedInterceptor::PropertySetter
48-
, NamedInterceptor::PropertyQuery
49-
, NamedInterceptor::PropertyDeleter
50-
, NamedInterceptor::PropertyEnumerator);
44+
SetNamedPropertyHandler(inst,
45+
NamedInterceptor::PropertyGetter,
46+
NamedInterceptor::PropertySetter,
47+
NamedInterceptor::PropertyQuery,
48+
NamedInterceptor::PropertyDeleter,
49+
NamedInterceptor::PropertyEnumerator);
5150

5251
v8::Local<v8::Function> createnew =
53-
Nan::GetFunction(Nan::New<v8::FunctionTemplate>(CreateNew))
54-
.ToLocalChecked();
52+
Nan::GetFunction(Nan::New<v8::FunctionTemplate>(CreateNew))
53+
.ToLocalChecked();
5554
Set(target, Nan::New("create").ToLocalChecked(), createnew);
5655
}
5756

58-
v8::Local<v8::Value> NamedInterceptor::NewInstance () {
57+
v8::Local<v8::Value> NamedInterceptor::NewInstance() {
5958
EscapableHandleScope scope;
6059
v8::Local<v8::FunctionTemplate> constructorHandle =
6160
Nan::New(namedinterceptors_constructor);
6261
v8::Local<v8::Object> instance =
63-
Nan::NewInstance(GetFunction(constructorHandle).ToLocalChecked())
64-
.ToLocalChecked();
62+
Nan::NewInstance(GetFunction(constructorHandle).ToLocalChecked())
63+
.ToLocalChecked();
6564
return scope.Escape(instance);
6665
}
6766

@@ -71,10 +70,9 @@ NAN_METHOD(NamedInterceptor::New) {
7170
info.GetReturnValue().Set(info.This());
7271
}
7372

74-
7573
NAN_PROPERTY_GETTER(NamedInterceptor::PropertyGetter) {
7674
NamedInterceptor* interceptor =
77-
ObjectWrap::Unwrap<NamedInterceptor>(info.Holder());
75+
ObjectWrap::Unwrap<NamedInterceptor>(info.Holder());
7876
if (!std::strcmp(*Nan::Utf8String(property), "prop")) {
7977
info.GetReturnValue().Set(Nan::New(interceptor->buf).ToLocalChecked());
8078
} else {
@@ -84,12 +82,10 @@ NAN_PROPERTY_GETTER(NamedInterceptor::PropertyGetter) {
8482

8583
NAN_PROPERTY_SETTER(NamedInterceptor::PropertySetter) {
8684
NamedInterceptor* interceptor =
87-
ObjectWrap::Unwrap<NamedInterceptor>(info.Holder());
85+
ObjectWrap::Unwrap<NamedInterceptor>(info.Holder());
8886
if (!std::strcmp(*Nan::Utf8String(property), "prop")) {
8987
std::strncpy(
90-
interceptor->buf
91-
, *Nan::Utf8String(value)
92-
, sizeof (interceptor->buf));
88+
interceptor->buf, *Nan::Utf8String(value), sizeof(interceptor->buf));
9389
info.GetReturnValue().Set(info.This());
9490
} else {
9591
info.GetReturnValue().Set(info.This());
@@ -104,8 +100,8 @@ NAN_PROPERTY_ENUMERATOR(NamedInterceptor::PropertyEnumerator) {
104100

105101
NAN_PROPERTY_DELETER(NamedInterceptor::PropertyDeleter) {
106102
NamedInterceptor* interceptor =
107-
ObjectWrap::Unwrap<NamedInterceptor>(info.Holder());
108-
std::strncpy(interceptor->buf, "goober", sizeof (interceptor->buf));
103+
ObjectWrap::Unwrap<NamedInterceptor>(info.Holder());
104+
std::strncpy(interceptor->buf, "goober", sizeof(interceptor->buf));
109105
info.GetReturnValue().Set(True());
110106
}
111107

object-template-demo/napi/object-template-demo.cc src/2-js-to-native-conversion/object-template-demo/napi/object-template-demo.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include <memory>
21
#include <cstring>
2+
#include <memory>
33
#include <string>
44
#include "proxy-template.h"
55

typed_array_to_native/node-addon-api/typed_array_to_native.cc src/2-js-to-native-conversion/typed_array_to_native/node-addon-api/typed_array_to_native.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ static Napi::Value CreateByteArray(const Napi::CallbackInfo& info) {
9494
// unique_ptr ownership.
9595
nativeArray.release();
9696

97-
Napi::Uint8Array byteArray = Napi::Uint8Array::New(info.Env(), arrayLength, arrayBuffer, 0);
98-
97+
Napi::Uint8Array byteArray =
98+
Napi::Uint8Array::New(info.Env(), arrayLength, arrayBuffer, 0);
99+
99100
return byteArray;
100101
}
101102

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

async_work_promise/node-addon-api/addon.cc src/5-async-work/async_work_promise/node-addon-api/addon.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Napi::Value DoHeavyMath(const Napi::CallbackInfo& info) {
1010
return env.Undefined();
1111
}
1212
uint32_t num_1 = info[0].As<Napi::Number>().Uint32Value();
13-
13+
1414
if (!info[1].IsNumber()) {
1515
Napi::TypeError::New(env, "num2 must be a number")
1616
.ThrowAsJavaScriptException();
1717
return env.Undefined();
1818
}
1919
uint32_t num_2 = info[1].As<Napi::Number>().Uint32Value();
20-
20+
2121
DoHeavyMathWorker* worker = new DoHeavyMathWorker(env, num_1, num_2);
2222
worker->Queue();
2323
return worker->GetPromise();

thread_safe_function_with_object_wrap/node-addon-api/package.json src/6-threadsafe-function/thread_safe_function_with_object_wrap/node-addon-api/package.json

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
"version": "1.0.0",
44
"description": "",
55
"main": "index.js",
6-
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
8-
},
96
"author": "",
107
"dependencies": {
118
"bindings": "*",

typed_threadsafe_function/node-addon-api/clock.cc src/6-threadsafe-function/typed_threadsafe_function/node-addon-api/clock.cc

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
#include <chrono>
21
#include <napi.h>
2+
#include <chrono>
33
#include <thread>
44

55
using namespace Napi;
66

77
using Context = Reference<Value>;
88
using DataType = int;
9-
void CallJs(Napi::Env env, Function callback, Context *context, DataType *data);
9+
void CallJs(Napi::Env env, Function callback, Context* context, DataType* data);
1010
using TSFN = TypedThreadSafeFunction<Context, DataType, CallJs>;
1111
using FinalizerDataType = void;
1212

1313
std::thread nativeThread;
1414
TSFN tsfn;
1515

16-
Value Start(const CallbackInfo &info) {
16+
Value Start(const CallbackInfo& info) {
1717
Napi::Env env = info.Env();
1818

1919
if (info.Length() < 2) {
@@ -28,18 +28,19 @@ Value Start(const CallbackInfo &info) {
2828

2929
// Create a new context set to the the receiver (ie, `this`) of the function
3030
// call
31-
Context *context = new Reference<Value>(Persistent(info.This()));
31+
Context* context = new Reference<Value>(Persistent(info.This()));
3232

3333
// Create a ThreadSafeFunction
3434
tsfn = TSFN::New(
3535
env,
36-
info[0].As<Function>(), // JavaScript function called asynchronously
37-
"Resource Name", // Name
38-
0, // Unlimited queue
39-
1, // Only one thread will use this initially
36+
info[0].As<Function>(), // JavaScript function called asynchronously
37+
"Resource Name", // Name
38+
0, // Unlimited queue
39+
1, // Only one thread will use this initially
4040
context,
41-
[](Napi::Env, FinalizerDataType *,
42-
Context *ctx) { // Finalizer used to clean threads up
41+
[](Napi::Env,
42+
FinalizerDataType*,
43+
Context* ctx) { // Finalizer used to clean threads up
4344
nativeThread.join();
4445
delete ctx;
4546
});
@@ -48,7 +49,7 @@ Value Start(const CallbackInfo &info) {
4849
nativeThread = std::thread([count] {
4950
for (int i = 0; i < count; i++) {
5051
// Create new data
51-
int *value = new int(clock());
52+
int* value = new int(clock());
5253

5354
// Perform a blocking call
5455
napi_status status = tsfn.BlockingCall(value);
@@ -69,13 +70,15 @@ Value Start(const CallbackInfo &info) {
6970

7071
// Transform native data into JS data, passing it to the provided
7172
// `callback` -- the TSFN's JavaScript function.
72-
void CallJs(Napi::Env env, Function callback, Context *context,
73-
DataType *data) {
73+
void CallJs(Napi::Env env,
74+
Function callback,
75+
Context* context,
76+
DataType* data) {
7477
// Is the JavaScript environment still available to call into, eg. the TSFN is
7578
// not aborted
7679
if (env != nullptr) {
77-
// On Node-API 5+, the `callback` parameter is optional; however, this example
78-
// does ensure a callback is provided.
80+
// On Node-API 5+, the `callback` parameter is optional; however, this
81+
// example does ensure a callback is provided.
7982
if (callback != nullptr) {
8083
callback.Call(context->Value(), {Number::New(env, *data)});
8184
}
File renamed without changes.
File renamed without changes.

build_with_cmake/node-addon-api/hello.cc src/8-tooling/build_with_cmake/node-addon-api/hello.cc

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
#include <napi.h>
22

3-
43
static Napi::String Method(const Napi::CallbackInfo& info) {
5-
// Napi::Env is the opaque data structure containing the environment in which the request is being run.
6-
// We will need this env when we want to create any new objects inside of the node.js environment
4+
// Napi::Env is the opaque data structure containing the environment in which
5+
// the request is being run. We will need this env when we want to create any
6+
// new objects inside of the node.js environment
77
Napi::Env env = info.Env();
8-
8+
99
// Create a C++ level variable
1010
std::string helloWorld = "Hello, world!";
11-
12-
// Return a new javascript string that we copy-construct inside of the node.js environment
11+
12+
// Return a new javascript string that we copy-construct inside of the node.js
13+
// environment
1314
return Napi::String::New(env, helloWorld);
1415
}
1516

0 commit comments

Comments
 (0)