使用N-API将数据流式传输到Node.js C ++ Addon中

问题描述 投票:2回答:1

我正在为NodeJS构建一个C ++插件,我希望将数据从C ++异步流式传输到Node。我发现这篇文章,https://nodeaddons.com/streaming-data-into-a-node-js-c-addon/,然而;我想使用N-API而不是NAN。

我一直在搜索NodeJS文档和示例,以及寻找其他资源和示例,但没有遇到资源,告诉我如何实现这一目标。这是我第一次为NodeJS编写C ++插件。

一个可以帮助我入门的例子是一个插件,它使用N-API每秒向Node发送一个虚拟字符串,Node会将字符串打印到控制台。

c++ node.js node.js-addon n-api
1个回答
2
投票

这是一个基于EventEmitter概念的片段,它模拟从本机层(C / C ++)读取传感器并将数据推送到Node.js(JavaScript)层。在这个例子中,我们使用node-addon-api,它是N-API的仅头文件C ++包装器。在这个例子中,我们使用了一个for循环(只有五个iteratins),实际上它可能是一个无限循环,连续读取传感器输出并将数据推送到JS层。原生层可以决定何时将从传感器收集的数据报告给JS层。 JS将为订阅的事件接收异步数据。

#include <napi.h>
#include <thread>

Napi::Value CallEmit(const Napi::CallbackInfo &info)
{
    char buff1[128];
    char buff2[128];
    int  sensor1 = 0;
    int  sensor2 = 0;

    Napi::Env env = info.Env();

    Napi::Function emit = info[0].As<Napi::Function>();
    emit.Call(  {Napi::String::New(env, "start")}  );

    for (int i = 0; i < 5; i++)
    {
        // Let us simulate some delay for collecting data from its sensors
        std::this_thread::sleep_for(std::chrono::seconds(2));

        sprintf(buff1, "sensor1 data %d ...", ++sensor1);

        emit.Call( { Napi::String::New(env, "sensor1"),
                   Napi::String::New(env, buff1 ) } );

        // Let, sensor 2 data is reported half the rate as sensor1
        if (i % 2)
        {
            sprintf(buff2, "sensor2 data %d ...", ++sensor2);
            emit.Call({ Napi::String::New(env, "sensor2"),
                       Napi::String::New(env, buff2) });
        }
    }

    emit.Call( {Napi::String::New(env, "end")} );
    return Napi::String::New( env, "OK" );
}

模块注册片段是

#include <napi.h>

Napi::Object Init( Napi::Env env, Napi::Object exports )
{
  exports.Set(Napi::String::New(env, "callEmit"), Napi::Function::New(env, CallEmit));
  return exports;
}

NODE_API_MODULE( myncpp1, Init )

编译上面的本机代码,一旦成功构建,就可以运行以下node.js JavaScript代码来测试它。

'use strict'

const EventEmitter = require('events').EventEmitter
const addon = require('bindings')('myncpp1')

// General theme of EventEmitter is: notify me when it is ready

function Main() {
    const emitter = new EventEmitter()

    emitter.on('start', () => {
        console.log( '### Sensor reading started ...');
    })

    emitter.on('sensor1', (evt) => {
        // This module will be called as on when the
        // sensor1 data available for consuming from JS
        console.log(evt);
    })

    emitter.on('sensor2', (evt) => {
        console.log(evt);
    })

    emitter.on('end', () => {
        console.log('### Sensor reading Ended');
    })

    addon.callEmit( emitter.emit.bind(emitter) )
}

Main();

代码段应生成以下输出。

### Sensor reading started ...
sensor1 data 1 ...
sensor1 data 2 ...
sensor2 data 1 ...
sensor1 data 3 ...
sensor1 data 4 ...
sensor2 data 2 ...
sensor1 data 5 ...
### Sensor reading Ended
© www.soinside.com 2019 - 2024. All rights reserved.