1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
=head1 NAME
PPIx::Regexp::Token::Backreference - Represent a back reference
=head1 SYNOPSIS
use PPIx::Regexp::Dumper;
PPIx::Regexp::Dumper->new( 'qr{(foo|bar)baz\1}smx' )
->print();
=head1 INHERITANCE
C<PPIx::Regexp::Token::Backreference> is a
L<PPIx::Regexp::Token::Reference|PPIx::Regexp::Token::Reference>.
C<PPIx::Regexp::Token::Backreference> has no descendants.
=head1 DESCRIPTION
This class represents back references of all sorts, both the traditional
numbered variety and the Perl 5.010 named kind.
=head1 METHODS
This class provides no public methods beyond those provided by its
superclass.
=cut
package PPIx::Regexp::Token::Backreference;
use strict;
use warnings;
use base qw{ PPIx::Regexp::Token::Reference };
use Carp qw{ confess };
use PPIx::Regexp::Constant qw{
MINIMUM_PERL
RE_CAPTURE_NAME
TOKEN_LITERAL
TOKEN_UNKNOWN
@CARP_NOT
};
use PPIx::Regexp::Util qw{ __to_ordinal_en width };
our $VERSION = '0.087';
# Return true if the token can be quantified, and false otherwise
# sub can_be_quantified { return };
sub explain {
my ( $self ) = @_;
$self->is_named()
and return sprintf q<Back reference to capture group '%s'>,
$self->name();
$self->is_relative()
and return sprintf
q<Back reference to %s previous capture group (%d in this regexp)>,
__to_ordinal_en( - $self->number() ),
$self->absolute();
return sprintf q<Back reference to capture group %d>,
$self->absolute();
}
{
my %perl_version_introduced = (
g => '5.009005', # \g1 \g-1 \g{1} \g{-1}
k => '5.009005', # \k<name> \k'name'
'?' => '5.009005', # (?P=name) (PCRE/Python)
);
sub perl_version_introduced {
my ( $self ) = @_;
return $perl_version_introduced{substr( $self->content(), 1, 1 )} ||
MINIMUM_PERL;
}
}
sub raw_width {
my ( $self ) = @_;
my $re = $self->top()
or return ( undef, undef ); # Shouldn't happen.
my @capture;
if ( $self->is_named() ) {
my $name = $self->name();
foreach my $elem ( @{ $re->find(
'PPIx::Regexp::Structure::NamedCapture' ) || [] } ) {
$elem->name() eq $name
or next;
$re->__token_post_order( $elem, $self ) < 0
or last;
push @capture, $elem;
}
} else {
my $number = $self->absolute();
foreach my $elem ( @{ $re->find(
'PPIx::Regexp::Structure::Capture' ) || [] } ) {
$elem->number() == $number
or next;
$re->__token_post_order( $elem, $self ) < 0
or last;
push @capture, $elem;
}
}
@capture == 1
and return $capture[0]->raw_width();
my ( $base_min, $base_max ) = $capture[0]->raw_width();
foreach my $elem ( @capture[ 1 .. $#capture ] ) {
my ( $ele_min, $ele_max ) = $elem->raw_width();
defined $ele_min
or $base_min = undef;
defined $base_min
and $base_min = $base_min == $ele_min ? $base_min : undef;
defined $ele_max
or $base_max = undef;
defined $base_max
and $base_max = $base_max == $ele_max ? $base_max : undef;
}
return ( $base_min, $base_max );
}
my @external = ( # Recognition used externally
[ qr{ \A \( \? P = ( @{[ RE_CAPTURE_NAME ]} ) \) }smxo,
{ is_named => 1 },
],
);
my @recognize_regexp = ( # recognition used internally
[
qr{ \A \\ (?: # numbered (including relative)
( [0-9]+ ) |
g (?: ( -? [0-9]+ ) | \{ ( -? [0-9]+ ) \} )
)
}smx, { is_named => 0 }, ],
[
qr{ \A \\ (?: # named
g [{] ( @{[ RE_CAPTURE_NAME ]} ) [}] |
k (?: \< ( @{[ RE_CAPTURE_NAME ]} ) \> | # named with angles
' ( @{[ RE_CAPTURE_NAME ]} ) ' ) # or quotes
)
}smxo, { is_named => 1 }, ],
);
my %recognize = (
regexp => \@recognize_regexp,
repl => [
[ qr{ \A \\ ( [0-9]+ ) }smx, { is_named => 0 } ],
],
);
# This must be implemented by tokens which do not recognize themselves.
# The return is a list of list references. Each list reference must
# contain a regular expression that recognizes the token, and optionally
# a reference to a hash to pass to make_token as the class-specific
# arguments. The regular expression MUST be anchored to the beginning of
# the string.
sub __PPIX_TOKEN__recognize {
return __PACKAGE__->isa( scalar caller ) ?
( @external, @recognize_regexp ) :
( @external );
}
sub __PPIX_TOKENIZER__regexp {
my ( undef, $tokenizer, $character ) = @_;
# PCRE/Python back references are handled in
# PPIx::Regexp::Token::Structure, because they are parenthesized.
# All the other styles are escaped.
$character eq '\\'
or return;
foreach ( @{ $recognize{$tokenizer->get_mode()} } ) {
my ( $re, $arg ) = @{ $_ };
my $accept = $tokenizer->find_regexp( $re ) or next;
my %arg = ( %{ $arg }, tokenizer => $tokenizer );
return $tokenizer->make_token( $accept, __PACKAGE__, \%arg );
}
return;
}
sub __PPIX_TOKENIZER__repl {
my ( undef, $tokenizer ) = @_; # Invocant, $character unused
$tokenizer->interpolates()
or return;
goto &__PPIX_TOKENIZER__regexp;
}
# Called by the lexer to disambiguate between captures, literals, and
# whatever. We have to return the number of tokens reblessed to
# TOKEN_UNKNOWN (i.e. either 0 or 1) because we get called after the
# parse is finalized.
sub __PPIX_LEXER__rebless {
my ( $self, %arg ) = @_;
# Handle named back references
if ( $self->is_named() ) {
$arg{capture_name}{$self->name()}
and return 0;
return $self->__error();
}
# Get the absolute capture group number.
my $absolute = $self->absolute();
# If it is zero or negative, we have a relateive reference to a
# non-existent capture group.
$absolute <= 0
and return $self->__error();
# If the absolute number is less than or equal to the maximum
# capture group number, we are good.
$absolute <= $arg{max_capture}
and return 0;
# It's not a valid capture. If it's an octal literal, rebless it so.
# Note that we can't rebless single-digit numbers, since they can't
# be octal literals.
my $content = $self->content();
if ( $content =~ m/ \A \\ [0-7]{2,} \z /smx ) {
TOKEN_LITERAL->__PPIX_ELEM__rebless( $self );
return 0;
}
# Anything else is an error.
return $self->__error();
}
sub __error {
my ( $self, $msg ) = @_;
defined $msg
or $msg = 'No corresponding capture group';
TOKEN_UNKNOWN->__PPIX_ELEM__rebless( $self, error => $msg );
return 1;
}
1;
__END__
=head1 SUPPORT
Support is by the author. Please file bug reports at
L<https://rt.cpan.org/Public/Dist/Display.html?Name=PPIx-Regexp>,
L<https://github.com/trwyant/perl-PPIx-Regexp/issues>, or in
electronic mail to the author.
=head1 AUTHOR
Thomas R. Wyant, III F<wyant at cpan dot org>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2009-2023 by Thomas R. Wyant, III
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl 5.10.0. For more details, see the full text
of the licenses in the directory LICENSES.
This program is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of
merchantability or fitness for a particular purpose.
=cut
# ex: set textwidth=72 :
|