ctypes回调函数的结果类型无效

时间:2011-06-01 11:21:57

标签: python ctypes

使用ctypes实现时遇到问题。我有2个C函数:

antichain** decompose_antichain(antichain*, int, char (*)(void*, void*), void** (*)(void*));
counting_function** decompose_counting_function(counting_function*);

其中antichain和counting_function是两种结构。可以看到一个antihain就像一个集合,包含未知类型的元素(在这个例子中,counting_function)。 decompose_antichain函数将参数(以及其他内容)用作分解反链包含的元素的函数( - >原型为void的函数**(*)(void *))。

现在我想使用Python中的decompose_antichain。我使用了ctypes:

lib = cdll.LoadLibrary("./mylib.dylib")
#CountingFunction, Antichain and other definitions skipped
DECOMPOSE_COUNTING_FUNCTION_FUNC = CFUNCTYPE(POINTER(c_void_p), POINTER(CountingFunction))
decompose_counting_function_c = lib.decompose_counting_function
decompose_counting_function_c.argtypes = [POINTER(CountingFunction)]
decompose_counting_function_c.restype = POINTER(c_void_p)
decompose_antichain_c = lib.decompose_antichain
decompose_antichain_c.argtypes = [POINTER(Antichain), c_int, DECOMPOSE_COUNTING_FUNCTION_FUNC, COMPARE_COUNTING_FUNCTIONS_FUNC]
decompose_antichain_c.restype = POINTER(POINTER(Antichain))

(...)

antichains_list = decompose_antichain_c(antichain, nb_components, COMPARE_COUNTING_FUNCTIONS_FUNC(compare_counting_functions_c), DECOMPOSE_COUNTING_FUNCTION_FUNC(decompose_counting_function_c))

最后一行产生错误:回调函数的结果类型无效。

我看不出问题出在哪里。谁能帮我?感谢

1 个答案:

答案 0 :(得分:1)

您需要确保argtypes和结果类型匹配。看起来你交换了decompose_antichain_c的参数类型。你在argtypes中有DECOMPOSE_COUNTING_FUNCTION_FUNC, COMPARE_COUNTING_FUNCTIONS_FUNC,它与你上面给出的C函数的声明不匹配。然后,您首先尝试使用COMPARE_COUNTING_FUNCTIONS_FUNC,然后DECOMPOSE_COUNTING_FUNCTION_FUNC秒。

DECOMPOSE_COUNTING_FUNCTION_FUNC看起来也错了。它应该是CFUNCTYPE(POINTER(c_void_p), c_void_p)只是猜测其余的代码。

如果您提供创建COMPARE_COUNTING_FUNCTIONS_FUNCCountingFunction

的代码,我可以提供更详细的答案