File Coverage

blib/lib/Pg/SQL/PrettyPrinter/Node/RangeVar.pm
Criterion Covered Total %
statement 55 58 94.8
branch 3 4 75.0
condition n/a
subroutine 16 16 100.0
pod 2 2 100.0
total 76 80 95.0


line stmt bran cond sub pod time code
1             package Pg::SQL::PrettyPrinter::Node::RangeVar;
2              
3             # UTF8 boilerplace, per http://stackoverflow.com/questions/6162484/why-does-modern-perl-avoid-utf-8-by-default/
4 7     7   4213 use v5.26;
  7         27  
5 7     7   41 use strict;
  7         16  
  7         148  
6 7     7   32 use warnings;
  7         17  
  7         214  
7 7     7   51 use warnings qw( FATAL utf8 );
  7         16  
  7         226  
8 7     7   35 use utf8;
  7         17  
  7         38  
9 7     7   208 use open qw( :std :utf8 );
  7         16  
  7         39  
10 7     7   985 use Unicode::Normalize qw( NFC );
  7         17  
  7         474  
11 7     7   58 use Unicode::Collate;
  7         15  
  7         265  
12 7     7   42 use Encode qw( decode );
  7         14  
  7         479  
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 7     7   1503 use autodie;
  7         18  
  7         44  
24 7     7   38647 use Carp qw( carp croak confess cluck );
  7         20  
  7         606  
25 7     7   51 use English qw( -no_match_vars );
  7         21  
  7         48  
26 7     7   2639 use Data::Dumper qw( Dumper );
  7         100  
  7         1562  
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 7     7   93 use parent qw( Pg::SQL::PrettyPrinter::Node );
  7         21  
  7         52  
44              
45             sub new {
46 72     72 1 2287 my $class = shift;
47 72         286 my $self = $class->SUPER::new( @_ );
48 72         151 bless $self, $class;
49              
50 72         337 $self->objectify( [ 'alias', 'colnames' ] );
51              
52 72         211 return $self;
53             }
54              
55             sub as_text {
56 142     142 1 264 my $self = shift;
57 142         442 my @elements = map { $self->quote_ident( $self->{ $_ } ) }
58 142         279 grep { exists $self->{ $_ } } qw{ catalogname schemaname relname };
  426         944  
59 142         357 my $full_name = join( '.', @elements );
60              
61             # Shortcut
62 142         264 my $A = $self->{ 'alias' };
63 142 100       641 return $full_name unless $A;
64              
65 24         66 my $base_with_alias = sprintf( '%s AS %s', $full_name, $self->quote_ident( $A->{ 'aliasname' } ) );
66 24 50       132 return $base_with_alias unless $A->{ 'colnames' };
67              
68 0           return sprintf( '%s ( %s )', $base_with_alias, join( ', ', map { $_->as_ident } @{ $A->{ 'colnames' } } ) );
  0            
  0            
69             }
70              
71             1;