Compare core to Attribute::Handlers 0.87 from CPAN
[p5sagit/p5-mst-13.2.git] / ext / lib / lib.pm
CommitLineData
248f3028 1package lib;
2
3# THIS FILE IS AUTOMATICALLY GENERATED FROM lib_pm.PL.
4# ANY CHANGES TO THIS FILE WILL BE OVERWRITTEN BY THE NEXT PERL BUILD.
5
6use Config;
7
8use strict;
9
10my $archname = $Config{archname};
11my $version = $Config{version};
12my @inc_version_list = reverse split / /, $Config{inc_version_list};
13
14
15our @ORIG_INC = @INC; # take a handy copy of 'original' value
16our $VERSION = '0.62';
17my $Is_MacOS = $^O eq 'MacOS';
18my $Mac_FS;
19if ($Is_MacOS) {
20 require File::Spec;
21 $Mac_FS = eval { require Mac::FileSpec::Unixish };
22}
23
24sub import {
25 shift;
26
27 my %names;
28 foreach (reverse @_) {
29 my $path = $_; # we'll be modifying it, so break the alias
30 if ($path eq '') {
31 require Carp;
32 Carp::carp("Empty compile time value given to use lib");
33 }
34
35 $path = _nativize($path);
36
37 if ($path !~ /\.par$/i && -e $path && ! -d _) {
38 require Carp;
39 Carp::carp("Parameter to use lib must be directory, not file");
40 }
41 unshift(@INC, $path);
42 # Add any previous version directories we found at configure time
43 foreach my $incver (@inc_version_list)
44 {
45 my $dir = $Is_MacOS
46 ? File::Spec->catdir( $path, $incver )
47 : "$path/$incver";
48 unshift(@INC, $dir) if -d $dir;
49 }
50 # Put a corresponding archlib directory in front of $path if it
51 # looks like $path has an archlib directory below it.
52 my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir)
53 = _get_dirs($path);
54 unshift(@INC, $arch_dir) if -d $arch_auto_dir;
55 unshift(@INC, $version_dir) if -d $version_dir;
56 unshift(@INC, $version_arch_dir) if -d $version_arch_dir;
57 }
58
59 # remove trailing duplicates
60 @INC = grep { ++$names{$_} == 1 } @INC;
61 return;
62}
63
64
65sub unimport {
66 shift;
67
68 my %names;
69 foreach (@_) {
70 my $path = _nativize($_);
71
72 my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir)
73 = _get_dirs($path);
74 ++$names{$path};
75 ++$names{$arch_dir} if -d $arch_auto_dir;
76 ++$names{$version_dir} if -d $version_dir;
77 ++$names{$version_arch_dir} if -d $version_arch_dir;
78 }
79
80 # Remove ALL instances of each named directory.
81 @INC = grep { !exists $names{$_} } @INC;
82 return;
83}
84
85sub _get_dirs {
86 my($dir) = @_;
87 my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir);
88
89 # we could use this for all platforms in the future, but leave it
90 # Mac-only for now, until there is more time for testing it.
91 if ($Is_MacOS) {
92 $arch_auto_dir = File::Spec->catdir( $dir, $archname, 'auto' );
93 $arch_dir = File::Spec->catdir( $dir, $archname, );
94 $version_dir = File::Spec->catdir( $dir, $version );
95 $version_arch_dir = File::Spec->catdir( $dir, $version, $archname );
96 } else {
97 $arch_auto_dir = "$dir/$archname/auto";
98 $arch_dir = "$dir/$archname";
99 $version_dir = "$dir/$version";
100 $version_arch_dir = "$dir/$version/$archname";
101 }
102 return($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir);
103}
104
105sub _nativize {
106 my($dir) = @_;
107
108 if ($Is_MacOS && $Mac_FS && ! -d $dir) {
109 $dir = Mac::FileSpec::Unixish::nativize($dir);
110 $dir .= ":" unless $dir =~ /:$/;
111 }
112
113 return $dir;
114}
115
1161;
117__END__
118
119=head1 NAME
120
121lib - manipulate @INC at compile time
122
123=head1 SYNOPSIS
124
125 use lib LIST;
126
127 no lib LIST;
128
129=head1 DESCRIPTION
130
131This is a small simple module which simplifies the manipulation of @INC
132at compile time.
133
134It is typically used to add extra directories to perl's search path so
135that later C<use> or C<require> statements will find modules which are
136not located on perl's default search path.
137
138=head2 Adding directories to @INC
139
140The parameters to C<use lib> are added to the start of the perl search
141path. Saying
142
143 use lib LIST;
144
145is I<almost> the same as saying
146
147 BEGIN { unshift(@INC, LIST) }
148
149For each directory in LIST (called $dir here) the lib module also
150checks to see if a directory called $dir/$archname/auto exists.
151If so the $dir/$archname directory is assumed to be a corresponding
152architecture specific directory and is added to @INC in front of $dir.
153lib.pm also checks if directories called $dir/$version and $dir/$version/$archname
154exist and adds these directories to @INC.
155
156The current value of C<$archname> can be found with this command:
157
158 perl -V:archname
159
160The corresponding command to get the current value of C<$version> is:
161
162 perl -V:version
163
164To avoid memory leaks, all trailing duplicate entries in @INC are
165removed.
166
167=head2 Deleting directories from @INC
168
169You should normally only add directories to @INC. If you need to
170delete directories from @INC take care to only delete those which you
171added yourself or which you are certain are not needed by other modules
172in your script. Other modules may have added directories which they
173need for correct operation.
174
175The C<no lib> statement deletes all instances of each named directory
176from @INC.
177
178For each directory in LIST (called $dir here) the lib module also
179checks to see if a directory called $dir/$archname/auto exists.
180If so the $dir/$archname directory is assumed to be a corresponding
181architecture specific directory and is also deleted from @INC.
182
183=head2 Restoring original @INC
184
185When the lib module is first loaded it records the current value of @INC
186in an array C<@lib::ORIG_INC>. To restore @INC to that value you
187can say
188
189 @INC = @lib::ORIG_INC;
190
191=head1 CAVEATS
192
193In order to keep lib.pm small and simple, it only works with Unix
194filepaths. This doesn't mean it only works on Unix, but non-Unix
195users must first translate their file paths to Unix conventions.
196
197 # VMS users wanting to put [.stuff.moo] into
198 # their @INC would write
199 use lib 'stuff/moo';
200
201=head1 NOTES
202
203In the future, this module will likely use File::Spec for determining
204paths, as it does now for Mac OS (where Unix-style or Mac-style paths
205work, and Unix-style paths are converted properly to Mac-style paths
206before being added to @INC).
207
208If you try to add a file to @INC as follows:
209
210 use lib 'this_is_a_file.txt';
211
212C<lib> will warn about this. The sole exceptions are files with the
213C<.par> extension which are intended to be used as libraries.
214
215=head1 SEE ALSO
216
217FindBin - optional module which deals with paths relative to the source file.
218
219PAR - optional module which can treat C<.par> files as Perl libraries.
220
221=head1 AUTHOR
222
223Tim Bunce, 2nd June 1995.
224
225C<lib> is maintained by the perl5-porters. Please direct
226any questions to the canonical mailing list. Anything that
227is applicable to the CPAN release can be sent to its maintainer,
228though.
229
230Maintainer: The Perl5-Porters <perl5-porters@perl.org>
231
232Maintainer of the CPAN release: Steffen Mueller <smueller@cpan.org>
233
234=head1 COPYRIGHT AND LICENSE
235
236This package has been part of the perl core since perl 5.001.
237It has been released separately to CPAN so older installations
238can benefit from bug fixes.
239
240This package has the same copyright and license as the perl core.
241
242=cut