ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/MP.pm
(Generate patch)

Comparing AnyEvent-MP/MP.pm (file contents):
Revision 1.70 by root, Sun Aug 30 19:49:47 2009 UTC vs.
Revision 1.76 by root, Mon Aug 31 18:45:05 2009 UTC

4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use AnyEvent::MP; 7 use AnyEvent::MP;
8 8
9 $NODE # contains this node's noderef 9 $NODE # contains this node's node ID
10 NODE # returns this node's noderef 10 NODE # returns this node's node ID
11 NODE $port # returns the noderef of the port
12 11
13 $SELF # receiving/own port id in rcv callbacks 12 $SELF # receiving/own port id in rcv callbacks
14 13
15 # initialise the node so it can send/receive messages 14 # initialise the node so it can send/receive messages
16 initialise_node; 15 configure;
17 16
18 # ports are message endpoints 17 # ports are message destinations
19 18
20 # sending messages 19 # sending messages
21 snd $port, type => data...; 20 snd $port, type => data...;
22 snd $port, @msg; 21 snd $port, @msg;
23 snd @msg_with_first_element_being_a_port; 22 snd @msg_with_first_element_being_a_port;
24 23
25 # creating/using ports, the simple way 24 # creating/using ports, the simple way
26 my $simple_port = port { my @msg = @_; 0 }; 25 my $simple_port = port { my @msg = @_ };
27 26
28 # creating/using ports, tagged message matching 27 # creating/using ports, tagged message matching
29 my $port = port; 28 my $port = port;
30 rcv $port, ping => sub { snd $_[0], "pong"; 0 }; 29 rcv $port, ping => sub { snd $_[0], "pong" };
31 rcv $port, pong => sub { warn "pong received\n"; 0 }; 30 rcv $port, pong => sub { warn "pong received\n" };
32 31
33 # create a port on another node 32 # create a port on another node
34 my $port = spawn $node, $initfunc, @initdata; 33 my $port = spawn $node, $initfunc, @initdata;
35 34
36 # monitoring 35 # monitoring
38 mon $port, $otherport # kill otherport on abnormal death 37 mon $port, $otherport # kill otherport on abnormal death
39 mon $port, $otherport, @msg # send message on death 38 mon $port, $otherport, @msg # send message on death
40 39
41=head1 CURRENT STATUS 40=head1 CURRENT STATUS
42 41
42 bin/aemp - stable.
43 AnyEvent::MP - stable API, should work 43 AnyEvent::MP - stable API, should work.
44 AnyEvent::MP::Intro - outdated 44 AnyEvent::MP::Intro - epxlains most concepts.
45 AnyEvent::MP::Kernel - mostly stable 45 AnyEvent::MP::Kernel - mostly stable.
46 AnyEvent::MP::Global - mostly stable 46 AnyEvent::MP::Global - stable API, protocol not yet final.
47 AnyEvent::MP::Node - mostly stable, but internal anyways
48 AnyEvent::MP::Transport - mostly stable, but internal anyways
49 47
50 stay tuned. 48 stay tuned.
51 49
52=head1 DESCRIPTION 50=head1 DESCRIPTION
53 51
56Despite its simplicity, you can securely message other processes running 54Despite its simplicity, you can securely message other processes running
57on the same or other hosts, and you can supervise entities remotely. 55on the same or other hosts, and you can supervise entities remotely.
58 56
59For an introduction to this module family, see the L<AnyEvent::MP::Intro> 57For an introduction to this module family, see the L<AnyEvent::MP::Intro>
60manual page and the examples under F<eg/>. 58manual page and the examples under F<eg/>.
61
62At the moment, this module family is a bit underdocumented.
63 59
64=head1 CONCEPTS 60=head1 CONCEPTS
65 61
66=over 4 62=over 4
67 63
139 135
140our $VERSION = $AnyEvent::MP::Kernel::VERSION; 136our $VERSION = $AnyEvent::MP::Kernel::VERSION;
141 137
142our @EXPORT = qw( 138our @EXPORT = qw(
143 NODE $NODE *SELF node_of after 139 NODE $NODE *SELF node_of after
144 initialise_node 140 configure
145 snd rcv mon mon_guard kil reg psub spawn 141 snd rcv mon mon_guard kil reg psub spawn
146 port 142 port
147); 143);
148 144
149our $SELF; 145our $SELF;
156 152
157=item $thisnode = NODE / $NODE 153=item $thisnode = NODE / $NODE
158 154
159The C<NODE> function returns, and the C<$NODE> variable contains, the node 155The C<NODE> function returns, and the C<$NODE> variable contains, the node
160ID of the node running in the current process. This value is initialised by 156ID of the node running in the current process. This value is initialised by
161a call to C<initialise_node>. 157a call to C<configure>.
162 158
163=item $nodeid = node_of $port 159=item $nodeid = node_of $port
164 160
165Extracts and returns the node ID from a port ID or a node ID. 161Extracts and returns the node ID from a port ID or a node ID.
166 162
167=item initialise_node $profile_name, key => value... 163=item configure key => value...
168 164
169Before a node can talk to other nodes on the network (i.e. enter 165Before a node can talk to other nodes on the network (i.e. enter
170"distributed mode") it has to initialise itself - the minimum a node needs 166"distributed mode") it has to configure itself - the minimum a node needs
171to know is its own name, and optionally it should know the addresses of 167to know is its own name, and optionally it should know the addresses of
172some other nodes in the network to discover other nodes. 168some other nodes in the network to discover other nodes.
173 169
174This function initialises a node - it must be called exactly once (or 170This function configures a node - it must be called exactly once (or
175never) before calling other AnyEvent::MP functions. 171never) before calling other AnyEvent::MP functions.
176 172
177The first argument is a profile name. If it is C<undef> or missing, then 173=over 4
178the current nodename will be used instead (i.e. F<uname -n>).
179 174
175=item step 1, gathering configuration from profiles
176
180The function first looks up the profile in the aemp configuration (see the 177The function first looks up a profile in the aemp configuration (see the
181L<aemp> commandline utility). the profile is calculated as follows: 178L<aemp> commandline utility). The profile name can be specified via the
179named C<profile> parameter. If it is missing, then the nodename (F<uname
180-n>) will be used as profile name.
181
182The profile data is then gathered as follows:
182 183
183First, all remaining key => value pairs (all of which are conviniently 184First, all remaining key => value pairs (all of which are conviniently
184undocumented at the moment) will be used. Then they will be overwritten by 185undocumented at the moment) will be interpreted as configuration
185any values specified in the global default configuration (see the F<aemp> 186data. Then they will be overwritten by any values specified in the global
186utility), then the chain of profiles selected, if any. That means that 187default configuration (see the F<aemp> utility), then the chain of
188profiles chosen by the profile name (and any C<parent> attributes).
189
187the values specified in the profile have highest priority and the values 190That means that the values specified in the profile have highest priority
188specified via C<initialise_node> have lowest priority. 191and the values specified directly via C<configure> have lowest priority,
192and can only be used to specify defaults.
189 193
190If the profile specifies a node ID, then this will become the node ID of 194If the profile specifies a node ID, then this will become the node ID of
191this process. If not, then the profile name will be used as node ID. The 195this process. If not, then the profile name will be used as node ID. The
192special node ID of C<anon/> will be replaced by a random node ID. 196special node ID of C<anon/> will be replaced by a random node ID.
197
198=item step 2, bind listener sockets
193 199
194The next step is to look up the binds in the profile, followed by binding 200The next step is to look up the binds in the profile, followed by binding
195aemp protocol listeners on all binds specified (it is possible and valid 201aemp protocol listeners on all binds specified (it is possible and valid
196to have no binds, meaning that the node cannot be contacted form the 202to have no binds, meaning that the node cannot be contacted form the
197outside. This means the node cannot talk to other nodes that also have no 203outside. This means the node cannot talk to other nodes that also have no
198binds, but it can still talk to all "normal" nodes). 204binds, but it can still talk to all "normal" nodes).
199 205
200If the profile does not specify a binds list, then a default of C<*> is 206If the profile does not specify a binds list, then a default of C<*> is
201used. 207used, meaning the node will bind on a dynamically-assigned port on every
208local IP address it finds.
202 209
210=item step 3, connect to seed nodes
211
203Lastly, the seeds list from the profile is passed to the 212As the last step, the seeds list from the profile is passed to the
204L<AnyEvent::MP::Global> module, which will then use it to keep 213L<AnyEvent::MP::Global> module, which will then use it to keep
205connectivity with at least on of those seed nodes at any point in time. 214connectivity with at least one node at any point in time.
206 215
207Example: become a distributed node listening on the guessed noderef, or 216=back
208the one specified via C<aemp> for the current node. This should be the 217
218Example: become a distributed node using the locla node name as profile.
209most common form of invocation for "daemon"-type nodes. 219This should be the most common form of invocation for "daemon"-type nodes.
210 220
211 initialise_node; 221 configure
212 222
213Example: become an anonymous node. This form is often used for commandline 223Example: become an anonymous node. This form is often used for commandline
214clients. 224clients.
215 225
216 initialise_node "anon/"; 226 configure nodeid => "anon/";
217 227
218Example: become a distributed node. If there is no profile of the given 228Example: configure a node using a profile called seed, which si suitable
219name, or no binds list was specified, resolve C<localhost:4044> and bind 229for a seed node as it binds on all local addresses on a fixed port (4040,
220on the resulting addresses. 230customary for aemp).
221 231
222 initialise_node "localhost:4044"; 232 # use the aemp commandline utility
233 # aemp profile seed nodeid anon/ binds '*:4040'
234
235 # then use it
236 configure profile => "seed";
237
238 # or simply use aemp from the shell again:
239 # aemp run profile seed
240
241 # or provide a nicer-to-remember nodeid
242 # aemp run profile seed nodeid "$(hostname)"
223 243
224=item $SELF 244=item $SELF
225 245
226Contains the current port id while executing C<rcv> callbacks or C<psub> 246Contains the current port id while executing C<rcv> callbacks or C<psub>
227blocks. 247blocks.
349 369
350=cut 370=cut
351 371
352sub rcv($@) { 372sub rcv($@) {
353 my $port = shift; 373 my $port = shift;
354 my ($noderef, $portid) = split /#/, $port, 2; 374 my ($nodeid, $portid) = split /#/, $port, 2;
355 375
356 $NODE{$noderef} == $NODE{""} 376 $NODE{$nodeid} == $NODE{""}
357 or Carp::croak "$port: rcv can only be called on local ports, caught"; 377 or Carp::croak "$port: rcv can only be called on local ports, caught";
358 378
359 while (@_) { 379 while (@_) {
360 if (ref $_[0]) { 380 if (ref $_[0]) {
361 if (my $self = $PORT_DATA{$portid}) { 381 if (my $self = $PORT_DATA{$portid}) {
501 mon $port, $self => "restart"; 521 mon $port, $self => "restart";
502 522
503=cut 523=cut
504 524
505sub mon { 525sub mon {
506 my ($noderef, $port) = split /#/, shift, 2; 526 my ($nodeid, $port) = split /#/, shift, 2;
507 527
508 my $node = $NODE{$noderef} || add_node $noderef; 528 my $node = $NODE{$nodeid} || add_node $nodeid;
509 529
510 my $cb = @_ ? shift : $SELF || Carp::croak 'mon: called with one argument only, but $SELF not set,'; 530 my $cb = @_ ? shift : $SELF || Carp::croak 'mon: called with one argument only, but $SELF not set,';
511 531
512 unless (ref $cb) { 532 unless (ref $cb) {
513 if (@_) { 533 if (@_) {
627 }; 647 };
628 _self_die if $@; 648 _self_die if $@;
629} 649}
630 650
631sub spawn(@) { 651sub spawn(@) {
632 my ($noderef, undef) = split /#/, shift, 2; 652 my ($nodeid, undef) = split /#/, shift, 2;
633 653
634 my $id = "$RUNIQ." . $ID++; 654 my $id = "$RUNIQ." . $ID++;
635 655
636 $_[0] =~ /::/ 656 $_[0] =~ /::/
637 or Carp::croak "spawn init function must be a fully-qualified name, caught"; 657 or Carp::croak "spawn init function must be a fully-qualified name, caught";
638 658
639 snd_to_func $noderef, "AnyEvent::MP::_spawn" => $id, @_; 659 snd_to_func $nodeid, "AnyEvent::MP::_spawn" => $id, @_;
640 660
641 "$noderef#$id" 661 "$nodeid#$id"
642} 662}
643 663
644=item after $timeout, @msg 664=item after $timeout, @msg
645 665
646=item after $timeout, $callback 666=item after $timeout, $callback

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines