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.119 by root, Sun Feb 26 10:29:59 2012 UTC vs.
Revision 1.127 by root, Sat Mar 3 20:35:10 2012 UTC

82 82
83Ports are represented by (printable) strings called "port IDs". 83Ports are represented by (printable) strings called "port IDs".
84 84
85=item port ID - C<nodeid#portname> 85=item port ID - C<nodeid#portname>
86 86
87A port ID is the concatenation of a node ID, a hash-mark (C<#>) as 87A port ID is the concatenation of a node ID, a hash-mark (C<#>)
88separator, and a port name (a printable string of unspecified format). 88as separator, and a port name (a printable string of unspecified
89format created by AnyEvent::MP).
89 90
90=item node 91=item node
91 92
92A node is a single process containing at least one port - the node port, 93A node is a single process containing at least one port - the node port,
93which enables nodes to manage each other remotely, and to create new 94which enables nodes to manage each other remotely, and to create new
175 176
176=cut 177=cut
177 178
178package AnyEvent::MP; 179package AnyEvent::MP;
179 180
181use AnyEvent::MP::Config ();
180use AnyEvent::MP::Kernel; 182use AnyEvent::MP::Kernel;
183use AnyEvent::MP::Kernel qw(%NODE %PORT %PORT_DATA $UNIQ $RUNIQ $ID);
181 184
182use common::sense; 185use common::sense;
183 186
184use Carp (); 187use Carp ();
185 188
186use AE (); 189use AE ();
190use Guard ();
187 191
188use base "Exporter"; 192use base "Exporter";
189 193
190our $VERSION = '1.30'; 194our $VERSION = $AnyEvent::MP::Config::VERSION;
191 195
192our @EXPORT = qw( 196our @EXPORT = qw(
193 NODE $NODE *SELF node_of after 197 NODE $NODE *SELF node_of after
194 configure 198 configure
195 snd rcv mon mon_guard kil psub peval spawn cal 199 snd rcv mon mon_guard kil psub peval spawn cal
196 port 200 port
201 db_set db_del db_reg
197); 202);
198 203
199our $SELF; 204our $SELF;
200 205
201sub _self_die() { 206sub _self_die() {
221Before a node can talk to other nodes on the network (i.e. enter 226Before a node can talk to other nodes on the network (i.e. enter
222"distributed mode") it has to configure itself - the minimum a node needs 227"distributed mode") it has to configure itself - the minimum a node needs
223to know is its own name, and optionally it should know the addresses of 228to know is its own name, and optionally it should know the addresses of
224some other nodes in the network to discover other nodes. 229some other nodes in the network to discover other nodes.
225 230
226The key/value pairs are basically the same ones as documented for the
227F<aemp> command line utility (sans the set/del prefix).
228
229This function configures a node - it must be called exactly once (or 231This function configures a node - it must be called exactly once (or
230never) before calling other AnyEvent::MP functions. 232never) before calling other AnyEvent::MP functions.
233
234The key/value pairs are basically the same ones as documented for the
235F<aemp> command line utility (sans the set/del prefix), with these additions:
236
237=over 4
238
239=item norc => $boolean (default false)
240
241If true, then the rc file (e.g. F<~/.perl-anyevent-mp>) will I<not>
242be consulted - all configuraiton options must be specified in the
243C<configure> call.
244
245=item force => $boolean (default false)
246
247IF true, then the values specified in the C<configure> will take
248precedence over any values configured via the rc file. The default is for
249the rc file to override any options specified in the program.
250
251=item secure => $pass->($nodeid)
252
253In addition to specifying a boolean, you can specify a code reference that
254is called for every remote execution attempt - the execution request is
255granted iff the callback returns a true value.
256
257See F<semp setsecure> for more info.
258
259=back
231 260
232=over 4 261=over 4
233 262
234=item step 1, gathering configuration from profiles 263=item step 1, gathering configuration from profiles
235 264
249That means that the values specified in the profile have highest priority 278That means that the values specified in the profile have highest priority
250and the values specified directly via C<configure> have lowest priority, 279and the values specified directly via C<configure> have lowest priority,
251and can only be used to specify defaults. 280and can only be used to specify defaults.
252 281
253If the profile specifies a node ID, then this will become the node ID of 282If the profile specifies a node ID, then this will become the node ID of
254this process. If not, then the profile name will be used as node ID. The 283this process. If not, then the profile name will be used as node ID, with
255special node ID of C<anon/> will be replaced by a random node ID. 284a unique randoms tring (C</%u>) appended.
285
286The node ID can contain some C<%> sequences that are expanded: C<%n>
287is expanded to the local nodename, C<%u> is replaced by a random
288strign to make the node unique. For example, the F<aemp> commandline
289utility uses C<aemp/%n/%u> as nodename, which might expand to
290C<aemp/cerebro/ZQDGSIkRhEZQDGSIkRhE>.
256 291
257=item step 2, bind listener sockets 292=item step 2, bind listener sockets
258 293
259The next step is to look up the binds in the profile, followed by binding 294The next step is to look up the binds in the profile, followed by binding
260aemp protocol listeners on all binds specified (it is possible and valid 295aemp protocol listeners on all binds specified (it is possible and valid
277Example: become a distributed node using the local node name as profile. 312Example: become a distributed node using the local node name as profile.
278This should be the most common form of invocation for "daemon"-type nodes. 313This should be the most common form of invocation for "daemon"-type nodes.
279 314
280 configure 315 configure
281 316
282Example: become an anonymous node. This form is often used for commandline 317Example: become a semi-anonymous node. This form is often used for
283clients. 318commandline clients.
284 319
285 configure nodeid => "anon/"; 320 configure nodeid => "myscript/%n/%u";
286 321
287Example: configure a node using a profile called seed, which si suitable 322Example: configure a node using a profile called seed, which is suitable
288for a seed node as it binds on all local addresses on a fixed port (4040, 323for a seed node as it binds on all local addresses on a fixed port (4040,
289customary for aemp). 324customary for aemp).
290 325
291 # use the aemp commandline utility 326 # use the aemp commandline utility
292 # aemp profile seed nodeid anon/ binds '*:4040' 327 # aemp profile seed binds '*:4040'
293 328
294 # then use it 329 # then use it
295 configure profile => "seed"; 330 configure profile => "seed";
296 331
297 # or simply use aemp from the shell again: 332 # or simply use aemp from the shell again:
367sub _kilme { 402sub _kilme {
368 die "received message on port without callback"; 403 die "received message on port without callback";
369} 404}
370 405
371sub port(;&) { 406sub port(;&) {
372 my $id = "$UNIQ." . $ID++; 407 my $id = $UNIQ . ++$ID;
373 my $port = "$NODE#$id"; 408 my $port = "$NODE#$id";
374 409
375 rcv $port, shift || \&_kilme; 410 rcv $port, shift || \&_kilme;
376 411
377 $port 412 $port
650 } 685 }
651 686
652 $node->monitor ($port, $cb); 687 $node->monitor ($port, $cb);
653 688
654 defined wantarray 689 defined wantarray
655 and ($cb += 0, AnyEvent::Util::guard { $node->unmonitor ($port, $cb) }) 690 and ($cb += 0, Guard::guard { $node->unmonitor ($port, $cb) })
656} 691}
657 692
658=item $guard = mon_guard $port, $ref, $ref... 693=item $guard = mon_guard $port, $ref, $ref...
659 694
660Monitors the given C<$port> and keeps the passed references. When the port 695Monitors the given C<$port> and keeps the passed references. When the port
764} 799}
765 800
766sub spawn(@) { 801sub spawn(@) {
767 my ($nodeid, undef) = split /#/, shift, 2; 802 my ($nodeid, undef) = split /#/, shift, 2;
768 803
769 my $id = "$RUNIQ." . $ID++; 804 my $id = $RUNIQ . ++$ID;
770 805
771 $_[0] =~ /::/ 806 $_[0] =~ /::/
772 or Carp::croak "spawn init function must be a fully-qualified name, caught"; 807 or Carp::croak "spawn init function must be a fully-qualified name, caught";
773 808
774 snd_to_func $nodeid, "AnyEvent::MP::_spawn" => $id, @_; 809 snd_to_func $nodeid, "AnyEvent::MP::_spawn" => $id, @_;
775 810
776 "$nodeid#$id" 811 "$nodeid#$id"
777} 812}
813
778 814
779=item after $timeout, @msg 815=item after $timeout, @msg
780 816
781=item after $timeout, $callback 817=item after $timeout, $callback
782 818
852 $port 888 $port
853} 889}
854 890
855=back 891=back
856 892
893=head1 DISTRIBUTED DATABASE
894
895AnyEvent::MP comes with a simple distributed database. The database will
896be mirrored asynchronously at all global nodes. Other nodes bind to one of
897the global nodes for their needs.
898
899The database consists of a two-level hash - a hash contains a hash which
900contains values.
901
902The top level hash key is called "family", and the second-level hash key
903is called "subkey" or simply "key".
904
905The family must be alphanumeric, i.e. start with a letter and consist
906of letters, digits, underscores and colons (C<[A-Za-z][A-Za-z0-9_:]*>,
907pretty much like Perl module names.
908
909As the family namespace is global, it is recommended to prefix family names
910with the name of the application or module using it.
911
912The subkeys must be non-empty strings, with no further restrictions.
913
914The values should preferably be strings, but other perl scalars should
915work as well (such as undef, arrays and hashes).
916
917Every database entry is owned by one node - adding the same family/subkey
918combination on multiple nodes will not cause discomfort for AnyEvent::MP,
919but the result might be nondeterministic, i.e. the key might have
920different values on different nodes.
921
922Different subkeys in the same family can be owned by different nodes
923without problems, and in fact, this is the common method to create worker
924pools. For example, a worker port for image scaling might do this:
925
926 db_set my_image_scalers => $port;
927
928And clients looking for an image scaler will want to get the
929C<my_image_scalers> keys:
930
931 db_keys "my_image_scalers" => 60 => sub {
932 #d##TODO#
933
934=over
935
936=item db_set $family => $subkey [=> $value]
937
938Sets (or replaces) a key to the database - if C<$value> is omitted,
939C<undef> is used instead.
940
941=item db_del $family => $subkey
942
943Deletes a key from the database.
944
945=item $guard = db_reg $family => $subkey [=> $value]
946
947Sets the key on the database and returns a guard. When the guard is
948destroyed, the key is deleted from the database. If C<$value> is missing,
949then C<undef> is used.
950
951=cut
952
953=back
954
857=head1 AnyEvent::MP vs. Distributed Erlang 955=head1 AnyEvent::MP vs. Distributed Erlang
858 956
859AnyEvent::MP got lots of its ideas from distributed Erlang (Erlang node 957AnyEvent::MP got lots of its ideas from distributed Erlang (Erlang node
860== aemp node, Erlang process == aemp port), so many of the documents and 958== aemp node, Erlang process == aemp port), so many of the documents and
861programming techniques employed by Erlang apply to AnyEvent::MP. Here is a 959programming techniques employed by Erlang apply to AnyEvent::MP. Here is a

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines