Add type specs and simplifications to egs_sup.erl.
This commit is contained in:
parent
2325c7cf63
commit
eab53bc3a7
@ -1,6 +1,6 @@
|
|||||||
%% @author Loïc Hoguin <essen@dev-extend.eu>
|
%% @author Loïc Hoguin <essen@dev-extend.eu>
|
||||||
%% @copyright 2010-2011 Loïc Hoguin.
|
%% @copyright 2010-2011 Loïc Hoguin.
|
||||||
%% @doc Supervisor for the egs application.
|
%% @doc Top-level supervisor for the egs application.
|
||||||
%%
|
%%
|
||||||
%% This file is part of EGS.
|
%% This file is part of EGS.
|
||||||
%%
|
%%
|
||||||
@ -20,30 +20,36 @@
|
|||||||
-module(egs_sup).
|
-module(egs_sup).
|
||||||
-behaviour(supervisor).
|
-behaviour(supervisor).
|
||||||
|
|
||||||
-export([init/1]). %% Supervisor callbacks.
|
-export([start_link/0]). %% API.
|
||||||
-export([start_link/0]). %% Other functions.
|
-export([init/1]). %% Supervisor.
|
||||||
|
|
||||||
%% @spec start_link() -> ServerRet
|
-spec start_link() -> {ok, pid()}.
|
||||||
%% @doc API for starting the supervisor.
|
|
||||||
start_link() ->
|
start_link() ->
|
||||||
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
||||||
|
|
||||||
%% @spec init([]) -> SupervisorTree
|
-spec init([]) -> {ok, {{one_for_one, 10, 10}, [{_, _, _, _, _, _}, ...]}}.
|
||||||
%% @doc supervisor callback.
|
|
||||||
init([]) ->
|
init([]) ->
|
||||||
Procs = [
|
Procs = procs([egs_conf, {sup, egs_quests_sup}, {sup, egs_zones_sup},
|
||||||
{egs_conf, {egs_conf, start_link, []}, permanent, 5000, worker, dynamic},
|
egs_accounts, egs_users, egs_seasons, egs_counters_db, egs_items_db,
|
||||||
{egs_quests_sup, {egs_quests_sup, start_link, []}, permanent, 5000, supervisor, [egs_quests_sup]},
|
egs_npc_db, egs_patch_files_db, egs_quests_db, egs_shops_db,
|
||||||
{egs_zones_sup, {egs_zones_sup, start_link, []}, permanent, 5000, supervisor, [egs_zones_sup]},
|
egs_universes], []),
|
||||||
{egs_accounts, {egs_accounts, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_users, {egs_users, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_seasons, {egs_seasons, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_counters_db, {egs_counters_db, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_items_db, {egs_items_db, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_npc_db, {egs_npc_db, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_patch_files_db, {egs_patch_files_db, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_quests_db, {egs_quests_db, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_shops_db, {egs_shops_db, start_link, []}, permanent, 5000, worker, dynamic},
|
|
||||||
{egs_universes, {egs_universes, start_link, []}, permanent, 5000, worker, dynamic}
|
|
||||||
],
|
|
||||||
{ok, {{one_for_one, 10, 10}, Procs}}.
|
{ok, {{one_for_one, 10, 10}, Procs}}.
|
||||||
|
|
||||||
|
%% Internal.
|
||||||
|
|
||||||
|
-spec procs([module()|{sup, module()}], [{_, _, _, _, _, _}])
|
||||||
|
-> [{_, _, _, _, _, _}].
|
||||||
|
procs([], Acc) ->
|
||||||
|
lists:reverse(Acc);
|
||||||
|
procs([{sup, Module}|Tail], Acc) ->
|
||||||
|
procs(Tail, [sup(Module)|Acc]);
|
||||||
|
procs([Module|Tail], Acc) ->
|
||||||
|
procs(Tail, [worker(Module)|Acc]).
|
||||||
|
|
||||||
|
-spec worker(M) -> {M, {M, start_link, []}, permanent, 5000, worker, dynamic}.
|
||||||
|
worker(Module) ->
|
||||||
|
{Module, {Module, start_link, []}, permanent, 5000, worker, dynamic}.
|
||||||
|
|
||||||
|
-spec sup(M) -> {M, {M, start_link, []}, permanent, 5000, supervisor, [M]}.
|
||||||
|
sup(Module) ->
|
||||||
|
{Module, {Module, start_link, []}, permanent, 5000, supervisor, [Module]}.
|
||||||
|
Loading…
Reference in New Issue
Block a user