我需要编写一个 python 调用,该调用具有将由 C 函数调用的回调。C头文件有以下内容
...
typedef struct _myResponse {
char * data,
void (*setResponseFunc)(const char * const req, char ** dataptr);
} MyResponse_t
C库像这样调用回调
void process(const char * const req , MyResponse_t *response) {
response->SetResponseFunc("some request", &response->data);
}
C 中回调的示例回调实现:
void SetResponse(const char *respData, char **dataptr) {
char *ptr = malloc(strlen(respData));
strcpy(ptr, respData);
*dataptr= ptr;
}
然后我使用 ctypesgen 生成 python 代码。生成的文件包含以下内容:
代理.py:
def String:
...
class struct__myResponse(Structure):
pass
struct__myResponse.__slots__ = [
'data',
'SetResponseFunc',
]
struct__myResponse._fields_ = [
('data', String),
('SetResponseFunc', CFUNCTYPE(UNCHECKED(None), String, POINTER(String))),
]
这就是我尝试使用它的方式
CALLBACK_FUNC = CFUNCTYPE(c_agent.UNCHECKED(None), agent.String, POINTER(agent.String))
def PyCopyResponse(a,b):
print "XXXXXX" // here, I haven't tried to implement the proper code, just want to see if the callback is called from the C library
copy_response = CALLBACK_FUNC(PyCopyResponse)
调用它
agentResp = agent.MyResponse_t(None,copy_response)
agent.process("some value",agentResp)
我根本没有看到我的 python 回调实现被调用。我已经验证 C 库正在适当地调用回调。有人可以帮忙吗?