supervisor_bridge behaviour (stdlib v3.15.2)
This behavior module provides a supervisor bridge, a process that connects a subsystem not designed according to the OTP design principles to a supervision tree. The supervisor bridge sits between a supervisor and the subsystem. It behaves like a real supervisor to its own supervisor, but has a different interface than a real supervisor to the subsystem. For more information, see Supervisor Behaviour in OTP Design Principles.
A supervisor bridge assumes the functions for starting and stopping the subsystem to be located in a callback module exporting a predefined set of functions.
The sys(3)
module can be used for debugging a supervisor bridge.
Unless otherwise stated, all functions in this module fail if the specified supervisor bridge does not exist or if bad arguments are specified.
See Also
Link to this section Summary
Callbacks
- Args = term()
- Result = {ok,Pid,State} | ignore | {error,Error}
- Pid = pid()
- State = term()
- Error = term()
Whenever a supervisor bridge is started using start_link/2,3
, this function is called by the new process to start the subsystem and initialize.
- Reason = shutdown | term()
- State = term()
This function is called by the supervisor bridge when it is about to terminate. It is to be the opposite of Module:init/1
and stop the subsystem and do any necessary cleaning up. The return value is ignored.
Functions
Creates a supervisor bridge process, linked to the calling process, which calls Module:init/1
to start the subsystem. To ensure a synchronized startup procedure, this function does not return until Module:init/1
has returned.
Link to this section Callbacks
Module:init(Args) -> Result
Specs
init(Args :: term()) -> {ok, Pid :: pid(), State :: term()} | ignore | {error, Error :: term()}.
- Args = term()
- Result = {ok,Pid,State} | ignore | {error,Error}
- Pid = pid()
- State = term()
- Error = term()
Whenever a supervisor bridge is started using start_link/2,3
, this function is called by the new process to start the subsystem and initialize.
Args
is the Args
argument provided to the start function.
The function is to return {ok,Pid,State}
, where Pid
is the pid of the main process in the subsystem and State
is any term.
If later Pid
terminates with a reason Reason
, the supervisor bridge terminates with reason Reason
as well. If later the supervisor bridge is stopped by its supervisor with reason Reason
, it calls Module:terminate(Reason,State)
to terminate.
If the initialization fails, the function is to return {error,Error}
, where Error
is any term, or ignore
.
Module:terminate(Reason, State)
Specs
terminate(Reason :: shutdown | term(), State :: term()) -> Ignored :: term().
- Reason = shutdown | term()
- State = term()
This function is called by the supervisor bridge when it is about to terminate. It is to be the opposite of Module:init/1
and stop the subsystem and do any necessary cleaning up. The return value is ignored.
Reason
is shutdown
if the supervisor bridge is terminated by its supervisor. If the supervisor bridge terminates because a a linked process (apart from the main process of the subsystem) has terminated with reason Term
, then Reason
becomes Term
.
State
is taken from the return value of Module:init/1
.
Link to this section Functions
start_link/2
Specs
start_link(Module, Args) -> Result when Module :: module(), Args :: term(), Result :: {ok, Pid} | ignore | {error, Error}, Error :: {already_started, Pid} | term(), Pid :: pid().
Creates a supervisor bridge process, linked to the calling process, which calls Module:init/1
to start the subsystem. To ensure a synchronized startup procedure, this function does not return until Module:init/1
has returned.
If
SupBridgeName={local,Name}
, the supervisor bridge is registered locally asName
usingregister/2
.If
SupBridgeName={global,Name}
, the supervisor bridge is registered globally asName
usingglobal:register_name/2
.If
SupBridgeName={via,Module,Name}
, the supervisor bridge is registered asName
using a registry represented by Module. TheModule
callback is to export functionsregister_name/2
,unregister_name/1
, andsend/2
, which are to behave like the corresponding functions inglobal
. Thus,{via,global,GlobalName}
is a valid reference.
If no name is provided, the supervisor bridge is not registered.
Module
is the name of the callback module.
Args
is an arbitrary term that is passed as the argument to Module:init/1
.
If the supervisor bridge and the subsystem are successfully started, the function returns
{ok,Pid}
, wherePid
is is the pid of the supervisor bridge.If there already exists a process with the specified
SupBridgeName
, the function returns{error,{already_started,Pid}}
, wherePid
is the pid of that process.If
Module:init/1
returnsignore
, this function returnsignore
as well and the supervisor bridge terminates with reasonnormal
.If
Module:init/1
fails or returns an error tuple or an incorrect value, this function returns{error,Errorr}
, whereError
is a term with information about the error, and the supervisor bridge terminates with reasonError
.
start_link/3
Specs
start_link(SupBridgeName, Module, Args) -> Result when SupBridgeName :: {local, Name} | {global, Name}, Name :: atom(), Module :: module(), Args :: term(), Result :: {ok, Pid} | ignore | {error, Error}, Error :: {already_started, Pid} | term(), Pid :: pid().