/usr/share/perl5/Catalyst/Stats.pm is in libcatalyst-perl 5.90015-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | package Catalyst::Stats;
use Moose;
use Time::HiRes qw/gettimeofday tv_interval/;
use Text::SimpleTable ();
use Catalyst::Utils;
use Tree::Simple qw/use_weak_refs/;
use Tree::Simple::Visitor::FindByUID;
use namespace::clean -except => 'meta';
has enable => (is => 'rw', required => 1, default => sub{ 1 });
has tree => (
is => 'ro',
required => 1,
default => sub{ Tree::Simple->new({t => [gettimeofday]}) },
handles => [qw/ accept traverse /],
);
has stack => (
is => 'ro',
required => 1,
lazy => 1,
default => sub { [ shift->tree ] }
);
sub profile {
my $self = shift;
return unless $self->enable;
my %params;
if (@_ <= 1) {
$params{comment} = shift || "";
}
elsif (@_ % 2 != 0) {
die "profile() requires a single comment parameter or a list of name-value pairs; found "
. (scalar @_) . " values: " . join(", ", @_);
}
else {
(%params) = @_;
$params{comment} ||= "";
}
my $parent;
my $prev;
my $t = [ gettimeofday ];
my $stack = $self->stack;
if ($params{end}) {
# parent is on stack; search for matching block and splice out
for (my $i = $#{$stack}; $i > 0; $i--) {
if ($stack->[$i]->getNodeValue->{action} eq $params{end}) {
my ($node) = splice(@{$stack}, $i, 1);
# Adjust elapsed on partner node
my $v = $node->getNodeValue;
$v->{elapsed} = tv_interval($v->{t}, $t);
return $node->getUID;
}
}
# if partner not found, fall through to treat as non-closing call
}
if ($params{parent}) {
# parent is explicitly defined
$prev = $parent = $self->_get_uid($params{parent});
}
if (!$parent) {
# Find previous node, which is either previous sibling or parent, for ref time.
$prev = $parent = $stack->[-1] or return undef;
my $n = $parent->getChildCount;
$prev = $parent->getChild($n - 1) if $n > 0;
}
my $node = Tree::Simple->new({
action => $params{begin} || "",
t => $t,
elapsed => tv_interval($prev->getNodeValue->{t}, $t),
comment => $params{comment},
});
$node->setUID($params{uid}) if $params{uid};
$parent->addChild($node);
push(@{$stack}, $node) if $params{begin};
return $node->getUID;
}
sub created {
return @{ shift->{tree}->getNodeValue->{t} };
}
sub elapsed {
return tv_interval(shift->{tree}->getNodeValue->{t});
}
sub report {
my $self = shift;
my $column_width = Catalyst::Utils::term_width() - 9 - 13;
my $t = Text::SimpleTable->new( [ $column_width, 'Action' ], [ 9, 'Time' ] );
my @results;
$self->traverse(
sub {
my $action = shift;
my $stat = $action->getNodeValue;
my @r = ( $action->getDepth,
($stat->{action} || "") .
($stat->{action} && $stat->{comment} ? " " : "") . ($stat->{comment} ? '- ' . $stat->{comment} : ""),
$stat->{elapsed},
$stat->{action} ? 1 : 0,
);
# Trim down any times >= 10 to avoid ugly Text::Simple line wrapping
my $elapsed = substr(sprintf("%f", $stat->{elapsed}), 0, 8) . "s";
$t->row( ( q{ } x $r[0] ) . $r[1],
defined $r[2] ? $elapsed : '??');
push(@results, \@r);
}
);
return wantarray ? @results : $t->draw;
}
sub _get_uid {
my ($self, $uid) = @_;
my $visitor = Tree::Simple::Visitor::FindByUID->new;
$visitor->searchForUID($uid);
$self->accept($visitor);
return $visitor->getResult;
}
sub addChild {
my $self = shift;
my $node = $_[ 0 ];
my $stat = $node->getNodeValue;
# do we need to fake $stat->{ t } ?
if( $stat->{ elapsed } ) {
# remove the "s" from elapsed time
$stat->{ elapsed } =~ s{s$}{};
}
$self->tree->addChild( @_ );
}
sub setNodeValue {
my $self = shift;
my $stat = $_[ 0 ];
# do we need to fake $stat->{ t } ?
if( $stat->{ elapsed } ) {
# remove the "s" from elapsed time
$stat->{ elapsed } =~ s{s$}{};
}
$self->tree->setNodeValue( @_ );
}
sub getNodeValue {
my $self = shift;
$self->tree->getNodeValue( @_ )->{ t };
}
__PACKAGE__->meta->make_immutable();
1;
__END__
=for stopwords addChild getNodeValue mysub rollup setNodeValue
=head1 NAME
Catalyst::Stats - Catalyst Timing Statistics Class
=head1 SYNOPSIS
$stats = $c->stats;
$stats->enable(1);
$stats->profile($comment);
$stats->profile(begin => $block_name, comment =>$comment);
$stats->profile(end => $block_name);
$elapsed = $stats->elapsed;
$report = $stats->report;
See L<Catalyst>.
=head1 DESCRIPTION
This module provides the default, simple timing stats collection functionality for Catalyst.
If you want something different set C<< MyApp->stats_class >> in your application module,
e.g.:
__PACKAGE__->stats_class( "My::Stats" );
If you write your own, your stats object is expected to provide the interface described here.
Catalyst uses this class to report timings of component actions. You can add
profiling points into your own code to get deeper insight. Typical usage might
be like this:
sub mysub {
my ($c, ...) = @_;
$c->stats->profile(begin => "mysub");
# code goes here
...
$c->stats->profile("starting critical bit");
# code here too
...
$c->stats->profile("completed first part of critical bit");
# more code
...
$c->stats->profile("completed second part of critical bit");
# more code
...
$c->stats->profile(end => "mysub");
}
Supposing mysub was called from the action "process" inside a Catalyst
Controller called "service", then the reported timings for the above example
might look something like this:
.----------------------------------------------------------------+-----------.
| Action | Time |
+----------------------------------------------------------------+-----------+
| /service/process | 1.327702s |
| mysub | 0.555555s |
| - starting critical bit | 0.111111s |
| - completed first part of critical bit | 0.333333s |
| - completed second part of critical bit | 0.111000s |
| /end | 0.000160s |
'----------------------------------------------------------------+-----------'
which means mysub took 0.555555s overall, it took 0.111111s to reach the
critical bit, the first part of the critical bit took 0.333333s, and the second
part 0.111s.
=head1 METHODS
=head2 new
Constructor.
$stats = Catalyst::Stats->new;
=head2 enable
$stats->enable(0);
$stats->enable(1);
Enable or disable stats collection. By default, stats are enabled after object creation.
=head2 profile
$stats->profile($comment);
$stats->profile(begin => $block_name, comment =>$comment);
$stats->profile(end => $block_name);
Marks a profiling point. These can appear in pairs, to time the block of code
between the begin/end pairs, or by themselves, in which case the time of
execution to the previous profiling point will be reported.
The argument may be either a single comment string or a list of name-value
pairs. Thus the following are equivalent:
$stats->profile($comment);
$stats->profile(comment => $comment);
The following key names/values may be used:
=over 4
=item * begin => ACTION
Marks the beginning of a block. The value is used in the description in the
timing report.
=item * end => ACTION
Marks the end of the block. The name given must match a previous 'begin'.
Correct nesting is recommended, although this module is tolerant of blocks that
are not correctly nested, and the reported timings should accurately reflect the
time taken to execute the block whether properly nested or not.
=item * comment => COMMENT
Comment string; use this to describe the profiling point. It is combined with
the block action (if any) in the timing report description field.
=item * uid => UID
Assign a predefined unique ID. This is useful if, for whatever reason, you wish
to relate a profiling point to a different parent than in the natural execution
sequence.
=item * parent => UID
Explicitly relate the profiling point back to the parent with the specified UID.
The profiling point will be ignored if the UID has not been previously defined.
=back
Returns the UID of the current point in the profile tree. The UID is
automatically assigned if not explicitly given.
=head2 created
($seconds, $microseconds) = $stats->created;
Returns the time the object was created, in C<gettimeofday> format, with
Unix epoch seconds followed by microseconds.
=head2 elapsed
$elapsed = $stats->elapsed
Get the total elapsed time (in seconds) since the object was created.
=head2 report
print $stats->report ."\n";
$report = $stats->report;
@report = $stats->report;
In scalar context, generates a textual report. In array context, returns the
array of results where each row comprises:
[ depth, description, time, rollup ]
The depth is the calling stack level of the profiling point.
The description is a combination of the block name and comment.
The time reported for each block is the total execution time for the block, and
the time associated with each intermediate profiling point is the elapsed time
from the previous profiling point.
The 'rollup' flag indicates whether the reported time is the rolled up time for
the block, or the elapsed time from the previous profiling point.
=head1 COMPATIBILITY METHODS
Some components might expect the stats object to be a regular Tree::Simple object.
We've added some compatibility methods to handle this scenario:
=head2 accept
=head2 addChild
=head2 setNodeValue
=head2 getNodeValue
=head2 traverse
=head1 SEE ALSO
L<Catalyst>
=head1 AUTHORS
Catalyst Contributors, see Catalyst.pm
=head1 COPYRIGHT
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
__PACKAGE__->meta->make_immutable;
1;
|