| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# ABSTRACT: Reader class for YAML::PP representing input data |
|
2
|
52
|
|
|
52
|
|
147290
|
use strict; |
|
|
52
|
|
|
|
|
71
|
|
|
|
52
|
|
|
|
|
2358
|
|
|
3
|
52
|
|
|
52
|
|
169
|
use warnings; |
|
|
52
|
|
|
|
|
96
|
|
|
|
52
|
|
|
|
|
18333
|
|
|
4
|
|
|
|
|
|
|
package YAML::PP::Reader; |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = 'v0.40.0'; # VERSION |
|
7
|
|
|
|
|
|
|
|
|
8
|
3
|
|
|
3
|
0
|
7
|
sub input { return $_[0]->{input} } |
|
9
|
0
|
|
|
0
|
0
|
0
|
sub set_input { $_[0]->{input} = $_[1] } |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub new { |
|
12
|
12283
|
|
|
12283
|
0
|
24704
|
my ($class, %args) = @_; |
|
13
|
12283
|
|
|
|
|
18889
|
my $input = delete $args{input}; |
|
14
|
12283
|
|
|
|
|
51289
|
return bless { |
|
15
|
|
|
|
|
|
|
input => $input, |
|
16
|
|
|
|
|
|
|
}, $class; |
|
17
|
|
|
|
|
|
|
} |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub read { |
|
20
|
1
|
|
|
1
|
0
|
2
|
my ($self) = @_; |
|
21
|
1
|
|
50
|
|
|
3
|
my $pos = pos $self->{input} || 0; |
|
22
|
1
|
|
|
|
|
2
|
my $yaml = substr($self->{input}, $pos); |
|
23
|
1
|
|
|
|
|
2
|
$self->{input} = ''; |
|
24
|
1
|
|
|
|
|
9
|
return $yaml; |
|
25
|
|
|
|
|
|
|
} |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
sub readline { |
|
28
|
40139
|
|
|
40139
|
0
|
52030
|
my ($self) = @_; |
|
29
|
40139
|
100
|
|
|
|
70168
|
unless (length $self->{input}) { |
|
30
|
4448
|
|
|
|
|
7869
|
return; |
|
31
|
|
|
|
|
|
|
} |
|
32
|
35691
|
50
|
|
|
|
148753
|
if ( $self->{input} =~ m/\G([^\r\n]*(?:\n|\r\n|\r|\z))/g ) { |
|
33
|
35691
|
|
|
|
|
67631
|
my $line = $1; |
|
34
|
35691
|
100
|
|
|
|
60391
|
unless (length $line) { |
|
35
|
7380
|
|
|
|
|
12539
|
$self->{input} = ''; |
|
36
|
7380
|
|
|
|
|
14318
|
return; |
|
37
|
|
|
|
|
|
|
} |
|
38
|
28311
|
|
|
|
|
58162
|
return $line; |
|
39
|
|
|
|
|
|
|
} |
|
40
|
0
|
|
|
|
|
0
|
return; |
|
41
|
|
|
|
|
|
|
} |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
package YAML::PP::Reader::File; |
|
44
|
|
|
|
|
|
|
|
|
45
|
52
|
|
|
52
|
|
332
|
use Scalar::Util qw/ openhandle /; |
|
|
52
|
|
|
|
|
92
|
|
|
|
52
|
|
|
|
|
3522
|
|
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
our @ISA = qw/ YAML::PP::Reader /; |
|
48
|
|
|
|
|
|
|
|
|
49
|
52
|
|
|
52
|
|
270
|
use Carp qw/ croak /; |
|
|
52
|
|
|
|
|
83
|
|
|
|
52
|
|
|
|
|
12528
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
sub open_handle { |
|
52
|
19
|
100
|
|
19
|
|
64
|
if (openhandle( $_[0]->{input} )) { |
|
53
|
1
|
|
|
|
|
4
|
return $_[0]->{input}; |
|
54
|
|
|
|
|
|
|
} |
|
55
|
|
|
|
|
|
|
open my $fh, '<:encoding(UTF-8)', $_[0]->{input} |
|
56
|
18
|
50
|
|
4
|
|
965
|
or croak "Could not open '$_[0]->{input}' for reading: $!"; |
|
|
4
|
|
|
|
|
2455
|
|
|
|
4
|
|
|
|
|
59
|
|
|
|
4
|
|
|
|
|
20
|
|
|
57
|
18
|
|
|
|
|
4555
|
return $fh; |
|
58
|
|
|
|
|
|
|
} |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
sub read { |
|
61
|
0
|
|
0
|
0
|
|
0
|
my $fh = $_[0]->{filehandle} ||= $_[0]->open_handle; |
|
62
|
0
|
0
|
|
|
|
0
|
if (wantarray) { |
|
63
|
0
|
|
|
|
|
0
|
my @yaml = <$fh>; |
|
64
|
0
|
|
|
|
|
0
|
return @yaml; |
|
65
|
|
|
|
|
|
|
} |
|
66
|
|
|
|
|
|
|
else { |
|
67
|
0
|
|
|
|
|
0
|
local $/; |
|
68
|
0
|
|
|
|
|
0
|
my $yaml = <$fh>; |
|
69
|
0
|
|
|
|
|
0
|
return $yaml; |
|
70
|
|
|
|
|
|
|
} |
|
71
|
|
|
|
|
|
|
} |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
sub readline { |
|
74
|
974
|
|
66
|
974
|
|
1926
|
my $fh = $_[0]->{filehandle} ||= $_[0]->open_handle; |
|
75
|
974
|
|
|
|
|
4692
|
return scalar <$fh>; |
|
76
|
|
|
|
|
|
|
} |
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
1; |