gpt4 book ai didi

python - 使用 ctypes python 包装返回未知大小数组的 C 函数

转载 作者:行者123 更新时间:2023-12-02 11:47:42 27 4
gpt4 key购买 nike

我正在尝试使用 ctypes 包装 C 函数,该函数返回未知大小的字符数组。函数为from the gdal c api ,但我的问题并不特定于该函数。

我想知道是否有一种通用方法可以解构返回未知大小的 char** 数组对象的函数的输出。在 ctypes 中,这将是 POINTER(c_char_p * X),其中 X 未知。

使用 answer to a similar question 中的提示,我能够使以下内容发挥作用:

# Define the function wrapper.
f = ctypes.CDLL('libgdal.so.20').GDALGetMetadata
MAX_OUTPUT_LENGTH = 10
f.restype = ctypes.POINTER(ctypes.c_char_p * MAX_OUTPUT_LENGTH)
f.argtypes = [ctypes.c_void_p, ctypes.c_char_p]

# Example call (the second argument can be null).
result = []
counter = 0
output = f(ptr, None).contents[counter]
while output:
result.append(output)
counter += 1
output = f(ptr, None).contents[counter]

其中 output 是结果数组,ptr 是指向打开的 GDALRaster 的 ctypes 指针。这样做的限制是我必须在调用函数之前构造一个固定长度的数组。我可以猜测实际情况下的最大长度是多少,然后简单地使用它。但这是任意的,我想知道是否有一种方法可以在不指定数组长度的情况下获取数组指针。换句话说:

有没有办法做与上面的例子类似的事情,但不指定任意的最大长度?

最佳答案

事实证明,如果函数输出是一个以 null 结尾的字符数组,您可以简单地将指针传递给 c_char_p 对象而无需指定长度作为 restype 参数。然后循环遍历结果,直到找到 null 元素,这表示数组的末尾。

因此,以下内容非常适合我的用例:

# Define the function wrapper, the restype can simply be a
# pointer to c_char_p (without length!).
f = ctypes.CDLL('libgdal.so.20').GDALGetMetadata
f.restype = ctypes.POINTER(ctypes.c_char_p)
f.argtypes = [ctypes.c_void_p, ctypes.c_char_p]

# Prepare python result array.
result = []

# Call C function.
output = f(ptr, None)

# Ensure that output is not a null pointer.
if output:
# Get first item from array.
counter = 0
item = output[counter]
# Get more items, until the array accessor returns null.
# The function output (at least in my use case) is a null
# terminated char array.
while item:
result.append(item)
counter += 1
item = output[counter]

关于python - 使用 ctypes python 包装返回未知大小数组的 C 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41502423/

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