RHP::Timer - A high resolution timer abstraction


RHP-Timer documentation Contained in the RHP-Timer distribution.

Index


Code Index:

NAME

Top

 RHP::Timer - A high resolution timer abstraction

SYNOPSIS

Top

 use RHP::Timer ();
 use My::Logger ();

 $logger = My::Logger->new;
 $timer  = RHP::Timer->new();

 # timing data from the point of the caller
 $timer->start('fizzbin');
 fizzbin(); # how fast is fizzbin?
 $logger->info(
     sprintf("Timing caller: %s %s %d, timer_name: %s, time: %s",
     @{$timer->checkpoint}));

 # or simpler
 $timer->start('foobin');
 foobin();
 $logger->info("pid $$ timer " . $timer->current . 
     " took " . $timer->stop . " seconds");

 # what was the last timing block?
 $logger->info("Last timing block " . $timer->current . 
     " took " . $timer->last_interval . " seconds");

DESCRIPTION

Top

RHP::Timer is a wrapper around Time::HiRes. I wrote it because I needed some simple abstractions for timing programs to determine bottlenecks in running programs.

The goals of RHP::Timer is to be easy to use, accurate, and simple.

METHODS

Top

new()
 $timer = RHP::Timer->new();

Constructor which takes no arguments and returns a timer object

start()
 $timer->start('fizzbin');

Starts the timer for 'fizzbin'

stop()
 $interval = $timer->stop;

Stops the last timer started, and returns the number of seconds between start and stop.

current()
 $timer_name = $timer->current();
 # $timer_name is 'fizzbin' from previous pod

Returns the name of the most recent timer started.

checkpoint()
 [ caller(), $timer_name, $interval ] = $timer->checkpoint();

Stops the current timer and returns an array reference containing caller() information, the name of the timer stopped, and the interval of the last timing run. Useful for passing to a logfile in sprintf or other format.

last_interval()
 $last_interval = $timer->last_interval;

Returns the last timing interval recorded by the timer object.

BUGS

Top

None known yet. If you find any, or want a feature, email the author.

SEE ALSO

Top

Time::HiRes(3)

AUTHOR

Top

Fred Moyer <fred@redhotpenguin.com>

COPYRIGHT

Top

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.


RHP-Timer documentation Contained in the RHP-Timer distribution.
package RHP::Timer;

use strict;
use warnings;

use Time::HiRes ();

our $VERSION = 0.1;

sub new {
    my ($class) = @_;
    my $self = {};
    bless $self, $class;
    return $self;
}

sub start {
    my ($self, $name) = @_;
    $self->{$name}->{_start} = [Time::HiRes::gettimeofday];
    $self->{_current} = $name;
    return 1;
}

sub stop {
    my ($self) = @_;
    no strict 'refs';
    $self->{$self->{_current}}->{_stop} = [Time::HiRes::gettimeofday];
    $self->{$self->{_current}}->{interval} =
      Time::HiRes::tv_interval($self->{$self->{_current}}->{_start},
                               $self->{$self->{_current}}->{_stop});
    return $self->{$self->{_current}}->{interval};
}

sub current {
    my $self = shift;
    return $self->{_current};
}

sub checkpoint {
    my $self = shift;
    my $stop = $self->stop;
    my @summary = ( caller, $self->current, $self->stop);
    return \@summary;
}

sub last_interval {
    my $self = shift;
    return $self->{$self->{_current}}->{interval};
}

1;

__END__