Packages
locus
1.9.0-beta
2.3.15
2.3.14
2.3.13
2.3.12
2.3.11
2.3.10
2.3.9
2.3.8
2.3.7
2.3.6
2.3.5
2.3.4
2.3.3
retired
2.3.2
2.3.1
2.3.0
2.2.2
2.2.1
2.2.0
2.1.0
2.0.0
1.16.1
1.16.0
1.15.0
1.14.1
1.14.0
1.13.2
1.13.1
1.13.0
1.12.2
1.12.1
1.12.0
1.11.0
1.11.0-beta
1.10.2
1.10.1
1.10.0
1.9.0
1.9.0-beta
1.8.0
1.7.0
1.6.2
1.6.1
1.6.0
1.5.1
1.5.0
1.4.0
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
MMDB reader for geolocation and ASN lookup of IP addresses, supporting MaxMind GeoLite2/GeoIP2 and other providers
Current section
Files
Jump to
Current section
Files
src/locus_database.erl
%% Copyright (c) 2017-2020 Guilherme Andrade
%%
%% Permission is hereby granted, free of charge, to any person obtaining a
%% copy of this software and associated documentation files (the "Software"),
%% to deal in the Software without restriction, including without limitation
%% the rights to use, copy, modify, merge, publish, distribute, sublicense,
%% and/or sell copies of the Software, and to permit persons to whom the
%% Software is furnished to do so, subject to the following conditions:
%%
%% The above copyright notice and this permission notice shall be included in
%% all copies or substantial portions of the Software.
%%
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
%% FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
%% DEALINGS IN THE SOFTWARE.
%%
%% locus is an independent project and has not been authorized, sponsored,
%% or otherwise approved by MaxMind.
-module(locus_database).
-behaviour(gen_server).
%% ------------------------------------------------------------------
%% API Function Exports
%% ------------------------------------------------------------------
-export(
[start/3,
stop/1,
start_link/3,
dynamic_child_spec/1,
static_child_spec/4,
enqueue_waiter/1
]).
-ignore_xref(
[start_link/3
]).
-ifdef(TEST).
-export([whereis/1]).
-export([list_subscribers/1]).
-endif.
%% ------------------------------------------------------------------
%% gen_server Function Exports
%% ------------------------------------------------------------------
-export(
[init/1,
handle_call/3,
handle_cast/2,
handle_info/2,
terminate/2,
code_change/3
]).
%% ------------------------------------------------------------------
%% Macro Definitions
%% ------------------------------------------------------------------
-ifndef(NO_GEN_SERVER_HIBERNATE_AFTER).
-define(HIBERNATE_AFTER, (timer:seconds(5))).
-endif.
-define(DEFAULT_HTTP_UNREADY_UPDATE_PERIOD, (timer:minutes(1))).
-define(DEFAULT_HTTP_READY_UPDATE_PERIOD, (timer:hours(6))).
-define(DEFAULT_FS_UNREADY_UPDATE_PEROID, (timer:seconds(5))).
-define(DEFAULT_FS_READY_UPDATE_PERIOD, (timer:seconds(30))).
-define(is_pos_integer(V), ((is_integer((V)) andalso ((V) >= 1)))).
%% ------------------------------------------------------------------
%% Record and Type Definitions
%% ------------------------------------------------------------------
-type opt() ::
database_opt() |
locus_loader:opt().
-export_type([opt/0]).
-type database_opt() ::
{event_subscriber, atom() | pid()} |
{internal, internal_opt()}.
-export_type([database_opt/0]).
-opaque internal_opt() ::
{async_waiter, reference(), pid()}.
-export_type([internal_opt/0]).
-type static_child_spec() ::
#{ id := term(),
start := {?MODULE, start_link, [atom() | origin() | [opt()], ...]},
restart := permanent,
shutdown := non_neg_integer(),
type := worker,
modules := [?MODULE, ...]
}.
-export_type([static_child_spec/0]).
-record(state, {
id :: atom(),
loader_pid :: pid(),
subscribers :: [atom() | pid()],
subscriber_mons :: #{monitor() => pid()},
waiters :: #{reference() => pid()},
waiter_mons :: #{monitor() => reference()},
last_version :: calendar:datetime() | undefined
}).
-type state() :: #state{}.
-type monitor() :: reference().
-type origin() :: locus_loader:origin().
-export_type([origin/0]).
-type event() ::
locus_loader:event() |
event_load_attempt_finished().
-export_type([event/0]).
-type event_load_attempt_finished() ::
{load_attempt_finished, locus_loader:source(), {ok, Version :: calendar:datetime()}} |
{load_attempt_finished, locus_loader:source(), {error, term()}}.
-export_type([event_load_attempt_finished/0]).
%% ------------------------------------------------------------------
%% API Function Definitions
%% ------------------------------------------------------------------
-spec start(atom(), origin(), [opt()])
-> ok |
{error, already_started} |
{error, {invalid_opt,term()}} |
{error, application_not_running}.
%% @private
start(Id, Origin, Opts) ->
case locus_database_sup:start_child([Id, Origin, Opts]) of
{ok, _Pid} ->
ok;
{error, {already_started, _Pid}} ->
{error, already_started};
{error, Reason} ->
{error, Reason}
end.
-spec stop(atom()) -> ok | {error, not_found}.
%% @private
stop(Id) ->
ServerName = server_name(Id),
try gen:stop(ServerName, normal, 5000) of
ok -> ok
catch
exit:noproc -> {error, not_found};
exit:normal -> ok;
exit:shutdown -> ok;
exit:{shutdown,_} -> ok
end.
-spec start_link(atom(), origin(), [opt()]) -> {ok, pid()}.
%% @private
start_link(Id, Origin, Opts) ->
ServerName = server_name(Id),
ServerOpts = server_opts(),
gen_server:start_link({local,ServerName}, ?MODULE, [Id, Origin, Opts], ServerOpts).
-spec dynamic_child_spec(term()) -> supervisor:child_spec().
%% @private
dynamic_child_spec(ChildId) ->
#{ id => ChildId,
start => {?MODULE, start_link, []},
restart => transient,
shutdown => timer:seconds(5),
type => worker,
modules => [?MODULE]
}.
-spec static_child_spec(term(), atom(), origin(), [opt()]) -> static_child_spec().
%% @private
static_child_spec(ChildId, DatabaseId, Origin, Opts) ->
#{ id => ChildId,
start => {?MODULE, start_link, [DatabaseId, Origin, Opts]},
restart => permanent,
shutdown => timer:seconds(5),
type => worker,
modules => [?MODULE]
}.
-spec enqueue_waiter(atom()) -> reference().
%% @private
enqueue_waiter(DatabaseId) ->
ServerName = server_name(DatabaseId),
Pid = erlang:whereis(ServerName),
Ref = monitor(process, Pid),
gen_server:cast(Pid, {enqueue_waiter, Ref, self()}),
Ref.
-ifdef(TEST).
%% @private
whereis(Id) ->
ServerName = server_name(Id),
erlang:whereis(ServerName).
%% @private
list_subscribers(Id) ->
ServerName = server_name(Id),
State = sys:get_state(ServerName),
State#state.subscribers.
-endif.
%% ------------------------------------------------------------------
%% gen_server Function Definitions
%% ------------------------------------------------------------------
-spec init([atom() | origin() | [opt()], ...])
-> {ok, state()} |
{stop, {invalid_opt,term()}}.
%% @private
init([Id, Origin, Opts]) ->
_ = process_flag(trap_exit, true),
case validate_opts(Origin, Opts) of
{ok, {DatabaseOpts, LoaderOpts, FetcherOpts}} ->
init(Id, Origin, DatabaseOpts, LoaderOpts, FetcherOpts);
{error, BadOpt} ->
{stop, {invalid_opt,BadOpt}}
end.
-spec handle_call(term(), {pid(),reference()}, state())
-> {stop, unexpected_call, state()}.
%% @private
handle_call(_Call, _From, State) ->
{stop, unexpected_call, State}.
-spec handle_cast(term(), state())
-> {noreply, state()} |
{stop, unexpected_cast, state()}.
%% @private
handle_cast({enqueue_waiter,Ref,Pid}, State) ->
State2 = maybe_enqueue_waiter(Ref, Pid, State),
{noreply, State2};
handle_cast(_Cast, State) ->
{stop, unexpected_cast, State}.
-spec handle_info(term(), state())
-> {noreply, state()} |
{stop, term(), state()}.
%% @private
handle_info({LoaderPid, Msg}, State)
when LoaderPid =:= State#state.loader_pid ->
handle_loader_msg(Msg, State);
handle_info({'DOWN', Ref, process, _, _}, State) ->
handle_monitored_process_death(Ref, State);
handle_info({'EXIT', Pid, Reason}, State) ->
handle_linked_process_death(Pid, Reason, State);
handle_info(_Info, State) ->
{stop, unexpected_info, State}.
-spec terminate(term(), state()) -> ok.
%% @private
terminate(_Reason, _State) ->
ok.
-spec code_change(term(), state(), term()) -> {ok, state()}.
%% @private
code_change(_OldVsn, #state{} = State, _Extra) ->
{ok, State}.
%% ------------------------------------------------------------------
%% Internal Function Definitions
%% ------------------------------------------------------------------
-spec server_name(atom()) -> atom().
server_name(Id) ->
list_to_atom(
atom_to_list(?MODULE)
++ "."
++ atom_to_list(Id)
).
-ifndef(NO_GEN_SERVER_HIBERNATE_AFTER).
server_opts() -> [{locus_util:dialyzer_opaque_atom(hibernate_after), ?HIBERNATE_AFTER}].
-else.
server_opts() -> [].
-endif.
-spec validate_opts(origin(), list())
-> {ok, {[database_opt()], [locus_loader:loader_opt()], [locus_loader:fetcher_opt()]}} |
{error, term()}.
validate_opts(Origin, Opts) ->
case locus_loader:validate_opts(Origin, Opts) of
{ok, {LoaderOpts, FetcherOpts, DatabaseOpts}} ->
validate_database_opts(DatabaseOpts, LoaderOpts, FetcherOpts);
{error, BadOpt} ->
{error, BadOpt}
end.
-spec validate_database_opts(list(), [locus_loader:loader_opt()], [locus_loader:fetcher_opt()])
-> {ok, {[database_opt()], [locus_loader:loader_opt()], [locus_loader:fetcher_opt()]}} |
{error, term()}.
validate_database_opts(DatabaseOpts, LoaderOpts, FetcherOpts) ->
case
locus_util:lists_anymap(
fun ({event_subscriber, Module}) when is_atom(Module) ->
Module =:= undefined;
({event_subscriber, Pid}) ->
not is_pid(Pid);
({internal, {async_waiter, Ref, Pid}}) ->
not (is_pid(Pid) andalso is_reference(Ref));
(_) ->
true
end,
DatabaseOpts)
of
{true, BadOpt} ->
{error, BadOpt};
false ->
{ok, {DatabaseOpts, LoaderOpts, FetcherOpts}}
end.
-spec init(atom(), origin(), [database_opt()], [locus_loader:loader_opt()],
[locus_loader:fetcher_opt()]) -> {ok, state()}.
init(Id, Origin, DatabaseOpts, LoaderOpts, FetcherOpts) ->
{ok, LoaderPid} = locus_loader:start_link(Id, Origin, LoaderOpts, FetcherOpts),
BaseState =
#state{
id = Id,
loader_pid = LoaderPid,
subscribers = [],
subscriber_mons = #{},
waiters = #{},
waiter_mons = #{}
},
init_opts(DatabaseOpts, BaseState).
-spec init_opts([database_opt()], state()) -> {ok, state()}.
init_opts([{event_subscriber,Module} | Opts], State)
when is_atom(Module) ->
#state{subscribers = Subscribers} = State,
UpdatedSubscribers = [Module | Subscribers],
UpdatedState = State#state{ subscribers = UpdatedSubscribers },
init_opts(Opts, UpdatedState);
init_opts([{event_subscriber,Pid} | Opts], State) ->
#state{subscribers = Subscribers, subscriber_mons = SubscriberMons} = State,
Mon = monitor(process, Pid),
UpdatedSubscribers = [Pid | Subscribers],
UpdatedSubscriberMons = SubscriberMons#{Mon => Pid},
UpdatedState = State#state{ subscribers = UpdatedSubscribers,
subscriber_mons = UpdatedSubscriberMons },
init_opts(Opts, UpdatedState);
init_opts([{internal, {async_waiter, Ref, Pid}} | Opts], State)
when is_pid(Pid), is_reference(Ref) ->
NewState = enqueue_waiter(Ref, Pid, State),
init_opts(Opts, NewState);
init_opts([], State) ->
locus_mmdb:create_table(State#state.id),
{ok, State}.
-spec handle_loader_msg(locus_loader:msg(), state()) -> {noreply, state()}.
handle_loader_msg({event, Event}, State) ->
report_event(Event, State),
{noreply, State};
handle_loader_msg({load_success, Source, Version, Parts}, State) ->
#state{id = Id} = State,
locus_mmdb:update(Id, Parts),
State2 = State#state{ last_version = Version },
report_event({load_attempt_finished, Source, {ok,Version}}, State),
State3 = reply_to_waiters({ok,Version}, State2),
{noreply, State3};
handle_loader_msg({load_failure, Source, Reason}, State) ->
report_event({load_attempt_finished, Source, {error,Reason}}, State),
case {Source, Reason} of
{{cache,_}, not_found} ->
{noreply, State};
_ ->
UpdatedState = reply_to_waiters({error,Reason}, State),
{noreply, UpdatedState}
end.
-spec report_event(event(), state()) -> ok.
report_event(Event, #state{id = Id, subscribers = Subscribers}) ->
lists:foreach(
fun (Module) when is_atom(Module) ->
Module:report(Id, Event);
(Pid) ->
erlang:send(Pid, {locus, Id, Event}, [noconnect])
end,
Subscribers).
-spec handle_monitored_process_death(monitor(), state()) -> {noreply, state()}.
handle_monitored_process_death(Ref, State) ->
#state{subscribers = Subscribers, subscriber_mons = SubscriberMons} = State,
case maps:take(Ref, SubscriberMons) of
{Pid, UpdatedSubscriberMons} ->
{ok, UpdatedSubscribers} = locus_util:lists_take(Pid, Subscribers),
UpdatedState = State#state{ subscribers = UpdatedSubscribers,
subscriber_mons = UpdatedSubscriberMons },
{noreply, UpdatedState};
error ->
#state{waiters = Waiters, waiter_mons = WaiterMons} = State,
{WaiterRef, UpdatedWaiterMons} = maps:take(Ref, WaiterMons),
{_, UpdatedWaiters} = maps:take(WaiterRef, Waiters),
UpdatedState = State#state{ waiters = UpdatedWaiters,
waiter_mons = UpdatedWaiterMons },
{noreply, UpdatedState}
end.
-spec handle_linked_process_death(pid(), term(), state())
-> {stop, {loader_stopped, pid(), term()}, state()}.
handle_linked_process_death(Pid, Reason, State)
when Pid =:= State#state.loader_pid ->
{stop, {loader_stopped, Pid, Reason}, State}.
%% ------------------------------------------------------------------
%% Internal Function Definitions - Waiters
%% ------------------------------------------------------------------
-spec maybe_enqueue_waiter(reference(), pid(), state()) -> state().
maybe_enqueue_waiter(Ref, Pid, #state{last_version = undefined} = State) ->
enqueue_waiter(Ref, Pid, State);
maybe_enqueue_waiter(Ref, Pid, #state{last_version = LastVersion} = State) ->
_ = Pid ! {Ref, {ok,LastVersion}},
State.
-spec enqueue_waiter(reference(), pid(), state()) -> state().
enqueue_waiter(Ref, Pid, State) ->
#state{waiters = Waiters, waiter_mons = WaiterMons} = State,
Mon = monitor(process, Pid),
UpdatedWaiters = Waiters#{ Ref => Pid },
UpdatedWaiterMons = WaiterMons#{ Mon => Ref },
State#state{ waiters = UpdatedWaiters,
waiter_mons = UpdatedWaiterMons }.
-spec reply_to_waiters({ok, calendar:datetime()} | {error, term()}, state()) -> state().
reply_to_waiters(Result, State) ->
#state{waiters = Waiters, waiter_mons = WaiterMons} = State,
_ = maps:fold(
fun (Mon, _, _) ->
demonitor(Mon, [flush])
end,
ok, WaiterMons),
_ = maps:fold(
fun (Ref, Pid, _) ->
_ = Pid ! {Ref, Result},
ok
end,
ok, Waiters),
State#state{ waiters = #{}, waiter_mons = #{} }.