perl 5.002_01: lib/File/Copy.pm
Perl 5 Porters [Fri, 22 Mar 1996 01:10:06 +0000 (01:10 +0000)]
Add support for VMS and OS/2 system-level copy and $^O;
update documentation

lib/File/Copy.pm

index 6269745..6846013 100644 (file)
@@ -24,9 +24,10 @@ sub copy {
     croak("Usage: copy( file1, file2 [, buffersize]) ")
       unless(@_ == 2 || @_ == 3);
 
-    # VMS: perform RMS copy to preserve file attributes, indices, etc.
-    # This function is always defined under VMS, even in miniperl
-    if (defined(&File::Copy::rmscopy)) { return File::Copy::rmscopy($_[0],$_[1]) }
+    if (($^O eq 'VMS' or $^O eq 'os2') && ref(\$to) ne 'GLOB' &&
+        !(defined ref $to and (ref($to) eq 'GLOB' ||
+          ref($to) eq 'FileHandle' || ref($to) eq 'VMS::Stdio')))
+        { return File::Copy::syscopy($_[0],$_[1]) }
 
     my $from = shift;
     my $to = shift;
@@ -41,20 +42,24 @@ sub copy {
     if (ref(\$from) eq 'GLOB') {
        *FROM = $from;
     } elsif (defined ref $from and
-            (ref($from) eq 'GLOB' || ref($from) eq 'FileHandle')) {
+            (ref($from) eq 'GLOB' || ref($from) eq 'FileHandle' ||
+             ref($from) eq 'VMS::Stdio')) {
        *FROM = *$from;
     } else {
        open(FROM,"<$from")||goto(fail_open1);
+       binmode FROM;
        $closefrom = 1;
     }
 
     if (ref(\$to) eq 'GLOB') {
        *TO = $to;
     } elsif (defined ref $to and
-            (ref($to) eq 'GLOB' || ref($to) eq 'FileHandle')) {
+            (ref($to) eq 'GLOB' || ref($to) eq 'FileHandle' ||
+             ref($to) eq 'VMS::Stdio')) {
        *TO = *$to;
     } else {
        open(TO,">$to")||goto(fail_open2);
+       binmode TO;
        $closeto=1;
     }
 
@@ -98,7 +103,11 @@ sub copy {
     $\ = $recsep;
     return 0;
 }
+
+
 *cp = \&copy;
+# &syscopy is an XSUB under OS/2
+*syscopy = ($^O eq 'VMS' ? \&rmscopy : \&copy) unless $^O eq 'os2';
 
 1;
 
@@ -123,13 +132,16 @@ File::Copy - Copy files or filehandles
 
 =head1 DESCRIPTION
 
-The Copy module provides one function (copy) which takes two
+The File::Copy module provides a basic function C<copy> which takes two
 parameters: a file to copy from and a file to copy to. Either
 argument may be a string, a FileHandle reference or a FileHandle
 glob. Obviously, if the first argument is a filehandle of some
 sort, it will be read from, and if it is a file I<name> it will
 be opened for reading. Likewise, the second argument will be
-written to (and created if need be).
+written to (and created if need be).  Note that passing in
+files as handles instead of names may lead to loss of information
+on some operating systems; it is recommended that you use file
+names whenever possible.
 
 An optional third parameter can be used to specify the buffer
 size used for copying. This is the number of bytes from the
@@ -138,13 +150,66 @@ being written to the second file. The default buffer size depends
 upon the file, but will generally be the whole file (up to 2Mb), or
 1k for filehandles that do not reference files (eg. sockets).
 
-When running under VMS, this routine performs an RMS copy of
-the file, in order to preserve file attributed, indexed file
-structure, I<etc.>  The buffer size parameter is ignored.
-
 You may use the syntax C<use File::Copy "cp"> to get at the
 "cp" alias for this function. The syntax is I<exactly> the same.
 
+File::Copy also provides the C<syscopy> routine, which copies the
+file specified in the first parameter to the file specified in the
+second parameter, preserving OS-specific attributes and file
+structure.  For Unix systems, this is equivalent to the simple
+C<copy> routine.  For VMS systems, this calls the C<rmscopy>
+routine (see below).  For OS/2 systems, this calls the C<syscopy>
+XSUB directly.
+
+=head2 Special behavior under VMS
+
+If the second argument to C<copy> is not a file handle for an
+already opened file, then C<copy> will perform an RMS copy of
+the input file to a new output file, in order to preserve file
+attributes, indexed file structure, I<etc.>  The buffer size
+parameter is ignored.  If the second argument to C<copy> is a
+Perl handle to an opened file, then data is copied using Perl
+operators, and no effort is made to preserve file attributes
+or record structure.
+
+The RMS copy routine may also be called directly under VMS
+as C<File::Copy::rmscopy> (or C<File::Copy::syscopy>, which
+is just an alias for this routine).
+
+=item rmscopy($from,$to[,$date_flag])
+
+The first and second arguments may be strings, typeglobs, or
+typeglob references; they are used in all cases to obtain the
+I<filespec> of the input and output files, respectively.  The
+name and type of the input file are used as defaults for the
+output file, if necessary.
+
+A new version of the output file is always created, which
+inherits the structure and RMS attributes of the input file,
+except for owner and protections (and possibly timestamps;
+see below).  All data from the input file is copied to the
+output file; if either of the first two parameters to C<rmscopy>
+is a file handle, its position is unchanged.  (Note that this
+means a file handle pointing to the output file will be
+associated with an old version of that file after C<rmscopy>
+returns, not the newly created version.)
+
+The third parameter is an integer flag, which tells C<rmscopy>
+how to handle timestamps.  If it is < 0, none of the input file's
+timestamps are propagated to the output file.  If it is > 0, then
+it is interpreted as a bitmask: if bit 0 (the LSB) is set, then
+timestamps other than the revision date are propagated; if bit 1
+is set, the revision date is propagated.  If the third parameter
+to C<rmscopy> is 0, then it behaves much like the DCL COPY command:
+if the name or type of the output file was explicitly specified,
+then no timestamps are propagated, but if they were taken implicitly
+from the input filespec, then all timestamps other than the
+revision date are propagated.  If this parameter is not supplied,
+it defaults to 0.
+
+Like C<copy>, C<rmscopy> returns 1 on success.  If an error occurs,
+it sets C<$!>, deletes the output file, and returns 0.
+
 =head1 RETURN
 
 Returns 1 on success, 0 on failure. $! will be set if an error was
@@ -152,6 +217,8 @@ encountered.
 
 =head1 AUTHOR
 
-File::Copy was written by Aaron Sherman <ajs@ajs.com> in 1995.
+File::Copy was written by Aaron Sherman I<E<lt>ajs@ajs.comE<gt>> in 1995.
+The VMS-specific code was added by Charles Bailey
+I<E<lt>bailey@genetics.upenn.eduE<gt>> in March 1996.
 
 =cut