File: t1.pl

package info (click to toggle)
libmoosex-role-timer-perl 0.05-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid
  • size: 120 kB
  • sloc: perl: 136; makefile: 7
file content (42 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (5)
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
#!/usr/bin/env perl

package Demo;
use Time::HiRes 'usleep';
use Moose;

with 'MooseX::Role::Timer';

sub BUILD {
    shift->start_timer("build");
}

sub do_something {
    my $self = shift;
    $self->start_timer("something");
    usleep(20_000);
    $self->stop_timer("something");
}

sub do_someotherthing {
    my $self = shift;
    $self->start_timer("someotherthing");
    usleep(10_000);
    $self->stop_timer("someotherthing");
}

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

package main;

my $demo = Demo->new;

for (0..9) {
    $demo->do_something;
    $demo->do_someotherthing;
}

#$demo->stop_timer($_) for $demo->timer_names;

for my $timer ( $demo->timer_names ) {
    printf "timer %-20s %3.6fs\n", "'$timer'", $demo->elapsed_timer($timer);
}