package PPI::Token::HereDoc; =pod =head1 NAME PPI::Token::HereDoc - Token class for the here-doc =head1 INHERITANCE PPI::Token::HereDoc isa PPI::Token isa PPI::Element =head1 DESCRIPTION Here-docs are incredibly handy when writing Perl, but incredibly tricky when parsing it, primarily because they don't follow the general flow of input. They jump ahead and nab lines directly off the input buffer. Whitespace and newlines may not matter in most Perl code, but they matter in here-docs. They are also tricky to store as an object. They look sort of like an operator and a string, but they don't act like it. And they have a second section that should be something like a separate token, but isn't because a string can span from above the here-doc content to below it. So when parsing, this is what we do. Firstly, the PPI::Token::HereDoc object, does not represent the C<<< << >>> operator, or the "END_FLAG", or the content, or even the terminator. It represents all of them at once. The token itself has only the declaration part as its "content". # This is what the content of a HereDoc token is < method on a HereDoc token, you get '<< "FOO"'. As for the content and the terminator, when treated purely in "content" terms they do not exist. The content is made available with the C method, and the name of the terminator with the C method. To make things work in the way you expect, PPI has to play some games when doing line/column location calculation for tokens, and also during the content parsing and generation processes. Documents cannot simply by recreated by stitching together the token contents, and involve a somewhat more expensive procedure, but the extra expense should be relatively negligible unless you are doing huge quantities of them. Please note that due to the immature nature of PPI in general, we expect C to be a rich (bad) source of corner-case bugs for quite a while, but for the most part they should more or less DWYM. =head2 Comparison to other string types Although technically it can be considered a quote, for the time being C are being treated as a completely separate C subclass, and will not be found in a search for L or L. This may change in the future, with it most likely to end up under QuoteLike. =head1 METHODS Although it has the standard set of C methods, C objects have a relatively large number of unique methods all of their own. =cut use strict; use PPI::Token (); use vars qw{$VERSION @ISA}; BEGIN { $VERSION = '1.236'; @ISA = 'PPI::Token'; } ##################################################################### # PPI::Token::HereDoc Methods =pod =head2 heredoc The C method is the authoritative method for accessing the contents of the C object. It returns the contents of the here-doc as a list of newline-terminated strings. If called in scalar context, it returns the number of lines in the here-doc, B the terminator line. =cut sub heredoc { wantarray ? @{shift->{_heredoc}} : scalar @{shift->{_heredoc}}; } =pod =head2 terminator The C method returns the name of the terminating string for the here-doc. Returns the terminating string as an unescaped string (in the rare case the terminator has an escaped quote in it). =cut sub terminator { shift->{_terminator}; } ##################################################################### # Tokenizer Methods # Parse in the entire here-doc in one call sub __TOKENIZER__on_char { my $t = $_[1]; # We are currently located on the first char after the << # Handle the most common form first for simplicity and speed reasons ### FIXME - This regex, and this method in general, do not yet allow ### for the null here-doc, which terminates at the first ### empty line. pos $t->{line} = $t->{line_cursor}; if ( $t->{line} !~ m/\G( \s* (?: "[^"]*" | '[^']*' | `[^`]*` | \\?\w+ ) )/gcx ) { # Degenerate to a left-shift operation $t->{token}->set_class('Operator'); return $t->_finalize_token->__TOKENIZER__on_char( $t ); } # Add the rest of the token, work out what type it is, # and suck in the content until the end. my $token = $t->{token}; $token->{content} .= $1; $t->{line_cursor} += length $1; # Find the terminator, clean it up and determine # the type of here-doc we are dealing with. my $content = $token->{content}; if ( $content =~ /^\<\<(\w+)$/ ) { # Bareword $token->{_mode} = 'interpolate'; $token->{_terminator} = $1; } elsif ( $content =~ /^\<\<\s*\'(.*)\'$/ ) { # ''-quoted literal $token->{_mode} = 'literal'; $token->{_terminator} = $1; $token->{_terminator} =~ s/\\'/'/g; } elsif ( $content =~ /^\<\<\s*\"(.*)\"$/ ) { # ""-quoted literal $token->{_mode} = 'interpolate'; $token->{_terminator} = $1; $token->{_terminator} =~ s/\\"/"/g; } elsif ( $content =~ /^\<\<\s*\`(.*)\`$/ ) { # ``-quoted command $token->{_mode} = 'command'; $token->{_terminator} = $1; $token->{_terminator} =~ s/\\`/`/g; } elsif ( $content =~ /^\<\<\\(\w+)$/ ) { # Legacy forward-slashed bareword $token->{_mode} = 'literal'; $token->{_terminator} = $1; } else { # WTF? return undef; } # Suck in the HEREDOC $token->{_heredoc} = \my @heredoc; my $terminator = $token->{_terminator} . "\n"; while ( defined( my $line = $t->_get_line ) ) { if ( $line eq $terminator ) { # Keep the actual termination line for consistency # when we are re-assembling the file $token->{_terminator_line} = $line; # The HereDoc is now fully parsed return $t->_finalize_token->__TOKENIZER__on_char( $t ); } # Add the line push @heredoc, $line; } # End of file. # Error: Didn't reach end of here-doc before end of file. # If the here-doc block is not empty, look at the last line to determine if # the here-doc terminator is missing a newline (which Perl would fail to # compile but is easy to detect) or if the here-doc block was just not # terminated at all (which Perl would fail to compile as well). $token->{_terminator_line} = undef; if ( @heredoc and defined $heredoc[-1] ) { # See PPI::Tokenizer, the algorithm there adds a space at the end of the # document that we need to make sure we remove. if ( $t->{source_eof_chop} ) { chop $heredoc[-1]; $t->{source_eof_chop} = ''; } # Check if the last line of the file matches the terminator without # newline at the end. If so, remove it from the content and set it as # the terminator line. $token->{_terminator_line} = pop @heredoc if $heredoc[-1] eq $token->{_terminator}; } # Set a hint for PPI::Document->serialize so it can # inexpensively repair it if needed when writing back out. $token->{_damaged} = 1; # The HereDoc is not fully parsed $t->_finalize_token->__TOKENIZER__on_char( $t ); } 1; =pod =head1 TO DO - Implement PPI::Token::Quote interface compatibility - Check CPAN for any use of the null here-doc or here-doc-in-s///e - Add support for the null here-doc - Add support for here-doc in s///e =head1 SUPPORT See the L in the main module. =head1 AUTHOR Adam Kennedy Eadamk@cpan.orgE =head1 COPYRIGHT Copyright 2001 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =cut