File Coverage

blib/lib/PPI/Token/Attribute.pm
Criterion Covered Total %
statement 36 37 97.3
branch 16 16 100.0
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 60 61 98.3


line stmt bran cond sub pod time code
1             package PPI::Token::Attribute;
2              
3             =pod
4              
5             =head1 NAME
6              
7             PPI::Token::Attribute - A token for a subroutine attribute
8              
9             =head1 INHERITANCE
10              
11             PPI::Token::Attribute
12             isa PPI::Token
13             isa PPI::Element
14              
15             =head1 DESCRIPTION
16              
17             In Perl, attributes are a relatively recent addition to the language.
18              
19             Given the code C< sub foo : bar(something) {} >, the C
20             part is the attribute.
21              
22             A C token represents the entire of the attribute,
23             as the braces and its contents are not parsed into the tree, and are
24             treated by Perl (and thus by us) as a single string.
25              
26             =head1 METHODS
27              
28             This class provides some additional methods beyond those provided by its
29             L and L parent classes.
30              
31             =cut
32              
33 69     69   348 use strict;
  69         98  
  69         1751  
34 69     69   256 use PPI::Token ();
  69         85  
  69         30957  
35              
36             our $VERSION = '1.290';
37              
38             our @ISA = "PPI::Token";
39              
40              
41              
42              
43             #####################################################################
44             # PPI::Token::Attribute Methods
45              
46             =pod
47              
48             =head2 identifier
49              
50             The C attribute returns the identifier part of the attribute.
51              
52             That is, for the attribute C, the C method would
53             return C<"foo">.
54              
55             =cut
56              
57             sub identifier {
58 684     684 1 275091 my $self = shift;
59 684 100       4195 $self->{content} =~ /^(.+?)\(/ ? $1 : $self->{content};
60             }
61              
62             =pod
63              
64             =head2 parameters
65              
66             The C method returns the parameter string for the attribute.
67              
68             That is, for the attribute C, the C method would
69             return C<"bar">.
70              
71             Returns the parameters as a string (including the null string C<''> for
72             the case of an attribute such as C.)
73              
74             Returns C if the attribute does not have parameters.
75              
76             =cut
77              
78             sub parameters {
79 684     684 1 1047 my $self = shift;
80 684 100       4867 $self->{content} =~ /\((.*)\)$/ ? $1 : undef;
81             }
82              
83              
84              
85              
86              
87             #####################################################################
88             # Tokenizer Methods
89              
90             sub __TOKENIZER__on_char {
91 1065     1065   1276 my $class = shift;
92 1065         1166 my $t = shift;
93 1065         1644 my $char = substr( $t->{line}, $t->{line_cursor}, 1 );
94              
95             # Unless this is a '(', we are finished.
96 1065 100       1795 unless ( $char eq '(' ) {
97             # Finalise and recheck
98 592         872 return $t->_finalize_token->__TOKENIZER__on_char( $t );
99             }
100              
101             # This is a bar(...) style attribute.
102             # We are currently on the ( so scan in until the end.
103             # We finish on the character AFTER our end
104 473         960 my $string = $class->__TOKENIZER__scan_for_end( $t );
105 473 100       761 if ( ref $string ) {
106             # EOF
107 24         76 $t->{token}->{content} .= $$string;
108 24         50 $t->_finalize_token;
109 24         66 return 0;
110             }
111              
112             # Found the end of the attribute
113 449         988 $t->{token}->{content} .= $string;
114 449         736 $t->_finalize_token->__TOKENIZER__on_char( $t );
115             }
116              
117             # Scan for a close braced, and take into account both escaping,
118             # and open close bracket pairs in the string. When complete, the
119             # method leaves the line cursor on the LAST character found.
120             sub __TOKENIZER__scan_for_end {
121 473     473   551 my $t = $_[1];
122              
123             # Loop as long as we can get new lines
124 473         586 my $string = '';
125 473         502 my $depth = 0;
126 473         876 while ( exists $t->{line} ) {
127             # Get the search area
128 1285         1867 pos $t->{line} = $t->{line_cursor};
129              
130             # Look for a match
131 1285 100       3444 unless ( $t->{line} =~ /\G((?:\\.|[^()])*?[()])/gc ) {
132             # Load in the next line and push to first character
133 65         145 $string .= substr( $t->{line}, $t->{line_cursor} );
134 65 100       119 $t->_fill_line(1) or return \$string;
135 41         61 $t->{line_cursor} = 0;
136 41         66 next;
137             }
138              
139             # Add to the string
140 1220         1913 $string .= $1;
141 1220         1519 $t->{line_cursor} += length $1;
142              
143             # Alter the depth and continue if we aren't at the end
144 1220 100       3277 $depth += ($1 =~ /\($/) ? 1 : -1 and next;
    100          
145              
146             # Found the end
147 449         868 return $string;
148             }
149              
150             # Returning the string as a reference indicates EOF
151 0           \$string;
152             }
153              
154             1;
155              
156             =pod
157              
158             =head1 SUPPORT
159              
160             See the L in the main module.
161              
162             =head1 AUTHOR
163              
164             Adam Kennedy Eadamk@cpan.orgE
165              
166             =head1 COPYRIGHT
167              
168             Copyright 2001 - 2011 Adam Kennedy.
169              
170             This program is free software; you can redistribute
171             it and/or modify it under the same terms as Perl itself.
172              
173             The full text of the license can be found in the
174             LICENSE file included with this module.
175              
176             =cut