使用 SWIG 访问 Python 中的结构

Access struct in Python using SWIG

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

编辑: 如果定义在头文件中,我只需要在接口文件中包含头文件就可以了,对吧?

我认为你不必这样做,除非你想向 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