#--------------------------------------------------------------------- package Win32::IPC; # # Copyright 1998-2008 Christopher J. Madsen # # Created: 3 Feb 1998 from the ActiveWare version # (c) 1995 Microsoft Corporation. All rights reserved. # Developed by ActiveWare Internet Corp., http://www.ActiveState.com # # Other modifications (c) 1997 by Gurusamy Sarathy # # Author: Christopher J. Madsen # $Id: IPC.pm 284 2008-04-17 02:17:41Z cmadsn $ # # This program is free software; you can redistribute it and/or modify # it under the same terms as Perl itself. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the # GNU General Public License or the Artistic License for more details. # # Base class for Win32 synchronization objects #--------------------------------------------------------------------- use strict; use warnings; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); BEGIN { $VERSION = '1.07'; require Exporter; @ISA = qw( Exporter ); @EXPORT = qw( INFINITE WaitForMultipleObjects ); @EXPORT_OK = qw( wait_any wait_all ); require XSLoader; XSLoader::load('Win32::IPC', $VERSION); # Generate INFINITE constant function: my $INFINITE = constant('INFINITE'); eval "sub INFINITE () { $INFINITE } 1" or die; } # end BEGIN bootstrap # How's this for cryptic? Use wait_any or wait_all! sub WaitForMultipleObjects { my $result = (($_[1] ? &wait_all($_[0], $_[2]) : &wait_any($_[0], $_[2])) ? 1 : 0); @{$_[0]} = (); # Bug for bug compatibility! Use wait_any or wait_all! $result; } # end WaitForMultipleObjects 1; __END__ =head1 NAME Win32::IPC - Base class for Win32 synchronization objects =head1 VERSION This document describes version 1.07 of Win32::IPC, released April 16, 2008 as part of Win32-IPC version 1.07. =head1 SYNOPSIS use Win32::Event 1.00 qw(wait_any); #Create objects. wait_any(@ListOfObjects, $timeout); =head1 DESCRIPTION This module is loaded by the other Win32 synchronization modules. You shouldn't need to load it yourself. It supplies the wait functions to those modules. The synchronization modules are L, L, L, & L. In addition, you can use C and C with L and L objects. (However, those modules do not export the wait functions; you must load one of the synchronization modules (or just Win32::IPC)). =head2 Methods B supplies one method to all synchronization objects. =over 4 =item $obj->wait([$timeout]) Waits for C<$obj> to become signalled. C<$timeout> is the maximum time to wait (in milliseconds). If C<$timeout> is omitted or C, waits forever. If C<$timeout> is 0, returns immediately. Returns: +1 The object is signalled -1 The object is an abandoned mutex 0 Timed out undef An error occurred (check C<$^E> for details) =back =head2 Functions =over 4 =item wait_any(@objects, [$timeout]) Waits for at least one of the C<@objects> to become signalled. C<$timeout> is the maximum time to wait (in milliseconds). If C<$timeout> is omitted or C, waits forever. If C<$timeout> is 0, returns immediately. The return value indicates which object ended the wait: +N $object[N-1] is signalled -N $object[N-1] is an abandoned mutex 0 Timed out undef An error occurred (check C<$^E> for details) If more than one object became signalled, the one with the lowest index is used. =item wait_all(@objects, [$timeout]) This is the same as C, but it waits for all the C<@objects> to become signalled. The return value indicates the last object to become signalled, and is negative if at least one of the C<@objects> is an abandoned mutex. =back =head2 Deprecated Functions and Methods B still supports the ActiveWare syntax, but its use is deprecated. =over 4 =item INFINITE Constant value for an infinite timeout. Omit the C<$timeout> argument (or pass C) instead. C is only mildly deprecated. If you have a good use for it, feel free to continue to use it. That is, C<< $object->wait(INFINITE) >> is pointless, but C<< $object->wait($timeout) >> (where C<$timeout> may or may not equal C) may make sense. =item WaitForMultipleObjects(\@objects, $wait_all, $timeout) Warning: C erases C<@objects>! Use C or C instead. =item $obj->Wait($timeout) Similar to Cwait($timeout)>. =back =head1 INTERNALS The C and C functions support two kinds of objects. Objects derived from C are expected to consist of a reference to a scalar containing the Win32 HANDLE as an IV. Other objects (for which C is false), are expected to implement a C method. When called in scalar context with no arguments, this method should return a Win32 HANDLE (as an IV) suitable for passing to the Win32 WaitForMultipleObjects API function. =head1 DIAGNOSTICS None. =head1 CONFIGURATION AND ENVIRONMENT Win32::IPC requires no configuration files or environment variables. It runs under 32-bit or 64-bit Microsoft Windows, either natively or under Cygwin. =head1 DEPENDENCIES None. =head1 INCOMPATIBILITIES Prior to version 1.06, the Win32 IPC modules treated C values differently. In version 1.06 and later, passing C as the value of an optional parameter is the same as omitting that parameter. In previous versions, C was interpreted as either the empty string or 0 (along with a warning about "Use of uninitialized value..."). =head1 BUGS AND LIMITATIONS No bugs have been reported. =head1 AUTHOR Christopher J. Madsen EFE Please report any bugs or feature requests to S<< C<< >> >>, or through the web interface at L Loosely based on the original module by ActiveWare Internet Corp., L =head1 LICENSE AND COPYRIGHT Copyright 1998-2008 Christopher J. Madsen Created: 3 Feb 1998 from the ActiveWare version (c) 1995 Microsoft Corporation. All rights reserved. Developed by ActiveWare Internet Corp., http://www.ActiveState.com Other modifications (c) 1997 by Gurusamy Sarathy This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =head1 DISCLAIMER OF WARRANTY BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. =cut # Local Variables: # tmtrack-file-task: "Win32::IPC" # End: