gpt4 book ai didi

python - 包含数组的 ctypes 结构

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

我正在尝试使用 ctypes。我对操作包含数组的 C 结构很感兴趣。考虑以下 my_library.c

#include <stdio.h>


typedef struct {

double first_array[10];
double second_array[10];

} ArrayStruct;


void print_array_struct(ArrayStruct array_struct){

for (int i = 0; i < 10; i++){
printf("%f\n",array_struct.first_array[i]);
}

}

假设我已经将它编译到一个共享库 my_so_object.so 从 Python 我可以做这样的事情

import ctypes
from ctypes import *

myLib = CDLL("c/bin/my_so_object.so")


class ArrayStruct(ctypes.Structure):
_fields_ = [('first_array', ctypes.c_int * 10), ('second_array', ctypes.c_int * 10)]

def __repr__(self):
return 'ciaone'


myLib.print_array_struct.restype = None
myLib.print_array_struct.argtype = ArrayStruct

my_array_type = ctypes.c_int * 10
x1 = my_array_type()
x2 = my_array_type()

a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

x1[0:9] = a[0:9]

a = [11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

x2[0:9] = a[0:9]

print(my_array_type)
>>> <class '__main__.c_int_Array_10'>

print(x1[2])
>>> 3

print(x2[2])
>>> 13

x = ArrayStruct(x1, x2)

print(x.first_array[0:9])
>>> [1, 2, 3, 4, 5, 6, 7, 8, 9]

到目前为止一切顺利:我已经创建了正确的类型并且一切似乎都运行良好。但是然后:

myLib.print_array_struct(x)
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000
>>> 0.000000

我显然遗漏了什么。 ArrayStruct 类型被识别(否则调用 myLib.print_array_struct(x) 会抛出错误)但未正确初始化。

最佳答案

代码有 2 个问题(如我在评论中所述):

  1. print_array_struct.argtype - 这是不正确的(并且可能会产生灾难性的影响)。检查(更新)[SO]: C function called from Python via ctypes returns incorrect value (@CristiFati's answer)了解更多详情

  2. C 中,数组是基于 double 的,而在 Python 中,它们是 ctypes.c_int (int) 基于

更多详情,查看[Python.Docs]: ctypes - A foreign function library for Python .
我修改了您的 Python 代码,以更正上述错误(以及其他一些小问题)。

code00.py:

#!/usr/bin/env python

import ctypes as ct
import sys


DLL_NAME = DLL_NAME = "./dll00.{:s}".format("dll" if sys.platform[:3].lower() == "win" else "so")

DOUBLE_10 = ct.c_double * 10


class ArrayStruct(ct.Structure):
_fields_ = (
("first_array", DOUBLE_10),
("second_array", DOUBLE_10),
)


def main(*argv):
dll_handle = ct.CDLL(DLL_NAME)
print_array_struct = dll_handle.print_array_struct
print_array_struct.argtypes = (ArrayStruct,)
print_array_struct.restype = None

x1 = DOUBLE_10()
x2 = DOUBLE_10()
x1[:] = range(1, 11)
x2[:] = range(11, 21)
print([item for item in x1])
print([item for item in x2])
arg = ArrayStruct(x1, x2)
print_array_struct(arg)


if __name__ == "__main__":
print("Python {:s} {:03d}bit on {:s}\n".format(" ".join(elem.strip() for elem in sys.version.split("\n")),
64 if sys.maxsize > 0x100000000 else 32, sys.platform))
rc = main(*sys.argv[1:])
print("\nDone.")
sys.exit(rc)

dll00.c(虚拟):

#include <stdio.h>

#if defined(_WIN32)
# define DLL00_EXPORT_API __declspec(dllexport)
#else
# define DLL00_EXPORT_API
#endif

#define DIM 10


typedef struct {
double first_array[DIM];
double second_array[DIM];
} ArrayStruct;


#if defined(__cplusplus)
extern "C" {
#endif

DLL00_EXPORT_API void print_array_struct(ArrayStruct array_struct);

#if defined(__cplusplus)
}
#endif


void print_array_struct(ArrayStruct array_struct)
{
printf("From C:\n");
for (int i = 0; i < DIM; ++i) {
printf(" %2.1lf\n", array_struct.first_array[i]);
}
}

输出:

(qaic-env) [cfati@cfati-5510-0:/mnt/e/Work/Dev/StackOverflow/q050447199]> ~/sopr.sh
### Set shorter prompt to better fit when pasted in StackOverflow (or other) pages ###

[064bit prompt]> ls
code00.py dll00.c
[064bit prompt]> gcc -fPIC -shared -o dll00.so dll00.c
[064bit prompt]> ls
code00.py dll00.c dll00.so
[064bit prompt]>
[064bit prompt]> python3.5 ./code00.py
Python 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609] 064bit on linux

[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0]
[11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0]
From C:
1.0
2.0
3.0
4.0
5.0
6.0
7.0
8.0
9.0
10.0

Done.

关于python - 包含数组的 ctypes 结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50447199/

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