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   4427 use v5.26;
  7         28  
5 7     7   51 use strict;
  7         18  
  7         158  
6 7     7   37 use warnings;
  7         25  
  7         230  
7 7     7   35 use warnings qw( FATAL utf8 );
  7         16  
  7         227  
8 7     7   35 use utf8;
  7         16  
  7         39  
9 7     7   245 use open qw( :std :utf8 );
  7         15  
  7         48  
10 7     7   999 use Unicode::Normalize qw( NFC );
  7         24  
  7         524  
11 7     7   71 use Unicode::Collate;
  7         25  
  7         281  
12 7     7   62 use Encode qw( decode );
  7         21  
  7         451  
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   1562 use autodie;
  7         15  
  7         73  
24 7     7   39915 use Carp qw( carp croak confess cluck );
  7         34  
  7         649  
25 7     7   59 use English qw( -no_match_vars );
  7         19  
  7         48  
26 7     7   2668 use Data::Dumper qw( Dumper );
  7         60  
  7         1614  
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   97 use parent qw( Pg::SQL::PrettyPrinter::Node );
  7         16  
  7         60  
44              
45             sub new {
46 72     72 1 2269 my $class = shift;
47 72         256 my $self = $class->SUPER::new( @_ );
48 72         135 bless $self, $class;
49              
50 72         302 $self->objectify( [ 'alias', 'colnames' ] );
51              
52 72         203 return $self;
53             }
54              
55             sub as_text {
56 142     142 1 240 my $self = shift;
57 142         420 my @elements = map { $self->quote_ident( $self->{ $_ } ) }
58 142         264 grep { exists $self->{ $_ } } qw{ catalogname schemaname relname };
  426         920  
59 142         334 my $full_name = join( '.', @elements );
60              
61             # Shortcut
62 142         249 my $A = $self->{ 'alias' };
63 142 100       599 return $full_name unless $A;
64              
65 24         79 my $base_with_alias = sprintf( '%s AS %s', $full_name, $self->quote_ident( $A->{ 'aliasname' } ) );
66 24 50       134 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;