gpt4 book ai didi

python - 将结构指针传递给 ctypes 中的函数

转载 作者:太空宇宙 更新时间:2023-11-03 23:34:43 29 4
gpt4 key购买 nike

我正在尝试在 ctypes 中重做 Misaka 模块,但是当我尝试使用 bufputs 时出现错误(请参阅第二个代码示例的结尾)。当我将指针传递给函数时,我使用 pointer(b)。这不起作用,byref(b) 也不起作用。

这是函数签名:

/* bufputs • appends a NUL-terminated string to a buffer */
void
bufputs(struct buf *, const char*);

这是我的代码:

>>> from ctypes import *
>>> sundown = cdll.LoadLibrary('./libsundown.so.1')
>>> sundown
<CDLL './libsundown.so.1', handle 1e2f190 at 1bea0d0>
>>> # OUT: <CDLL './libsundown.so.1', handle 2840d80 at 2797290>
>>> class buf(Structure):
... _fields_ = [
... ('data', c_char_p),
... ('size', c_size_t),
... ('asize', c_size_t),
... ('unit', c_size_t),
... ('ref', c_int)]
...
>>> sundown.bufnew.argtypes = [c_size_t]
>>> sundown.bufnew.restype = buf
>>> b = sundown.bufnew(c_size_t(1024))
>>> sundown.bufputs.argtypes = [POINTER(buf), c_char_p]
>>> s = c_char_p('this is a test')
>>> sundown.bufputs(pointer(b), s)
python2: malloc.c:3574: mremap_chunk: Assertion `((size + offset) & (mp_.pagesize-1)) == 0' failed.
Aborted

我不知道我做错了什么。

最佳答案

OP 的解决方案,最初发布在问题中

class buf(Structure):
_fields_ = [
('data', c_char_p),
('size', c_size_t),
('asize', c_size_t),
('unit', c_size_t),
('ref', c_int)
]
buf_p = POINTER(buf)

sundown.bufnew.argtypes = [c_size_t]
sundown.bufnew.restype = buf_p
sundown.bufgrow.argtypes = [buf_p, c_size_t]
sundown.bufputs.argtypes = [buf_p, c_char_p]

ib = buf()

# ctypes does this internally:
# memset(byref(ib), 0x0, sizeof(buf))

text = 'this is some text'
ib.data = text
ib.size = len(text)

ob = sundown.bufnew(128)
sundown.bufgrow(ob, int(math.ceil(ib.size * 1.4)))

sundown.bufputs(ob, 'test')

关于python - 将结构指针传递给 ctypes 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7119814/

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