使用SWIG在Python中访问struct

时间:2015-08-19 14:18:26

标签: python c struct swig

我是否必须在接口文件中完全重新定义给定的结构(在.c文件中给出,包含在编译中)以使其可以通过python访问?

修改 如果它是在头文件中定义的,我只需要在接口文件中包含头文件,对吗?

1 个答案:

答案 0 :(得分:2)

我认为您不必这样做,除非您想要将成员函数添加到C结构中。

/* file : vector.h */
...
typedef struct {
    double x,y,z;
} Vector;


// file : vector.i
%module mymodule
%{
    #include "vector.h"
%}

%include "vector.h"          // Just grab original C header file

将成员函数添加到C结构

/* file : vector.h */
...
typedef struct {
    double x,y,z;
} Vector;


// file : vector.i
%module mymodule
%{
    #include "vector.h"
%}
%extend Vector {             // Attach these functions to struct Vector
    Vector(double x, double y, double z) {
        Vector *v;
        v = (Vector *) malloc(sizeof(Vector));
        v->x = x;
        v->y = y;
        v->z = z;
        return v;
    }
    ~Vector() {
        free($self);
    }
    double magnitude() {
        return sqrt($self->x*$self->x+$self->y*$self->y+$self->z*$self->z);
    }
    void print() {
        printf("Vector [%g, %g, %g]\n", $self->x,$self->y,$self->z);
    }
};

SWIG-1.3 Documentation