← Index
Performance Profile   « block view • line view • sub view »
For /wise/base/deliv/dev/bin/getfix
  Run on Thu May 20 15:30:03 2010
Reported on Thu May 20 16:25:45 2010

File/opt/wise/lib/perl5/5.10.0/Exporter/Heavy.pm
Statements Executed4001
Total Time0.017172 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
5110.000150.00015Exporter::Heavy::_push_tags
1117.8e-57.8e-5Exporter::Heavy::_rebuild_cache
00000Exporter::Heavy::BEGIN
00000Exporter::Heavy::__ANON__[:54]
00000Exporter::Heavy::__ANON__[:60]
00000Exporter::Heavy::heavy_export
00000Exporter::Heavy::heavy_export_ok_tags
00000Exporter::Heavy::heavy_export_tags
00000Exporter::Heavy::heavy_export_to_level
00000Exporter::Heavy::heavy_require_version

LineStmts.Exclusive
Time
Avg.Code
1package Exporter::Heavy;
2
333.2e-51.1e-5use strict;
# spent 11µs making 1 call to strict::import
430.001160.00039no strict 'refs';
# spent 23µs making 1 call to strict::unimport
5
6# On one line so MakeMaker will see it.
721.0e-55.0e-6require Exporter; our $VERSION = $Exporter::VERSION;
8# Carp does this now for us, so we can finally live w/o Carp
9#$Carp::Internal{"Exporter::Heavy"} = 1;
10
11=head1 NAME
12
13Exporter::Heavy - Exporter guts
14
15=head1 SYNOPSIS
16
17(internal use only)
18
19=head1 DESCRIPTION
20
21No user-serviceable parts inside.
22
23=cut
24
25#
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.
28#
29
30
# spent 78µs within Exporter::Heavy::_rebuild_cache which was called # once (78µs+0) by Exporter::Heavy::heavy_export at line 69
sub _rebuild_cache {
3114.0e-64.0e-6 my ($pkg, $exports, $cache) = @_;
3223.0e-61.5e-6 s/^&// foreach @$exports;
3313.0e-63.0e-6 @{$cache}{@$exports} = (1) x @$exports;
3413.0e-63.0e-6 my $ok = \@{"${pkg}::EXPORT_OK"};
3513.0e-63.0e-6 if (@$ok) {
3622.4e-51.2e-5 s/^&// foreach @$ok;
3713.2e-53.2e-5 @{$cache}{@$ok} = (1) x @$ok;
38 }
39}
40
41sub heavy_export {
42
43 # First make import warnings look like they're coming from the "use".
44 local $SIG{__WARN__} = sub {
45 my $text = shift;
46 if ($text =~ s/ at \S*Exporter\S*.pm line \d+.*\n//) {
47 require Carp;
48 local $Carp::CarpLevel = 1; # ignore package calling us too.
49 Carp::carp($text);
50 }
51 else {
52 warn $text;
53 }
54350.000298.1e-6 };
55 local $SIG{__DIE__} = sub {
56 require Carp;
57 local $Carp::CarpLevel = 1; # ignore package calling us too.
58 Carp::croak("$_[0]Illegal null symbol in \@${1}::EXPORT")
59 if $_[0] =~ /^Unable to create sub named "(.*?)::"/;
60350.000236.7e-6 };
61
62350.000102.9e-6 my($pkg, $callpkg, @imports) = @_;
63352.7e-57.7e-7 my($type, $sym, $cache_is_current, $oops);
64350.000133.7e-6 my($exports, $export_cache) = (\@{"${pkg}::EXPORT"},
65 $Exporter::Cache{$pkg} ||= {});
66
67356.6e-51.9e-6 if (@imports) {
68245.4e-52.3e-6 if (!%$export_cache) {
6919.0e-69.0e-6 _rebuild_cache ($pkg, $exports, $export_cache);
# spent 78µs making 1 call to Exporter::Heavy::_rebuild_cache
7011.0e-61.0e-6 $cache_is_current = 1;
71 }
72
73240.000177.0e-6 if (grep m{^[/!:]}, @imports) {
74215.4e-52.6e-6 my $tagsref = \%{"${pkg}::EXPORT_TAGS"};
75211.1e-55.2e-7 my $tagdata;
76211.2e-55.7e-7 my %imports;
77211.7e-58.1e-7 my($remove, $spec, @names, @allexports);
78 # negated first item implies starting with default set:
79213.9e-51.9e-6 unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/;
80213.4e-51.6e-6 foreach $spec (@imports){
81353.8e-51.1e-6 $remove = $spec =~ s/^!//;
82
83350.000174.9e-6 if ($spec =~ s/^://){
84260.000692.7e-5 if ($spec eq 'DEFAULT'){
85 @names = @$exports;
86 }
87 elsif ($tagdata = $tagsref->{$spec}) {
88 @names = @$tagdata;
89 }
90 else {
91 warn qq["$spec" is not defined in %${pkg}::EXPORT_TAGS];
92 ++$oops;
93 next;
94 }
95 }
96 elsif ($spec =~ m:^/(.*)/$:){
9714.0e-64.0e-6 my $patn = $1;
9816.0e-66.0e-6 @allexports = keys %$export_cache unless @allexports; # only do keys once
9911.6e-51.6e-5 @names = grep(/$patn/, @allexports); # not anchored by default
100 }
101 else {
10281.1e-51.4e-6 @names = ($spec); # is a normal symbol name
103 }
104
105351.9e-55.4e-7 warn "Import ".($remove ? "del":"add").": @names "
106 if $Exporter::Verbose;
107
108359.8e-52.8e-6 if ($remove) {
109 foreach $sym (@names) { delete $imports{$sym} }
110 }
111 else {
112350.000561.6e-5 @imports{@names} = (1) x @names;
113 }
114 }
115210.000552.6e-5 @imports = keys %imports;
116 }
117
118241.6e-56.7e-7 my @carp;
119243.3e-51.4e-6 foreach $sym (@imports) {
12013630.001591.2e-6 if (!$export_cache->{$sym}) {
121 if ($sym =~ m/^\d/) {
122 $pkg->VERSION($sym); # inherit from UNIVERSAL
123 # If the version number was the only thing specified
124 # then we should act as if nothing was specified:
125 if (@imports == 1) {
126 @imports = @$exports;
127 last;
128 }
129 # We need a way to emulate 'use Foo ()' but still
130 # allow an easy version check: "use Foo 1.23, ''";
131 if (@imports == 2 and !$imports[1]) {
132 @imports = ();
133 last;
134 }
135 } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) {
136 # Last chance - see if they've updated EXPORT_OK since we
137 # cached it.
138
139 unless ($cache_is_current) {
140 %$export_cache = ();
141 _rebuild_cache ($pkg, $exports, $export_cache);
142 $cache_is_current = 1;
143 }
144
145 if (!$export_cache->{$sym}) {
146 # accumulate the non-exports
147 push @carp,
148 qq["$sym" is not exported by the $pkg module\n];
149 $oops++;
150 }
151 }
152 }
153 }
154241.8e-57.5e-7 if ($oops) {
155 require Carp;
156 Carp::croak("@{carp}Can't continue after import errors");
157 }
158 }
159 else {
160110.000161.5e-5 @imports = @$exports;
161 }
162
163350.000133.7e-6 my($fail, $fail_cache) = (\@{"${pkg}::EXPORT_FAIL"},
164 $Exporter::FailCache{$pkg} ||= {});
165
166353.4e-59.7e-7 if (@$fail) {
16732.0e-66.7e-7 if (!%$fail_cache) {
168 # Build cache of symbols. Optimise the lookup by adding
169 # barewords twice... both with and without a leading &.
170 # (Technique could be applied to $export_cache at cost of memory)
17141.3e-53.2e-6 my @expanded = map { /^\w/ ? ($_, '&'.$_) : $_ } @$fail;
17222.0e-61.0e-6 warn "${pkg}::EXPORT_FAIL cached: @expanded" if $Exporter::Verbose;
17327.0e-63.5e-6 @{$fail_cache}{@expanded} = (1) x @expanded;
174 }
17533.0e-61.0e-6 my @failed;
176153.2e-52.1e-6 foreach $sym (@imports) { push(@failed, $sym) if $fail_cache->{$sym} }
17733.0e-61.0e-6 if (@failed) {
178 @failed = $pkg->export_fail(@failed);
179 foreach $sym (@failed) {
180 require Carp;
181 Carp::carp(qq["$sym" is not implemented by the $pkg module ],
182 "on this architecture");
183 }
184 if (@failed) {
185 require Carp;
186 Carp::croak("Can't continue after import errors");
187 }
188 }
189 }
190
191351.8e-55.1e-7 warn "Importing into $callpkg from $pkg: ",
192 join(", ",sort @imports) if $Exporter::Verbose;
193
194350.001253.6e-5 foreach $sym (@imports) {
195 # shortcut for the common case of no type character
19616710.008325.0e-6 (*{"${callpkg}::$sym"} = \&{"${pkg}::$sym"}, next)
197 unless $sym =~ s/^(\W)//;
198163.3e-52.1e-6 $type = $1;
19930.000490.00016 no warnings 'once';
# spent 22µs making 1 call to warnings::unimport
200 *{"${callpkg}::$sym"} =
201 $type eq '&' ? \&{"${pkg}::$sym"} :
202 $type eq '$' ? \${"${pkg}::$sym"} :
203 $type eq '@' ? \@{"${pkg}::$sym"} :
204 $type eq '%' ? \%{"${pkg}::$sym"} :
205 $type eq '*' ? *{"${pkg}::$sym"} :
206160.000127.5e-6 do { require Carp; Carp::croak("Can't export symbol: $type$sym") };
207 }
208}
209
210sub heavy_export_to_level
211{
21225.0e-62.5e-6 my $pkg = shift;
21326.0e-63.0e-6 my $level = shift;
21423.0e-61.5e-6 (undef) = shift; # XXX redundant arg
21525.0e-62.5e-6 my $callpkg = caller($level);
21621.6e-58.0e-6 $pkg->export($callpkg, @_);
# spent 44µs making 2 calls to Exporter::export, avg 22µs/call
217}
218
219# Utility functions
220
221
# spent 150µs within Exporter::Heavy::_push_tags which was called 5 times, avg 30µs/call: # 5 times (150µs+0) by Exporter::Heavy::heavy_export_ok_tags at line 247, avg 30µs/call
sub _push_tags {
22251.5e-53.0e-6 my($pkg, $var, $syms) = @_;
22353.0e-66.0e-7 my @nontag = ();
22451.3e-52.6e-6 my $export_tags = \%{"${pkg}::EXPORT_TAGS"};
225 push(@{"${pkg}::$var"},
22657.6e-51.5e-5 map { $export_tags->{$_} ? @{$export_tags->{$_}}
227 : scalar(push(@nontag,$_),$_) }
228 (@$syms) ? @$syms : keys %$export_tags);
22951.0e-52.0e-6 if (@nontag and $^W) {
230 # This may change to a die one day
231 require Carp;
232 Carp::carp(join(", ", @nontag)." are not tags of $pkg");
233 }
234}
235
236sub heavy_require_version {
237 my($self, $wanted) = @_;
238 my $pkg = ref $self || $self;
239 return ${pkg}->VERSION($wanted);
240}
241
242sub heavy_export_tags {
243 _push_tags((caller)[0], "EXPORT", \@_);
244}
245
246sub heavy_export_ok_tags {
24755.5e-51.1e-5 _push_tags((caller)[0], "EXPORT_OK", \@_);
# spent 150µs making 5 calls to Exporter::Heavy::_push_tags, avg 30µs/call
248}
249
25014.0e-64.0e-61;