File Coverage

blib/lib/YAML/As/Parsed.pm
Criterion Covered Total %
statement 250 348 72.1
branch 111 202 54.9
condition 18 42 42.8
subroutine 36 37 97.3
pod 0 11 0.0
total 415 640 65.0


line stmt bran cond sub pod time code
1 9     9   638432 use 5.008001; # sane UTF-8 support
  9         109  
2 9     9   41 use strict;
  9         16  
  9         185  
3 9     9   40 use warnings;
  9         17  
  9         493  
4             package YAML::As::Parsed; # git description: v1.72-7-g8682f63
5              
6             our $VERSION = '0.05';
7              
8 9     9   3740 use Tie::IxHash;
  9         33820  
  9         498  
9              
10             sub ordered_hash {
11 23     23 0 37 my %hash = ();
12 23         145 tie(%hash, 'Tie::IxHash');
13 23         348 return \%hash;
14             }
15              
16 9     9   64 use Exporter;
  9         19  
  9         1289  
17             our @ISA = qw{ Exporter };
18             our @EXPORT = qw{ Load Dump };
19             our @EXPORT_OK = qw{ LoadFile DumpFile freeze thaw };
20              
21              
22             sub Dump {
23 1     1 0 83 return __PACKAGE__->new(@_)->_dump_string;
24             }
25              
26             sub Load {
27 2     2 0 1295 my $self = __PACKAGE__->_load_string(@_);
28 1 50       3 if ( wantarray ) {
29 1         4 return @$self;
30             } else {
31             # To match YAML.pm, return the last document
32 0         0 return $self->[-1];
33             }
34             }
35              
36             BEGIN {
37 9     9   40 *freeze = \&Dump;
38 9         5422 *thaw = \&Load;
39             }
40              
41             sub DumpFile {
42 1     1 0 1687 my $file = shift;
43 1         3 return __PACKAGE__->new(@_)->_dump_file($file);
44             }
45              
46             sub LoadFile {
47 1     1 0 305 my $file = shift;
48 1         5 my $self = __PACKAGE__->_load_file($file);
49 1 50       4 if ( wantarray ) {
50 1         4 return @$self;
51             } else {
52             # Return only the last document to match YAML.pm,
53 0         0 return $self->[-1];
54             }
55             }
56              
57             sub new {
58 9     9 0 23787 my $class = shift;
59 9         47 bless [ @_ ], $class;
60             }
61              
62              
63             sub read_string {
64 10     10 0 12232 my $self = shift;
65 10         47 $self->_load_string(@_);
66             }
67              
68             sub write_string {
69 2     2 0 2382 my $self = shift;
70 2         15 $self->_dump_string(@_);
71             }
72              
73             sub read {
74 14     14 0 20280 my $self = shift;
75 14         45 $self->_load_file(@_);
76             }
77              
78             sub write {
79 4     4 0 11 my $self = shift;
80 4         20 $self->_dump_file(@_);
81             }
82              
83             my @UNPRINTABLE = qw(
84             0 x01 x02 x03 x04 x05 x06 a
85             b t n v f r x0E x0F
86             x10 x11 x12 x13 x14 x15 x16 x17
87             x18 x19 x1A e x1C x1D x1E x1F
88             );
89              
90             my %UNESCAPES = (
91             0 => "\x00", z => "\x00", N => "\x85",
92             a => "\x07", b => "\x08", t => "\x09",
93             n => "\x0a", v => "\x0b", f => "\x0c",
94             r => "\x0d", e => "\x1b", '\\' => '\\',
95             );
96              
97              
98             my %QUOTE = map { $_ => 1 } qw{
99             null true false
100             };
101              
102             my $re_capture_double_quoted = qr/\"([^\\"]*(?:\\.[^\\"]*)*)\"/;
103             my $re_capture_single_quoted = qr/\'([^\']*(?:\'\'[^\']*)*)\'/;
104             my $re_capture_unquoted_key = qr/([^:]+(?::+\S(?:[^:]*|.*?(?=:)))*)(?=\s*\:(?:\s+|$))/;
105             my $re_trailing_comment = qr/(?:\s+\#.*)?/;
106             my $re_key_value_separator = qr/\s*:(?:\s+(?:\#.*)?|$)/;
107              
108             sub _load_file {
109 15 100   15   41 my $class = ref $_[0] ? ref shift : shift;
110              
111             # Check the file
112 15 100       39 my $file = shift or $class->_error( 'You did not specify a file name' );
113 14 100       210 $class->_error( "File '$file' does not exist" )
114             unless -e $file;
115 13 100       44 $class->_error( "'$file' is a directory, not a file" )
116             unless -f _;
117 12 50       62 $class->_error( "Insufficient permissions to read '$file'" )
118             unless -r _;
119              
120             # Open unbuffered with strict UTF-8 decoding and no translation layers
121 12     3   365 open( my $fh, "<:unix:encoding(UTF-8)", $file );
  3         17  
  3         5  
  3         26  
122 12 50       10451 unless ( $fh ) {
123 0         0 $class->_error("Failed to open file '$file': $!");
124             }
125              
126             # flock if available (or warn if not possible for OS-specific reasons)
127 12 50       25 if ( _can_flock() ) {
128 12 50       114 flock( $fh, Fcntl::LOCK_SH() )
129             or warn "Couldn't lock '$file' for reading: $!";
130             }
131              
132             # slurp the contents
133 12         28 my $contents = eval {
134 9     9   75 use warnings FATAL => 'utf8';
  9         16  
  9         32414  
135 12         44 local $/;
136             <$fh>
137 12         437 };
138 12 100       215 if ( my $err = $@ ) {
139 2         14 $class->_error("Error reading from file '$file': $err");
140             }
141              
142             # close the file (release the lock)
143 10 50       127 unless ( close $fh ) {
144 0         0 $class->_error("Failed to close file '$file': $!");
145             }
146              
147 10         58 $class->_load_string( $contents );
148             }
149              
150             sub _load_string {
151 22 100   22   60 my $class = ref $_[0] ? ref shift : shift;
152 22         42 my $self = bless [], $class;
153 22         38 my $string = $_[0];
154 22         31 eval {
155 22 100       49 unless ( defined $string ) {
156 1         6 die \"Did not provide a string to load";
157             }
158              
159             # Check if Perl has it marked as characters, but it's internally
160             # inconsistent. E.g. maybe latin1 got read on a :utf8 layer
161 21 100 100     114 if ( utf8::is_utf8($string) && ! utf8::valid($string) ) {
162 1         3 die \<<'...';
163             Read an invalid UTF-8 string (maybe mixed UTF-8 and 8-bit character set).
164             Did you decode with lax ":utf8" instead of strict ":encoding(UTF-8)"?
165             ...
166             }
167              
168             # Ensure Unicode character semantics, even for 0x80-0xff
169 20         47 utf8::upgrade($string);
170              
171             # Check for and strip any leading UTF-8 BOM
172 20         60 $string =~ s/^\x{FEFF}//;
173              
174             # Check for some special cases
175 20 50       55 return $self unless length $string;
176              
177             # Split the file into lines
178 20         256 my @lines = grep { ! /^\s*(?:\#.*)?\z/ }
  95         299  
179             split /(?:\015{1,2}\012|\015|\012)/, $string;
180              
181             # Strip the initial YAML header
182 20 50 33     92 @lines and $lines[0] =~ /^\%YAML[: ][\d\.]+.*\z/ and shift @lines;
183              
184             # A nibbling parser
185 20         32 my $in_document = 0;
186 20         51 while ( @lines ) {
187             # Do we have a document header?
188 26 100       134 if ( $lines[0] =~ /^---\s*(?:(.+)\s*)?\z/ ) {
189             # Handle scalar documents
190 25         39 shift @lines;
191 25 100 66     159 if ( defined $1 and $1 !~ /^(?:\#.+|\%YAML[: ][\d\.]+)\z/ ) {
192 2         10 push @$self,
193             $self->_load_scalar( "$1", [ undef ], \@lines );
194 2         7 next;
195             }
196 23         36 $in_document = 1;
197             }
198              
199 24 100 66     239 if ( ! @lines or $lines[0] =~ /^(?:---|\.\.\.)/ ) {
    50 66        
    100          
    50          
200             # A naked document
201 1         2 push @$self, undef;
202 1   33     11 while ( @lines and $lines[0] !~ /^---/ ) {
203 0         0 shift @lines;
204             }
205 1         4 $in_document = 0;
206              
207             # XXX The final '-+$' is to look for -- which ends up being an
208             # error later.
209             } elsif ( ! $in_document && @$self ) {
210             # only the first document can be explicit
211 0         0 die \"YAML::As::Parsed failed to classify the line '$lines[0]'";
212             } elsif ( $lines[0] =~ /^\s*\-(?:\s|$|-+$)/ ) {
213             # An array at the root
214 8         17 my $document = [ ];
215 8         17 push @$self, $document;
216 8         28 $self->_load_array( $document, [ 0 ], \@lines );
217              
218             } elsif ( $lines[0] =~ /^(\s*)\S/ ) {
219             # A hash at the root
220 15         41 my $document = ordered_hash;
221 15         38 push @$self, $document;
222 15         75 $self->_load_hash( $document, [ length($1) ], \@lines );
223              
224             } else {
225             # Shouldn't get here. @lines have whitespace-only lines
226             # stripped, and previous match is a line with any
227             # non-whitespace. So this clause should only be reachable via
228             # a perlbug where \s is not symmetric with \S
229              
230             # uncoverable statement
231 0         0 die \"YAML::As::Parsed failed to classify the line '$lines[0]'";
232             }
233             }
234             };
235 22         40 my $err = $@;
236 22 100       72 if ( ref $err eq 'SCALAR' ) {
    50          
237 3         4 $self->_error(${$err});
  3         10  
238             } elsif ( $err ) {
239 0         0 $self->_error($err);
240             }
241              
242 19         115 return $self;
243             }
244              
245             sub _unquote_single {
246 2     2   6 my ($self, $string) = @_;
247 2 50       11 return '' unless length $string;
248 2         8 $string =~ s/\'\'/\'/g;
249 2         7 return $string;
250             }
251              
252             sub _unquote_double {
253 4     4   10 my ($self, $string) = @_;
254 4 50       12 return '' unless length $string;
255 4         10 $string =~ s/\\"/"/g;
256 4         6 $string =~
257 0 0       0 s{\\([Nnever\\fartz0b]|x([0-9a-fA-F]{2}))}
258 4         21 {(length($1)>1)?pack("H2",$2):$UNESCAPES{$1}}gex;
259             return $string;
260             }
261              
262 67     67   129 sub _load_scalar {
263             my ($self, $string, $indent, $lines) = @_;
264              
265 67         265 # Trim trailing whitespace
266             $string =~ s/\s*\z//;
267              
268 67 100       153 # Explitic null/undef
269             return undef if $string eq '~';
270              
271 60 100       338 # Single quote
272 2         18 if ( $string =~ /^$re_capture_single_quoted$re_trailing_comment\z/ ) {
273             return $self->_unquote_single($1);
274             }
275              
276 58 100       281 # Double quote.
277 4         10 if ( $string =~ /^$re_capture_double_quoted$re_trailing_comment\z/ ) {
278             return $self->_unquote_double($1);
279             }
280              
281 54 50       119 # Special cases
282 0         0 if ( $string =~ /^[\'\"!&]/ ) {
283             die \"YAML::As::Parsed does not support a feature in line '$string'";
284 54 50       113 }
285 54 50       96 return {} if $string =~ /^{}(?:\s+\#.*)?\z/;
286             return [] if $string =~ /^\[\](?:\s+\#.*)?\z/;
287              
288 54 50       98 # Regular unquoted string
289 54 50 33     211 if ( $string !~ /^[>|]/ ) {
290             die \"YAML::As::Parsed found illegal characters in plain scalar: '$string'"
291             if $string =~ /^(?:-(?:\s|$)|[\@\%\`])/ or
292 54         86 $string =~ /:(?:\s|$)/;
293 54         229 $string =~ s/\s+#.*\z//;
294             return $string;
295             }
296              
297 0 0       0 # Error
298             die \"YAML::As::Parsed failed to find multi-line scalar content" unless @$lines;
299              
300 0         0 # Check the indent depth
301 0         0 $lines->[0] =~ /^(\s*)/;
302 0 0 0     0 $indent->[-1] = length("$1");
303 0         0 if ( defined $indent->[-2] and $indent->[-1] <= $indent->[-2] ) {
304             die \"YAML::As::Parsed found bad indenting in line '$lines->[0]'";
305             }
306              
307 0         0 # Pull the lines
308 0         0 my @multiline = ();
309 0         0 while ( @$lines ) {
310 0 0       0 $lines->[0] =~ /^(\s*)/;
311 0         0 last unless length($1) >= $indent->[-1];
312             push @multiline, substr(shift(@$lines), $indent->[-1]);
313             }
314 0 0       0  
315 0 0       0 my $j = (substr($string, 0, 1) eq '>') ? ' ' : "\n";
316 0         0 my $t = (substr($string, 1, 1) eq '-') ? '' : "\n";
317             return join( $j, @multiline ) . $t;
318             }
319              
320 10     10   27 sub _load_array {
321             my ($self, $array, $indent, $lines) = @_;
322 10         31  
323             while ( @$lines ) {
324 26 100       65 # Check for a new document
325 4   33     21 if ( $lines->[0] =~ /^(?:---|\.\.\.)/ ) {
326 0         0 while ( @$lines and $lines->[0] !~ /^---/ ) {
327             shift @$lines;
328 4         12 }
329             return 1;
330             }
331              
332 22         43 # Check the indent level
333 22 100       65 $lines->[0] =~ /^(\s*)/;
    50          
334 2         6 if ( length($1) < $indent->[-1] ) {
335             return 1;
336 0         0 } elsif ( length($1) > $indent->[-1] ) {
337             die \"YAML::As::Parsed found bad indenting in line '$lines->[0]'";
338             }
339 20 100 0     131  
    50          
    50          
    0          
340             if ( $lines->[0] =~ /^(\s*\-\s+)[^\'\"]\S*\s*:(?:\s+|$)/ ) {
341 6         14 # Inline nested hash
342 6         19 my $indent2 = length("$1");
343 6         12 $lines->[0] =~ s/-/ /;
344 6         29 push @$array, ordered_hash;
345             $self->_load_hash( $array->[-1], [ @$indent, $indent2 ], $lines );
346              
347 0         0 } elsif ( $lines->[0] =~ /^\s*\-\s*\z/ ) {
348 0 0       0 shift @$lines;
349 0         0 unless ( @$lines ) {
350 0         0 push @$array, undef;
351             return 1;
352 0 0       0 }
    0          
353 0         0 if ( $lines->[0] =~ /^(\s*)\-/ ) {
354 0 0       0 my $indent2 = length("$1");
355             if ( $indent->[-1] == $indent2 ) {
356 0         0 # Null array entry
357             push @$array, undef;
358             } else {
359 0         0 # Naked indenter
360 0         0 push @$array, [ ];
361             $self->_load_array(
362             $array->[-1], [ @$indent, $indent2 ], $lines
363             );
364             }
365              
366 0         0 } elsif ( $lines->[0] =~ /^(\s*)\S/ ) {
367 0         0 push @$array, ordered_hash;
368             $self->_load_hash(
369             $array->[-1], [ @$indent, length("$1") ], $lines
370             );
371              
372 0         0 } else {
373             die \"YAML::As::Parsed failed to classify line '$lines->[0]'";
374             }
375              
376             } elsif ( $lines->[0] =~ /^\s*\-(\s*)(.+?)\s*\z/ ) {
377 14         20 # Array entry with a value
378 14         46 shift @$lines;
379             push @$array, $self->_load_scalar(
380             "$2", [ @$indent, undef ], $lines
381             );
382              
383             } elsif ( defined $indent->[-2] and $indent->[-1] == $indent->[-2] ) {
384             # This is probably a structure like the following...
385             # ---
386             # foo:
387             # - list
388             # bar: value
389             #
390 0         0 # ... so lets return and let the hash parser handle it
391             return 1;
392              
393 0         0 } else {
394             die \"YAML::As::Parsed failed to classify line '$lines->[0]'";
395             }
396             }
397 4         11  
398             return 1;
399             }
400              
401 23     23   52 sub _load_hash {
402             my ($self, $hash, $indent, $lines) = @_;
403 23         60  
404             while ( @$lines ) {
405 60 50       660 # Check for a new document
406 0   0     0 if ( $lines->[0] =~ /^(?:---|\.\.\.)/ ) {
407 0         0 while ( @$lines and $lines->[0] !~ /^---/ ) {
408             shift @$lines;
409 0         0 }
410             return 1;
411             }
412              
413 60         150 # Check the indent level
414 60 100       188 $lines->[0] =~ /^(\s*)/;
    50          
415 4         10 if ( length($1) < $indent->[-1] ) {
416             return 1;
417 0         0 } elsif ( length($1) > $indent->[-1] ) {
418             die \"YAML::As::Parsed found bad indenting in line '$lines->[0]'";
419             }
420              
421 56         126 # Find the key
422             my $key;
423              
424 56 50       1073 # Quoted keys
    50          
    100          
    50          
425             if ( $lines->[0] =~
426             s/^\s*$re_capture_single_quoted$re_key_value_separator//
427 0         0 ) {
428             $key = $self->_unquote_single($1);
429             }
430             elsif ( $lines->[0] =~
431             s/^\s*$re_capture_double_quoted$re_key_value_separator//
432 0         0 ) {
433             $key = $self->_unquote_double($1);
434             }
435             elsif ( $lines->[0] =~
436             s/^\s*$re_capture_unquoted_key$re_key_value_separator//
437 55         105 ) {
438 55         120 $key = $1;
439             $key =~ s/\s+$//;
440             }
441 0         0 elsif ( $lines->[0] =~ /^\s*\?/ ) {
442             die \"YAML::As::Parsed does not support a feature in line '$lines->[0]'";
443             }
444 1         7 else {
445             die \"YAML::As::Parsed failed to classify line '$lines->[0]'";
446             }
447 55 50       194  
448 0         0 if ( exists $hash->{$key} ) {
449             warn "YAML::As::Parsed found a duplicate key '$key' in line '$lines->[0]'";
450             }
451              
452 55 100       361 # Do we have a value?
453             if ( length $lines->[0] ) {
454 51         143 # Yes
455             $hash->{$key} = $self->_load_scalar(
456             shift(@$lines), [ @$indent, undef ], $lines
457             );
458             } else {
459 4         6 # An indent
460 4 50       10 shift @$lines;
461 0         0 unless ( @$lines ) {
462 0         0 $hash->{$key} = undef;
463             return 1;
464 4 100       18 }
    50          
465 2         5 if ( $lines->[0] =~ /^(\s*)-/ ) {
466             $hash->{$key} = [];
467 2         44 $self->_load_array(
468             $hash->{$key}, [ @$indent, length($1) ], $lines
469             );
470 2         4 } elsif ( $lines->[0] =~ /^(\s*)./ ) {
471 2 50       5 my $indent2 = length("$1");
472             if ( $indent->[-1] >= $indent2 ) {
473 0         0 # Null hash entry
474             $hash->{$key} = undef;
475 2         14 } else {
476             $hash->{$key} = ordered_hash;
477 2         32 $self->_load_hash(
478             $hash->{$key}, [ @$indent, length($1) ], $lines
479             );
480             }
481             }
482             }
483             }
484 18         315  
485             return 1;
486             }
487              
488              
489              
490 5     5   10 sub _dump_file {
491             my $self = shift;
492 5         34  
493             require Fcntl;
494              
495 5 100       19 # Check the file
496             my $file = shift or $self->_error( 'You did not specify a file name' );
497 4         7  
498             my $fh;
499 4 50       15 # flock if available (or warn if not possible for OS-specific reasons)
500             if ( _can_flock() ) {
501 4         7 # Open without truncation (truncate comes after lock)
502 4 50       3307 my $flags = Fcntl::O_WRONLY()|Fcntl::O_CREAT();
503             sysopen( $fh, $file, $flags )
504             or $self->_error("Failed to open file '$file' for writing: $!");
505              
506 4         126 # Use no translation and strict UTF-8
507             binmode( $fh, ":raw:encoding(UTF-8)");
508 4 50       20600  
509             flock( $fh, Fcntl::LOCK_EX() )
510             or warn "Couldn't lock '$file' for reading: $!";
511              
512 4         130 # truncate and spew contents
513 4         37 truncate $fh, 0;
514             seek $fh, 0, 0;
515             }
516 0         0 else {
517             open $fh, ">:unix:encoding(UTF-8)", $file;
518             }
519              
520 4         12 # serialize and spew to the handle
  4         22  
521             print {$fh} $self->_dump_string;
522              
523 4 50       524 # close the file (release the lock)
524 0         0 unless ( close $fh ) {
525             $self->_error("Failed to close file '$file': $!");
526             }
527 4         49  
528             return 1;
529             }
530              
531 7     7   18 sub _dump_string {
532 7 100 66     74 my $self = shift;
533             return '' unless ref $self && @$self;
534              
535 6         11 # Iterate over the documents
536 6         13 my $indent = 0;
537             my @lines = ();
538 6         10  
539 6         15 eval {
540 10         19 foreach my $cursor ( @$self ) {
541             push @lines, '---';
542              
543 10 50       49 # An empty document
    100          
    100          
    50          
544             if ( ! defined $cursor ) {
545             # Do nothing
546              
547             # A scalar document
548 2         5 } elsif ( ! ref $cursor ) {
549             $lines[-1] .= ' ' . $self->_dump_scalar( $cursor );
550              
551             # A list at the root
552 2 50       5 } elsif ( ref $cursor eq 'ARRAY' ) {
553 0         0 unless ( @$cursor ) {
554 0         0 $lines[-1] .= ' []';
555             next;
556 2         5 }
557             push @lines, $self->_dump_array( $cursor, $indent, {} );
558              
559             # A hash at the root
560 6 50       18 } elsif ( ref $cursor eq 'HASH' ) {
561 0         0 unless ( %$cursor ) {
562 0         0 $lines[-1] .= ' {}';
563             next;
564 6         25 }
565             push @lines, $self->_dump_hash( $cursor, $indent, {} );
566              
567 0         0 } else {
568             die \("Cannot serialize " . ref($cursor));
569             }
570             }
571 6 50       23 };
    50          
572 0         0 if ( ref $@ eq 'SCALAR' ) {
  0         0  
573             $self->_error(${$@});
574 0         0 } elsif ( $@ ) {
575             $self->_error($@);
576             }
577 6         14  
  31         104  
578             join '', map { "$_\n" } @lines;
579             }
580              
581 32     32   35 sub _has_internal_string_value {
582 32         86 my $value = shift;
583 32         98 my $b_obj = B::svref_2object(\$value); # for round trip problem
584             return $b_obj->FLAGS & B::SVf_POK();
585             }
586              
587 32     32   42 sub _dump_scalar {
588 32         36 my $string = $_[1];
589             my $is_key = $_[2];
590 32         45 # Check this before checking length or it winds up looking like a string!
591 32 50       51 my $has_string_flag = _has_internal_string_value($string);
592 32 50       59 return '~' unless defined $string;
593 32 100       70 return "''" unless length $string;
594             if (Scalar::Util::looks_like_number($string)) {
595 10 50 33     24 # keys and values that have been used as strings get quoted
596 0         0 if ( $is_key || $has_string_flag ) {
597             return qq['$string'];
598             }
599 10         18 else {
600             return $string;
601             }
602 22 50       53 }
603 0         0 if ( $string =~ /[\x00-\x09\x0b-\x0d\x0e-\x1f\x7f-\x9f\'\n]/ ) {
604 0         0 $string =~ s/\\/\\\\/g;
605 0         0 $string =~ s/"/\\"/g;
606 0         0 $string =~ s/\n/\\n/g;
607 0         0 $string =~ s/[\x85]/\\N/g;
608 0         0 $string =~ s/([\x00-\x1f])/\\$UNPRINTABLE[ord($1)]/g;
  0         0  
609 0         0 $string =~ s/([\x7f-\x9f])/'\x' . sprintf("%X",ord($1))/ge;
610             return qq|"$string"|;
611 22 100 66     111 }
612             if ( $string =~ /(?:^[~!@#%&*|>?:,'"`{}\[\]]|^-+$|\s|:\z)/ or
613             $QUOTE{$string}
614 2         8 ) {
615             return "'$string'";
616 20         45 }
617             return $string;
618             }
619              
620 2     2   4 sub _dump_array {
621 2 50       10 my ($self, $array, $indent, $seen) = @_;
622 0         0 if ( $seen->{refaddr($array)}++ ) {
623             die \"YAML::As::Parsed does not support circular references";
624 2         3 }
625 2         4 my @lines = ();
626 10         14 foreach my $el ( @$array ) {
627 10         14 my $line = (' ' x $indent) . '-';
628 10 50       13 my $type = ref $el;
    0          
    0          
629 10         16 if ( ! $type ) {
630 10         20 $line .= ' ' . $self->_dump_scalar( $el );
631             push @lines, $line;
632              
633 0 0       0 } elsif ( $type eq 'ARRAY' ) {
634 0         0 if ( @$el ) {
635 0         0 push @lines, $line;
636             push @lines, $self->_dump_array( $el, $indent + 1, $seen );
637 0         0 } else {
638 0         0 $line .= ' []';
639             push @lines, $line;
640             }
641              
642 0 0       0 } elsif ( $type eq 'HASH' ) {
643 0         0 if ( keys %$el ) {
644 0         0 push @lines, $line;
645             push @lines, $self->_dump_hash( $el, $indent + 1, $seen );
646 0         0 } else {
647 0         0 $line .= ' {}';
648             push @lines, $line;
649             }
650              
651 0         0 } else {
652             die \"YAML::As::Parsed does not support $type references";
653             }
654             }
655 2         14  
656             @lines;
657             }
658              
659 6     6   17 sub _dump_hash {
660 6 50       33 my ($self, $hash, $indent, $seen) = @_;
661 0         0 if ( $seen->{refaddr($hash)}++ ) {
662             die \"YAML::As::Parsed does not support circular references";
663 6         12 }
664 6         35 my @lines = ();
665 11         21 foreach my $name ( sort keys %$hash ) {
666 11         32 my $el = $hash->{$name};
667 11         28 my $line = (' ' x $indent) . $self->_dump_scalar($name, 1) . ":";
668 11 50       20 my $type = ref $el;
    0          
    0          
669 11         20 if ( ! $type ) {
670 11         74 $line .= ' ' . $self->_dump_scalar( $el );
671             push @lines, $line;
672              
673 0 0       0 } elsif ( $type eq 'ARRAY' ) {
674 0         0 if ( @$el ) {
675 0         0 push @lines, $line;
676             push @lines, $self->_dump_array( $el, $indent + 1, $seen );
677 0         0 } else {
678 0         0 $line .= ' []';
679             push @lines, $line;
680             }
681              
682 0 0       0 } elsif ( $type eq 'HASH' ) {
683 0         0 if ( keys %$el ) {
684 0         0 push @lines, $line;
685             push @lines, $self->_dump_hash( $el, $indent + 1, $seen );
686 0         0 } else {
687 0         0 $line .= ' {}';
688             push @lines, $line;
689             }
690              
691 0         0 } else {
692             die \"YAML::As::Parsed does not support $type references";
693             }
694             }
695 6         29  
696             @lines;
697             }
698              
699             our $errstr = '';
700              
701 9     9   40 sub _error {
702 9         18 require Carp;
703 9         35 $errstr = $_[1];
704 9         1227 $errstr =~ s/ at \S+ line \d+.*//;
705             Carp::croak( $errstr );
706             }
707              
708             my $errstr_warned;
709 0     0 0 0 sub errstr {
710 0 0       0 require Carp;
711             Carp::carp( "YAML::As::Parsed->errstr and \$YAML::As::Parsed::errstr is deprecated" )
712 0         0 unless $errstr_warned++;
713             $errstr;
714             }
715 9     9   110  
  9         16  
  9         1199  
716             use B;
717              
718             my $HAS_FLOCK;
719 16 100   16   41 sub _can_flock {
720 13         35 if ( defined $HAS_FLOCK ) {
721             return $HAS_FLOCK;
722             }
723 3         11 else {
724 3         7 require Config;
725 3         9 my $c = \%Config::Config;
  9         297  
726 3 50       22 $HAS_FLOCK = grep { $c->{$_} } qw/d_flock d_fcntl_can_lock d_lockf/;
727 3         11 require Fcntl if $HAS_FLOCK;
728             return $HAS_FLOCK;
729             }
730             }
731 9     9   67  
  9         20  
  9         509  
732             use Scalar::Util ();
733 9     9   31 BEGIN {
734 9 50       34 local $@;
  9         295  
735 9         538 if ( eval { Scalar::Util->VERSION(1.18); } ) {
736             *refaddr = *Scalar::Util::refaddr;
737             }
738 0         0 else {
739             eval <<'END_PERL';
740             sub refaddr {
741             my $pkg = ref($_[0]) or return undef;
742             if ( !! UNIVERSAL::can($_[0], 'can') ) {
743             bless $_[0], 'Scalar::Util::Fake';
744             } else {
745             $pkg = undef;
746             }
747             "$_[0]" =~ /0x(\w+)/;
748             my $i = do { no warnings 'portable'; hex $1 };
749             bless $_[0], $pkg if defined $pkg;
750             $i;
751             }
752             END_PERL
753             }
754             }
755              
756             delete $YAML::As::Parsed::{refaddr};
757              
758             1;
759              
760             __END__