1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2016 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#ifndef _WIN32
#include <unistd.h>
#define Sleep(x) usleep((x)*1000)
#endif
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
// Custom data type: This serves as an example of how external
// libraries could be hooked in, populate their objects and send them to JS.
struct data_t {
int index;
int data;
};
// Unlike test/cpp/ayncprogressworker.cpp this test is explicitly templated.
template<typename T>
class ProgressWorker : public AsyncProgressWorkerBase<T> {
public:
ProgressWorker(
Callback *callback
, Callback *progress
, int milliseconds
, int iters)
: AsyncProgressWorkerBase<T>(callback), progress(progress)
, milliseconds(milliseconds), iters(iters) {}
~ProgressWorker() {}
void Execute (
const typename AsyncProgressWorkerBase<T>::ExecutionProgress& progress) {
data_t data;
for (int i = 0; i < iters; ++i) {
data.index = i;
data.data = i * 2;
progress.Send(&data, sizeof( data ));
Sleep(milliseconds);
}
}
void HandleProgressCallback(const T *data, size_t size) {
HandleScope scope;
v8::Local<v8::Object> obj = Nan::New<v8::Object>();
Nan::Set(
obj,
Nan::New("index").ToLocalChecked(),
New<v8::Integer>(data->index));
Nan::Set(
obj,
Nan::New("data").ToLocalChecked(),
New<v8::Integer>(data->data));
v8::Local<v8::Value> argv[] = { obj };
progress->Call(1, argv);
}
private:
Callback *progress;
int milliseconds;
int iters;
};
NAN_METHOD(DoProgress) {
Callback *progress = new Callback(info[2].As<v8::Function>());
Callback *callback = new Callback(info[3].As<v8::Function>());
AsyncQueueWorker(new ProgressWorker<data_t>(
callback
, progress
, To<uint32_t>(info[0]).FromJust()
, To<uint32_t>(info[1]).FromJust()));
}
NAN_MODULE_INIT(Init) {
Set(target
, New<v8::String>("a").ToLocalChecked()
, New<v8::FunctionTemplate>(DoProgress)->GetFunction());
}
NODE_MODULE(asyncprogressworkerstream, Init)
|