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=9e2410803393d8fcdc04b6c5101eb4a783db094a;hb=199731fb710c6a165793f055f85de60539039dfe;hpb=750d2587d042dd28eb0b3bbeda6707ba3bf4ae83 diff --git a/lib/Catalyst/Stats.pm b/lib/Catalyst/Stats.pm index 9e24108..1987205 100644 --- a/lib/Catalyst/Stats.pm +++ b/lib/Catalyst/Stats.pm @@ -3,14 +3,18 @@ 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]}) } + default => sub{ Tree::Simple->new({t => [gettimeofday]}) }, + handles => [qw/ accept traverse /], ); has stack => ( is => 'ro', @@ -80,6 +84,10 @@ sub profile { return $node->getUID; } +sub created { + return @{ shift->{tree}->getNodeValue->{t} }; +} + sub elapsed { return tv_interval(shift->{tree}->getNodeValue->{t}); } @@ -87,9 +95,10 @@ sub elapsed { sub report { my $self = shift; - my $t = Text::SimpleTable->new( [ 62, 'Action' ], [ 9, 'Time' ] ); + my $column_width = Catalyst::Utils::term_width() - 9 - 13; + my $t = Text::SimpleTable->new( [ $column_width, 'Action' ], [ 9, 'Time' ] ); my @results; - $self->tree->traverse( + $self->traverse( sub { my $action = shift; my $stat = $action->getNodeValue; @@ -114,13 +123,8 @@ sub _get_uid { my $visitor = Tree::Simple::Visitor::FindByUID->new; $visitor->searchForUID($uid); - $self->tree->accept($visitor); + $self->accept($visitor); return $visitor->getResult; -} - -sub accept { - my $self = shift; - $self->{tree}->accept( @_ ); } sub addChild { @@ -135,7 +139,7 @@ sub addChild { $stat->{ elapsed } =~ s{s$}{}; } - $self->{tree}->addChild( @_ ); + $self->tree->addChild( @_ ); } sub setNodeValue { @@ -148,26 +152,22 @@ sub setNodeValue { $stat->{ elapsed } =~ s{s$}{}; } - $self->{tree}->setNodeValue( @_ ); + $self->tree->setNodeValue( @_ ); } sub getNodeValue { my $self = shift; - $self->{tree}->getNodeValue( @_ )->{ t }; -} - -sub traverse { - my $self = shift; - $self->{tree}->traverse( @_ ); + $self->tree->getNodeValue( @_ )->{ t }; } -no Moose; __PACKAGE__->meta->make_immutable(); 1; __END__ +=for stopwords addChild getNodeValue mysub rollup setNodeValue + =head1 NAME Catalyst::Stats - Catalyst Timing Statistics Class @@ -212,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 @@ -239,7 +239,7 @@ part 0.111s. =head2 new -Constructor. +Constructor. $stats = Catalyst::Stats->new; @@ -258,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: @@ -303,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 @@ -331,10 +338,10 @@ 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 COMPATABILITY METHODS +=head1 COMPATIBILITY METHODS Some components might expect the stats object to be a regular Tree::Simple object. -We've added some compatability methods to handle this scenario: +We've added some compatibility methods to handle this scenario: =head2 accept @@ -356,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