在《programming erlang》中,lib_chan是比较复杂的代码,至少我是读了好多遍才算明白。
我不知道是这段代码太复杂,还是我的智商有问题。至少,我不太习惯erlang的这种方式。不过,我很喜欢这个lib_chan的思路和erlang程序的风格。这种方式非常的明确,直接。我不知道为什么erlang没有一个类似的成熟的库。这个lib_chan好像是joe armstrong为这本书写的,难道erlang根本不需要这样的东西?
最好结合书里的那个聊天程序来理解lib_chan。这确实是个很精巧的东西(lib_chan还谈不上精巧,那个chat程序才精巧)。
注意:我只解释重要的地方。
lib_chan是一个类似总外壳的东西,定义接口,连接起诸多细节,这里我去掉了一些琐碎的函数。
%% ---
%% Excerpted from "Programming Erlang",
%% published by The Pragmatic Bookshelf.
%% Copyrights apply to this code. It may not be used to create training material,
%% courses, books, articles, and the like. Contact us if you are in doubt.
%% We make no guarantees that this code is fit for any purpose.
%% Visit http://www.pragmaticprogrammer.com/titles/jaerlang for more book information.
%%---
-module(lib_chan).
-export([cast/2, start_server/0, start_server/1,
connect/5, disconnect/1, rpc/2]).
-import(lists, [map/2, member/2, foreach/2]).
-import(lib_chan_mm, [send/2, close/1]).
%%----------------------------------------------------------------------
%% Server code
start_server1(ConfigData) ->
register(lib_chan, spawn(fun() -> start_server2(ConfigData) end)).
start_server2(ConfigData) ->
[Port] = [ P || {port,P} <- ConfigData],
start_port_server(Port, ConfigData).
start_port_server(Port, ConfigData) ->
%% lib_chan_cs:start_raw_server 函数会启动端口监听,并且,一旦接受连接,
%% 也就是说,拿到一个Socket的时候(一个Channel),就给现在传进来的fun(Socket)。
%%
%% 也就是说,得到Socket就是lib_chan_cs:start_raw_server的第一阶段的成果,
%% 之后,它的任务就是把拿到的Socket给fun(Socket),就这么简单。
%%
%% 而fun(Socket)做的事情就是,start_port_instance(Socket,ConfigData)。
%% 看见了吗?我们现在有了Socket(先不必考虑监听,accept之类的事),并且,
%% 我们可以从ConfigData里拿到要运行的目标(一个函数,或者说是一个入口)。
%% 现在,你需要的都全了吧?!更细节的是下一步了。
lib_chan_cs:start_raw_server(Port,
fun(Socket) ->
start_port_instance(Socket,
ConfigData) end,
100,
4).
start_port_instance(Socket, ConfigData) ->
%% 现在,我们已经有了Socket,我们还知道ConfigData,但是,Socket不是MM,
%% 我们必须弄成中间人模式,所以,要用lib_chan_mm:loop(Socket,Controller)。
%% 谁运行lib_chan_mm:loop/2,谁就是MM。明白了吧?
%% 那么,在运行lib_chan_mm:loop/2之前,必须的搞一个Controller,也就是说,
%% MM必须的知道把自己收到的消息给谁,这个谁就是Controller。
%% Controller也是个process,所以要spawn。
S = self(),
Controller = spawn_link(fun() -> start_erl_port_server(S, ConfigData) end),
lib_chan_mm:loop(Socket, Controller).
start_erl_port_server(MM, ConfigData) ->
%% 这个函数是Controller要运行的,我知道MM会给我消息,我也知道我要运行的东西
%% 在ConfigData里。
receive
{chan, MM, {startService, Mod, ArgC}} ->
case get_service_definition(Mod, ConfigData) of
{yes, Pwd, MFA} ->
case Pwd of
none ->
send(MM, ack),
really_start(MM, ArgC, MFA);
_ ->
do_authentication(Pwd, MM, ArgC, MFA)
end;
no ->
io:format("sending bad service~n"),
send(MM, badService),
close(MM)
end;
Any ->
io:format("*** ErL port server got:~p ~p~n",[MM, Any]),
exit({protocolViolation, Any})
end.
%% MM is the middle man
%% Mod is the Module we want to execute ArgC and ArgS come from the client and
%% server respectively
really_start(MM, ArgC, {Mod, Func, ArgS}) ->
%% 这就是start_erl_port_server/2的推进版,已经把ConfigData解析成mfa。
%% Controller最终与运行到这里,也就是说Controller会运行apply(Mod,Func,[MM,ArgC,ArgS])。
%% ok!
case (catch apply(Mod,Func,[MM,ArgC,ArgS])) of
{'EXIT', normal} ->
true;
{'EXIT', Why} ->
io:format("server error:~p~n",[Why]);
Why ->
io:format("server error should die with exit(normal) was:~p~n",
[Why])
end.
%% get_service_definition(Name, ConfigData)
get_service_definition(Mod, [{service, Mod, password, Pwd, mfa, M, F, A}|_]) ->
{yes, Pwd, {M, F, A}};
get_service_definition(Name, [_|T]) ->
get_service_definition(Name, T);
get_service_definition(_, []) ->
no.
下面的这个是lib_chan_cs,它构造了服务器端的结构和机制。
而lib_chan_mm则很简单,只是翻译了一下数据。
所以,关于lib_chan_mm我也不想解释什么,如果你读不懂,那么肯定是你自己的问题了。
%% ---
%% Excerpted from "Programming Erlang",
%% published by The Pragmatic Bookshelf.
%% Copyrights apply to this code. It may not be used to create training material,
%% courses, books, articles, and the like. Contact us if you are in doubt.
%% We make no guarantees that this code is fit for any purpose.
%% Visit http://www.pragmaticprogrammer.com/titles/jaerlang for more book information.
%%---
-module(lib_chan_cs).
%% cs stands for client_server
-export([start_raw_server/4, start_raw_client/3]).
-export([stop/1]).
-export([children/1]).
%% start_raw_server(Port, Fun, Max)
%% This server accepts up to Max connections on Port
%% The *first* time a connection is made to Port
%% Then Fun(Socket) is called.
%% Thereafter messages to the socket result in messages to the handler.
%% tcp_is typically used as follows:
%% To setup a listener
%% start_agent(Port) ->
%% process_flag(trap_exit, true),
%% lib_chan_server:start_raw_server(Port,
%% fun(Socket) -> input_handler(Socket) end,
%% 15,
%% 0).
start_raw_client(Host, Port, PacketLength) ->
gen_tcp:connect(Host, Port,
[binary, {active, true}, {packet, PacketLength}]).
%% Note when start_raw_server returns it should be ready to
%% Immediately accept connections
start_raw_server(Port, Fun, Max, PacketLength) ->
%% 从这里启动服务器。
%% 注意,它并没有自己直接去启动,而是用一个进程去干这事。
%%
%% 这个进程叫portServer8080,运行cold_start/5。
%% 注意,8080是我编的,如果端口是3333,那就叫portServer3333,这是port_name搞的。
%%
%% 为啥叫cold_start呢?因为,cold_start只是用gen_server:listen注册了要监听端口
%% 和某些配置信息,并没有调用gen_server:accept来接受连接。
Name = port_name(Port),
case whereis(Name) of
undefined ->
Self = self(),
Pid = spawn_link(fun() ->
cold_start(Self,Port,Fun,Max,PacketLength)
end),
receive
{Pid, ok} ->
register(Name, Pid),
{ok, self()};
{Pid, Error} ->
Error
end;
_Pid ->
{error, already_started}
end.
stop(Port) when integer(Port) ->
Name = port_name(Port),
case whereis(Name) of
undefined ->
not_started;
Pid ->
exit(Pid, kill),
(catch unregister(Name)),
stopped
end.
children(Port) when integer(Port) ->
port_name(Port) ! {children, self()},
receive
{session_server, Reply} -> Reply
end.
port_name(Port) when integer(Port) ->
list_to_atom("portServer" ++ integer_to_list(Port)).
cold_start(Master, Port, Fun, Max, PacketLength) ->
%% 现在,运行本函数的就是那个叫portServer8080的那个进程了。
%% 没错,它确实是一切事情的起点。但是,它除了注册监听信息,
%% 所做的事情也只有两个,一个是start_accept/2,一个是启动socket_loop/5。
%%
%% start_accept会创建一个进程,开始真正的接受连接,然后发消息给portServer8080,
%% portServer8080它正在运行socket_loop。
%%
%% 这里必须的说明一下,start_accept一旦接受一个连接后,就没人在接受连接了,
%% (这是一段真空时间)所以,要通知portServer,自己已经在处理一个连接,
%% portServer会决定是不是再新建一个start_accept再接受连接。portServer就是这样
%% 管理连接个数的。
process_flag(trap_exit, true),
%% io:format("Starting a port server on ~p...~n",[Port]),
case gen_tcp:listen(Port, [binary,
%% {dontroute, true},
{nodelay,true},
{packet, PacketLength},
{reuseaddr, true},
{active, true}]) of
{ok, Listen} ->
%% io:format("Listening to:~p~n",[Listen]),
Master ! {self(), ok},
New = start_accept(Listen, Fun),
%% Now we're ready to run
socket_loop(Listen, New, [], Fun, Max);
Error ->
Master ! {self(), Error}
end.
socket_loop(Listen, New, Active, Fun, Max) ->
%% 一旦start_accept进程(也就是运行start_child的进程),接受到连接,
%% 会发一个消息{istarted,MyPid},给portServer,portServer运行的是Socket_loop,
%% 也就是到现在这个地方。
%%
%% possibly_start_another的任务是看看现在连接的个数是否达到最大,如果到了极限,
%% 就不运行start_accept,直接运行socket_loop(Listen, false, Active, Fun, Max)。
%% 一旦有某些连接没了,会收到{'EXIT', Pid, _Why}这样的消息,再看看连接个数,
%% 以决定是否start_accept去监听。
receive
{istarted, New} ->
Active1 = [New|Active],
possibly_start_another(false,Listen,Active1,Fun,Max);
{'EXIT', New, _Why} ->
%% io:format("Child exit=~p~n",[Why]),
possibly_start_another(false,Listen,Active,Fun,Max);
{'EXIT', Pid, _Why} ->
%% io:format("Child exit=~p~n",[Why]),
Active1 = lists:delete(Pid, Active),
possibly_start_another(New,Listen,Active1,Fun,Max);
{children, From} ->
From ! {session_server, Active},
socket_loop(Listen,New,Active,Fun,Max);
_Other ->
socket_loop(Listen,New,Active,Fun,Max)
end.
possibly_start_another(New, Listen, Active, Fun, Max)
%% 这个函数和socket_loop纠缠在一起,看看socket_loop的注释吧!
when pid(New) ->
socket_loop(Listen, New, Active, Fun, Max);
possibly_start_another(false, Listen, Active, Fun, Max) ->
case length(Active) of
N when N < Max ->
New = start_accept(Listen, Fun),
socket_loop(Listen, New, Active, Fun,Max);
_ ->
socket_loop(Listen, false, Active, Fun, Max)
end.
start_accept(Listen, Fun) ->
S = self(),
spawn_link(fun() -> start_child(S, Listen, Fun) end).
start_child(Parent, Listen, Fun) ->
%% 注意这个child是个进程,因为一旦它拿到连接,本身还要变成MM呢!
%% 在Fun(Socket)的时候,还记得那个start_port_instance吗?
%% 还记得start_port_instance中的lib_chan_mm:loop(Socket,Controller)吗?
%%
%% 我再说一遍,在接到Socket后,会运行
%% fun(Socket) ->start_port_instance(Socket,ConfigData) end
%% 这个东西。
case gen_tcp:accept(Listen) of
{ok, Socket} ->
Parent ! {istarted,self()}, % tell the controller
inet:setopts(Socket, [{packet,4},
binary,
{nodelay,true},
{active, true}]),
%% before we activate socket
%% io:format("running the child:~p Fun=~p~n", [Socket, Fun]),
process_flag(trap_exit, true),
case (catch Fun(Socket)) of
{'EXIT', normal} ->
true;
{'EXIT', Why} ->
io:format("Port process dies with exit:~p~n",[Why]),
true;
_ ->
%% not an exit so everything's ok
true
end
end.
最后,我在说些我遇到的问题。
现在我的问题是某些进程在系统关闭后,没有被关闭掉。
也就是说一旦运行lib_chan后,关闭的时候,清理不干净。
比如,portServer就没关闭掉,还有两三个进程没被关闭掉。
顺便再提一下otp。
我曾经很迷惑对otp的使用。最近又看了一遍后,我好像明白一点了。
我注意到otp中并没有socket,accept,gen_tcp,之类的通信程序。
也就是说,otp是一个应用程序框架,不是分布式,也不是网络。
不过,它是并发的,有很多的进程在合作着,而且,erlang进程收消息,本身就是支持并发(不管多少个进程同时给它发消息,都会排队进自己的邮箱)。
所以,一旦我想用otp写一个网络程序,可行的方法就是把otp程序作为一个稳定的后端,分布式和通信用单独的程序来做,然后调用用otp写的模块。正如书中那个web后端的例子。
相关推荐
"lib_mysqludf_sys 的win版本dll库"这一标题明确指出,我们正在讨论的是一个专为Windows操作系统设计的动态链接库(Dynamic Link Library, DLL)文件,名为lib_mysqludf_sys。DLL是Windows系统中用于封装可重用代码...
流量累积功能块FB_函数库_Totalizer_Lib_TIA_Portal_V15版本是一个专为自动化工程设计的软件资源,适用于Siemens TIA Portal V15集成自动化环境中。该资源包含了一个专门用于处理流量累积的功能块(FB),是工业自动...
stm32f10x标准固件库的帮助文档(stm32f10x_stdperiph_lib_um.chm) stm32f10x标准固件库的帮助文档(stm32f10x_stdperiph_lib_um.chm) stm32f10x标准固件库的帮助文档(stm32f10x_stdperiph_lib_um.chm) stm32f10...
"lib_mysqludf_sys"是由第三方开发者提供的扩展库,主要目标是为MySQL提供与操作系统交互的能力。这个库包含了多个UDF(User Defined Function),允许用户在SQL查询语句中执行Linux或Windows等操作系统的命令。这...
《博途TIA V17运动库文件:Drive_Lib_S7_1200_1500_TIA V17详解》 在工业自动化领域,西门子的TIA博途(Totally Integrated Automation Portal)是一款广泛使用的集成工程软件,它涵盖了从设计、编程到调试的全生命...
STM32F10x_StdPeriph_Lib_V3.5.0是一个针对STM32F10x系列微控制器的官方标准外设库,它由意法半导体(STMicroelectronics)开发,专为基于ARM Cortex-M3内核的芯片设计。这个库包含了丰富的驱动程序,使得开发者可以...
为解决这一问题,我们有了一款名为“79047707_LSim_LIB_V3_0_0”的压缩包文件,它提供了一个专门用于仿真PID控制中PV值反馈的库。 首先,我们要理解什么是LSim LIB。LSim LIB是一个仿真库,专为PLC编程和仿真环境...
标题 "murata_lib_ads_s_2106.zip" 提供的信息表明,这是一个与村田(Murata)元器件相关的库文件,适用于ADS2016。ADS是Analog Device Studio的简称,是一款广泛用于射频(RF)、微波以及毫米波电路设计的仿真软件...
STM32F10x_StdPeriph_Lib_V3.5.0是意法半导体(STMicroelectronics)为STM32F1系列微控制器提供的标准外设库(Standard Peripheral Library)。这个库是开发者进行STM32开发的重要工具,它包含了驱动程序、示例代码...
STM32多种外设的开发例程:路径STM32F10x_StdPeriph_Lib_V3.5.0\Project\STM32F10x_StdPeriph_Examples\ADC STM32F10x_StdPeriph_Lib_V3.5.0\Project\STM32F10x_StdPeriph_Examples\BKP STM32F10x_StdPeriph_Lib_V...
STM32F10x_StdPeriph_Lib_V3.5.0是一个针对STM32F10x系列微控制器的固件库,由意法半导体(STMicroelectronics)开发,用于简化基于ARM Cortex-M3内核的STM32单片机的软件开发。这个库包含了标准外设驱动,使得...
"Fortran-lib.rar_FORTRAN LIB_Fortran lib_fortran 库_fortran库函数"这个压缩包很可能是提供了一些Fortran编写的库函数,这些库函数是为了方便开发者在进行科学计算时调用,以提高代码的效率和可复用性。...
"murata_lib_ads_s_2002e.zip"是一个专门针对ADS2011(Advanced Design System 2011)的仿真元器件库,它包含了Murata公司的各种电感器、电容器等被动元器件的真实模型。这个库为设计者提供了一种更接近实际的仿真...
STM32F10x_StdPeriph_Lib_V3.5.0是一个针对STM32F103系列微控制器的官方标准外设库,它为开发者提供了丰富的API(应用程序编程接口),使得开发者能够轻松地访问和控制STM32F103芯片上的各种外设。这个库包含了驱动...
使用STM32F10x_StdPeriph_Lib_V3.6.0进行开发时,首先需要阅读`readme.txt`和`stm32f10x_stdperiph_lib_um.chm`,理解库的结构和使用方法。然后,可以在`Project`中找到示例代码,通过修改或复制这些代码来创建自己...
STM32F10x_StdPeriph_Lib_V3.5.0 是一款针对STM32F10X系列微控制器的固件库,由意法半导体(STMicroelectronics)官方发布,版本号为3.5.0。该库是STM32开发的重要组成部分,它提供了丰富的标准外设驱动程序,简化了...
STM32F10x_StdPeriph_Lib_V3.6.0是一个针对STM32F10x系列微控制器的官方固件库,版本号为3.6.0。这个库是STMicroelectronics(意法半导体)为开发者提供的一套完整的软件开发工具,它包含了驱动程序、示例代码和模板...
STM8S_StdPeriph_Lib_V2.1.0 提供的库简化了与这些外设的交互,使得开发者可以更专注于应用程序的逻辑,而不是底层硬件细节。 1. GPIO(通用输入/输出):GPIO是微控制器与外界进行数据交换的基础,STM8S库中的GPIO...
STM32F10X_StdPeriph_Lib_V3.5.0是该库的一个特定版本,其版本号3.5.0表明这是经过多次更新和优化的成熟版本。 固件库通常包括驱动程序、示例代码、配置文件以及相关文档,使得开发者可以便捷地访问和控制STM32F10X...
STM32F10x_StdPeriph_Lib_V3.5.0是一个针对STM32F10x系列的标准化外设库,版本为3.5.0。这个库提供了丰富的API函数,使得开发者能够方便地访问和控制STM32F10x芯片的各种外设功能。 首先,STM32F10x外设库主要包含...