perlipc typo
[p5sagit/p5-mst-13.2.git] / lib / FileCache.pm
CommitLineData
c07a80fd 1package FileCache;
2
533968fe 3our $VERSION = '1.04_01';
b75c8c73 4
c07a80fd 5=head1 NAME
6
7FileCache - keep more files open than the system permits
8
9=head1 SYNOPSIS
10
c14fc35a 11 use FileCache;
12 # or
13 use FileCache maxopen => 16;
14
ba1df86b 15 cacheout $mode, $path;
16 # or
c07a80fd 17 cacheout $path;
18 print $path @data;
19
ba1df86b 20 $fh = cacheout $mode, $path;
21 # or
22 $fh = cacheout $path;
23 print $fh @data;
c14fc35a 24
c07a80fd 25=head1 DESCRIPTION
26
27The C<cacheout> function will make sure that there's a filehandle open
c14fc35a 28for reading or writing available as the pathname you give it. It
ba1df86b 29automatically closes and re-opens files if you exceed your system's
30maximum number of file descriptors, or the suggested maximum I<maxopen>.
c07a80fd 31
c14fc35a 32=over
7c21b9ea 33
c14fc35a 34=item cacheout EXPR
7c21b9ea 35
c14fc35a 36The 1-argument form of cacheout will open a file for writing (C<< '>' >>)
37on it's first use, and appending (C<<< '>>' >>>) thereafter.
38
ba1df86b 39Returns EXPR on success for convenience. You may neglect the
40return value and manipulate EXPR as the filehandle directly if you prefer.
41
c14fc35a 42=item cacheout MODE, EXPR
43
44The 2-argument form of cacheout will use the supplied mode for the initial
45and subsequent openings. Most valid modes for 3-argument C<open> are supported
46namely; C<< '>' >>, C<< '+>' >>, C<< '<' >>, C<< '<+' >>, C<<< '>>' >>>,
47C< '|-' > and C< '-|' >
48
841bcc4d 49To pass supplemental arguments to a program opened with C< '|-' > or C< '-|' >
50append them to the command string as you would system EXPR.
51
ba1df86b 52Returns EXPR on success for convenience. You may neglect the
53return value and manipulate EXPR as the filehandle directly if you prefer.
7c21b9ea 54
ba1df86b 55=head1 CAVEATS
7c21b9ea 56
dfe3554a 57While it is permissible to C<close> a FileCache managed file,
58do not do so if you are calling C<FileCache::cacheout> from a package other
59than which it was imported, or with another module which overrides C<close>.
60If you must, use C<FileCache::cacheout_close>.
61
533968fe 62Although FileCache can be used with piped opens ('-|' or '|-') doing so is
63strongly discouraged. If FileCache finds it necessary to close and then reopen
64a pipe, the command at the far end of the pipe will be reexecuted - the results
65of performing IO on FileCache'd pipes is unlikely to be what you expect. The
66ability to use FileCache on pipes may be removed in a future release.
67
68FileCache does not store the current file offset if it finds it necessary to
69close a file. When the file is reopened, the offset will be as specified by the
70original C<open> file mode. This could be construed to be a bug.
71
c07a80fd 72=head1 BUGS
73
74F<sys/param.h> lies with its C<NOFILE> define on some systems,
ba1df86b 75so you may have to set I<maxopen> yourself.
76
c07a80fd 77=cut
78
dfe3554a 79require 5.006;
c07a80fd 80use Carp;
42bff5bd 81use Config;
7c21b9ea 82use strict;
c14fc35a 83no strict 'refs';
c14fc35a 84# These are not C<my> for legacy reasons.
85# Previous versions requested the user set $cacheout_maxopen by hand.
86# Some authors fiddled with %saw to overcome the clobber on initial open.
02c473a9 87use vars qw(%saw $cacheout_maxopen @EXPORT);
7c21b9ea 88my %isopen;
89my $cacheout_seq = 0;
90
c14fc35a 91sub import {
92 my ($pkg,%args) = @_;
02c473a9 93
94 # Not using Exporter is naughty.
95 # Also, using caller(1) is just wrong.
96 #$pkg = caller(1);
97 #*{$pkg.'::cacheout'} = \&cacheout;
98 #*{$pkg.'::close'} = \&cacheout_close;
99
100 # Use Exporter. %args are for us, not Exporter.
101 # Make sure to up export_to_level, or we will import into ourselves,
102 # rather than our calling package;
103 use base 'Exporter';
104 @EXPORT = qw[cacheout cacheout_close];
105
106 __PACKAGE__->export_to_level(1);
107 Exporter::import( $pkg );
ba1df86b 108
c14fc35a 109 # Truth is okay here because setting maxopen to 0 would be bad
ba1df86b 110 return $cacheout_maxopen = $args{maxopen} if $args{maxopen};
111 foreach my $param ( '/usr/include/sys/param.h' ){
112 if (open($param, '<', $param)) {
113 local ($_, $.);
114 while (<$param>) {
115 if( /^\s*#\s*define\s+NOFILE\s+(\d+)/ ){
116 $cacheout_maxopen = $1 - 4;
117 close($param);
118 last;
119 }
120 }
121 close $param;
c14fc35a 122 }
c14fc35a 123 }
124 $cacheout_maxopen ||= 16;
125}
126
c07a80fd 127# Open in their package.
c07a80fd 128sub cacheout_open {
ba1df86b 129 return open(*{caller(1) . '::' . $_[1]}, $_[0], $_[1]) && $_[1];
c07a80fd 130}
131
c14fc35a 132# Close in their package.
c07a80fd 133sub cacheout_close {
ba1df86b 134 # Short-circuit in case the filehandle disappeared
135 my $pkg = caller($_[1]||0);
136 fileno(*{$pkg . '::' . $_[0]}) &&
137 CORE::close(*{$pkg . '::' . $_[0]});
138 delete $isopen{$_[0]};
c07a80fd 139}
140
141# But only this sub name is visible to them.
c07a80fd 142sub cacheout {
ba1df86b 143 my($mode, $file, $class, $ret, $ref, $narg);
144 croak "Not enough arguments for cacheout" unless $narg = scalar @_;
145 croak "Too many arguments for cacheout" if $narg > 2;
c14fc35a 146
ba1df86b 147 ($mode, $file) = @_;
148 ($file, $mode) = ($mode, $file) if $narg == 1;
149 croak "Invalid mode for cacheout" if $mode &&
150 ( $mode !~ /^\s*(?:>>|\+?>|\+?<|\|\-|)|\-\|\s*$/ );
841bcc4d 151
ba1df86b 152 # Mode changed?
8ac28360 153 if( $isopen{$file} && ($mode||'>') ne $isopen{$file}->[1] ){
ba1df86b 154 &cacheout_close($file, 1);
155 }
156
157 if( $isopen{$file}) {
158 $ret = $file;
159 $isopen{$file}->[0]++;
160 }
161 else{
c14fc35a 162 if( scalar keys(%isopen) > $cacheout_maxopen -1 ) {
ba1df86b 163 my @lru = sort{ $isopen{$a}->[0] <=> $isopen{$b}->[0] } keys(%isopen);
164 $cacheout_seq = 0;
165 $isopen{$_}->[0] = $cacheout_seq++ for
166 splice(@lru, int($cacheout_maxopen / 3)||$cacheout_maxopen);
167 &cacheout_close($_, 1) for @lru;
c14fc35a 168 }
ba1df86b 169
170 unless( $ref ){
171 $mode ||= $saw{$file} ? '>>' : ($saw{$file}=1, '>');
172 }
173 #XXX should we just return the value from cacheout_open, no croak?
174 $ret = cacheout_open($mode, $file) or croak("Can't create $file: $!");
175
176 $isopen{$file} = [++$cacheout_seq, $mode];
c07a80fd 177 }
ba1df86b 178 return $ret;
c07a80fd 179}
c07a80fd 1801;