=head1 NAME APR::PerlIO -- Perl IO layer for APR =head1 Synopsis # under mod_perl use APR::PerlIO (); sub handler { my $r = shift; die "This Perl build doesn't support PerlIO layers" unless APR::PerlIO::PERLIO_LAYERS_ARE_ENABLED; open my $fh, ">:APR", $filename, $r->pool or die $!; # work with $fh as normal $fh close $fh; return Apache2::Const::OK; } # outside mod_perl % perl -MAPR -MAPR::PerlIO -MAPR::Pool -le \ 'open my $fh, ">:APR", "/tmp/apr", APR::Pool->new or die "$!"; \ print $fh "whoah!"; \ close $fh;' =head1 Description C implements a Perl IO layer using APR's file manipulation API internally. Why do you want to use this? Normally you shouldn't, probably it won't be faster than Perl's default layer. It's only useful when you need to manipulate a filehandle opened at the APR side, while using Perl. Normally you won't call open() with APR layer attribute, but some mod_perl functions will return a filehandle which is internally hooked to APR. But you can use APR Perl IO directly if you want. =head1 Prerequisites Not every Perl will have full C functionality available. Before using the Perl IO APR layer one has to check whether it's supported by the used APR/Perl build. Perl 5.8.x or higher with perlio enabled is required. You can check whether your Perl fits the bill by running: % perl -V:useperlio useperlio='define'; It should say I. If you need to do the checking in the code, there is a special constant provided by C, which can be used as follows: use APR::PerlIO (); die "This Perl build doesn't support PerlIO layers" unless APR::PerlIO::PERLIO_LAYERS_ARE_ENABLED; Notice that loading C won't fail when Perl IO layers aren't available since C provides functionality for Perl builds not supporting Perl IO layers. =head1 Constants =head2 C See L. =head1 API Most of the API is as in normal perl IO with a few nuances listed in the following sections. META: need to rework the exception mechanism here. Current success in using errno ($!) being set (e.g. on open()) is purely accidental and not guaranteed across all platforms and functions. So don't rely on $!. Will use C> for that purpose. =head2 C Open a file via APR Perl IO layer. open my $fh, ">:APR", $filename, $r->pool or die $!; =over 4 =item arg1: C<$fh> ( GLOB filehandle ) The filehandle. =item arg2: C<$mode> ( string ) The mode to open the file, constructed from two sections separated by the C<:> character: the first section is the mode to open the file under (E, E, etc) and the second section must be a string I. For more information refer to the I entry in the I manpage. =item arg3: C<$filename> ( string ) The path to the filename to open =item arg4: C<$p> ( C> ) The pool object to use to allocate APR::PerlIO layer. =item ret: ( integer ) success or failure value (boolean). =item since: 2.0.00 =back =head2 C Sets C<$fh>'s position, just like the C Perl call: seek($fh, $offset, $whence); If C<$offset> is zero, C works normally. However if C<$offset> is non-zero and Perl has been compiled with with large files support (C<-Duselargefiles>), whereas APR wasn't, this function will croak. This is because largefile size C simply cannot fit into a non-largefile size C. To solve the problem, rebuild Perl with C<-Uuselargefiles>. Currently there is no way to force APR to build with large files support. =over 4 =item since: 2.0.00 =back =head1 C API The C API provides functions to convert between Perl IO and APR Perl IO filehandles. META: document these =head1 See Also L. The I, I and I manpages. =head1 Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. =head1 Authors L. =cut