Debian fix from Brendan O'Dea:
[p5sagit/p5-mst-13.2.git] / lib / FileCache.pm
CommitLineData
c07a80fd 1package FileCache;
2
ba1df86b 3our $VERSION = 1.03;
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
ba1df86b 49Returns EXPR on success for convenience. You may neglect the
50return value and manipulate EXPR as the filehandle directly if you prefer.
7c21b9ea 51
ba1df86b 52=head1 CAVEATS
7c21b9ea 53
dfe3554a 54While it is permissible to C<close> a FileCache managed file,
55do not do so if you are calling C<FileCache::cacheout> from a package other
56than which it was imported, or with another module which overrides C<close>.
57If you must, use C<FileCache::cacheout_close>.
58
c07a80fd 59=head1 BUGS
60
61F<sys/param.h> lies with its C<NOFILE> define on some systems,
ba1df86b 62so you may have to set I<maxopen> yourself.
63
64=head1 NOTES
65
66FileCache installs signal handlers for CHLD (a.k.a. CLD) and PIPE in the
67calling package to handle deceased children from 2-arg C<cacheout> with C<'|-'>
68or C<'-|'> I<expediently>. The children would otherwise be reaped eventually,
69unless you terminated before repeatedly calling cacheout.
c07a80fd 70
71=cut
72
dfe3554a 73require 5.006;
c07a80fd 74use Carp;
7c21b9ea 75use strict;
c14fc35a 76no strict 'refs';
c14fc35a 77# These are not C<my> for legacy reasons.
78# Previous versions requested the user set $cacheout_maxopen by hand.
79# Some authors fiddled with %saw to overcome the clobber on initial open.
ba1df86b 80use vars qw(%saw $cacheout_maxopen);
7c21b9ea 81my %isopen;
82my $cacheout_seq = 0;
83
c14fc35a 84sub import {
85 my ($pkg,%args) = @_;
ba1df86b 86 $pkg = caller(1);
87 *{$pkg.'::cacheout'} = \&cacheout;
88 *{$pkg.'::close'} = \&cacheout_close;
89
90 # Reap our children
91 @{"$pkg\::SIG"}{'CLD', 'CHLD', 'PIPE'} = ('IGNORE')x3;
c14fc35a 92
93 # Truth is okay here because setting maxopen to 0 would be bad
ba1df86b 94 return $cacheout_maxopen = $args{maxopen} if $args{maxopen};
95 foreach my $param ( '/usr/include/sys/param.h' ){
96 if (open($param, '<', $param)) {
97 local ($_, $.);
98 while (<$param>) {
99 if( /^\s*#\s*define\s+NOFILE\s+(\d+)/ ){
100 $cacheout_maxopen = $1 - 4;
101 close($param);
102 last;
103 }
104 }
105 close $param;
c14fc35a 106 }
c14fc35a 107 }
108 $cacheout_maxopen ||= 16;
109}
110
c07a80fd 111# Open in their package.
c07a80fd 112sub cacheout_open {
ba1df86b 113 return open(*{caller(1) . '::' . $_[1]}, $_[0], $_[1]) && $_[1];
c07a80fd 114}
115
c14fc35a 116# Close in their package.
c07a80fd 117sub cacheout_close {
ba1df86b 118 # Short-circuit in case the filehandle disappeared
119 my $pkg = caller($_[1]||0);
120 fileno(*{$pkg . '::' . $_[0]}) &&
121 CORE::close(*{$pkg . '::' . $_[0]});
122 delete $isopen{$_[0]};
c07a80fd 123}
124
125# But only this sub name is visible to them.
c07a80fd 126sub cacheout {
ba1df86b 127 my($mode, $file, $class, $ret, $ref, $narg);
128 croak "Not enough arguments for cacheout" unless $narg = scalar @_;
129 croak "Too many arguments for cacheout" if $narg > 2;
c14fc35a 130
ba1df86b 131 ($mode, $file) = @_;
132 ($file, $mode) = ($mode, $file) if $narg == 1;
133 croak "Invalid mode for cacheout" if $mode &&
134 ( $mode !~ /^\s*(?:>>|\+?>|\+?<|\|\-|)|\-\|\s*$/ );
135
136 # Mode changed?
137 if( $isopen{$file} && ($mode||'>') ne $isopen{$file}->[2] ){
138 &cacheout_close($file, 1);
139 }
140
141 if( $isopen{$file}) {
142 $ret = $file;
143 $isopen{$file}->[0]++;
144 }
145 else{
c14fc35a 146 if( scalar keys(%isopen) > $cacheout_maxopen -1 ) {
ba1df86b 147 my @lru = sort{ $isopen{$a}->[0] <=> $isopen{$b}->[0] } keys(%isopen);
148 $cacheout_seq = 0;
149 $isopen{$_}->[0] = $cacheout_seq++ for
150 splice(@lru, int($cacheout_maxopen / 3)||$cacheout_maxopen);
151 &cacheout_close($_, 1) for @lru;
c14fc35a 152 }
ba1df86b 153
154 unless( $ref ){
155 $mode ||= $saw{$file} ? '>>' : ($saw{$file}=1, '>');
156 }
157 #XXX should we just return the value from cacheout_open, no croak?
158 $ret = cacheout_open($mode, $file) or croak("Can't create $file: $!");
159
160 $isopen{$file} = [++$cacheout_seq, $mode];
c07a80fd 161 }
ba1df86b 162 return $ret;
c07a80fd 163}
c07a80fd 1641;