gpt4 book ai didi

python - 在通过 ctypes 调用的 c 函数中实例化 python 对象

转载 作者:行者123 更新时间:2023-12-04 04:07:02 24 4
gpt4 key购买 nike

当我从 ctypes 调用的 c 函数实例化 python 对象时,我的嵌入式 Python 3.3 程序出现段错误。

设置解释器后,我可以从 c main 成功实例化 python Int(以及自定义 c 扩展类型):

#import <Python/Python.h>  

#define LOGPY(x) \
{ fprintf(stderr, "%s: ", #x); PyObject_Print((PyObject*)(x), stderr, 0); fputc('\n', stderr); }

// c function to be called from python script via ctypes.
void instantiate() {
PyObject* instance = PyObject_CallObject((PyObject*)&PyLong_Type, NULL);
LOGPY(instance);
}

int main(int argc, char* argv[]) {
Py_Initialize();
instantiate(); // works fine

// run a script that calls instantiate() via ctypes.
FILE* scriptFile = fopen("emb.py", "r");
if (!scriptFile) {
fprintf(stderr, "ERROR: cannot open script file\n");
return 1;
}

PyRun_SimpleFileEx(scriptFile, scriptPath, 1); // close on completion
return 0;
}

然后我使用 PyRun_SimpleFileEx 运行一个 python 脚本。它似乎运行得很好,但是当它通过 ctypes 调用 instantiate() 时,程序在 PyObject_CallObject 内部出现段错误:

import ctypes as ct
dy = ct.CDLL('./emb')
dy.instantiate() # segfaults

lldb 输出:

instance: 0
Process 52068 stopped
* thread #1: tid = 0x1c03, 0x000000010000d3f5 Python`PyObject_Call + 69, stop reason = EXC_BAD_ACCESS (code=1, address=0x18)
frame #0: 0x000000010000d3f5 Python`PyObject_Call + 69
Python`PyObject_Call + 69:
-> 0x10000d3f5: movl 24(%rax), %edx
0x10000d3f8: incl %edx
0x10000d3fa: movl %edx, 24(%rax)
0x10000d3fd: leaq 2069148(%rip), %rax ; _Py_CheckRecursionLimit
(lldb) bt
* thread #1: tid = 0x1c03, 0x000000010000d3f5 Python`PyObject_Call + 69, stop reason = EXC_BAD_ACCESS (code=1, address=0x18)
frame #0: 0x000000010000d3f5 Python`PyObject_Call + 69
frame #1: 0x00000001000d5197 Python`PyEval_CallObjectWithKeywords + 87
frame #2: 0x0000000201100d8e emb`instantiate + 30 at emb.c:9

为什么仅从 ctypes 调用 instantiate() 会失败?该函数仅在调用 python 库时崩溃,所以也许某些解释器状态被 ctypes FFI 调用弄乱了?

最佳答案

感谢 Armin Rigo 的提示。问题在于,通过 ctypes.CDLL() 加载的库会创建在调用 native 代码时释放 GIL 的函数。据我所知,这意味着为了让 native 函数回调到 python 代码中,它需要首先使用 python C API 获取 GIL。

更简单的替代方法是使用 ctypes.PyDLL() ,它不会释放 GIL(它还会检查 python 错误标志)。文档说,“因此,这仅对直接调用 Python C API 函数有用。”我的代码更间接,因为我有 python 代码调用我自己的 C 函数,然后调用 python C API,但问题是一样的。

关于python - 在通过 ctypes 调用的 c 函数中实例化 python 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13709988/

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