gpt4 book ai didi

python - 如何在 swig & python 中为没有默认构造函数的 std::pair<> 创建接口(interface)?

转载 作者:太空狗 更新时间:2023-10-29 21:35:18 25 4
gpt4 key购买 nike

我将使用 swig 制作 python 包装器。我在 c++ dll 中有一些类和类型。

class Image
{
public:
Image(const Image&);
Image& operator= (const Image&);
~Image();

unsigned int width() const;
unsigned int height() const;
};
struct Property
{
std::string path;
std::string datetime;
};
typedef std::pair<Image, Property> MyImage;
class Manage
{
public:
Manage();
~Manage();
void addMyImage(MyImage img);
MyImage getMyImage(int index);
};

我按照这个制作了 swig 接口(interface)文件:

%include "std_pair.i"
%template(MyImage) std::pair<Image, Property>;
class Image
{
public:
Image(const Image&);
~Image();

unsigned int width() const;
unsigned int height() const;
};
class Manage
{
public:
Manage();
~Manage();

void addMyImage(std::pair<Image, Property> img);
std::pair<Image, Property> getMyImage(int index);
};

我运行命令 swig -c++ -python Test.swig .

我在Visual Studio中编译Test_wrapper.cxx,出现如下错误:

error C2512: 'Image' : no appropriate default constructor available

所以我尝试了 swig -c++ -python -nodefaultctor Test.swig .但它是一样的。

============更新============

问题是std::pair<Image, Property> .当对创建时,它调用参数的构造函数。图像没有默认构造函数。所以出现错误。

我该如何解决?谢谢。

最佳答案

我终于想出了一个方法来完成这项工作。首先,因为你有 addMyImage 的按值传递语义和 getMyImage你需要使用 %feature("valuewrapper")在生成的代码中打开按值包装转换,否则您将在生成的代码中获得默认构造的对。

其次,您需要防止 SWIG 暴露 std::pair不带参数的构造函数。 (我认为这与 %nodefaultctor 指令不同,因为这样的构造函数是明确编写的,而不是简单地假设存在)。我花了很长时间才意识到最简单(?)方法的正确语法,我相信这是使用高级重命名。

因此您需要在 %include <std_pair.i> 之前添加两行指令:

%feature("valuewrapper") std::pair<Image,Property>;
%rename("$ignore",$isconstructor,fullname=1) "std::pair<(Image,Property)>";
%include "std_pair.i"

然而,这确实禁用了 std::pair<Image,Property> 中的所有构造函数.

关于python - 如何在 swig & python 中为没有默认构造函数的 std::pair<> 创建接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43113331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com