line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Pg::SQL::PrettyPrinter::Node::List; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# UTF8 boilerplace, per http://stackoverflow.com/questions/6162484/why-does-modern-perl-avoid-utf-8-by-default/ |
4
|
4
|
|
|
4
|
|
2672
|
use v5.26; |
|
4
|
|
|
|
|
21
|
|
5
|
4
|
|
|
4
|
|
30
|
use strict; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
91
|
|
6
|
4
|
|
|
4
|
|
31
|
use warnings; |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
147
|
|
7
|
4
|
|
|
4
|
|
27
|
use warnings qw( FATAL utf8 ); |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
153
|
|
8
|
4
|
|
|
4
|
|
35
|
use utf8; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
26
|
|
9
|
4
|
|
|
4
|
|
119
|
use open qw( :std :utf8 ); |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
19
|
|
10
|
4
|
|
|
4
|
|
581
|
use Unicode::Normalize qw( NFC ); |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
264
|
|
11
|
4
|
|
|
4
|
|
28
|
use Unicode::Collate; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
122
|
|
12
|
4
|
|
|
4
|
|
32
|
use Encode qw( decode ); |
|
4
|
|
|
|
|
27
|
|
|
4
|
|
|
|
|
274
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
if ( grep /\P{ASCII}/ => @ARGV ) { |
15
|
|
|
|
|
|
|
@ARGV = map { decode( 'UTF-8', $_ ) } @ARGV; |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
# If there is __DATA__,then uncomment next line: |
19
|
|
|
|
|
|
|
# binmode( DATA, ':encoding(UTF-8)' ); |
20
|
|
|
|
|
|
|
# UTF8 boilerplace, per http://stackoverflow.com/questions/6162484/why-does-modern-perl-avoid-utf-8-by-default/ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
# Useful common code |
23
|
4
|
|
|
4
|
|
893
|
use autodie; |
|
4
|
|
|
|
|
18
|
|
|
4
|
|
|
|
|
23
|
|
24
|
4
|
|
|
4
|
|
23761
|
use Carp qw( carp croak confess cluck ); |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
336
|
|
25
|
4
|
|
|
4
|
|
39
|
use English qw( -no_match_vars ); |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
27
|
|
26
|
4
|
|
|
4
|
|
1588
|
use Data::Dumper qw( Dumper ); |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
887
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# give a full stack dump on any untrapped exceptions |
29
|
|
|
|
|
|
|
local $SIG{ __DIE__ } = sub { |
30
|
|
|
|
|
|
|
confess "Uncaught exception: @_" unless $^S; |
31
|
|
|
|
|
|
|
}; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
# now promote run-time warnings into stackdumped exceptions |
34
|
|
|
|
|
|
|
# *unless* we're in an try block, in which |
35
|
|
|
|
|
|
|
# case just generate a clucking stackdump instead |
36
|
|
|
|
|
|
|
local $SIG{ __WARN__ } = sub { |
37
|
|
|
|
|
|
|
if ( $^S ) { cluck "Trapped warning: @_" } |
38
|
|
|
|
|
|
|
else { confess "Deadly warning: @_" } |
39
|
|
|
|
|
|
|
}; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
# Useful common code |
42
|
|
|
|
|
|
|
|
43
|
4
|
|
|
4
|
|
31
|
use parent qw( Pg::SQL::PrettyPrinter::Node ); |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
25
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
sub new { |
46
|
30
|
|
|
30
|
1
|
935
|
my $class = shift; |
47
|
30
|
|
|
|
|
134
|
my $self = $class->SUPER::new( @_ ); |
48
|
30
|
|
|
|
|
65
|
bless $self, $class; |
49
|
|
|
|
|
|
|
|
50
|
30
|
|
|
|
|
125
|
$self->objectify( 'items' ); |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
# Remove undefined elements |
53
|
30
|
|
|
|
|
56
|
$self->{ 'items' } = [ grep { defined $_ } @{ $self->{ 'items' } } ]; |
|
76
|
|
|
|
|
187
|
|
|
30
|
|
|
|
|
81
|
|
54
|
|
|
|
|
|
|
|
55
|
30
|
|
|
|
|
88
|
return $self; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
sub as_text { |
59
|
44
|
|
|
44
|
1
|
82
|
my $self = shift; |
60
|
|
|
|
|
|
|
return sprintf( |
61
|
|
|
|
|
|
|
'( %s )', |
62
|
44
|
|
|
|
|
75
|
join( ', ', map { $_->as_text } @{ $self->{ 'items' } } ) |
|
126
|
|
|
|
|
307
|
|
|
44
|
|
|
|
|
94
|
|
63
|
|
|
|
|
|
|
); |
64
|
|
|
|
|
|
|
} |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
sub pretty_print { |
67
|
2
|
|
|
2
|
1
|
3
|
my $self = shift; |
68
|
2
|
|
|
|
|
5
|
my $values_as_string = $self->as_text; |
69
|
2
|
|
|
|
|
5
|
my $inline = 1; |
70
|
2
|
50
|
|
|
|
6
|
$inline = 0 if $values_as_string =~ m{\n}; |
71
|
2
|
100
|
|
|
|
6
|
$inline = 0 if length( $values_as_string ) > 40; |
72
|
|
|
|
|
|
|
|
73
|
2
|
100
|
|
|
|
10
|
return $values_as_string if $inline; |
74
|
1
|
|
|
|
|
2
|
my @lines = (); |
75
|
1
|
|
|
|
|
3
|
push @lines, '('; |
76
|
1
|
|
|
|
|
2
|
push @lines, map { $self->increase_indent( $_->pretty_print ) . ',' } @{ $self->{ 'items' } }; |
|
6
|
|
|
|
|
18
|
|
|
1
|
|
|
|
|
3
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
# Remove unnecessary trailing , in last element |
79
|
1
|
|
|
|
|
5
|
$lines[ -1 ] =~ s/,\z//; |
80
|
1
|
|
|
|
|
3
|
push @lines, ')'; |
81
|
1
|
|
|
|
|
8
|
return join( "\n", @lines ); |
82
|
|
|
|
|
|
|
} |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
1; |