| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
51
|
|
|
51
|
|
149701
|
use strict; |
|
|
51
|
|
|
|
|
70
|
|
|
|
51
|
|
|
|
|
1552
|
|
|
2
|
51
|
|
|
51
|
|
3298
|
use warnings; |
|
|
51
|
|
|
|
|
81
|
|
|
|
51
|
|
|
|
|
3796
|
|
|
3
|
|
|
|
|
|
|
package YAML::PP::Lexer; |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = 'v0.39.0'; # VERSION |
|
6
|
|
|
|
|
|
|
|
|
7
|
51
|
50
|
|
51
|
|
231
|
use constant TRACE => $ENV{YAML_PP_TRACE} ? 1 : 0; |
|
|
51
|
|
|
|
|
80
|
|
|
|
51
|
|
|
|
|
3878
|
|
|
8
|
51
|
100
|
66
|
51
|
|
1853
|
use constant DEBUG => ($ENV{YAML_PP_DEBUG} || $ENV{YAML_PP_TRACE}) ? 1 : 0; |
|
|
51
|
|
|
|
|
85
|
|
|
|
51
|
|
|
|
|
11279
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
51
|
|
|
51
|
|
26907
|
use YAML::PP::Grammar qw/ $GRAMMAR /; |
|
|
51
|
|
|
|
|
173
|
|
|
|
51
|
|
|
|
|
8438
|
|
|
11
|
51
|
|
|
51
|
|
374
|
use Carp qw/ croak /; |
|
|
51
|
|
|
|
|
69
|
|
|
|
51
|
|
|
|
|
314360
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub new { |
|
14
|
4688
|
|
|
4688
|
0
|
9763
|
my ($class, %args) = @_; |
|
15
|
|
|
|
|
|
|
my $self = bless { |
|
16
|
|
|
|
|
|
|
reader => $args{reader}, |
|
17
|
4688
|
|
|
|
|
17178
|
}, $class; |
|
18
|
4688
|
|
|
|
|
11028
|
$self->init; |
|
19
|
4688
|
|
|
|
|
15445
|
return $self; |
|
20
|
|
|
|
|
|
|
} |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
sub init { |
|
23
|
19884
|
|
|
19884
|
0
|
25099
|
my ($self) = @_; |
|
24
|
19884
|
|
|
|
|
28216
|
$self->{next_tokens} = []; |
|
25
|
19884
|
|
|
|
|
25827
|
$self->{next_line} = undef; |
|
26
|
19884
|
|
|
|
|
24205
|
$self->{line} = 0; |
|
27
|
19884
|
|
|
|
|
23462
|
$self->{offset} = 0; |
|
28
|
19884
|
|
|
|
|
32102
|
$self->{flowcontext} = 0; |
|
29
|
|
|
|
|
|
|
} |
|
30
|
|
|
|
|
|
|
|
|
31
|
74696
|
|
|
74696
|
0
|
94188
|
sub next_line { return $_[0]->{next_line} } |
|
32
|
70255
|
|
|
70255
|
0
|
89005
|
sub set_next_line { $_[0]->{next_line} = $_[1] } |
|
33
|
41107
|
|
|
41107
|
0
|
92439
|
sub reader { return $_[0]->{reader} } |
|
34
|
7598
|
|
|
7598
|
0
|
21219
|
sub set_reader { $_[0]->{reader} = $_[1] } |
|
35
|
130960
|
|
|
130960
|
0
|
162809
|
sub next_tokens { return $_[0]->{next_tokens} } |
|
36
|
273489
|
|
|
273489
|
0
|
422152
|
sub line { return $_[0]->{line} } |
|
37
|
0
|
|
|
0
|
0
|
0
|
sub set_line { $_[0]->{line} = $_[1] } |
|
38
|
91356
|
|
|
91356
|
0
|
107967
|
sub offset { return $_[0]->{offset} } |
|
39
|
91254
|
|
|
91254
|
0
|
109475
|
sub set_offset { $_[0]->{offset} = $_[1] } |
|
40
|
29247
|
|
|
29247
|
0
|
36293
|
sub inc_line { return $_[0]->{line}++ } |
|
41
|
67955
|
|
|
67955
|
0
|
109299
|
sub context { return $_[0]->{context} } |
|
42
|
3872
|
|
|
3872
|
0
|
5027
|
sub set_context { $_[0]->{context} = $_[1] } |
|
43
|
107491
|
|
|
107491
|
0
|
209054
|
sub flowcontext { return $_[0]->{flowcontext} } |
|
44
|
4933
|
|
|
4933
|
0
|
6938
|
sub set_flowcontext { $_[0]->{flowcontext} = $_[1] } |
|
45
|
17885
|
|
|
17885
|
0
|
41425
|
sub block { return $_[0]->{block} } |
|
46
|
29327
|
|
|
29327
|
0
|
39309
|
sub set_block { $_[0]->{block} = $_[1] } |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
my $RE_WS = '[\t ]'; |
|
49
|
|
|
|
|
|
|
my $RE_LB = '[\r\n]'; |
|
50
|
|
|
|
|
|
|
my $RE_DOC_END = qr/\A(\.\.\.)(?=$RE_WS|$)/m; |
|
51
|
|
|
|
|
|
|
my $RE_DOC_START = qr/\A(---)(?=$RE_WS|$)/m; |
|
52
|
|
|
|
|
|
|
my $RE_EOL = qr/\A($RE_WS+#.*|$RE_WS+)\z/; |
|
53
|
|
|
|
|
|
|
#my $RE_COMMENT_EOL = qr/\A(#.*)?(?:$RE_LB|\z)/; |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
#ns-word-char ::= ns-dec-digit | ns-ascii-letter | “-” |
|
56
|
|
|
|
|
|
|
my $RE_NS_WORD_CHAR = '[0-9A-Za-z-]'; |
|
57
|
|
|
|
|
|
|
my $RE_URI_CHAR = '(?:' . '%[0-9a-fA-F]{2}' .'|'. q{[0-9A-Za-z#;/?:@&=+$,_.!*'\(\)\[\]-]} . ')'; |
|
58
|
|
|
|
|
|
|
my $RE_NS_TAG_CHAR = '(?:' . '%[0-9a-fA-F]{2}' .'|'. q{[0-9A-Za-z#;/?:@&=+$_.~*'\(\)-]} . ')'; |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
# [#x21-#x7E] /* 8 bit */ |
|
61
|
|
|
|
|
|
|
# | #x85 | [#xA0-#xD7FF] | [#xE000-#xFFFD] /* 16 bit */ |
|
62
|
|
|
|
|
|
|
# | [#x10000-#x10FFFF] /* 32 bit */ |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
#nb-char ::= c-printable - b-char - c-byte-order-mark |
|
65
|
|
|
|
|
|
|
#my $RE_NB_CHAR = '[\x21-\x7E]'; |
|
66
|
|
|
|
|
|
|
my $RE_ANCHOR_CAR = '[\x21-\x2B\x2D-\x5A\x5C\x5E-\x7A\x7C\x7E\xA0-\xFF\x{100}-\x{10FFFF}]'; |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
my $RE_PLAIN_START = '[\x21\x22\x24-\x39\x3B-\x7E\xA0-\xFF\x{100}-\x{10FFFF}]'; |
|
69
|
|
|
|
|
|
|
my $RE_PLAIN_END = '[\x21-\x39\x3B-\x7E\x85\xA0-\x{D7FF}\x{E000}-\x{FEFE}\x{FF00}-\x{FFFD}\x{10000}-\x{10FFFF}]'; |
|
70
|
|
|
|
|
|
|
my $RE_PLAIN_FIRST = '[\x24\x28-\x29\x2B\x2E-\x39\x3B-\x3D\x41-\x5A\x5C\x5E-\x5F\x61-\x7A\x7E\xA0-\xFF\x{100}-\x{10FFFF}]'; |
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
my $RE_PLAIN_START_FLOW = '[\x21\x22\x24-\x2B\x2D-\x39\x3B-\x5A\x5C\x5E-\x7A\x7C\x7E\xA0-\xFF\x{100}-\x{10FFFF}]'; |
|
73
|
|
|
|
|
|
|
my $RE_PLAIN_END_FLOW = '[\x21-\x2B\x2D-\x39\x3B-\x5A\x5C\x5E-\x7A\x7C\x7E\x85\xA0-\x{D7FF}\x{E000}-\x{FEFE}\x{FF00}-\x{FFFD}\x{10000}-\x{10FFFF}]'; |
|
74
|
|
|
|
|
|
|
my $RE_PLAIN_FIRST_FLOW = '[\x24\x28-\x29\x2B\x2E-\x39\x3B-\x3D\x41-\x5A\x5C\x5E-\x5F\x61-\x7A\x7C\x7E\xA0-\xFF\x{100}-\x{10FFFF}]'; |
|
75
|
|
|
|
|
|
|
# c-indicators |
|
76
|
|
|
|
|
|
|
#! 21 |
|
77
|
|
|
|
|
|
|
#" 22 |
|
78
|
|
|
|
|
|
|
## 23 |
|
79
|
|
|
|
|
|
|
#% 25 |
|
80
|
|
|
|
|
|
|
#& 26 |
|
81
|
|
|
|
|
|
|
#' 27 |
|
82
|
|
|
|
|
|
|
#* 2A |
|
83
|
|
|
|
|
|
|
#, 2C FLOW |
|
84
|
|
|
|
|
|
|
#- 2D XX |
|
85
|
|
|
|
|
|
|
#: 3A XX |
|
86
|
|
|
|
|
|
|
#> 3E |
|
87
|
|
|
|
|
|
|
#? 3F XX |
|
88
|
|
|
|
|
|
|
#@ 40 |
|
89
|
|
|
|
|
|
|
#[ 5B FLOW |
|
90
|
|
|
|
|
|
|
#] 5D FLOW |
|
91
|
|
|
|
|
|
|
#` 60 |
|
92
|
|
|
|
|
|
|
#{ 7B FLOW |
|
93
|
|
|
|
|
|
|
#| 7C |
|
94
|
|
|
|
|
|
|
#} 7D FLOW |
|
95
|
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
my $RE_PLAIN_WORD = "(?::+$RE_PLAIN_END|$RE_PLAIN_START)(?::+$RE_PLAIN_END|$RE_PLAIN_END)*"; |
|
98
|
|
|
|
|
|
|
my $RE_PLAIN_FIRST_WORD = "(?:[:?-]+$RE_PLAIN_END|$RE_PLAIN_FIRST)(?::+$RE_PLAIN_END|$RE_PLAIN_END)*"; |
|
99
|
|
|
|
|
|
|
my $RE_PLAIN_WORDS = "(?:$RE_PLAIN_FIRST_WORD(?:$RE_WS+$RE_PLAIN_WORD)*)"; |
|
100
|
|
|
|
|
|
|
my $RE_PLAIN_WORDS2 = "(?:$RE_PLAIN_WORD(?:$RE_WS+$RE_PLAIN_WORD)*)"; |
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
my $RE_PLAIN_WORD_FLOW = "(?::+$RE_PLAIN_END_FLOW|$RE_PLAIN_START_FLOW)(?::+$RE_PLAIN_END_FLOW|$RE_PLAIN_END_FLOW)*"; |
|
103
|
|
|
|
|
|
|
my $RE_PLAIN_FIRST_WORD_FLOW = "(?:[:?-]+$RE_PLAIN_END_FLOW|$RE_PLAIN_FIRST_FLOW)(?::+$RE_PLAIN_END_FLOW|$RE_PLAIN_END_FLOW)*"; |
|
104
|
|
|
|
|
|
|
my $RE_PLAIN_WORDS_FLOW = "(?:$RE_PLAIN_FIRST_WORD_FLOW(?:$RE_WS+$RE_PLAIN_WORD_FLOW)*)"; |
|
105
|
|
|
|
|
|
|
my $RE_PLAIN_WORDS_FLOW2 = "(?:$RE_PLAIN_WORD_FLOW(?:$RE_WS+$RE_PLAIN_WORD_FLOW)*)"; |
|
106
|
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
#c-secondary-tag-handle ::= “!” “!” |
|
109
|
|
|
|
|
|
|
#c-named-tag-handle ::= “!” ns-word-char+ “!” |
|
110
|
|
|
|
|
|
|
#ns-tag-char ::= ns-uri-char - “!” - c-flow-indicator |
|
111
|
|
|
|
|
|
|
#ns-global-tag-prefix ::= ns-tag-char ns-uri-char* |
|
112
|
|
|
|
|
|
|
#c-ns-local-tag-prefix ::= “!” ns-uri-char* |
|
113
|
|
|
|
|
|
|
my $RE_TAG = "!(?:$RE_NS_WORD_CHAR*!$RE_NS_TAG_CHAR+|$RE_NS_TAG_CHAR+|<$RE_URI_CHAR+>|)"; |
|
114
|
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
#c-ns-anchor-property ::= “&” ns-anchor-name |
|
116
|
|
|
|
|
|
|
#ns-char ::= nb-char - s-white |
|
117
|
|
|
|
|
|
|
#ns-anchor-char ::= ns-char - c-flow-indicator |
|
118
|
|
|
|
|
|
|
#ns-anchor-name ::= ns-anchor-char+ |
|
119
|
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
my $RE_SEQSTART = qr/\A(-)(?=$RE_WS|$)/m; |
|
121
|
|
|
|
|
|
|
my $RE_COMPLEX = qr/(\?)(?=$RE_WS|$)/m; |
|
122
|
|
|
|
|
|
|
my $RE_COMPLEXCOLON = qr/\A(:)(?=$RE_WS|$)/m; |
|
123
|
|
|
|
|
|
|
my $RE_ANCHOR = "&$RE_ANCHOR_CAR+"; |
|
124
|
|
|
|
|
|
|
my $RE_ALIAS = "\\*$RE_ANCHOR_CAR+"; |
|
125
|
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
my %REGEXES = ( |
|
128
|
|
|
|
|
|
|
ANCHOR => qr{($RE_ANCHOR)}, |
|
129
|
|
|
|
|
|
|
TAG => qr{($RE_TAG)}, |
|
130
|
|
|
|
|
|
|
ALIAS => qr{($RE_ALIAS)}, |
|
131
|
|
|
|
|
|
|
SINGLEQUOTED => qr{(?:''|[^'\r\n]+)*}, |
|
132
|
|
|
|
|
|
|
); |
|
133
|
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
sub _fetch_next_line { |
|
135
|
47554
|
|
|
47554
|
|
57844
|
my ($self) = @_; |
|
136
|
47554
|
|
|
|
|
62877
|
my $next_line = $self->next_line; |
|
137
|
47554
|
100
|
|
|
|
68761
|
if (defined $next_line ) { |
|
138
|
6447
|
|
|
|
|
9635
|
return $next_line; |
|
139
|
|
|
|
|
|
|
} |
|
140
|
|
|
|
|
|
|
|
|
141
|
41107
|
|
|
|
|
60344
|
my $line = $self->reader->readline; |
|
142
|
41107
|
100
|
|
|
|
66165
|
unless (defined $line) { |
|
143
|
11860
|
|
|
|
|
22249
|
$self->set_next_line(undef); |
|
144
|
11860
|
|
|
|
|
18960
|
return; |
|
145
|
|
|
|
|
|
|
} |
|
146
|
29247
|
|
|
|
|
56270
|
$self->set_block(1); |
|
147
|
29247
|
|
|
|
|
50057
|
$self->inc_line; |
|
148
|
29247
|
50
|
|
|
|
91524
|
$line =~ m/\A( *)([^\r\n]*)([\r\n]|\z)/ or die "Unexpected"; |
|
149
|
29247
|
|
|
|
|
82850
|
$next_line = [ $1, $2, $3 ]; |
|
150
|
29247
|
|
|
|
|
51884
|
$self->set_next_line($next_line); |
|
151
|
|
|
|
|
|
|
# $ESCAPE_CHAR from YAML.pm |
|
152
|
29247
|
100
|
|
|
|
54546
|
if ($line =~ tr/\x00-\x08\x0b-\x0c\x0e-\x1f//) { |
|
153
|
29
|
|
|
|
|
59
|
$self->exception("Control characters are not allowed"); |
|
154
|
|
|
|
|
|
|
} |
|
155
|
|
|
|
|
|
|
|
|
156
|
29218
|
|
|
|
|
45594
|
return $next_line; |
|
157
|
|
|
|
|
|
|
} |
|
158
|
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
my %TOKEN_NAMES = ( |
|
160
|
|
|
|
|
|
|
'"' => 'DOUBLEQUOTE', |
|
161
|
|
|
|
|
|
|
"'" => 'SINGLEQUOTE', |
|
162
|
|
|
|
|
|
|
'|' => 'LITERAL', |
|
163
|
|
|
|
|
|
|
'>' => 'FOLDED', |
|
164
|
|
|
|
|
|
|
'!' => 'TAG', |
|
165
|
|
|
|
|
|
|
'*' => 'ALIAS', |
|
166
|
|
|
|
|
|
|
'&' => 'ANCHOR', |
|
167
|
|
|
|
|
|
|
':' => 'COLON', |
|
168
|
|
|
|
|
|
|
'-' => 'DASH', |
|
169
|
|
|
|
|
|
|
'?' => 'QUESTION', |
|
170
|
|
|
|
|
|
|
'[' => 'FLOWSEQ_START', |
|
171
|
|
|
|
|
|
|
']' => 'FLOWSEQ_END', |
|
172
|
|
|
|
|
|
|
'{' => 'FLOWMAP_START', |
|
173
|
|
|
|
|
|
|
'}' => 'FLOWMAP_END', |
|
174
|
|
|
|
|
|
|
',' => 'FLOW_COMMA', |
|
175
|
|
|
|
|
|
|
'---' => 'DOC_START', |
|
176
|
|
|
|
|
|
|
'...' => 'DOC_END', |
|
177
|
|
|
|
|
|
|
); |
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
sub fetch_next_tokens { |
|
181
|
31983
|
|
|
31983
|
0
|
41481
|
my ($self) = @_; |
|
182
|
31983
|
|
|
|
|
45533
|
my $next = $self->next_tokens; |
|
183
|
31983
|
100
|
|
|
|
53229
|
return $next if @$next; |
|
184
|
|
|
|
|
|
|
|
|
185
|
31177
|
|
|
|
|
48525
|
my $next_line = $self->_fetch_next_line; |
|
186
|
31148
|
100
|
|
|
|
45869
|
if (not $next_line) { |
|
187
|
7449
|
|
|
|
|
13559
|
return []; |
|
188
|
|
|
|
|
|
|
} |
|
189
|
|
|
|
|
|
|
|
|
190
|
23699
|
|
|
|
|
32748
|
my $spaces = $next_line->[0]; |
|
191
|
23699
|
|
|
|
|
30293
|
my $yaml = \$next_line->[1]; |
|
192
|
23699
|
100
|
|
|
|
40416
|
if (not length $$yaml) { |
|
193
|
157
|
|
|
|
|
443
|
$self->_push_tokens([ EOL => join('', @$next_line), $self->line ]); |
|
194
|
157
|
|
|
|
|
379
|
$self->set_next_line(undef); |
|
195
|
157
|
|
|
|
|
380
|
return $next; |
|
196
|
|
|
|
|
|
|
} |
|
197
|
23542
|
100
|
|
|
|
62063
|
if (substr($$yaml, 0, 1) eq '#') { |
|
198
|
546
|
|
|
|
|
1754
|
$self->_push_tokens([ EOL => join('', @$next_line), $self->line ]); |
|
199
|
546
|
|
|
|
|
1305
|
$self->set_next_line(undef); |
|
200
|
546
|
|
|
|
|
1401
|
return $next; |
|
201
|
|
|
|
|
|
|
} |
|
202
|
22996
|
100
|
100
|
|
|
72281
|
if (not $spaces and substr($$yaml, 0, 1) eq "%") { |
|
203
|
326
|
|
|
|
|
1119
|
$self->_fetch_next_tokens_directive($yaml, $next_line->[2]); |
|
204
|
326
|
|
|
|
|
799
|
$self->set_context(0); |
|
205
|
326
|
|
|
|
|
640
|
$self->set_next_line(undef); |
|
206
|
326
|
|
|
|
|
961
|
return $next; |
|
207
|
|
|
|
|
|
|
} |
|
208
|
22670
|
100
|
100
|
|
|
146511
|
if (not $spaces and $$yaml =~ s/\A(---|\.\.\.)(?=$RE_WS|\z)//) { |
|
|
|
100
|
100
|
|
|
|
|
|
209
|
4292
|
|
|
|
|
13183
|
$self->_push_tokens([ $TOKEN_NAMES{ $1 } => $1, $self->line ]); |
|
210
|
|
|
|
|
|
|
} |
|
211
|
|
|
|
|
|
|
elsif ($self->flowcontext and $$yaml =~ m/\A[ \t]+(#.*)?\z/) { |
|
212
|
59
|
|
|
|
|
210
|
$self->_push_tokens([ EOL => join('', @$next_line), $self->line ]); |
|
213
|
59
|
|
|
|
|
151
|
$self->set_next_line(undef); |
|
214
|
59
|
|
|
|
|
158
|
return $next; |
|
215
|
|
|
|
|
|
|
} |
|
216
|
|
|
|
|
|
|
else { |
|
217
|
18319
|
|
|
|
|
28509
|
$self->_push_tokens([ SPACE => $spaces, $self->line ]); |
|
218
|
|
|
|
|
|
|
} |
|
219
|
|
|
|
|
|
|
|
|
220
|
22611
|
|
|
|
|
48893
|
my $partial = $self->_fetch_next_tokens($next_line); |
|
221
|
22605
|
100
|
|
|
|
38023
|
unless ($partial) { |
|
222
|
4708
|
|
|
|
|
7424
|
$self->set_next_line(undef); |
|
223
|
|
|
|
|
|
|
} |
|
224
|
22605
|
|
|
|
|
44341
|
return $next; |
|
225
|
|
|
|
|
|
|
} |
|
226
|
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
my %ANCHOR_ALIAS_TAG = ( '&' => 1, '*' => 1, '!' => 1 ); |
|
228
|
|
|
|
|
|
|
my %BLOCK_SCALAR = ( '|' => 1, '>' => 1 ); |
|
229
|
|
|
|
|
|
|
my %COLON_DASH_QUESTION = ( ':' => 1, '-' => 1, '?' => 1 ); |
|
230
|
|
|
|
|
|
|
my %QUOTED = ( '"' => 1, "'" => 1 ); |
|
231
|
|
|
|
|
|
|
my %FLOW = ( '{' => 1, '[' => 1, '}' => 1, ']' => 1, ',' => 1 ); |
|
232
|
|
|
|
|
|
|
my %CONTEXT = ( '"' => 1, "'" => 1, '>' => 1, '|' => 1 ); |
|
233
|
|
|
|
|
|
|
|
|
234
|
|
|
|
|
|
|
my $RE_ESCAPES = qr{(?: |
|
235
|
|
|
|
|
|
|
\\([ \\\/_0abefnrtvLNP\t"]) | \\x([0-9a-fA-F]{2}) |
|
236
|
|
|
|
|
|
|
| \\u([A-Fa-f0-9]{4}) | \\U([A-Fa-f0-9]{4,8}) |
|
237
|
|
|
|
|
|
|
)}x; |
|
238
|
|
|
|
|
|
|
my %CONTROL = ( |
|
239
|
|
|
|
|
|
|
'\\' => '\\', '/' => '/', n => "\n", t => "\t", r => "\r", b => "\b", |
|
240
|
|
|
|
|
|
|
'a' => "\a", 'b' => "\b", 'e' => "\e", 'f' => "\f", 'v' => "\x0b", "\t" => "\t", |
|
241
|
|
|
|
|
|
|
'P' => "\x{2029}", L => "\x{2028}", 'N' => "\x85", |
|
242
|
|
|
|
|
|
|
'0' => "\0", '_' => "\xa0", ' ' => ' ', q/"/ => q/"/, |
|
243
|
|
|
|
|
|
|
); |
|
244
|
|
|
|
|
|
|
|
|
245
|
|
|
|
|
|
|
sub _fetch_next_tokens { |
|
246
|
36456
|
|
|
36456
|
|
35470
|
TRACE and warn __PACKAGE__.':'.__LINE__.": _fetch_next_tokens\n"; |
|
247
|
36456
|
|
|
|
|
46338
|
my ($self, $next_line) = @_; |
|
248
|
|
|
|
|
|
|
|
|
249
|
36456
|
|
|
|
|
45333
|
my $yaml = \$next_line->[1]; |
|
250
|
36456
|
|
|
|
|
42898
|
my $eol = $next_line->[2]; |
|
251
|
|
|
|
|
|
|
|
|
252
|
36456
|
|
|
|
|
38793
|
my @tokens; |
|
253
|
|
|
|
|
|
|
|
|
254
|
36456
|
|
|
|
|
36487
|
while (1) { |
|
255
|
74611
|
100
|
|
|
|
102365
|
unless (length $$yaml) { |
|
256
|
6656
|
|
|
|
|
10116
|
push @tokens, ( EOL => $eol, $self->line ); |
|
257
|
6656
|
|
|
|
|
13018
|
$self->_push_tokens(\@tokens); |
|
258
|
6656
|
|
|
|
|
15997
|
return; |
|
259
|
|
|
|
|
|
|
} |
|
260
|
67955
|
|
|
|
|
96445
|
my $first = substr($$yaml, 0, 1); |
|
261
|
67955
|
|
|
|
|
67287
|
my $plain = 0; |
|
262
|
|
|
|
|
|
|
|
|
263
|
67955
|
100
|
|
|
|
91118
|
if ($self->context) { |
|
264
|
1782
|
100
|
|
|
|
8774
|
if ($$yaml =~ s/\A($RE_WS*)://) { |
|
265
|
143
|
100
|
|
|
|
375
|
push @tokens, ( WS => $1, $self->line ) if $1; |
|
266
|
143
|
|
|
|
|
288
|
push @tokens, ( COLON => ':', $self->line ); |
|
267
|
143
|
|
|
|
|
292
|
$self->set_context(0); |
|
268
|
143
|
|
|
|
|
292
|
next; |
|
269
|
|
|
|
|
|
|
} |
|
270
|
1639
|
100
|
|
|
|
5215
|
if ($$yaml =~ s/\A($RE_WS*(?: #.*))\z//) { |
|
271
|
9
|
|
|
|
|
41
|
push @tokens, ( EOL => $1 . $eol, $self->line ); |
|
272
|
9
|
|
|
|
|
142
|
$self->_push_tokens(\@tokens); |
|
273
|
9
|
|
|
|
|
24
|
return; |
|
274
|
|
|
|
|
|
|
} |
|
275
|
1630
|
|
|
|
|
2229
|
$self->set_context(0); |
|
276
|
|
|
|
|
|
|
} |
|
277
|
67803
|
100
|
100
|
|
|
212831
|
if ($CONTEXT{ $first }) { |
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
278
|
6361
|
|
|
|
|
10004
|
push @tokens, ( CONTEXT => $first, $self->line ); |
|
279
|
6361
|
|
|
|
|
12867
|
$self->_push_tokens(\@tokens); |
|
280
|
6361
|
|
|
|
|
15179
|
return 1; |
|
281
|
|
|
|
|
|
|
} |
|
282
|
|
|
|
|
|
|
elsif ($COLON_DASH_QUESTION{ $first }) { |
|
283
|
19571
|
|
|
|
|
28473
|
my $token_name = $TOKEN_NAMES{ $first }; |
|
284
|
19571
|
100
|
100
|
|
|
244199
|
if ($$yaml =~ s/\A\Q$first\E($RE_WS+|\z)//) { |
|
|
|
100
|
|
|
|
|
|
|
285
|
19046
|
|
|
|
|
33176
|
my $after = $1; |
|
286
|
19046
|
100
|
100
|
|
|
29106
|
if (not $self->flowcontext and not $self->block) { |
|
287
|
8
|
|
|
|
|
16
|
push @tokens, ERROR => $first . $after, $self->line; |
|
288
|
8
|
|
|
|
|
16
|
$self->_push_tokens(\@tokens); |
|
289
|
8
|
|
|
|
|
13
|
$self->exception("Tabs can not be used for indentation"); |
|
290
|
|
|
|
|
|
|
} |
|
291
|
19038
|
100
|
|
|
|
37867
|
if ($after =~ tr/\t//) { |
|
292
|
80
|
|
|
|
|
161
|
$self->set_block(0); |
|
293
|
|
|
|
|
|
|
} |
|
294
|
19038
|
|
|
|
|
23853
|
my $token_name = $TOKEN_NAMES{ $first }; |
|
295
|
19038
|
|
|
|
|
28710
|
push @tokens, ( $token_name => $first, $self->line ); |
|
296
|
19038
|
50
|
|
|
|
33392
|
if (not defined $1) { |
|
297
|
0
|
|
|
|
|
0
|
push @tokens, ( EOL => $eol, $self->line ); |
|
298
|
0
|
|
|
|
|
0
|
$self->_push_tokens(\@tokens); |
|
299
|
0
|
|
|
|
|
0
|
return; |
|
300
|
|
|
|
|
|
|
} |
|
301
|
19038
|
|
|
|
|
21984
|
my $ws = $1; |
|
302
|
19038
|
100
|
|
|
|
51630
|
if ($$yaml =~ s/\A(#.*|)\z//) { |
|
303
|
2520
|
|
|
|
|
6992
|
push @tokens, ( EOL => $ws . $1 . $eol, $self->line ); |
|
304
|
2520
|
|
|
|
|
5176
|
$self->_push_tokens(\@tokens); |
|
305
|
2520
|
|
|
|
|
8100
|
return; |
|
306
|
|
|
|
|
|
|
} |
|
307
|
16518
|
|
|
|
|
24241
|
push @tokens, ( WS => $ws, $self->line ); |
|
308
|
16518
|
|
|
|
|
34179
|
next; |
|
309
|
|
|
|
|
|
|
} |
|
310
|
|
|
|
|
|
|
elsif ($self->flowcontext and $$yaml =~ s/\A:(?=[,\{\}\[\]])//) { |
|
311
|
7
|
|
|
|
|
15
|
push @tokens, ( $token_name => $first, $self->line ); |
|
312
|
7
|
|
|
|
|
13
|
next; |
|
313
|
|
|
|
|
|
|
} |
|
314
|
518
|
|
|
|
|
841
|
$plain = 1; |
|
315
|
|
|
|
|
|
|
} |
|
316
|
|
|
|
|
|
|
elsif ($ANCHOR_ALIAS_TAG{ $first }) { |
|
317
|
5369
|
|
|
|
|
7494
|
my $token_name = $TOKEN_NAMES{ $first }; |
|
318
|
5369
|
|
|
|
|
7519
|
my $REGEX = $REGEXES{ $token_name }; |
|
319
|
5369
|
50
|
|
|
|
179412
|
if ($$yaml =~ s/\A$REGEX//) { |
|
320
|
5369
|
|
|
|
|
11736
|
push @tokens, ( $token_name => $1, $self->line ); |
|
321
|
|
|
|
|
|
|
} |
|
322
|
|
|
|
|
|
|
else { |
|
323
|
0
|
|
|
|
|
0
|
push @tokens, ( "Invalid $token_name" => $$yaml, $self->line ); |
|
324
|
0
|
|
|
|
|
0
|
$self->_push_tokens(\@tokens); |
|
325
|
0
|
|
|
|
|
0
|
return; |
|
326
|
|
|
|
|
|
|
} |
|
327
|
|
|
|
|
|
|
} |
|
328
|
|
|
|
|
|
|
elsif ($first eq ' ' or $first eq "\t") { |
|
329
|
9096
|
50
|
|
|
|
42051
|
if ($$yaml =~ s/\A($RE_WS+)//) { |
|
330
|
9096
|
|
|
|
|
13378
|
my $ws = $1; |
|
331
|
9096
|
100
|
|
|
|
27604
|
if ($$yaml =~ s/\A((?:#.*)?\z)//) { |
|
332
|
208
|
|
|
|
|
850
|
push @tokens, ( EOL => $ws . $1 . $eol, $self->line ); |
|
333
|
208
|
|
|
|
|
479
|
$self->_push_tokens(\@tokens); |
|
334
|
208
|
|
|
|
|
636
|
return; |
|
335
|
|
|
|
|
|
|
} |
|
336
|
8888
|
|
|
|
|
14109
|
push @tokens, ( WS => $ws, $self->line ); |
|
337
|
|
|
|
|
|
|
} |
|
338
|
|
|
|
|
|
|
} |
|
339
|
|
|
|
|
|
|
elsif ($FLOW{ $first }) { |
|
340
|
7230
|
|
|
|
|
12908
|
push @tokens, ( $TOKEN_NAMES{ $first } => $first, $self->line ); |
|
341
|
7230
|
|
|
|
|
13047
|
substr($$yaml, 0, 1, ''); |
|
342
|
7230
|
|
|
|
|
10272
|
my $flowcontext = $self->flowcontext; |
|
343
|
7230
|
100
|
100
|
|
|
24227
|
if ($first eq '{' or $first eq '[') { |
|
|
|
100
|
100
|
|
|
|
|
|
344
|
2472
|
|
|
|
|
4209
|
$self->set_flowcontext(++$flowcontext); |
|
345
|
|
|
|
|
|
|
} |
|
346
|
|
|
|
|
|
|
elsif ($first eq '}' or $first eq ']') { |
|
347
|
2461
|
|
|
|
|
4062
|
$self->set_flowcontext(--$flowcontext); |
|
348
|
|
|
|
|
|
|
} |
|
349
|
|
|
|
|
|
|
} |
|
350
|
|
|
|
|
|
|
else { |
|
351
|
20176
|
|
|
|
|
21878
|
$plain = 1; |
|
352
|
|
|
|
|
|
|
} |
|
353
|
|
|
|
|
|
|
|
|
354
|
42181
|
100
|
|
|
|
65952
|
if ($plain) { |
|
355
|
20694
|
|
|
|
|
29730
|
push @tokens, ( CONTEXT => '', $self->line ); |
|
356
|
20694
|
|
|
|
|
38766
|
$self->_push_tokens(\@tokens); |
|
357
|
20694
|
|
|
|
|
46918
|
return 1; |
|
358
|
|
|
|
|
|
|
} |
|
359
|
|
|
|
|
|
|
|
|
360
|
|
|
|
|
|
|
} |
|
361
|
|
|
|
|
|
|
|
|
362
|
0
|
|
|
|
|
0
|
return; |
|
363
|
|
|
|
|
|
|
} |
|
364
|
|
|
|
|
|
|
|
|
365
|
|
|
|
|
|
|
sub fetch_plain { |
|
366
|
20655
|
|
|
20655
|
0
|
32276
|
my ($self, $indent, $context) = @_; |
|
367
|
20655
|
|
|
|
|
30328
|
my $next_line = $self->next_line; |
|
368
|
20655
|
|
|
|
|
27614
|
my $yaml = \$next_line->[1]; |
|
369
|
20655
|
|
|
|
|
24194
|
my $eol = $next_line->[2]; |
|
370
|
20655
|
|
|
|
|
24451
|
my $REGEX = $RE_PLAIN_WORDS; |
|
371
|
20655
|
100
|
|
|
|
25904
|
if ($self->flowcontext) { |
|
372
|
2632
|
|
|
|
|
3587
|
$REGEX = $RE_PLAIN_WORDS_FLOW; |
|
373
|
|
|
|
|
|
|
} |
|
374
|
|
|
|
|
|
|
|
|
375
|
20655
|
|
|
|
|
22001
|
my @tokens; |
|
376
|
20655
|
100
|
|
|
|
451063
|
unless ($$yaml =~ s/\A($REGEX(?:[:]+(?=\:(\s|\z)))?)//) { |
|
377
|
7
|
|
|
|
|
23
|
$self->_push_tokens(\@tokens); |
|
378
|
7
|
|
|
|
|
21
|
$self->exception("Invalid plain scalar"); |
|
379
|
|
|
|
|
|
|
} |
|
380
|
20648
|
|
|
|
|
47121
|
my $plain = $1; |
|
381
|
20648
|
|
|
|
|
35556
|
push @tokens, ( PLAIN => $plain, $self->line ); |
|
382
|
|
|
|
|
|
|
|
|
383
|
20648
|
100
|
|
|
|
105073
|
if ($$yaml =~ s/\A(?:($RE_WS+#.*)|($RE_WS*))\z//) { |
|
384
|
10051
|
100
|
|
|
|
17294
|
if (defined $1) { |
|
385
|
130
|
|
|
|
|
365
|
push @tokens, ( EOL => $1 . $eol, $self->line ); |
|
386
|
130
|
|
|
|
|
314
|
$self->_push_tokens(\@tokens); |
|
387
|
130
|
|
|
|
|
273
|
$self->set_next_line(undef); |
|
388
|
130
|
|
|
|
|
511
|
return; |
|
389
|
|
|
|
|
|
|
} |
|
390
|
|
|
|
|
|
|
else { |
|
391
|
9921
|
|
|
|
|
22732
|
push @tokens, ( EOL => $2. $eol, $self->line ); |
|
392
|
9921
|
|
|
|
|
17081
|
$self->set_next_line(undef); |
|
393
|
|
|
|
|
|
|
} |
|
394
|
|
|
|
|
|
|
} |
|
395
|
|
|
|
|
|
|
else { |
|
396
|
10597
|
|
|
|
|
22734
|
$self->_push_tokens(\@tokens); |
|
397
|
10597
|
|
|
|
|
16859
|
my $partial = $self->_fetch_next_tokens($next_line); |
|
398
|
10595
|
100
|
|
|
|
17365
|
if (not $partial) { |
|
399
|
3068
|
|
|
|
|
5436
|
$self->set_next_line(undef); |
|
400
|
|
|
|
|
|
|
} |
|
401
|
10595
|
|
|
|
|
28574
|
return; |
|
402
|
|
|
|
|
|
|
} |
|
403
|
|
|
|
|
|
|
|
|
404
|
9921
|
|
|
|
|
13313
|
my $RE2 = $RE_PLAIN_WORDS2; |
|
405
|
9921
|
100
|
|
|
|
13984
|
if ($self->flowcontext) { |
|
406
|
124
|
|
|
|
|
226
|
$RE2 = $RE_PLAIN_WORDS_FLOW2; |
|
407
|
|
|
|
|
|
|
} |
|
408
|
9921
|
|
|
|
|
10658
|
my $fetch_next = 0; |
|
409
|
9921
|
|
|
|
|
16907
|
my @lines = ($plain); |
|
410
|
9921
|
|
|
|
|
10182
|
my @next; |
|
411
|
9921
|
|
|
|
|
10971
|
LOOP: while (1) { |
|
412
|
10281
|
|
|
|
|
15794
|
$next_line = $self->_fetch_next_line; |
|
413
|
10281
|
100
|
|
|
|
16861
|
if (not $next_line) { |
|
414
|
3598
|
|
|
|
|
5023
|
last LOOP; |
|
415
|
|
|
|
|
|
|
} |
|
416
|
6683
|
|
|
|
|
8819
|
my $spaces = $next_line->[0]; |
|
417
|
6683
|
|
|
|
|
8660
|
my $yaml = \$next_line->[1]; |
|
418
|
6683
|
|
|
|
|
8081
|
my $eol = $next_line->[2]; |
|
419
|
|
|
|
|
|
|
|
|
420
|
6683
|
100
|
|
|
|
10396
|
if (not length $$yaml) { |
|
421
|
104
|
|
|
|
|
238
|
push @tokens, ( EOL => $spaces . $eol, $self->line ); |
|
422
|
104
|
|
|
|
|
216
|
$self->set_next_line(undef); |
|
423
|
104
|
|
|
|
|
137
|
push @lines, ''; |
|
424
|
104
|
|
|
|
|
179
|
next LOOP; |
|
425
|
|
|
|
|
|
|
} |
|
426
|
|
|
|
|
|
|
|
|
427
|
6579
|
100
|
100
|
|
|
32334
|
if (not $spaces and $$yaml =~ s/\A(---|\.\.\.)(?=$RE_WS|\z)//) { |
|
428
|
630
|
|
|
|
|
1956
|
push @next, $TOKEN_NAMES{ $1 } => $1, $self->line; |
|
429
|
630
|
|
|
|
|
866
|
$fetch_next = 1; |
|
430
|
630
|
|
|
|
|
1068
|
last LOOP; |
|
431
|
|
|
|
|
|
|
} |
|
432
|
5949
|
100
|
|
|
|
12254
|
if ((length $spaces) < $indent) { |
|
433
|
5549
|
|
|
|
|
10022
|
last LOOP; |
|
434
|
|
|
|
|
|
|
} |
|
435
|
|
|
|
|
|
|
|
|
436
|
400
|
|
|
|
|
604
|
my $ws = ''; |
|
437
|
400
|
100
|
|
|
|
1994
|
if ($$yaml =~ s/\A($RE_WS+)//) { |
|
438
|
25
|
|
|
|
|
68
|
$ws = $1; |
|
439
|
|
|
|
|
|
|
} |
|
440
|
400
|
100
|
|
|
|
820
|
if (not length $$yaml) { |
|
441
|
11
|
|
|
|
|
36
|
push @tokens, ( EOL => $spaces . $ws . $eol, $self->line ); |
|
442
|
11
|
|
|
|
|
27
|
$self->set_next_line(undef); |
|
443
|
11
|
|
|
|
|
16
|
push @lines, ''; |
|
444
|
11
|
|
|
|
|
21
|
next LOOP; |
|
445
|
|
|
|
|
|
|
} |
|
446
|
389
|
100
|
|
|
|
1027
|
if ($$yaml =~ s/\A(#.*)\z//) { |
|
447
|
9
|
|
|
|
|
45
|
push @tokens, ( EOL => $spaces . $ws . $1 . $eol, $self->line ); |
|
448
|
9
|
|
|
|
|
23
|
$self->set_next_line(undef); |
|
449
|
9
|
|
|
|
|
43
|
last LOOP; |
|
450
|
|
|
|
|
|
|
} |
|
451
|
|
|
|
|
|
|
|
|
452
|
380
|
100
|
|
|
|
21672
|
if ($$yaml =~ s/\A($RE2)//) { |
|
453
|
294
|
|
|
|
|
726
|
push @tokens, INDENT => $spaces, $self->line; |
|
454
|
294
|
|
|
|
|
543
|
push @tokens, WS => $ws, $self->line; |
|
455
|
294
|
|
|
|
|
563
|
push @tokens, PLAIN => $1, $self->line; |
|
456
|
294
|
|
|
|
|
601
|
push @lines, $1; |
|
457
|
294
|
|
|
|
|
404
|
my $ws = ''; |
|
458
|
294
|
100
|
|
|
|
1188
|
if ($$yaml =~ s/\A($RE_WS+)//) { |
|
459
|
41
|
|
|
|
|
91
|
$ws = $1; |
|
460
|
|
|
|
|
|
|
} |
|
461
|
294
|
100
|
|
|
|
616
|
if (not length $$yaml) { |
|
462
|
245
|
|
|
|
|
522
|
push @tokens, EOL => $ws . $eol, $self->line; |
|
463
|
245
|
|
|
|
|
479
|
$self->set_next_line(undef); |
|
464
|
245
|
|
|
|
|
662
|
next LOOP; |
|
465
|
|
|
|
|
|
|
} |
|
466
|
|
|
|
|
|
|
|
|
467
|
49
|
100
|
|
|
|
249
|
if ($$yaml =~ s/\A(#.*)\z//) { |
|
468
|
17
|
|
|
|
|
93
|
push @tokens, EOL => $ws . $1 . $eol, $self->line; |
|
469
|
17
|
|
|
|
|
50
|
$self->set_next_line(undef); |
|
470
|
17
|
|
|
|
|
72
|
last LOOP; |
|
471
|
|
|
|
|
|
|
} |
|
472
|
|
|
|
|
|
|
else { |
|
473
|
32
|
100
|
|
|
|
110
|
push @tokens, WS => $ws, $self->line if $ws; |
|
474
|
32
|
|
|
|
|
76
|
$fetch_next = 1; |
|
475
|
|
|
|
|
|
|
} |
|
476
|
|
|
|
|
|
|
} |
|
477
|
|
|
|
|
|
|
else { |
|
478
|
86
|
|
|
|
|
269
|
push @tokens, SPACE => $spaces, $self->line; |
|
479
|
86
|
|
|
|
|
227
|
push @tokens, WS => $ws, $self->line; |
|
480
|
86
|
50
|
|
|
|
170
|
if ($self->flowcontext) { |
|
481
|
86
|
|
|
|
|
144
|
$fetch_next = 1; |
|
482
|
|
|
|
|
|
|
} |
|
483
|
|
|
|
|
|
|
else { |
|
484
|
0
|
|
|
|
|
0
|
push @tokens, ERROR => $$yaml, $self->line; |
|
485
|
|
|
|
|
|
|
} |
|
486
|
|
|
|
|
|
|
} |
|
487
|
|
|
|
|
|
|
|
|
488
|
118
|
|
|
|
|
405
|
last LOOP; |
|
489
|
|
|
|
|
|
|
|
|
490
|
|
|
|
|
|
|
} |
|
491
|
|
|
|
|
|
|
# remove empty lines at the end |
|
492
|
9921
|
|
100
|
|
|
24219
|
while (@lines > 1 and $lines[-1] eq '') { |
|
493
|
90
|
|
|
|
|
251
|
pop @lines; |
|
494
|
|
|
|
|
|
|
} |
|
495
|
9921
|
100
|
|
|
|
15158
|
if (@lines > 1) { |
|
496
|
239
|
|
|
|
|
1060
|
my $value = YAML::PP::Render->render_multi_val(\@lines); |
|
497
|
239
|
|
|
|
|
358
|
my @eol; |
|
498
|
239
|
100
|
|
|
|
572
|
if ($tokens[-3] eq 'EOL') { |
|
499
|
207
|
|
|
|
|
566
|
@eol = splice @tokens, -3; |
|
500
|
|
|
|
|
|
|
} |
|
501
|
239
|
|
|
|
|
1029
|
$self->push_subtokens( { name => 'PLAIN_MULTI', value => $value }, \@tokens); |
|
502
|
239
|
|
|
|
|
770
|
$self->_push_tokens([ @eol, @next ]); |
|
503
|
|
|
|
|
|
|
} |
|
504
|
|
|
|
|
|
|
else { |
|
505
|
9682
|
|
|
|
|
27868
|
$self->_push_tokens([ @tokens, @next ]); |
|
506
|
|
|
|
|
|
|
} |
|
507
|
9921
|
|
|
|
|
23332
|
@tokens = (); |
|
508
|
9921
|
100
|
|
|
|
15688
|
if ($fetch_next) { |
|
509
|
748
|
|
|
|
|
1354
|
my $partial = $self->_fetch_next_tokens($next_line); |
|
510
|
748
|
100
|
|
|
|
1639
|
if (not $partial) { |
|
511
|
607
|
|
|
|
|
1100
|
$self->set_next_line(undef); |
|
512
|
|
|
|
|
|
|
} |
|
513
|
|
|
|
|
|
|
} |
|
514
|
9921
|
|
|
|
|
27650
|
return; |
|
515
|
|
|
|
|
|
|
} |
|
516
|
|
|
|
|
|
|
|
|
517
|
|
|
|
|
|
|
sub fetch_block { |
|
518
|
1718
|
|
|
1718
|
0
|
3384
|
my ($self, $indent, $context) = @_; |
|
519
|
1718
|
|
|
|
|
3444
|
my $next_line = $self->next_line; |
|
520
|
1718
|
|
|
|
|
2664
|
my $yaml = \$next_line->[1]; |
|
521
|
1718
|
|
|
|
|
2770
|
my $eol = $next_line->[2]; |
|
522
|
|
|
|
|
|
|
|
|
523
|
1718
|
|
|
|
|
2020
|
my @tokens; |
|
524
|
1718
|
|
|
|
|
3010
|
my $token_name = $TOKEN_NAMES{ $context }; |
|
525
|
1718
|
50
|
|
|
|
18834
|
$$yaml =~ s/\A\Q$context\E// or die "Unexpected"; |
|
526
|
1718
|
|
|
|
|
4350
|
push @tokens, ( $token_name => $context, $self->line ); |
|
527
|
1718
|
|
|
|
|
2353
|
my $current_indent = $indent; |
|
528
|
1718
|
|
|
|
|
2003
|
my $started = 0; |
|
529
|
1718
|
|
|
|
|
2348
|
my $set_indent = 0; |
|
530
|
1718
|
|
|
|
|
2221
|
my $chomp = ''; |
|
531
|
1718
|
100
|
|
|
|
7193
|
if ($$yaml =~ s/\A([1-9])([+-]?)//) { |
|
|
|
100
|
|
|
|
|
|
|
532
|
215
|
|
|
|
|
460
|
push @tokens, ( BLOCK_SCALAR_INDENT => $1, $self->line ); |
|
533
|
215
|
|
|
|
|
327
|
$set_indent = $1; |
|
534
|
215
|
100
|
|
|
|
537
|
$chomp = $2 if $2; |
|
535
|
215
|
100
|
|
|
|
514
|
push @tokens, ( BLOCK_SCALAR_CHOMP => $2, $self->line ) if $2; |
|
536
|
|
|
|
|
|
|
} |
|
537
|
|
|
|
|
|
|
elsif ($$yaml =~ s/\A([+-])([1-9])?//) { |
|
538
|
409
|
|
|
|
|
765
|
push @tokens, ( BLOCK_SCALAR_CHOMP => $1, $self->line ); |
|
539
|
409
|
|
|
|
|
653
|
$chomp = $1; |
|
540
|
409
|
100
|
|
|
|
969
|
push @tokens, ( BLOCK_SCALAR_INDENT => $2, $self->line ) if $2; |
|
541
|
409
|
100
|
|
|
|
905
|
$set_indent = $2 if $2; |
|
542
|
|
|
|
|
|
|
} |
|
543
|
1718
|
100
|
|
|
|
3503
|
if ($set_indent) { |
|
544
|
224
|
|
|
|
|
272
|
$started = 1; |
|
545
|
224
|
100
|
|
|
|
446
|
$indent-- if $indent > 0; |
|
546
|
224
|
|
|
|
|
439
|
$current_indent = $indent + $set_indent; |
|
547
|
|
|
|
|
|
|
} |
|
548
|
1718
|
100
|
|
|
|
3788
|
if (not length $$yaml) { |
|
|
|
100
|
|
|
|
|
|
|
549
|
1660
|
|
|
|
|
3002
|
push @tokens, ( EOL => $eol, $self->line ); |
|
550
|
|
|
|
|
|
|
} |
|
551
|
|
|
|
|
|
|
elsif ($$yaml =~ s/\A($RE_WS*(?:$RE_WS#.*|))\z//) { |
|
552
|
52
|
|
|
|
|
166
|
push @tokens, ( EOL => $1 . $eol, $self->line ); |
|
553
|
|
|
|
|
|
|
} |
|
554
|
|
|
|
|
|
|
else { |
|
555
|
6
|
|
|
|
|
20
|
$self->_push_tokens(\@tokens); |
|
556
|
6
|
|
|
|
|
14
|
$self->exception("Invalid block scalar"); |
|
557
|
|
|
|
|
|
|
} |
|
558
|
|
|
|
|
|
|
|
|
559
|
1712
|
|
|
|
|
2239
|
my @lines; |
|
560
|
1712
|
|
|
|
|
1992
|
while (1) { |
|
561
|
5248
|
|
|
|
|
9027
|
$self->set_next_line(undef); |
|
562
|
5248
|
|
|
|
|
7416
|
$next_line = $self->_fetch_next_line; |
|
563
|
5248
|
100
|
|
|
|
8305
|
if (not $next_line) { |
|
564
|
812
|
|
|
|
|
1079
|
last; |
|
565
|
|
|
|
|
|
|
} |
|
566
|
4436
|
|
|
|
|
5519
|
my $spaces = $next_line->[0]; |
|
567
|
4436
|
|
|
|
|
5307
|
my $content = $next_line->[1]; |
|
568
|
4436
|
|
|
|
|
5204
|
my $eol = $next_line->[2]; |
|
569
|
4436
|
100
|
100
|
|
|
14486
|
if (not $spaces and $content =~ m/\A(---|\.\.\.)(?=$RE_WS|\z)/) { |
|
570
|
200
|
|
|
|
|
385
|
last; |
|
571
|
|
|
|
|
|
|
} |
|
572
|
4236
|
100
|
|
|
|
8013
|
if ((length $spaces) < $current_indent) { |
|
573
|
1434
|
100
|
|
|
|
2216
|
if (length $content) { |
|
574
|
700
|
100
|
|
|
|
1713
|
if ($content =~ m/\A\t/) { |
|
575
|
2
|
|
|
|
|
7
|
$self->_push_tokens(\@tokens); |
|
576
|
2
|
|
|
|
|
4
|
$self->exception("Invalid block scalar"); |
|
577
|
|
|
|
|
|
|
} |
|
578
|
698
|
|
|
|
|
1254
|
last; |
|
579
|
|
|
|
|
|
|
} |
|
580
|
|
|
|
|
|
|
else { |
|
581
|
734
|
|
|
|
|
969
|
push @lines, ''; |
|
582
|
734
|
|
|
|
|
1418
|
push @tokens, ( EOL => $spaces . $eol, $self->line ); |
|
583
|
734
|
|
|
|
|
1211
|
next; |
|
584
|
|
|
|
|
|
|
} |
|
585
|
|
|
|
|
|
|
} |
|
586
|
2802
|
100
|
|
|
|
4625
|
if ((length $spaces) > $current_indent) { |
|
587
|
1568
|
100
|
|
|
|
2604
|
if ($started) { |
|
588
|
370
|
|
|
|
|
1758
|
($spaces, my $more_spaces) = unpack "a${current_indent}a*", $spaces; |
|
589
|
370
|
|
|
|
|
664
|
$content = $more_spaces . $content; |
|
590
|
|
|
|
|
|
|
} |
|
591
|
|
|
|
|
|
|
} |
|
592
|
2802
|
100
|
|
|
|
4413
|
unless (length $content) { |
|
593
|
257
|
|
|
|
|
389
|
push @lines, ''; |
|
594
|
257
|
|
|
|
|
462
|
push @tokens, ( INDENT => $spaces, $self->line, EOL => $eol, $self->line ); |
|
595
|
257
|
100
|
|
|
|
435
|
unless ($started) { |
|
596
|
131
|
|
|
|
|
169
|
$current_indent = length $spaces; |
|
597
|
|
|
|
|
|
|
} |
|
598
|
257
|
|
|
|
|
423
|
next; |
|
599
|
|
|
|
|
|
|
} |
|
600
|
2545
|
100
|
|
|
|
4193
|
unless ($started) { |
|
601
|
1380
|
|
|
|
|
1638
|
$started = 1; |
|
602
|
1380
|
|
|
|
|
1646
|
$current_indent = length $spaces; |
|
603
|
|
|
|
|
|
|
} |
|
604
|
2545
|
|
|
|
|
3364
|
push @lines, $content; |
|
605
|
2545
|
|
|
|
|
3998
|
push @tokens, ( |
|
606
|
|
|
|
|
|
|
INDENT => $spaces, $self->line, |
|
607
|
|
|
|
|
|
|
BLOCK_SCALAR_CONTENT => $content, $self->line, |
|
608
|
|
|
|
|
|
|
EOL => $eol, $self->line, |
|
609
|
|
|
|
|
|
|
); |
|
610
|
|
|
|
|
|
|
} |
|
611
|
1710
|
|
|
|
|
6639
|
my $value = YAML::PP::Render->render_block_scalar($context, $chomp, \@lines); |
|
612
|
1710
|
|
|
|
|
4233
|
my @eol = splice @tokens, -3; |
|
613
|
1710
|
|
|
|
|
8026
|
$self->push_subtokens( { name => 'BLOCK_SCALAR', value => $value }, \@tokens ); |
|
614
|
1710
|
|
|
|
|
5391
|
$self->_push_tokens([ @eol ]); |
|
615
|
1710
|
|
|
|
|
7608
|
return 0; |
|
616
|
|
|
|
|
|
|
} |
|
617
|
|
|
|
|
|
|
|
|
618
|
|
|
|
|
|
|
sub fetch_quoted { |
|
619
|
4643
|
|
|
4643
|
0
|
7913
|
my ($self, $indent, $context) = @_; |
|
620
|
4643
|
|
|
|
|
7475
|
my $next_line = $self->next_line; |
|
621
|
4643
|
|
|
|
|
6655
|
my $yaml = \$next_line->[1]; |
|
622
|
4643
|
|
|
|
|
5884
|
my $spaces = $next_line->[0]; |
|
623
|
|
|
|
|
|
|
|
|
624
|
4643
|
|
|
|
|
6708
|
my $token_name = $TOKEN_NAMES{ $context }; |
|
625
|
4643
|
50
|
|
|
|
44392
|
$$yaml =~ s/\A\Q$context// or die "Unexpected";; |
|
626
|
4643
|
|
|
|
|
9962
|
my @tokens = ( $token_name => $context, $self->line ); |
|
627
|
|
|
|
|
|
|
|
|
628
|
4643
|
|
|
|
|
5627
|
my $start = 1; |
|
629
|
4643
|
|
|
|
|
5374
|
my @values; |
|
630
|
4643
|
|
|
|
|
5206
|
while (1) { |
|
631
|
|
|
|
|
|
|
|
|
632
|
5491
|
100
|
|
|
|
8893
|
unless ($start) { |
|
633
|
848
|
100
|
|
|
|
1418
|
$next_line = $self->_fetch_next_line or do { |
|
634
|
1
|
|
|
|
|
4
|
for (my $i = 0; $i < @tokens; $i+= 3) { |
|
635
|
3
|
|
|
|
|
6
|
my $token = $tokens[ $i + 1 ]; |
|
636
|
3
|
100
|
|
|
|
6
|
if (ref $token) { |
|
637
|
1
|
|
|
|
|
3
|
$tokens[ $i + 1 ] = $token->{orig}; |
|
638
|
|
|
|
|
|
|
} |
|
639
|
|
|
|
|
|
|
} |
|
640
|
1
|
|
|
|
|
3
|
$self->_push_tokens(\@tokens); |
|
641
|
1
|
|
|
|
|
3
|
$self->exception("Missing closing quote <$context> at EOF"); |
|
642
|
|
|
|
|
|
|
}; |
|
643
|
847
|
|
|
|
|
1055
|
$start = 0; |
|
644
|
847
|
|
|
|
|
1150
|
$spaces = $next_line->[0]; |
|
645
|
847
|
|
|
|
|
1473
|
$yaml = \$next_line->[1]; |
|
646
|
|
|
|
|
|
|
|
|
647
|
847
|
100
|
100
|
|
|
4310
|
if (not length $$yaml) { |
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
648
|
160
|
|
|
|
|
402
|
push @tokens, ( EOL => $spaces . $next_line->[2], $self->line ); |
|
649
|
160
|
|
|
|
|
325
|
$self->set_next_line(undef); |
|
650
|
160
|
|
|
|
|
371
|
push @values, { value => '', orig => '' }; |
|
651
|
160
|
|
|
|
|
269
|
next; |
|
652
|
|
|
|
|
|
|
} |
|
653
|
|
|
|
|
|
|
elsif (not $spaces and $$yaml =~ m/\A(---|\.\.\.)(?=$RE_WS|\z)/) { |
|
654
|
3
|
|
|
|
|
11
|
for (my $i = 0; $i < @tokens; $i+= 3) { |
|
655
|
9
|
|
|
|
|
11
|
my $token = $tokens[ $i + 1 ]; |
|
656
|
9
|
100
|
|
|
|
26
|
if (ref $token) { |
|
657
|
3
|
|
|
|
|
7
|
$tokens[ $i + 1 ] = $token->{orig}; |
|
658
|
|
|
|
|
|
|
} |
|
659
|
|
|
|
|
|
|
} |
|
660
|
3
|
|
|
|
|
7
|
$self->_push_tokens(\@tokens); |
|
661
|
3
|
|
|
|
|
10
|
$self->exception("Missing closing quote <$context> or invalid document marker"); |
|
662
|
|
|
|
|
|
|
} |
|
663
|
|
|
|
|
|
|
elsif ((length $spaces) < $indent) { |
|
664
|
3
|
|
|
|
|
9
|
for (my $i = 0; $i < @tokens; $i+= 3) { |
|
665
|
9
|
|
|
|
|
12
|
my $token = $tokens[ $i + 1 ]; |
|
666
|
9
|
100
|
|
|
|
16
|
if (ref $token) { |
|
667
|
3
|
|
|
|
|
9
|
$tokens[ $i + 1 ] = $token->{orig}; |
|
668
|
|
|
|
|
|
|
} |
|
669
|
|
|
|
|
|
|
} |
|
670
|
3
|
|
|
|
|
8
|
$self->_push_tokens(\@tokens); |
|
671
|
3
|
|
|
|
|
8
|
$self->exception("Wrong indendation or missing closing quote <$context>"); |
|
672
|
|
|
|
|
|
|
} |
|
673
|
|
|
|
|
|
|
|
|
674
|
681
|
100
|
|
|
|
3066
|
if ($$yaml =~ s/\A($RE_WS+)//) { |
|
675
|
95
|
|
|
|
|
222
|
$spaces .= $1; |
|
676
|
|
|
|
|
|
|
} |
|
677
|
681
|
|
|
|
|
1353
|
push @tokens, ( WS => $spaces, $self->line ); |
|
678
|
|
|
|
|
|
|
} |
|
679
|
|
|
|
|
|
|
|
|
680
|
5324
|
|
|
|
|
11438
|
my $v = $self->_read_quoted_tokens($start, $context, $yaml, \@tokens); |
|
681
|
5322
|
|
|
|
|
7072
|
push @values, $v; |
|
682
|
5322
|
100
|
|
|
|
9868
|
if ($tokens[-3] eq $token_name) { |
|
683
|
4634
|
100
|
|
|
|
6445
|
if ($start) { |
|
684
|
|
|
|
|
|
|
$self->push_subtokens( |
|
685
|
|
|
|
|
|
|
{ name => 'QUOTED', value => $v->{value} }, \@tokens |
|
686
|
4145
|
|
|
|
|
12737
|
); |
|
687
|
|
|
|
|
|
|
} |
|
688
|
|
|
|
|
|
|
else { |
|
689
|
489
|
|
|
|
|
1948
|
my $value = YAML::PP::Render->render_quoted($context, \@values); |
|
690
|
489
|
|
|
|
|
1846
|
$self->push_subtokens( |
|
691
|
|
|
|
|
|
|
{ name => 'QUOTED_MULTILINE', value => $value }, \@tokens |
|
692
|
|
|
|
|
|
|
); |
|
693
|
|
|
|
|
|
|
} |
|
694
|
4634
|
100
|
|
|
|
7348
|
$self->set_context(1) if $self->flowcontext; |
|
695
|
4634
|
100
|
|
|
|
7263
|
if (length $$yaml) { |
|
696
|
2500
|
|
|
|
|
4726
|
my $partial = $self->_fetch_next_tokens($next_line); |
|
697
|
2500
|
100
|
|
|
|
4547
|
if (not $partial) { |
|
698
|
1010
|
|
|
|
|
1687
|
$self->set_next_line(undef); |
|
699
|
|
|
|
|
|
|
} |
|
700
|
2500
|
|
|
|
|
11012
|
return 0; |
|
701
|
|
|
|
|
|
|
} |
|
702
|
|
|
|
|
|
|
else { |
|
703
|
2134
|
|
|
|
|
4592
|
@tokens = (); |
|
704
|
2134
|
|
|
|
|
3939
|
push @tokens, ( EOL => $next_line->[2], $self->line ); |
|
705
|
2134
|
|
|
|
|
5087
|
$self->_push_tokens(\@tokens); |
|
706
|
2134
|
|
|
|
|
4701
|
$self->set_next_line(undef); |
|
707
|
2134
|
|
|
|
|
10146
|
return; |
|
708
|
|
|
|
|
|
|
} |
|
709
|
|
|
|
|
|
|
} |
|
710
|
688
|
|
|
|
|
1137
|
$tokens[-2] .= $next_line->[2]; |
|
711
|
688
|
|
|
|
|
1454
|
$self->set_next_line(undef); |
|
712
|
688
|
|
|
|
|
852
|
$start = 0; |
|
713
|
|
|
|
|
|
|
} |
|
714
|
|
|
|
|
|
|
} |
|
715
|
|
|
|
|
|
|
|
|
716
|
|
|
|
|
|
|
sub _read_quoted_tokens { |
|
717
|
5324
|
|
|
5324
|
|
9579
|
my ($self, $start, $first, $yaml, $tokens) = @_; |
|
718
|
5324
|
|
|
|
|
6252
|
my $quoted = ''; |
|
719
|
5324
|
|
|
|
|
6006
|
my $decoded = ''; |
|
720
|
5324
|
|
|
|
|
7332
|
my $token_name = $TOKEN_NAMES{ $first }; |
|
721
|
5324
|
|
|
|
|
6372
|
my $eol = ''; |
|
722
|
5324
|
100
|
|
|
|
8499
|
if ($first eq "'") { |
|
723
|
2157
|
|
|
|
|
3239
|
my $regex = $REGEXES{SINGLEQUOTED}; |
|
724
|
2157
|
50
|
|
|
|
13571
|
if ($$yaml =~ s/\A($regex)//) { |
|
725
|
2157
|
|
|
|
|
4864
|
$quoted .= $1; |
|
726
|
2157
|
|
|
|
|
2782
|
$decoded .= $1; |
|
727
|
2157
|
|
|
|
|
3619
|
$decoded =~ s/''/'/g; |
|
728
|
|
|
|
|
|
|
} |
|
729
|
2157
|
100
|
|
|
|
4105
|
unless (length $$yaml) { |
|
730
|
88
|
100
|
|
|
|
626
|
if ($quoted =~ s/($RE_WS+)\z//) { |
|
731
|
24
|
|
|
|
|
49
|
$eol = $1; |
|
732
|
24
|
|
|
|
|
303
|
$decoded =~ s/($eol)\z//; |
|
733
|
|
|
|
|
|
|
} |
|
734
|
|
|
|
|
|
|
} |
|
735
|
|
|
|
|
|
|
} |
|
736
|
|
|
|
|
|
|
else { |
|
737
|
3167
|
|
|
|
|
5890
|
($quoted, $decoded, $eol) = $self->_read_doublequoted($yaml); |
|
738
|
|
|
|
|
|
|
} |
|
739
|
5324
|
|
|
|
|
13882
|
my $value = { value => $decoded, orig => $quoted }; |
|
740
|
|
|
|
|
|
|
|
|
741
|
5324
|
100
|
|
|
|
25986
|
if ($$yaml =~ s/\A$first//) { |
|
742
|
4634
|
100
|
|
|
|
6906
|
if ($start) { |
|
743
|
4145
|
|
|
|
|
8636
|
push @$tokens, ( $token_name . 'D' => $value, $self->line ); |
|
744
|
|
|
|
|
|
|
} |
|
745
|
|
|
|
|
|
|
else { |
|
746
|
489
|
|
|
|
|
1136
|
push @$tokens, ( $token_name . 'D_LINE' => $value, $self->line ); |
|
747
|
|
|
|
|
|
|
} |
|
748
|
4634
|
|
|
|
|
7726
|
push @$tokens, ( $token_name => $first, $self->line ); |
|
749
|
4634
|
|
|
|
|
9787
|
return $value; |
|
750
|
|
|
|
|
|
|
} |
|
751
|
690
|
100
|
|
|
|
1415
|
if (length $$yaml) { |
|
752
|
2
|
|
|
|
|
6
|
push @$tokens, ( $token_name . 'D' => $value->{orig}, $self->line ); |
|
753
|
2
|
|
|
|
|
5
|
$self->_push_tokens($tokens); |
|
754
|
2
|
|
|
|
|
7
|
$self->exception("Invalid quoted <$first> string"); |
|
755
|
|
|
|
|
|
|
} |
|
756
|
|
|
|
|
|
|
|
|
757
|
688
|
|
|
|
|
1782
|
push @$tokens, ( $token_name . 'D_LINE' => $value, $self->line ); |
|
758
|
688
|
|
|
|
|
1294
|
push @$tokens, ( EOL => $eol, $self->line ); |
|
759
|
|
|
|
|
|
|
|
|
760
|
688
|
|
|
|
|
1365
|
return $value; |
|
761
|
|
|
|
|
|
|
} |
|
762
|
|
|
|
|
|
|
|
|
763
|
|
|
|
|
|
|
sub _read_doublequoted { |
|
764
|
3167
|
|
|
3167
|
|
4481
|
my ($self, $yaml) = @_; |
|
765
|
3167
|
|
|
|
|
3592
|
my $quoted = ''; |
|
766
|
3167
|
|
|
|
|
3987
|
my $decoded = ''; |
|
767
|
3167
|
|
|
|
|
3684
|
my $eol = ''; |
|
768
|
3167
|
|
|
|
|
3178
|
while (1) { |
|
769
|
9275
|
|
|
|
|
8836
|
my $last = 1; |
|
770
|
9275
|
100
|
|
|
|
23975
|
if ($$yaml =~ s/\A([^"\\ \t]+)//) { |
|
771
|
5528
|
|
|
|
|
9657
|
$quoted .= $1; |
|
772
|
5528
|
|
|
|
|
6761
|
$decoded .= $1; |
|
773
|
5528
|
|
|
|
|
5786
|
$last = 0; |
|
774
|
|
|
|
|
|
|
} |
|
775
|
9275
|
100
|
|
|
|
31335
|
if ($$yaml =~ s/\A($RE_ESCAPES)//) { |
|
776
|
1475
|
|
|
|
|
2394
|
$quoted .= $1; |
|
777
|
1475
|
100
|
|
|
|
3945
|
my $dec = defined $2 ? $CONTROL{ $2 } |
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
778
|
|
|
|
|
|
|
: defined $3 ? chr hex $3 |
|
779
|
|
|
|
|
|
|
: defined $4 ? chr hex $4 |
|
780
|
|
|
|
|
|
|
: chr hex $5; |
|
781
|
1475
|
|
|
|
|
1857
|
$decoded .= $dec; |
|
782
|
1475
|
|
|
|
|
1671
|
$last = 0; |
|
783
|
|
|
|
|
|
|
} |
|
784
|
9275
|
100
|
|
|
|
18407
|
if ($$yaml =~ s/\A([ \t]+)//) { |
|
785
|
2742
|
|
|
|
|
3689
|
my $spaces = $1; |
|
786
|
2742
|
100
|
|
|
|
4120
|
if (length $$yaml) { |
|
787
|
2601
|
|
|
|
|
3070
|
$quoted .= $spaces; |
|
788
|
2601
|
|
|
|
|
2787
|
$decoded .= $spaces; |
|
789
|
2601
|
|
|
|
|
2996
|
$last = 0; |
|
790
|
|
|
|
|
|
|
} |
|
791
|
|
|
|
|
|
|
else { |
|
792
|
141
|
|
|
|
|
206
|
$eol = $spaces; |
|
793
|
141
|
|
|
|
|
226
|
last; |
|
794
|
|
|
|
|
|
|
} |
|
795
|
|
|
|
|
|
|
} |
|
796
|
9134
|
100
|
|
|
|
14406
|
if ($$yaml =~ s/\A(\\)\z//) { |
|
797
|
82
|
|
|
|
|
167
|
$quoted .= $1; |
|
798
|
82
|
|
|
|
|
118
|
$decoded .= $1; |
|
799
|
82
|
|
|
|
|
121
|
last; |
|
800
|
|
|
|
|
|
|
} |
|
801
|
9052
|
100
|
|
|
|
13663
|
last if $last; |
|
802
|
|
|
|
|
|
|
} |
|
803
|
3167
|
|
|
|
|
9403
|
return ($quoted, $decoded, $eol); |
|
804
|
|
|
|
|
|
|
} |
|
805
|
|
|
|
|
|
|
|
|
806
|
|
|
|
|
|
|
sub _fetch_next_tokens_directive { |
|
807
|
326
|
|
|
326
|
|
1368
|
my ($self, $yaml, $eol) = @_; |
|
808
|
326
|
|
|
|
|
406
|
my @tokens; |
|
809
|
|
|
|
|
|
|
|
|
810
|
326
|
|
|
|
|
488
|
my $trailing_ws = ''; |
|
811
|
326
|
|
100
|
|
|
1239
|
my $warn = $ENV{YAML_PP_RESERVED_DIRECTIVE} || 'warn'; |
|
812
|
326
|
100
|
|
|
|
5556
|
if ($$yaml =~ s/\A(\s*%YAML[ \t]+([0-9]+\.[0-9]+))//) { |
|
|
|
100
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
813
|
163
|
|
|
|
|
297
|
my $dir = $1; |
|
814
|
163
|
|
|
|
|
261
|
my $version = $2; |
|
815
|
163
|
100
|
|
|
|
1317
|
if ($$yaml =~ s/\A($RE_WS+)//) { |
|
|
|
100
|
|
|
|
|
|
|
816
|
28
|
|
|
|
|
68
|
$trailing_ws = $1; |
|
817
|
|
|
|
|
|
|
} |
|
818
|
|
|
|
|
|
|
elsif (length $$yaml) { |
|
819
|
1
|
|
|
|
|
4
|
push @tokens, ( 'Invalid directive' => $dir.$$yaml.$eol, $self->line ); |
|
820
|
1
|
|
|
|
|
4
|
$self->_push_tokens(\@tokens); |
|
821
|
1
|
|
|
|
|
2
|
return; |
|
822
|
|
|
|
|
|
|
} |
|
823
|
162
|
100
|
|
|
|
629
|
if ($version !~ m/^1\.[12]$/) { |
|
824
|
9
|
50
|
|
|
|
72
|
if ($warn eq 'warn') { |
|
|
|
50
|
|
|
|
|
|
|
825
|
0
|
|
|
|
|
0
|
warn "Unsupported YAML version '$dir'"; |
|
826
|
|
|
|
|
|
|
} |
|
827
|
|
|
|
|
|
|
elsif ($warn eq 'fatal') { |
|
828
|
0
|
|
|
|
|
0
|
push @tokens, ( 'Unsupported YAML version' => $dir, $self->line ); |
|
829
|
0
|
|
|
|
|
0
|
$self->_push_tokens(\@tokens); |
|
830
|
0
|
|
|
|
|
0
|
return; |
|
831
|
|
|
|
|
|
|
} |
|
832
|
|
|
|
|
|
|
} |
|
833
|
162
|
|
|
|
|
376
|
push @tokens, ( YAML_DIRECTIVE => $dir, $self->line ); |
|
834
|
|
|
|
|
|
|
} |
|
835
|
|
|
|
|
|
|
elsif ($$yaml =~ s/\A(\s*%TAG[ \t]+(!$RE_NS_WORD_CHAR*!|!)[ \t]+(tag:\S+|!$RE_URI_CHAR+))($RE_WS*)//) { |
|
836
|
118
|
|
|
|
|
331
|
push @tokens, ( TAG_DIRECTIVE => $1, $self->line ); |
|
837
|
|
|
|
|
|
|
# TODO |
|
838
|
118
|
|
|
|
|
268
|
my $tag_alias = $2; |
|
839
|
118
|
|
|
|
|
196
|
my $tag_url = $3; |
|
840
|
118
|
|
|
|
|
386
|
$trailing_ws = $4; |
|
841
|
|
|
|
|
|
|
} |
|
842
|
|
|
|
|
|
|
elsif ($$yaml =~ s/\A(\s*\A%(?:\w+).*)//) { |
|
843
|
45
|
|
|
|
|
134
|
push @tokens, ( RESERVED_DIRECTIVE => $1, $self->line ); |
|
844
|
45
|
50
|
|
|
|
166
|
if ($warn eq 'warn') { |
|
|
|
50
|
|
|
|
|
|
|
845
|
0
|
|
|
|
|
0
|
warn "Found reserved directive '$1'"; |
|
846
|
|
|
|
|
|
|
} |
|
847
|
|
|
|
|
|
|
elsif ($warn eq 'fatal') { |
|
848
|
0
|
|
|
|
|
0
|
die "Found reserved directive '$1'"; |
|
849
|
|
|
|
|
|
|
} |
|
850
|
|
|
|
|
|
|
} |
|
851
|
|
|
|
|
|
|
else { |
|
852
|
0
|
|
|
|
|
0
|
push @tokens, ( 'Invalid directive' => $$yaml, $self->line ); |
|
853
|
0
|
|
|
|
|
0
|
push @tokens, ( EOL => $eol, $self->line ); |
|
854
|
0
|
|
|
|
|
0
|
$self->_push_tokens(\@tokens); |
|
855
|
0
|
|
|
|
|
0
|
return; |
|
856
|
|
|
|
|
|
|
} |
|
857
|
325
|
100
|
66
|
|
|
1055
|
if (not length $$yaml) { |
|
|
|
100
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
858
|
297
|
|
|
|
|
592
|
push @tokens, ( EOL => $eol, $self->line ); |
|
859
|
|
|
|
|
|
|
} |
|
860
|
|
|
|
|
|
|
elsif ($trailing_ws and $$yaml =~ s/\A(#.*)?\z//) { |
|
861
|
27
|
|
|
|
|
112
|
push @tokens, ( EOL => "$trailing_ws$1$eol", $self->line ); |
|
862
|
27
|
|
|
|
|
90
|
$self->_push_tokens(\@tokens); |
|
863
|
27
|
|
|
|
|
283
|
return; |
|
864
|
|
|
|
|
|
|
} |
|
865
|
|
|
|
|
|
|
elsif ($$yaml =~ s/\A([ \t]+#.*)?\z//) { |
|
866
|
0
|
|
|
|
|
0
|
push @tokens, ( EOL => "$1$eol", $self->line ); |
|
867
|
0
|
|
|
|
|
0
|
$self->_push_tokens(\@tokens); |
|
868
|
0
|
|
|
|
|
0
|
return; |
|
869
|
|
|
|
|
|
|
} |
|
870
|
|
|
|
|
|
|
else { |
|
871
|
1
|
|
|
|
|
3
|
push @tokens, ( 'Invalid directive' => $trailing_ws.$$yaml, $self->line ); |
|
872
|
1
|
|
|
|
|
2
|
push @tokens, ( EOL => $eol, $self->line ); |
|
873
|
|
|
|
|
|
|
} |
|
874
|
298
|
|
|
|
|
771
|
$self->_push_tokens(\@tokens); |
|
875
|
298
|
|
|
|
|
634
|
return; |
|
876
|
|
|
|
|
|
|
} |
|
877
|
|
|
|
|
|
|
|
|
878
|
|
|
|
|
|
|
sub _push_tokens { |
|
879
|
84671
|
|
|
84671
|
|
118421
|
my ($self, $new_tokens) = @_; |
|
880
|
84671
|
|
|
|
|
110359
|
my $next = $self->next_tokens; |
|
881
|
84671
|
|
|
|
|
114159
|
my $line = $self->line; |
|
882
|
84671
|
|
|
|
|
117570
|
my $column = $self->offset; |
|
883
|
|
|
|
|
|
|
|
|
884
|
84671
|
|
|
|
|
144360
|
for (my $i = 0; $i < @$new_tokens; $i += 3) { |
|
885
|
152886
|
|
|
|
|
183380
|
my $value = $new_tokens->[ $i + 1 ]; |
|
886
|
152886
|
|
|
|
|
162461
|
my $name = $new_tokens->[ $i ]; |
|
887
|
152886
|
|
|
|
|
161168
|
my $line = $new_tokens->[ $i + 2 ]; |
|
888
|
152886
|
|
|
|
|
351371
|
my $push = { |
|
889
|
|
|
|
|
|
|
name => $name, |
|
890
|
|
|
|
|
|
|
line => $line, |
|
891
|
|
|
|
|
|
|
column => $column, |
|
892
|
|
|
|
|
|
|
value => $value, |
|
893
|
|
|
|
|
|
|
}; |
|
894
|
152886
|
100
|
|
|
|
252064
|
$column += length $value unless $name eq 'CONTEXT'; |
|
895
|
152886
|
|
|
|
|
173764
|
push @$next, $push; |
|
896
|
152886
|
100
|
|
|
|
318811
|
if ($name eq 'EOL') { |
|
897
|
24442
|
|
|
|
|
46533
|
$column = 0; |
|
898
|
|
|
|
|
|
|
} |
|
899
|
|
|
|
|
|
|
} |
|
900
|
84671
|
|
|
|
|
142629
|
$self->set_offset($column); |
|
901
|
84671
|
|
|
|
|
98996
|
return $next; |
|
902
|
|
|
|
|
|
|
} |
|
903
|
|
|
|
|
|
|
|
|
904
|
|
|
|
|
|
|
sub push_subtokens { |
|
905
|
6583
|
|
|
6583
|
0
|
10026
|
my ($self, $token, $subtokens) = @_; |
|
906
|
6583
|
|
|
|
|
9725
|
my $next = $self->next_tokens; |
|
907
|
6583
|
|
|
|
|
9615
|
my $line = $self->line; |
|
908
|
6583
|
|
|
|
|
10314
|
my $column = $self->offset; |
|
909
|
6583
|
|
|
|
|
10163
|
$token->{column} = $column; |
|
910
|
6583
|
|
|
|
|
11271
|
$token->{subtokens} = \my @sub; |
|
911
|
|
|
|
|
|
|
|
|
912
|
6583
|
|
|
|
|
14629
|
for (my $i = 0; $i < @$subtokens; $i+=3) { |
|
913
|
28872
|
|
|
|
|
30898
|
my $name = $subtokens->[ $i ]; |
|
914
|
28872
|
|
|
|
|
34845
|
my $value = $subtokens->[ $i + 1 ]; |
|
915
|
28872
|
|
|
|
|
29765
|
my $line = $subtokens->[ $i + 2 ]; |
|
916
|
28872
|
|
|
|
|
53289
|
my $push = { |
|
917
|
|
|
|
|
|
|
name => $subtokens->[ $i ], |
|
918
|
|
|
|
|
|
|
line => $line, |
|
919
|
|
|
|
|
|
|
column => $column, |
|
920
|
|
|
|
|
|
|
}; |
|
921
|
28872
|
100
|
|
|
|
38910
|
if (ref $value eq 'HASH') { |
|
922
|
5315
|
|
|
|
|
24668
|
%$push = ( %$push, %$value ); |
|
923
|
5315
|
|
|
|
|
11918
|
$column += length $value->{orig}; |
|
924
|
|
|
|
|
|
|
} |
|
925
|
|
|
|
|
|
|
else { |
|
926
|
23557
|
|
|
|
|
30185
|
$push->{value} = $value; |
|
927
|
23557
|
|
|
|
|
25354
|
$column += length $value; |
|
928
|
|
|
|
|
|
|
} |
|
929
|
28872
|
100
|
|
|
|
41055
|
if ($push->{name} eq 'EOL') { |
|
930
|
4705
|
|
|
|
|
4872
|
$column = 0; |
|
931
|
|
|
|
|
|
|
} |
|
932
|
28872
|
|
|
|
|
53233
|
push @sub, $push; |
|
933
|
|
|
|
|
|
|
} |
|
934
|
6583
|
|
|
|
|
11019
|
$token->{line} = $sub[0]->{line}; |
|
935
|
6583
|
|
|
|
|
8618
|
push @$next, $token; |
|
936
|
6583
|
|
|
|
|
12942
|
$self->set_offset($column); |
|
937
|
6583
|
|
|
|
|
9473
|
return $next; |
|
938
|
|
|
|
|
|
|
} |
|
939
|
|
|
|
|
|
|
|
|
940
|
|
|
|
|
|
|
sub exception { |
|
941
|
61
|
|
|
61
|
0
|
82
|
my ($self, $msg) = @_; |
|
942
|
61
|
|
|
|
|
83
|
my $next = $self->next_tokens; |
|
943
|
61
|
|
|
|
|
89
|
$next = []; |
|
944
|
61
|
50
|
|
|
|
121
|
my $line = @$next ? $next->[0]->{line} : $self->line; |
|
945
|
61
|
|
|
|
|
316
|
my @caller = caller(0); |
|
946
|
61
|
|
|
|
|
96
|
my $yaml = ''; |
|
947
|
61
|
100
|
|
|
|
89
|
if (my $nl = $self->next_line) { |
|
948
|
60
|
|
|
|
|
129
|
$yaml = join '', @$nl; |
|
949
|
60
|
|
|
|
|
85
|
$yaml = $nl->[1]; |
|
950
|
|
|
|
|
|
|
} |
|
951
|
61
|
|
|
|
|
102
|
my $e = YAML::PP::Exception->new( |
|
952
|
|
|
|
|
|
|
line => $line, |
|
953
|
|
|
|
|
|
|
column => $self->offset + 1, |
|
954
|
|
|
|
|
|
|
msg => $msg, |
|
955
|
|
|
|
|
|
|
next => $next, |
|
956
|
|
|
|
|
|
|
where => $caller[1] . ' line ' . $caller[2], |
|
957
|
|
|
|
|
|
|
yaml => $yaml, |
|
958
|
|
|
|
|
|
|
); |
|
959
|
61
|
|
|
|
|
1326
|
croak $e; |
|
960
|
|
|
|
|
|
|
} |
|
961
|
|
|
|
|
|
|
|
|
962
|
|
|
|
|
|
|
1; |