File Coverage

inc/Module/Install.pm
Criterion Covered Total %
statement 128 157 81.5
branch 29 64 45.3
condition 10 29 34.4
subroutine 20 20 100.0
pod 0 7 0.0
total 187 277 67.5


line stmt bran cond sub pod time code
1             #line 1
2             package Module::Install;
3              
4             # For any maintainers:
5             # The load order for Module::Install is a bit magic.
6             # It goes something like this...
7             #
8             # IF ( host has Module::Install installed, creating author mode ) {
9             # 1. Makefile.PL calls "use inc::Module::Install"
10             # 2. $INC{inc/Module/Install.pm} set to installed version of inc::Module::Install
11             # 3. The installed version of inc::Module::Install loads
12             # 4. inc::Module::Install calls "require Module::Install"
13             # 5. The ./inc/ version of Module::Install loads
14             # } ELSE {
15             # 1. Makefile.PL calls "use inc::Module::Install"
16             # 2. $INC{inc/Module/Install.pm} set to ./inc/ version of Module::Install
17             # 3. The ./inc/ version of Module::Install loads
18             # }
19 1     1   29  
  1         5  
  1         34  
20 1     1   5 use 5.004;
  1         2  
  1         30  
21             use strict 'vars';
22 1     1   7  
  1         2  
  1         54  
23             use vars qw{$VERSION};
24             BEGIN {
25             # All Module::Install core packages now require synchronised versions.
26             # This will be used to ensure we don't accidentally load old or
27             # different versions of modules.
28             # This is not enforced yet, but will be some time in the next few
29             # releases once we can make sure it won't clash with custom
30 1     1   161 # Module::Install extensions.
31             $VERSION = '0.64';
32             }
33              
34             # Whether or not inc::Module::Install is actually loaded, the
35             # $INC{inc/Module/Install.pm} is what will still get set as long as
36             # the caller loaded module this in the documented manner.
37             # If not set, the caller may NOT have loaded the bundled version, and thus
38             # they may not have a MI version that works with the Makefile.PL. This would
39             # result in false errors or unexpected behaviour. And we don't want that.
40             my $file = join( '/', 'inc', split /::/, __PACKAGE__ ) . '.pm';
41             unless ( $INC{$file} ) {
42             die <<"END_DIE";
43             Please invoke ${\__PACKAGE__} with:
44              
45             use inc::${\__PACKAGE__};
46              
47             not:
48              
49             use ${\__PACKAGE__};
50              
51             END_DIE
52             }
53              
54             # If the script that is loading Module::Install is from the future,
55             # then make will detect this and cause it to re-run over and over
56             # again. This is bad. Rather than taking action to touch it (which
57             # is unreliable on some platforms and requires write permissions)
58             # for now we should catch this and refuse to run.
59             if ( -f $0 and (stat($0))[9] > time ) {
60             die << "END_DIE";
61             Your installer $0 has a modification time in the future.
62              
63             This is known to create infinite loops in make.
64              
65             Please correct this, then run $0 again.
66              
67             END_DIE
68             }
69 1     1   5  
  1         1  
  1         12  
70 1     1   4 use Cwd ();
  1         2  
  1         11  
71 1     1   4 use File::Find ();
  1         1  
  1         16  
72 1     1   794 use File::Path ();
  1         1140  
  1         1759  
