X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FStats.pm;h=303e2dec14c87d0049e820b8a9799bead68260af;hb=3295c7dbc672a0d1c03f657a2a37f12f322bbece;hp=daa5a0e765d1f079c5a3a447d071eb749f856f0f;hpb=6680c772eaa987eafdb32e9437fd2d649dc914d9;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Stats.pm b/lib/Catalyst/Stats.pm index daa5a0e..303e2de 100644 --- a/lib/Catalyst/Stats.pm +++ b/lib/Catalyst/Stats.pm @@ -103,8 +103,10 @@ sub report { $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] ? sprintf("%fs", $r[2]) : '??'); + defined $r[2] ? $elapsed : '??'); push(@results, \@r); } ); @@ -120,6 +122,49 @@ sub _get_uid { return $visitor->getResult; } +sub accept { + my $self = shift; + $self->{tree}->accept( @_ ); +} + +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 }; +} + +sub traverse { + my $self = shift; + $self->{tree}->traverse( @_ ); +} + no Moose; __PACKAGE__->meta->make_immutable(); @@ -290,14 +335,28 @@ 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 + +Some components might expect the stats object to be a regular Tree::Simple object. +We've added some compatability methods to handle this scenario: + +=head2 accept + +=head2 addChild + +=head2 setNodeValue + +=head2 getNodeValue + +=head2 traverse =head1 SEE ALSO -L. +L -=head1 AUTHOR +=head1 AUTHORS -Jon Schutz +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT