gpt4 book ai didi

c - 如何让 SWIG 自动将模拟的 "this"指针包装到 C 结构?

转载 作者:太空狗 更新时间:2023-10-29 17:24:28 26 4
gpt4 key购买 nike

我已经实现了一个简单的 C“类”,在结构中使用函数指针来实现成员函数,并将指向结构的指针作为第一个参数传递给每个函数,类似于隐式的“this "C++ 中的指针。

%module mytest
%{
typedef struct mytest mytest;

struct mytest {
int data;
int (*func1)(mytest *,int);
void (*func2)(mytest *,int);
};

int f1(mytest *me,int n) { return me->data + n; }
void f2(mytest *me,int n) { me->data += n; }

mytest *mytestNew(int n) {
mytest *me = (mytest*) malloc(sizeof(mytest));
me->data = n;
me->func1 = f1;
me->func2 = f2;
return me;
}

%}

typedef struct mytest mytest;

struct mytest {
int data;
int func1(mytest *,int);
void func2(mytest *,int);
};

extern mytest *mytestNew(int n);

现在我的问题是,当为我在前端选择的任何语言创建接口(interface)时,我最终不得不显式地将“this”指针传递给对象,即使语言本身支持隐藏它。

例如,假设我选择 Python。我必须做这样的事情:

from mytest import *
m = mytestNew(1)
m.func1(m,0)

我真正想要的是这样做:

from mytest import *
m = mytestNew(1)
m.func1(0)

我知道我可以只写一些包装代码,但对于我的实际项目,我在现有 C 代码的很多对象中有很多函数,并将其乘以我想要支持的每种语言,这太过分了很多工作!有没有办法让 SWIG 自动执行此操作?

最佳答案

您可以在 SWIG 中以语言中立的方式使用两个类型映射来执行此操作,前提是您将参数命名为与 SWIG 接口(interface)一致的名称以及允许有选择地应用类型映射的定义。 (当然,除非您希望所有指向 mytest 的指针默认成为“this”指针)

您需要的类型映射是:

// Make sure the wraqpped function doesn't expect an input for this:
%typemap(in,numinputs=0) mytest *me "$1=NULL;"
// Slightly abuse check typemap, but it needs to happen after the rest of the arguments have been set:
%typemap(check) mytest *me {
$1 = arg1;
}

check typemap 并不是真的打算像这样使用,但它是在从目标语言中提取参数之后和进行实际调用之前获取要注入(inject)的代码的最简单方法。

您还可以在宏的帮助下简化模块,以避免必须编写函数指针和成员技巧之间的映射并保持同步。我以 test.h 结束:

#ifdef SWIG
#define MEMBER(name, args) name args
#else
#define MEMBER(name, args) (*name) args
#endif

typedef struct mytest mytest;

struct mytest {
int data;
int MEMBER(func1,(mytest *me,int));
void MEMBER(func2,(mytest *me,int));
};

以及对应的接口(interface)文件(test.i):

%module test

%{
#include "test.h"

static int f1(mytest *me,int n) { return me->data + n; }
static void f2(mytest *me,int n) { me->data += n; }
%}

%extend mytest {
mytest(int n) {
$self->data = n;
$self->func1 = f1;
$self->func2 = f2;
}
}

%typemap(in,numinputs=0) mytest *me "$1=NULL;"
%typemap(check) mytest *me {
$1 = arg1;
}

%include "test.h"

(这个接口(interface)文件提供了一个构造函数,它完全按照 Java 程序员的期望“创建”“对象”——您可以调用 new 并在幕后设置函数指针)

关于c - 如何让 SWIG 自动将模拟的 "this"指针包装到 C 结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11023940/

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