forked from jstrale/ErlangPhone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbsc_sup.erl
88 lines (72 loc) · 3.26 KB
/
bsc_sup.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
%%%---------------------------------------------------------------------
%%% @author Johan Stråle <jstrale@kth.se>, Helena Lindén <pkhli@kth.se>
%%%---------------------------------------------------------------------
%%% Description module bsc_sup.erl
%%%---------------------------------------------------------------------
%%% This module represents a supervisor handling a hlr and a
%%% phone controller supervisor.
%%%---------------------------------------------------------------------
-module(bsc_sup).
-behaviour(supervisor).
%% API
-export([start_link/0, add_controller/1, remove_controller/1]).
%% Supervisor callbacks
-export([init/1]).
-define(SERVER, ?MODULE).
%%%===================================================================
%%% API functions
%%%===================================================================
%%--------------------------------------------------------------------
%% Function: start_link/0
%% Purpose: start supervisor
%% Params: ---
%% Returns: {ok, Pid}
%%--------------------------------------------------------------------
start_link() ->
supervisor:start_link({local, ?SERVER}, ?MODULE, []).
%%--------------------------------------------------------------------
%% Function: add_controller/2
%% Purpose: Adds a phone controller attached to PhoneNumber
%% to the supervisor with SupPid
%% Params: SupPid, PhoneNumber
%% Returns: {ok, Pid}
%%--------------------------------------------------------------------
add_controller(PhoneNumber) ->
[_, {_, FsmSupPid, _, _}] = supervisor:which_children(bsc_sup),
phone_fsm_sup:add_controller(FsmSupPid, PhoneNumber).
%%--------------------------------------------------------------------
%% Function: remove_controller/2
%% Purpose: Removes and terminates the phone controller attached
%% to PhoneNumber from the supervisor with SupPid
%% Params: SupPid, PhoneNumber
%% Returns: ok
%%--------------------------------------------------------------------
remove_controller(PhoneNumber) ->
[_, {_, FsmSupPid, _, _}] = supervisor:which_children(bsc_sup),
phone_fsm_sup:remove_controller(FsmSupPid, PhoneNumber).
%%%===================================================================
%%% Supervisor callbacks
%%%===================================================================
%%--------------------------------------------------------------------
%% Function: init/1
%% Purpose: init supervisor
%% Params: ignore
%% Returns: {ok, {supSpecs, [childSpecs]}}
%%--------------------------------------------------------------------
init([]) ->
RestartStrategy = one_for_one,
MaxRestarts = 1000,
MaxSecondsBetweenRestarts = 3600,
SupFlags = {RestartStrategy, MaxRestarts, MaxSecondsBetweenRestarts},
Restart = permanent,
Shutdown = 2000,
HlrType = worker,
FsmSupType = supervisor,
HlrChild = {hlr, {hlr, start_link, []},
Restart, Shutdown, HlrType, [phone_fsm, hlr, phone]},
PhoneFsmSupChild = {phone_fsm_sup, {phone_fsm_sup, start_link, []},
Restart, Shutdown, FsmSupType, [phone_fsm_sup, phone_fsm]},
{ok, {SupFlags, [PhoneFsmSupChild, HlrChild]}}.
%%%===================================================================
%%% Internal functions
%%%===================================================================