forked from OpenTelecom/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecallmgr_fs_sup.erl
77 lines (62 loc) · 2.72 KB
/
ecallmgr_fs_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
%%%-----------------------------------------------------------------------------
%%% @copyright (C) 2012-2018, 2600Hz
%%% @doc
%%% @end
%%%-----------------------------------------------------------------------------
-module(ecallmgr_fs_sup).
-behaviour(supervisor).
-include("ecallmgr.hrl").
-define(SERVER, ?MODULE).
-export([start_link/0]).
-export([add_node/2]).
-export([remove_node/1]).
-export([find_node/1]).
-export([init/1]).
-define(CHILDREN, [?SUPER('ecallmgr_fs_pinger_sup')
,?WORKER('ecallmgr_fs_nodes')
,?WORKER('ecallmgr_fs_channels')
,?WORKER('ecallmgr_fs_conferences_shared')
,?WORKER('ecallmgr_fs_conferences')
]).
%%==============================================================================
%% API functions
%%==============================================================================
%%------------------------------------------------------------------------------
%% @doc Starts the supervisor.
%% @end
%%------------------------------------------------------------------------------
-spec start_link() -> kz_types:startlink_ret().
start_link() ->
supervisor:start_link({'local', ?SERVER}, ?MODULE, []).
-spec add_node(atom(), kz_term:proplist()) -> kz_types:sup_startchild_ret().
add_node(Node, Options) ->
Args = [Node, Options],
ChildSpec = ?SUPER_NAME_ARGS_TYPE(Node, 'ecallmgr_fs_node_sup', Args, 'transient'),
supervisor:start_child(?SERVER, ChildSpec).
-spec find_node(atom()) -> kz_term:api_pid().
find_node(Node) ->
find_node(supervisor:which_children(?SERVER), Node).
find_node([], _) -> 'undefined';
find_node([{Node, Pid, 'supervisor', _}|_], Node) -> Pid;
find_node([_|Workers], Node) -> find_node(Workers, Node).
-spec remove_node(atom()) -> 'ok' | {'error', any()}.
remove_node(Node) ->
_ = supervisor:terminate_child(?SERVER, Node),
supervisor:delete_child(?SERVER, Node).
%%==============================================================================
%% Supervisor callbacks
%%==============================================================================
%%------------------------------------------------------------------------------
%% @doc Whenever a supervisor is started using `supervisor:start_link/[2,3]',
%% this function is called by the new process to find out about
%% restart strategy, maximum restart frequency and child
%% specifications.
%% @end
%%------------------------------------------------------------------------------
-spec init(any()) -> kz_types:sup_init_ret().
init([]) ->
RestartStrategy = 'one_for_one',
MaxRestarts = 5,
MaxSecondsBetweenRestarts = 10,
SupFlags = {RestartStrategy, MaxRestarts, MaxSecondsBetweenRestarts},
{'ok', {SupFlags, ?CHILDREN}}.