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 5     5   5904 use v5.26;
  5         18  
5 5     5   24 use strict;
  5         8  
  5         101  
6 5     5   211 use warnings;
  5         8  
  5         256  
7 5     5   22 use warnings qw( FATAL utf8 );
  5         8  
  5         270  
8 5     5   23 use utf8;
  5         8  
  5         45  
9 5     5   158 use open qw( :std :utf8 );
  5         7  
  5         33  
10 5     5   663 use Unicode::Normalize qw( NFC );
  5         9  
  5         255  
11 5     5   22 use Unicode::Collate;
  5         25  
  5         141  
12 5     5   21 use Encode qw( decode );
  5         6  
  5         644  
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 5     5   26 use autodie;
  5         9  
  5         65  
24 5     5   25004 use Carp qw( carp croak confess cluck );
  5         19  
  5         431  
25 5     5   32 use English qw( -no_match_vars );
  5         8  
  5         40  
26 5     5   2115 use Data::Dumper qw( Dumper );
  5         10  
  5         1189  
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 5     5   37 use parent qw( Pg::SQL::PrettyPrinter::Node );
  5         11  
  5         37  
44              
45             sub new {
46 30     30 1 678 my $class = shift;
47 30         96 my $self = $class->SUPER::new( @_ );
48 30         41 bless $self, $class;
49              
50 30         93 $self->objectify( 'items' );
51              
52             # Remove undefined elements
53 30         46 $self->{ 'items' } = [ grep { defined $_ } @{ $self->{ 'items' } } ];
  76         131  
  30         69  
54              
55 30         67 return $self;
56             }
57              
58             sub as_text {
59 44     44 1 61 my $self = shift;
60             return sprintf(
61             '( %s )',
62 44         62 join( ', ', map { $_->as_text } @{ $self->{ 'items' } } )
  126         258  
  44         80  
63             );
64             }
65              
66             sub pretty_print {
67 2     2 1 4 my $self = shift;
68 2         4 my $values_as_string = $self->as_text;
69 2         3 my $inline = 1;
70 2 50       7 $inline = 0 if $values_as_string =~ m{\n};
71 2 100       18 $inline = 0 if length( $values_as_string ) > 40;
72              
73 2 100       8 return $values_as_string if $inline;
74 1         3 my @lines = ();
75 1         3 push @lines, '(';
76 1         2 push @lines, map { $self->increase_indent( $_->pretty_print ) . ',' } @{ $self->{ 'items' } };
  6         13  
  1         3  
77              
78             # Remove unnecessary trailing , in last element
79 1         4 $lines[ -1 ] =~ s/,\z//;
80 1         2 push @lines, ')';
81 1         8 return join( "\n", @lines );
82             }
83              
84             1;