如何在SWIG中访问声明的模板结构变量?

时间:2015-03-20 17:07:40

标签: python c++ global-variables swig

我正在尝试使用SWIG 3.0.5从C ++生成Python定义文件。这些定义是模板结构,在我的玩具foo.h中定义为:

template<typename T> struct LimitDef
{
    T min;
    T max;
    int otherstuff;
    int etc;
}

namespace ProjectLimits
{
    const LimitDef<int>    Limit1 = {  -5, 100, 42,  0};
    const LimitDef<double> Limit2 = {-1.0, 1.0,  0, 42};
    ...
}

在我对应的foo.i SWIG界面中,我有:

%module foo
%{
#include "foo.h"
%}

%include "foo.h"

%template(LimitDef_int) LimitDef<int>;
%template(LimitDef_double) LimitDef<double>;

编译为Python,我可以访问新实例化的模板名称(并创建没有问题的新LimitDef_int个对象),我可以看到声明的Limit#变量,但类型不行up - 已经声明的vars是裸的,无法访问的对象指针,没有__swig_getmethods__等等:

>>> import foo
>>> newlim = foo.LimitDef_int()
>>> newlim.min = 5
>>> print newlim.min
5
>>> print newlim
<foo.LimitDef_int; proxy of <Swig Object of type 'LimitDef< int > *' at 0x17f2338> >
>>> foo.Limit1
<Swig Object of type 'LimitDef< int> *' at 0x17f2b30>
>>> print foo.Limit1.min
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'SwigPyObject' object has no attribute 'min'
>>> dir(foo.Limit1.min)
['__class__', '__cmp__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__hex__', '__init__', '__int__', '__le__', '__long__', '__lt__', '__ne__', '__new__', '__oct__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'acquire', 'append', 'disown', 'next', 'own']

我已经尝试将%template指令移到%include "foo.h"之前,以便在解析声明的变量时新的实例化模板定义到位,但是当我得到Error: Template 'LimitDef' undefined时试着建立。

我已经尝试%extend特定的模板类型来提供访问者(因为这是我真正需要的),例如:

%extend LimitDef<int> {
    int get_min() { return (*$self).min; }
};

但同样,这仅适用于新创建的LimitDef_int类型及其实例; Limit1等不受影响(即使%extend块在%include "foo.h"之前)。

我不太关心创建新实例,因为我能够访问那些现有的Limit#变量。如果可能的话我不想修改源代码;我的实际项目文件定义了100多个这样的常量。

我错过了什么让我foo.Limit1.min返回-5

1 个答案:

答案 0 :(得分:0)

SWIG手册 - 36.3.3 [Python; Global variables]

  

为了提供对C全局变量的访问,SWIG创建了一个名为cvar的特殊对象,该对象被添加到每个SWIG生成的模块中。然后,全局变量作为该对象的属性进行访问。

因此可以在Limit1找到foo.cvar.Limit1的代理对象。

另见How C/C++ global variables are implemented in python?