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