- 浏览: 576812 次
- 性别:
- 来自: 广州杭州
文章分类
最新评论
-
bohc:
谢谢,搞了两天了,现在才算是找到问题所在,解决了。
文件在使用FileChannel.map后不能被删除(Windows上) -
zhang0000jun:
在jdk1.8中执行正好和楼主的结果相反,请指教
从Java视角理解CPU缓存(CPU Cache) -
在世界的中心呼喚愛:
forenroll 写道请问楼主的那个分析工具cachemis ...
从Java视角理解CPU缓存(CPU Cache) -
xgj1988:
我这里打出的结果是: 0 L1-dcache-load-mis ...
从Java视角理解CPU缓存(CPU Cache) -
thebye85:
请教下大神,为什么频繁的park会导致大量context sw ...
从Java视角理解CPU上下文切换(Context Switch)
4 Gen_Event 行为
这一章应该与gen_event(3)
结合起来看,gen_event(3)
对所有接口函数和回调函数都有详细描述.
4.1 事件处理原则
在OTP中, an event manager is a named object to which events can be sent. An event could be, for example, an error, an alarm or some information that should be logged.
In the event manager, zero, one or several event handlers are installed. When the event manager is notified about an event, the event will be processed by all the installed event handlers. For example, an event manager for handling errors can by default have a handler installed which writes error messages to the terminal. If the error messages during a certain period should be saved to a file as well, the user adds another event handler which does this. When logging to file is no longer necessary, this event handler is deleted.
An event manager is implemented as a process and each event handler is implemented as a callback module.
The event manager essentially maintains a list of {Module, State}
pairs, where each Module
is an event handler, and State
the internal state of that event handler.
4.2 Example
The callback module for the event handler writing error messages to the terminal could look like:
java 代码
- -module(terminal_logger).
- -behaviour(gen_event).
- -export([init/1, handle_event/2, terminate/2]).
- init(_Args) ->
- {ok, []}.
- handle_event(ErrorMsg, State) ->
- io:format("***Error*** ~p~n", [ErrorMsg]),
- {ok, State}.
- terminate(_Args, _State) ->
- ok.
The callback module for the event handler writing error messages to a file could look like:
java 代码
- -module(file_logger).
- -behaviour(gen_event).
- -export([init/1, handle_event/2, terminate/2]).
- init(File) ->
- {ok, Fd} = file:open(File, read),
- {ok, Fd}.
- handle_event(ErrorMsg, Fd) ->
- io:format(Fd, "***Error*** ~p~n", [ErrorMsg]),
- {ok, Fd}.
- terminate(_Args, Fd) ->
- file:close(Fd).
The code is explained in the next sections.
4.3 Starting an Event Manager
To start an event manager for handling errors, as described in the example above, call the following function:
java 代码
- gen_event:start_link({local, error_man})
This function spawns and links to a new process, an event manager.
The argument, {local, error_man}
specifies the name. In this case, the event manager will be locally registered as error_man
.
If the name is omitted, the event manager is not registered. Instead its pid must be used. The name could also be given as {global, Name}
, in which case the event manager is registered using global:register_name/2
.
gen_event:start_link
must be used if the event manager is part of a supervision tree, i.e. is started by a supervisor. There is another function gen_event:start
to start a stand-alone event manager, i.e. an event manager which is not part of a supervision tree.
4.4 Adding an Event Handler
Here is an example using the shell on how to start an event manager and add an event handler to it:
1> gen_event:start({local, error_man}).
{ok,<0.31.0>}
2> gen_event:add_handler(error_man, terminal_logger, []).
ok
This function sends a message to the event manager registered as error_man
, telling it to add the event handler terminal_logger
. The event manager will call the callback function terminal_logger:init([])
, where the argument [] is the third argument to add_handler
. init
is expected to return {ok, State}
, where State
is the internal state fo the event handler.
java 代码
- init(_Args) ->
- {ok, []}.
Here, init
does not need any indata and ignores its argument. Also, for terminal_logger
the internal state is not used. For file_logger
, the internal state is used to save the open file descriptor.
java 代码
- init(_Args) ->
- {ok, Fd} = file:open(File, read),
- {ok, Fd}.
4.5 Notifying About Events
3> gen_event:notify(error_man, no_reply).
***Error*** no_reply
ok
error_man
is the name of the event manager and no_reply
is the event.
The event is made into a message and sent to the event manager. When the event is received, the event manager calls handle_event(Event, State)
for each installed event handler, in the same order as they were added. The function is expected to return a tuple {ok, State1}
, where State1
is a new value for the state of the event handler.
In terminal_logger
:
- handle_event(ErrorMsg, State) ->
- io:format("***Error*** ~p~n", [ErrorMsg]),
- {ok, State}.
- In file_logger:
- handle_event(ErrorMsg, Fd) ->
- io:format(Fd, "***Error*** ~p~n", [ErrorMsg]),
- {ok, Fd}.
4.6 Deleting an Event Handler
4> gen_event:delete_handler(error_man, terminal_logger, []).
ok
This function sends a message to the event manager registered as error_man
, telling it to delete the event handler terminal_logger
. The event manager will call the callback function terminal_logger:terminate([], State)
, where the argument [] is the third argument to delete_handler
. terminate
should be the opposite of init
and do any necessary cleaning up. Its return value is ignored.
For terminal_logger
, no cleaning up is necessary:
java 代码
- terminate(_Args, Fd) ->
- file:close(Fd).
For file_logger
, the file descriptor opened in init
needs to be closed:
java 代码
- terminate(_Args, Fd) ->
- file:close(Fd).
4.7 Stopping
When an event manager is stopped, it will give each of the installed event handlers the chance to clean up by calling terminate/2
, the same way as when deleting a handler.
4.7.1 In a Supervision Tree
If the event manager is part of a supervision tree, no stop function is needed. The event manager will automatically be terminated by its supervisor. Exactly how this is done is defined by a shutdown strategy set in the supervisor.
4.7.2 Stand-Alone Event Managers
An event manager can also be stopped by calling:
> gen_event:stop(error_man).
ok
发表评论
-
ubuntu安装otp R11B 的一些记录
2007-11-16 12:30 2828新的ubuntu系统会缺少一些工具 和lib. 用apt-ge ... -
emulator调试日志: driver篇
2007-10-08 16:35 2318--------- driver篇 ------------- ... -
修正Programming Erlang中linked driver实例的小问题
2007-10-08 14:50 2485也许很多人碰上过, 用example1_lid:sta ... -
emulator调试日志: port篇
2007-10-06 16:14 2408------------------ port 篇 ----- ... -
supervisor一小技巧
2007-09-04 13:20 1833simple_one_for_one可以让supervisor ... -
gen_server
2007-08-29 21:52 1944State用来存数据, 任何erlang term都行 ge ... -
application
2007-08-29 02:01 1760用pman 可以看出application controlle ... -
epmd源码学习
2007-07-26 10:14 2046注: 此处节点是指分布式中分布在各终端的点, 而结点是指存在数 ... -
Tracing和dbg
2007-07-15 21:49 2572代码不必用特殊的标记(比如debug_info)来编译,也可以 ... -
ets,dets与大数据存储
2007-07-15 12:49 4970ets与dets都是用来存大数据的机制 ets是Erl ... -
用telnet来与ejabberd交互
2007-07-11 15:41 3242看了一篇文章,觉得用telnet来调试ejabberd也是一种 ... -
ejabberd管理页面和客户端
2007-07-11 00:23 9782转战到97机器。在ejabber.config加上这么一行. ... -
ejabberd在linux平台的安装与配置
2007-07-05 21:17 11971这些天捣鼓了下ejabberd,准备研究它的代码,做为榜样~ ... -
mnesia相关笔记
2007-06-29 12:17 2361当前版本OTP 5.5的mensia建表的表名可以和记录名不一 ... -
OTP设计原则:应用
2007-06-27 00:32 19647 Applications This chapter sh ... -
erlang网络编程的几个性能调优和注意点
2007-06-26 09:56 17882前些天给echo_server写了 ... -
erlc
2007-06-24 15:08 3854erlc 命令 erlc 概要 编译器 描述 Th ... -
echo_server
2007-06-23 14:45 2470代码 -module(echo_server ... -
OTP设计原则:Supervisor行为
2007-06-22 12:15 27585 Supervisor Behaviour This s ... -
OTP设计原则:Gen_Fsm 行为
2007-06-22 11:56 27633 Gen_Fsm 行为 This chapter shou ...
相关推荐
OTP提供了几个设计良好的应用框架,如gen_server、gen_event、gen_fsm等,它们是基于行为模式的模块,简化了并发编程和状态管理。 5. **分布式功能** OTP支持跨节点的分布式计算,使得在多台机器上构建分布式系统...
Erlang OTP设计原则中的Gen_Fsm行为是一个关键的概念,用于构建健壮、可扩展的并发应用程序。Gen_Fsm,即通用有限状态机,是一种行为模式,它提供了一种结构化的方法来处理具有多种状态和事件的系统。本文将深入探讨...
OTP设计原则着重于实现高度并发、容错性和高效能。下面将详细讨论Erlang OTP中的关键概念和相关知识点。 1. 监督树(Supervision Tree): 监督树是OTP设计的核心概念,它是一种组织Erlang进程的方式。每个节点都...
2. OTP框架:理解其模块化设计、行为(gen_server, gen_event等)、分布式应用和系统监控。 3. RabbitMQ基本概念:掌握消息队列的工作原理、交换器(exchanges)、队列(queues)、绑定(bindings)以及消费者...
### OTP设计原则详解 #### 概览 OTP(Open Telecom Platform)是Erlang/OTP框架的核心组成部分之一,它提供了一套成熟的、可扩展的、容错的应用程序设计模式。OTP设计原则指导开发者如何构建稳定可靠的分布式系统...
它包含了一组设计原则和库模块,如 supervision trees(监督树)、gen_server行为、gen_event行为等,为开发者提供了一种结构化的方式来处理并发和错误恢复。 1. **Supervision Trees**:OTP的核心概念之一是监督树...
Erlang OTP设计原理是一份深入探讨Erlang/OTP(Open Telecom Platform)框架中设计模式和组织代码原则的文档。Erlang OTP作为Erlang语言的中间件平台,提供了构建可扩展和容错系统的标准方法。 文档开篇就介绍了...
1. **模块化设计**:OTP提供了各种预定义的进程行为模式(gen_server、gen_event、gen_fsm等),便于开发者创建符合特定模式的进程,提高了代码复用和可维护性。 2. **分布式计算**:Erlang OTP支持跨节点的进程...
7. **行为模块**:如gen_server、gen_event、gen_fsm等,是OTP设计模式的具体实现,简化了编写服务器、事件处理器和有限状态机的代码。 关于压缩包内的"otp_src_17.3",这是Erlang OTP 17.3版本的源代码目录。为了...
这些库包括Mnesia(分布式数据库)、Event Logger、公共接口定义语言(CIDL)以及行为模式如GenServer、GenEvent和Gen_fsm等。这些行为模式为开发者提供了构建状态管理、事件处理和分布式服务的标准结构,使得代码...
- **事件处理原则**:介绍了Gen_Event的行为模式。 - **示例**:提供了具体的Gen_Event用法示例。 - **启动事件管理器**:说明了如何启动事件管理器。 - **加入事件处理器**:讲解了如何添加事件处理器。 - **...
例如Gen_Server、Gen_Fsm、Gen_Event和Supervisor等。每个行为模式都有其通用部分和特定部分。通用部分由Erlang/OTP库提供,开发者只需要专注于实现特定部分,即回调模块,以及根据需要导出特定的回调函数。 3. ...
5. **行为模式(Behaviours)**:如`gen_server`、`gen_event`和`supervisor`等,这些是Erlang OTP设计模式的实现,它们为特定的系统角色提供了基础架构。例如,`gen_server`适用于处理服务请求,`gen_event`用于...
OTP是Erlang生态系统的重要组成部分,提供了许多预先设计好的行为模式(如 gen_server、gen_event 和 supervisor),这些模式使得开发者能够快速构建出符合Erlang并发哲学的应用程序。 otp_src_21.3.tar是Erlang ...
3. **模块更新**:许多OTP库模块在19.3版本中得到了更新,例如`gen_server`、`gen_event`等行为模式,它们是构建Erlang应用程序的基础。这些更新通常涉及到性能提升、API调整或新功能的添加,以更好地适应不断发展的...
通过`-behaviour(Behaviour)`,模块可以声明为特定行为的回调模块,如OTP标准行为`gen_server`、`gen_fsm`、`gen_event`和`supervisor`。 4.2.3 记录(Record)定义 使用`-record(Record, Fields)`定义记录,记录...
- **行为(Behaviours)**:如gen_server、gen_event和gen_fsm等,定义了标准的服务器、事件管理和有限状态机的行为模式,为编写可靠服务提供模板。 - **应用(Applications)**:Erlang程序组织成应用,每个应用有...
- **函数**: `gen_event:add_sup_handler/3`。 - **参数**: 事件管理器、处理器模块、处理器参数。 - **2.4.5 事件通知** - **定义**: 向事件处理器发送消息。 - **处理**: 在处理器模块中处理消息。 - **...
### OTP设计原则 #### 2.1 概述 - **2.1.1 监督树**:介绍了Erlang OTP框架中的监督树概念。 - **2.1.2 Behaviour**:行为模块是用于编写特定类型进程的模板。 - **2.1.3 应用**:解释如何将模块和行为组合成应用...