(retracted by #17444)
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / Unix.pm
CommitLineData
270d1e39 1package File::Spec::Unix;
2
270d1e39 3use strict;
f168a5e7 4our($VERSION);
b4296952 5
b4c5e263 6$VERSION = '1.4';
270d1e39 7
c27914c9 8use Cwd;
9
270d1e39 10=head1 NAME
11
6fad8743 12File::Spec::Unix - File::Spec for Unix, base for other File::Spec modules
270d1e39 13
14=head1 SYNOPSIS
15
cbc7acb0 16 require File::Spec::Unix; # Done automatically by File::Spec
270d1e39 17
18=head1 DESCRIPTION
19
6fad8743 20Methods for manipulating file specifications. Other File::Spec
21modules, such as File::Spec::Mac, inherit from File::Spec::Unix and
22override specific methods.
270d1e39 23
24=head1 METHODS
25
26=over 2
27
59605c55 28=item canonpath()
270d1e39 29
30No physical check on the filesystem, but a logical cleanup of a
6fad8743 31path. On UNIX eliminates successive slashes and successive "/.".
270d1e39 32
c27914c9 33 $cpath = File::Spec->canonpath( $path ) ;
c27914c9 34
270d1e39 35=cut
36
37sub canonpath {
0994714a 38 my ($self,$path) = @_;
89bb8afa 39
04ca015e 40 # Handle POSIX-style node names beginning with double slash (qnx, nto)
41 # Handle network path names beginning with double slash (cygwin)
42 # (POSIX says: "a pathname that begins with two successive slashes
43 # may be interpreted in an implementation-defined manner, although
44 # more than two leading slashes shall be treated as a single slash.")
89bb8afa 45 my $node = '';
04ca015e 46 if ( $^O =~ m/^(?:qnx|nto|cygwin)$/ && $path =~ s:^(//[^/]+)(/|\z):/:s ) {
89bb8afa 47 $node = $1;
48 }
7aa86a29 49 # This used to be
50 # $path =~ s|/+|/|g unless($^O eq 'cygwin');
51 # but that made tests 29, 30, 35, 46, and 213 (as of #13272) to fail
52 # (Mainly because trailing "" directories didn't get stripped).
53 # Why would cygwin avoid collapsing multiple slashes into one? --jhi
54 $path =~ s|/+|/|g; # xx////xx -> xx/xx
6bf11762 55 $path =~ s@(/\.)+(/|\Z(?!\n))@/@g; # xx/././xx -> xx/xx
1b1e14d3 56 $path =~ s|^(\./)+||s unless $path eq "./"; # ./xx -> xx
57 $path =~ s|^/(\.\./)+|/|s; # /../../xx -> xx
9c045eb2 58 $path =~ s|/\Z(?!\n)|| unless $path eq "/"; # xx/ -> xx
89bb8afa 59 return "$node$path";
270d1e39 60}
61
59605c55 62=item catdir()
270d1e39 63
64Concatenate two or more directory names to form a complete path ending
65with a directory. But remove the trailing slash from the resulting
66string, because it doesn't look good, isn't necessary and confuses
67OS2. Of course, if this is the root directory, don't cut off the
68trailing slash :-)
69
70=cut
71
270d1e39 72sub catdir {
cbc7acb0 73 my $self = shift;
270d1e39 74 my @args = @_;
cbc7acb0 75 foreach (@args) {
270d1e39 76 # append a slash to each argument unless it has one there
cbc7acb0 77 $_ .= "/" if $_ eq '' || substr($_,-1) ne "/";
270d1e39 78 }
cbc7acb0 79 return $self->canonpath(join('', @args));
270d1e39 80}
81
82=item catfile
83
84Concatenate one or more directory names and a filename to form a
85complete path ending with a filename
86
87=cut
88
89sub catfile {
cbc7acb0 90 my $self = shift;
270d1e39 91 my $file = pop @_;
92 return $file unless @_;
93 my $dir = $self->catdir(@_);
cbc7acb0 94 $dir .= "/" unless substr($dir,-1) eq "/";
270d1e39 95 return $dir.$file;
96}
97
98=item curdir
99
cbc7acb0 100Returns a string representation of the current directory. "." on UNIX.
270d1e39 101
102=cut
103
104sub curdir {
cbc7acb0 105 return ".";
270d1e39 106}
107
99804bbb 108=item devnull
109
cbc7acb0 110Returns a string representation of the null device. "/dev/null" on UNIX.
99804bbb 111
112=cut
113
114sub devnull {
115 return "/dev/null";
116}
117
270d1e39 118=item rootdir
119
cbc7acb0 120Returns a string representation of the root directory. "/" on UNIX.
270d1e39 121
122=cut
123
124sub rootdir {
125 return "/";
126}
127
cbc7acb0 128=item tmpdir
129
130Returns a string representation of the first writable directory
131from the following list or "" if none are writable:
132
133 $ENV{TMPDIR}
134 /tmp
135
b4c5e263 136Since perl 5.8.0, if running under taint mode, and if $ENV{TMPDIR}
137is tainted, it is not used.
138
cbc7acb0 139=cut
140
141my $tmpdir;
142sub tmpdir {
143 return $tmpdir if defined $tmpdir;
4afb7519 144 my @dirlist = ( "/tmp" );
145 if ( exists $ENV{TMPDIR} )
5b577f92 146 {
4afb7519 147 unshift @dirlist, $ENV{TMPDIR};
5b577f92 148 no strict 'refs';
149 if (${"\cTAINT"}) { # Check for taint mode on perl >= 5.8.0
150 require Scalar::Util;
151 shift @dirlist if Scalar::Util::tainted($ENV{TMPDIR});
152 }
b4c5e263 153 }
154 foreach (@dirlist) {
cbc7acb0 155 next unless defined && -d && -w _;
156 $tmpdir = $_;
157 last;
158 }
159 $tmpdir = '' unless defined $tmpdir;
160 return $tmpdir;
161}
162
270d1e39 163=item updir
164
cbc7acb0 165Returns a string representation of the parent directory. ".." on UNIX.
270d1e39 166
167=cut
168
169sub updir {
170 return "..";
171}
172
173=item no_upwards
174
175Given a list of file names, strip out those that refer to a parent
176directory. (Does not strip symlinks, only '.', '..', and equivalents.)
177
178=cut
179
180sub no_upwards {
cbc7acb0 181 my $self = shift;
9c045eb2 182 return grep(!/^\.{1,2}\Z(?!\n)/s, @_);
270d1e39 183}
184
46726cbe 185=item case_tolerant
186
187Returns a true or false value indicating, respectively, that alphabetic
188is not or is significant when comparing file specifications.
189
190=cut
191
192sub case_tolerant {
193 return 0;
194}
195
270d1e39 196=item file_name_is_absolute
197
3c32ced9 198Takes as argument a path and returns true if it is an absolute path.
199
2586ba89 200This does not consult the local filesystem on Unix, Win32, OS/2 or Mac
201OS (Classic). It does consult the working environment for VMS (see
3c32ced9 202L<File::Spec::VMS/file_name_is_absolute>).
270d1e39 203
204=cut
205
206sub file_name_is_absolute {
cbc7acb0 207 my ($self,$file) = @_;
1b1e14d3 208 return scalar($file =~ m:^/:s);
270d1e39 209}
210
211=item path
212
213Takes no argument, returns the environment variable PATH as an array.
214
215=cut
216
217sub path {
cbc7acb0 218 my @path = split(':', $ENV{PATH});
219 foreach (@path) { $_ = '.' if $_ eq '' }
220 return @path;
270d1e39 221}
222
223=item join
224
225join is the same as catfile.
226
227=cut
228
229sub join {
cbc7acb0 230 my $self = shift;
231 return $self->catfile(@_);
270d1e39 232}
233
c27914c9 234=item splitpath
235
236 ($volume,$directories,$file) = File::Spec->splitpath( $path );
237 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
238
239Splits a path in to volume, directory, and filename portions. On systems
240with no concept of volume, returns undef for volume.
241
242For systems with no syntax differentiating filenames from directories,
243assumes that the last file is a path unless $no_file is true or a
244trailing separator or /. or /.. is present. On Unix this means that $no_file
245true makes this return ( '', $path, '' ).
246
247The directory portion may or may not be returned with a trailing '/'.
248
249The results can be passed to L</catpath()> to get back a path equivalent to
250(usually identical to) the original path.
251
252=cut
253
254sub splitpath {
255 my ($self,$path, $nofile) = @_;
256
257 my ($volume,$directory,$file) = ('','','');
258
259 if ( $nofile ) {
260 $directory = $path;
261 }
262 else {
9c045eb2 263 $path =~ m|^ ( (?: .* / (?: \.\.?\Z(?!\n) )? )? ) ([^/]*) |xs;
c27914c9 264 $directory = $1;
265 $file = $2;
266 }
267
268 return ($volume,$directory,$file);
269}
270
271
272=item splitdir
273
274The opposite of L</catdir()>.
275
276 @dirs = File::Spec->splitdir( $directories );
277
278$directories must be only the directory portion of the path on systems
279that have the concept of a volume or that have path syntax that differentiates
280files from directories.
281
200f06d0 282Unlike just splitting the directories on the separator, empty
283directory names (C<''>) can be returned, because these are significant
2586ba89 284on some OSs.
c27914c9 285
200f06d0 286On Unix,
287
288 File::Spec->splitdir( "/a/b//c/" );
c27914c9 289
290Yields:
291
292 ( '', 'a', 'b', '', 'c', '' )
293
294=cut
295
296sub splitdir {
297 my ($self,$directories) = @_ ;
298 #
299 # split() likes to forget about trailing null fields, so here we
300 # check to be sure that there will not be any before handling the
301 # simple case.
302 #
9c045eb2 303 if ( $directories !~ m|/\Z(?!\n)| ) {
c27914c9 304 return split( m|/|, $directories );
305 }
306 else {
307 #
308 # since there was a trailing separator, add a file name to the end,
309 # then do the split, then replace it with ''.
310 #
311 my( @directories )= split( m|/|, "${directories}dummy" ) ;
312 $directories[ $#directories ]= '' ;
313 return @directories ;
314 }
315}
316
317
59605c55 318=item catpath()
c27914c9 319
320Takes volume, directory and file portions and returns an entire path. Under
0994714a 321Unix, $volume is ignored, and directory and file are catenated. A '/' is
529a1a84 322inserted if needed (though if the directory portion doesn't start with
323'/' it is not added). On other OSs, $volume is significant.
c27914c9 324
325=cut
326
327sub catpath {
328 my ($self,$volume,$directory,$file) = @_;
329
330 if ( $directory ne '' &&
331 $file ne '' &&
332 substr( $directory, -1 ) ne '/' &&
333 substr( $file, 0, 1 ) ne '/'
334 ) {
335 $directory .= "/$file" ;
336 }
337 else {
338 $directory .= $file ;
339 }
340
341 return $directory ;
342}
343
344=item abs2rel
345
346Takes a destination path and an optional base path returns a relative path
347from the base path to the destination path:
348
3c32ced9 349 $rel_path = File::Spec->abs2rel( $path ) ;
350 $rel_path = File::Spec->abs2rel( $path, $base ) ;
c27914c9 351
59605c55 352If $base is not present or '', then L<cwd()|Cwd> is used. If $base is relative,
c27914c9 353then it is converted to absolute form using L</rel2abs()>. This means that it
59605c55 354is taken to be relative to L<cwd()|Cwd>.
c27914c9 355
356On systems with the concept of a volume, this assumes that both paths
357are on the $destination volume, and ignores the $base volume.
358
359On systems that have a grammar that indicates filenames, this ignores the
360$base filename as well. Otherwise all path components are assumed to be
361directories.
362
363If $path is relative, it is converted to absolute form using L</rel2abs()>.
59605c55 364This means that it is taken to be relative to L<cwd()|Cwd>.
c27914c9 365
2586ba89 366No checks against the filesystem are made. On VMS, there is
3c32ced9 367interaction with the working environment, as logicals and
368macros are expanded.
c27914c9 369
3c32ced9 370Based on code written by Shigio Yamaguchi.
c27914c9 371
372=cut
373
374sub abs2rel {
375 my($self,$path,$base) = @_;
376
377 # Clean up $path
378 if ( ! $self->file_name_is_absolute( $path ) ) {
379 $path = $self->rel2abs( $path ) ;
380 }
381 else {
382 $path = $self->canonpath( $path ) ;
383 }
384
385 # Figure out the effective $base and clean it up.
386 if ( !defined( $base ) || $base eq '' ) {
387 $base = cwd() ;
388 }
389 elsif ( ! $self->file_name_is_absolute( $base ) ) {
390 $base = $self->rel2abs( $base ) ;
391 }
392 else {
393 $base = $self->canonpath( $base ) ;
394 }
395
396 # Now, remove all leading components that are the same
6fd19b73 397 my @pathchunks = $self->splitdir( $path);
398 my @basechunks = $self->splitdir( $base);
399
400 while (@pathchunks && @basechunks && $pathchunks[0] eq $basechunks[0]) {
c27914c9 401 shift @pathchunks ;
402 shift @basechunks ;
403 }
404
6fd19b73 405 $path = CORE::join( '/', @pathchunks );
406 $base = CORE::join( '/', @basechunks );
407
408 # $base now contains the directories the resulting relative path
c27914c9 409 # must ascend out of before it can descend to $path_directory. So,
410 # replace all names with $parentDir
6fd19b73 411 $base =~ s|[^/]+|..|g ;
c27914c9 412
413 # Glue the two together, using a separator if necessary, and preventing an
414 # empty result.
6fd19b73 415 if ( $path ne '' && $base ne '' ) {
416 $path = "$base/$path" ;
417 } else {
418 $path = "$base$path" ;
419 }
c27914c9 420
421 return $self->canonpath( $path ) ;
422}
423
59605c55 424=item rel2abs()
c27914c9 425
426Converts a relative path to an absolute path.
427
3c32ced9 428 $abs_path = File::Spec->rel2abs( $path ) ;
429 $abs_path = File::Spec->rel2abs( $path, $base ) ;
c27914c9 430
59605c55 431If $base is not present or '', then L<cwd()|Cwd> is used. If $base is relative,
c27914c9 432then it is converted to absolute form using L</rel2abs()>. This means that it
59605c55 433is taken to be relative to L<cwd()|Cwd>.
c27914c9 434
435On systems with the concept of a volume, this assumes that both paths
3c32ced9 436are on the $base volume, and ignores the $path volume.
c27914c9 437
438On systems that have a grammar that indicates filenames, this ignores the
439$base filename as well. Otherwise all path components are assumed to be
440directories.
441
442If $path is absolute, it is cleaned up and returned using L</canonpath()>.
443
2586ba89 444No checks against the filesystem are made. On VMS, there is
3c32ced9 445interaction with the working environment, as logicals and
446macros are expanded.
c27914c9 447
3c32ced9 448Based on code written by Shigio Yamaguchi.
c27914c9 449
450=cut
451
786b702f 452sub rel2abs {
c27914c9 453 my ($self,$path,$base ) = @_;
454
455 # Clean up $path
456 if ( ! $self->file_name_is_absolute( $path ) ) {
457 # Figure out the effective $base and clean it up.
458 if ( !defined( $base ) || $base eq '' ) {
459 $base = cwd() ;
460 }
461 elsif ( ! $self->file_name_is_absolute( $base ) ) {
462 $base = $self->rel2abs( $base ) ;
463 }
464 else {
465 $base = $self->canonpath( $base ) ;
466 }
467
468 # Glom them together
6fd19b73 469 $path = $self->catdir( $base, $path ) ;
c27914c9 470 }
471
472 return $self->canonpath( $path ) ;
473}
474
475
270d1e39 476=back
477
478=head1 SEE ALSO
479
480L<File::Spec>
481
482=cut
483
4841;