Integrate with Sarathy.
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / VMS.pm
CommitLineData
270d1e39 1package File::Spec::VMS;
2
cbc7acb0 3use strict;
4use vars qw(@ISA);
5require File::Spec::Unix;
270d1e39 6@ISA = qw(File::Spec::Unix);
7
178326fd 8use Cwd;
cbc7acb0 9use File::Basename;
10use VMS::Filespec;
270d1e39 11
12=head1 NAME
13
14File::Spec::VMS - methods for VMS file specs
15
16=head1 SYNOPSIS
17
cbc7acb0 18 require File::Spec::VMS; # Done internally by File::Spec if needed
270d1e39 19
20=head1 DESCRIPTION
21
22See File::Spec::Unix for a documentation of the methods provided
23there. This package overrides the implementation of these methods, not
24the semantics.
25
a45bd81d 26=over
27
377875b9 28=item eliminate_macros
29
30Expands MM[KS]/Make macros in a text string, using the contents of
31identically named elements of C<%$self>, and returns the result
32as a file specification in Unix syntax.
33
1f47e8e2 34=cut
35
36sub eliminate_macros {
37 my($self,$path) = @_;
38 return '' unless $path;
39 $self = {} unless ref $self;
40 my($npath) = unixify($path);
41 my($complex) = 0;
42 my($head,$macro,$tail);
43
44 # perform m##g in scalar context so it acts as an iterator
14a089c5 45 while ($npath =~ m#(.*?)\$\((\S+?)\)(.*)#gs) {
1f47e8e2 46 if ($self->{$2}) {
47 ($head,$macro,$tail) = ($1,$2,$3);
48 if (ref $self->{$macro}) {
49 if (ref $self->{$macro} eq 'ARRAY') {
50 $macro = join ' ', @{$self->{$macro}};
51 }
52 else {
53 print "Note: can't expand macro \$($macro) containing ",ref($self->{$macro}),
54 "\n\t(using MMK-specific deferred substitutuon; MMS will break)\n";
55 $macro = "\cB$macro\cB";
56 $complex = 1;
57 }
58 }
1b1e14d3 59 else { ($macro = unixify($self->{$macro})) =~ s#/\z##; }
1f47e8e2 60 $npath = "$head$macro$tail";
61 }
62 }
14a089c5 63 if ($complex) { $npath =~ s#\cB(.*?)\cB#\${$1}#gs; }
1f47e8e2 64 $npath;
65}
66
377875b9 67=item fixpath
68
69Catchall routine to clean up problem MM[SK]/Make macros. Expands macros
70in any directory specification, in order to avoid juxtaposing two
71VMS-syntax directories when MM[SK] is run. Also expands expressions which
72are all macro, so that we can tell how long the expansion is, and avoid
73overrunning DCL's command buffer when MM[KS] is running.
74
75If optional second argument has a TRUE value, then the return string is
76a VMS-syntax directory specification, if it is FALSE, the return string
77is a VMS-syntax file specification, and if it is not specified, fixpath()
78checks to see whether it matches the name of a directory in the current
79default directory, and returns a directory or file specification accordingly.
80
81=cut
82
1f47e8e2 83sub fixpath {
84 my($self,$path,$force_path) = @_;
85 return '' unless $path;
86 $self = bless {} unless ref $self;
87 my($fixedpath,$prefix,$name);
88
1b1e14d3 89 if ($path =~ m#^\$\([^\)]+\)\z#s || $path =~ m#[/:>\]]#) {
90 if ($force_path or $path =~ /(?:DIR\)|\])\z/) {
1f47e8e2 91 $fixedpath = vmspath($self->eliminate_macros($path));
92 }
93 else {
94 $fixedpath = vmsify($self->eliminate_macros($path));
95 }
96 }
1b1e14d3 97 elsif ((($prefix,$name) = ($path =~ m#^\$\(([^\)]+)\)(.+)#s)) && $self->{$prefix}) {
1f47e8e2 98 my($vmspre) = $self->eliminate_macros("\$($prefix)");
99 # is it a dir or just a name?
1b1e14d3 100 $vmspre = ($vmspre =~ m|/| or $prefix =~ /DIR\z/) ? vmspath($vmspre) : '';
1f47e8e2 101 $fixedpath = ($vmspre ? $vmspre : $self->{$prefix}) . $name;
102 $fixedpath = vmspath($fixedpath) if $force_path;
103 }
104 else {
105 $fixedpath = $path;
106 $fixedpath = vmspath($fixedpath) if $force_path;
107 }
108 # No hints, so we try to guess
109 if (!defined($force_path) and $fixedpath !~ /[:>(.\]]/) {
110 $fixedpath = vmspath($fixedpath) if -d $fixedpath;
111 }
46726cbe 112
1f47e8e2 113 # Trim off root dirname if it's had other dirs inserted in front of it.
114 $fixedpath =~ s/\.000000([\]>])/$1/;
46726cbe 115 # Special case for VMS absolute directory specs: these will have had device
116 # prepended during trip through Unix syntax in eliminate_macros(), since
117 # Unix syntax has no way to express "absolute from the top of this device's
118 # directory tree".
119 if ($path =~ /^[\[>][^.\-]/) { $fixedpath =~ s/^[^\[<]+//; }
1f47e8e2 120 $fixedpath;
121}
122
a45bd81d 123=back
1f47e8e2 124
270d1e39 125=head2 Methods always loaded
126
127=over
128
46726cbe 129=item canonpath (override)
130
131Removes redundant portions of file specifications according to VMS syntax
132
133=cut
134
135sub canonpath {
d7bc03f0 136 my($self,$path) = @_;
46726cbe 137
138 if ($path =~ m|/|) { # Fake Unix
14a089c5 139 my $pathify = $path =~ m|/\z|;
d7bc03f0 140 $path = $self->SUPER::canonpath($path);
46726cbe 141 if ($pathify) { return vmspath($path); }
142 else { return vmsify($path); }
143 }
144 else {
d7bc03f0 145 $path =~ s-\]\[--g; $path =~ s/><//g; # foo.][bar ==> foo.bar
146 $path =~ s/([\[<])000000\./$1/; # [000000.foo ==> foo
46726cbe 147 return $path;
148 }
149}
150
270d1e39 151=item catdir
152
153Concatenates a list of file specifications, and returns the result as a
46726cbe 154VMS-syntax directory specification. No check is made for "impossible"
155cases (e.g. elements other than the first being absolute filespecs).
270d1e39 156
157=cut
158
159sub catdir {
cbc7acb0 160 my ($self,@dirs) = @_;
161 my $dir = pop @dirs;
270d1e39 162 @dirs = grep($_,@dirs);
cbc7acb0 163 my $rslt;
270d1e39 164 if (@dirs) {
cbc7acb0 165 my $path = (@dirs == 1 ? $dirs[0] : $self->catdir(@dirs));
166 my ($spath,$sdir) = ($path,$dir);
14a089c5 167 $spath =~ s/\.dir\z//; $sdir =~ s/\.dir\z//;
1b1e14d3 168 $sdir = $self->eliminate_macros($sdir) unless $sdir =~ /^[\w\-]+\z/s;
cbc7acb0 169 $rslt = $self->fixpath($self->eliminate_macros($spath)."/$sdir",1);
46726cbe 170
171 # Special case for VMS absolute directory specs: these will have had device
172 # prepended during trip through Unix syntax in eliminate_macros(), since
173 # Unix syntax has no way to express "absolute from the top of this device's
174 # directory tree".
1b1e14d3 175 if ($spath =~ /^[\[<][^.\-]/s) { $rslt =~ s/^[^\[<]+//s; }
270d1e39 176 }
cbc7acb0 177 else {
1b1e14d3 178 if ($dir =~ /^\$\([^\)]+\)\z/s) { $rslt = $dir; }
179 else { $rslt = vmspath($dir); }
270d1e39 180 }
cbc7acb0 181 return $rslt;
270d1e39 182}
183
184=item catfile
185
186Concatenates a list of file specifications, and returns the result as a
46726cbe 187VMS-syntax file specification.
270d1e39 188
189=cut
190
191sub catfile {
cbc7acb0 192 my ($self,@files) = @_;
193 my $file = pop @files;
270d1e39 194 @files = grep($_,@files);
cbc7acb0 195 my $rslt;
270d1e39 196 if (@files) {
cbc7acb0 197 my $path = (@files == 1 ? $files[0] : $self->catdir(@files));
198 my $spath = $path;
14a089c5 199 $spath =~ s/\.dir\z//;
1b1e14d3 200 if ($spath =~ /^[^\)\]\/:>]+\)\z/s && basename($file) eq $file) {
cbc7acb0 201 $rslt = "$spath$file";
202 }
203 else {
204 $rslt = $self->eliminate_macros($spath);
205 $rslt = vmsify($rslt.($rslt ? '/' : '').unixify($file));
206 }
270d1e39 207 }
208 else { $rslt = vmsify($file); }
cbc7acb0 209 return $rslt;
270d1e39 210}
211
46726cbe 212
270d1e39 213=item curdir (override)
214
cbc7acb0 215Returns a string representation of the current directory: '[]'
270d1e39 216
217=cut
218
219sub curdir {
220 return '[]';
221}
222
99804bbb 223=item devnull (override)
224
cbc7acb0 225Returns a string representation of the null device: '_NLA0:'
99804bbb 226
227=cut
228
229sub devnull {
cbc7acb0 230 return "_NLA0:";
99804bbb 231}
232
270d1e39 233=item rootdir (override)
234
cbc7acb0 235Returns a string representation of the root directory: 'SYS$DISK:[000000]'
270d1e39 236
237=cut
238
239sub rootdir {
cbc7acb0 240 return 'SYS$DISK:[000000]';
241}
242
243=item tmpdir (override)
244
245Returns a string representation of the first writable directory
246from the following list or '' if none are writable:
247
248 /sys$scratch
249 $ENV{TMPDIR}
250
251=cut
252
253my $tmpdir;
254sub tmpdir {
255 return $tmpdir if defined $tmpdir;
256 foreach ('/sys$scratch', $ENV{TMPDIR}) {
257 next unless defined && -d && -w _;
258 $tmpdir = $_;
259 last;
260 }
261 $tmpdir = '' unless defined $tmpdir;
262 return $tmpdir;
270d1e39 263}
264
265=item updir (override)
266
cbc7acb0 267Returns a string representation of the parent directory: '[-]'
270d1e39 268
269=cut
270
271sub updir {
272 return '[-]';
273}
274
46726cbe 275=item case_tolerant (override)
276
277VMS file specification syntax is case-tolerant.
278
279=cut
280
281sub case_tolerant {
282 return 1;
283}
284
270d1e39 285=item path (override)
286
287Translate logical name DCL$PATH as a searchlist, rather than trying
288to C<split> string value of C<$ENV{'PATH'}>.
289
290=cut
291
292sub path {
cbc7acb0 293 my (@dirs,$dir,$i);
270d1e39 294 while ($dir = $ENV{'DCL$PATH;' . $i++}) { push(@dirs,$dir); }
cbc7acb0 295 return @dirs;
270d1e39 296}
297
298=item file_name_is_absolute (override)
299
300Checks for VMS directory spec as well as Unix separators.
301
302=cut
303
304sub file_name_is_absolute {
cbc7acb0 305 my ($self,$file) = @_;
270d1e39 306 # If it's a logical name, expand it.
1b1e14d3 307 $file = $ENV{$file} while $file =~ /^[\w\$\-]+\z/s && $ENV{$file};
308 return scalar($file =~ m!^/!s ||
cbc7acb0 309 $file =~ m![<\[][^.\-\]>]! ||
310 $file =~ /:[^<\[]/);
270d1e39 311}
312
46726cbe 313=item splitpath (override)
314
315Splits using VMS syntax.
316
317=cut
318
319sub splitpath {
320 my($self,$path) = @_;
321 my($dev,$dir,$file) = ('','','');
322
1b1e14d3 323 vmsify($path) =~ /(.+:)?([\[<].*[\]>])?(.*)/s;
46726cbe 324 return ($1 || '',$2 || '',$3);
325}
326
327=item splitdir (override)
328
329Split dirspec using VMS syntax.
330
331=cut
332
333sub splitdir {
334 my($self,$dirspec) = @_;
335 $dirspec =~ s/\]\[//g; $dirspec =~ s/\-\-/-.-/g;
336 my(@dirs) = split('\.', vmspath($dirspec));
1b1e14d3 337 $dirs[0] =~ s/^[\[<]//s; $dirs[-1] =~ s/[\]>]\z//s;
46726cbe 338 @dirs;
339}
340
341
342=item catpath (override)
343
344Construct a complete filespec using VMS syntax
345
346=cut
347
348sub catpath {
349 my($self,$dev,$dir,$file) = @_;
350 if ($dev =~ m|^/+([^/]+)|) { $dev =~ "$1:"; }
14a089c5 351 else { $dev .= ':' unless $dev eq '' or $dev =~ /:\z/; }
46726cbe 352 $dir = vmspath($dir);
353 "$dev$dir$file";
354}
355
0994714a 356
357sub abs2rel {
358 my $self = shift;
359
360 return File::Spec::Unix::abs2rel( $self, @_ )
361 if ( join( '', @_ ) =~ m{/} ) ;
362
363 my($path,$base) = @_;
364
365 # Note: we use '/' to glue things together here, then let canonpath()
366 # clean them up at the end.
367
368 # Clean up $path
369 if ( ! $self->file_name_is_absolute( $path ) ) {
370 $path = $self->rel2abs( $path ) ;
371 }
372 else {
373 $path = $self->canonpath( $path ) ;
374 }
375
376 # Figure out the effective $base and clean it up.
1d7cb664 377 if ( !defined( $base ) || $base eq '' ) {
0994714a 378 $base = cwd() ;
379 }
1d7cb664 380 elsif ( ! $self->file_name_is_absolute( $base ) ) {
381 $base = $self->rel2abs( $base ) ;
382 }
0994714a 383 else {
384 $base = $self->canonpath( $base ) ;
385 }
386
387 # Split up paths
388 my ( undef, $path_directories, $path_file ) =
389 $self->splitpath( $path, 1 ) ;
390
391 $path_directories = $1
1b1e14d3 392 if $path_directories =~ /^\[(.*)\]\z/s ;
0994714a 393
394 my ( undef, $base_directories, undef ) =
395 $self->splitpath( $base, 1 ) ;
396
397 $base_directories = $1
1b1e14d3 398 if $base_directories =~ /^\[(.*)\]\z/s ;
0994714a 399
400 # Now, remove all leading components that are the same
401 my @pathchunks = $self->splitdir( $path_directories );
402 my @basechunks = $self->splitdir( $base_directories );
403
404 while ( @pathchunks &&
405 @basechunks &&
406 lc( $pathchunks[0] ) eq lc( $basechunks[0] )
407 ) {
408 shift @pathchunks ;
409 shift @basechunks ;
410 }
411
412 # @basechunks now contains the directories to climb out of,
413 # @pathchunks now has the directories to descend in to.
414 $path_directories = '-.' x @basechunks . join( '.', @pathchunks ) ;
1b1e14d3 415 $path_directories =~ s{\.\z}{} ;
0994714a 416 return $self->catpath( '', $path_directories, $path_file ) ;
417}
418
419
420sub rel2abs($;$;) {
421 my $self = shift ;
422 return File::Spec::Unix::rel2abs( $self, @_ )
423 if ( join( '', @_ ) =~ m{/} ) ;
424
425 my ($path,$base ) = @_;
426 # Clean up and split up $path
427 if ( ! $self->file_name_is_absolute( $path ) ) {
428 # Figure out the effective $base and clean it up.
429 if ( !defined( $base ) || $base eq '' ) {
430 $base = cwd() ;
431 }
432 elsif ( ! $self->file_name_is_absolute( $base ) ) {
433 $base = $self->rel2abs( $base ) ;
434 }
435 else {
436 $base = $self->canonpath( $base ) ;
437 }
438
439 # Split up paths
440 my ( undef, $path_directories, $path_file ) =
441 $self->splitpath( $path ) ;
442
443 my ( $base_volume, $base_directories, undef ) =
444 $self->splitpath( $base ) ;
445
446 my $sep = '' ;
447 $sep = '.'
1b1e14d3 448 if ( $base_directories =~ m{[^.]\z} &&
449 $path_directories =~ m{^[^.]}s
0994714a 450 ) ;
451 $base_directories = "$base_directories$sep$path_directories" ;
452
453 $path = $self->catpath( $base_volume, $base_directories, $path_file );
454 }
455
456 return $self->canonpath( $path ) ;
457}
458
459
cbc7acb0 460=back
270d1e39 461
cbc7acb0 462=head1 SEE ALSO
463
464L<File::Spec>
465
466=cut
467
4681;