ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Linux-AIO/AIO.pm
(Generate patch)

Comparing Linux-AIO/AIO.pm (file contents):
Revision 1.13 by root, Wed May 5 10:13:30 2004 UTC vs.
Revision 1.14 by root, Wed May 5 13:54:37 2004 UTC

6 6
7 use Linux::AIO; 7 use Linux::AIO;
8 8
9=head1 DESCRIPTION 9=head1 DESCRIPTION
10 10
11This module implements asynchroneous i/o using the means available to 11This module implements asynchronous i/o using the means available to linux
12linux - clone. It does not hook into the POSIX aio_* functions because 12- clone. It does not hook into the POSIX aio_* functions because linux
13linux does not yet support these in the kernel. Instead, a number of 13does not yet support these in the kernel (and even if, it would only allow
14threads are started that execute your read/writes and signal their 14aio_read and write, not open and stat).
15completion. 15
16Instead, in this module a number of (non-posix) threads are started that
17execute your read/writes and signal their completion. You don't need
18thread support in your libc or perl, and the threads created by this
19module will not be visible to the pthreads library.
16 20
17=over 4 21=over 4
18 22
19=cut 23=cut
20 24
21package Linux::AIO; 25package Linux::AIO;
22 26
23use base 'Exporter'; 27use base 'Exporter';
24 28
25BEGIN { 29BEGIN {
26 $VERSION = 0.2; 30 $VERSION = '1.0';
27 31
28 @EXPORT = qw(aio_read aio_write aio_open aio_close aio_stat aio_lstat); 32 @EXPORT = qw(aio_read aio_write aio_open aio_close aio_stat aio_lstat);
29 @EXPORT_OK = qw(poll_fileno poll_cb min_parallel max_parallel nreqs); 33 @EXPORT_OK = qw(poll_fileno poll_cb min_parallel max_parallel nreqs);
30 34
31 require XSLoader; 35 require XSLoader;
32 XSLoader::load Linux::AIO, $VERSION; 36 XSLoader::load Linux::AIO, $VERSION;
33} 37}
34 38
35=item Linux::AIO::min_parallel($nthreads) 39=item Linux::AIO::min_parallel $nthreads
36 40
37Set the minimum number of AIO threads to $nthreads. You I<have> to call 41Set the minimum number of AIO threads to C<$nthreads>. You I<have> to call
38this function with a positive number at leats once, otherwise no threads 42this function with a positive number at least once, otherwise no threads
39will be started and you aio-operations will seem to hang. 43will be started and you aio-operations will seem to hang.
44
45It is recommended to keep the number of threads low, as many linux
46kernel versions will scale negatively with the number of threads (higher
47parallelity => MUCH higher latency).
40 48
41=item $fileno = Linux::AIO::poll_fileno 49=item $fileno = Linux::AIO::poll_fileno
42 50
43Return the request result pipe filehandle. This filehandle must be polled 51Return the I<request result pipe filehandle>. This filehandle must be
44for reading. If the pipe becomes readable you have to call C<poll_cb>. 52polled for reading by some mechanism outside this module (e.g. Event
53or select, see below). If the pipe becomes readable you have to call
54C<poll_cb> to check the results.
45 55
46=item Linux::AIO::poll_cb 56=item Linux::AIO::poll_cb
47 57
48Process all outstanding events on the result pipe. You have to call this 58Process all outstanding events on the result pipe. You have to call this
49regularly. Returns the number of events processed. 59regularly. Returns the number of events processed. Returns immediately
60when no events are outstanding.
50 61
51You can use Event to multiplex, e.g.: 62You can use Event to multiplex, e.g.:
52 63
53 Event->io(fd => Linux::AIO::poll_fileno, 64 Event->io (fd => Linux::AIO::poll_fileno,
54 poll => 'r', async => 1, 65 poll => 'r', async => 1,
55 cb => \&Linux::AIO::poll_cb ); 66 cb => \&Linux::AIO::poll_cb );
56 67
57 68
58=item Linux::AIO::nreqs 69=item Linux::AIO::nreqs
59 70
60Returns the number of requests currently outstanding. 71Returns the number of requests currently outstanding.
61 72
62=item aio_open($pathname, $flags, $mode, $callback) 73=item aio_open $pathname, $flags, $mode, $callback
63 74
64Asynchronously open or create a file and call the callback with the 75Asynchronously open or create a file and call the callback with the
65filedescriptor. 76filedescriptor (NOT a perl filehandle, sorry for that, but watch out, this
77might change in the future).
66 78
67=item aio_close($fh, $callback) 79=item aio_close $fh, $callback
68 80
69Asynchronously close a file and call the callback with the result code. 81Asynchronously close a file and call the callback with the result code.
70 82
71=item aio_read($fh,$offset,$length, $data,$dataoffset,$callback) 83=item aio_read $fh,$offset,$length, $data,$dataoffset,$callback
72 84
73=item aio_write($fh,$offset,$length, $data,$dataoffset,$callback) 85=item aio_write $fh,$offset,$length, $data,$dataoffset,$callback
74 86
75Reads or writes C<length> bytes from the specified C<fh> and C<offset> 87Reads or writes C<length> bytes from the specified C<fh> and C<offset>
76into the scalar given by C<data> and offset C<dataoffset> and calls the 88into the scalar given by C<data> and offset C<dataoffset> and calls the
77callback without the actual number of bytes read (or undef on error). 89callback without the actual number of bytes read (or C<undef> on error).
78 90
79=item aio_stat($fh_or_path,$callback) 91=item aio_stat $fh_or_path, $callback
80 92
81=item aio_lstat($fh,$callback) 93=item aio_lstat $fh, $callback
82 94
83Works like perl's C<stat> or C<lstat> in void context, i.e. the callback 95Works like perl's C<stat> or C<lstat> in void context. The callback will
84will be called after the stat and the results will be available using 96be called after the stat and the results will be available using C<stat _>
85C<stat _> or C<-s _> etc... 97or C<-s _> etc...
86 98
87Currently, the stats are always 64-bit-stats, i.e. instead of returning an 99Currently, the stats are always 64-bit-stats, i.e. instead of returning an
88error when stat'ing a large file, the results will be silently truncated 100error when stat'ing a large file, the results will be silently truncated
89unless perl itself is compiled with large file support. 101unless perl itself is compiled with large file support.
90 102
98 110
99=back 111=back
100 112
101=head1 BUGS 113=head1 BUGS
102 114
103This module has not yet been extensively tested. Watch out! 115This module has been extensively tested in a large and very busy webserver
116for many years now.
104 117
105 - perl-threads/fork interaction poorly tested.
106 - aio_open gives a fd, but all other functions expect a filehandle. 118 - aio_open gives a fd, but all other functions expect a perl filehandle.
107 119
108=head1 SEE ALSO 120=head1 SEE ALSO
109 121
110L<Coro>. 122L<Coro>.
111 123

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines