← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mongo_pain.pl
  Run on Fri Mar 25 17:00:29 2011
Reported on Fri Mar 25 17:07:10 2011

Filename/usr/local/lib/perl/5.10.1/Params/ValidateXS.pm
StatementsExecuted 17 statements in 725µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
4682225.9ms25.9msParams::Validate::::_validateParams::Validate::_validate (xsub)
4232113.2ms13.2msParams::Validate::::_validate_posParams::Validate::_validate_pos (xsub)
11127µs27µsParams::Validate::::BEGIN@41Params::Validate::BEGIN@41
11116µs20µsParams::Validate::::BEGIN@3.2Params::Validate::BEGIN@3.2
11110µs26µsParams::Validate::::BEGIN@4Params::Validate::BEGIN@4
0000s0sParams::Validate::::__ANON__[:11]Params::Validate::__ANON__[:11]
0000s0sParams::Validate::::_check_regex_from_xsParams::Validate::_check_regex_from_xs
0000s0sParams::Validate::::validation_optionsParams::Validate::validation_options
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Params::Validate;
2
3332µs223µs
# spent 20µs (16+3) within Params::Validate::BEGIN@3.2 which was called: # once (16µs+3µs) by Params::Validate::BEGIN@5 at line 3
use strict;
# spent 20µs making 1 call to Params::Validate::BEGIN@3.2 # spent 4µs making 1 call to strict::import
43442µs242µs
# spent 26µs (10+16) within Params::Validate::BEGIN@4 which was called: # once (10µs+16µs) by Params::Validate::BEGIN@5 at line 4
use warnings;
# spent 26µs making 1 call to Params::Validate::BEGIN@4 # spent 16µs making 1 call to warnings::import
5
61500nsrequire XSLoader;
71185µs1179µsXSLoader::load( 'Params::Validate', $Params::Validate::VERSION );
# spent 179µs making 1 call to XSLoader::load
8
9
10my $default_fail = sub { require Carp;
1114µs Carp::confess($_[0]) };
12
13{
1424µs my %defaults = ( ignore_case => 0,
15 strip_leading => 0,
16 allow_extra => 0,
17 on_fail => $default_fail,
18 stack_skip => 1,
19 normalize_keys => undef,
20 );
21
2212µs *set_options = \&validation_options;
23 sub validation_options
24 {
25 my %opts = @_;
26
27 my $caller = caller;
28
29 foreach ( keys %defaults )
30 {
31 $opts{$_} = $defaults{$_} unless exists $opts{$_};
32 }
33
34 $OPTIONS{$caller} = \%opts;
35 }
36}
37
38sub _check_regex_from_xs { return ( defined $_[0] ? $_[0] : '' ) =~ /$_[1]/ ? 1 : 0 }
39
40BEGIN
41
# spent 27µs within Params::Validate::BEGIN@41 which was called: # once (27µs+0s) by Params::Validate::BEGIN@5 at line 135
{
4217µs if ( $] >= 5.006 && $] < 5.007 )
43 {
44 eval <<'EOF';
45sub check_for_error
46{
47 if ( defined $Params::Validate::ERROR )
48 {
49 $Params::Validate::ON_FAIL ||= sub { require Carp; Carp::croak( $_[0] ) };
50
51 $Params::Validate::ON_FAIL->($Params::Validate::ERROR)
52 }
53}
54
55sub validate_pos (\@@)
56{
57 local $Params::Validate::ERROR;
58 local $Params::Validate::ON_FAIL;
59 local $Params::Validate::CALLER = caller;
60
61 my $r;
62 if (defined wantarray)
63 {
64 $r = &_validate_pos;
65 }
66 else
67 {
68 &_validate_pos;
69 }
70
71 check_for_error();
72
73 return wantarray ? @$r : $r if defined wantarray;
74}
75
76sub validate (\@$)
77{
78 local $Params::Validate::ERROR;
79 local $Params::Validate::ON_FAIL;
80 local $Params::Validate::CALLER = caller;
81
82 my $r;
83 if (defined wantarray)
84 {
85 $r = &_validate;
86 }
87 else
88 {
89 &_validate;
90 }
91
92 check_for_error();
93
94 return wantarray ? %$r : $r if defined wantarray;
95}
96
97sub validate_with
98{
99 local $Params::Validate::ERROR;
100 local $Params::Validate::ON_FAIL;
101 local $Params::Validate::CALLER = caller;
102
103 my $r;
104 if (defined wantarray)
105 {
106 $r = &_validate_with;
107 }
108 else
109 {
110 &_validate_with;
111 }
112
113 check_for_error();
114
115 my %p = @_;
116 if ( UNIVERSAL::isa( $p{spec}, 'ARRAY' ) )
117 {
118 return wantarray ? @$r : $r if defined wantarray;
119 }
120 else
121 {
122 return wantarray ? %$r : $r if defined wantarray;
123 }
124}
125EOF
126
127 die $@ if $@;
128 }
129 else
130 {
131110µs *validate = \&_validate;
13214µs *validate_pos = \&_validate_pos;
13315µs *validate_with = \&_validate_with;
134 }
135121µs127µs}
# spent 27µs making 1 call to Params::Validate::BEGIN@41
136
13718µs1;
138
139__END__
 
# spent 25.9ms within Params::Validate::_validate which was called 468 times, avg 55µs/call: # 466 times (25.8ms+0s) by DateTime::Locale::_register at line 41 of DateTime/Locale.pm, avg 55µs/call # 2 times (94µs+0s) by DateTime::TimeZone::new at line 35 of DateTime/TimeZone.pm, avg 47µs/call
sub Params::Validate::_validate; # xsub
# spent 13.2ms within Params::Validate::_validate_pos which was called 423 times, avg 31µs/call: # 422 times (13.1ms+0s) by DateTime::Locale::_registered_id at line 92 of DateTime/Locale.pm, avg 31µs/call # once (40µs+0s) by DateTime::Locale::load at line 182 of DateTime/Locale.pm
sub Params::Validate::_validate_pos; # xsub