我尝试在Python中使用c ++类进行套接字通信。因此,我创建了一个使用nngpp的类。将Swigged文件导入python时,出现ImportError:未定义符号:nng_msg_insert。该类的定义是:
/* commclass.h */
#include <nngpp/nngpp.h>
#include <nngpp/protocol/req0.h>
#include <nngpp/protocol/rep0.h>
#include <nngpp/msg_body.h>
#include <nngpp/msg_header.h>
#include <nngpp/msg.h>
#include <nngpp/socket.h>
#include <nngpp/view.h>
#include <string>
#include <nlohmann/json.hpp>
//#include <thread>
#include <iostream>
#include <cstdio>
#include "/usr/local/include/nng/nng.h"
//#include <memory>
#include <chrono>
using json = nlohmann::json;
class CommIF
{
private:
nng::socket socket;
nng::msg message;
int msg_size;
public:
CommIF(const std::string option, std::string ipToListen, std::string ipToDial)
{
message = nng::make_msg(0);
if (option.compare("rep") == 0)
{
socket = std::move(nng::rep::v0::open());
}
else if (option.compare("req") == 0)
{
socket = std::move(nng::req::v0::open());
}
else
{
printf("EXCEPTION");
}
socket.listen(ipToListen.c_str());
bool connected = false;
while (connected == false)
{
try
{
socket.dial(ipToDial.c_str());
connected = true;
std::cout << "successfully connected\n";
}
catch (const nng::exception &e)
{
std::cerr << e.what() << "; retry in 1 s" << '\n';
//std::this_thread::sleep_for(std::chrono::seconds(1));
}
}
msg_size = 0;
}
};
swig的接口文件是:
/* commclass.i */
%module commclass
%{
#include "src/commclass.h"
%}
%include "src/commclass.h"
然后我从命令python3 build_commclass.py build_ext --inplace
开始构建过程。文件build_commclass.py是以下
from distutils.core import setup, Extension
import os
name = "commclass"
version = "0.0.1"
os.environ["CC"] = "g++"
setup(name = name, version = version, ext_modules = [Extension(
name = '_commclass',
sources = ["commclass.i"],#"src/commclass.h"],
include_dirs = ['src'],#'/home/user1/Documents/extLibs','/usr/local/include'],
swig_opts = ["-c++", "-modern"]
)])
现在将类导入python时,出现上述错误。我在Google和stackoverflow上搜索了很多内容,我很确定这是一个链接器问题。我还使用distutils.core的编译器和链接器选项尝试了很多不同的方法,但没有找到解决方案。
编辑1: 我现在将界面文件更改如下
/* commclass.i */
/* module*/
%module commclass
%{
#include "/usr/local/include/nng/nng.h"
#include "src/nngpp/nngpp.h"
#include "src/nngpp/protocol/req0.h"
#include "src/nngpp/protocol/rep0.h"
#include "src/nngpp/socket.h"
#include "src/nngpp/msg.h"
#include "src/nngpp/aio.h"
#include "src/nngpp/aio_view.h"
#include "src/nngpp/msg_body.h"
#include "src/nngpp/msg_header.h"
#include "src/commclass.h"
%}
%include "/usr/local/include/nng/nng.h"
%include "src/commclass.h"
我现在在python中导入时遇到相同的错误,但是未定义的符号发生了变化。现在是nng_aio_set_iov
。 nng_msg_insert
和nng_aio_set_iov
都在我现在包含的文件nng.h中定义。我现在很困惑。
答案 0 :(得分:1)
SWIG仅为默认由%include
直接指定的定义生成接口。 nng_msg_insert
中未定义src/commclass.h
。您需要其他%include
语句来引入定义。
请注意,您可以更改默认设置,以使用#include
SWIG标志将其递归到所有-includeall
语句中,但是通常您不希望整个<iostream>
,<cstdio>
, <string>
等接口进行包装,如果不付出很多额外的努力,它可能无法正常工作。