从Web工作线程调用C ++ v8函数

时间:2013-11-03 22:37:12

标签: c++ node.js npm v8 node-gyp

我在我的javascript代码中创建了一个Web工作线程。我试图使用node-gyp和V8从线程调用C ++函数。但我无法让它发挥作用。

这是hello.cc的代码

#include <v8.h>

using namespace v8;
extern std::string myhello();
Handle<Value> Method(const Arguments& args) { 
  HandleScope scope;
  return scope.Close(String::New("hello"));
}

void init(Handle<Object> exports) {
  exports->Set(String::NewSymbol("hello"),
      FunctionTemplate::New(Method)->GetFunction()
    );
}

NODE_MODULE(hello, init)

这是myhello.js的代码

var addon = require('./build/Release/hello');
var thread = require('webworker-threads');

var t = thread.create();
console.log(t.eval("addon.hello()")); 

当我运行node myhello.js时,我得到以下输出

{ id: 0,
  eval: [Function: eval],
  load: [Function: load],
  emit: [Function: emit],
  emitSerialized: [Function: emitSerialized],
  destroy: [Function: destroy],
  on: [Function],
  once: [Function],
  removeAllListeners: [Function],
  dispatchEvents: [Function],
  _on: {} }

我希望在控制台上打印“你好”。

感谢任何帮助或指示。

1 个答案:

答案 0 :(得分:0)

我看到2个问题:

  1. t.eval返回线程本身(从控制台输出中可以看到)。代码执行的结果传递给回调,如果提供了一个
  2. 你需要在传递给eval的代码中使用addon,闭包语义在这里不起作用。但看起来这是不可能的:在线程上下文中没有定义require。我认为这是为了防止竞争条件问题。另请参阅https://github.com/audreyt/node-webworker-threads/issues/15