Python CTypes从结构字段回调

时间:2012-10-12 18:15:56

标签: python callback ctypes

我需要编写一个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代码。生成的文件包含以下内容:

agent.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库正在适当地调用回调。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

好的,发现了这个问题。该过程采用指向结构的指针,我直接传递结构。

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

agent.process("some value",agentResp_p)