创建Node.js插件时出现了一个尴尬的错误。
错误讯息:
错误:/media/psf/fluxdb/build/Release/flux.node:undefined symbol:_ZN4flux20SinglyLinkedListWrapIiE11constructorE
我正在尝试使用模板ObjectWrap来重用各种类型。代码编译时没有错误,但是当我在JS中需要* .node文件时,我得到一个未定义的符号错误。
以下是我的Template类代码:
using namespace node;
using namespace v8;
namespace flux {
template <typename T>
class SinglyLinkedListWrap : public ObjectWrap {
public:
static void Init(Handle<Object> exports, const char *symbol) {
// Prepare constructor template
Local<FunctionTemplate> tpl = FunctionTemplate::New(New);
tpl->SetClassName(String::NewSymbol(symbol));
tpl->InstanceTemplate()->SetInternalFieldCount(1);
// exports
constructor = Persistent<Function>::New(tpl->GetFunction());
exports->Set(String::NewSymbol(symbol), constructor);
}
protected:
SinglyLinkedList<T> *list_;
private:
SinglyLinkedListWrap() {
list_ = new SinglyLinkedList<T>();
}
~SinglyLinkedListWrap() {
delete list_;
}
SinglyLinkedList<T> *list() {
return list_;
}
static Persistent<Function> constructor;
// new SinglyLinkedList or SinglyLinkedList() call
static Handle<Value> New(const Arguments& args) {
HandleScope scope;
if (args.IsConstructCall()) {
// Invoked as constructor: `new SinglyLinkedList(...)`
SinglyLinkedListWrap<T> *obj = new SinglyLinkedListWrap<T>();
obj->Wrap(args.This());
return scope.Close(args.This());
} else {
// Invoked as plain function `SinglyLinkedList(...)`, turn into construct call.
const int argc = 1;
Local<Value> argv[argc] = {args[0]};
return scope.Close(constructor->NewInstance(argc, argv));
}
}
};
}
感谢您的帮助:)
答案 0 :(得分:0)
我通过删除构造函数引用并直接使用tpl-&gt; GetFunction()来解决它。