连接 Erlang、Julia、Elixir
这是我雄心勃勃的小项目,旨在连接 Erlang/Elixir 和 Julia 的不同世界:
现在,Erlang 和 Elixir 进程可以互相发送消息,因为它们运行在同一 BEAM 平台上并共享 PID。但是向 Julia 发送消息并返回 Erlang/Elixir 怎么样?
在 Julia REPL 中,我们启动一个pServer
任务,该任务会根据需要生成一个具有自己的模块命名空间的EvalServer
任务。
julia > using Erjulix, Sockets
julia > pServer ( 6000 )
Task (runnable) @ 0x0000000110b30ab0
在 Elixir REPL 中,我们请求 Julia EvalServer
并使用它来计算 Julia 表达式或调用 Julia 函数。
iex ( 1 ) > { :ok , jl , _ } = :ejx_udp . srv ( 6000 ) # get an eval server from Julia
{ :ok , { { 127 , 0 , 0 , 1 } , 54465 } , "Main.##esm#257" }
iex ( 2 ) > :ejx_udp . eval ( jl , "using .Threads" )
{ :ok , [ ] }
iex ( 3 ) > :ejx_udp . call ( jl , :threadid )
{ :ok , 3 }
iex ( 4 ) > :ejx_udp . call ( jl , :factorial , [ 50 ] )
{ :error ,
"OverflowError( " 50 is too large to look up in the table; consider using `factorial(big(50))` instead " )" }
iex ( 5 ) > :ejx_udp . eval ( jl , """ # define a function on the Julia server
...(5)> function fact(x)
...(5)> factorial(big(x))
...(5)> end
...(5)> """)
{:ok, "Main.##esm#257.fact"}
iex(6)> :ejx_udp.call(jl, :fact, [50])
{:ok, 30414093201713378043612608166064768844377641568960512000000000000}
iex(7)> :timer.tc(:ejx_udp, :call, [jl, :fact, [55]])
{527,
{:ok,
12696403353658275925965100847566516959580321051449436762275840000000000000}}
最后的计时显示,当两个会话在同一台计算机 (MacBook Pro) 上运行时,使用 Elixir 中的数据调用创建的 Julia fact
函数并获取结果的时间大约需要 500 µs。
iex ( 8 ) > a = Enum . map ( 1 .. 10 , fn _ -> :rand . uniform ( ) end )
[ 0.9414436609049482 , 0.08244595999142224 , 0.6727398779368937 ,
0.18612089183158875 , 0.7414592106015152 , 0.7340558985797445 ,
0.9511971092470349 , 0.7139960750204088 , 0.31514816254491884 , 0.94168140313657 ]
iex ( 9 ) > :ejx_udp . set ( jl , :a , a ) # create variable a on the Julia server
{ :ok , [ ] }
回到 Julia REPL:
julia > exmod = Erjulix . _ESM[ 1 ] # get access to the server module
Main. # #esm#257
julia > exmod . a # and to the created variable a
10 - element Vector{Any} :
0.9414436609049482
0.08244595999142224
0.6727398779368937
0.18612089183158875
⋮
0.9511971092470349
0.7139960750204088
0.31514816254491884
0.94168140313657
julia > using Plots ....
如果我们使用机器的 IP 地址和密钥启动pServer
,则与远程客户端的通信将得到 SHA-256 加密:
julia > getipaddr ()
ip " 192.168.2.113 "
julia > key = Erjulix . genpasswd ( 12 )
" 1XQeFem2NUNw "
julia > pServer ( getipaddr (), 6000 , key)
Task (runnable) @ 0x00000001110e7b90
我们使用机器的 IP 地址和该密钥从本地网络中的 Raspberry Pi 访问pServer
:
iex ( 1 ) > :inet . gethostname ( )
{ :ok , 'raspberrypi' }
iex ( 2 ) > key = "1XQeFem2NUNw"
"1XQeFem2NUNw"
iex ( 3 ) > { :ok , jl , _ } = :ejx_udp . srv ( { { 192 , 168 , 2 , 113 } , 6000 , key } )
{ :ok , { { 192 , 168 , 2 , 113 } , 55052 , "j8Gh3G6dPfJm28UpthL0dXew" } , "Main.##esm#258" }
iex ( 4 ) > :ejx_udp . call ( jl , :factorial , [ 20 ] )
{ :ok , 2432902008176640000 }
iex ( 5 ) > :timer . tc ( :ejx_udp , :call , [ jl , :factorial , [ 20 ] ] )
{ 86620 , { :ok , 2432902008176640000 } }
pServer
生成了一个新密钥,用于对 Julia EvalServer
进行加密网络访问。计时显示两台机器之间的网络乒乓花费时间不到 100 毫秒(没有加密,大约需要 70 毫秒)。
iex ( 9 ) > :ejx_udp . client ( jl , :exit )
{ :ok , :done }
这是基于 Erlang 的 UDP 术语格式的互操作性原型。
线程安全:当然,所演示的访问服务器模块不是线程安全的,因此不应同时进行。
安全性:如果共享 UDP 服务器地址和端口,远程客户端就可以访问文件系统。如果您向pServer
提供密钥,数据传输将使用 SHA-256 加密。
ErlangTerm.jl
。jwerl
的一个分支,与 Erlang/OTP 24 兼容。更新主存储库存在问题。 当 Julia 注册表中可用时,您可以使用以下命令安装该软件包
pkg > add Erjulix
如果以 Hex 形式提供,则可以通过将erjulix
添加到mix.exs
的依赖项列表中来在 Elixir 中安装该软件包:
def deps do
[
{ :erjulix , "~> 0.1.0" }
]
end
可以使用 ExDoc 生成文档并在 HexDocs 上发布。发布后,可以在 https://hexdocs.pm/erjulix 找到这些文档。