Filename | /Users/ether/.perlbrew/libs/36.0@std/lib/perl5/YAML/PP/Loader.pm |
Statements | Executed 39 statements in 1.86ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 8.50ms | 24.4ms | BEGIN@8 | YAML::PP::Loader::
1 | 1 | 1 | 3.11ms | 3.57ms | BEGIN@9 | YAML::PP::Loader::
1 | 1 | 1 | 35µs | 38µs | BEGIN@2.284 | YAML::PP::
1 | 1 | 1 | 28µs | 144µs | new | YAML::PP::Loader::
1 | 1 | 1 | 23µs | 6.54s | load | YAML::PP::Loader::
1 | 1 | 1 | 18µs | 6.54s | load_file | YAML::PP::Loader::
1 | 1 | 1 | 9µs | 9µs | BEGIN@10 | YAML::PP::Loader::
3 | 3 | 1 | 9µs | 9µs | __ANON__ (xsub) | YAML::PP::
1 | 1 | 1 | 8µs | 43µs | BEGIN@3 | YAML::PP::
3 | 3 | 1 | 5µs | 5µs | __ANON__ (xsub) | YAML::PP::Loader::
2 | 2 | 1 | 3µs | 3µs | parser | YAML::PP::Loader::
1 | 1 | 1 | 1µs | 1µs | constructor | YAML::PP::Loader::
0 | 0 | 0 | 0s | 0s | clone | YAML::PP::Loader::
0 | 0 | 0 | 0s | 0s | filename | YAML::PP::Loader::
0 | 0 | 0 | 0s | 0s | load_string | YAML::PP::Loader::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # ABSTRACT: Load YAML into data with Parser and Constructor | ||||
2 | 2 | 37µs | 2 | 41µs | # spent 38µs (35+3) within YAML::PP::BEGIN@2.284 which was called:
# once (35µs+3µs) by YAML::PP::BEGIN@10 at line 2 # spent 38µs making 1 call to YAML::PP::BEGIN@2.284
# spent 3µs making 1 call to strict::import |
3 | 2 | 42µs | 2 | 78µs | # spent 43µs (8+35) within YAML::PP::BEGIN@3 which was called:
# once (8µs+35µs) by YAML::PP::BEGIN@10 at line 3 # spent 43µs making 1 call to YAML::PP::BEGIN@3
# spent 35µs making 1 call to warnings::import |
4 | package YAML::PP::Loader; | ||||
5 | |||||
6 | 1 | 0s | our $VERSION = '0.035'; # VERSION | ||
7 | |||||
8 | 2 | 621µs | 2 | 24.4ms | # spent 24.4ms (8.50+15.9) within YAML::PP::Loader::BEGIN@8 which was called:
# once (8.50ms+15.9ms) by YAML::PP::BEGIN@10 at line 8 # spent 24.4ms making 1 call to YAML::PP::Loader::BEGIN@8
# spent 3µs making 1 call to YAML::PP::Loader::__ANON__ |
9 | 2 | 679µs | 2 | 3.57ms | # spent 3.57ms (3.11+460µs) within YAML::PP::Loader::BEGIN@9 which was called:
# once (3.11ms+460µs) by YAML::PP::BEGIN@10 at line 9 # spent 3.57ms making 1 call to YAML::PP::Loader::BEGIN@9
# spent 2µs making 1 call to YAML::PP::Loader::__ANON__ |
10 | 2 | 418µs | 2 | 9µs | # spent 9µs within YAML::PP::Loader::BEGIN@10 which was called:
# once (9µs+0s) by YAML::PP::BEGIN@10 at line 10 # spent 9µs making 1 call to YAML::PP::Loader::BEGIN@10
# spent 0s making 1 call to YAML::PP::Loader::__ANON__ |
11 | |||||
12 | # spent 144µs (28+116) within YAML::PP::Loader::new which was called:
# once (28µs+116µs) by YAML::PP::new at line 65 of YAML/PP.pm | ||||
13 | 1 | 3µs | my ($class, %args) = @_; | ||
14 | |||||
15 | 1 | 1µs | my $cyclic_refs = delete $args{cyclic_refs} || 'allow'; | ||
16 | 1 | 1µs | my $default_yaml_version = delete $args{default_yaml_version} || '1.2'; | ||
17 | 1 | 0s | my $preserve = delete $args{preserve}; | ||
18 | 1 | 0s | my $duplicate_keys = delete $args{duplicate_keys}; | ||
19 | 1 | 0s | my $schemas = delete $args{schemas}; | ||
20 | 1 | 0s | $schemas ||= { | ||
21 | '1.2' => YAML::PP->default_schema( | ||||
22 | boolean => 'perl', | ||||
23 | ) | ||||
24 | }; | ||||
25 | |||||
26 | 1 | 5µs | 1 | 66µs | my $constructor = delete $args{constructor} || YAML::PP::Constructor->new( # spent 66µs making 1 call to YAML::PP::Constructor::new |
27 | schemas => $schemas, | ||||
28 | cyclic_refs => $cyclic_refs, | ||||
29 | default_yaml_version => $default_yaml_version, | ||||
30 | preserve => $preserve, | ||||
31 | duplicate_keys => $duplicate_keys, | ||||
32 | ); | ||||
33 | 1 | 1µs | my $parser = delete $args{parser}; | ||
34 | 1 | 3µs | 1 | 36µs | unless ($parser) { # spent 36µs making 1 call to YAML::PP::Parser::new |
35 | $parser = YAML::PP::Parser->new( | ||||
36 | default_yaml_version => $default_yaml_version, | ||||
37 | ); | ||||
38 | } | ||||
39 | 1 | 4µs | 2 | 14µs | unless ($parser->receiver) { # spent 11µs making 1 call to YAML::PP::Parser::set_receiver
# spent 3µs making 1 call to YAML::PP::Parser::receiver |
40 | $parser->set_receiver($constructor); | ||||
41 | } | ||||
42 | |||||
43 | 1 | 0s | if (keys %args) { | ||
44 | die "Unexpected arguments: " . join ', ', sort keys %args; | ||||
45 | } | ||||
46 | 1 | 2µs | my $self = bless { | ||
47 | parser => $parser, | ||||
48 | constructor => $constructor, | ||||
49 | }, $class; | ||||
50 | 1 | 10µs | return $self; | ||
51 | } | ||||
52 | |||||
53 | sub clone { | ||||
54 | my ($self) = @_; | ||||
55 | my $clone = { | ||||
56 | parser => $self->parser->clone, | ||||
57 | constructor => $self->constructor->clone, | ||||
58 | }; | ||||
59 | bless $clone, ref $self; | ||||
60 | $clone->parser->set_receiver($clone->constructor); | ||||
61 | return $clone; | ||||
62 | } | ||||
63 | |||||
64 | 2 | 6µs | sub parser { return $_[0]->{parser} } | ||
65 | 1 | 3µs | # spent 1µs within YAML::PP::Loader::constructor which was called:
# once (1µs+0s) by YAML::PP::Loader::load at line 91 | ||
66 | |||||
67 | sub filename { | ||||
68 | my ($self) = @_; | ||||
69 | my $reader = $self->parser->reader; | ||||
70 | if ($reader->isa('YAML::PP::Reader::File')) { | ||||
71 | return $reader->input; | ||||
72 | } | ||||
73 | die "Reader is not a YAML::PP::Reader::File"; | ||||
74 | } | ||||
75 | |||||
76 | sub load_string { | ||||
77 | my ($self, $yaml) = @_; | ||||
78 | $self->parser->set_reader(YAML::PP::Reader->new( input => $yaml )); | ||||
79 | $self->load(); | ||||
80 | } | ||||
81 | |||||
82 | # spent 6.54s (18µs+6.54) within YAML::PP::Loader::load_file which was called:
# once (18µs+6.54s) by YAML::PP::load_file at line 154 of YAML/PP.pm | ||||
83 | 1 | 0s | my ($self, $file) = @_; | ||
84 | 1 | 9µs | 3 | 16µs | $self->parser->set_reader(YAML::PP::Reader::File->new( input => $file )); # spent 13µs making 1 call to YAML::PP::Parser::set_reader
# spent 2µs making 1 call to YAML::PP::Loader::parser
# spent 1µs making 1 call to YAML::PP::Reader::new |
85 | 1 | 6µs | 1 | 6.54s | $self->load(); # spent 6.54s making 1 call to YAML::PP::Loader::load |
86 | } | ||||
87 | |||||
88 | # spent 6.54s (23µs+6.54) within YAML::PP::Loader::load which was called:
# once (23µs+6.54s) by YAML::PP::Loader::load_file at line 85 | ||||
89 | 1 | 0s | my ($self) = @_; | ||
90 | 1 | 0s | 1 | 1µs | my $parser = $self->parser; # spent 1µs making 1 call to YAML::PP::Loader::parser |
91 | 1 | 1µs | 1 | 1µs | my $constructor = $self->constructor; # spent 1µs making 1 call to YAML::PP::Loader::constructor |
92 | |||||
93 | 1 | 2µs | 1 | 21µs | $constructor->init; # spent 21µs making 1 call to YAML::PP::Constructor::init |
94 | 1 | 2µs | 1 | 6.54s | $parser->parse(); # spent 6.54s making 1 call to YAML::PP::Parser::parse |
95 | |||||
96 | 1 | 1µs | 1 | 0s | my $docs = $constructor->docs; # spent 0s making 1 call to YAML::PP::Constructor::docs |
97 | 1 | 3µs | return wantarray ? @$docs : $docs->[0]; | ||
98 | } | ||||
99 | |||||
100 | |||||
101 | 1 | 4µs | 1; | ||
sub YAML::PP::Loader::__ANON__; # xsub | |||||
# spent 9µs within YAML::PP::__ANON__ which was called 3 times, avg 3µs/call:
# once (6µs+0s) by YAML::PP::BEGIN@8 at line 8 of YAML/PP.pm
# once (2µs+0s) by YAML::PP::BEGIN@11 at line 11 of YAML/PP.pm
# once (1µs+0s) by YAML::PP::BEGIN@10 at line 10 of YAML/PP.pm |