73             use FindBin;
74              
75             *inc::Module::Install::VERSION = *VERSION;
76             @inc::Module::Install::ISA = __PACKAGE__;
77              
78 4     4 0 25 sub autoload {
79 4         41 my $self = shift;
80 4         31314 my $who = $self->_caller;
81 4         81 my $cwd = Cwd::cwd();
82             my $sym = "${who}::AUTOLOAD";
83 8     8   87505 $sym->{$cwd} = sub {
84 8 50       1117 my $pwd = Cwd::cwd();
85             if ( my $code = $sym->{$pwd} ) {
86 8 50       62 # delegate back to parent dirs
87             goto &$code unless $cwd eq $pwd;
88 8 50       351 }
89 8         665 $$sym =~ /([^:]+)$/ or die "Cannot autoload $who - $sym";
90 8 50       108 unshift @_, ($self, $1);
  8         677  
91 4         747 goto &{$self->can('call')} unless uc($1) eq $1;
92             };
93             }
94              
95 1     1   2 sub import {
96 1         5 my $class = shift;
97 1         10 my $self = $class->new(@_);
98             my $who = $self->_caller;
99 1 50       44  
100 0         0 unless ( -f $self->{file} ) {
101 0         0 require "$self->{path}/$self->{dispatch}.pm";
102 0         0 File::Path::mkpath("$self->{prefix}/$self->{author}");
103 0         0 $self->{admin} = "$self->{name}::$self->{dispatch}"->new( _top => $self );
104 0         0 $self->{admin}->init;
105 0         0 @_ = ($class, _self => $self);
  0         0  
106             goto &{"$self->{name}::import"};
107             }
108 1         8  
  1         19  
109 1         20 *{"${who}::AUTOLOAD"} = $self->autoload;
110             $self->preload;
111              
112 1         7 # Unregister loader and worker packages so subdirs can use them again
113 1         1904 delete $INC{"$self->{file}"};
114             delete $INC{"$self->{path}.pm"};
115             }
116              
117 1     1 0 7 sub preload {
118             my ($self) = @_;
119 1 50       8  
120 1         19 unless ( $self->{extensions} ) {
121             $self->load_extensions(
122             "$self->{prefix}/$self->{path}", $self
123             );
124             }
125 1         2  
  1         6  
126 1 50       4 my @exts = @{$self->{extensions}};
127 0         0 unless ( @exts ) {
128 0         0 my $admin = $self->{admin};
129             @exts = $admin->load_all_extensions;
130             }
131 1         3  
132 1         6 my %seen;
133 9         9 foreach my $obj ( @exts ) {
  152         772  
134 143 100       542 while (my ($method, $glob) = each %{ref($obj) . '::'}) {
135 111 100       240 next unless $obj->can($method);
136 109 100       218 next if $method =~ /^_/;
137 98         239 next if $method eq uc($method);
138             $seen{$method}++;
139             }
140             }
141 1         5  
142 1         36 my $who = $self->_caller;
143 64         268 foreach my $name ( sort keys %seen ) {
144 5     5   35 *{"${who}::$name"} = sub {
  5         33  
145 5         12 ${"${who}::AUTOLOAD"} = "${who}::$name";
  5         39  
146 64         215 goto &{"${who}::AUTOLOAD"};
147             };
148             }
149             }
150              
151 1     1 0 3 sub new {
152             my ($class, %args) = @_;
153              
154 1         41 # ignore the prefix on extension modules built from top level.
155 1 50       12144 my $base_path = Cwd::abs_path($FindBin::Bin);
156 0         0 unless ( Cwd::abs_path(Cwd::cwd()) eq $base_path ) {
157             delete $args{prefix};
158             }
159 1 50       17  
160             return $args{_self} if $args{_self};
161 1   50     25  
162 1   50     22 $args{dispatch} ||= 'Admin';
163 1 50 33     59 $args{prefix} ||= 'inc';
164 1   50     6 $args{author} ||= ($^O eq 'VMS' ? '_author' : '.author');
165 1   33     13 $args{bundle} ||= 'inc/BUNDLES';
166 1         53 $args{base} ||= $base_path;
167 1   33     15 $class =~ s/^\Q$args{prefix}\E:://;
168 1   33     39 $args{name} ||= $class;
169 1 50       12 $args{version} ||= $class->VERSION;
170 1         10 unless ( $args{path} ) {
171 1         8 $args{path} = $args{name};
172             $args{path} =~ s!::!/!g;
173 1   33     15 }
174             $args{file} ||= "$args{base}/$args{prefix}/$args{path}.pm";
175 1         13  
176             bless( \%args, $class );
177             }
178              
179 8     8 0 68 sub call {
180 8 50       328 my ($self, $method) = @_;
181 8         51 my $obj = $self->load($method) or return;
182 8         100 splice(@_, 0, 2, $obj);
  8         235  
183             goto &{$obj->can($method)};
184             }
185              
186 8     8 0 48 sub load {
187             my ($self, $method) = @_;
188 8 50       69  
189             $self->load_extensions(
190             "$self->{prefix}/$self->{path}", $self
191             ) unless $self->{extensions};
192 8         14  
  8         80  
193 52 100       1249 foreach my $obj (@{$self->{extensions}}) {
194             return $obj if $obj->can($method);
195             }
196 0 0       0  
197             my $admin = $self->{admin} or die <<"END_DIE";
198             The '$method' method does not exist in the '$self->{prefix}' path!
199             Please remove the '$self->{prefix}' directory and run $0 again to load it.
200             END_DIE
201 0         0  
202 0         0 my $obj = $admin->load($method, 1);
  0         0  
203             push @{$self->{extensions}}, $obj;
204 0         0  
205             $obj;
206             }
207              
208 1     1 0 8 sub load_extensions {
209             my ($self, $path, $top) = @_;
210 1 50       12  
  10         37  
211 0         0 unless ( grep { lc $_ eq lc $self->{prefix} } @INC ) {
212             unshift @INC, $self->{prefix};
213             }
214 1         8  
215 9         16 foreach my $rv ( $self->find_extensions($path) ) {
  9         24  
216 9 50       33 my ($file, $pkg) = @{$rv};
217             next if $self->{pathnames}{$pkg};
218 9         11  
219 9         12 local $@;
  9         17639  
  9         172  
220 9 50       77 my $new = eval { require $file; $pkg->can('new') };
221 0 0       0 unless ( $new ) {
222 0         0 warn $@ if $@;
223             next;
224 9         61 }
225 9         20 $self->{pathnames}{$pkg} = delete $INC{$file};
  9         24  
  9         39  
226             push @{$self->{extensions}}, &{$new}($pkg, _top => $top );
227             }
228 1   50     13  
229             $self->{extensions} ||= [];
230             }
231              
232 1     1 0 3 sub find_extensions {
233             my ($self, $path) = @_;
234 1         4  
235             my @found;
236 10     10   12 File::Find::find( sub {
237 10 100       218 my $file = $File::Find::name;
238 9         19 return unless $file =~ m!^\Q$path\E/(.+)\.pm\Z!is;
239 9 50       139 my $subpath = $1;
240             return if lc($subpath) eq lc($self->{dispatch});
241 9         16  
242 9         17 $file = "$self->{path}/$subpath.pm";
243 9         11 my $pkg = "$self->{name}::$subpath";
244             $pkg =~ s!/!::!g;
245              
246             # If we have a mixed-case package name, assume case has been preserved
247             # correctly. Otherwise, root through the file to locate the case-preserved
248 9 50 33     38 # version of the package name.
249 0 0       0 if ( $subpath eq lc($subpath) || $subpath eq uc($subpath) ) {
250 0         0 open PKGFILE, "<$subpath.pm" or die "find_extensions: Can't open $subpath.pm: $!";
251 0         0 my $in_pod = 0;
252 0 0       0 while ( ) {
253 0 0       0 $in_pod = 1 if /^=\w/;
254 0 0 0     0 $in_pod = 0 if /^=cut/;
255 0 0       0 next if ($in_pod || /^=cut/); # skip pod text
256 0 0       0 next if /^\s*#/; # and comments
257 0         0 if ( m/^\s*package\s+($pkg)\s*;/i ) {
258 0         0 $pkg = $1;
259             last;
260             }
261 0         0 }
262             close PKGFILE;
263             }
264 9         98  
265 1 50       274 push @found, [ $file, $pkg ];
266             }, $path ) if -d $path;
267 1         15  
268             @found;
269             }
270              
271 6     6   14 sub _caller {
272 6         35 my $depth = 0;
273 6         116 my $call = caller($depth);
274 8         12 while ( $call eq __PACKAGE__ ) {
275 8         34 $depth++;
276             $call = caller($depth);
277 6         179 }
278             return $call;
279             }
280              
281             1;