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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
|
package Regexp::Wildcards;
use strict;
use warnings;
use Carp qw<croak>;
use Scalar::Util qw<blessed>;
use Text::Balanced qw<extract_bracketed>;
=head1 NAME
Regexp::Wildcards - Converts wildcard expressions to Perl regular expressions.
=head1 VERSION
Version 1.05
=cut
use vars qw<$VERSION>;
BEGIN {
$VERSION = '1.05';
}
=head1 SYNOPSIS
use Regexp::Wildcards;
my $rw = Regexp::Wildcards->new(type => 'unix');
my $re;
$re = $rw->convert('a{b?,c}*'); # Do it Unix shell style.
$re = $rw->convert('a?,b*', 'win32'); # Do it Windows shell style.
$re = $rw->convert('*{x,y}?', 'jokers'); # Process the jokers and
# escape the rest.
$re = $rw->convert('%a_c%', 'sql'); # Turn SQL wildcards into
# regexps.
$rw = Regexp::Wildcards->new(
do => [ qw<jokers brackets> ], # Do jokers and brackets.
capture => [ qw<any greedy> ], # Capture *'s greedily.
);
$rw->do(add => 'groups'); # Don't escape groups.
$rw->capture(rem => [ qw<greedy> ]); # Actually we want non-greedy
# matches.
$re = $rw->convert('*a{,(b)?}?c*'); # '(.*?)a(?:|(b).).c(.*?)'
$rw->capture(); # No more captures.
=head1 DESCRIPTION
In many situations, users may want to specify patterns to match but don't need the full power of regexps.
Wildcards make one of those sets of simplified rules.
This module converts wildcard expressions to Perl regular expressions, so that you can use them for matching.
It handles the C<*> and C<?> wildcards, as well as Unix bracketed alternatives C<{,}>, but also C<%> and C<_> SQL wildcards.
If required, it can also keep original C<(...)> groups or C<^> and C<$> anchors.
Backslash (C<\>) is used as an escape character.
Typesets that mimic the behaviour of Windows and Unix shells are also provided.
=head1 METHODS
=cut
sub _check_self {
croak 'First argument isn\'t a valid ' . __PACKAGE__ . ' object'
unless blessed $_[0] and $_[0]->isa(__PACKAGE__);
}
my %types = (
jokers => [ qw<jokers> ],
sql => [ qw<sql> ],
commas => [ qw<commas> ],
brackets => [ qw<brackets> ],
unix => [ qw<jokers brackets> ],
win32 => [ qw<jokers commas> ],
);
$types{$_} = $types{win32} for qw<dos os2 MSWin32 cygwin>;
$types{$_} = $types{unix} for qw<linux
darwin machten next
aix irix hpux dgux dynixptx
bsdos freebsd openbsd
svr4 solaris sunos dec_osf
sco_sv unicos unicosmk>;
my %escapes = (
jokers => '?*',
sql => '_%',
commas => ',',
brackets => '{},',
groups => '()',
anchors => '^$',
);
my %captures = (
single => sub { $_[1] ? '(.)' : '.' },
any => sub { $_[1] ? ($_[0]->{greedy} ? '(.*)'
: '(.*?)')
: '.*' },
brackets => sub { $_[1] ? '(' : '(?:'; },
greedy => undef,
);
sub _validate {
my $self = shift;
_check_self $self;
my $valid = shift;
my $old = shift;
$old = { } unless defined $old;
my %opts;
if (@_ <= 1) {
$opts{set} = defined $_[0] ? $_[0] : { };
} elsif (@_ % 2) {
croak 'Arguments must be passed as an unique scalar or as key => value pairs';
} else {
%opts = @_;
}
my %checked;
for (qw<set add rem>) {
my $opt = $opts{$_};
next unless defined $opt;
my $cb = {
'' => sub { +{ ($_[0] => 1) x (exists $valid->{$_[0]}) } },
'ARRAY' => sub { +{ map { ($_ => 1) x (exists $valid->{$_}) } @{$_[0]} } },
'HASH' => sub { +{ map { ($_ => $_[0]->{$_}) x (exists $valid->{$_}) }
keys %{$_[0]} } }
}->{ ref $opt };
croak 'Wrong option set' unless $cb;
$checked{$_} = $cb->($opt);
}
my $config = (exists $checked{set}) ? $checked{set} : $old;
$config->{$_} = $checked{add}->{$_} for grep $checked{add}->{$_},
keys %{$checked{add} || {}};
delete $config->{$_} for grep $checked{rem}->{$_},
keys %{$checked{rem} || {}};
$config;
}
sub _do {
my $self = shift;
my $config;
$config->{do} = $self->_validate(\%escapes, $self->{do}, @_);
$config->{escape} = '';
$config->{escape} .= $escapes{$_} for keys %{$config->{do}};
$config->{escape} = quotemeta $config->{escape};
$config;
}
sub do {
my $self = shift;
_check_self $self;
my $config = $self->_do(@_);
$self->{$_} = $config->{$_} for keys %$config;
$self;
}
sub _capture {
my $self = shift;
my $config;
$config->{capture} = $self->_validate(\%captures, $self->{capture}, @_);
$config->{greedy} = delete $config->{capture}->{greedy};
for (keys %captures) {
$config->{'c_' . $_} = $captures{$_}->($config, $config->{capture}->{$_})
if $captures{$_}; # Skip 'greedy'
}
$config;
}
sub capture {
my $self = shift;
_check_self $self;
my $config = $self->_capture(@_);
$self->{$_} = $config->{$_} for keys %$config;
$self;
}
sub _type {
my ($self, $type) = @_;
$type = 'unix' unless defined $type;
croak 'Wrong type' unless exists $types{$type};
my $config = $self->_do($types{$type});
$config->{type} = $type;
$config;
}
sub type {
my $self = shift;
_check_self $self;
my $config = $self->_type(@_);
$self->{$_} = $config->{$_} for keys %$config;
$self;
}
sub new {
my $class = shift;
$class = blessed($class) || $class || __PACKAGE__;
croak 'Optional arguments must be passed as key => value pairs' if @_ % 2;
my %args = @_;
my $self = bless { }, $class;
if (defined $args{do}) {
$self->do($args{do});
} else {
$self->type($args{type});
}
$self->capture($args{capture});
}
=head2 C<new>
my $rw = Regexp::Wildcards->new(do => $what, capture => $capture);
my $rw = Regexp::Wildcards->new(type => $type, capture => $capture);
Constructs a new L<Regexp::Wildcard> object.
C<do> lists all features that should be enabled when converting wildcards to regexps.
Refer to L</do> for details on what can be passed in C<$what>.
The C<type> specifies a predefined set of C<do> features to use.
See L</type> for details on which types are valid.
The C<do> option overrides C<type>.
C<capture> lists which atoms should be capturing.
Refer to L</capture> for more details.
=head2 C<do>
$rw->do($what);
$rw->do(set => $c1);
$rw->do(add => $c2);
$rw->do(rem => $c3);
Specifies the list of metacharacters to convert or to prevent for escaping.
They fit into six classes :
=over 4
=item *
C<'jokers'>
Converts C<?> to C<.> and C<*> to C<.*>.
'a**\\*b??\\?c' ==> 'a.*\\*b..\\?c'
=item *
C<'sql'>
Converts C<_> to C<.> and C<%> to C<.*>.
'a%%\\%b__\\_c' ==> 'a.*\\%b..\\_c'
=item *
C<'commas'>
Converts all C<,> to C<|> and puts the complete resulting regular expression inside C<(?: ... )>.
'a,b{c,d},e' ==> '(?:a|b\\{c|d\\}|e)'
=item *
C<'brackets'>
Converts all matching C<{ ... , ... }> brackets to C<(?: ... | ... )> alternations.
If some brackets are unbalanced, it tries to substitute as many of them as possible, and then escape the remaining unmatched C<{> and C<}>.
Commas outside of any bracket-delimited block are also escaped.
'a,b{c,d},e' ==> 'a\\,b(?:c|d)\\,e'
'{a\\{b,c}d,e}' ==> '(?:a\\{b|c)d\\,e\\}'
'{a{b,c\\}d,e}' ==> '\\{a\\{b\\,c\\}d\\,e\\}'
=item *
C<'groups'>
Keeps the parenthesis C<( ... )> of the original string without escaping them.
Currently, no check is done to ensure that the parenthesis are matching.
'a(b(c))d\\(\\)' ==> (no change)
=item *
C<'anchors'>
Prevents the I<beginning-of-line> C<^> and I<end-of-line> C<$> anchors to be escaped.
Since C<[...]> character class are currently escaped, a C<^> will always be interpreted as I<beginning-of-line>.
'a^b$c' ==> (no change)
=back
Each C<$c> can be any of :
=over 4
=item *
A hash reference, with wanted metacharacter group names (described above) as keys and booleans as values ;
=item *
An array reference containing the list of wanted metacharacter classes ;
=item *
A plain scalar, when only one group is required.
=back
When C<set> is present, the classes given as its value replace the current object options.
Then the C<add> classes are added, and the C<rem> classes removed.
Passing a sole scalar C<$what> is equivalent as passing C<< set => $what >>.
No argument means C<< set => [ ] >>.
$rw->do(set => 'jokers'); # Only translate jokers.
$rw->do('jokers'); # Same.
$rw->do(add => [ qw<sql commas> ]); # Translate also SQL and commas.
$rw->do(rem => 'jokers'); # Specifying both 'sql' and
# 'jokers' is useless.
$rw->do(); # Translate nothing.
The C<do> method returns the L<Regexp::Wildcards> object.
=head2 C<type>
$rw->type($type);
Notifies to convert the metacharacters that corresponds to the predefined type C<$type>.
C<$type> can be any of :
=over 4
=item *
C<'jokers'>, C<'sql'>, C<'commas'>, C<'brackets'>
Singleton types that enable the corresponding C<do> classes.
=item *
C<'unix'>
Covers typical Unix shell globbing features (effectively C<'jokers'> and C<'brackets'>).
=item *
C<$^O> values for common Unix systems
Wrap to C<'unix'> (see L<perlport> for the list).
=item *
C<undef>
Defaults to C<'unix'>.
=item *
C<'win32'>
Covers typical Windows shell globbing features (effectively C<'jokers'> and C<'commas'>).
=item *
C<'dos'>, C<'os2'>, C<'MSWin32'>, C<'cygwin'>
Wrap to C<'win32'>.
=back
In particular, you can usually pass C<$^O> as the C<$type> and get the corresponding shell behaviour.
$rw->type('win32'); # Set type to win32.
$rw->type($^O); # Set type to unix on Unices and win32 on Windows
$rw->type(); # Set type to unix.
The C<type> method returns the L<Regexp::Wildcards> object.
=head2 C<capture>
$rw->capture($captures);
$rw->capture(set => $c1);
$rw->capture(add => $c2);
$rw->capture(rem => $c3);
Specifies the list of atoms to capture.
This method works like L</do>, except that the classes are different :
=over 4
=item *
C<'single'>
Captures all unescaped I<"exactly one"> metacharacters, i.e. C<?> for wildcards or C<_> for SQL.
'a???b\\??' ==> 'a(.)(.)(.)b\\?(.)'
'a___b\\__' ==> 'a(.)(.)(.)b\\_(.)'
=item *
C<'any'>
Captures all unescaped I<"any"> metacharacters, i.e. C<*> for wildcards or C<%> for SQL.
'a***b\\**' ==> 'a(.*)b\\*(.*)'
'a%%%b\\%%' ==> 'a(.*)b\\%(.*)'
=item *
C<'greedy'>
When used in conjunction with C<'any'>, it makes the C<'any'> captures greedy (by default they are not).
'a***b\\**' ==> 'a(.*?)b\\*(.*?)'
'a%%%b\\%%' ==> 'a(.*?)b\\%(.*?)'
=item *
C<'brackets'>
Capture matching C<{ ... , ... }> alternations.
'a{b\\},\\{c}' ==> 'a(b\\}|\\{c)'
=back
$rw->capture(set => 'single'); # Only capture "exactly one"
# metacharacters.
$rw->capture('single'); # Same.
$rw->capture(add => [ qw<any greedy> ]); # Also greedily capture
# "any" metacharacters.
$rw->capture(rem => 'greedy'); # No more greed please.
$rw->capture(); # Capture nothing.
The C<capture> method returns the L<Regexp::Wildcards> object.
=head2 C<convert>
my $rx = $rw->convert($wc);
my $rx = $rw->convert($wc, $type);
Converts the wildcard expression C<$wc> into a regular expression according to the options stored into the L<Regexp::Wildcards> object, or to C<$type> if it's supplied.
It successively escapes all unprotected regexp special characters that doesn't hold any meaning for wildcards, then replace C<'jokers'>, C<'sql'> and C<'commas'> or C<'brackets'> (depending on the L</do> or L</type> options), all of this by applying the C<'capture'> rules specified in the constructor or by L</capture>.
=cut
sub convert {
my ($self, $wc, $type) = @_;
_check_self $self;
my $config = (defined $type) ? $self->_type($type) : $self;
return unless defined $wc;
my $e = $config->{escape};
# Escape :
# - an even number of \ that doesn't protect a regexp/wildcard metachar
# - an odd number of \ that doesn't protect a wildcard metachar
$wc =~ s/
(?<!\\)(
(?:\\\\)*
(?:
[^\w\s\\$e]
|
\\
(?: [^\W$e] | \s | $ )
)
)
/\\$1/gx;
my $do = $config->{do};
$wc = $self->_jokers($wc) if $do->{jokers};
$wc = $self->_sql($wc) if $do->{sql};
if ($do->{brackets}) {
$wc = $self->_bracketed($wc);
} elsif ($do->{commas} and $wc =~ /(?<!\\)(?:\\\\)*,/) {
$wc = $self->{'c_brackets'} . $self->_commas($wc) . ')';
}
$wc
}
=head1 EXPORT
An object module shouldn't export any function, and so does this one.
=head1 DEPENDENCIES
L<Carp> (core module since perl 5), L<Scalar::Util>, L<Text::Balanced> (since 5.7.3).
=head1 CAVEATS
This module does not implement the strange behaviours of Windows shell that result from the special handling of the three last characters (for the file extension).
For example, Windows XP shell matches C<*a> like C<.*a>, C<*a?> like C<.*a.?>, C<*a??> like C<.*a.{0,2}> and so on.
=head1 SEE ALSO
L<Text::Glob>.
=head1 AUTHOR
Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
You can contact me by mail or on C<irc.perl.org> (vincent).
=head1 BUGS
Please report any bugs or feature requests to C<bug-regexp-wildcards at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Regexp-Wildcards>.
I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Regexp::Wildcards
Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Regexp-Wildcards>.
=head1 COPYRIGHT & LICENSE
Copyright 2007,2008,2009,2013 Vincent Pit, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
sub _extract ($) { extract_bracketed $_[0], '{', qr/.*?(?<!\\)(?:\\\\)*(?={)/ }
sub _jokers {
my $self = shift;
local $_ = $_[0];
# substitute ? preceded by an even number of \
my $s = $self->{c_single};
s/(?<!\\)((?:\\\\)*)\?/$1$s/g;
# substitute * preceded by an even number of \
$s = $self->{c_any};
s/(?<!\\)((?:\\\\)*)\*+/$1$s/g;
$_
}
sub _sql {
my $self = shift;
local $_ = $_[0];
# substitute _ preceded by an even number of \
my $s = $self->{c_single};
s/(?<!\\)((?:\\\\)*)_/$1$s/g;
# substitute % preceded by an even number of \
$s = $self->{c_any};
s/(?<!\\)((?:\\\\)*)%+/$1$s/g;
$_
}
sub _commas {
local $_ = $_[1];
# substitute , preceded by an even number of \
s/(?<!\\)((?:\\\\)*),/$1|/g;
$_
}
sub _brackets {
my ($self, $rest) = @_;
substr $rest, 0, 1, '';
chop $rest;
my ($re, $bracket, $prefix) = ('');
while (do { ($bracket, $rest, $prefix) = _extract $rest; $bracket }) {
$re .= $self->_commas($prefix) . $self->_brackets($bracket);
}
$re .= $self->_commas($rest);
$self->{c_brackets} . $re . ')';
}
sub _bracketed {
my ($self, $rest) = @_;
my ($re, $bracket, $prefix) = ('');
while (do { ($bracket, $rest, $prefix) = _extract $rest; $bracket }) {
$re .= $prefix . $self->_brackets($bracket);
}
$re .= $rest;
$re =~ s/(?<!\\)((?:\\\\)*[\{\},])/\\$1/g;
$re;
}
1; # End of Regexp::Wildcards
|