ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.pm
Revision: 1.171
Committed: Sat Jan 2 14:24:32 2010 UTC (14 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-3_4
Changes since 1.170: +1 -1 lines
Log Message:
3.4

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3     IO::AIO - Asynchronous Input/Output
4    
5     =head1 SYNOPSIS
6    
7     use IO::AIO;
8    
9 root 1.6 aio_open "/etc/passwd", O_RDONLY, 0, sub {
10 root 1.94 my $fh = shift
11     or die "/etc/passwd: $!";
12 root 1.6 ...
13     };
14    
15     aio_unlink "/tmp/file", sub { };
16    
17     aio_read $fh, 30000, 1024, $buffer, 0, sub {
18 root 1.8 $_[0] > 0 or die "read error: $!";
19 root 1.6 };
20    
21 root 1.56 # version 2+ has request and group objects
22     use IO::AIO 2;
23 root 1.52
24 root 1.68 aioreq_pri 4; # give next request a very high priority
25 root 1.52 my $req = aio_unlink "/tmp/file", sub { };
26     $req->cancel; # cancel request if still in queue
27    
28 root 1.56 my $grp = aio_group sub { print "all stats done\n" };
29     add $grp aio_stat "..." for ...;
30    
31 root 1.125 # AnyEvent integration (EV, Event, Glib, Tk, POE, urxvt, pureperl...)
32     use AnyEvent::AIO;
33 root 1.42
34 root 1.118 # EV integration
35 root 1.156 my $aio_w = EV::io IO::AIO::poll_fileno, EV::READ, \&IO::AIO::poll_cb;
36 root 1.118
37 root 1.56 # Event integration
38 root 1.6 Event->io (fd => IO::AIO::poll_fileno,
39 root 1.7 poll => 'r',
40 root 1.6 cb => \&IO::AIO::poll_cb);
41    
42 root 1.56 # Glib/Gtk2 integration
43 root 1.6 add_watch Glib::IO IO::AIO::poll_fileno,
44 root 1.22 in => sub { IO::AIO::poll_cb; 1 };
45 root 1.6
46 root 1.56 # Tk integration
47 root 1.6 Tk::Event::IO->fileevent (IO::AIO::poll_fileno, "",
48     readable => \&IO::AIO::poll_cb);
49    
50 root 1.56 # Danga::Socket integration
51 root 1.11 Danga::Socket->AddOtherFds (IO::AIO::poll_fileno =>
52     \&IO::AIO::poll_cb);
53    
54 root 1.1 =head1 DESCRIPTION
55    
56     This module implements asynchronous I/O using whatever means your
57 root 1.156 operating system supports. It is implemented as an interface to C<libeio>
58     (L<http://software.schmorp.de/pkg/libeio.html>).
59 root 1.1
60 root 1.85 Asynchronous means that operations that can normally block your program
61     (e.g. reading from disk) will be done asynchronously: the operation
62     will still block, but you can do something else in the meantime. This
63     is extremely useful for programs that need to stay interactive even
64     when doing heavy I/O (GUI programs, high performance network servers
65     etc.), but can also be used to easily do operations in parallel that are
66     normally done sequentially, e.g. stat'ing many files, which is much faster
67     on a RAID volume or over NFS when you do a number of stat operations
68     concurrently.
69    
70 root 1.108 While most of this works on all types of file descriptors (for
71     example sockets), using these functions on file descriptors that
72 root 1.156 support nonblocking operation (again, sockets, pipes etc.) is
73     very inefficient. Use an event loop for that (such as the L<EV>
74 root 1.108 module): IO::AIO will naturally fit into such an event loop itself.
75 root 1.85
76 root 1.72 In this version, a number of threads are started that execute your
77     requests and signal their completion. You don't need thread support
78     in perl, and the threads created by this module will not be visible
79     to perl. In the future, this module might make use of the native aio
80     functions available on many operating systems. However, they are often
81 root 1.85 not well-supported or restricted (GNU/Linux doesn't allow them on normal
82 root 1.72 files currently, for example), and they would only support aio_read and
83     aio_write, so the remaining functionality would have to be implemented
84     using threads anyway.
85    
86 root 1.108 Although the module will work in the presence of other (Perl-) threads,
87     it is currently not reentrant in any way, so use appropriate locking
88     yourself, always call C<poll_cb> from within the same thread, or never
89     call C<poll_cb> (or other C<aio_> functions) recursively.
90 root 1.72
91 root 1.86 =head2 EXAMPLE
92    
93 root 1.156 This is a simple example that uses the EV module and loads
94 root 1.86 F</etc/passwd> asynchronously:
95    
96     use Fcntl;
97 root 1.156 use EV;
98 root 1.86 use IO::AIO;
99    
100 root 1.156 # register the IO::AIO callback with EV
101     my $aio_w = EV::io IO::AIO::poll_fileno, EV::READ, \&IO::AIO::poll_cb;
102 root 1.86
103     # queue the request to open /etc/passwd
104     aio_open "/etc/passwd", O_RDONLY, 0, sub {
105 root 1.94 my $fh = shift
106 root 1.86 or die "error while opening: $!";
107    
108     # stat'ing filehandles is generally non-blocking
109     my $size = -s $fh;
110    
111     # queue a request to read the file
112     my $contents;
113     aio_read $fh, 0, $size, $contents, 0, sub {
114     $_[0] == $size
115     or die "short read: $!";
116    
117     close $fh;
118    
119     # file contents now in $contents
120     print $contents;
121    
122     # exit event loop and program
123 root 1.156 EV::unloop;
124 root 1.86 };
125     };
126    
127     # possibly queue up other requests, or open GUI windows,
128     # check for sockets etc. etc.
129    
130     # process events as long as there are some:
131 root 1.156 EV::loop;
132 root 1.86
133 root 1.72 =head1 REQUEST ANATOMY AND LIFETIME
134    
135     Every C<aio_*> function creates a request. which is a C data structure not
136     directly visible to Perl.
137    
138     If called in non-void context, every request function returns a Perl
139     object representing the request. In void context, nothing is returned,
140     which saves a bit of memory.
141    
142     The perl object is a fairly standard ref-to-hash object. The hash contents
143     are not used by IO::AIO so you are free to store anything you like in it.
144    
145     During their existance, aio requests travel through the following states,
146     in order:
147    
148     =over 4
149    
150     =item ready
151    
152     Immediately after a request is created it is put into the ready state,
153     waiting for a thread to execute it.
154    
155     =item execute
156    
157     A thread has accepted the request for processing and is currently
158     executing it (e.g. blocking in read).
159    
160     =item pending
161    
162     The request has been executed and is waiting for result processing.
163    
164     While request submission and execution is fully asynchronous, result
165     processing is not and relies on the perl interpreter calling C<poll_cb>
166     (or another function with the same effect).
167    
168     =item result
169    
170     The request results are processed synchronously by C<poll_cb>.
171    
172     The C<poll_cb> function will process all outstanding aio requests by
173     calling their callbacks, freeing memory associated with them and managing
174     any groups they are contained in.
175    
176     =item done
177    
178     Request has reached the end of its lifetime and holds no resources anymore
179     (except possibly for the Perl object, but its connection to the actual
180     aio request is severed and calling its methods will either do nothing or
181     result in a runtime error).
182 root 1.1
183 root 1.88 =back
184    
185 root 1.1 =cut
186    
187     package IO::AIO;
188    
189 root 1.117 use Carp ();
190    
191 root 1.161 use common::sense;
192 root 1.23
193 root 1.1 use base 'Exporter';
194    
195     BEGIN {
196 root 1.171 our $VERSION = '3.4';
197 root 1.1
198 root 1.120 our @AIO_REQ = qw(aio_sendfile aio_read aio_write aio_open aio_close
199 root 1.148 aio_stat aio_lstat aio_unlink aio_rmdir aio_readdir aio_readdirx
200 root 1.120 aio_scandir aio_symlink aio_readlink aio_sync aio_fsync
201 root 1.142 aio_fdatasync aio_sync_file_range aio_pathsync aio_readahead
202 root 1.120 aio_rename aio_link aio_move aio_copy aio_group
203     aio_nop aio_mknod aio_load aio_rmtree aio_mkdir aio_chown
204 root 1.170 aio_chmod aio_utime aio_truncate
205     aio_msync aio_mtouch);
206 root 1.120
207 root 1.123 our @EXPORT = (@AIO_REQ, qw(aioreq_pri aioreq_nice));
208 root 1.67 our @EXPORT_OK = qw(poll_fileno poll_cb poll_wait flush
209 root 1.86 min_parallel max_parallel max_idle
210     nreqs nready npending nthreads
211 root 1.157 max_poll_time max_poll_reqs
212     sendfile fadvise);
213 root 1.1
214 root 1.143 push @AIO_REQ, qw(aio_busy); # not exported
215    
216 root 1.54 @IO::AIO::GRP::ISA = 'IO::AIO::REQ';
217    
218 root 1.1 require XSLoader;
219 root 1.51 XSLoader::load ("IO::AIO", $VERSION);
220 root 1.1 }
221    
222 root 1.5 =head1 FUNCTIONS
223 root 1.1
224 root 1.87 =head2 AIO REQUEST FUNCTIONS
225 root 1.1
226 root 1.5 All the C<aio_*> calls are more or less thin wrappers around the syscall
227     with the same name (sans C<aio_>). The arguments are similar or identical,
228 root 1.14 and they all accept an additional (and optional) C<$callback> argument
229     which must be a code reference. This code reference will get called with
230     the syscall return code (e.g. most syscalls return C<-1> on error, unlike
231 root 1.136 perl, which usually delivers "false") as its sole argument after the given
232 root 1.14 syscall has been executed asynchronously.
233 root 1.1
234 root 1.23 All functions expecting a filehandle keep a copy of the filehandle
235     internally until the request has finished.
236 root 1.1
237 root 1.87 All functions return request objects of type L<IO::AIO::REQ> that allow
238     further manipulation of those requests while they are in-flight.
239 root 1.52
240 root 1.28 The pathnames you pass to these routines I<must> be absolute and
241 root 1.87 encoded as octets. The reason for the former is that at the time the
242 root 1.28 request is being executed, the current working directory could have
243     changed. Alternatively, you can make sure that you never change the
244 root 1.87 current working directory anywhere in the program and then use relative
245     paths.
246 root 1.28
247 root 1.87 To encode pathnames as octets, either make sure you either: a) always pass
248     in filenames you got from outside (command line, readdir etc.) without
249     tinkering, b) are ASCII or ISO 8859-1, c) use the Encode module and encode
250 root 1.28 your pathnames to the locale (or other) encoding in effect in the user
251     environment, d) use Glib::filename_from_unicode on unicode filenames or e)
252 root 1.87 use something else to ensure your scalar has the correct contents.
253    
254     This works, btw. independent of the internal UTF-8 bit, which IO::AIO
255 root 1.136 handles correctly whether it is set or not.
256 root 1.1
257 root 1.5 =over 4
258 root 1.1
259 root 1.80 =item $prev_pri = aioreq_pri [$pri]
260 root 1.68
261 root 1.80 Returns the priority value that would be used for the next request and, if
262     C<$pri> is given, sets the priority for the next aio request.
263 root 1.68
264 root 1.80 The default priority is C<0>, the minimum and maximum priorities are C<-4>
265     and C<4>, respectively. Requests with higher priority will be serviced
266     first.
267    
268     The priority will be reset to C<0> after each call to one of the C<aio_*>
269 root 1.68 functions.
270    
271 root 1.69 Example: open a file with low priority, then read something from it with
272     higher priority so the read request is serviced before other low priority
273     open requests (potentially spamming the cache):
274    
275     aioreq_pri -3;
276     aio_open ..., sub {
277     return unless $_[0];
278    
279     aioreq_pri -2;
280     aio_read $_[0], ..., sub {
281     ...
282     };
283     };
284    
285 root 1.106
286 root 1.69 =item aioreq_nice $pri_adjust
287    
288     Similar to C<aioreq_pri>, but subtracts the given value from the current
289 root 1.87 priority, so the effect is cumulative.
290 root 1.69
291 root 1.106
292 root 1.40 =item aio_open $pathname, $flags, $mode, $callback->($fh)
293 root 1.1
294 root 1.2 Asynchronously open or create a file and call the callback with a newly
295     created filehandle for the file.
296 root 1.1
297     The pathname passed to C<aio_open> must be absolute. See API NOTES, above,
298     for an explanation.
299    
300 root 1.20 The C<$flags> argument is a bitmask. See the C<Fcntl> module for a
301     list. They are the same as used by C<sysopen>.
302    
303     Likewise, C<$mode> specifies the mode of the newly created file, if it
304     didn't exist and C<O_CREAT> has been given, just like perl's C<sysopen>,
305     except that it is mandatory (i.e. use C<0> if you don't create new files,
306 root 1.101 and C<0666> or C<0777> if you do). Note that the C<$mode> will be modified
307     by the umask in effect then the request is being executed, so better never
308     change the umask.
309 root 1.1
310     Example:
311    
312     aio_open "/etc/passwd", O_RDONLY, 0, sub {
313 root 1.2 if ($_[0]) {
314     print "open successful, fh is $_[0]\n";
315 root 1.1 ...
316     } else {
317     die "open failed: $!\n";
318     }
319     };
320    
321 root 1.106
322 root 1.40 =item aio_close $fh, $callback->($status)
323 root 1.1
324 root 1.2 Asynchronously close a file and call the callback with the result
325 root 1.116 code.
326    
327 root 1.117 Unfortunately, you can't do this to perl. Perl I<insists> very strongly on
328 root 1.121 closing the file descriptor associated with the filehandle itself.
329 root 1.117
330 root 1.121 Therefore, C<aio_close> will not close the filehandle - instead it will
331     use dup2 to overwrite the file descriptor with the write-end of a pipe
332     (the pipe fd will be created on demand and will be cached).
333 root 1.117
334 root 1.121 Or in other words: the file descriptor will be closed, but it will not be
335     free for reuse until the perl filehandle is closed.
336 root 1.117
337     =cut
338    
339 root 1.40 =item aio_read $fh,$offset,$length, $data,$dataoffset, $callback->($retval)
340 root 1.1
341 root 1.40 =item aio_write $fh,$offset,$length, $data,$dataoffset, $callback->($retval)
342 root 1.1
343 root 1.145 Reads or writes C<$length> bytes from or to the specified C<$fh> and
344     C<$offset> into the scalar given by C<$data> and offset C<$dataoffset>
345     and calls the callback without the actual number of bytes read (or -1 on
346     error, just like the syscall).
347 root 1.109
348 root 1.146 C<aio_read> will, like C<sysread>, shrink or grow the C<$data> scalar to
349     offset plus the actual number of bytes read.
350    
351 root 1.112 If C<$offset> is undefined, then the current file descriptor offset will
352     be used (and updated), otherwise the file descriptor offset will not be
353     changed by these calls.
354 root 1.109
355 root 1.145 If C<$length> is undefined in C<aio_write>, use the remaining length of
356     C<$data>.
357 root 1.109
358     If C<$dataoffset> is less than zero, it will be counted from the end of
359     C<$data>.
360 root 1.1
361 root 1.31 The C<$data> scalar I<MUST NOT> be modified in any way while the request
362 root 1.108 is outstanding. Modifying it can result in segfaults or World War III (if
363     the necessary/optional hardware is installed).
364 root 1.31
365 root 1.17 Example: Read 15 bytes at offset 7 into scalar C<$buffer>, starting at
366 root 1.1 offset C<0> within the scalar:
367    
368     aio_read $fh, 7, 15, $buffer, 0, sub {
369 root 1.9 $_[0] > 0 or die "read error: $!";
370     print "read $_[0] bytes: <$buffer>\n";
371 root 1.1 };
372    
373 root 1.106
374 root 1.40 =item aio_sendfile $out_fh, $in_fh, $in_offset, $length, $callback->($retval)
375 root 1.35
376     Tries to copy C<$length> bytes from C<$in_fh> to C<$out_fh>. It starts
377     reading at byte offset C<$in_offset>, and starts writing at the current
378     file offset of C<$out_fh>. Because of that, it is not safe to issue more
379     than one C<aio_sendfile> per C<$out_fh>, as they will interfere with each
380     other.
381    
382     This call tries to make use of a native C<sendfile> syscall to provide
383     zero-copy operation. For this to work, C<$out_fh> should refer to a
384     socket, and C<$in_fh> should refer to mmap'able file.
385    
386 root 1.170 If a native sendfile cannot be found or it fails with C<ENOSYS>,
387     C<ENOTSUP>, C<EOPNOTSUPP>, C<EAFNOSUPPORT>, C<EPROTOTYPE> or C<ENOTSOCK>,
388     it will be emulated, so you can call C<aio_sendfile> on any type of
389     filehandle regardless of the limitations of the operating system.
390 root 1.35
391     Please note, however, that C<aio_sendfile> can read more bytes from
392     C<$in_fh> than are written, and there is no way to find out how many
393 root 1.36 bytes have been read from C<aio_sendfile> alone, as C<aio_sendfile> only
394     provides the number of bytes written to C<$out_fh>. Only if the result
395     value equals C<$length> one can assume that C<$length> bytes have been
396     read.
397 root 1.35
398 root 1.106
399 root 1.40 =item aio_readahead $fh,$offset,$length, $callback->($retval)
400 root 1.1
401 root 1.20 C<aio_readahead> populates the page cache with data from a file so that
402 root 1.1 subsequent reads from that file will not block on disk I/O. The C<$offset>
403     argument specifies the starting point from which data is to be read and
404     C<$length> specifies the number of bytes to be read. I/O is performed in
405     whole pages, so that offset is effectively rounded down to a page boundary
406     and bytes are read up to the next page boundary greater than or equal to
407 root 1.20 (off-set+length). C<aio_readahead> does not read beyond the end of the
408 root 1.1 file. The current file offset of the file is left unchanged.
409    
410 root 1.26 If that syscall doesn't exist (likely if your OS isn't Linux) it will be
411     emulated by simply reading the data, which would have a similar effect.
412    
413 root 1.106
414 root 1.40 =item aio_stat $fh_or_path, $callback->($status)
415 root 1.1
416 root 1.40 =item aio_lstat $fh, $callback->($status)
417 root 1.1
418     Works like perl's C<stat> or C<lstat> in void context. The callback will
419     be called after the stat and the results will be available using C<stat _>
420     or C<-s _> etc...
421    
422     The pathname passed to C<aio_stat> must be absolute. See API NOTES, above,
423     for an explanation.
424    
425     Currently, the stats are always 64-bit-stats, i.e. instead of returning an
426     error when stat'ing a large file, the results will be silently truncated
427     unless perl itself is compiled with large file support.
428    
429     Example: Print the length of F</etc/passwd>:
430    
431     aio_stat "/etc/passwd", sub {
432     $_[0] and die "stat failed: $!";
433     print "size is ", -s _, "\n";
434     };
435    
436 root 1.106
437     =item aio_utime $fh_or_path, $atime, $mtime, $callback->($status)
438    
439     Works like perl's C<utime> function (including the special case of $atime
440     and $mtime being undef). Fractional times are supported if the underlying
441     syscalls support them.
442    
443     When called with a pathname, uses utimes(2) if available, otherwise
444     utime(2). If called on a file descriptor, uses futimes(2) if available,
445     otherwise returns ENOSYS, so this is not portable.
446    
447     Examples:
448    
449 root 1.107 # set atime and mtime to current time (basically touch(1)):
450 root 1.106 aio_utime "path", undef, undef;
451     # set atime to current time and mtime to beginning of the epoch:
452     aio_utime "path", time, undef; # undef==0
453    
454    
455     =item aio_chown $fh_or_path, $uid, $gid, $callback->($status)
456    
457     Works like perl's C<chown> function, except that C<undef> for either $uid
458     or $gid is being interpreted as "do not change" (but -1 can also be used).
459    
460     Examples:
461    
462     # same as "chown root path" in the shell:
463     aio_chown "path", 0, -1;
464     # same as above:
465     aio_chown "path", 0, undef;
466    
467    
468 root 1.110 =item aio_truncate $fh_or_path, $offset, $callback->($status)
469    
470     Works like truncate(2) or ftruncate(2).
471    
472    
473 root 1.106 =item aio_chmod $fh_or_path, $mode, $callback->($status)
474    
475     Works like perl's C<chmod> function.
476    
477    
478 root 1.40 =item aio_unlink $pathname, $callback->($status)
479 root 1.1
480     Asynchronously unlink (delete) a file and call the callback with the
481     result code.
482    
483 root 1.106
484 root 1.82 =item aio_mknod $path, $mode, $dev, $callback->($status)
485    
486 root 1.86 [EXPERIMENTAL]
487    
488 root 1.83 Asynchronously create a device node (or fifo). See mknod(2).
489    
490 root 1.86 The only (POSIX-) portable way of calling this function is:
491 root 1.83
492     aio_mknod $path, IO::AIO::S_IFIFO | $mode, 0, sub { ...
493 root 1.82
494 root 1.106
495 root 1.50 =item aio_link $srcpath, $dstpath, $callback->($status)
496    
497     Asynchronously create a new link to the existing object at C<$srcpath> at
498     the path C<$dstpath> and call the callback with the result code.
499    
500 root 1.106
501 root 1.50 =item aio_symlink $srcpath, $dstpath, $callback->($status)
502    
503     Asynchronously create a new symbolic link to the existing object at C<$srcpath> at
504     the path C<$dstpath> and call the callback with the result code.
505    
506 root 1.106
507 root 1.90 =item aio_readlink $path, $callback->($link)
508    
509     Asynchronously read the symlink specified by C<$path> and pass it to
510     the callback. If an error occurs, nothing or undef gets passed to the
511     callback.
512    
513 root 1.106
514 root 1.50 =item aio_rename $srcpath, $dstpath, $callback->($status)
515    
516     Asynchronously rename the object at C<$srcpath> to C<$dstpath>, just as
517     rename(2) and call the callback with the result code.
518    
519 root 1.106
520 root 1.101 =item aio_mkdir $pathname, $mode, $callback->($status)
521    
522     Asynchronously mkdir (create) a directory and call the callback with
523     the result code. C<$mode> will be modified by the umask at the time the
524     request is executed, so do not change your umask.
525    
526 root 1.106
527 root 1.40 =item aio_rmdir $pathname, $callback->($status)
528 root 1.27
529     Asynchronously rmdir (delete) a directory and call the callback with the
530     result code.
531    
532 root 1.106
533 root 1.46 =item aio_readdir $pathname, $callback->($entries)
534 root 1.37
535     Unlike the POSIX call of the same name, C<aio_readdir> reads an entire
536     directory (i.e. opendir + readdir + closedir). The entries will not be
537     sorted, and will B<NOT> include the C<.> and C<..> entries.
538    
539 root 1.148 The callback is passed a single argument which is either C<undef> or an
540     array-ref with the filenames.
541    
542    
543     =item aio_readdirx $pathname, $flags, $callback->($entries, $flags)
544    
545     Quite similar to C<aio_readdir>, but the C<$flags> argument allows to tune
546     behaviour and output format. In case of an error, C<$entries> will be
547     C<undef>.
548    
549     The flags are a combination of the following constants, ORed together (the
550     flags will also be passed to the callback, possibly modified):
551    
552     =over 4
553    
554 root 1.150 =item IO::AIO::READDIR_DENTS
555 root 1.148
556     When this flag is off, then the callback gets an arrayref with of names
557     only (as with C<aio_readdir>), otherwise it gets an arrayref with
558 root 1.150 C<[$name, $type, $inode]> arrayrefs, each describing a single directory
559 root 1.148 entry in more detail.
560    
561     C<$name> is the name of the entry.
562    
563 root 1.150 C<$type> is one of the C<IO::AIO::DT_xxx> constants:
564 root 1.148
565 root 1.150 C<IO::AIO::DT_UNKNOWN>, C<IO::AIO::DT_FIFO>, C<IO::AIO::DT_CHR>, C<IO::AIO::DT_DIR>,
566     C<IO::AIO::DT_BLK>, C<IO::AIO::DT_REG>, C<IO::AIO::DT_LNK>, C<IO::AIO::DT_SOCK>,
567     C<IO::AIO::DT_WHT>.
568 root 1.148
569 root 1.150 C<IO::AIO::DT_UNKNOWN> means just that: readdir does not know. If you need to
570 root 1.148 know, you have to run stat yourself. Also, for speed reasons, the C<$type>
571     scalars are read-only: you can not modify them.
572    
573 root 1.150 C<$inode> is the inode number (which might not be exact on systems with 64
574 root 1.155 bit inode numbers and 32 bit perls). This field has unspecified content on
575     systems that do not deliver the inode information.
576 root 1.150
577     =item IO::AIO::READDIR_DIRS_FIRST
578 root 1.148
579     When this flag is set, then the names will be returned in an order where
580     likely directories come first. This is useful when you need to quickly
581     find directories, or you want to find all directories while avoiding to
582     stat() each entry.
583    
584 root 1.149 If the system returns type information in readdir, then this is used
585     to find directories directly. Otherwise, likely directories are files
586     beginning with ".", or otherwise files with no dots, of which files with
587     short names are tried first.
588    
589 root 1.150 =item IO::AIO::READDIR_STAT_ORDER
590 root 1.148
591     When this flag is set, then the names will be returned in an order
592     suitable for stat()'ing each one. That is, when you plan to stat()
593     all files in the given directory, then the returned order will likely
594     be fastest.
595    
596 root 1.150 If both this flag and C<IO::AIO::READDIR_DIRS_FIRST> are specified, then
597     the likely dirs come first, resulting in a less optimal stat order.
598 root 1.148
599 root 1.150 =item IO::AIO::READDIR_FOUND_UNKNOWN
600 root 1.148
601     This flag should not be set when calling C<aio_readdirx>. Instead, it
602     is being set by C<aio_readdirx>, when any of the C<$type>'s found were
603 root 1.150 C<IO::AIO::DT_UNKNOWN>. The absense of this flag therefore indicates that all
604 root 1.148 C<$type>'s are known, which can be used to speed up some algorithms.
605    
606     =back
607 root 1.37
608 root 1.106
609 root 1.98 =item aio_load $path, $data, $callback->($status)
610    
611     This is a composite request that tries to fully load the given file into
612     memory. Status is the same as with aio_read.
613    
614     =cut
615    
616     sub aio_load($$;$) {
617 root 1.123 my ($path, undef, $cb) = @_;
618     my $data = \$_[1];
619 root 1.98
620 root 1.123 my $pri = aioreq_pri;
621     my $grp = aio_group $cb;
622    
623     aioreq_pri $pri;
624     add $grp aio_open $path, O_RDONLY, 0, sub {
625     my $fh = shift
626     or return $grp->result (-1);
627 root 1.98
628     aioreq_pri $pri;
629 root 1.123 add $grp aio_read $fh, 0, (-s $fh), $$data, 0, sub {
630     $grp->result ($_[0]);
631 root 1.98 };
632 root 1.123 };
633 root 1.98
634 root 1.123 $grp
635 root 1.98 }
636    
637 root 1.82 =item aio_copy $srcpath, $dstpath, $callback->($status)
638    
639     Try to copy the I<file> (directories not supported as either source or
640     destination) from C<$srcpath> to C<$dstpath> and call the callback with
641 root 1.165 a status of C<0> (ok) or C<-1> (error, see C<$!>).
642 root 1.82
643 root 1.134 This is a composite request that creates the destination file with
644 root 1.82 mode 0200 and copies the contents of the source file into it using
645     C<aio_sendfile>, followed by restoring atime, mtime, access mode and
646     uid/gid, in that order.
647    
648     If an error occurs, the partial destination file will be unlinked, if
649     possible, except when setting atime, mtime, access mode and uid/gid, where
650     errors are being ignored.
651    
652     =cut
653    
654     sub aio_copy($$;$) {
655 root 1.123 my ($src, $dst, $cb) = @_;
656 root 1.82
657 root 1.123 my $pri = aioreq_pri;
658     my $grp = aio_group $cb;
659 root 1.82
660 root 1.123 aioreq_pri $pri;
661     add $grp aio_open $src, O_RDONLY, 0, sub {
662     if (my $src_fh = $_[0]) {
663 root 1.166 my @stat = stat $src_fh; # hmm, might block over nfs?
664 root 1.95
665 root 1.123 aioreq_pri $pri;
666     add $grp aio_open $dst, O_CREAT | O_WRONLY | O_TRUNC, 0200, sub {
667     if (my $dst_fh = $_[0]) {
668     aioreq_pri $pri;
669     add $grp aio_sendfile $dst_fh, $src_fh, 0, $stat[7], sub {
670     if ($_[0] == $stat[7]) {
671     $grp->result (0);
672     close $src_fh;
673    
674 root 1.147 my $ch = sub {
675     aioreq_pri $pri;
676     add $grp aio_chmod $dst_fh, $stat[2] & 07777, sub {
677     aioreq_pri $pri;
678     add $grp aio_chown $dst_fh, $stat[4], $stat[5], sub {
679     aioreq_pri $pri;
680     add $grp aio_close $dst_fh;
681     }
682     };
683     };
684 root 1.123
685     aioreq_pri $pri;
686 root 1.147 add $grp aio_utime $dst_fh, $stat[8], $stat[9], sub {
687     if ($_[0] < 0 && $! == ENOSYS) {
688     aioreq_pri $pri;
689     add $grp aio_utime $dst, $stat[8], $stat[9], $ch;
690     } else {
691     $ch->();
692     }
693     };
694 root 1.123 } else {
695     $grp->result (-1);
696     close $src_fh;
697     close $dst_fh;
698    
699     aioreq $pri;
700     add $grp aio_unlink $dst;
701     }
702     };
703     } else {
704     $grp->result (-1);
705     }
706     },
707 root 1.82
708 root 1.123 } else {
709     $grp->result (-1);
710     }
711     };
712 root 1.82
713 root 1.123 $grp
714 root 1.82 }
715    
716     =item aio_move $srcpath, $dstpath, $callback->($status)
717    
718     Try to move the I<file> (directories not supported as either source or
719     destination) from C<$srcpath> to C<$dstpath> and call the callback with
720 root 1.165 a status of C<0> (ok) or C<-1> (error, see C<$!>).
721 root 1.82
722 root 1.137 This is a composite request that tries to rename(2) the file first; if
723     rename fails with C<EXDEV>, it copies the file with C<aio_copy> and, if
724     that is successful, unlinks the C<$srcpath>.
725 root 1.82
726     =cut
727    
728     sub aio_move($$;$) {
729 root 1.123 my ($src, $dst, $cb) = @_;
730 root 1.82
731 root 1.123 my $pri = aioreq_pri;
732     my $grp = aio_group $cb;
733 root 1.82
734 root 1.123 aioreq_pri $pri;
735     add $grp aio_rename $src, $dst, sub {
736     if ($_[0] && $! == EXDEV) {
737     aioreq_pri $pri;
738     add $grp aio_copy $src, $dst, sub {
739     $grp->result ($_[0]);
740 root 1.95
741 root 1.123 if (!$_[0]) {
742     aioreq_pri $pri;
743     add $grp aio_unlink $src;
744     }
745     };
746     } else {
747     $grp->result ($_[0]);
748     }
749     };
750 root 1.82
751 root 1.123 $grp
752 root 1.82 }
753    
754 root 1.40 =item aio_scandir $path, $maxreq, $callback->($dirs, $nondirs)
755    
756 root 1.52 Scans a directory (similar to C<aio_readdir>) but additionally tries to
757 root 1.76 efficiently separate the entries of directory C<$path> into two sets of
758     names, directories you can recurse into (directories), and ones you cannot
759     recurse into (everything else, including symlinks to directories).
760 root 1.52
761 root 1.61 C<aio_scandir> is a composite request that creates of many sub requests_
762     C<$maxreq> specifies the maximum number of outstanding aio requests that
763     this function generates. If it is C<< <= 0 >>, then a suitable default
764 root 1.81 will be chosen (currently 4).
765 root 1.40
766     On error, the callback is called without arguments, otherwise it receives
767     two array-refs with path-relative entry names.
768    
769     Example:
770    
771     aio_scandir $dir, 0, sub {
772     my ($dirs, $nondirs) = @_;
773     print "real directories: @$dirs\n";
774     print "everything else: @$nondirs\n";
775     };
776    
777     Implementation notes.
778    
779     The C<aio_readdir> cannot be avoided, but C<stat()>'ing every entry can.
780    
781 root 1.149 If readdir returns file type information, then this is used directly to
782     find directories.
783    
784     Otherwise, after reading the directory, the modification time, size etc.
785     of the directory before and after the readdir is checked, and if they
786     match (and isn't the current time), the link count will be used to decide
787     how many entries are directories (if >= 2). Otherwise, no knowledge of the
788     number of subdirectories will be assumed.
789    
790     Then entries will be sorted into likely directories a non-initial dot
791     currently) and likely non-directories (see C<aio_readdirx>). Then every
792     entry plus an appended C</.> will be C<stat>'ed, likely directories first,
793     in order of their inode numbers. If that succeeds, it assumes that the
794     entry is a directory or a symlink to directory (which will be checked
795 root 1.52 seperately). This is often faster than stat'ing the entry itself because
796     filesystems might detect the type of the entry without reading the inode
797 root 1.149 data (e.g. ext2fs filetype feature), even on systems that cannot return
798     the filetype information on readdir.
799 root 1.52
800     If the known number of directories (link count - 2) has been reached, the
801     rest of the entries is assumed to be non-directories.
802    
803     This only works with certainty on POSIX (= UNIX) filesystems, which
804     fortunately are the vast majority of filesystems around.
805    
806     It will also likely work on non-POSIX filesystems with reduced efficiency
807     as those tend to return 0 or 1 as link counts, which disables the
808     directory counting heuristic.
809 root 1.40
810     =cut
811    
812 root 1.100 sub aio_scandir($$;$) {
813 root 1.123 my ($path, $maxreq, $cb) = @_;
814    
815     my $pri = aioreq_pri;
816 root 1.40
817 root 1.123 my $grp = aio_group $cb;
818 root 1.80
819 root 1.123 $maxreq = 4 if $maxreq <= 0;
820 root 1.55
821 root 1.123 # stat once
822     aioreq_pri $pri;
823     add $grp aio_stat $path, sub {
824     return $grp->result () if $_[0];
825     my $now = time;
826     my $hash1 = join ":", (stat _)[0,1,3,7,9];
827 root 1.40
828 root 1.123 # read the directory entries
829 root 1.80 aioreq_pri $pri;
830 root 1.148 add $grp aio_readdirx $path, READDIR_DIRS_FIRST, sub {
831 root 1.123 my $entries = shift
832     or return $grp->result ();
833 root 1.40
834 root 1.123 # stat the dir another time
835 root 1.80 aioreq_pri $pri;
836 root 1.123 add $grp aio_stat $path, sub {
837     my $hash2 = join ":", (stat _)[0,1,3,7,9];
838 root 1.95
839 root 1.123 my $ndirs;
840 root 1.95
841 root 1.123 # take the slow route if anything looks fishy
842     if ($hash1 ne $hash2 or (stat _)[9] == $now) {
843     $ndirs = -1;
844     } else {
845     # if nlink == 2, we are finished
846 root 1.150 # for non-posix-fs's, we rely on nlink < 2
847 root 1.123 $ndirs = (stat _)[3] - 2
848     or return $grp->result ([], $entries);
849     }
850    
851     my (@dirs, @nondirs);
852 root 1.40
853 root 1.123 my $statgrp = add $grp aio_group sub {
854     $grp->result (\@dirs, \@nondirs);
855     };
856 root 1.40
857 root 1.123 limit $statgrp $maxreq;
858     feed $statgrp sub {
859     return unless @$entries;
860 root 1.150 my $entry = shift @$entries;
861 root 1.40
862 root 1.123 aioreq_pri $pri;
863     add $statgrp aio_stat "$path/$entry/.", sub {
864     if ($_[0] < 0) {
865     push @nondirs, $entry;
866     } else {
867     # need to check for real directory
868     aioreq_pri $pri;
869     add $statgrp aio_lstat "$path/$entry", sub {
870     if (-d _) {
871     push @dirs, $entry;
872    
873     unless (--$ndirs) {
874     push @nondirs, @$entries;
875     feed $statgrp;
876 root 1.74 }
877 root 1.123 } else {
878     push @nondirs, $entry;
879 root 1.40 }
880     }
881 root 1.123 }
882 root 1.74 };
883 root 1.40 };
884     };
885     };
886 root 1.123 };
887 root 1.55
888 root 1.123 $grp
889 root 1.40 }
890    
891 root 1.99 =item aio_rmtree $path, $callback->($status)
892    
893 root 1.100 Delete a directory tree starting (and including) C<$path>, return the
894     status of the final C<rmdir> only. This is a composite request that
895     uses C<aio_scandir> to recurse into and rmdir directories, and unlink
896     everything else.
897 root 1.99
898     =cut
899    
900     sub aio_rmtree;
901 root 1.100 sub aio_rmtree($;$) {
902 root 1.123 my ($path, $cb) = @_;
903 root 1.99
904 root 1.123 my $pri = aioreq_pri;
905     my $grp = aio_group $cb;
906 root 1.99
907 root 1.123 aioreq_pri $pri;
908     add $grp aio_scandir $path, 0, sub {
909     my ($dirs, $nondirs) = @_;
910 root 1.99
911 root 1.123 my $dirgrp = aio_group sub {
912     add $grp aio_rmdir $path, sub {
913     $grp->result ($_[0]);
914 root 1.99 };
915 root 1.123 };
916 root 1.99
917 root 1.123 (aioreq_pri $pri), add $dirgrp aio_rmtree "$path/$_" for @$dirs;
918     (aioreq_pri $pri), add $dirgrp aio_unlink "$path/$_" for @$nondirs;
919 root 1.99
920 root 1.123 add $grp $dirgrp;
921     };
922 root 1.99
923 root 1.123 $grp
924 root 1.99 }
925    
926 root 1.119 =item aio_sync $callback->($status)
927    
928     Asynchronously call sync and call the callback when finished.
929    
930 root 1.40 =item aio_fsync $fh, $callback->($status)
931 root 1.1
932     Asynchronously call fsync on the given filehandle and call the callback
933     with the fsync result code.
934    
935 root 1.40 =item aio_fdatasync $fh, $callback->($status)
936 root 1.1
937     Asynchronously call fdatasync on the given filehandle and call the
938 root 1.26 callback with the fdatasync result code.
939    
940     If this call isn't available because your OS lacks it or it couldn't be
941     detected, it will be emulated by calling C<fsync> instead.
942 root 1.1
943 root 1.142 =item aio_sync_file_range $fh, $offset, $nbytes, $flags, $callback->($status)
944    
945     Sync the data portion of the file specified by C<$offset> and C<$length>
946     to disk (but NOT the metadata), by calling the Linux-specific
947     sync_file_range call. If sync_file_range is not available or it returns
948     ENOSYS, then fdatasync or fsync is being substituted.
949    
950     C<$flags> can be a combination of C<IO::AIO::SYNC_FILE_RANGE_WAIT_BEFORE>,
951     C<IO::AIO::SYNC_FILE_RANGE_WRITE> and
952     C<IO::AIO::SYNC_FILE_RANGE_WAIT_AFTER>: refer to the sync_file_range
953     manpage for details.
954    
955 root 1.120 =item aio_pathsync $path, $callback->($status)
956    
957     This request tries to open, fsync and close the given path. This is a
958 root 1.135 composite request intended to sync directories after directory operations
959 root 1.120 (E.g. rename). This might not work on all operating systems or have any
960     specific effect, but usually it makes sure that directory changes get
961     written to disc. It works for anything that can be opened for read-only,
962     not just directories.
963    
964 root 1.162 Future versions of this function might fall back to other methods when
965     C<fsync> on the directory fails (such as calling C<sync>).
966    
967 root 1.120 Passes C<0> when everything went ok, and C<-1> on error.
968    
969     =cut
970    
971     sub aio_pathsync($;$) {
972 root 1.123 my ($path, $cb) = @_;
973    
974     my $pri = aioreq_pri;
975     my $grp = aio_group $cb;
976 root 1.120
977 root 1.123 aioreq_pri $pri;
978     add $grp aio_open $path, O_RDONLY, 0, sub {
979     my ($fh) = @_;
980     if ($fh) {
981     aioreq_pri $pri;
982     add $grp aio_fsync $fh, sub {
983     $grp->result ($_[0]);
984 root 1.120
985     aioreq_pri $pri;
986 root 1.123 add $grp aio_close $fh;
987     };
988     } else {
989     $grp->result (-1);
990     }
991     };
992 root 1.120
993 root 1.123 $grp
994 root 1.120 }
995    
996 root 1.170 =item aio_msync $scalar, $offset = 0, $length = undef, flags = 0, $callback->($status)
997    
998     This is a rather advanced IO::AIO call, which only works on mmap(2)ed
999     scalars (see the L<Sys::Mmap> or L<Mmap> modules for details on this, note
1000     that the scalar must only be modified in-place while an aio operation is
1001     pending on it).
1002    
1003     It calls the C<msync> function of your OS, if available, with the memory
1004     area starting at C<$offset> in the string and ending C<$length> bytes
1005     later. If C<$length> is negative, counts from the end, and if C<$length>
1006     is C<undef>, then it goes till the end of the string. The flags can be
1007     a combination of C<IO::AIO::MS_ASYNC>, C<IO::AIO::MS_INVALIDATE> and
1008     C<IO::AIO::MS_SYNC>.
1009    
1010     =item aio_mtouch $scalar, $offset = 0, $length = undef, flags = 0, $callback->($status)
1011    
1012     This is a rather advanced IO::AIO call, which works best on mmap(2)ed
1013     scalars.
1014    
1015     It touches (reads or writes) all memory pages in the specified
1016     range inside the scalar. All caveats and parameters are the same
1017     as for C<aio_msync>, above, except for flags, which must be either
1018     C<0> (which reads all pages and ensures they are instantiated) or
1019     C<IO::AIO::MT_MODIFY>, which modifies the memory page s(by reading and
1020     writing an octet from it, which dirties the page).
1021    
1022 root 1.58 =item aio_group $callback->(...)
1023 root 1.54
1024 root 1.55 This is a very special aio request: Instead of doing something, it is a
1025     container for other aio requests, which is useful if you want to bundle
1026 root 1.71 many requests into a single, composite, request with a definite callback
1027     and the ability to cancel the whole request with its subrequests.
1028 root 1.55
1029     Returns an object of class L<IO::AIO::GRP>. See its documentation below
1030     for more info.
1031    
1032     Example:
1033    
1034     my $grp = aio_group sub {
1035     print "all stats done\n";
1036     };
1037    
1038     add $grp
1039     (aio_stat ...),
1040     (aio_stat ...),
1041     ...;
1042    
1043 root 1.63 =item aio_nop $callback->()
1044    
1045     This is a special request - it does nothing in itself and is only used for
1046     side effects, such as when you want to add a dummy request to a group so
1047     that finishing the requests in the group depends on executing the given
1048     code.
1049    
1050 root 1.64 While this request does nothing, it still goes through the execution
1051     phase and still requires a worker thread. Thus, the callback will not
1052     be executed immediately but only after other requests in the queue have
1053     entered their execution phase. This can be used to measure request
1054     latency.
1055    
1056 root 1.71 =item IO::AIO::aio_busy $fractional_seconds, $callback->() *NOT EXPORTED*
1057 root 1.54
1058     Mainly used for debugging and benchmarking, this aio request puts one of
1059     the request workers to sleep for the given time.
1060    
1061 root 1.56 While it is theoretically handy to have simple I/O scheduling requests
1062 root 1.71 like sleep and file handle readable/writable, the overhead this creates is
1063     immense (it blocks a thread for a long time) so do not use this function
1064     except to put your application under artificial I/O pressure.
1065 root 1.56
1066 root 1.5 =back
1067    
1068 root 1.53 =head2 IO::AIO::REQ CLASS
1069 root 1.52
1070     All non-aggregate C<aio_*> functions return an object of this class when
1071     called in non-void context.
1072    
1073     =over 4
1074    
1075 root 1.65 =item cancel $req
1076 root 1.52
1077     Cancels the request, if possible. Has the effect of skipping execution
1078     when entering the B<execute> state and skipping calling the callback when
1079     entering the the B<result> state, but will leave the request otherwise
1080 root 1.151 untouched (with the exception of readdir). That means that requests that
1081     currently execute will not be stopped and resources held by the request
1082     will not be freed prematurely.
1083 root 1.52
1084 root 1.65 =item cb $req $callback->(...)
1085    
1086     Replace (or simply set) the callback registered to the request.
1087    
1088 root 1.52 =back
1089    
1090 root 1.55 =head2 IO::AIO::GRP CLASS
1091    
1092     This class is a subclass of L<IO::AIO::REQ>, so all its methods apply to
1093     objects of this class, too.
1094    
1095     A IO::AIO::GRP object is a special request that can contain multiple other
1096     aio requests.
1097    
1098     You create one by calling the C<aio_group> constructing function with a
1099     callback that will be called when all contained requests have entered the
1100     C<done> state:
1101    
1102     my $grp = aio_group sub {
1103     print "all requests are done\n";
1104     };
1105    
1106     You add requests by calling the C<add> method with one or more
1107     C<IO::AIO::REQ> objects:
1108    
1109     $grp->add (aio_unlink "...");
1110    
1111 root 1.58 add $grp aio_stat "...", sub {
1112     $_[0] or return $grp->result ("error");
1113    
1114     # add another request dynamically, if first succeeded
1115     add $grp aio_open "...", sub {
1116     $grp->result ("ok");
1117     };
1118     };
1119 root 1.55
1120     This makes it very easy to create composite requests (see the source of
1121     C<aio_move> for an application) that work and feel like simple requests.
1122    
1123 root 1.62 =over 4
1124    
1125     =item * The IO::AIO::GRP objects will be cleaned up during calls to
1126 root 1.55 C<IO::AIO::poll_cb>, just like any other request.
1127    
1128 root 1.62 =item * They can be canceled like any other request. Canceling will cancel not
1129 root 1.59 only the request itself, but also all requests it contains.
1130 root 1.55
1131 root 1.62 =item * They can also can also be added to other IO::AIO::GRP objects.
1132 root 1.55
1133 root 1.62 =item * You must not add requests to a group from within the group callback (or
1134 root 1.60 any later time).
1135    
1136 root 1.62 =back
1137    
1138 root 1.55 Their lifetime, simplified, looks like this: when they are empty, they
1139     will finish very quickly. If they contain only requests that are in the
1140     C<done> state, they will also finish. Otherwise they will continue to
1141     exist.
1142    
1143 root 1.133 That means after creating a group you have some time to add requests
1144     (precisely before the callback has been invoked, which is only done within
1145     the C<poll_cb>). And in the callbacks of those requests, you can add
1146     further requests to the group. And only when all those requests have
1147     finished will the the group itself finish.
1148 root 1.57
1149 root 1.55 =over 4
1150    
1151 root 1.65 =item add $grp ...
1152    
1153 root 1.55 =item $grp->add (...)
1154    
1155 root 1.57 Add one or more requests to the group. Any type of L<IO::AIO::REQ> can
1156     be added, including other groups, as long as you do not create circular
1157     dependencies.
1158    
1159     Returns all its arguments.
1160 root 1.55
1161 root 1.74 =item $grp->cancel_subs
1162    
1163     Cancel all subrequests and clears any feeder, but not the group request
1164     itself. Useful when you queued a lot of events but got a result early.
1165    
1166 root 1.168 The group request will finish normally (you cannot add requests to the
1167     group).
1168    
1169 root 1.58 =item $grp->result (...)
1170    
1171     Set the result value(s) that will be passed to the group callback when all
1172 root 1.120 subrequests have finished and set the groups errno to the current value
1173 root 1.80 of errno (just like calling C<errno> without an error number). By default,
1174     no argument will be passed and errno is zero.
1175    
1176     =item $grp->errno ([$errno])
1177    
1178     Sets the group errno value to C<$errno>, or the current value of errno
1179     when the argument is missing.
1180    
1181     Every aio request has an associated errno value that is restored when
1182     the callback is invoked. This method lets you change this value from its
1183     default (0).
1184    
1185     Calling C<result> will also set errno, so make sure you either set C<$!>
1186     before the call to C<result>, or call c<errno> after it.
1187 root 1.58
1188 root 1.65 =item feed $grp $callback->($grp)
1189 root 1.60
1190     Sets a feeder/generator on this group: every group can have an attached
1191     generator that generates requests if idle. The idea behind this is that,
1192     although you could just queue as many requests as you want in a group,
1193 root 1.139 this might starve other requests for a potentially long time. For example,
1194     C<aio_scandir> might generate hundreds of thousands C<aio_stat> requests,
1195     delaying any later requests for a long time.
1196 root 1.60
1197     To avoid this, and allow incremental generation of requests, you can
1198     instead a group and set a feeder on it that generates those requests. The
1199 root 1.68 feed callback will be called whenever there are few enough (see C<limit>,
1200 root 1.60 below) requests active in the group itself and is expected to queue more
1201     requests.
1202    
1203 root 1.68 The feed callback can queue as many requests as it likes (i.e. C<add> does
1204     not impose any limits).
1205 root 1.60
1206 root 1.65 If the feed does not queue more requests when called, it will be
1207 root 1.60 automatically removed from the group.
1208    
1209 root 1.138 If the feed limit is C<0> when this method is called, it will be set to
1210     C<2> automatically.
1211 root 1.60
1212     Example:
1213    
1214     # stat all files in @files, but only ever use four aio requests concurrently:
1215    
1216     my $grp = aio_group sub { print "finished\n" };
1217 root 1.68 limit $grp 4;
1218 root 1.65 feed $grp sub {
1219 root 1.60 my $file = pop @files
1220     or return;
1221    
1222     add $grp aio_stat $file, sub { ... };
1223 root 1.65 };
1224 root 1.60
1225 root 1.68 =item limit $grp $num
1226 root 1.60
1227     Sets the feeder limit for the group: The feeder will be called whenever
1228     the group contains less than this many requests.
1229    
1230     Setting the limit to C<0> will pause the feeding process.
1231    
1232 root 1.138 The default value for the limit is C<0>, but note that setting a feeder
1233     automatically bumps it up to C<2>.
1234    
1235 root 1.55 =back
1236    
1237 root 1.5 =head2 SUPPORT FUNCTIONS
1238    
1239 root 1.86 =head3 EVENT PROCESSING AND EVENT LOOP INTEGRATION
1240    
1241 root 1.5 =over 4
1242    
1243     =item $fileno = IO::AIO::poll_fileno
1244    
1245 root 1.20 Return the I<request result pipe file descriptor>. This filehandle must be
1246 root 1.156 polled for reading by some mechanism outside this module (e.g. EV, Glib,
1247     select and so on, see below or the SYNOPSIS). If the pipe becomes readable
1248     you have to call C<poll_cb> to check the results.
1249 root 1.5
1250     See C<poll_cb> for an example.
1251    
1252     =item IO::AIO::poll_cb
1253    
1254 root 1.86 Process some outstanding events on the result pipe. You have to call this
1255 root 1.128 regularly. Returns C<0> if all events could be processed, or C<-1> if it
1256     returned earlier for whatever reason. Returns immediately when no events
1257     are outstanding. The amount of events processed depends on the settings of
1258     C<IO::AIO::max_poll_req> and C<IO::AIO::max_poll_time>.
1259 root 1.5
1260 root 1.78 If not all requests were processed for whatever reason, the filehandle
1261 root 1.128 will still be ready when C<poll_cb> returns, so normally you don't have to
1262     do anything special to have it called later.
1263 root 1.78
1264 root 1.20 Example: Install an Event watcher that automatically calls
1265 root 1.156 IO::AIO::poll_cb with high priority (more examples can be found in the
1266     SYNOPSIS section, at the top of this document):
1267 root 1.5
1268     Event->io (fd => IO::AIO::poll_fileno,
1269     poll => 'r', async => 1,
1270     cb => \&IO::AIO::poll_cb);
1271    
1272 root 1.86 =item IO::AIO::max_poll_reqs $nreqs
1273    
1274     =item IO::AIO::max_poll_time $seconds
1275    
1276     These set the maximum number of requests (default C<0>, meaning infinity)
1277     that are being processed by C<IO::AIO::poll_cb> in one call, respectively
1278     the maximum amount of time (default C<0>, meaning infinity) spent in
1279     C<IO::AIO::poll_cb> to process requests (more correctly the mininum amount
1280     of time C<poll_cb> is allowed to use).
1281 root 1.78
1282 root 1.89 Setting C<max_poll_time> to a non-zero value creates an overhead of one
1283     syscall per request processed, which is not normally a problem unless your
1284     callbacks are really really fast or your OS is really really slow (I am
1285     not mentioning Solaris here). Using C<max_poll_reqs> incurs no overhead.
1286    
1287 root 1.86 Setting these is useful if you want to ensure some level of
1288     interactiveness when perl is not fast enough to process all requests in
1289     time.
1290 root 1.78
1291 root 1.86 For interactive programs, values such as C<0.01> to C<0.1> should be fine.
1292 root 1.78
1293     Example: Install an Event watcher that automatically calls
1294 root 1.89 IO::AIO::poll_cb with low priority, to ensure that other parts of the
1295 root 1.78 program get the CPU sometimes even under high AIO load.
1296    
1297 root 1.86 # try not to spend much more than 0.1s in poll_cb
1298     IO::AIO::max_poll_time 0.1;
1299    
1300     # use a low priority so other tasks have priority
1301 root 1.78 Event->io (fd => IO::AIO::poll_fileno,
1302     poll => 'r', nice => 1,
1303 root 1.86 cb => &IO::AIO::poll_cb);
1304 root 1.78
1305 root 1.5 =item IO::AIO::poll_wait
1306    
1307 root 1.93 If there are any outstanding requests and none of them in the result
1308     phase, wait till the result filehandle becomes ready for reading (simply
1309     does a C<select> on the filehandle. This is useful if you want to
1310     synchronously wait for some requests to finish).
1311 root 1.5
1312     See C<nreqs> for an example.
1313    
1314 root 1.86 =item IO::AIO::poll
1315 root 1.5
1316 root 1.86 Waits until some requests have been handled.
1317 root 1.5
1318 root 1.92 Returns the number of requests processed, but is otherwise strictly
1319     equivalent to:
1320 root 1.5
1321     IO::AIO::poll_wait, IO::AIO::poll_cb
1322 root 1.80
1323 root 1.12 =item IO::AIO::flush
1324    
1325     Wait till all outstanding AIO requests have been handled.
1326    
1327 root 1.13 Strictly equivalent to:
1328    
1329     IO::AIO::poll_wait, IO::AIO::poll_cb
1330     while IO::AIO::nreqs;
1331    
1332 root 1.104 =back
1333    
1334 root 1.86 =head3 CONTROLLING THE NUMBER OF THREADS
1335 root 1.13
1336 root 1.105 =over
1337    
1338 root 1.5 =item IO::AIO::min_parallel $nthreads
1339    
1340 root 1.61 Set the minimum number of AIO threads to C<$nthreads>. The current
1341     default is C<8>, which means eight asynchronous operations can execute
1342     concurrently at any one time (the number of outstanding requests,
1343     however, is unlimited).
1344 root 1.5
1345 root 1.34 IO::AIO starts threads only on demand, when an AIO request is queued and
1346 root 1.86 no free thread exists. Please note that queueing up a hundred requests can
1347     create demand for a hundred threads, even if it turns out that everything
1348     is in the cache and could have been processed faster by a single thread.
1349 root 1.34
1350 root 1.61 It is recommended to keep the number of threads relatively low, as some
1351     Linux kernel versions will scale negatively with the number of threads
1352     (higher parallelity => MUCH higher latency). With current Linux 2.6
1353     versions, 4-32 threads should be fine.
1354 root 1.5
1355 root 1.34 Under most circumstances you don't need to call this function, as the
1356     module selects a default that is suitable for low to moderate load.
1357 root 1.5
1358     =item IO::AIO::max_parallel $nthreads
1359    
1360 root 1.34 Sets the maximum number of AIO threads to C<$nthreads>. If more than the
1361     specified number of threads are currently running, this function kills
1362     them. This function blocks until the limit is reached.
1363    
1364     While C<$nthreads> are zero, aio requests get queued but not executed
1365     until the number of threads has been increased again.
1366 root 1.5
1367     This module automatically runs C<max_parallel 0> at program end, to ensure
1368     that all threads are killed and that there are no outstanding requests.
1369    
1370     Under normal circumstances you don't need to call this function.
1371    
1372 root 1.86 =item IO::AIO::max_idle $nthreads
1373    
1374     Limit the number of threads (default: 4) that are allowed to idle (i.e.,
1375     threads that did not get a request to process within 10 seconds). That
1376     means if a thread becomes idle while C<$nthreads> other threads are also
1377     idle, it will free its resources and exit.
1378    
1379     This is useful when you allow a large number of threads (e.g. 100 or 1000)
1380     to allow for extremely high load situations, but want to free resources
1381     under normal circumstances (1000 threads can easily consume 30MB of RAM).
1382    
1383     The default is probably ok in most situations, especially if thread
1384     creation is fast. If thread creation is very slow on your system you might
1385     want to use larger values.
1386    
1387 root 1.123 =item IO::AIO::max_outstanding $maxreqs
1388 root 1.5
1389 root 1.79 This is a very bad function to use in interactive programs because it
1390     blocks, and a bad way to reduce concurrency because it is inexact: Better
1391     use an C<aio_group> together with a feed callback.
1392    
1393     Sets the maximum number of outstanding requests to C<$nreqs>. If you
1394 root 1.113 do queue up more than this number of requests, the next call to the
1395 root 1.79 C<poll_cb> (and C<poll_some> and other functions calling C<poll_cb>)
1396     function will block until the limit is no longer exceeded.
1397    
1398     The default value is very large, so there is no practical limit on the
1399     number of outstanding requests.
1400    
1401     You can still queue as many requests as you want. Therefore,
1402 root 1.123 C<max_outstanding> is mainly useful in simple scripts (with low values) or
1403 root 1.79 as a stop gap to shield against fatal memory overflow (with large values).
1404 root 1.5
1405 root 1.104 =back
1406    
1407 root 1.86 =head3 STATISTICAL INFORMATION
1408    
1409 root 1.104 =over
1410    
1411 root 1.86 =item IO::AIO::nreqs
1412    
1413     Returns the number of requests currently in the ready, execute or pending
1414     states (i.e. for which their callback has not been invoked yet).
1415    
1416     Example: wait till there are no outstanding requests anymore:
1417    
1418     IO::AIO::poll_wait, IO::AIO::poll_cb
1419     while IO::AIO::nreqs;
1420    
1421     =item IO::AIO::nready
1422    
1423     Returns the number of requests currently in the ready state (not yet
1424     executed).
1425    
1426     =item IO::AIO::npending
1427    
1428     Returns the number of requests currently in the pending state (executed,
1429     but not yet processed by poll_cb).
1430    
1431 root 1.5 =back
1432    
1433 root 1.157 =head3 MISCELLANEOUS FUNCTIONS
1434    
1435     IO::AIO implements some functions that might be useful, but are not
1436     asynchronous.
1437    
1438     =over 4
1439    
1440     =item IO::AIO::sendfile $ofh, $ifh, $offset, $count
1441    
1442     Calls the C<eio_sendfile_sync> function, which is like C<aio_sendfile>,
1443     but is blocking (this makes most sense if you know the input data is
1444     likely cached already and the output filehandle is set to non-blocking
1445     operations).
1446    
1447     Returns the number of bytes copied, or C<-1> on error.
1448    
1449     =item IO::AIO::fadvise $fh, $offset, $len, $advice
1450    
1451     Simply calls the C<posix_fadvise> function (see it's
1452     manpage for details). The following advice constants are
1453     avaiable: C<IO::AIO::FADV_NORMAL>, C<IO::AIO::FADV_SEQUENTIAL>,
1454     C<IO::AIO::FADV_RANDOM>, C<IO::AIO::FADV_NOREUSE>,
1455     C<IO::AIO::FADV_WILLNEED>, C<IO::AIO::FADV_DONTNEED>.
1456    
1457     On systems that do not implement C<posix_fadvise>, this function returns
1458     ENOSYS, otherwise the return value of C<posix_fadvise>.
1459    
1460     =back
1461    
1462 root 1.1 =cut
1463    
1464 root 1.61 min_parallel 8;
1465 root 1.1
1466 root 1.95 END { flush }
1467 root 1.82
1468 root 1.1 1;
1469    
1470 root 1.27 =head2 FORK BEHAVIOUR
1471    
1472 root 1.52 This module should do "the right thing" when the process using it forks:
1473    
1474 root 1.34 Before the fork, IO::AIO enters a quiescent state where no requests
1475     can be added in other threads and no results will be processed. After
1476     the fork the parent simply leaves the quiescent state and continues
1477 root 1.72 request/result processing, while the child frees the request/result queue
1478     (so that the requests started before the fork will only be handled in the
1479     parent). Threads will be started on demand until the limit set in the
1480 root 1.34 parent process has been reached again.
1481 root 1.27
1482 root 1.52 In short: the parent will, after a short pause, continue as if fork had
1483     not been called, while the child will act as if IO::AIO has not been used
1484     yet.
1485    
1486 root 1.60 =head2 MEMORY USAGE
1487    
1488 root 1.72 Per-request usage:
1489    
1490     Each aio request uses - depending on your architecture - around 100-200
1491     bytes of memory. In addition, stat requests need a stat buffer (possibly
1492     a few hundred bytes), readdir requires a result buffer and so on. Perl
1493     scalars and other data passed into aio requests will also be locked and
1494     will consume memory till the request has entered the done state.
1495 root 1.60
1496 root 1.111 This is not awfully much, so queuing lots of requests is not usually a
1497 root 1.60 problem.
1498    
1499 root 1.72 Per-thread usage:
1500    
1501     In the execution phase, some aio requests require more memory for
1502     temporary buffers, and each thread requires a stack and other data
1503     structures (usually around 16k-128k, depending on the OS).
1504    
1505     =head1 KNOWN BUGS
1506    
1507 root 1.73 Known bugs will be fixed in the next release.
1508 root 1.60
1509 root 1.1 =head1 SEE ALSO
1510    
1511 root 1.125 L<AnyEvent::AIO> for easy integration into event loops, L<Coro::AIO> for a
1512     more natural syntax.
1513 root 1.1
1514     =head1 AUTHOR
1515    
1516     Marc Lehmann <schmorp@schmorp.de>
1517     http://home.schmorp.de/
1518    
1519     =cut
1520