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.68 by root, Fri Aug 28 23:06:33 2009 UTC vs.
Revision 1.79 by root, Fri Sep 4 21:52:09 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 - explains 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 but incomplete, 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. 48stay tuned.
51 49
52=head1 DESCRIPTION 50=head1 DESCRIPTION
53 51
54This module (-family) implements a simple message passing framework. 52This module (-family) implements a simple message passing framework.
55 53
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 59
62At the moment, this module family is a bit underdocumented.
63
64=head1 CONCEPTS 60=head1 CONCEPTS
65 61
66=over 4 62=over 4
67 63
68=item port 64=item port
69 65
70A port is something you can send messages to (with the C<snd> function). 66Not to be confused with a TCP port, a "port" is something you can send
67messages to (with the C<snd> function).
71 68
72Ports allow you to register C<rcv> handlers that can match all or just 69Ports allow you to register C<rcv> handlers that can match all or just
73some messages. Messages send to ports will not be queued, regardless of 70some messages. Messages send to ports will not be queued, regardless of
74anything was listening for them or not. 71anything was listening for them or not.
75 72
139 136
140our $VERSION = $AnyEvent::MP::Kernel::VERSION; 137our $VERSION = $AnyEvent::MP::Kernel::VERSION;
141 138
142our @EXPORT = qw( 139our @EXPORT = qw(
143 NODE $NODE *SELF node_of after 140 NODE $NODE *SELF node_of after
144 initialise_node 141 configure
145 snd rcv mon mon_guard kil reg psub spawn 142 snd rcv mon mon_guard kil reg psub spawn
146 port 143 port
147); 144);
148 145
149our $SELF; 146our $SELF;
156 153
157=item $thisnode = NODE / $NODE 154=item $thisnode = NODE / $NODE
158 155
159The C<NODE> function returns, and the C<$NODE> variable contains, the node 156The 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 157ID of the node running in the current process. This value is initialised by
161a call to C<initialise_node>. 158a call to C<configure>.
162 159
163=item $nodeid = node_of $port 160=item $nodeid = node_of $port
164 161
165Extracts and returns the node ID from a port ID or a node ID. 162Extracts and returns the node ID from a port ID or a node ID.
166 163
167=item initialise_node $profile_name 164=item configure $profile, key => value...
165
166=item configure key => value...
168 167
169Before a node can talk to other nodes on the network (i.e. enter 168Before 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 169"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 170to know is its own name, and optionally it should know the addresses of
172some other nodes in the network to discover other nodes. 171some other nodes in the network to discover other nodes.
173 172
174This function initialises a node - it must be called exactly once (or 173This function configures a node - it must be called exactly once (or
175never) before calling other AnyEvent::MP functions. 174never) before calling other AnyEvent::MP functions.
176 175
177The first argument is a profile name. If it is C<undef> or missing, then 176=over 4
178the current nodename will be used instead (i.e. F<uname -n>).
179 177
178=item step 1, gathering configuration from profiles
179
180The function then looks up the profile in the aemp configuration (see the 180The function first looks up a profile in the aemp configuration (see the
181L<aemp> commandline utility). 181L<aemp> commandline utility). The profile name can be specified via the
182named C<profile> parameter or can simply be the first parameter). If it is
183missing, then the nodename (F<uname -n>) will be used as profile name.
184
185The profile data is then gathered as follows:
186
187First, all remaining key => value pairs (all of which are conveniently
188undocumented at the moment) will be interpreted as configuration
189data. Then they will be overwritten by any values specified in the global
190default configuration (see the F<aemp> utility), then the chain of
191profiles chosen by the profile name (and any C<parent> attributes).
192
193That means that the values specified in the profile have highest priority
194and the values specified directly via C<configure> have lowest priority,
195and can only be used to specify defaults.
182 196
183If the profile specifies a node ID, then this will become the node ID of 197If the profile specifies a node ID, then this will become the node ID of
184this process. If not, then the profile name will be used as node ID. The 198this process. If not, then the profile name will be used as node ID. The
185special node ID of C<anon/> will be replaced by a random node ID. 199special node ID of C<anon/> will be replaced by a random node ID.
200
201=item step 2, bind listener sockets
186 202
187The next step is to look up the binds in the profile, followed by binding 203The next step is to look up the binds in the profile, followed by binding
188aemp protocol listeners on all binds specified (it is possible and valid 204aemp protocol listeners on all binds specified (it is possible and valid
189to have no binds, meaning that the node cannot be contacted form the 205to have no binds, meaning that the node cannot be contacted form the
190outside. This means the node cannot talk to other nodes that also have no 206outside. This means the node cannot talk to other nodes that also have no
191binds, but it can still talk to all "normal" nodes). 207binds, but it can still talk to all "normal" nodes).
192 208
193If the profile does not specify a binds list, then the node ID will be 209If the profile does not specify a binds list, then a default of C<*> is
194treated as if it were of the form C<host:port>, which will be resolved and 210used, meaning the node will bind on a dynamically-assigned port on every
195used as binds list. 211local IP address it finds.
196 212
213=item step 3, connect to seed nodes
214
197Lastly, the seeds list from the profile is passed to the 215As the last step, the seeds list from the profile is passed to the
198L<AnyEvent::MP::Global> module, which will then use it to keep 216L<AnyEvent::MP::Global> module, which will then use it to keep
199connectivity with at least on of those seed nodes at any point in time. 217connectivity with at least one node at any point in time.
200 218
201Example: become a distributed node listening on the guessed noderef, or 219=back
202the one specified via C<aemp> for the current node. This should be the 220
221Example: become a distributed node using the locla node name as profile.
203most common form of invocation for "daemon"-type nodes. 222This should be the most common form of invocation for "daemon"-type nodes.
204 223
205 initialise_node; 224 configure
206 225
207Example: become an anonymous node. This form is often used for commandline 226Example: become an anonymous node. This form is often used for commandline
208clients. 227clients.
209 228
210 initialise_node "anon/"; 229 configure nodeid => "anon/";
211 230
212Example: become a distributed node. If there is no profile of the given 231Example: configure a node using a profile called seed, which si suitable
213name, or no binds list was specified, resolve C<localhost:4044> and bind 232for a seed node as it binds on all local addresses on a fixed port (4040,
214on the resulting addresses. 233customary for aemp).
215 234
216 initialise_node "localhost:4044"; 235 # use the aemp commandline utility
236 # aemp profile seed nodeid anon/ binds '*:4040'
237
238 # then use it
239 configure profile => "seed";
240
241 # or simply use aemp from the shell again:
242 # aemp run profile seed
243
244 # or provide a nicer-to-remember nodeid
245 # aemp run profile seed nodeid "$(hostname)"
217 246
218=item $SELF 247=item $SELF
219 248
220Contains the current port id while executing C<rcv> callbacks or C<psub> 249Contains the current port id while executing C<rcv> callbacks or C<psub>
221blocks. 250blocks.
343 372
344=cut 373=cut
345 374
346sub rcv($@) { 375sub rcv($@) {
347 my $port = shift; 376 my $port = shift;
348 my ($noderef, $portid) = split /#/, $port, 2; 377 my ($nodeid, $portid) = split /#/, $port, 2;
349 378
350 $NODE{$noderef} == $NODE{""} 379 $NODE{$nodeid} == $NODE{""}
351 or Carp::croak "$port: rcv can only be called on local ports, caught"; 380 or Carp::croak "$port: rcv can only be called on local ports, caught";
352 381
353 while (@_) { 382 while (@_) {
354 if (ref $_[0]) { 383 if (ref $_[0]) {
355 if (my $self = $PORT_DATA{$portid}) { 384 if (my $self = $PORT_DATA{$portid}) {
446 475
447Monitor the given port and do something when the port is killed or 476Monitor the given port and do something when the port is killed or
448messages to it were lost, and optionally return a guard that can be used 477messages to it were lost, and optionally return a guard that can be used
449to stop monitoring again. 478to stop monitoring again.
450 479
480In the first form (callback), the callback is simply called with any
481number of C<@reason> elements (no @reason means that the port was deleted
482"normally"). Note also that I<< the callback B<must> never die >>, so use
483C<eval> if unsure.
484
485In the second form (another port given), the other port (C<$rcvport>)
486will be C<kil>'ed with C<@reason>, if a @reason was specified, i.e. on
487"normal" kils nothing happens, while under all other conditions, the other
488port is killed with the same reason.
489
490The third form (kill self) is the same as the second form, except that
491C<$rvport> defaults to C<$SELF>.
492
493In the last form (message), a message of the form C<@msg, @reason> will be
494C<snd>.
495
496Monitoring-actions are one-shot: once messages are lost (and a monitoring
497alert was raised), they are removed and will not trigger again.
498
499As a rule of thumb, monitoring requests should always monitor a port from
500a local port (or callback). The reason is that kill messages might get
501lost, just like any other message. Another less obvious reason is that
502even monitoring requests can get lost (for example, when the connection
503to the other node goes down permanently). When monitoring a port locally
504these problems do not exist.
505
451C<mon> effectively guarantees that, in the absence of hardware failures, 506C<mon> effectively guarantees that, in the absence of hardware failures,
452after starting the monitor, either all messages sent to the port will 507after starting the monitor, either all messages sent to the port will
453arrive, or the monitoring action will be invoked after possible message 508arrive, or the monitoring action will be invoked after possible message
454loss has been detected. No messages will be lost "in between" (after 509loss has been detected. No messages will be lost "in between" (after
455the first lost message no further messages will be received by the 510the first lost message no further messages will be received by the
456port). After the monitoring action was invoked, further messages might get 511port). After the monitoring action was invoked, further messages might get
457delivered again. 512delivered again.
458 513
459Note that monitoring-actions are one-shot: once messages are lost (and a 514Inter-host-connection timeouts and monitoring depend on the transport
460monitoring alert was raised), they are removed and will not trigger again. 515used. The only transport currently implemented is TCP, and AnyEvent::MP
516relies on TCP to detect node-downs (this can take 10-15 minutes on a
517non-idle connection, and usually around two hours for idle conenctions).
461 518
462In the first form (callback), the callback is simply called with any 519This means that monitoring is good for program errors and cleaning up
463number of C<@reason> elements (no @reason means that the port was deleted 520stuff eventually, but they are no replacement for a timeout when you need
464"normally"). Note also that I<< the callback B<must> never die >>, so use 521to ensure some maximum latency.
465C<eval> if unsure.
466
467In the second form (another port given), the other port (C<$rcvport>)
468will be C<kil>'ed with C<@reason>, iff a @reason was specified, i.e. on
469"normal" kils nothing happens, while under all other conditions, the other
470port is killed with the same reason.
471
472The third form (kill self) is the same as the second form, except that
473C<$rvport> defaults to C<$SELF>.
474
475In the last form (message), a message of the form C<@msg, @reason> will be
476C<snd>.
477
478As a rule of thumb, monitoring requests should always monitor a port from
479a local port (or callback). The reason is that kill messages might get
480lost, just like any other message. Another less obvious reason is that
481even monitoring requests can get lost (for exmaple, when the connection
482to the other node goes down permanently). When monitoring a port locally
483these problems do not exist.
484 522
485Example: call a given callback when C<$port> is killed. 523Example: call a given callback when C<$port> is killed.
486 524
487 mon $port, sub { warn "port died because of <@_>\n" }; 525 mon $port, sub { warn "port died because of <@_>\n" };
488 526
495 mon $port, $self => "restart"; 533 mon $port, $self => "restart";
496 534
497=cut 535=cut
498 536
499sub mon { 537sub mon {
500 my ($noderef, $port) = split /#/, shift, 2; 538 my ($nodeid, $port) = split /#/, shift, 2;
501 539
502 my $node = $NODE{$noderef} || add_node $noderef; 540 my $node = $NODE{$nodeid} || add_node $nodeid;
503 541
504 my $cb = @_ ? shift : $SELF || Carp::croak 'mon: called with one argument only, but $SELF not set,'; 542 my $cb = @_ ? shift : $SELF || Carp::croak 'mon: called with one argument only, but $SELF not set,';
505 543
506 unless (ref $cb) { 544 unless (ref $cb) {
507 if (@_) { 545 if (@_) {
621 }; 659 };
622 _self_die if $@; 660 _self_die if $@;
623} 661}
624 662
625sub spawn(@) { 663sub spawn(@) {
626 my ($noderef, undef) = split /#/, shift, 2; 664 my ($nodeid, undef) = split /#/, shift, 2;
627 665
628 my $id = "$RUNIQ." . $ID++; 666 my $id = "$RUNIQ." . $ID++;
629 667
630 $_[0] =~ /::/ 668 $_[0] =~ /::/
631 or Carp::croak "spawn init function must be a fully-qualified name, caught"; 669 or Carp::croak "spawn init function must be a fully-qualified name, caught";
632 670
633 snd_to_func $noderef, "AnyEvent::MP::_spawn" => $id, @_; 671 snd_to_func $nodeid, "AnyEvent::MP::_spawn" => $id, @_;
634 672
635 "$noderef#$id" 673 "$nodeid#$id"
636} 674}
637 675
638=item after $timeout, @msg 676=item after $timeout, @msg
639 677
640=item after $timeout, $callback 678=item after $timeout, $callback
679 717
680=item * Node IDs are arbitrary strings in AEMP. 718=item * Node IDs are arbitrary strings in AEMP.
681 719
682Erlang relies on special naming and DNS to work everywhere in the same 720Erlang relies on special naming and DNS to work everywhere in the same
683way. AEMP relies on each node somehow knowing its own address(es) (e.g. by 721way. AEMP relies on each node somehow knowing its own address(es) (e.g. by
684configuraiton or DNS), but will otherwise discover other odes itself. 722configuration or DNS), but will otherwise discover other odes itself.
685 723
686=item * Erlang has a "remote ports are like local ports" philosophy, AEMP 724=item * Erlang has a "remote ports are like local ports" philosophy, AEMP
687uses "local ports are like remote ports". 725uses "local ports are like remote ports".
688 726
689The failure modes for local ports are quite different (runtime errors 727The failure modes for local ports are quite different (runtime errors
702 740
703Erlang uses processes that selectively receive messages, and therefore 741Erlang uses processes that selectively receive messages, and therefore
704needs a queue. AEMP is event based, queuing messages would serve no 742needs a queue. AEMP is event based, queuing messages would serve no
705useful purpose. For the same reason the pattern-matching abilities of 743useful purpose. For the same reason the pattern-matching abilities of
706AnyEvent::MP are more limited, as there is little need to be able to 744AnyEvent::MP are more limited, as there is little need to be able to
707filter messages without dequeing them. 745filter messages without dequeuing them.
708 746
709(But see L<Coro::MP> for a more Erlang-like process model on top of AEMP). 747(But see L<Coro::MP> for a more Erlang-like process model on top of AEMP).
710 748
711=item * Erlang sends are synchronous, AEMP sends are asynchronous. 749=item * Erlang sends are synchronous, AEMP sends are asynchronous.
712 750

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines