1 package Exporter::Heavy;
6 # On one line so MakeMaker will see it.
7 require Exporter; our $VERSION = $Exporter::VERSION;
13 Exporter::Heavy - Exporter guts
21 No user-serviceable parts inside.
26 # We go to a lot of trouble not to 'require Carp' at file scope,
27 # because Carp requires Exporter, and something has to give.
32 # First make import warnings look like they're coming from the "use".
33 local $SIG{__WARN__} = sub {
35 if ($text =~ s/ at \S*Exporter\S*.pm line \d+.*\n//) {
37 local $Carp::CarpLevel = 1; # ignore package calling us too.
44 local $SIG{__DIE__} = sub {
46 local $Carp::CarpLevel = 1; # ignore package calling us too.
47 Carp::croak("$_[0]Illegal null symbol in \@${1}::EXPORT")
48 if $_[0] =~ /^Unable to create sub named "(.*?)::"/;
51 my($pkg, $callpkg, @imports) = @_;
52 my($type, $sym, $oops);
53 my($exports, $export_cache) = (\@{"${pkg}::EXPORT"},
54 \%{"${pkg}::EXPORT"});
57 if (!%$export_cache) {
58 s/^&// foreach @$exports;
59 @{$export_cache}{@$exports} = (1) x @$exports;
60 my $ok = \@{"${pkg}::EXPORT_OK"};
63 @{$export_cache}{@$ok} = (1) x @$ok;
67 if ($imports[0] =~ m#^[/!:]#){
68 my $tagsref = \%{"${pkg}::EXPORT_TAGS"};
71 my($remove, $spec, @names, @allexports);
72 # negated first item implies starting with default set:
73 unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/;
74 foreach $spec (@imports){
75 $remove = $spec =~ s/^!//;
78 if ($spec eq 'DEFAULT'){
81 elsif ($tagdata = $tagsref->{$spec}) {
85 warn qq["$spec" is not defined in %${pkg}::EXPORT_TAGS];
90 elsif ($spec =~ m:^/(.*)/$:){
92 @allexports = keys %$export_cache unless @allexports; # only do keys once
93 @names = grep(/$patn/, @allexports); # not anchored by default
96 @names = ($spec); # is a normal symbol name
99 warn "Import ".($remove ? "del":"add").": @names "
103 foreach $sym (@names) { delete $imports{$sym} }
106 @imports{@names} = (1) x @names;
109 @imports = keys %imports;
112 foreach $sym (@imports) {
113 if (!$export_cache->{$sym}) {
114 if ($sym =~ m/^\d/) {
115 $pkg->require_version($sym);
116 # If the version number was the only thing specified
117 # then we should act as if nothing was specified:
119 @imports = @$exports;
122 # We need a way to emulate 'use Foo ()' but still
123 # allow an easy version check: "use Foo 1.23, ''";
124 if (@imports == 2 and !$imports[1]) {
128 } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) {
130 Carp::carp(qq["$sym" is not exported by the $pkg module]);
137 Carp::croak("Can't continue after import errors");
141 @imports = @$exports;
144 my($fail, $fail_cache) = (\@{"${pkg}::EXPORT_FAIL"},
145 \%{"${pkg}::EXPORT_FAIL"});
149 # Build cache of symbols. Optimise the lookup by adding
150 # barewords twice... both with and without a leading &.
151 # (Technique could be applied to $export_cache at cost of memory)
152 my @expanded = map { /^\w/ ? ($_, '&'.$_) : $_ } @$fail;
153 warn "${pkg}::EXPORT_FAIL cached: @expanded" if $Verbose;
154 @{$fail_cache}{@expanded} = (1) x @expanded;
157 foreach $sym (@imports) { push(@failed, $sym) if $fail_cache->{$sym} }
159 @failed = $pkg->export_fail(@failed);
160 foreach $sym (@failed) {
162 Carp::carp(qq["$sym" is not implemented by the $pkg module ],
163 "on this architecture");
167 Carp::croak("Can't continue after import errors");
172 warn "Importing into $callpkg from $pkg: ",
173 join(", ",sort @imports) if $Verbose;
175 foreach $sym (@imports) {
176 # shortcut for the common case of no type character
177 (*{"${callpkg}::$sym"} = \&{"${pkg}::$sym"}, next)
178 unless $sym =~ s/^(\W)//;
180 *{"${callpkg}::$sym"} =
181 $type eq '&' ? \&{"${pkg}::$sym"} :
182 $type eq '$' ? \${"${pkg}::$sym"} :
183 $type eq '@' ? \@{"${pkg}::$sym"} :
184 $type eq '%' ? \%{"${pkg}::$sym"} :
185 $type eq '*' ? *{"${pkg}::$sym"} :
186 do { require Carp; Carp::croak("Can't export symbol: $type$sym") };
190 sub heavy_export_to_level
194 (undef) = shift; # XXX redundant arg
195 my $callpkg = caller($level);
196 $pkg->export($callpkg, @_);
202 my($pkg, $var, $syms) = @_;
204 my $export_tags = \%{"${pkg}::EXPORT_TAGS"};
205 push(@{"${pkg}::$var"},
206 map { $export_tags->{$_} ? @{$export_tags->{$_}}
207 : scalar(push(@nontag,$_),$_) }
208 (@$syms) ? @$syms : keys %$export_tags);
209 if (@nontag and $^W) {
210 # This may change to a die one day
212 Carp::carp(join(", ", @nontag)." are not tags of $pkg");
217 sub require_version {
218 my($self, $wanted) = @_;
219 my $pkg = ref $self || $self;
220 my $version = ${"${pkg}::VERSION"};
221 if (!defined $version or $version < $wanted) {
222 $version = defined $version ? $version : "(undef)";
223 # %INC contains slashes, but $pkg contains double-colons.
224 my $file = (map {s,::,/,g; $INC{$_}} "$pkg.pm")[0];
225 $file = defined $file ? " ($file)" : '';
227 Carp::croak("$pkg $wanted required--this is only version $version$file")