IO::Async::DetachedCode man page on Fedora

Man page or keyword search:  
man Server   31170 pages
apropos Keyword Search (all sections)
Output format
Fedora logo
[printable version]

IO::Async::DetachedCodUser Contributed Perl DocumentIO::Async::DetachedCode(3)

NAME
       "IO::Async::DetachedCode" - execute code asynchronously in child
       processes

SYNOPSIS
       This object is used indirectly via an "IO::Async::Loop":

	use IO::Async::Loop;
	my $loop = IO::Async::Loop->new();

	my $code = $loop->detach_code(
	   code => sub {
	      my ( $number ) = @_;
	      return is_prime( $number );
	   }
	);

	$code->call(
	   args => [ 123454321 ],
	   on_return => sub {
	      my $isprime = shift;
	      print "123454321 " . ( $isprime ? "is" : "is not" ) . " a prime number\n";
	   },
	   on_error => sub {
	      print STDERR "Cannot determine if it's prime - $_[0]\n";
	   },
	);

	$loop->loop_forever;

DESCRIPTION
       This module provides a class that allows a block of code to "detach"
       from the main process, and execute independently in its own child
       processes. The object itself acts as a proxy to this code block,
       allowing arguments to be passed to it each time it is called, and
       returning results back to a continuation in the main process.

       The object represents the code block itself, rather than one specific
       invocation of it. It can be called multiple times, by the "call()"
       method.	Multiple outstanding invocations can be called; they will be
       dispatched in the order they were queued. If only one worker process is
       used then results will be returned in the order they were called. If
       multiple are used, then each request will be sent in the order called,
       but timing differences between each worker may mean results are
       returned in a different order.

       The default marshalling code can only cope with plain scalars or
       "undef" values; no references, objects, or IO handles may be passed to
       the function each time it is called. If references are required then
       code based on Storable may be used instead to pass these. See the
       documentation on the "marshaller" parameter of "new()" method. Beware
       that, because the code executes in a child process, passing such items
       as IO handles will not work.

       The "IO::Async" framework generally provides mechanisms for
       multiplexing IO tasks between different handles, so there aren't many
       occasions when such detached code is necessary. Two cases where this
       does become useful are:

       1.  When a large amount of computationally-intensive work needs to be
	   performed (for example, the "is_prime()" test in the example in the
	   "SYNOPSIS").

       2.  When a blocking OS syscall or library-level function needs to be
	   called, and no nonblocking or asynchronous version is supplied.
	   This is used by "IO::Async::Resolver".

CONSTRUCTOR
   $code = $loop->detach_code( %params )
       This function returns a new instance of a "IO::Async::DetachedCode"
       object.	The %params hash takes the following keys:

       code => CODE
	       A block of code to call in the child process. It will be
	       invoked in list context each time the "call()" method is is
	       called, passing in the arguments given. The result will be
	       given to the "on_result" or "on_return" continuation provided
	       to the "call()" method.

       stream => STRING: "socket" or "pipe"
	       Optional string, specifies which sort of stream will be used to
	       attach to each worker. "socket" uses only one file descriptor
	       per worker in the parent process, but not all systems may be
	       able to use it. If the system does not support "socketpair()",
	       then "pipe" can be used instead. This will use two file
	       descriptors per worker in the parent process, however.

	       If not supplied, the underlying Loop's "pipequad()" method is
	       used, which will select an appropriate method. Usually this
	       default will be sufficient.

       marshaller => STRING: "flat" or "storable"
	       Optional string, specifies the way that call arguments and
	       return values are marshalled over the stream that connects the
	       worker and parent processes. The "flat" marshaller is small,
	       simple and fast, but can only cope with strings or "undef";
	       cannot cope with any references. The "storable" marshaller uses
	       the Storable module to marshall arbitrary reference structures.

	       If not supplied, the "flat" method is used.

       workers => INT
	       Optional integer, specifies the number of parallel workers to
	       create.

	       If not supplied, 1 is used.

       exit_on_die => BOOL
	       Optional boolean, controls what happens after the "code" throws
	       an exception. If missing or false, the worker will continue
	       running to process more requests. If true, the worker will be
	       shut down. A new worker might be constructed by the "call"
	       method to replace it, if necessary.

       setup => ARRAY
	       Optional array reference. Specifies the "setup" key to pass to
	       the underlying "detach_child" when detaching the code block. If
	       not supplied, a default one will be created which just closes
	       "STDIN" and "STDOUT"; "STDERR" will be left unaffected.

       Since the code block will be called multiple times within the same
       child process, it must take care not to modify any of its state that
       might affect subsequent calls. Since it executes in a child process, it
       cannot make any modifications to the state of the parent program.
       Therefore, all the data required to perform its task must be
       represented in the call arguments, and all of the result must be
       represented in the return values.

METHODS
   $code->call( %params )
       This method causes one invocation of the code block to be executed in a
       free worker. If there are no free workers available at the time this
       method is called, the request will be queued, to be sent to the first
       worker that later becomes available. The request will already have been
       serialised by the marshaller, so it will be safe to modify any
       referenced data structures in the arguments after this call returns.

       If the number of available workers is less than the number supplied to
       the constructor (perhaps because some of them were shut down because of
       "exit_on_die") and they are all busy, then a new one will be created to
       perform this request.

       The %params hash takes the following keys:

       args => ARRAY
	       A reference to the array of arguments to pass to the code.

       on_result => CODE
	       A continuation that is invoked when the code has been executed.
	       If the code returned normally, it is called as:

		$on_result->( 'return', @values )

	       If the code threw an exception, or some other error occured
	       such as a closed connection or the process died, it is called
	       as:

		$on_result->( 'error', $exception_name )

       or

       on_return => CODE and on_error => CODE
	       Two continuations to use in either of the circumstances given
	       above. They will be called directly, without the leading
	       'return' or 'error' value.

       The "args" key must always be supplied. Either the "on_result" or both
       the "on_return" and "on_error" keys must also be supplied.

   $code->shutdown
       This method requests that the detached worker processes stop running.
       All pending calls to the code are finished with a 'shutdown' error, and
       the worker processes exit.

   $n_workers = $code->workers
       This method in scalar context returns the number of workers currently
       running.

   @worker_pids = $code->workers
       This method in list context returns a list of the PID numbers of all
       the currently running worker processes.

TODO
       ·   Allow other argument/return value marshalling code - perhaps an
	   arbitrary object.

       ·   Dynamic pooling of multiple worker processes, with min/max
	   watermarks.

NOTES
       For the record, 123454321 is 11111 * 11111, a square number, and
       therefore not prime.

AUTHOR
       Paul Evans <leonerd@leonerd.org.uk>

perl v5.14.2			  2010-06-09	    IO::Async::DetachedCode(3)
[top]

List of man pages available for Fedora

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net