在Erlang中,每个进程都有一个组长,当进程想要打印某些东西时(即它调用io库或做类似的事情),它会向组长发送一条消息。
我的问题是,我在哪里可以找到这些消息的规范?或者一般来说,组长应该做什么的说明?
我设法通过一些实验发现,有时该流程会发送一个{io_request, Sender, GroupLeader, Request}
字词,答案为{io_reply, GroupLeader, ok}
字词,但可能还有其他情况。
答案 0 :(得分:6)
The Erlang Rationale (video)或(slides);是一个很好的信息来源,user.erl的源代码也是如此。
简而言之:
{io_request, From, ReplyAs, Request}
%From is the process to send the reply to,
%ReplyAs is any term the caller desires to
%match up the request and the response. (returned verbatim in the reply)
{io_reply, ReplyAs, Reply}
user.erl中的一些请求:
{put_chars, IoList} % puts the iolist
{put_chars, M,F,A} % puts the result of apply(M,F,A)
{get_geometry, 'rows' | 'columns'} % returns the number of rows or columns of the console
{get_line, Prompt} % calls io_lib:collect_line(Prompt)
{get_chars, Prompt, Mod, Func, ExtraArgs}
{get_until, Prompt, Mod, Func, Args}
{setopts, Options} % only option supported by user is 'binary'
% (binary mode if present in Options, list mode otherwise)
答案 1 :(得分:1)
这里详细描述了Erlang I / O协议: