如何在python中通过swig创建的c ++扩展来迭代映射

时间:2012-01-29 04:13:31

标签: swig

在我的c ++扩展中,我有一个名为的公共方法:     map getMap();

我已将头文件包含在Example.i接口文件中。

但是当我在python中时,我怎么能通过地图进行交流?

2 个答案:

答案 0 :(得分:2)

工作示例(Windows)。重要的一点是,您必须使用%template语句(请参阅x.i语句)实例化要公开的每个模板,并为其指定合法的Python名称。

x.cpp

#define X_EXPORTS
#include "x.h"

X_API mapii_t getMap()
{
    mapii_t m;
    m[1]=2;
    m[4]=8;
    m[5]=10;
    return m;
}

x.h

#pragma once

#ifdef X_EXPORTS
#define X_API __declspec(dllexport)
#else
#define X_API __declspec(dllimport)
#endif

#include <map>
typedef std::map<int,int> mapii_t;
X_API mapii_t getMap();

x.i

%module x

%{
    #include "x.h"
%}

// Let swig understand __declspec and other "window-isms"
%include <windows.i>
%include <std_map.i>

// instantiate template and give it a Pythonic name.
%template(mapii_t) std::map<int,int>;
%include "x.h"

生成文件

_x.pyd: x_wrap.cxx x.dll
    cl /LD /W3 /MD /EHsc /IC:\Python27\include x_wrap.cxx -link /OUT:_x.pyd /libpath:C:\Python27\libs x.lib

x.dll: x.cpp
    cl /LD /W4 /MD /EHsc x.cpp

x_wrap.cxx: x.i
    swig -c++ -python x.i

用法:

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import x
>>> a=x.getMap()
>>> a
<x.mapii_t; proxy of <Swig Object of type 'std::map< int,int > *' at 0x022C4200> >
>>> for k,v in a.items():
...  print k,v
...
1 2
4 8
5 10

答案 1 :(得分:0)

你应该可以像使用python dict一样使用地图。它支持iteritems,iterkeys等。你的代码中有%include "std_map.i"吗?你有%模板声明吗?由于您没有显示您的代码,因此很难猜测。