%% ========================================================================================================== %% Syn - A global Process Registry and Process Group manager. %% %% The MIT License (MIT) %% %% Copyright (c) 2015-2026 Roberto Ostinelli and Neato Robotics, Inc. %% %% 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. %% ========================================================================================================== %% @private -module(syn_backbone). -behaviour(gen_server). %% API -export([start_link/0]). -export([create_tables_for_scope/1]). -export([get_table_name/2]). -export([save_process_name/2, get_process_name/1]). -export([is_strict_mode/0]). %% gen_server callbacks -export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). - if (?OTP_RELEASE >= 23). -define(ETS_OPTIMIZATIONS, [{decentralized_counters, true}]). -else. -define(ETS_OPTIMIZATIONS, []). -endif. %% includes -include("syn.hrl"). -include_lib("kernel/include/logger.hrl"). %% =================================================================== %% API %% =================================================================== -spec start_link() -> {ok, pid()} | {error, term()}. start_link() -> Options = [], gen_server:start_link({local, ?MODULE}, ?MODULE, [], Options). -spec create_tables_for_scope(Scope :: atom()) -> ok. create_tables_for_scope(Scope) -> gen_server:call(?MODULE, {create_tables_for_scope, Scope}). -spec save_process_name(Key :: term(), ProcessName :: atom()) -> true. save_process_name(Key, ProcessName) -> true = ets:insert(syn_process_names, {Key, ProcessName}). -spec get_process_name(Key :: term()) -> ProcessName :: atom(). get_process_name(Key) -> case ets:lookup(syn_process_names, Key) of [{_, ProcessName}] -> ProcessName; [] -> undefined end. -spec get_table_name(TableId :: atom(), Scope :: atom()) -> TableName :: atom() | undefined. get_table_name(TableId, Scope) -> case ets:lookup(syn_table_names, {TableId, Scope}) of [{_, TableName}] -> TableName; [] -> undefined end. -spec is_strict_mode() -> boolean(). is_strict_mode() -> application:get_env(syn, strict_mode, false). %% =================================================================== %% Callbacks %% =================================================================== %% ---------------------------------------------------------------------------------------------------------- %% Init %% ---------------------------------------------------------------------------------------------------------- -spec init([]) -> {ok, State :: map()} | {ok, State :: map(), Timeout :: non_neg_integer()} | ignore | {stop, Reason :: term()}. init([]) -> %% create table names table ets:new(syn_table_names, [set, public, named_table, {read_concurrency, true}] ++ ?ETS_OPTIMIZATIONS), ets:new(syn_process_names, [set, public, named_table, {read_concurrency, true}] ++ ?ETS_OPTIMIZATIONS), %% init {ok, #{}}. %% ---------------------------------------------------------------------------------------------------------- %% Call messages %% ---------------------------------------------------------------------------------------------------------- -spec handle_call(Request :: term(), From :: term(), State :: map()) -> {reply, Reply :: term(), State :: map()} | {reply, Reply :: term(), State :: map(), Timeout :: non_neg_integer()} | {noreply, State :: map()} | {noreply, State :: map(), Timeout :: non_neg_integer()} | {stop, Reason :: term(), Reply :: term(), State :: map()} | {stop, Reason :: term(), State :: map()}. handle_call({create_tables_for_scope, Scope}, _From, State) -> ensure_table_existence(set, syn_registry_by_name, Scope), ensure_table_existence(bag, syn_registry_by_pid, Scope), ensure_table_existence(ordered_set, syn_pg_by_name, Scope), ensure_table_existence(ordered_set, syn_pg_by_pid, Scope), ?LOG_NOTICE(#{event => tables_created, scope => Scope}), {reply, ok, State}; handle_call(Request, From, State) -> ?LOG_WARNING(#{event => unknown_call, from => From, msg => Request}), {reply, undefined, State}. %% ---------------------------------------------------------------------------------------------------------- %% Cast messages %% ---------------------------------------------------------------------------------------------------------- -spec handle_cast(Msg :: term(), State :: map()) -> {noreply, State :: map()} | {noreply, State :: map(), Timeout :: non_neg_integer()} | {stop, Reason :: term(), State :: map()}. handle_cast(Msg, State) -> ?LOG_WARNING(#{event => unknown_cast, msg => Msg}), {noreply, State}. %% ---------------------------------------------------------------------------------------------------------- %% All non Call / Cast messages %% ---------------------------------------------------------------------------------------------------------- -spec handle_info(Info :: term(), State :: map()) -> {noreply, State :: map()} | {noreply, State :: map(), Timeout :: non_neg_integer()} | {stop, Reason :: term(), State :: map()}. handle_info(Info, State) -> ?LOG_WARNING(#{event => unknown_info, msg => Info}), {noreply, State}. %% ---------------------------------------------------------------------------------------------------------- %% Terminate %% ---------------------------------------------------------------------------------------------------------- -spec terminate(Reason :: term(), State :: map()) -> terminated. terminate(Reason, _State) -> ?LOG_NOTICE(#{event => terminate, reason => Reason}), %% return terminated. %% ---------------------------------------------------------------------------------------------------------- %% Convert process state when code is changed. %% ---------------------------------------------------------------------------------------------------------- -spec code_change(OldVsn :: term(), State :: map(), Extra :: term()) -> {ok, State :: map()}. code_change(_OldVsn, State, _Extra) -> {ok, State}. %% =================================================================== %% Internal %% =================================================================== -spec ensure_table_existence(Type :: ets:table_type(), TableId :: atom(), Scope :: atom()) -> any(). ensure_table_existence(Type, TableId, Scope) -> %% build name TableIdBin = list_to_binary(atom_to_list(TableId)), ScopeBin = list_to_binary(atom_to_list(Scope)), TableName = list_to_atom(binary_to_list(<>)), %% save to loopkup table true = ets:insert(syn_table_names, {{TableId, Scope}, TableName}), %% check or create case ets:whereis(TableName) of undefined -> %% regarding decentralized_counters: ets:new(TableName, [Type, public, named_table, {read_concurrency, true}] ++ ?ETS_OPTIMIZATIONS); _ -> ok end.