1 package Exporter::Heavy;
6 # On one line so MakeMaker will see it.
7 require Exporter; our $VERSION = $Exporter::VERSION;
11 Exporter::Heavy - Exporter guts
19 No user-serviceable parts inside.
24 # We go to a lot of trouble not to 'require Carp' at file scope,
25 # because Carp requires Exporter, and something has to give.
29 my ($pkg, $exports, $cache) = @_;
30 s/^&// foreach @$exports;
31 @{$cache}{@$exports} = (1) x @$exports;
32 my $ok = \@{"${pkg}::EXPORT_OK"};
35 @{$cache}{@$ok} = (1) x @$ok;
41 # Save the old __WARN__ handler in case it was defined
42 my $oldwarn = $SIG{__WARN__};
44 # First make import warnings look like they're coming from the "use".
45 local $SIG{__WARN__} = sub {
46 # restore it back so proper stacking occurs
47 local $SIG{__WARN__} = $oldwarn;
49 if ($text =~ s/ at \S*Exporter\S*.pm line \d+.*\n//) {
51 local $Carp::CarpLevel = 1; # ignore package calling us too.
58 local $SIG{__DIE__} = sub {
60 local $Carp::CarpLevel = 1; # ignore package calling us too.
61 Carp::croak("$_[0]Illegal null symbol in \@${1}::EXPORT")
62 if $_[0] =~ /^Unable to create sub named "(.*?)::"/;
65 my($pkg, $callpkg, @imports) = @_;
66 my($type, $sym, $cache_is_current, $oops);
67 my($exports, $export_cache) = (\@{"${pkg}::EXPORT"},
68 $Exporter::Cache{$pkg} ||= {});
71 if (!%$export_cache) {
72 _rebuild_cache ($pkg, $exports, $export_cache);
73 $cache_is_current = 1;
76 if (grep m{^[/!:]}, @imports) {
77 my $tagsref = \%{"${pkg}::EXPORT_TAGS"};
80 my($remove, $spec, @names, @allexports);
81 # negated first item implies starting with default set:
82 unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/;
83 foreach $spec (@imports){
84 $remove = $spec =~ s/^!//;
87 if ($spec eq 'DEFAULT'){
90 elsif ($tagdata = $tagsref->{$spec}) {
94 warn qq["$spec" is not defined in %${pkg}::EXPORT_TAGS];
99 elsif ($spec =~ m:^/(.*)/$:){
101 @allexports = keys %$export_cache unless @allexports; # only do keys once
102 @names = grep(/$patn/, @allexports); # not anchored by default
105 @names = ($spec); # is a normal symbol name
108 warn "Import ".($remove ? "del":"add").": @names "
109 if $Exporter::Verbose;
112 foreach $sym (@names) { delete $imports{$sym} }
115 @imports{@names} = (1) x @names;
118 @imports = keys %imports;
122 foreach $sym (@imports) {
123 if (!$export_cache->{$sym}) {
124 if ($sym =~ m/^\d/) {
125 $pkg->VERSION($sym); # inherit from UNIVERSAL
126 # If the version number was the only thing specified
127 # then we should act as if nothing was specified:
129 @imports = @$exports;
132 # We need a way to emulate 'use Foo ()' but still
133 # allow an easy version check: "use Foo 1.23, ''";
134 if (@imports == 2 and !$imports[1]) {
138 } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) {
139 # Last chance - see if they've updated EXPORT_OK since we
142 unless ($cache_is_current) {
144 _rebuild_cache ($pkg, $exports, $export_cache);
145 $cache_is_current = 1;
148 if (!$export_cache->{$sym}) {
149 # accumulate the non-exports
151 qq["$sym" is not exported by the $pkg module\n];
159 Carp::croak("@{carp}Can't continue after import errors");
163 @imports = @$exports;
166 my($fail, $fail_cache) = (\@{"${pkg}::EXPORT_FAIL"},
167 $Exporter::FailCache{$pkg} ||= {});
171 # Build cache of symbols. Optimise the lookup by adding
172 # barewords twice... both with and without a leading &.
173 # (Technique could be applied to $export_cache at cost of memory)
174 my @expanded = map { /^\w/ ? ($_, '&'.$_) : $_ } @$fail;
175 warn "${pkg}::EXPORT_FAIL cached: @expanded" if $Exporter::Verbose;
176 @{$fail_cache}{@expanded} = (1) x @expanded;
179 foreach $sym (@imports) { push(@failed, $sym) if $fail_cache->{$sym} }
181 @failed = $pkg->export_fail(@failed);
182 foreach $sym (@failed) {
184 Carp::carp(qq["$sym" is not implemented by the $pkg module ],
185 "on this architecture");
189 Carp::croak("Can't continue after import errors");
194 warn "Importing into $callpkg from $pkg: ",
195 join(", ",sort @imports) if $Exporter::Verbose;
197 foreach $sym (@imports) {
198 # shortcut for the common case of no type character
199 (*{"${callpkg}::$sym"} = \&{"${pkg}::$sym"}, next)
200 unless $sym =~ s/^(\W)//;
203 *{"${callpkg}::$sym"} =
204 $type eq '&' ? \&{"${pkg}::$sym"} :
205 $type eq '$' ? \${"${pkg}::$sym"} :
206 $type eq '@' ? \@{"${pkg}::$sym"} :
207 $type eq '%' ? \%{"${pkg}::$sym"} :
208 $type eq '*' ? *{"${pkg}::$sym"} :
209 do { require Carp; Carp::croak("Can't export symbol: $type$sym") };
213 sub heavy_export_to_level
217 (undef) = shift; # XXX redundant arg
218 my $callpkg = caller($level);
219 $pkg->export($callpkg, @_);
225 my($pkg, $var, $syms) = @_;
227 my $export_tags = \%{"${pkg}::EXPORT_TAGS"};
228 push(@{"${pkg}::$var"},
229 map { $export_tags->{$_} ? @{$export_tags->{$_}}
230 : scalar(push(@nontag,$_),$_) }
231 (@$syms) ? @$syms : keys %$export_tags);
232 if (@nontag and $^W) {
233 # This may change to a die one day
235 Carp::carp(join(", ", @nontag)." are not tags of $pkg");
239 sub heavy_require_version {
240 my($self, $wanted) = @_;
241 my $pkg = ref $self || $self;
242 return ${pkg}->VERSION($wanted);
245 sub heavy_export_tags {
246 _push_tags((caller)[0], "EXPORT", \@_);
249 sub heavy_export_ok_tags {
250 _push_tags((caller)[0], "EXPORT_OK", \@_);