avoid nonportable example code
[p5sagit/p5-mst-13.2.git] / lib / File / Copy.pm
CommitLineData
f716a1dd 1# File/Copy.pm. Written in 1994 by Aaron Sherman <ajs@ajs.com>. This
2# source code has been placed in the public domain by the author.
3# Please be kind and preserve the documentation.
4#
71be2cbc 5# Additions copyright 1996 by Charles Bailey. Permission is granted
6# to distribute the revised code under the same terms as Perl itself.
f716a1dd 7
8package File::Copy;
9
17f410f9 10use 5.005_64;
71be2cbc 11use strict;
f716a1dd 12use Carp;
17f410f9 13our(@ISA, @EXPORT, @EXPORT_OK, $VERSION, $Too_Big, $Syscopy_is_copy);
14sub copy;
15sub syscopy;
16sub cp;
17sub mv;
71be2cbc 18
19# Note that this module implements only *part* of the API defined by
20# the File/Copy.pm module of the File-Tools-2.0 package. However, that
21# package has not yet been updated to work with Perl 5.004, and so it
22# would be a Bad Thing for the CPAN module to grab it and replace this
23# module. Therefore, we set this module's version higher than 2.0.
1a04d035 24$VERSION = '2.03';
f716a1dd 25
71be2cbc 26require Exporter;
27@ISA = qw(Exporter);
28@EXPORT = qw(copy move);
29@EXPORT_OK = qw(cp mv);
f716a1dd 30
441496b2 31$Too_Big = 1024 * 1024 * 2;
f716a1dd 32
71be2cbc 33sub _catname { # Will be replaced by File::Spec when it arrives
34 my($from, $to) = @_;
35 if (not defined &basename) {
36 require File::Basename;
37 import File::Basename 'basename';
38 }
39 if ($^O eq 'VMS') { $to = VMS::Filespec::vmspath($to) . basename($from); }
40 elsif ($^O eq 'MacOS') { $to .= ':' . basename($from); }
41 elsif ($to =~ m|\\|) { $to .= '\\' . basename($from); }
42 else { $to .= '/' . basename($from); }
f716a1dd 43}
44
45sub copy {
71be2cbc 46 croak("Usage: copy(FROM, TO [, BUFFERSIZE]) ")
f716a1dd 47 unless(@_ == 2 || @_ == 3);
48
49 my $from = shift;
50 my $to = shift;
71be2cbc 51
52 my $from_a_handle = (ref($from)
53 ? (ref($from) eq 'GLOB'
d704f39a 54 || UNIVERSAL::isa($from, 'GLOB')
55 || UNIVERSAL::isa($from, 'IO::Handle'))
71be2cbc 56 : (ref(\$from) eq 'GLOB'));
57 my $to_a_handle = (ref($to)
58 ? (ref($to) eq 'GLOB'
d704f39a 59 || UNIVERSAL::isa($to, 'GLOB')
60 || UNIVERSAL::isa($to, 'IO::Handle'))
71be2cbc 61 : (ref(\$to) eq 'GLOB'));
62
63 if (!$from_a_handle && !$to_a_handle && -d $to && ! -d $from) {
64 $to = _catname($from, $to);
65 }
66
1a04d035 67 if (defined &syscopy && !$Syscopy_is_copy
e6434134 68 && !$to_a_handle
1d84e8df 69 && !($from_a_handle && $^O eq 'os2' ) # OS/2 cannot handle handles
70 && !($from_a_handle && $^O eq 'mpeix') # and neither can MPE/iX.
7509b657 71 && !($from_a_handle && $^O eq 'MSWin32')
1a04d035 72 )
71be2cbc 73 {
74 return syscopy($from, $to);
75 }
76
77 my $closefrom = 0;
78 my $closeto = 0;
f716a1dd 79 my ($size, $status, $r, $buf);
80 local(*FROM, *TO);
48a5c399 81 local($\) = '';
f716a1dd 82
71be2cbc 83 if ($from_a_handle) {
84 *FROM = *$from{FILEHANDLE};
f716a1dd 85 } else {
1b1e14d3 86 $from = "./$from" if $from =~ /^\s/s;
71be2cbc 87 open(FROM, "< $from\0") or goto fail_open1;
88 binmode FROM or die "($!,$^E)";
f716a1dd 89 $closefrom = 1;
1a04d035 90 }
91
71be2cbc 92 if ($to_a_handle) {
93 *TO = *$to{FILEHANDLE};
1a04d035 94 } else {
1b1e14d3 95 $to = "./$to" if $to =~ /^\s/s;
71be2cbc 96 open(TO,"> $to\0") or goto fail_open2;
97 binmode TO or die "($!,$^E)";
98 $closeto = 1;
1a04d035 99 }
f716a1dd 100
101 if (@_) {
102 $size = shift(@_) + 0;
103 croak("Bad buffer size for copy: $size\n") unless ($size > 0);
104 } else {
105 $size = -s FROM;
106 $size = 1024 if ($size < 512);
441496b2 107 $size = $Too_Big if ($size > $Too_Big);
f716a1dd 108 }
109
71be2cbc 110 $! = 0;
111 for (;;) {
112 my ($r, $w, $t);
113 defined($r = sysread(FROM, $buf, $size))
114 or goto fail_inner;
115 last unless $r;
116 for ($w = 0; $w < $r; $w += $t) {
117 $t = syswrite(TO, $buf, $r - $w, $w)
118 or goto fail_inner;
f716a1dd 119 }
120 }
71be2cbc 121
f716a1dd 122 close(TO) || goto fail_open2 if $closeto;
123 close(FROM) || goto fail_open1 if $closefrom;
71be2cbc 124
48a5c399 125 # Use this idiom to avoid uninitialized value warning.
f716a1dd 126 return 1;
1a04d035 127
f716a1dd 128 # All of these contortions try to preserve error messages...
129 fail_inner:
130 if ($closeto) {
131 $status = $!;
132 $! = 0;
133 close TO;
134 $! = $status unless $!;
135 }
136 fail_open2:
137 if ($closefrom) {
138 $status = $!;
139 $! = 0;
140 close FROM;
141 $! = $status unless $!;
142 }
143 fail_open1:
f716a1dd 144 return 0;
145}
9b957b78 146
441496b2 147sub move {
71be2cbc 148 my($from,$to) = @_;
149 my($copied,$fromsz,$tosz1,$tomt1,$tosz2,$tomt2,$sts,$ossts);
441496b2 150
71be2cbc 151 if (-d $to && ! -d $from) {
152 $to = _catname($from, $to);
153 }
154
155 ($tosz1,$tomt1) = (stat($to))[7,9];
156 $fromsz = -s $from;
e6434134 157 if ($^O eq 'os2' and defined $tosz1 and defined $fromsz) {
158 # will not rename with overwrite
159 unlink $to;
160 }
71be2cbc 161 return 1 if rename $from, $to;
162
163 ($sts,$ossts) = ($! + 0, $^E + 0);
164 # Did rename return an error even though it succeeded, because $to
165 # is on a remote NFS file system, and NFS lost the server's ack?
166 return 1 if defined($fromsz) && !-e $from && # $from disappeared
167 (($tosz2,$tomt2) = (stat($to))[7,9]) && # $to's there
168 ($tosz1 != $tosz2 or $tomt1 != $tomt2) && # and changed
169 $tosz2 == $fromsz; # it's all there
1a04d035 170
71be2cbc 171 ($tosz1,$tomt1) = (stat($to))[7,9]; # just in case rename did something
172 return 1 if ($copied = copy($from,$to)) && unlink($from);
1a04d035 173
71be2cbc 174 ($tosz2,$tomt2) = ((stat($to))[7,9],0,0) if defined $tomt1;
175 unlink($to) if !defined($tomt1) or $tomt1 != $tomt2 or $tosz1 != $tosz2;
176 ($!,$^E) = ($sts,$ossts);
177 return 0;
441496b2 178}
9b957b78 179
71be2cbc 180*cp = \&copy;
181*mv = \&move;
182
9b957b78 183# &syscopy is an XSUB under OS/2
1d84e8df 184unless (defined &syscopy) {
185 if ($^O eq 'VMS') {
186 *syscopy = \&rmscopy;
187 } elsif ($^O eq 'mpeix') {
188 *syscopy = sub {
3f5ee302 189 return 0 unless @_ == 2;
1d84e8df 190 # Use the MPE cp program in order to
191 # preserve MPE file attributes.
192 return system('/bin/cp', '-f', $_[0], $_[1]) == 0;
193 };
7509b657 194 } elsif ($^O eq 'MSWin32') {
195 *syscopy = sub {
196 return 0 unless @_ == 2;
197 return Win32::CopyFile(@_, 1);
198 };
1d84e8df 199 } else {
1a04d035 200 $Syscopy_is_copy = 1;
1d84e8df 201 *syscopy = \&copy;
202 }
203}
f716a1dd 204
2051;
206
207__END__
a5f75d66 208
f716a1dd 209=head1 NAME
210
211File::Copy - Copy files or filehandles
212
a5f75d66 213=head1 SYNOPSIS
f716a1dd 214
215 use File::Copy;
216
217 copy("file1","file2");
218 copy("Copy.pm",\*STDOUT);'
441496b2 219 move("/dev1/fileA","/dev2/fileB");
f716a1dd 220
221 use POSIX;
222 use File::Copy cp;
223
23f3aea0 224 $n = FileHandle->new("/a/file","r");
f716a1dd 225 cp($n,"x");'
226
227=head1 DESCRIPTION
228
441496b2 229The File::Copy module provides two basic functions, C<copy> and
230C<move>, which are useful for getting the contents of a file from
231one place to another.
232
233=over 4
234
235=item *
236
237The C<copy> function takes two
f716a1dd 238parameters: a file to copy from and a file to copy to. Either
239argument may be a string, a FileHandle reference or a FileHandle
240glob. Obviously, if the first argument is a filehandle of some
241sort, it will be read from, and if it is a file I<name> it will
242be opened for reading. Likewise, the second argument will be
e6434134 243written to (and created if need be).
71be2cbc 244
245B<Note that passing in
9b957b78 246files as handles instead of names may lead to loss of information
247on some operating systems; it is recommended that you use file
e6434134 248names whenever possible.> Files are opened in binary mode where
8dcee03e 249applicable. To get a consistent behaviour when copying from a
e6434134 250filehandle to a file, use C<binmode> on the filehandle.
f716a1dd 251
252An optional third parameter can be used to specify the buffer
253size used for copying. This is the number of bytes from the
254first file, that wil be held in memory at any given time, before
255being written to the second file. The default buffer size depends
256upon the file, but will generally be the whole file (up to 2Mb), or
2571k for filehandles that do not reference files (eg. sockets).
258
259You may use the syntax C<use File::Copy "cp"> to get at the
260"cp" alias for this function. The syntax is I<exactly> the same.
261
441496b2 262=item *
263
264The C<move> function also takes two parameters: the current name
71be2cbc 265and the intended name of the file to be moved. If the destination
266already exists and is a directory, and the source is not a
267directory, then the source file will be renamed into the directory
268specified by the destination.
269
270If possible, move() will simply rename the file. Otherwise, it copies
271the file to the new location and deletes the original. If an error occurs
272during this copy-and-delete process, you may be left with a (possibly partial)
441496b2 273copy of the file under the destination name.
274
275You may use the "mv" alias for this function in the same way that
276you may use the "cp" alias for C<copy>.
277
278=back
279
9b957b78 280File::Copy also provides the C<syscopy> routine, which copies the
281file specified in the first parameter to the file specified in the
282second parameter, preserving OS-specific attributes and file
283structure. For Unix systems, this is equivalent to the simple
284C<copy> routine. For VMS systems, this calls the C<rmscopy>
285routine (see below). For OS/2 systems, this calls the C<syscopy>
7509b657 286XSUB directly. For Win32 systems, this calls C<Win32::CopyFile>.
9b957b78 287
7509b657 288=head2 Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
9b957b78 289
71be2cbc 290If both arguments to C<copy> are not file handles,
291then C<copy> will perform a "system copy" of
9b957b78 292the input file to a new output file, in order to preserve file
293attributes, indexed file structure, I<etc.> The buffer size
71be2cbc 294parameter is ignored. If either argument to C<copy> is a
295handle to an opened file, then data is copied using Perl
9b957b78 296operators, and no effort is made to preserve file attributes
297or record structure.
298
55497cff 299The system copy routine may also be called directly under VMS and OS/2
300as C<File::Copy::syscopy> (or under VMS as C<File::Copy::rmscopy>, which
71be2cbc 301is the routine that does the actual work for syscopy).
9b957b78 302
441496b2 303=over 4
55497cff 304
9b957b78 305=item rmscopy($from,$to[,$date_flag])
306
71be2cbc 307The first and second arguments may be strings, typeglobs, typeglob
308references, or objects inheriting from IO::Handle;
309they are used in all cases to obtain the
9b957b78 310I<filespec> of the input and output files, respectively. The
311name and type of the input file are used as defaults for the
312output file, if necessary.
313
314A new version of the output file is always created, which
315inherits the structure and RMS attributes of the input file,
316except for owner and protections (and possibly timestamps;
317see below). All data from the input file is copied to the
318output file; if either of the first two parameters to C<rmscopy>
319is a file handle, its position is unchanged. (Note that this
320means a file handle pointing to the output file will be
321associated with an old version of that file after C<rmscopy>
322returns, not the newly created version.)
323
324The third parameter is an integer flag, which tells C<rmscopy>
1fef88e7 325how to handle timestamps. If it is E<lt> 0, none of the input file's
326timestamps are propagated to the output file. If it is E<gt> 0, then
9b957b78 327it is interpreted as a bitmask: if bit 0 (the LSB) is set, then
328timestamps other than the revision date are propagated; if bit 1
329is set, the revision date is propagated. If the third parameter
330to C<rmscopy> is 0, then it behaves much like the DCL COPY command:
331if the name or type of the output file was explicitly specified,
332then no timestamps are propagated, but if they were taken implicitly
333from the input filespec, then all timestamps other than the
334revision date are propagated. If this parameter is not supplied,
335it defaults to 0.
336
337Like C<copy>, C<rmscopy> returns 1 on success. If an error occurs,
338it sets C<$!>, deletes the output file, and returns 0.
339
55497cff 340=back
341
f716a1dd 342=head1 RETURN
343
441496b2 344All functions return 1 on success, 0 on failure.
345$! will be set if an error was encountered.
f716a1dd 346
347=head1 AUTHOR
348
441496b2 349File::Copy was written by Aaron Sherman I<E<lt>ajs@ajs.comE<gt>> in 1995,
bd3fa61c 350and updated by Charles Bailey I<E<lt>bailey@newman.upenn.eduE<gt>> in 1996.
f716a1dd 351
352=cut
441496b2 353