various pod nits identified by installhtml (all fixed except
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / Mac.pm
CommitLineData
270d1e39 1package File::Spec::Mac;
2
270d1e39 3use strict;
cbc7acb0 4use vars qw(@ISA);
5require File::Spec::Unix;
270d1e39 6@ISA = qw(File::Spec::Unix);
270d1e39 7
8=head1 NAME
9
10File::Spec::Mac - File::Spec for MacOS
11
12=head1 SYNOPSIS
13
cbc7acb0 14 require File::Spec::Mac; # Done internally by File::Spec if needed
270d1e39 15
16=head1 DESCRIPTION
17
18Methods for manipulating file specifications.
19
20=head1 METHODS
21
22=over 2
23
24=item canonpath
25
26On MacOS, there's nothing to be done. Returns what it's given.
27
28=cut
29
30sub canonpath {
cbc7acb0 31 my ($self,$path) = @_;
32 return $path;
270d1e39 33}
34
35=item catdir
36
37Concatenate two or more directory names to form a complete path ending with
38a directory. Put a trailing : on the end of the complete path if there
39isn't one, because that's what's done in MacPerl's environment.
40
41The fundamental requirement of this routine is that
42
43 File::Spec->catdir(split(":",$path)) eq $path
44
45But because of the nature of Macintosh paths, some additional
8dcee03e 46possibilities are allowed to make using this routine give reasonable results
270d1e39 47for some common situations. Here are the rules that are used. Each
48argument has its trailing ":" removed. Each argument, except the first,
49has its leading ":" removed. They are then joined together by a ":".
50
51So
52
53 File::Spec->catdir("a","b") = "a:b:"
54 File::Spec->catdir("a:",":b") = "a:b:"
55 File::Spec->catdir("a:","b") = "a:b:"
56 File::Spec->catdir("a",":b") = "a:b"
57 File::Spec->catdir("a","","b") = "a::b"
58
59etc.
60
61To get a relative path (one beginning with :), begin the first argument with :
62or put a "" as the first argument.
63
64If you don't want to worry about these rules, never allow a ":" on the ends
65of any of the arguments except at the beginning of the first.
66
67Under MacPerl, there is an additional ambiguity. Does the user intend that
68
69 File::Spec->catfile("LWP","Protocol","http.pm")
70
71be relative or absolute? There's no way of telling except by checking for the
8dcee03e 72existence of LWP: or :LWP, and even there he may mean a dismounted volume or
270d1e39 73a relative path in a different directory (like in @INC). So those checks
74aren't done here. This routine will treat this as absolute.
75
76=cut
77
270d1e39 78sub catdir {
79 shift;
80 my @args = @_;
cbc7acb0 81 my $result = shift @args;
82 $result =~ s/:$//;
83 foreach (@args) {
84 s/:$//;
85 s/^://;
86 $result .= ":$_";
270d1e39 87 }
cbc7acb0 88 return "$result:";
270d1e39 89}
90
91=item catfile
92
93Concatenate one or more directory names and a filename to form a
94complete path ending with a filename. Since this uses catdir, the
95same caveats apply. Note that the leading : is removed from the filename,
96so that
97
98 File::Spec->catfile($ENV{HOME},"file");
99
100and
101
102 File::Spec->catfile($ENV{HOME},":file");
103
104give the same answer, as one might expect.
105
106=cut
107
108sub catfile {
cbc7acb0 109 my $self = shift;
270d1e39 110 my $file = pop @_;
111 return $file unless @_;
112 my $dir = $self->catdir(@_);
cbc7acb0 113 $file =~ s/^://;
270d1e39 114 return $dir.$file;
115}
116
117=item curdir
118
cbc7acb0 119Returns a string representing the current directory.
270d1e39 120
121=cut
122
123sub curdir {
cbc7acb0 124 return ":";
125}
126
127=item devnull
128
129Returns a string representing the null device.
130
131=cut
132
133sub devnull {
134 return "Dev:Null";
270d1e39 135}
136
137=item rootdir
138
139Returns a string representing the root directory. Under MacPerl,
140returns the name of the startup volume, since that's the closest in
cbc7acb0 141concept, although other volumes aren't rooted there.
270d1e39 142
143=cut
144
145sub rootdir {
146#
cbc7acb0 147# There's no real root directory on MacOS. The name of the startup
148# volume is returned, since that's the closest in concept.
270d1e39 149#
cbc7acb0 150 require Mac::Files;
151 my $system = Mac::Files::FindFolder(&Mac::Files::kOnSystemDisk,
152 &Mac::Files::kSystemFolderType);
153 $system =~ s/:.*$/:/;
154 return $system;
155}
156
157=item tmpdir
158
159Returns a string representation of the first existing directory
160from the following list or '' if none exist:
161
162 $ENV{TMPDIR}
163
164=cut
165
166my $tmpdir;
167sub tmpdir {
168 return $tmpdir if defined $tmpdir;
169 $tmpdir = $ENV{TMPDIR} if -d $ENV{TMPDIR};
170 $tmpdir = '' unless defined $tmpdir;
171 return $tmpdir;
270d1e39 172}
173
174=item updir
175
176Returns a string representing the parent directory.
177
178=cut
179
180sub updir {
181 return "::";
182}
183
184=item file_name_is_absolute
185
186Takes as argument a path and returns true, if it is an absolute path. In
187the case where a name can be either relative or absolute (for example, a
188folder named "HD" in the current working directory on a drive named "HD"),
189relative wins. Use ":" in the appropriate place in the path if you want to
190distinguish unambiguously.
191
192=cut
193
194sub file_name_is_absolute {
cbc7acb0 195 my ($self,$file) = @_;
196 if ($file =~ /:/) {
197 return ($file !~ m/^:/);
198 } else {
199 return (! -e ":$file");
270d1e39 200 }
201}
202
203=item path
204
205Returns the null list for the MacPerl application, since the concept is
206usually meaningless under MacOS. But if you're using the MacPerl tool under
207MPW, it gives back $ENV{Commands} suitably split, as is done in
208:lib:ExtUtils:MM_Mac.pm.
209
210=cut
211
212sub path {
213#
214# The concept is meaningless under the MacPerl application.
215# Under MPW, it has a meaning.
216#
cbc7acb0 217 return unless exists $ENV{Commands};
218 return split(/,/, $ENV{Commands});
270d1e39 219}
220
221=back
222
223=head1 SEE ALSO
224
225L<File::Spec>
226
227=cut
228
2291;