1 # Copyright (C) 2001-2024 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)
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, see <https://www.gnu.org/licenses/>.
16 # Written by Akim Demaille <akim@freefriends.org>.
18 ###############################################################
19 # The main copy of this file is in Automake's git repository. #
20 # Updates should be sent to automake-patches@gnu.org. #
21 ###############################################################
23 package Autom4te
::XFile
;
27 Autom4te::XFile - supply object methods for filehandles with error handling
33 $fh = new Autom4te::XFile;
34 $fh->open ("file", "<");
35 # No need to check $FH: we died if open failed.
38 # No need to check the return value of close: we died if it failed.
40 $fh = new Autom4te::XFile "file", ">";
41 # No need to check $FH: we died if new failed.
45 $fh = new Autom4te::XFile "file", "r";
46 # No need to check $FH: we died if new failed.
49 undef $fh; # automatically closes the file and checks for errors.
51 $fh = new Autom4te::XFile "file", O_WRONLY | O_APPEND;
52 # No need to check $FH: we died if new failed.
58 undef $fh; # automatically closes the file and checks for errors.
64 C<Autom4te::XFile> inherits from C<IO::File>. It provides the method
65 C<name> returning the file name. It provides dying versions of the
66 methods C<close>, C<lock> (corresponding to C<flock>), C<new>,
67 C<open>, C<seek>, and C<truncate>. It also overrides the C<getline>
68 and C<getlines> methods to translate C<\r\n> to C<\n>.
74 use warnings FATAL
=> 'all';
80 use Autom4te
::ChannelDefs
;
81 use Autom4te
::Channels qw
(msg
);
82 use Autom4te
::FileUtils
;
84 our @ISA = qw(Exporter IO::File);
85 our @EXPORT = @IO::File
::EXPORT
;
89 # Make all Fcntl O_XXX and LOCK_XXX constants available for importing
91 my @O = grep /^(LOCK|O)_/, @Fcntl::EXPORT
, @Fcntl::EXPORT_OK
;
92 Fcntl
->import (@O); # first we import what we want to export
100 =item C<$fh = new Autom4te::XFile ([$expr, ...]>
102 Constructor a new XFile object. Additional arguments
103 are passed to C<open>, if any.
110 my $class = ref $type || $type || "Autom4te::XFile";
111 my $fh = $class->SUPER::new
();
119 =item C<$fh-E<gt>open ([$file, ...])>
121 Open a file, passing C<$file> and further arguments to C<IO::File::open>.
122 Die if opening fails. Store the name of the file. Use binmode for writing.
129 my ($file, $mode) = @_;
131 # WARNING: Gross hack: $FH is a typeglob: use its hash slot to store
132 # the 'name' of the file we are opening. See the example with
133 # io_socket_timeout in IO::Socket for more, and read Graham's
134 # comment in IO::Handle.
135 ${*$fh}{'autom4te_xfile_file'} = "$file";
137 if (!$fh->SUPER::open (@_))
139 fatal
"cannot open $file: $!";
142 # In case we're running under MSWindows, don't write with CRLF.
143 # (This circumvents a bug in at least Cygwin bash where the shell
144 # parsing fails on lines ending with the continuation character '\'
146 # Correctly recognize usages like:
147 # - open ($file, "w")
148 # - open ($file, "+<")
151 if (defined $mode && $mode =~ /^[+>wa]/ or $file =~ /^\s*>/);
154 =item C<$fh-E<gt>close>
156 Close the file, handling errors.
163 if (!$fh->SUPER::close (@_))
165 my $file = $fh->name;
166 Autom4te
::FileUtils
::handle_exec_errors
$file
168 fatal
"cannot close $file: $!";
172 =item C<$line = $fh-E<gt>getline>
174 Read and return a line from the file. Ensure C<\r\n> is translated to
175 C<\n> on input files.
179 # Some native Windows/perl installations fail to translate \r\n to \n on
180 # input so we do that here.
183 local $_ = $_[0]->SUPER::getline
;
184 # Perform a _global_ replacement: $_ may can contains many lines
185 # in slurp mode ($/ = undef).
186 s/\015\012/\n/gs if defined $_;
190 =item C<@lines = $fh-E<gt>getlines>
192 Slurp lines from the files.
200 push @res, $line while $line = $_[0]->getline;
204 =item C<$name = $fh-E<gt>name>
206 Return the name of the file.
213 return ${*$fh}{'autom4te_xfile_file'};
216 =item C<$fh-E<gt>lock>
218 Lock the file using C<flock>. If locking fails for reasons other than
219 C<flock> being unsupported, then error out if C<$ENV{'MAKEFLAGS'}> indicates
220 that we are spawned from a parallel C<make>.
226 my ($fh, $mode) = @_;
227 # Cannot use @_ here.
229 # Unless explicitly configured otherwise, Perl implements its 'flock' with the
230 # first of flock(2), fcntl(2), or lockf(3) that works. These can fail on
231 # NFS-backed files, with ENOLCK (GNU/Linux) or EOPNOTSUPP (FreeBSD) or
232 # EINVAL (OpenIndiana, as per POSIX 1003.1-2017 fcntl spec); we
233 # usually ignore these errors. If $ENV{MAKEFLAGS} suggests that a parallel
234 # invocation of 'make' has invoked the tool we serve, report all locking
235 # failures and abort.
237 # On Unicos, flock(2) and fcntl(2) over NFS hang indefinitely when 'lockd' is
238 # not running. NetBSD NFS clients silently grant all locks. We do not
239 # attempt to defend against these dangers.
241 # -j is for parallel BSD make, -P is for parallel HP-UX make.
242 if (!flock ($fh, $mode))
244 my $make_j = (exists $ENV{'MAKEFLAGS'}
245 && " -$ENV{'MAKEFLAGS'}" =~ / (-[BdeikrRsSw]*[jP]|--[jP]|---?jobs)/);
246 my $note = "\nforgo \"make -j\" or use a file system that supports locks";
247 my $file = $fh->name;
249 msg
($make_j ?
'fatal' : 'unsupported',
250 "cannot lock $file with mode $mode: $!" . ($make_j ?
$note : ""))
251 if $make_j || !($!{EINVAL
} || $!{ENOLCK
} || $!{EOPNOTSUPP
});
255 =item C<$fh-E<gt>seek ($position, [$whence])>
257 Seek file to C<$position>. Die if seeking fails.
264 # Cannot use @_ here.
265 if (!seek ($fh, $_[0], $_[1]))
267 my $file = $fh->name;
268 fatal
"cannot rewind $file with @_: $!";
272 =item C<$fh-E<gt>truncate ($len)>
274 Truncate the file to length C<$len>. Die on failure.
281 if (!truncate ($fh, $len))
283 my $file = $fh->name;
284 fatal
"cannot truncate $file at $len: $!";
293 L<perlop/"I/O Operators">,
300 Derived from IO::File.pm by Akim Demaille E<lt>F<akim@freefriends.org>E<gt>.