8

如果我有一个 writable buffer,我可以使用ctypes.c_void_p.from_buffer函数来获取指向该缓冲区的 C 指针。

但是,如何处理不可写缓冲区?如何形成一个const指针,我可以传递给期望 a 的 C 代码,const void*而无需制作不可写缓冲区的可写副本?

我考虑c_void_p.from_address过,但缓冲区(和内存视图)似乎没有公开它们的地址。


一些澄清:

>>> import ctypes
>>> b = buffer("some data that supports the buffer interface, like a str")
>>> ptr = ctypes.c_void_p.from_buffer(b)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: buffer is read-only
>>> ptr = ctypes.c_void_p.from_buffer_copy(b)    # works, but has to copy data
>>> ptr = ctypes.CONST(c_void_p).from_buffer(b)  # (I'm making this one up)
>>> ptr = ctypes.c_void_p.from_address(???)      # could work; how to get addr?

这将适用于void some_api(const void* read_only_data)

>>> ctypes.cdll.LoadLibrary(some_lib).some_api(ptr)

该方法from_buffer_copy有效,但需要先复制缓冲区。我正在寻找解决缓冲区可写要求的方法,因为没有人会在那里写,我想避免数据的冗余复制。

4

1 回答 1

0

您可以char*使用 ctypes 将 Python 字符串转换为,它指向存储 Python 字符串数据的实际内存。

随意双重施法。

于 2015-04-16T09:51:39.253 回答