1

我需要编写一个 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 库正在适当地调用回调。有人可以帮忙吗?

4

1 回答 1

0

好的,找到问题了。该过程需要一个指向结构的指针,我直接传递结构。

data = agent.String() 
agentResp = agent.MyResponse_t(data,copy_response)
agentResp_p = pointer(agentResp)

agent.process("some value",agentResp_p)
于 2012-10-15T22:06:06.240 回答