Update automake to version 1.10
[msysgit.git] / share / automake-1.10 / Automake / XFile.pm
blob799ad8d0418594564f7d26e02870fa3f3c8665e8
1 # Copyright (C) 2001, 2003, 2004, 2006 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
6 # any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 # 02110-1301, USA.
18 # Written by Akim Demaille <akim@freefriends.org>.
20 ###############################################################
21 # The main copy of this file is in Automake's CVS repository. #
22 # Updates should be sent to automake-patches@gnu.org. #
23 ###############################################################
25 package Automake::XFile;
27 =head1 NAME
29 Automake::XFile - supply object methods for filehandles with error handling
31 =head1 SYNOPSIS
33 use Automake::XFile;
35 $fh = new Automake::XFile;
36 $fh->open ("< file");
37 # No need to check $FH: we died if open failed.
38 print <$fh>;
39 $fh->close;
40 # No need to check the return value of close: we died if it failed.
42 $fh = new Automake::XFile "> file";
43 # No need to check $FH: we died if new failed.
44 print $fh "bar\n";
45 $fh->close;
47 $fh = new Automake::XFile "file", "r";
48 # No need to check $FH: we died if new failed.
49 defined $fh
50 print <$fh>;
51 undef $fh; # automatically closes the file and checks for errors.
53 $fh = new Automake::XFile "file", O_WRONLY | O_APPEND;
54 # No need to check $FH: we died if new failed.
55 print $fh "corge\n";
57 $pos = $fh->getpos;
58 $fh->setpos ($pos);
60 undef $fh; # automatically closes the file and checks for errors.
62 autoflush STDOUT 1;
64 =head1 DESCRIPTION
66 C<Automake::XFile> inherits from C<IO::File>. It provides the method
67 C<name> returning the file name. It provides dying version of the
68 methods C<close>, C<lock> (corresponding to C<flock>), C<new>,
69 C<open>, C<seek>, and C<trunctate>. It also overrides the C<getline>
70 and C<getlines> methods to translate C<\r\n> to C<\n>.
72 =head1 SEE ALSO
74 L<perlfunc>,
75 L<perlop/"I/O Operators">,
76 L<IO::File>
77 L<IO::Handle>
78 L<IO::Seekable>
80 =head1 HISTORY
82 Derived from IO::File.pm by Akim Demaille E<lt>F<akim@freefriends.org>E<gt>.
84 =cut
86 require 5.000;
87 use strict;
88 use vars qw($VERSION @EXPORT @EXPORT_OK $AUTOLOAD @ISA);
89 use Carp;
90 use Errno;
91 use IO::File;
92 use File::Basename;
93 use Automake::ChannelDefs;
94 use Automake::Channels qw(msg);
95 use Automake::FileUtils;
97 require Exporter;
98 require DynaLoader;
100 @ISA = qw(IO::File Exporter DynaLoader);
102 $VERSION = "1.2";
104 @EXPORT = @IO::File::EXPORT;
106 eval {
107 # Make all Fcntl O_XXX and LOCK_XXX constants available for importing
108 require Fcntl;
109 my @O = grep /^(LOCK|O)_/, @Fcntl::EXPORT, @Fcntl::EXPORT_OK;
110 Fcntl->import (@O); # first we import what we want to export
111 push (@EXPORT, @O);
114 # Used in croak error messages.
115 my $me = basename ($0);
117 ################################################
118 ## Constructor
121 sub new
123 my $type = shift;
124 my $class = ref $type || $type || "Automake::XFile";
125 my $fh = $class->SUPER::new ();
126 if (@_)
128 $fh->open (@_);
130 $fh;
133 ################################################
134 ## Open
137 sub open
139 my $fh = shift;
140 my ($file) = @_;
142 # WARNING: Gross hack: $FH is a typeglob: use its hash slot to store
143 # the `name' of the file we are opening. See the example with
144 # io_socket_timeout in IO::Socket for more, and read Graham's
145 # comment in IO::Handle.
146 ${*$fh}{'autom4te_xfile_file'} = "$file";
148 if (!$fh->SUPER::open (@_))
150 fatal "cannot open $file: $!";
153 # In case we're running under MSWindows, don't write with CRLF.
154 # (This circumvents a bug in at least Cygwin bash where the shell
155 # parsing fails on lines ending with the continuation character '\'
156 # and CRLF).
157 binmode $fh if $file =~ /^\s*>/;
160 ################################################
161 ## Close
164 sub close
166 my $fh = shift;
167 if (!$fh->SUPER::close (@_))
169 my $file = $fh->name;
170 Automake::FileUtils::handle_exec_errors $file
171 unless $!;
172 fatal "cannot close $file: $!";
176 ################################################
177 ## Getline
180 # Some Win32/perl installations fail to translate \r\n to \n on input
181 # so we do that here.
182 sub getline
184 local $_ = $_[0]->SUPER::getline;
185 # Perform a _global_ replacement: $_ may can contains many lines
186 # in slurp mode ($/ = undef).
187 s/\015\012/\n/gs if defined $_;
188 return $_;
191 ################################################
192 ## Getlines
195 sub getlines
197 my @res = ();
198 my $line;
199 push @res, $line while $line = $_[0]->getline;
200 return @res;
203 ################################################
204 ## Name
207 sub name
209 my $fh = shift;
210 return ${*$fh}{'autom4te_xfile_file'};
213 ################################################
214 ## Lock
217 sub lock
219 my ($fh, $mode) = @_;
220 # Cannot use @_ here.
222 # Unless explicitly configured otherwise, Perl implements its `flock' with the
223 # first of flock(2), fcntl(2), or lockf(3) that works. These can fail on
224 # NFS-backed files, with ENOLCK (GNU/Linux) or EOPNOTSUPP (FreeBSD); we
225 # usually ignore these errors. If $ENV{MAKEFLAGS} suggests that a parallel
226 # invocation of GNU `make' has invoked the tool we serve, report all locking
227 # failures and abort.
229 # On Unicos, flock(2) and fcntl(2) over NFS hang indefinitely when `lockd' is
230 # not running. NetBSD NFS clients silently grant all locks. We do not
231 # attempt to defend against these dangers.
232 if (!flock ($fh, $mode))
234 my $make_j = (exists $ENV{'MAKEFLAGS'}
235 && " -$ENV{'MAKEFLAGS'}" =~ / (-[BdeikrRsSw]*j|---?jobs)/);
236 my $note = "\nforgo `make -j' or use a file system that supports locks";
237 my $file = $fh->name;
239 msg ($make_j ? 'fatal' : 'unsupported',
240 "cannot lock $file with mode $mode: $!" . ($make_j ? $note : ""))
241 if $make_j || !($!{ENOLCK} || $!{EOPNOTSUPP});
245 ################################################
246 ## Seek
249 sub seek
251 my $fh = shift;
252 # Cannot use @_ here.
253 if (!seek ($fh, $_[0], $_[1]))
255 my $file = $fh->name;
256 fatal "$me: cannot rewind $file with @_: $!";
260 ################################################
261 ## Truncate
264 sub truncate
266 my ($fh, $len) = @_;
267 if (!truncate ($fh, $len))
269 my $file = $fh->name;
270 fatal "cannot truncate $file at $len: $!";
276 ### Setup "GNU" style for perl-mode and cperl-mode.
277 ## Local Variables:
278 ## perl-indent-level: 2
279 ## perl-continued-statement-offset: 2
280 ## perl-continued-brace-offset: 0
281 ## perl-brace-offset: 0
282 ## perl-brace-imaginary-offset: 0
283 ## perl-label-offset: -2
284 ## cperl-indent-level: 2
285 ## cperl-brace-offset: 0
286 ## cperl-continued-brace-offset: 0
287 ## cperl-label-offset: -2
288 ## cperl-extra-newline-before-brace: t
289 ## cperl-merge-trailing-else: nil
290 ## cperl-continued-statement-offset: 2
291 ## End: