diff options
author | John E. Malmberg <wb8tyw@qsl.net> | 2007-11-17 20:15:22 -0600 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-11-24 02:17:28 +0000 |
commit | b1a8dcd70a1b7c58d934599729e8fb3ac06cf406 (patch) | |
tree | df800b69f1c0560b591f7109c064e622cc89ea75 /vms/ext/Filespec.pm | |
parent | 6c336d06ae8687622e1fdbee076f2a14b492da29 (diff) | |
download | perl-b1a8dcd70a1b7c58d934599729e8fb3ac06cf406.tar.gz |
[patch@32376] VMS symbolic links part 4 of 4 - Final part
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <473FF49A.5000302@qsl.net>
[.vms...] parts with revisions to compile on older systems and some
POD clean-up.
p4raw-id: //depot/perl@32474
Diffstat (limited to 'vms/ext/Filespec.pm')
-rw-r--r-- | vms/ext/Filespec.pm | 116 |
1 files changed, 110 insertions, 6 deletions
diff --git a/vms/ext/Filespec.pm b/vms/ext/Filespec.pm index e0a179b12d..842e7784fb 100644 --- a/vms/ext/Filespec.pm +++ b/vms/ext/Filespec.pm @@ -3,7 +3,7 @@ # # Version: see $VERSION below # Author: Charles Bailey bailey@newman.upenn.edu -# Revised: 08-Mar-1995 +# Revised: 30-Oct-2007 =head1 NAME @@ -20,6 +20,9 @@ $dirfile = fileify('my:[VMS.or.Unix.directory.specification]'); $vmsdir = vmspath('my/VMS/or/Unix/directory/specification.dir'); $unixdir = unixpath('my:[VMS.or.Unix.directory]specification.dir'); candelete('my:[VMS.or.Unix]file.specification'); +$case_tolerant = vms_case_tolerant; +$unixspec = vms_realpath('file_specification'); +$vmsspec = vms_realname('file_specification'); =head1 DESCRIPTION @@ -72,13 +75,81 @@ file specification or the default specification passed to C<rmsexpand>. as possible.) If an error occurs, returns C<undef> and sets C<$!> and C<$^E>. +C<rmsexpand> on success will produce a name that fits in a 255 byte buffer, +which is required for parameters passed to the DCL interpreter. + =head2 vmsify -Converts a file specification to VMS syntax. +Converts a file specification to VMS syntax. If the file specification +cannot be converted to or is already in VMS syntax, it will be +passed through unchanged. + +The file specifications of C<.> and C<..> will be converted to +C<[]> and C<[-]>. + +If the file specification is already in a valid VMS syntax, it will +be passed through unchanged, except that the UTF-8 flag will be cleared +since VMS format file specifications are never in UTF-8. + +When Perl is running on an OpenVMS system, if the C<DECC$EFS_CHARSET> +feature is not enabled, extra dots in the file specification will +be converted to underscore characters, and the C<?> character will +be converted to a C<%> character, if a conversion is done. + +When Perl is running on an OpenVMS system, if the C<DECC$EFS_CHARSET> +feature is enabled, this implies that the UNIX pathname can not have +a version, and that a path consisting of three dots, C<./.../>, will be +converted to C<[.^.^.^.]>. + +UNIX style shell macros like C<$(abcd)> are passed through instead +of being converted to C<$^(abcd^)> independent of the C<DECC$EFS_CHARSET> +feature setting. UNIX style shell macros should not use characters +that are not in the ASCII character set, as the resulting specification +may or may not be still in UTF8 format. + +The feature logical name C<PERL_VMS_VTF7_FILENAMES> controls if UNICODE +characters in UNIX filenames are encoded in VTF-7 notation in the resulting +OpenVMS file specification. [Currently under development] + +C<unixify> on the resulting file specification may not result in the +original UNIX file specification, so programs should not plan to convert +a file specification from UNIX to VMS and then back to UNIX again after +modification of the components. =head2 unixify -Converts a file specification to Unix syntax. +Converts a file specification to Unix syntax. If the file specification +cannot be converted to or is already in UNIX syntax, it will be passed +through unchanged. + +When Perl is running on an OpenVMS system, the following C<DECC$> feature +settings will control how the filename is converted: + + C<decc$disable_to_vms_logname_translation:> default = C<ENABLE> + C<decc$disable_posix_root:> default = C<ENABLE> + C<decc$efs_charset:> default = C<DISABLE> + C<decc$filename_unix_no_version:> default = C<DISABLE> + C<decc$readdir_dropdotnotype:> default = C<ENABLE> + +When Perl is being run under a UNIX shell on OpenVMS, the defaults at +a future time may be more appropriate for it. + +When Perl is running on an OpenVMS system with C<DECC$EFS_CHARSET> enabled, +a wild card directory name of C<[...]> can not be translated to a valid +UNIX file specification when a conversion is done. + +When Perl is running on an OpenVMS system with C<DECC$EFS_CHARSET> enabled, +directory file specifications will have their implied ".dir;1" removed, +and a trailing C<.> character indicating a null extension will be removed. + +Note that C<DECC$EFS_CHARSET> requires C<DECC$FILENAME_UNIX_NO_VERSION> because +the conversion routine can not differentiate whether the last C<.> of a UNIX +specification is delimiting a version, or is just part of a file specification. + +C<vmsify> on the resulting file specification may not result in the +original VMS file specification, so programs should not plan to convert +a file specification from VMS to UNIX and then back to VMS again after +modification. =head2 pathify @@ -119,16 +190,45 @@ it's a list operator, so you need to be careful about parentheses. Both of these restrictions may be removed in the future if the functionality of C<candelete> becomes part of the Perl core. +=head2 vms_case_tolerant + +This reports whether the VMS process has been set to a case tolerant state. +It is intended for use by the File::Spec::VMS->case_tolerant method only, and +it is recommended that you only use File::Spec->case_tolerant. + +=head2 vms_realpath + +This exposes the VMS C library C<realpath> function where available. +It will always return a UNIX format specification. + +If the C<realpath> function is not available, or is unable to return the +real path of the file, C<vms_realpath> will use the C<vms_realfile> +function and convert the output to a UNIX format specification. + +This function is intended for use by Cwd.pm for the implementation of +the abs_path function with support for symbolic links. It is not available +on non-VMS systems. + +head2 vms_realname + +This uses the VMS LIB$FID_TO_NAME function to find the name of the primary +link to a file, and returns the filename in VMS format. + +This function is intended for use by Cwd.pm for the implementation of +the abs_path function with support for symbolic links. It is not available +on non-VMS systems. + + =head1 REVISION -This document was last revised 22-Feb-1996, for Perl 5.002. +This document was last revised 15-Nov-2007, for Perl 5.10.0 =cut package VMS::Filespec; require 5.002; -our $VERSION = '1.11'; +our $VERSION = '1.12'; # If you want to use this package on a non-VMS system, # uncomment the following line. @@ -137,7 +237,7 @@ require Exporter; @ISA = qw( Exporter ); @EXPORT = qw( &vmsify &unixify &pathify &fileify - &vmspath &unixpath &candelete &rmsexpand ); + &vmspath &unixpath &candelete &rmsexpand &vms_case_tolerant ); 1; @@ -349,3 +449,7 @@ sub candelete ($) { } else { return (-w '[-]'); } } + +sub vms_case_tolerant ($) { + return 0; +} |