X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FStats.pm;h=1987205fcad7268359fa85c30b8070dde22d17d3;hp=0f7dc4a0cf6a4b51131157d5b546a11e9aad9f2f;hb=199731fb710c6a165793f055f85de60539039dfe;hpb=01b865ce771e6a9276a1adf85b93df0c5f002227 diff --git a/lib/Catalyst/Stats.pm b/lib/Catalyst/Stats.pm index 0f7dc4a..1987205 100644 --- a/lib/Catalyst/Stats.pm +++ b/lib/Catalyst/Stats.pm @@ -84,6 +84,10 @@ sub profile { return $node->getUID; } +sub created { + return @{ shift->{tree}->getNodeValue->{t} }; +} + sub elapsed { return tv_interval(shift->{tree}->getNodeValue->{t}); } @@ -121,7 +125,7 @@ sub _get_uid { $visitor->searchForUID($uid); $self->accept($visitor); return $visitor->getResult; -} +} sub addChild { my $self = shift; @@ -162,6 +166,8 @@ __PACKAGE__->meta->make_immutable(); __END__ +=for stopwords addChild getNodeValue mysub rollup setNodeValue + =head1 NAME Catalyst::Stats - Catalyst Timing Statistics Class @@ -206,7 +212,7 @@ be like this: $c->stats->profile("completed second part of critical bit"); # more code ... - $c->stats->profile(end => "mysub"); + $c->stats->profile(end => "mysub"); } Supposing mysub was called from the action "process" inside a Catalyst @@ -233,7 +239,7 @@ part 0.111s. =head2 new -Constructor. +Constructor. $stats = Catalyst::Stats->new; @@ -252,7 +258,7 @@ Enable or disable stats collection. By default, stats are enabled after object 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. +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: @@ -297,6 +303,13 @@ The profiling point will be ignored if the UID has not been previously defined. 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 format, with +Unix epoch seconds followed by microseconds. + =head2 elapsed $elapsed = $stats->elapsed @@ -350,7 +363,7 @@ Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut