forked from sky-big/RabbitMQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrabbit_event.erl
185 lines (144 loc) · 5.53 KB
/
rabbit_event.erl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
%% The contents of this file are subject to the Mozilla Public License
%% Version 1.1 (the "License"); you may not use this file except in
%% compliance with the License. You may obtain a copy of the License
%% at http://www.mozilla.org/MPL/
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and
%% limitations under the License.
%%
%% The Original Code is RabbitMQ.
%%
%% The Initial Developer of the Original Code is GoPivotal, Inc.
%% Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
%%
-module(rabbit_event).
-include("rabbit.hrl").
-export([start_link/0]).
-export([init_stats_timer/2, init_disabled_stats_timer/2,
ensure_stats_timer/3, stop_stats_timer/2, reset_stats_timer/2]).
-export([stats_level/2, if_enabled/3]).
-export([notify/2, notify/3, notify_if/3]).
-export([sync_notify/2, sync_notify/3]).
%%----------------------------------------------------------------------------
-record(state, {level, interval, timer}).
%%----------------------------------------------------------------------------
-ifdef(use_specs).
-export_type([event_type/0, event_props/0, event_timestamp/0, event/0]).
-type(event_type() :: atom()).
-type(event_props() :: term()).
-type(event_timestamp() ::
{non_neg_integer(), non_neg_integer(), non_neg_integer()}).
-type(event() :: #event { type :: event_type(),
props :: event_props(),
reference :: 'none' | reference(),
timestamp :: event_timestamp() }).
-type(level() :: 'none' | 'coarse' | 'fine').
-type(timer_fun() :: fun (() -> 'ok')).
-type(container() :: tuple()).
-type(pos() :: non_neg_integer()).
-spec(start_link/0 :: () -> rabbit_types:ok_pid_or_error()).
-spec(init_stats_timer/2 :: (container(), pos()) -> container()).
-spec(init_disabled_stats_timer/2 :: (container(), pos()) -> container()).
-spec(ensure_stats_timer/3 :: (container(), pos(), term()) -> container()).
-spec(stop_stats_timer/2 :: (container(), pos()) -> container()).
-spec(reset_stats_timer/2 :: (container(), pos()) -> container()).
-spec(stats_level/2 :: (container(), pos()) -> level()).
-spec(if_enabled/3 :: (container(), pos(), timer_fun()) -> 'ok').
-spec(notify/2 :: (event_type(), event_props()) -> 'ok').
-spec(notify/3 :: (event_type(), event_props(), reference() | 'none') -> 'ok').
-spec(notify_if/3 :: (boolean(), event_type(), event_props()) -> 'ok').
-spec(sync_notify/2 :: (event_type(), event_props()) -> 'ok').
-spec(sync_notify/3 :: (event_type(), event_props(),
reference() | 'none') -> 'ok').
-endif.
%%----------------------------------------------------------------------------
%% rabbit_event进程的启动入口函数
start_link() ->
gen_event:start_link({local, ?MODULE}).
%% The idea is, for each stat-emitting object:
%%
%% On startup:
%% init_stats_timer(State)
%% notify(created event)
%% if_enabled(internal_emit_stats) - so we immediately send something
%%
%% On wakeup:
%% ensure_stats_timer(State, emit_stats)
%% (Note we can't emit stats immediately, the timer may have fired 1ms ago.)
%%
%% emit_stats:
%% if_enabled(internal_emit_stats)
%% reset_stats_timer(State) - just bookkeeping
%%
%% Pre-hibernation:
%% if_enabled(internal_emit_stats)
%% stop_stats_timer(State)
%%
%% internal_emit_stats:
%% notify(stats)
%% 初始化状态
init_stats_timer(C, P) ->
{ok, StatsLevel} = application:get_env(rabbit, collect_statistics),
{ok, Interval} = application:get_env(rabbit, collect_statistics_interval),
setelement(P, C, #state{level = StatsLevel, interval = Interval,
timer = undefined}).
init_disabled_stats_timer(C, P) ->
setelement(P, C, #state{level = none, interval = 0, timer = undefined}).
%% 确保定时器的启动
ensure_stats_timer(C, P, Msg) ->
case element(P, C) of
#state{level = Level, interval = Interval, timer = undefined} = State
when Level =/= none ->
TRef = erlang:send_after(Interval, self(), Msg),
setelement(P, C, State#state{timer = TRef});
#state{} ->
C
end.
%% 关闭定时器
stop_stats_timer(C, P) ->
case element(P, C) of
#state{timer = TRef} = State when TRef =/= undefined ->
case erlang:cancel_timer(TRef) of
false -> C;
_ -> setelement(P, C, State#state{timer = undefined})
end;
#state{} ->
C
end.
%% 重置定时器为空
reset_stats_timer(C, P) ->
case element(P, C) of
#state{timer = TRef} = State when TRef =/= undefined ->
setelement(P, C, State#state{timer = undefined});
#state{} ->
C
end.
%% 得到当前状态的等级
stats_level(C, P) ->
#state{level = Level} = element(P, C),
Level.
%% 如果状态中的level不为none,则执行Fun函数
if_enabled(C, P, Fun) ->
case element(P, C) of
#state{level = none} -> ok;
#state{} -> Fun(), ok
end.
%% 发布事件
notify_if(true, Type, Props) -> notify(Type, Props);
notify_if(false, _Type, _Props) -> ok.
%% 异步向rabbit_event事件管理器发送事件
notify(Type, Props) -> notify(Type, Props, none).
notify(Type, Props, Ref) ->
gen_event:notify(?MODULE, event_cons(Type, Props, Ref)).
%% 同步向rabbit_event事件管理器发送事件
sync_notify(Type, Props) -> sync_notify(Type, Props, none).
sync_notify(Type, Props, Ref) ->
gen_event:sync_notify(?MODULE, event_cons(Type, Props, Ref)).
%% 组装事件结构
event_cons(Type, Props, Ref) ->
#event{type = Type,
props = Props,
reference = Ref,
timestamp = os:timestamp()}.