Fix the doc for splitpath() in the File::Spec modules :
[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;
02961b52 91 my $file = File::Spec->canonpath(pop @_);
270d1e39 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;
97ea268b 144 my @dirlist = ($ENV{TMPDIR}, "/tmp");
5b577f92 145 {
146 no strict 'refs';
147 if (${"\cTAINT"}) { # Check for taint mode on perl >= 5.8.0
148 require Scalar::Util;
149 shift @dirlist if Scalar::Util::tainted($ENV{TMPDIR});
150 }
b4c5e263 151 }
152 foreach (@dirlist) {
cbc7acb0 153 next unless defined && -d && -w _;
154 $tmpdir = $_;
155 last;
156 }
157 $tmpdir = '' unless defined $tmpdir;
158 return $tmpdir;
159}
160
270d1e39 161=item updir
162
cbc7acb0 163Returns a string representation of the parent directory. ".." on UNIX.
270d1e39 164
165=cut
166
167sub updir {
168 return "..";
169}
170
171=item no_upwards
172
173Given a list of file names, strip out those that refer to a parent
174directory. (Does not strip symlinks, only '.', '..', and equivalents.)
175
176=cut
177
178sub no_upwards {
cbc7acb0 179 my $self = shift;
9c045eb2 180 return grep(!/^\.{1,2}\Z(?!\n)/s, @_);
270d1e39 181}
182
46726cbe 183=item case_tolerant
184
185Returns a true or false value indicating, respectively, that alphabetic
186is not or is significant when comparing file specifications.
187
188=cut
189
190sub case_tolerant {
191 return 0;
192}
193
270d1e39 194=item file_name_is_absolute
195
3c32ced9 196Takes as argument a path and returns true if it is an absolute path.
197
2586ba89 198This does not consult the local filesystem on Unix, Win32, OS/2 or Mac
199OS (Classic). It does consult the working environment for VMS (see
3c32ced9 200L<File::Spec::VMS/file_name_is_absolute>).
270d1e39 201
202=cut
203
204sub file_name_is_absolute {
cbc7acb0 205 my ($self,$file) = @_;
1b1e14d3 206 return scalar($file =~ m:^/:s);
270d1e39 207}
208
209=item path
210
211Takes no argument, returns the environment variable PATH as an array.
212
213=cut
214
215sub path {
802aa3ba 216 return () unless exists $ENV{PATH};
cbc7acb0 217 my @path = split(':', $ENV{PATH});
218 foreach (@path) { $_ = '.' if $_ eq '' }
219 return @path;
270d1e39 220}
221
222=item join
223
224join is the same as catfile.
225
226=cut
227
228sub join {
cbc7acb0 229 my $self = shift;
230 return $self->catfile(@_);
270d1e39 231}
232
c27914c9 233=item splitpath
234
235 ($volume,$directories,$file) = File::Spec->splitpath( $path );
236 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
237
40d020d9 238Splits a path into volume, directory, and filename portions. On systems
239with no concept of volume, returns '' for volume.
c27914c9 240
241For systems with no syntax differentiating filenames from directories,
242assumes that the last file is a path unless $no_file is true or a
243trailing separator or /. or /.. is present. On Unix this means that $no_file
244true makes this return ( '', $path, '' ).
245
246The directory portion may or may not be returned with a trailing '/'.
247
248The results can be passed to L</catpath()> to get back a path equivalent to
249(usually identical to) the original path.
250
251=cut
252
253sub splitpath {
254 my ($self,$path, $nofile) = @_;
255
256 my ($volume,$directory,$file) = ('','','');
257
258 if ( $nofile ) {
259 $directory = $path;
260 }
261 else {
9c045eb2 262 $path =~ m|^ ( (?: .* / (?: \.\.?\Z(?!\n) )? )? ) ([^/]*) |xs;
c27914c9 263 $directory = $1;
264 $file = $2;
265 }
266
267 return ($volume,$directory,$file);
268}
269
270
271=item splitdir
272
273The opposite of L</catdir()>.
274
275 @dirs = File::Spec->splitdir( $directories );
276
277$directories must be only the directory portion of the path on systems
278that have the concept of a volume or that have path syntax that differentiates
279files from directories.
280
200f06d0 281Unlike just splitting the directories on the separator, empty
282directory names (C<''>) can be returned, because these are significant
2586ba89 283on some OSs.
c27914c9 284
200f06d0 285On Unix,
286
287 File::Spec->splitdir( "/a/b//c/" );
c27914c9 288
289Yields:
290
291 ( '', 'a', 'b', '', 'c', '' )
292
293=cut
294
295sub splitdir {
296 my ($self,$directories) = @_ ;
297 #
298 # split() likes to forget about trailing null fields, so here we
299 # check to be sure that there will not be any before handling the
300 # simple case.
301 #
9c045eb2 302 if ( $directories !~ m|/\Z(?!\n)| ) {
c27914c9 303 return split( m|/|, $directories );
304 }
305 else {
306 #
307 # since there was a trailing separator, add a file name to the end,
308 # then do the split, then replace it with ''.
309 #
310 my( @directories )= split( m|/|, "${directories}dummy" ) ;
311 $directories[ $#directories ]= '' ;
312 return @directories ;
313 }
314}
315
316
59605c55 317=item catpath()
c27914c9 318
319Takes volume, directory and file portions and returns an entire path. Under
0994714a 320Unix, $volume is ignored, and directory and file are catenated. A '/' is
529a1a84 321inserted if needed (though if the directory portion doesn't start with
322'/' it is not added). On other OSs, $volume is significant.
c27914c9 323
324=cut
325
326sub catpath {
327 my ($self,$volume,$directory,$file) = @_;
328
329 if ( $directory ne '' &&
330 $file ne '' &&
331 substr( $directory, -1 ) ne '/' &&
332 substr( $file, 0, 1 ) ne '/'
333 ) {
334 $directory .= "/$file" ;
335 }
336 else {
337 $directory .= $file ;
338 }
339
340 return $directory ;
341}
342
343=item abs2rel
344
345Takes a destination path and an optional base path returns a relative path
346from the base path to the destination path:
347
3c32ced9 348 $rel_path = File::Spec->abs2rel( $path ) ;
349 $rel_path = File::Spec->abs2rel( $path, $base ) ;
c27914c9 350
59605c55 351If $base is not present or '', then L<cwd()|Cwd> is used. If $base is relative,
c27914c9 352then it is converted to absolute form using L</rel2abs()>. This means that it
59605c55 353is taken to be relative to L<cwd()|Cwd>.
c27914c9 354
355On systems with the concept of a volume, this assumes that both paths
356are on the $destination volume, and ignores the $base volume.
357
358On systems that have a grammar that indicates filenames, this ignores the
359$base filename as well. Otherwise all path components are assumed to be
360directories.
361
362If $path is relative, it is converted to absolute form using L</rel2abs()>.
59605c55 363This means that it is taken to be relative to L<cwd()|Cwd>.
c27914c9 364
2586ba89 365No checks against the filesystem are made. On VMS, there is
3c32ced9 366interaction with the working environment, as logicals and
367macros are expanded.
c27914c9 368
3c32ced9 369Based on code written by Shigio Yamaguchi.
c27914c9 370
371=cut
372
373sub abs2rel {
374 my($self,$path,$base) = @_;
375
376 # Clean up $path
377 if ( ! $self->file_name_is_absolute( $path ) ) {
378 $path = $self->rel2abs( $path ) ;
379 }
380 else {
381 $path = $self->canonpath( $path ) ;
382 }
383
384 # Figure out the effective $base and clean it up.
385 if ( !defined( $base ) || $base eq '' ) {
386 $base = cwd() ;
387 }
388 elsif ( ! $self->file_name_is_absolute( $base ) ) {
389 $base = $self->rel2abs( $base ) ;
390 }
391 else {
392 $base = $self->canonpath( $base ) ;
393 }
394
395 # Now, remove all leading components that are the same
6fd19b73 396 my @pathchunks = $self->splitdir( $path);
397 my @basechunks = $self->splitdir( $base);
398
399 while (@pathchunks && @basechunks && $pathchunks[0] eq $basechunks[0]) {
c27914c9 400 shift @pathchunks ;
401 shift @basechunks ;
402 }
403
6fd19b73 404 $path = CORE::join( '/', @pathchunks );
405 $base = CORE::join( '/', @basechunks );
406
407 # $base now contains the directories the resulting relative path
c27914c9 408 # must ascend out of before it can descend to $path_directory. So,
409 # replace all names with $parentDir
6fd19b73 410 $base =~ s|[^/]+|..|g ;
c27914c9 411
412 # Glue the two together, using a separator if necessary, and preventing an
413 # empty result.
6fd19b73 414 if ( $path ne '' && $base ne '' ) {
415 $path = "$base/$path" ;
416 } else {
417 $path = "$base$path" ;
418 }
c27914c9 419
420 return $self->canonpath( $path ) ;
421}
422
59605c55 423=item rel2abs()
c27914c9 424
425Converts a relative path to an absolute path.
426
3c32ced9 427 $abs_path = File::Spec->rel2abs( $path ) ;
428 $abs_path = File::Spec->rel2abs( $path, $base ) ;
c27914c9 429
59605c55 430If $base is not present or '', then L<cwd()|Cwd> is used. If $base is relative,
c27914c9 431then it is converted to absolute form using L</rel2abs()>. This means that it
59605c55 432is taken to be relative to L<cwd()|Cwd>.
c27914c9 433
434On systems with the concept of a volume, this assumes that both paths
3c32ced9 435are on the $base volume, and ignores the $path volume.
c27914c9 436
437On systems that have a grammar that indicates filenames, this ignores the
438$base filename as well. Otherwise all path components are assumed to be
439directories.
440
441If $path is absolute, it is cleaned up and returned using L</canonpath()>.
442
2586ba89 443No checks against the filesystem are made. On VMS, there is
3c32ced9 444interaction with the working environment, as logicals and
445macros are expanded.
c27914c9 446
3c32ced9 447Based on code written by Shigio Yamaguchi.
c27914c9 448
449=cut
450
786b702f 451sub rel2abs {
c27914c9 452 my ($self,$path,$base ) = @_;
453
454 # Clean up $path
455 if ( ! $self->file_name_is_absolute( $path ) ) {
456 # Figure out the effective $base and clean it up.
457 if ( !defined( $base ) || $base eq '' ) {
458 $base = cwd() ;
459 }
460 elsif ( ! $self->file_name_is_absolute( $base ) ) {
461 $base = $self->rel2abs( $base ) ;
462 }
463 else {
464 $base = $self->canonpath( $base ) ;
465 }
466
467 # Glom them together
6fd19b73 468 $path = $self->catdir( $base, $path ) ;
c27914c9 469 }
470
471 return $self->canonpath( $path ) ;
472}
473
474
270d1e39 475=back
476
477=head1 SEE ALSO
478
479L<File::Spec>
480
481=cut
482
4831;