ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/README
(Generate patch)

Comparing IO-AIO/README (file contents):
Revision 1.31 by root, Thu May 29 03:35:03 2008 UTC vs.
Revision 1.42 by root, Thu Jan 7 20:25:57 2010 UTC

28 28
29 # AnyEvent integration (EV, Event, Glib, Tk, POE, urxvt, pureperl...) 29 # AnyEvent integration (EV, Event, Glib, Tk, POE, urxvt, pureperl...)
30 use AnyEvent::AIO; 30 use AnyEvent::AIO;
31 31
32 # EV integration 32 # EV integration
33 my $w = EV::io IO::AIO::poll_fileno, EV::READ, \&IO::AIO::poll_cb; 33 my $aio_w = EV::io IO::AIO::poll_fileno, EV::READ, \&IO::AIO::poll_cb;
34 34
35 # Event integration 35 # Event integration
36 Event->io (fd => IO::AIO::poll_fileno, 36 Event->io (fd => IO::AIO::poll_fileno,
37 poll => 'r', 37 poll => 'r',
38 cb => \&IO::AIO::poll_cb); 38 cb => \&IO::AIO::poll_cb);
49 Danga::Socket->AddOtherFds (IO::AIO::poll_fileno => 49 Danga::Socket->AddOtherFds (IO::AIO::poll_fileno =>
50 \&IO::AIO::poll_cb); 50 \&IO::AIO::poll_cb);
51 51
52DESCRIPTION 52DESCRIPTION
53 This module implements asynchronous I/O using whatever means your 53 This module implements asynchronous I/O using whatever means your
54 operating system supports. 54 operating system supports. It is implemented as an interface to "libeio"
55 (<http://software.schmorp.de/pkg/libeio.html>).
55 56
56 Asynchronous means that operations that can normally block your program 57 Asynchronous means that operations that can normally block your program
57 (e.g. reading from disk) will be done asynchronously: the operation will 58 (e.g. reading from disk) will be done asynchronously: the operation will
58 still block, but you can do something else in the meantime. This is 59 still block, but you can do something else in the meantime. This is
59 extremely useful for programs that need to stay interactive even when 60 extremely useful for programs that need to stay interactive even when
64 operations concurrently. 65 operations concurrently.
65 66
66 While most of this works on all types of file descriptors (for example 67 While most of this works on all types of file descriptors (for example
67 sockets), using these functions on file descriptors that support 68 sockets), using these functions on file descriptors that support
68 nonblocking operation (again, sockets, pipes etc.) is very inefficient. 69 nonblocking operation (again, sockets, pipes etc.) is very inefficient.
69 Use an event loop for that (such as the Event module): IO::AIO will 70 Use an event loop for that (such as the EV module): IO::AIO will
70 naturally fit into such an event loop itself. 71 naturally fit into such an event loop itself.
71 72
72 In this version, a number of threads are started that execute your 73 In this version, a number of threads are started that execute your
73 requests and signal their completion. You don't need thread support in 74 requests and signal their completion. You don't need thread support in
74 perl, and the threads created by this module will not be visible to 75 perl, and the threads created by this module will not be visible to
83 it is currently not reentrant in any way, so use appropriate locking 84 it is currently not reentrant in any way, so use appropriate locking
84 yourself, always call "poll_cb" from within the same thread, or never 85 yourself, always call "poll_cb" from within the same thread, or never
85 call "poll_cb" (or other "aio_" functions) recursively. 86 call "poll_cb" (or other "aio_" functions) recursively.
86 87
87 EXAMPLE 88 EXAMPLE
88 This is a simple example that uses the Event module and loads 89 This is a simple example that uses the EV module and loads /etc/passwd
89 /etc/passwd asynchronously: 90 asynchronously:
90 91
91 use Fcntl; 92 use Fcntl;
92 use Event; 93 use EV;
93 use IO::AIO; 94 use IO::AIO;
94 95
95 # register the IO::AIO callback with Event 96 # register the IO::AIO callback with EV
96 Event->io (fd => IO::AIO::poll_fileno, 97 my $aio_w = EV::io IO::AIO::poll_fileno, EV::READ, \&IO::AIO::poll_cb;
97 poll => 'r',
98 cb => \&IO::AIO::poll_cb);
99 98
100 # queue the request to open /etc/passwd 99 # queue the request to open /etc/passwd
101 aio_open "/etc/passwd", O_RDONLY, 0, sub { 100 aio_open "/etc/passwd", O_RDONLY, 0, sub {
102 my $fh = shift 101 my $fh = shift
103 or die "error while opening: $!"; 102 or die "error while opening: $!";
115 114
116 # file contents now in $contents 115 # file contents now in $contents
117 print $contents; 116 print $contents;
118 117
119 # exit event loop and program 118 # exit event loop and program
120 Event::unloop; 119 EV::unloop;
121 }; 120 };
122 }; 121 };
123 122
124 # possibly queue up other requests, or open GUI windows, 123 # possibly queue up other requests, or open GUI windows,
125 # check for sockets etc. etc. 124 # check for sockets etc. etc.
126 125
127 # process events as long as there are some: 126 # process events as long as there are some:
128 Event::loop; 127 EV::loop;
129 128
130REQUEST ANATOMY AND LIFETIME 129REQUEST ANATOMY AND LIFETIME
131 Every "aio_*" function creates a request. which is a C data structure 130 Every "aio_*" function creates a request. which is a C data structure
132 not directly visible to Perl. 131 not directly visible to Perl.
133 132
175 All the "aio_*" calls are more or less thin wrappers around the syscall 174 All the "aio_*" calls are more or less thin wrappers around the syscall
176 with the same name (sans "aio_"). The arguments are similar or 175 with the same name (sans "aio_"). The arguments are similar or
177 identical, and they all accept an additional (and optional) $callback 176 identical, and they all accept an additional (and optional) $callback
178 argument which must be a code reference. This code reference will get 177 argument which must be a code reference. This code reference will get
179 called with the syscall return code (e.g. most syscalls return -1 on 178 called with the syscall return code (e.g. most syscalls return -1 on
180 error, unlike perl, which usually delivers "false") as it's sole 179 error, unlike perl, which usually delivers "false") as its sole argument
181 argument when the given syscall has been executed asynchronously. 180 after the given syscall has been executed asynchronously.
182 181
183 All functions expecting a filehandle keep a copy of the filehandle 182 All functions expecting a filehandle keep a copy of the filehandle
184 internally until the request has finished. 183 internally until the request has finished.
185 184
186 All functions return request objects of type IO::AIO::REQ that allow 185 All functions return request objects of type IO::AIO::REQ that allow
199 the user environment, d) use Glib::filename_from_unicode on unicode 198 the user environment, d) use Glib::filename_from_unicode on unicode
200 filenames or e) use something else to ensure your scalar has the correct 199 filenames or e) use something else to ensure your scalar has the correct
201 contents. 200 contents.
202 201
203 This works, btw. independent of the internal UTF-8 bit, which IO::AIO 202 This works, btw. independent of the internal UTF-8 bit, which IO::AIO
204 handles correctly wether it is set or not. 203 handles correctly whether it is set or not.
205 204
206 $prev_pri = aioreq_pri [$pri] 205 $prev_pri = aioreq_pri [$pri]
207 Returns the priority value that would be used for the next request 206 Returns the priority value that would be used for the next request
208 and, if $pri is given, sets the priority for the next aio request. 207 and, if $pri is given, sets the priority for the next aio request.
209 208
275 Or in other words: the file descriptor will be closed, but it will 274 Or in other words: the file descriptor will be closed, but it will
276 not be free for reuse until the perl filehandle is closed. 275 not be free for reuse until the perl filehandle is closed.
277 276
278 aio_read $fh,$offset,$length, $data,$dataoffset, $callback->($retval) 277 aio_read $fh,$offset,$length, $data,$dataoffset, $callback->($retval)
279 aio_write $fh,$offset,$length, $data,$dataoffset, $callback->($retval) 278 aio_write $fh,$offset,$length, $data,$dataoffset, $callback->($retval)
280 Reads or writes $length bytes from the specified $fh and $offset 279 Reads or writes $length bytes from or to the specified $fh and
281 into the scalar given by $data and offset $dataoffset and calls the 280 $offset into the scalar given by $data and offset $dataoffset and
282 callback without the actual number of bytes read (or -1 on error, 281 calls the callback without the actual number of bytes read (or -1 on
283 just like the syscall). 282 error, just like the syscall).
283
284 "aio_read" will, like "sysread", shrink or grow the $data scalar to
285 offset plus the actual number of bytes read.
284 286
285 If $offset is undefined, then the current file descriptor offset 287 If $offset is undefined, then the current file descriptor offset
286 will be used (and updated), otherwise the file descriptor offset 288 will be used (and updated), otherwise the file descriptor offset
287 will not be changed by these calls. 289 will not be changed by these calls.
288 290
313 315
314 This call tries to make use of a native "sendfile" syscall to 316 This call tries to make use of a native "sendfile" syscall to
315 provide zero-copy operation. For this to work, $out_fh should refer 317 provide zero-copy operation. For this to work, $out_fh should refer
316 to a socket, and $in_fh should refer to mmap'able file. 318 to a socket, and $in_fh should refer to mmap'able file.
317 319
318 If the native sendfile call fails or is not implemented, it will be 320 If a native sendfile cannot be found or it fails with "ENOSYS",
321 "ENOTSUP", "EOPNOTSUPP", "EAFNOSUPPORT", "EPROTOTYPE" or "ENOTSOCK",
319 emulated, so you can call "aio_sendfile" on any type of filehandle 322 it will be emulated, so you can call "aio_sendfile" on any type of
320 regardless of the limitations of the operating system. 323 filehandle regardless of the limitations of the operating system.
321 324
322 Please note, however, that "aio_sendfile" can read more bytes from 325 Please note, however, that "aio_sendfile" can read more bytes from
323 $in_fh than are written, and there is no way to find out how many 326 $in_fh than are written, and there is no way to find out how many
324 bytes have been read from "aio_sendfile" alone, as "aio_sendfile" 327 bytes have been read from "aio_sendfile" alone, as "aio_sendfile"
325 only provides the number of bytes written to $out_fh. Only if the 328 only provides the number of bytes written to $out_fh. Only if the
360 aio_stat "/etc/passwd", sub { 363 aio_stat "/etc/passwd", sub {
361 $_[0] and die "stat failed: $!"; 364 $_[0] and die "stat failed: $!";
362 print "size is ", -s _, "\n"; 365 print "size is ", -s _, "\n";
363 }; 366 };
364 367
368 aio_statvfs $fh_or_path, $callback->($statvfs)
369 Works like the POSIX "statvfs" or "fstatvfs" syscalls, depending on
370 whether a file handle or path was passed.
371
372 On success, the callback is passed a hash reference with the
373 following members: "bsize", "frsize", "blocks", "bfree", "bavail",
374 "files", "ffree", "favail", "fsid", "flag" and "namemax". On
375 failure, "undef" is passed.
376
377 The following POSIX IO::AIO::ST_* constants are defined: "ST_RDONLY"
378 and "ST_NOSUID".
379
380 The following non-POSIX IO::AIO::ST_* flag masks are defined to
381 their correct value when available, or to 0 on systems that do not
382 support them: "ST_NODEV", "ST_NOEXEC", "ST_SYNCHRONOUS",
383 "ST_MANDLOCK", "ST_WRITE", "ST_APPEND", "ST_IMMUTABLE",
384 "ST_NOATIME", "ST_NODIRATIME" and "ST_RELATIME".
385
386 Example: stat "/wd" and dump out the data if successful.
387
388 aio_statvfs "/wd", sub {
389 my $f = $_[0]
390 or die "statvfs: $!";
391
392 use Data::Dumper;
393 say Dumper $f;
394 };
395
396 # result:
397 {
398 bsize => 1024,
399 bfree => 4333064312,
400 blocks => 10253828096,
401 files => 2050765568,
402 flag => 4096,
403 favail => 2042092649,
404 bavail => 4333064312,
405 ffree => 2042092649,
406 namemax => 255,
407 frsize => 1024,
408 fsid => 1810
409 }
410
365 aio_utime $fh_or_path, $atime, $mtime, $callback->($status) 411 aio_utime $fh_or_path, $atime, $mtime, $callback->($status)
366 Works like perl's "utime" function (including the special case of 412 Works like perl's "utime" function (including the special case of
367 $atime and $mtime being undef). Fractional times are supported if 413 $atime and $mtime being undef). Fractional times are supported if
368 the underlying syscalls support them. 414 the underlying syscalls support them.
369 415
439 aio_readdir $pathname, $callback->($entries) 485 aio_readdir $pathname, $callback->($entries)
440 Unlike the POSIX call of the same name, "aio_readdir" reads an 486 Unlike the POSIX call of the same name, "aio_readdir" reads an
441 entire directory (i.e. opendir + readdir + closedir). The entries 487 entire directory (i.e. opendir + readdir + closedir). The entries
442 will not be sorted, and will NOT include the "." and ".." entries. 488 will not be sorted, and will NOT include the "." and ".." entries.
443 489
444 The callback a single argument which is either "undef" or an 490 The callback is passed a single argument which is either "undef" or
445 array-ref with the filenames. 491 an array-ref with the filenames.
492
493 aio_readdirx $pathname, $flags, $callback->($entries, $flags)
494 Quite similar to "aio_readdir", but the $flags argument allows to
495 tune behaviour and output format. In case of an error, $entries will
496 be "undef".
497
498 The flags are a combination of the following constants, ORed
499 together (the flags will also be passed to the callback, possibly
500 modified):
501
502 IO::AIO::READDIR_DENTS
503 When this flag is off, then the callback gets an arrayref with
504 of names only (as with "aio_readdir"), otherwise it gets an
505 arrayref with "[$name, $type, $inode]" arrayrefs, each
506 describing a single directory entry in more detail.
507
508 $name is the name of the entry.
509
510 $type is one of the "IO::AIO::DT_xxx" constants:
511
512 "IO::AIO::DT_UNKNOWN", "IO::AIO::DT_FIFO", "IO::AIO::DT_CHR",
513 "IO::AIO::DT_DIR", "IO::AIO::DT_BLK", "IO::AIO::DT_REG",
514 "IO::AIO::DT_LNK", "IO::AIO::DT_SOCK", "IO::AIO::DT_WHT".
515
516 "IO::AIO::DT_UNKNOWN" means just that: readdir does not know. If
517 you need to know, you have to run stat yourself. Also, for speed
518 reasons, the $type scalars are read-only: you can not modify
519 them.
520
521 $inode is the inode number (which might not be exact on systems
522 with 64 bit inode numbers and 32 bit perls). This field has
523 unspecified content on systems that do not deliver the inode
524 information.
525
526 IO::AIO::READDIR_DIRS_FIRST
527 When this flag is set, then the names will be returned in an
528 order where likely directories come first. This is useful when
529 you need to quickly find directories, or you want to find all
530 directories while avoiding to stat() each entry.
531
532 If the system returns type information in readdir, then this is
533 used to find directories directly. Otherwise, likely directories
534 are files beginning with ".", or otherwise files with no dots,
535 of which files with short names are tried first.
536
537 IO::AIO::READDIR_STAT_ORDER
538 When this flag is set, then the names will be returned in an
539 order suitable for stat()'ing each one. That is, when you plan
540 to stat() all files in the given directory, then the returned
541 order will likely be fastest.
542
543 If both this flag and "IO::AIO::READDIR_DIRS_FIRST" are
544 specified, then the likely dirs come first, resulting in a less
545 optimal stat order.
546
547 IO::AIO::READDIR_FOUND_UNKNOWN
548 This flag should not be set when calling "aio_readdirx".
549 Instead, it is being set by "aio_readdirx", when any of the
550 $type's found were "IO::AIO::DT_UNKNOWN". The absense of this
551 flag therefore indicates that all $type's are known, which can
552 be used to speed up some algorithms.
446 553
447 aio_load $path, $data, $callback->($status) 554 aio_load $path, $data, $callback->($status)
448 This is a composite request that tries to fully load the given file 555 This is a composite request that tries to fully load the given file
449 into memory. Status is the same as with aio_read. 556 into memory. Status is the same as with aio_read.
450 557
451 aio_copy $srcpath, $dstpath, $callback->($status) 558 aio_copy $srcpath, $dstpath, $callback->($status)
452 Try to copy the *file* (directories not supported as either source 559 Try to copy the *file* (directories not supported as either source
453 or destination) from $srcpath to $dstpath and call the callback with 560 or destination) from $srcpath to $dstpath and call the callback with
454 the 0 (error) or -1 ok. 561 a status of 0 (ok) or -1 (error, see $!).
455 562
456 This is a composite request that it creates the destination file 563 This is a composite request that creates the destination file with
457 with mode 0200 and copies the contents of the source file into it 564 mode 0200 and copies the contents of the source file into it using
458 using "aio_sendfile", followed by restoring atime, mtime, access 565 "aio_sendfile", followed by restoring atime, mtime, access mode and
459 mode and uid/gid, in that order. 566 uid/gid, in that order.
460 567
461 If an error occurs, the partial destination file will be unlinked, 568 If an error occurs, the partial destination file will be unlinked,
462 if possible, except when setting atime, mtime, access mode and 569 if possible, except when setting atime, mtime, access mode and
463 uid/gid, where errors are being ignored. 570 uid/gid, where errors are being ignored.
464 571
465 aio_move $srcpath, $dstpath, $callback->($status) 572 aio_move $srcpath, $dstpath, $callback->($status)
466 Try to move the *file* (directories not supported as either source 573 Try to move the *file* (directories not supported as either source
467 or destination) from $srcpath to $dstpath and call the callback with 574 or destination) from $srcpath to $dstpath and call the callback with
468 the 0 (error) or -1 ok. 575 a status of 0 (ok) or -1 (error, see $!).
469 576
470 This is a composite request that tries to rename(2) the file first. 577 This is a composite request that tries to rename(2) the file first;
471 If rename files with "EXDEV", it copies the file with "aio_copy" 578 if rename fails with "EXDEV", it copies the file with "aio_copy"
472 and, if that is successful, unlinking the $srcpath. 579 and, if that is successful, unlinks the $srcpath.
473 580
474 aio_scandir $path, $maxreq, $callback->($dirs, $nondirs) 581 aio_scandir $path, $maxreq, $callback->($dirs, $nondirs)
475 Scans a directory (similar to "aio_readdir") but additionally tries 582 Scans a directory (similar to "aio_readdir") but additionally tries
476 to efficiently separate the entries of directory $path into two sets 583 to efficiently separate the entries of directory $path into two sets
477 of names, directories you can recurse into (directories), and ones 584 of names, directories you can recurse into (directories), and ones
497 Implementation notes. 604 Implementation notes.
498 605
499 The "aio_readdir" cannot be avoided, but "stat()"'ing every entry 606 The "aio_readdir" cannot be avoided, but "stat()"'ing every entry
500 can. 607 can.
501 608
609 If readdir returns file type information, then this is used directly
610 to find directories.
611
502 After reading the directory, the modification time, size etc. of the 612 Otherwise, after reading the directory, the modification time, size
503 directory before and after the readdir is checked, and if they match 613 etc. of the directory before and after the readdir is checked, and
504 (and isn't the current time), the link count will be used to decide 614 if they match (and isn't the current time), the link count will be
505 how many entries are directories (if >= 2). Otherwise, no knowledge 615 used to decide how many entries are directories (if >= 2).
506 of the number of subdirectories will be assumed. 616 Otherwise, no knowledge of the number of subdirectories will be
617 assumed.
507 618
508 Then entries will be sorted into likely directories (everything 619 Then entries will be sorted into likely directories a non-initial
509 without a non-initial dot currently) and likely non-directories 620 dot currently) and likely non-directories (see "aio_readdirx"). Then
510 (everything else). Then every entry plus an appended "/." will be 621 every entry plus an appended "/." will be "stat"'ed, likely
511 "stat"'ed, likely directories first. If that succeeds, it assumes 622 directories first, in order of their inode numbers. If that
512 that the entry is a directory or a symlink to directory (which will 623 succeeds, it assumes that the entry is a directory or a symlink to
513 be checked seperately). This is often faster than stat'ing the entry 624 directory (which will be checked seperately). This is often faster
514 itself because filesystems might detect the type of the entry 625 than stat'ing the entry itself because filesystems might detect the
515 without reading the inode data (e.g. ext2fs filetype feature). 626 type of the entry without reading the inode data (e.g. ext2fs
627 filetype feature), even on systems that cannot return the filetype
628 information on readdir.
516 629
517 If the known number of directories (link count - 2) has been 630 If the known number of directories (link count - 2) has been
518 reached, the rest of the entries is assumed to be non-directories. 631 reached, the rest of the entries is assumed to be non-directories.
519 632
520 This only works with certainty on POSIX (= UNIX) filesystems, which 633 This only works with certainty on POSIX (= UNIX) filesystems, which
542 callback with the fdatasync result code. 655 callback with the fdatasync result code.
543 656
544 If this call isn't available because your OS lacks it or it couldn't 657 If this call isn't available because your OS lacks it or it couldn't
545 be detected, it will be emulated by calling "fsync" instead. 658 be detected, it will be emulated by calling "fsync" instead.
546 659
660 aio_sync_file_range $fh, $offset, $nbytes, $flags, $callback->($status)
661 Sync the data portion of the file specified by $offset and $length
662 to disk (but NOT the metadata), by calling the Linux-specific
663 sync_file_range call. If sync_file_range is not available or it
664 returns ENOSYS, then fdatasync or fsync is being substituted.
665
666 $flags can be a combination of
667 "IO::AIO::SYNC_FILE_RANGE_WAIT_BEFORE",
668 "IO::AIO::SYNC_FILE_RANGE_WRITE" and
669 "IO::AIO::SYNC_FILE_RANGE_WAIT_AFTER": refer to the sync_file_range
670 manpage for details.
671
547 aio_pathsync $path, $callback->($status) 672 aio_pathsync $path, $callback->($status)
548 This request tries to open, fsync and close the given path. This is 673 This request tries to open, fsync and close the given path. This is
549 a composite request intended tosync directories after directory 674 a composite request intended to sync directories after directory
550 operations (E.g. rename). This might not work on all operating 675 operations (E.g. rename). This might not work on all operating
551 systems or have any specific effect, but usually it makes sure that 676 systems or have any specific effect, but usually it makes sure that
552 directory changes get written to disc. It works for anything that 677 directory changes get written to disc. It works for anything that
553 can be opened for read-only, not just directories. 678 can be opened for read-only, not just directories.
554 679
680 Future versions of this function might fall back to other methods
681 when "fsync" on the directory fails (such as calling "sync").
682
555 Passes 0 when everything went ok, and -1 on error. 683 Passes 0 when everything went ok, and -1 on error.
684
685 aio_msync $scalar, $offset = 0, $length = undef, flags = 0,
686 $callback->($status)
687 This is a rather advanced IO::AIO call, which only works on
688 mmap(2)ed scalars (see the Sys::Mmap or Mmap modules for details on
689 this, note that the scalar must only be modified in-place while an
690 aio operation is pending on it).
691
692 It calls the "msync" function of your OS, if available, with the
693 memory area starting at $offset in the string and ending $length
694 bytes later. If $length is negative, counts from the end, and if
695 $length is "undef", then it goes till the end of the string. The
696 flags can be a combination of "IO::AIO::MS_ASYNC",
697 "IO::AIO::MS_INVALIDATE" and "IO::AIO::MS_SYNC".
698
699 aio_mtouch $scalar, $offset = 0, $length = undef, flags = 0,
700 $callback->($status)
701 This is a rather advanced IO::AIO call, which works best on
702 mmap(2)ed scalars.
703
704 It touches (reads or writes) all memory pages in the specified range
705 inside the scalar. All caveats and parameters are the same as for
706 "aio_msync", above, except for flags, which must be either 0 (which
707 reads all pages and ensures they are instantiated) or
708 "IO::AIO::MT_MODIFY", which modifies the memory page s(by reading
709 and writing an octet from it, which dirties the page).
556 710
557 aio_group $callback->(...) 711 aio_group $callback->(...)
558 This is a very special aio request: Instead of doing something, it 712 This is a very special aio request: Instead of doing something, it
559 is a container for other aio requests, which is useful if you want 713 is a container for other aio requests, which is useful if you want
560 to bundle many requests into a single, composite, request with a 714 to bundle many requests into a single, composite, request with a
603 757
604 cancel $req 758 cancel $req
605 Cancels the request, if possible. Has the effect of skipping 759 Cancels the request, if possible. Has the effect of skipping
606 execution when entering the execute state and skipping calling the 760 execution when entering the execute state and skipping calling the
607 callback when entering the the result state, but will leave the 761 callback when entering the the result state, but will leave the
608 request otherwise untouched. That means that requests that currently 762 request otherwise untouched (with the exception of readdir). That
609 execute will not be stopped and resources held by the request will 763 means that requests that currently execute will not be stopped and
610 not be freed prematurely. 764 resources held by the request will not be freed prematurely.
611 765
612 cb $req $callback->(...) 766 cb $req $callback->(...)
613 Replace (or simply set) the callback registered to the request. 767 Replace (or simply set) the callback registered to the request.
614 768
615 IO::AIO::GRP CLASS 769 IO::AIO::GRP CLASS
658 Their lifetime, simplified, looks like this: when they are empty, they 812 Their lifetime, simplified, looks like this: when they are empty, they
659 will finish very quickly. If they contain only requests that are in the 813 will finish very quickly. If they contain only requests that are in the
660 "done" state, they will also finish. Otherwise they will continue to 814 "done" state, they will also finish. Otherwise they will continue to
661 exist. 815 exist.
662 816
663 That means after creating a group you have some time to add requests. 817 That means after creating a group you have some time to add requests
664 And in the callbacks of those requests, you can add further requests to 818 (precisely before the callback has been invoked, which is only done
665 the group. And only when all those requests have finished will the the 819 within the "poll_cb"). And in the callbacks of those requests, you can
666 group itself finish. 820 add further requests to the group. And only when all those requests have
821 finished will the the group itself finish.
667 822
668 add $grp ... 823 add $grp ...
669 $grp->add (...) 824 $grp->add (...)
670 Add one or more requests to the group. Any type of IO::AIO::REQ can 825 Add one or more requests to the group. Any type of IO::AIO::REQ can
671 be added, including other groups, as long as you do not create 826 be added, including other groups, as long as you do not create
675 830
676 $grp->cancel_subs 831 $grp->cancel_subs
677 Cancel all subrequests and clears any feeder, but not the group 832 Cancel all subrequests and clears any feeder, but not the group
678 request itself. Useful when you queued a lot of events but got a 833 request itself. Useful when you queued a lot of events but got a
679 result early. 834 result early.
835
836 The group request will finish normally (you cannot add requests to
837 the group).
680 838
681 $grp->result (...) 839 $grp->result (...)
682 Set the result value(s) that will be passed to the group callback 840 Set the result value(s) that will be passed to the group callback
683 when all subrequests have finished and set the groups errno to the 841 when all subrequests have finished and set the groups errno to the
684 current value of errno (just like calling "errno" without an error 842 current value of errno (just like calling "errno" without an error
714 does not impose any limits). 872 does not impose any limits).
715 873
716 If the feed does not queue more requests when called, it will be 874 If the feed does not queue more requests when called, it will be
717 automatically removed from the group. 875 automatically removed from the group.
718 876
719 If the feed limit is 0, it will be set to 2 automatically. 877 If the feed limit is 0 when this method is called, it will be set to
878 2 automatically.
720 879
721 Example: 880 Example:
722 881
723 # stat all files in @files, but only ever use four aio requests concurrently: 882 # stat all files in @files, but only ever use four aio requests concurrently:
724 883
735 Sets the feeder limit for the group: The feeder will be called 894 Sets the feeder limit for the group: The feeder will be called
736 whenever the group contains less than this many requests. 895 whenever the group contains less than this many requests.
737 896
738 Setting the limit to 0 will pause the feeding process. 897 Setting the limit to 0 will pause the feeding process.
739 898
899 The default value for the limit is 0, but note that setting a feeder
900 automatically bumps it up to 2.
901
740 SUPPORT FUNCTIONS 902 SUPPORT FUNCTIONS
741 EVENT PROCESSING AND EVENT LOOP INTEGRATION 903 EVENT PROCESSING AND EVENT LOOP INTEGRATION
742 $fileno = IO::AIO::poll_fileno 904 $fileno = IO::AIO::poll_fileno
743 Return the *request result pipe file descriptor*. This filehandle 905 Return the *request result pipe file descriptor*. This filehandle
744 must be polled for reading by some mechanism outside this module 906 must be polled for reading by some mechanism outside this module
745 (e.g. Event or select, see below or the SYNOPSIS). If the pipe 907 (e.g. EV, Glib, select and so on, see below or the SYNOPSIS). If the
746 becomes readable you have to call "poll_cb" to check the results. 908 pipe becomes readable you have to call "poll_cb" to check the
909 results.
747 910
748 See "poll_cb" for an example. 911 See "poll_cb" for an example.
749 912
750 IO::AIO::poll_cb 913 IO::AIO::poll_cb
751 Process some outstanding events on the result pipe. You have to call 914 Process some outstanding events on the result pipe. You have to call
758 If not all requests were processed for whatever reason, the 921 If not all requests were processed for whatever reason, the
759 filehandle will still be ready when "poll_cb" returns, so normally 922 filehandle will still be ready when "poll_cb" returns, so normally
760 you don't have to do anything special to have it called later. 923 you don't have to do anything special to have it called later.
761 924
762 Example: Install an Event watcher that automatically calls 925 Example: Install an Event watcher that automatically calls
763 IO::AIO::poll_cb with high priority: 926 IO::AIO::poll_cb with high priority (more examples can be found in
927 the SYNOPSIS section, at the top of this document):
764 928
765 Event->io (fd => IO::AIO::poll_fileno, 929 Event->io (fd => IO::AIO::poll_fileno,
766 poll => 'r', async => 1, 930 poll => 'r', async => 1,
767 cb => \&IO::AIO::poll_cb); 931 cb => \&IO::AIO::poll_cb);
768 932
908 1072
909 IO::AIO::npending 1073 IO::AIO::npending
910 Returns the number of requests currently in the pending state 1074 Returns the number of requests currently in the pending state
911 (executed, but not yet processed by poll_cb). 1075 (executed, but not yet processed by poll_cb).
912 1076
1077 MISCELLANEOUS FUNCTIONS
1078 IO::AIO implements some functions that might be useful, but are not
1079 asynchronous.
1080
1081 IO::AIO::sendfile $ofh, $ifh, $offset, $count
1082 Calls the "eio_sendfile_sync" function, which is like
1083 "aio_sendfile", but is blocking (this makes most sense if you know
1084 the input data is likely cached already and the output filehandle is
1085 set to non-blocking operations).
1086
1087 Returns the number of bytes copied, or -1 on error.
1088
1089 IO::AIO::fadvise $fh, $offset, $len, $advice
1090 Simply calls the "posix_fadvise" function (see it's manpage for
1091 details). The following advice constants are avaiable:
1092 "IO::AIO::FADV_NORMAL", "IO::AIO::FADV_SEQUENTIAL",
1093 "IO::AIO::FADV_RANDOM", "IO::AIO::FADV_NOREUSE",
1094 "IO::AIO::FADV_WILLNEED", "IO::AIO::FADV_DONTNEED".
1095
1096 On systems that do not implement "posix_fadvise", this function
1097 returns ENOSYS, otherwise the return value of "posix_fadvise".
1098
913 FORK BEHAVIOUR 1099 FORK BEHAVIOUR
914 This module should do "the right thing" when the process using it forks: 1100 This module should do "the right thing" when the process using it forks:
915 1101
916 Before the fork, IO::AIO enters a quiescent state where no requests can 1102 Before the fork, IO::AIO enters a quiescent state where no requests can
917 be added in other threads and no results will be processed. After the 1103 be added in other threads and no results will be processed. After the

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines