2010-09-19 03:39:31 +08:00
|
|
|
|
%% @author Lo<4C>c Hoguin <essen@dev-extend.eu>
|
|
|
|
|
%% @copyright 2010 Lo<4C>c Hoguin.
|
|
|
|
|
%% @doc Supervisor for the egs application.
|
|
|
|
|
%%
|
|
|
|
|
%% This file is part of EGS.
|
|
|
|
|
%%
|
|
|
|
|
%% EGS is free software: you can redistribute it and/or modify
|
|
|
|
|
%% it under the terms of the GNU Affero General Public License as
|
|
|
|
|
%% published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
%% License, or (at your option) any later version.
|
|
|
|
|
%%
|
|
|
|
|
%% EGS is distributed in the hope that it will be useful,
|
|
|
|
|
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
%% GNU Affero General Public License for more details.
|
|
|
|
|
%%
|
|
|
|
|
%% You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
-module(egs_sup).
|
|
|
|
|
-behaviour(supervisor).
|
|
|
|
|
-export([init/1]). %% Supervisor callbacks.
|
2011-02-15 09:46:36 +08:00
|
|
|
|
-export([start_link/0]). %% Other functions.
|
2010-09-19 03:39:31 +08:00
|
|
|
|
|
|
|
|
|
%% @spec start_link() -> ServerRet
|
|
|
|
|
%% @doc API for starting the supervisor.
|
|
|
|
|
start_link() ->
|
|
|
|
|
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
|
|
|
|
|
|
|
|
|
%% @spec init([]) -> SupervisorTree
|
|
|
|
|
%% @doc supervisor callback.
|
|
|
|
|
init([]) ->
|
2011-02-15 08:34:50 +08:00
|
|
|
|
Procs = [
|
|
|
|
|
{egs_conf, {egs_conf, start_link, []}, permanent, 5000, worker, dynamic},
|
|
|
|
|
{egs_servers_sup, {egs_servers_sup, start_link, []}, permanent, 5000, supervisor, [egs_servers_sup]},
|
2011-02-15 08:15:28 +08:00
|
|
|
|
{egs_quests_sup, {egs_quests_sup, start_link, []}, permanent, 5000, supervisor, [egs_quests_sup]},
|
|
|
|
|
{egs_zones_sup, {egs_zones_sup, start_link, []}, permanent, 5000, supervisor, [egs_zones_sup]},
|
2011-02-20 09:01:16 +08:00
|
|
|
|
{egs_accounts, {egs_accounts, start_link, []}, permanent, 5000, worker, dynamic},
|
2011-02-21 03:00:04 +08:00
|
|
|
|
{egs_users, {egs_users, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-10-08 00:11:29 +08:00
|
|
|
|
{egs_seasons, {egs_seasons, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-11-06 10:24:55 +08:00
|
|
|
|
{egs_counters_db, {egs_counters_db, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-10-08 23:30:24 +08:00
|
|
|
|
{egs_items_db, {egs_items_db, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-10-11 23:16:07 +08:00
|
|
|
|
{egs_npc_db, {egs_npc_db, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-12-28 05:16:06 +08:00
|
|
|
|
{egs_patch_files_db, {egs_patch_files_db, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-11-08 02:45:35 +08:00
|
|
|
|
{egs_quests_db, {egs_quests_db, start_link, []}, permanent, 5000, worker, dynamic},
|
2010-10-09 02:56:48 +08:00
|
|
|
|
{egs_shops_db, {egs_shops_db, start_link, []}, permanent, 5000, worker, dynamic},
|
2011-02-15 08:34:50 +08:00
|
|
|
|
{egs_universes, {egs_universes, start_link, []}, permanent, 5000, worker, dynamic}
|
2010-10-07 06:06:02 +08:00
|
|
|
|
],
|
2011-02-15 08:34:50 +08:00
|
|
|
|
{ok, {{one_for_one, 10, 10}, Procs}}.
|