从C++调用 C 库时获取"Symbol Lookup Error"(节点.js插件)

Getting "Symbol Lookup Error" when calling C library from C++ (Node.js Addon)

本文关键字:Error 节点 js 插件 Lookup Symbol 调用 获取 C++      更新时间:2023-10-16

我正在开发一个Node.js插件,该插件需要包装C++中C库中的对象,以便可以从客户端JavaScript(用CoffeeScript编写)访问它们。

C++模块进行编译,但当我尝试通过Node.js JavaScript运行它时,无法使用调试时遇到问题的symbol lookup error调用C库。

错误如下:
node: symbol lookup error: /var/lib/cloud9/ledscape-wrapper/wrapper/build/Release/wrapper.node: undefined symbol: ledscape_init

wrapper.node是已编译的包,ledscape_init是我试图调用的库中的函数。

我已经尝试跟踪代码,并在多个文件中找到相关的片段。我放弃了我认为无关的台词。

# "AllFade.coffee"
@ledscape = require "./ledscape.js"
@frames[1] = @ledscape.LedscapeInit()
# "Ledscape.coffee"
wrapper = require "./build/Release/wrapper"
module.exports = wrapper

包装纸.cc

extern "C" {
#include <ledscape.h>
}
#include <node.h>
#include <v8.h>
#include <node_object_wrap.h>
#include "LedscapeWrapper.h"
Handle<Value> LedscapeInit(const Arguments& args) {
    HandleScope scope;
    return scope.Close(LedscapeWrapper::NewInstance(args));
}
void InitAll(Handle<Object> exports, Handle<Object> module) {
    LedscapeWrapper::Init(module);
    NODE_SET_METHOD(exports, "LedscapeInit", LedscapeInit);
}
NODE_MODULE(wrapper, InitAll)

LedscapeWrapper.h

extern "C" {
#include <ledscape.h>
}
#include <node.h>
#include <node_object_wrap.h>
using namespace v8;
class LedscapeWrapper : public node::ObjectWrap {
    public:
        static void Init(v8::Handle<v8::Object> exports);
        static Handle<Value> NewInstance(const Arguments& args);
        inline ledscape_t* value() const { return value_; }
    private:
        explicit LedscapeWrapper(ledscape_t* value = ledscape_init(1));
        ~LedscapeWrapper();
        static Handle<Value> New(const Arguments& args);
        static v8::Persistent<v8::Function> constructor;
        ledscape_t* value_;
};

LedscapeWrappe.cpp

extern "C" {
#include <ledscape.h>
}
#include <node.h>
#include "LedscapeWrapper.h"
using namespace v8;
void LedscapeWrapper::Init(Handle<Object> exports) {
    Local<FunctionTemplate> tpl = FunctionTemplate::New(New);
    tpl->SetClassName(String::NewSymbol("LedscapeWrapper"));
    tpl->InstanceTemplate()->SetInternalFieldCount(1);
    constructor = Persistent<Function>::New(tpl->GetFunction());
    exports->Set(String::NewSymbol("LedscapeWrapper"), constructor);
}
Handle<Value> LedscapeWrapper::New(const Arguments& args) {
    HandleScope scope;
    if(args.IsConstructCall()) {
        ledscape_t* ledscape = ledscape_init(args[0]->NumberValue());
        LedscapeWrapper* obj = new LedscapeWrapper(ledscape);
        obj->Wrap(args.This());
        return args.This();
    }
    else {
        const int argc = 1;
        Local<Value> argv[argc] = { args[0] };
        return scope.Close(constructor->NewInstance(argc, argv));
    }
}
Handle<Value> LedscapeWrapper::NewInstance(const Arguments& args) {
    HandleScope scope;
    const int argc = 1;
    Handle<Value> argv[argc] = { args[0] };
    Local<Object> instance = constructor->NewInstance(argc, argv);
    return scope.Close(instance);
}

装订石膏

{
  "targets": [{
    "target_name": "wrapper",
    "sources": ["wrapper.cc","LedscapeWrapper.cpp","LedscapeFrameWrapper.cpp"],
    'include_dirs': ['/opt/ledscape/'],
    'link_settings': {  'library_dirs': ['/opt/ledscape']  },
  }],
}

我认为问题出在LedscapeWrapper.cpp中对ledscape_init()的一个调用中,它找不到库(ledscape.h),但我主要不是C/C++开发人员。

我试图查看来自GNU或Node的nm工具,但它拒绝检查.node文件,而且我在网上找不到任何使用指针。

发生此问题的原因是,实际程序找不到动态库(.so文件)我建议创建一个动态库并将其添加到当前查找路径,以便在linux 中使用/usr/lib

对我有用的是用封装包含的C头文件

#ifdef __cplusplus
extern "C"
{
#endif

#ifdef __cplusplus
}
#endif

如此排列(来自https://github.com/bartobri/base64-simple):

// Copyright (c) 2017 Brian Barto
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the MIT License. See LICENSE for more details.
#ifndef BASE64SIMPLE_H
#define BASE64SIMPLE_H 1
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdlib.h>
/*
 * Function Prototypes
 */
char *base64simple_encode(unsigned char *, size_t);
unsigned char *base64simple_decode(char *, size_t, size_t *);
#ifdef __cplusplus
}
#endif
#endif

更多信息:https://stackoverflow.com/a/949889