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 8     8   8175 use v5.26;
  8         29  
5 8     8   39 use strict;
  8         14  
  8         193  
6 8     8   31 use warnings;
  8         14  
  8         481  
7 8     8   32 use warnings qw( FATAL utf8 );
  8         13  
  8         404  
8 8     8   40 use utf8;
  8         15  
  8         50  
9 8     8   279 use open qw( :std :utf8 );
  8         16  
  8         48  
10 8     8   1068 use Unicode::Normalize qw( NFC );
  8         13  
  8         405  
11 8     8   36 use Unicode::Collate;
  8         16  
  8         212  
12 8     8   30 use Encode qw( decode );
  8         16  
  8         1102  
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 8     8   42 use autodie;
  8         12  
  8         59  
24 8     8   34422 use Carp qw( carp croak confess cluck );
  8         15  
  8         656  
25 8     8   48 use English qw( -no_match_vars );
  8         12  
  8         59  
26 8     8   2958 use Data::Dumper qw( Dumper );
  8         13  
  8         1704  
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 8     8   48 use parent qw( Pg::SQL::PrettyPrinter::Node );
  8         15  
  8         55  
44              
45             sub new {
46 75     75 1 1787 my $class = shift;
47 75         260 my $self = $class->SUPER::new( @_ );
48 75         129 bless $self, $class;
49              
50 75         285 $self->objectify( [ 'alias', 'colnames' ] );
51              
52 75         170 return $self;
53             }
54              
55             sub as_text {
56 148     148 1 210 my $self = shift;
57 148         378 my @elements = map { $self->quote_ident( $self->{ $_ } ) }
58 148         222 grep { exists $self->{ $_ } } qw{ catalogname schemaname relname };
  444         775  
59 148         275 my $full_name = join( '.', @elements );
60              
61             # Shortcut
62 148         223 my $A = $self->{ 'alias' };
63 148 100       576 return $full_name unless $A;
64              
65 30         57 my $base_with_alias = sprintf( '%s AS %s', $full_name, $self->quote_ident( $A->{ 'aliasname' } ) );
66 30 50       128 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;