我目前有一个函数,它使用struct作为缓冲区来返回一些信息,如下所示:
int example_reader(int code, void* return_struct);
我的目标是使它当我使用SWIG包装此函数以便可以在Python中使用时,我将返回结构以及函数的常规返回值。到目前为止,我一直在使用%apply命令这样做:
%apply struct ret_struct *OUTPUT {void* return_struct};
但是,当我将上述行添加到我的.i文件并尝试运行SWIG时,我收到以下警告:
“警告453:无法应用(struct ret_struct * OUTPUT。未定义任何类型地图”
我相信我包含的.h文件定义了我想要返回的结构,所以我很难找到问题所在。如果问题似乎涉及不正确的结构包含,请纠正我。我已经尝试阅读SWIG文档以及其他Stack Overflow帖子,以了解问题可能是什么,但到目前为止我还没有弄清楚。这个问题有点棘手,因为我试图返回一个结构的void指针,而我试图包装的代码可能有多种结构供我返回。处理这个结构的返回会有什么明智的方法?谢谢!
答案 0 :(得分:2)
我在这里给出了一个完整的C示例,其中一个接口用于将结构返回到目标语言以及返回值。通过这种方式,您可以创建一个正确的接口,标头中不会给出任何实现。这不是虚拟析构函数的默认实现。如果您不想使用界面,可以让SWIG和Python了解数据的表示方式。
接口头:foo.h
typedef struct _Foo Foo;
int foo_new(Foo **obj);
int foo_free(Foo *obj);
int foo_get_value_a(Foo *obj, int *result);
int foo_set_value_a(Foo *obj, int value);
int foo_get_value_b(Foo *obj, char **result);
int foo_set_value_b(Foo *obj, char *value);
SWIG界面:foo.i
%module foo
%{
#include "foo.h"
%}
%include "typemaps.i"
%typemap(in, numinputs=0) Foo ** (Foo *temp) {
$1 = &temp;
}
%typemap(argout) Foo ** {
PyObject* temp = NULL;
if (!PyList_Check($result)) {
temp = $result;
$result = PyList_New(1);
PyList_SetItem($result, 0, temp);
}
temp = SWIG_NewPointerObj(*$1, SWIGTYPE_p__Foo, SWIG_POINTER_NEW);
PyList_Append($result, temp);
Py_DECREF(temp);
}
%delobject foo_free; // Protect for double deletion
struct _Foo {};
%extend _Foo {
~_Foo() {
foo_free($self);
}
};
%ignore _Foo;
接口的一些实现:foo.c
%include "foo.h"
#include "foo.h"
#include "stdlib.h"
#include "string.h"
struct FooImpl {
char* c;
int i;
};
int foo_new(Foo **obj)
{
struct FooImpl* f = (struct FooImpl*) malloc(sizeof(struct FooImpl));
f->c = NULL;
*obj = (Foo*) f;
return 0;
}
int foo_free(Foo *obj)
{
struct FooImpl* impl = (struct FooImpl*) obj;
if (impl) {
if (impl->c) {
free(impl->c);
impl->c = NULL;
}
}
return 0;
}
int foo_get_value_a(Foo *obj, int *result)
{
struct FooImpl* impl = (struct FooImpl*) obj;
*result = impl->i;
return 0;
}
int foo_set_value_a(Foo *obj, int value)
{
struct FooImpl* impl = (struct FooImpl*) obj;
impl->i = value;
return 0;
}
int foo_get_value_b(Foo *obj, char **result)
{
struct FooImpl* impl = (struct FooImpl*) obj;
*result = impl->c;
return 0;
}
int foo_set_value_b(Foo *obj, char *value)
{
struct FooImpl* impl = (struct FooImpl*) obj;
int len = strlen(value);
if (impl->c) {
free(impl->c);
}
impl->c = (char*)malloc(len+1);
strcpy(impl->c,value);
return 0;
}
构建脚本
#!/usr/bin/env python
from distutils.core import setup, Extension
import os
os.environ['CC'] = 'gcc';
setup(name='foo',
version='1.0',
ext_modules =[Extension('_foo',
['foo.i','foo.c'])])
用法:
import foo
OK, f = foo.foo_new()
OK = foo.foo_set_value_b(f, 'Hello world!')
OK = foo.foo_free(f)
OK, f = foo.foo_new()
# Test safe to double delete
del f