我正在尝试使用 SWIG 在 C 中包装不透明类型,但我不明白如何。我在下面列出了三个文件:
简单库.c:
#include <assert.h>
#include <stdlib.h>
#include "simplelib.h"
struct _simplelib_my_type {
double x;
double y;
};
simplelib_MyType *
simplelib_mytype_create(double x, double y)
{
simplelib_MyType *mt = NULL;
if (mt = calloc(1, sizeof(*mt))) {
mt->x;
mt->y;
}
return mt;
}
void
simplelib_mytype_destroy(simplelib_MyType *mt)
{
if (mt) {
free(mt);
mt = NULL;
}
}
int
simplelib_mytype_calc(const simplelib_MyType *mt, double z, double *res)
{
int ok = 0;
assert(mt);
if (z != 0.0) {
*res = mt->x * mt->y / z;
ok = 1;
}
return ok;
}
简单库.h:
#ifndef SIMPLELIB_H
#define SIMPLELIB_H
typedef struct _simplelib_my_type simplelib_MyType;
simplelib_MyType *simplelib_mytype_create(double x, double y);
void simplelib_mytype_destroy(simplelib_MyType *mt);
int simplelib_mytype_calc(const simplelib_MyType *mt, double z, double *res);
#endif // SIMPLELIB_H
和我的接口文件 simplelibswig.i:
%module simplelibswig
%{
extern "C" {
#include "simplelib.h"
}
%}
%include "simplelib.h"
我使用 CMake 构建一切,使用这个 CMakeLists.txt:
project(simplelib)
cmake_minimum_required(VERSION 2.8)
find_package(SWIG REQUIRED)
include(${SWIG_USE_FILE})
find_package(PythonLibs)
include_directories(${PYTHON_INCLUDE_PATH})
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
SET(CMAKE_SWIG_FLAGS "")
SET_SOURCE_FILES_PROPERTIES(simplelibswig.i PROPERTIES CPLUSPLUS ON)
SET_SOURCE_FILES_PROPERTIES(simplelibswig.i PROPERTIES SWIG_FLAGS "-includeall")
add_library(${PROJECT_NAME}
simplelib.h
simplelib.c
)
swig_add_module(simplelibswig python simplelibswig.i)
swig_link_libraries(simplelibswig ${PYTHON_LIBRARIES} ${PROJECT_NAME})
现在,我想做的是 1)将不透明类型从 simplelib_MyType 重命名为 MyType 2)使用 %extend 使用构造函数/析构函数/方法公开类型
问题是上面没有暴露构建的python模块中的类型。我希望接口文件将 typedef 公开为具有 typedefed 名称的类,但这并没有发生。因此,我无法继续讨论上面的第 1 点和第 2 点。我究竟做错了什么?
最好的问候, 里卡德