gpt4 book ai didi

python - 使用 Swig/Python 在 C 中传递多个参数和分配字符串

转载 作者:太空宇宙 更新时间:2023-11-04 02:14:08 24 4
gpt4 key购买 nike

我正在使用 SWIG 包装以下 C 接口(interface)以从 Python 访问它:

void some_method(char **output, int paramA, const char *paramB, int paramC);

C 中的实现在运行时使用 malloc() 将内存分配给指针 *output。其他参数是只读的,用于传达该方法所需的附加信息。

相应的 SWIG 接口(interface)文件应该是什么样的?

如果我只传递在 C 中动态分配的“输出”参数,而不传递其他参数,这种情况就非常简单。即,如果我的 C 接口(interface)如下,它的实现是 example.c(比方说):

void some_method(char **output);

然后 SWIG 接口(interface)文件很简单,如 this stackoverflow thread 中解释的那样:

%module example
%include<cstring.i>
%cstring_output_allocate(char **output, free(*$1));
%{
extern void some_method(char **output);
%}
%include example.c

以上不适用于多个参数。如何传递多个参数,以及允许动态分配其中一个参数(在本例中为“输出”参数)。

最佳答案

%cstring_output_allocate 确实使用多个参数。它声明“如果您看到 char **output 作为任何 方法的参数,隐藏该参数并将其作为附加输出返回。

这是一个例子。我声明了两种方法:一种返回值,另一种不返回值。请注意输出中如何未传递 output 参数,但它的结果作为附加返回值返回。

例子

x.c

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

void some_method(char **output, int paramA, const char *paramB, int paramC)
{
*output = malloc(paramA);
sprintf_s(*output,paramA,"%s_%d",paramB,paramC);
}

int some_method2(char **output, int paramA, const char *paramB, int paramC)
{
*output = malloc(paramA);
sprintf_s(*output,paramA,"%s_%d",paramB,paramC);
return strlen(*output);
}

x.h

void some_method(char **output, int paramA, const char *paramB, int paramC);
int some_method2(char **output, int paramA, const char *paramB, int paramC);

x.i

%module x

%begin %{
#pragma warning(disable:4100 4127 4211 4706)
%}

%{
#include "x.h"
%}

%include<cstring.i>
%cstring_output_allocate(char **output, free(*$1));
%include "x.h"

生成文件

_x.pyd: x.c x_wrap.c x.h
cl /LD /W4 /MD /Ic:\python27\include x.c x_wrap.c -link /LIBPATH:c:\python27\libs

x_wrap.c: x.i x.h
swig -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
>>> x.some_method(100,'blah',123)
'blah_123'
>>> x.some_method2(100,'blah',123)
[8, 'blah_123']

关于python - 使用 Swig/Python 在 C 中传递多个参数和分配字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10061053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com