1

我正在使用 Ubuntu 18:04 并拥有我想通过动态语言使用的 C++ 共享库。

共享库可从此处获得 -

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

这是一个小型嵌入式合成器 - 提取了我正在使用的 zipfilesunvox_lib/linux/lib_x86/sunvox.so并通过chmod 755.

它可以通过 Python 3.6 正常工作ctypes,所以我认为它没有损坏 -

(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......

4

2 回答 2

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> 

回到绘图板 :-(

于 2019-01-25T20:39:59.000 回答
1

从文档erl_dll中,erl_dll:load_driver是加载链接的驱动程序。链接驱动程序是使用一组特定接口构建的库......我猜共享库不会实现。

一种选择是使用共享库创建 NIF 并从 erlang 调用 NIF。NIF 只需要包装您想从共享库中使用的函数

于 2020-06-18T03:10:53.673 回答