aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/supervisor_bridge.xml
blob: d16b258b6cf262aa41a13681b9517f68ddddce6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1996</year>
      <year>2013</year>
      <holder>Ericsson AB, All Rights Reserved</holder>
    </copyright>
    <legalnotice>
  The contents of this file are subject to the Erlang Public License,
  Version 1.1, (the "License"); you may not use this file except in
  compliance with the License. You should have received a copy of the
  Erlang Public License along with this software. If not, it can be
  retrieved online at http://www.erlang.org/.

  Software distributed under the License is distributed on an "AS IS"
  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  the License for the specific language governing rights and limitations
  under the License.

  The Initial Developer of the Original Code is Ericsson AB.
    </legalnotice>

    <title>supervisor_bridge</title>
    <prepared></prepared>
    <docno></docno>
    <date></date>
    <rev></rev>
  </header>
  <module>supervisor_bridge</module>
  <modulesummary>Generic Supervisor Bridge Behaviour.</modulesummary>
  <description>
    <p>A behaviour module for implementing a supervisor_bridge, a process
      which 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. Refer to <em>OTP Design Principles</em>
      for more information.</p>
    <p>A supervisor_bridge assumes the functions for starting and stopping
      the subsystem to be located in a callback module exporting a
      pre-defined set of functions.</p>
    <p>The <c>sys</c> module can be used for debugging a
      supervisor_bridge.</p>
    <p>Unless otherwise stated, all functions in this module will fail if
      the specified supervisor_bridge does not exist or if bad arguments are
      given.</p>
  </description>
  <funcs>
    <func>
      <name name="start_link" arity="2"/>
      <name name="start_link" arity="3"/>
      <fsummary>Create a supervisor bridge process.</fsummary>
      <desc>
        <p>Creates a supervisor_bridge process, linked to the calling
          process, which calls <c><anno>Module</anno>:init/1</c> to start the subsystem.
          To ensure a synchronized start-up procedure, this function does
          not return until <c><anno>Module</anno>:init/1</c> has returned.</p>
        <p>If <c><anno>SupBridgeName</anno>={local,<anno>Name</anno>}</c> the supervisor_bridge is
          registered locally as <c><anno>Name</anno></c> using <c>register/2</c>.
          If <c><anno>SupBridgeName</anno>={global,<anno>Name</anno>}</c> the supervisor_bridge is
          registered globally as <c><anno>Name</anno></c> using
          <c>global:register_name/2</c>.
          If <c><anno>SupBridgeName</anno>={via,<anno>Module</anno>,<anno>Name</anno>}</c> the supervisor_bridge is
          registered as <c><anno>Name</anno></c> using a registry represented
	  by <anno>Module</anno>. The <c>Module</c> callback should export
	  the functions <c>register_name/2</c>, <c>unregister_name/1</c>
	  and <c>send/2</c>, which should behave like the
	  corresponding functions in <c>global</c>. Thus,
	  <c>{via,global,GlobalName}</c> is a valid reference.
          If no name is provided, the supervisor_bridge is not registered.
          If there already exists a process with the specified
          <c><anno>SupBridgeName</anno></c> the function returns
          <c>{error,{already_started,<anno>Pid</anno>}}</c>, where <c><anno>Pid</anno></c> is the pid
          of that process.</p>
        <p><c><anno>Module</anno></c> is the name of the callback module.</p>
        <p><c><anno>Args</anno></c> is an arbitrary term which is passed as the argument
          to <c><anno>Module</anno>:init/1</c>.</p>
        <p>If the supervisor_bridge and the subsystem are successfully
          started the function returns <c>{ok,<anno>Pid</anno>}</c>, where <c><anno>Pid</anno></c> is
          is the pid of the supervisor_bridge.</p>
        <p>If <c><anno>Module</anno>:init/1</c> returns <c>ignore</c>, this function
          returns <c>ignore</c> as well and the supervisor_bridge terminates
          with reason <c>normal</c>.
          If <c><anno>Module</anno>:init/1</c> fails or returns an error tuple or an
          incorrect value, this function returns <c>{error,<anno>Error</anno>r}</c> where
          <c><anno>Error</anno></c> is a term with information about the error, and
          the supervisor_bridge terminates with reason <c><anno>Error</anno></c>.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>CALLBACK FUNCTIONS</title>
    <p>The following functions should be exported from a
      <c>supervisor_bridge</c> callback module.</p>
  </section>
  <funcs>
    <func>
      <name>Module:init(Args) -> Result</name>
      <fsummary>Initialize process and start subsystem.</fsummary>
      <type>
        <v>Args = term()</v>
        <v>Result = {ok,Pid,State} | ignore | {error,Error}</v>
        <v>&nbsp;Pid = pid()</v>
        <v>&nbsp;State = term()</v>
        <v>&nbsp;Error = term()</v>
      </type>
      <desc>
        <p>Whenever a supervisor_bridge is started using
          <c>supervisor_bridge:start_link/2,3</c>, this function is called
          by the new process to start the subsystem and initialize.</p>
        <p><c>Args</c> is the <c>Args</c> argument provided to the start
          function.</p>
        <p>The function should return <c>{ok,Pid,State}</c> where <c>Pid</c>
          is the pid of the main process in the subsystem and <c>State</c>
          is any term.</p>
        <p>If later <c>Pid</c> terminates with a reason <c>Reason</c>,
          the supervisor bridge will terminate with reason <c>Reason</c> as
          well.
          If later the supervisor_bridge is stopped by its supervisor with
          reason <c>Reason</c>, it will call
          <c>Module:terminate(Reason,State)</c> to terminate.</p>
        <p>If something goes wrong during the initialization the function
          should return <c>{error,Error}</c> where <c>Error</c> is any
          term, or <c>ignore</c>.</p>
      </desc>
    </func>
    <func>
      <name>Module:terminate(Reason, State)</name>
      <fsummary>Clean up and stop subsystem.</fsummary>
      <type>
        <v>Reason = shutdown | term()</v>
        <v>State = term()</v>
      </type>
      <desc>
        <p>This function is called by the supervisor_bridge when it is about
          to terminate. It should be the opposite of <c>Module:init/1</c>
          and stop the subsystem and do any necessary cleaning up.
          The return value is ignored.</p>
        <p><c>Reason</c> is <c>shutdown</c> 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 <c>Term</c>,
          <c>Reason</c> will be <c>Term</c>.</p>
        <p><c>State</c> is taken from the return value of
          <c>Module:init/1</c>.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>SEE ALSO</title>
    <p><seealso marker="supervisor">supervisor(3)</seealso>, 
      <seealso marker="sys">sys(3)</seealso></p>
  </section>
</erlref>