Time::HiRes: Do not create files in blib directories under core
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / Installed.pm
CommitLineData
354f3b56 1package ExtUtils::Installed;
17f410f9 2
57b1a898 3use 5.00503;
354f3b56 4use strict;
5use Carp qw();
6use ExtUtils::Packlist;
7use ExtUtils::MakeMaker;
8use Config;
9use File::Find;
10use File::Basename;
5de3f0da 11use File::Spec;
f6d6199c 12require VMS::Filespec if $^O eq 'VMS';
13
57b1a898 14use vars qw($VERSION);
d5d4ec93 15$VERSION = '0.06';
007a26ab 16
17my $DOSISH = ($^O =~ /^(MSWin\d\d|os2|dos|mint)$/);
18
f6d6199c 19sub _is_prefix {
20 my ($self, $path, $prefix) = @_;
21 return unless defined $prefix && defined $path;
22
23 if( $^O eq 'VMS' ) {
24 $prefix = VMS::Filespec::unixify($prefix);
25 $path = VMS::Filespec::unixify($path);
26 }
27 return 1 if substr($path, 0, length($prefix)) eq $prefix;
28
29 if ($DOSISH) {
30 $path =~ s|\\|/|g;
31 $prefix =~ s|\\|/|g;
32 return 1 if $path =~ m{^\Q$prefix\E}i;
33 }
34 return(0);
007a26ab 35}
354f3b56 36
f6d6199c 37sub _is_doc {
38 my ($self, $path) = @_;
39 my $man1dir = $Config{man1direxp};
40 my $man3dir = $Config{man3direxp};
41 return(($man1dir && $self->_is_prefix($path, $man1dir))
42 ||
43 ($man3dir && $self->_is_prefix($path, $man3dir))
44 ? 1 : 0)
34dcf69d 45}
46
f6d6199c 47sub _is_type {
48 my ($self, $path, $type) = @_;
49 return 1 if $type eq "all";
50
51 return($self->_is_doc($path)) if $type eq "doc";
52
53 if ($type eq "prog") {
54 return($self->_is_prefix($path, $Config{prefix} || $Config{prefixexp})
55 &&
56 !($self->_is_doc($path))
57 ? 1 : 0);
58 }
59 return(0);
354f3b56 60}
61
f6d6199c 62sub _is_under {
63 my ($self, $path, @under) = @_;
64 $under[0] = "" if (! @under);
65 foreach my $dir (@under) {
66 return(1) if ($self->_is_prefix($path, $dir));
67 }
354f3b56 68
f6d6199c 69 return(0);
354f3b56 70}
71
f6d6199c 72sub new {
73 my ($class) = @_;
74 $class = ref($class) || $class;
75 my $self = {};
76
77 my $archlib = $Config{archlibexp};
78 my $sitearch = $Config{sitearchexp};
79
80 # File::Find does not know how to deal with VMS filepaths.
81 if( $^O eq 'VMS' ) {
82 $archlib = VMS::Filespec::unixify($archlib);
83 $sitearch = VMS::Filespec::unixify($sitearch);
84 }
85
86 if ($DOSISH) {
87 $archlib =~ s|\\|/|g;
88 $sitearch =~ s|\\|/|g;
89 }
90
91 # Read the core packlist
92 $self->{Perl}{packlist} =
93 ExtUtils::Packlist->new( File::Spec->catfile($archlib, '.packlist') );
94 $self->{Perl}{version} = $Config{version};
95
96 # Read the module packlists
97 my $sub = sub {
98 # Only process module .packlists
99 return if ($_) ne ".packlist" || $File::Find::dir eq $archlib;
100
101 # Hack of the leading bits of the paths & convert to a module name
102 my $module = $File::Find::name;
103
104 $module =~ s!\Q$archlib\E/?auto/(.*)/.packlist!$1!s or
105 $module =~ s!\Q$sitearch\E/?auto/(.*)/.packlist!$1!s;
106 my $modfile = "$module.pm";
107 $module =~ s!/!::!g;
108
109 # Find the top-level module file in @INC
110 $self->{$module}{version} = '';
111 foreach my $dir (@INC) {
112 my $p = File::Spec->catfile($dir, $modfile);
113 if (-f $p) {
114 require ExtUtils::MM;
115 $self->{$module}{version} = MM->parse_version($p);
116 last;
117 }
118 }
119
120 # Read the .packlist
121 $self->{$module}{packlist} =
122 ExtUtils::Packlist->new($File::Find::name);
123 };
124
125 my(@dirs) = grep { -e } ($archlib, $sitearch);
126 find($sub, @dirs) if @dirs;
127
128 return(bless($self, $class));
354f3b56 129}
130
f6d6199c 131sub modules {
132 my ($self) = @_;
d5d4ec93 133
134 # Bug/feature of sort in scalar context requires this.
135 return wantarray ? sort keys %$self : keys %$self;
354f3b56 136}
137
f6d6199c 138sub files {
139 my ($self, $module, $type, @under) = @_;
140
141 # Validate arguments
142 Carp::croak("$module is not installed") if (! exists($self->{$module}));
143 $type = "all" if (! defined($type));
144 Carp::croak('type must be "all", "prog" or "doc"')
145 if ($type ne "all" && $type ne "prog" && $type ne "doc");
146
147 my (@files);
148 foreach my $file (keys(%{$self->{$module}{packlist}})) {
149 push(@files, $file)
150 if ($self->_is_type($file, $type) &&
151 $self->_is_under($file, @under));
152 }
153 return(@files);
354f3b56 154}
155
f6d6199c 156sub directories {
157 my ($self, $module, $type, @under) = @_;
158 my (%dirs);
159 foreach my $file ($self->files($module, $type, @under)) {
160 $dirs{dirname($file)}++;
161 }
162 return sort keys %dirs;
354f3b56 163}
164
f6d6199c 165sub directory_tree {
166 my ($self, $module, $type, @under) = @_;
167 my (%dirs);
168 foreach my $dir ($self->directories($module, $type, @under)) {
169 $dirs{$dir}++;
170 my ($last) = ("");
171 while ($last ne $dir) {
172 $last = $dir;
173 $dir = dirname($dir);
174 last if !$self->_is_under($dir, @under);
175 $dirs{$dir}++;
176 }
177 }
178 return(sort(keys(%dirs)));
354f3b56 179}
180
f6d6199c 181sub validate {
182 my ($self, $module, $remove) = @_;
183 Carp::croak("$module is not installed") if (! exists($self->{$module}));
184 return($self->{$module}{packlist}->validate($remove));
354f3b56 185}
186
f6d6199c 187sub packlist {
188 my ($self, $module) = @_;
189 Carp::croak("$module is not installed") if (! exists($self->{$module}));
190 return($self->{$module}{packlist});
354f3b56 191}
192
f6d6199c 193sub version {
194 my ($self, $module) = @_;
195 Carp::croak("$module is not installed") if (! exists($self->{$module}));
196 return($self->{$module}{version});
354f3b56 197}
198
f6d6199c 199
354f3b56 2001;
201
202__END__
203
204=head1 NAME
205
206ExtUtils::Installed - Inventory management of installed modules
207
208=head1 SYNOPSIS
209
210 use ExtUtils::Installed;
211 my ($inst) = ExtUtils::Installed->new();
212 my (@modules) = $inst->modules();
213 my (@missing) = $inst->validate("DBI");
214 my $all_files = $inst->files("DBI");
215 my $files_below_usr_local = $inst->files("DBI", "all", "/usr/local");
216 my $all_dirs = $inst->directories("DBI");
217 my $dirs_below_usr_local = $inst->directory_tree("DBI", "prog");
218 my $packlist = $inst->packlist("DBI");
219
220=head1 DESCRIPTION
221
222ExtUtils::Installed provides a standard way to find out what core and module
223files have been installed. It uses the information stored in .packlist files
224created during installation to provide this information. In addition it
225provides facilities to classify the installed files and to extract directory
226information from the .packlist files.
227
228=head1 USAGE
229
230The new() function searches for all the installed .packlists on the system, and
231stores their contents. The .packlists can be queried with the functions
232described below.
233
234=head1 FUNCTIONS
235
bbc7dcd2 236=over 4
354f3b56 237
238=item new()
239
240This takes no parameters, and searches for all the installed .packlists on the
241system. The packlists are read using the ExtUtils::packlist module.
242
243=item modules()
244
245This returns a list of the names of all the installed modules. The perl 'core'
246is given the special name 'Perl'.
247
248=item files()
249
250This takes one mandatory parameter, the name of a module. It returns a list of
251all the filenames from the package. To obtain a list of core perl files, use
252the module name 'Perl'. Additional parameters are allowed. The first is one
34dcf69d 253of the strings "prog", "doc" or "all", to select either just program files,
354f3b56 254just manual files or all files. The remaining parameters are a list of
255directories. The filenames returned will be restricted to those under the
256specified directories.
257
258=item directories()
259
260This takes one mandatory parameter, the name of a module. It returns a list of
261all the directories from the package. Additional parameters are allowed. The
34dcf69d 262first is one of the strings "prog", "doc" or "all", to select either just
354f3b56 263program directories, just manual directories or all directories. The remaining
264parameters are a list of directories. The directories returned will be
265restricted to those under the specified directories. This method returns only
266the leaf directories that contain files from the specified module.
267
268=item directory_tree()
269
34dcf69d 270This is identical in operation to directories(), except that it includes all the
354f3b56 271intermediate directories back up to the specified directories.
272
273=item validate()
274
275This takes one mandatory parameter, the name of a module. It checks that all
276the files listed in the modules .packlist actually exist, and returns a list of
277any missing files. If an optional second argument which evaluates to true is
278given any missing files will be removed from the .packlist
279
280=item packlist()
281
282This returns the ExtUtils::Packlist object for the specified module.
283
284=item version()
285
286This returns the version number for the specified module.
287
288=back
289
ddf41153 290=head1 EXAMPLE
291
292See the example in L<ExtUtils::Packlist>.
293
354f3b56 294=head1 AUTHOR
295
296Alan Burlison <Alan.Burlison@uk.sun.com>
297
298=cut