打开C ++共享库作为Erlang端口驱动程序时出错

时间:2019-01-25 18:38:50

标签: erlang erlang-ports

我正在使用Ubuntu 18:04,并希望使用动态语言来使用此C ++共享库。

共享库可从此处获得-

http://www.warmplace.ru/soft/sunvox/sunvox_lib-1.9.4c.zip

这是一个小型的嵌入式合成器-提取了我正在使用的sunvox_lib/linux/lib_x86/sunvox.so压缩文件,并通过chmod 755更改了权限。

通过ctypes在Python 3.6上运行良好,所以我认为它没有损坏-

(sv_demo) justin@justin-XPS-13-9360:~/work/sv_demo$ python
Python 3.6.8 (default, Dec 24 2018, 19:24:27) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import cdll
>>> sv.sv_init(0, 44100, 2, 0) 
Desired audio buffer size: 2048 frames
ALSA: pulse
ALSA HW Default rate: 44100
ALSA HW Rate: 44100 frames
ALSA HW Buffer size: 4096 frames
ALSA HW Period size: 227
ALSA HW Periods: 0
ALSA SW Avail min: 227
ALSA SW Start threshold: 1   
ALSA SW Stop threshold: 4096
67844
>>> sv.sv_deinit()
SOUND: sundog_sound_deinit() begin
SOUND: sundog_sound_deinit() end
Max memory used: 41823
0
>>> exit()
(sv_demo) justin@justin-XPS-13-9360:~/work/sv_demo$ 

但是我真的想要/需要为此使用Erlang,而不是Python;并希望通过端口驱动程序机制来实现。但是-

(sv_demo) justin@justin-XPS-13-9360:~/work/sv_demo$ erl
Erlang/OTP 20 [erts-9.3] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:10] [hipe] [kernel-poll:false]    
Eshell V9.3  (abort with ^G)
1> erl_ddll:load_driver(".", "sunvox.so").
{error,{open_error,-10}}

{open_error, -10}是什么意思?我以前使用过端口驱动程序,但没有遇到过此问题。我已经在Google上搜索了一下,但找不到Python为什么愿意使用它但Erlang却不满意的原因。

有什么想法吗?

TIA


更新。

2> erl_ddll:format_error({open_error, -10}).
"cannot open shared object file: No such file or directory"

为什么找不到sunvox.so?它位于我正在运行的目录根目录中erl ...

2 个答案:

答案 0 :(得分:1)

我认为我使用错误的句柄来调用共享库-您需要删除.so后缀-

Erlang/OTP 20 [erts-9.3] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:10] [hipe] [kernel-poll:false]

Eshell V9.3  (abort with ^G)
1> erl_ddll:load_driver(".", "sunvox").   
{error,no_driver_init}
2> erl_ddll:format_error(no_driver_init).         
"No driver init in dynamic library"
3> 

返回到绘图板:-(

答案 1 :(得分:1)

根据文档erl_dllVStack将加载链接的驱动程序。链接驱动程序是使用一组特定的接口构建的库...我想共享库将无法实现。

一种选择是使用共享库创建NIF,然后从erlang中调用NIF。 NIF只需要包装要从共享库中使用的功能