File Coverage

blib/lib/Pg/SQL/PrettyPrinter/Node/List.pm
Criterion Covered Total %
statement 67 67 100.0
branch 5 6 83.3
condition n/a
subroutine 17 17 100.0
pod 3 3 100.0
total 92 93 98.9


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   2570 use v5.26;
  4         20  
5 4     4   22 use strict;
  4         7  
  4         98  
6 4     4   21 use warnings;
  4         10  
  4         131  
7 4     4   26 use warnings qw( FATAL utf8 );
  4         9  
  4         159  
8 4     4   26 use utf8;
  4         8  
  4         23  
9 4     4   142 use open qw( :std :utf8 );
  4         8  
  4         23  
10 4     4   566 use Unicode::Normalize qw( NFC );
  4         20  
  4         238  
11 4     4   29 use Unicode::Collate;
  4         8  
  4         149  
12 4     4   29 use Encode qw( decode );
  4         10  
  4         263  
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   930 use autodie;
  4         9  
  4         25  
24 4     4   24331 use Carp qw( carp croak confess cluck );
  4         18  
  4         343  
25 4     4   28 use English qw( -no_match_vars );
  4         10  
  4         24  
26 4     4   1533 use Data::Dumper qw( Dumper );
  4         10  
  4         995  
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         8  
  4         27  
44              
45             sub new {
46 30     30 1 921 my $class = shift;
47 30         120 my $self = $class->SUPER::new( @_ );
48 30         75 bless $self, $class;
49              
50 30         142 $self->objectify( 'items' );
51              
52             # Remove undefined elements
53 30         57 $self->{ 'items' } = [ grep { defined $_ } @{ $self->{ 'items' } } ];
  76         181  
  30         111  
54              
55 30         87 return $self;
56             }
57              
58             sub as_text {
59 44     44 1 78 my $self = shift;
60             return sprintf(
61             '( %s )',
62 44         73 join( ', ', map { $_->as_text } @{ $self->{ 'items' } } )
  126         307  
  44         95  
63             );
64             }
65              
66             sub pretty_print {
67 2     2 1 4 my $self = shift;
68 2         5 my $values_as_string = $self->as_text;
69 2         4 my $inline = 1;
70 2 50       8 $inline = 0 if $values_as_string =~ m{\n};
71 2 100       6 $inline = 0 if length( $values_as_string ) > 40;
72              
73 2 100       11 return $values_as_string if $inline;
74 1         4 my @lines = ();
75 1         2 push @lines, '(';
76 1         3 push @lines, map { $self->increase_indent( $_->pretty_print ) . ',' } @{ $self->{ 'items' } };
  6         17  
  1         3  
77              
78             # Remove unnecessary trailing , in last element
79 1         5 $lines[ -1 ] =~ s/,\z//;
80 1         3 push @lines, ')';
81 1         10 return join( "\n", @lines );
82             }
83              
84             1;