- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
由于取得了一些进展,我更改了标题并进行了第二次编辑以描述我的新问题。您可以选择忽略 Edit1
我一直在尝试从 C 代码运行 python 代码。为此,我一直在使用 Cython。
我的系统的语义是有一个二进制文件(我无法访问其源代码)调用文件中定义的 C 函数(源代码可访问),在这个函数中我需要调用 python 函数,做一些处理并将结果返回二进制。
为了达到这个目的,我遇到了两种方法:
http://docs.python.org/release/2.5.2/ext/callingPython.html ===> 这种方法建议将 python 回调函数传递给 C 端,以便在必要时调用回调,但这对我不起作用,因为我无权访问二进制文件的源代码(这是用于运行整个系统)
https://stackoverflow.com/a/5721123/1126425 ==> 我尝试过这种方法,但在调用 cython 函数时出现此错误:程序收到信号 SIGSEGV,段错误。[切换到线程 0xb47deb70 (LWP 2065)]来自/usr/lib/libpython2.6.so.1.0 的 PySys_GetObject () 中的 0x007fd38a
http://www.linuxjournal.com/article/8497?page=0,0 ==> 这实际上是 cython 功能的基础,但是当我再次使用那里描述的示例时,我得到类似于 2 的错误。
我不知道如何解决这些错误。任何帮助将不胜感激。
谢谢!!
编辑1:这是一个反射(reflect)情况的简单场景:
#include <external.h>
int callback(int param1,int param2)//Function that the binary calls
{
/*SomeTasks*/
cython_func();//Function defined in the following .pyx file
/*SomeTasks*/
}
cdef void cython_function():
print "Do Nothing!"
我正在将 cython 创建的共享库文件与编译上述 C 代码生成的库链接起来,然后二进制文件使用该库...
编辑2:当我添加 Py_Initialize() 时,段错误消失了;在调用 cython_function() 之前。但是现在我收到 undefined symbol 错误:符号查找错误:lib_c_code.so: undefined symbol :cython_function
这里的 lib_c_code.so 是从上面的 external.c 文件创建的共享库。我已经尝试在 external.c 中包含由 cython 编译器创建的 .h 文件,但它仍然没有成功。这是我编译 lib_c_code.so 的方式:
gcc -shared -dynlib -lm -W1 -o lib_c_code.so $(OBJDIR)/*.o -lc -lm -lpy_code
libpy_code.so 是从 cython_file.pyx 文件中创建的共享对象文件:
cython cython_file.pyx -o cython_file.c
gcc $(IFLAGS) -I/usr/include/python2.6 -fPIC -shared cython_file.c -lpython2.6 -lm -o libpy_code.so
此外,当我执行以下操作时,我可以在 lib_c_code.so 文件中看到符号 cython_function:nm -g lib_c_code.so..有什么想法吗?
最佳答案
我不得不猜测这里有一个回调注册函数,您可以将函数指针传递给它,在这种情况下,您可以简单地放弃 C 文件并直接在您的 Cython 代码中定义一个 cdef 函数,然后将其与回调一起传递注册功能。如果您在其中操作任何 Python 对象,请使用 with gil
。
cdef extern from "external.h":
ctypedef int (*Cb_Func)(int param1, int param2)
void register_callback(Cb_Func func)
cdef int my_callback(int param1,int param2) with gil:
<implementation>
register_callback(my_callback)
这在 Cython 用户手册中也有解释:http://docs.cython.org/src/userguide/external_C_code.html
关于cython - undefined symbol (链接 .so C 和 Cython 代码),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11320105/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!