Current section

Files

Jump to
ra src ra_system_sup.erl
Raw

src/ra_system_sup.erl

%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2017-2021 VMware, Inc. or its affiliates. All rights reserved.
%%
%% @hidden
-module(ra_system_sup).
-behaviour(supervisor).
-include("ra.hrl").
%% API functions
-export([start_link/1]).
%% Supervisor callbacks
-export([init/1]).
start_link(Config) ->
supervisor:start_link(?MODULE, Config).
init(#{data_dir := DataDir,
names := _Names} = Cfg) ->
case ra_lib:make_dir(DataDir) of
ok ->
%% the ra log ets process is supervised by the system to keep mem tables
%% alive whilst the rest of the log infra might be down
Ets = #{id => ra_log_ets,
start => {ra_log_ets, start_link, [Cfg]}},
SupFlags = #{strategy => one_for_all, intensity => 1, period => 5},
RaLogSup = #{id => ra_log_sup,
type => supervisor,
start => {ra_log_sup, start_link, [Cfg]}},
RaServerSupSup = #{id => ra_server_sup_sup,
type => supervisor,
start => {ra_server_sup_sup, start_link, [Cfg]}},
{ok, {SupFlags, [Ets, RaLogSup, RaServerSupSup]}};
{error, Code} ->
?ERR("Failed to create Ra data directory at '~s', file system operation error: ~p", [DataDir, Code]),
exit({error, "Ra could not create its data directory. See the log for details."})
end.