annotate Lib/IMPL/Profiler.pm @ 375:441e84031c7b

docs
author cin
date Fri, 10 Jan 2014 16:33:00 +0400
parents c8fe3f84feba
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
1 package IMPL::Profiler;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
2
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
3 use strict;
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
4 use warnings;
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
5 use Time::HiRes;
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
6 require Scalar::Util;
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
7
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
8 our $Enabled;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
9 our %TrappedModules;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
10 our %InvokeInfo;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
11 our $InvokeTime = 0;
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
12 our @TrapQueue;
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
13 our $Filter ||= qr//;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
14 my $level;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
15
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
16 BEGIN {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
17 $level = 0;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
18 if ($Enabled) {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
19 warn "profiler enabled";
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
20
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
21 unshift @INC, sub {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
22 my ($self,$filename) = @_;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
23
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
24 (my $module = $filename) =~ s/\//::/g;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
25 $module =~ s/\.\w+$//;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
26
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
27 return unless $module =~ $Filter;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
28
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
29 foreach my $dir (@INC) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
30 my $fullName = "$dir/$filename";
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
31 if (-f $fullName) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
32 open my $hmod, $fullName or die "$fullName: $!" if $!;
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
33
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
34
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
35
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
36 my @source;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
37 local $/ = "\n";
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
38 while (my $line = <$hmod>) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
39 last if $line =~ /^\s*__END__/;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
40 push @source, $line;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
41 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
42
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
43 undef $hmod;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
44
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
45 push @source,
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
46 "IMPL::Profiler::trap_all(__PACKAGE__);\n",
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
47 "1;\n";
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
48
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
49
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
50 return (sub {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
51 if (@source) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
52 $_ = shift @source;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
53 return 1;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
54 } else {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
55 return 0;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
56 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
57 }, undef );
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
58 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
59 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
60 };
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
61
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
62 no warnings 'once';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
63 *CORE::GLOBAL::caller = sub {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
64 my $target = (shift || 0)+1;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
65 my $realFrame = 1;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
66
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
67 for (my $i = 1; $i<$target; $i++) {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
68 $realFrame ++;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
69 my $caller = CORE::caller($realFrame-1) or return;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
70 $realFrame ++ if $caller eq 'IMPL::Profiler::Proxy'; #current frame is proxy
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
71 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
72
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
73 my @frame = CORE::caller($realFrame) or return;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
74 if ( $frame[0] eq 'IMPL::Profiler::Proxy' ) {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
75 my @next = CORE::caller($realFrame+1) or return;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
76 @frame[0..2] = @next[0..2];
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
77 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
78
206
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 194
diff changeset
79 #warn " "x$level,"$frame[0] - $frame[3]";
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
80 return wantarray ? @frame : $frame[0];
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
81 };
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
82 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
83 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
84
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
85 sub trap_all {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
86 return if not $Enabled;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
87 no strict 'refs';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
88 foreach my $class (@_) {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
89 next if $TrappedModules{$class};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
90 $TrappedModules{$class} = 1;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
91
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
92 eval "warn 'load $class'; require $class;" if not %{"${class}::"};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
93 die $@ if $@;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
94
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
95 no strict 'refs';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
96 my $table = \%{"${class}::"};
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
97 trap($class,$_) foreach (grep eval { *{$table->{$_}}{CODE} }, keys %$table); # here can be a not a GLOB reference
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
98 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
99 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
100
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
101 sub trap {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
102 my ($class,$method) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
103
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
104 return if not $Enabled;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
105
134
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
106 return if $method eq 'import';
44977efed303 Significant performance optimizations
wizard
parents: 49
diff changeset
107
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
108 no strict 'refs';
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
109 my $prevCode = \&{"${class}::${method}"};
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
110 my $proto = prototype $prevCode;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
111
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
112 if (defined $proto and not $proto) {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
113 return;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
114 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
115 {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
116 package IMPL::Profiler::Proxy;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
117 no warnings 'redefine';
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
118 my $sub = sub {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
119 my $t0 = [Time::HiRes::gettimeofday];
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
120 my @arr;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
121 my $scalar;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
122 my $entry = $prevCode;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
123 my ($timeOwn,$timeTotal);
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
124 my $context = wantarray;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
125 {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
126 local $InvokeTime = 0;
206
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 194
diff changeset
127 #warn " "x$level,"enter ${class}::$method";
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
128 $level ++;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
129 if ($context) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
130 @arr = &$entry(@_);
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
131 } else {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
132 if (defined $context) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
133 $scalar = &$entry(@_);
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
134 } else {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
135 &$entry(@_);
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
136 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
137 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
138 $timeTotal = Time::HiRes::tv_interval($t0);
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
139 $timeOwn = $timeTotal - $InvokeTime;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
140 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
141 $InvokeInfo{"${class}::${method}"}{Count} ++;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
142 $InvokeInfo{"${class}::${method}"}{Total} += $timeTotal;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
143 $InvokeInfo{"${class}::${method}"}{Own} += $timeOwn;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
144 $InvokeTime += $timeTotal;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
145 $level --;
206
c8fe3f84feba +IMPL::Web::Handlers::ViewSelector
sergey
parents: 194
diff changeset
146 #warn " "x$level,"leave ${class}::$method";
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
147 return $context ? @arr : $scalar;
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
148 };
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
149 if ($proto) {
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
150 Scalar::Util::set_prototype($sub => $proto);
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
151 }
4d0e1962161c Replaced tabs with spaces
cin
parents: 134
diff changeset
152 *{"${class}::${method}"} = $sub;
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
153 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
154
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
155 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
156
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
157 sub PrintStatistics {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
158 my $hout = shift || *STDERR;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
159 print $hout "-- modules --\n";
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
160 print $hout "$_\n" foreach sort keys %TrappedModules;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
161 print $hout "\n-- stats --\n";
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
162 print $hout
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
163 pad($_,50),
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
164 pad("$InvokeInfo{$_}{Count}",10),
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
165 pad(sprintf("%.3f",$InvokeInfo{$_}{Own}),10),
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
166 pad(sprintf("%.3f",$InvokeInfo{$_}{Total}),10),
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
167 "\n"
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
168 foreach sort { $InvokeInfo{$b}{Own} <=> $InvokeInfo{$a}{Own} } keys %InvokeInfo;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
169 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
170
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
171 sub ResetStatistics {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
172 $InvokeTime = 0;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
173 %InvokeInfo = ();
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
174 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
175
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
176 sub pad {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
177 my ($str,$len) = @_;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
178 if (length $str < $len) {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
179 return $str.(' 'x ($len- length $str));
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
180 } else {
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
181 return $str;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
182 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
183 }
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 0
diff changeset
184 1;