/usr/share/perl5/Path/Router/Route.pm is in libpath-router-perl 0.15-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Path::Router::Route;
our $AUTHORITY = 'cpan:STEVAN';
$Path::Router::Route::VERSION = '0.15';
use B;
use Carp 1.32 qw(cluck);
use Clone::PP 1.04 ();
use Path::Router::Types qw(PathRouterRouteValidationMap);
use Types::Standard 1.000005 -types;
use Moo 2.000001;
use namespace::clean 0.23;
# ABSTRACT: An object to represent a route
has 'path' => (
is => 'ro',
isa => Str,
required => 1
);
has 'defaults' => (
is => 'ro',
isa => HashRef,
default => sub { {} },
predicate => 1,
);
has 'validations' => (
is => 'ro',
isa => PathRouterRouteValidationMap,
coerce => 1,
default => sub { {} },
predicate => 1,
);
has 'components' => (
is => 'ro',
isa => ArrayRef[Str],
lazy => 1,
default => sub { [ grep {defined && length} split '/' => (shift)->path ] }
);
has 'length' => (
is => 'ro',
isa => Int,
lazy => 1,
default => sub { scalar @{(shift)->components} },
);
has 'length_without_optionals' => (
is => 'ro',
isa => Int,
lazy => 1,
default => sub {
scalar grep { ! $_[0]->is_component_optional($_) }
@{ $_[0]->components }
},
);
has 'required_variable_component_names' => (
is => 'ro',
isa => ArrayRef[Str],
lazy => 1,
builder => 1,
);
has 'optional_variable_component_names' => (
is => 'ro',
isa => ArrayRef[Str],
lazy => 1,
builder => 1,
);
has 'target' => (
# let this just get copied, we
# assume cloning of this is not
# what you would want
is => 'ro',
isa => Any,
predicate => 'has_target'
);
sub BUILD {
my $self = shift;
return unless $self->has_validations;
my %components = map { $self->get_component_name($_) => 1 }
grep { $self->is_component_variable($_) }
@{ $self->components };
for my $validation (keys %{ $self->validations }) {
if (!exists $components{$validation}) {
cluck "Validation provided for component :$validation, but the"
. " path " . $self->path . " doesn't contain a variable"
. " component with that name";
}
}
}
sub _build_required_variable_component_names {
my $self = shift;
return [
map { $self->get_component_name($_) }
grep {
$self->is_component_variable($_) &&
! $self->is_component_optional($_)
}
@{ $self->components }
];
}
sub _build_optional_variable_component_names {
my $self = shift;
return [
map { $self->get_component_name($_) }
grep {
$self->is_component_variable($_) &&
$self->is_component_optional($_)
}
@{ $self->components }
];
}
# misc
sub create_default_mapping {
my $self = shift;
+{ %{$self->defaults} }
}
sub has_validation_for {
my ($self, $name) = @_;
$self->validations->{$name};
}
# component checking
sub is_component_optional {
my ($self, $component) = @_;
$component =~ /^\?\:/;
}
sub is_component_variable {
my ($self, $component) = @_;
$component =~ /^\??\:/;
}
sub get_component_name {
my ($self, $component) = @_;
my ($name) = ($component =~ /^\??\:(.*)$/);
return $name;
}
sub match {
my ($self, $parts) = @_;
return unless (
@$parts >= $self->length_without_optionals &&
@$parts <= $self->length
);
my @parts = @$parts; # for shifting
my $mapping = $self->has_defaults ? $self->create_default_mapping : {};
for my $c (@{ $self->components }) {
unless (@parts) {
die "should never get here: " .
"no \@parts left, but more required components remain"
if ! $self->is_component_optional($c);
last;
}
my $part = shift @parts;
if ($self->is_component_variable($c)) {
my $name = $self->get_component_name($c);
if (my $v = $self->has_validation_for($name)) {
return unless $v->check($part);
}
$mapping->{$name} = $part;
} else {
return unless $c eq $part;
}
}
return Path::Router::Route::Match->new(
path => join ('/', @$parts),
route => $self,
mapping => $mapping,
);
}
sub generate_match_code {
my $self = shift;
my $pos = shift;
my @regexp;
my @variables;
foreach my $c (@{$self->components}) {
my $re;
if ($self->is_component_variable($c)) {
$re = "([^\\/]+)";
push @variables, $self->get_component_name($c);
} else {
$re = $c;
$re =~ s/([()])/\\$1/g;
}
$re = "\\/$re";
if ($self->is_component_optional($c)) {
$re = "(?:$re)?";
}
push @regexp, $re;
}
$regexp[0] = '' unless defined $regexp[0];
$regexp[0] =~ s/^\\\///;
my $regexp = '';
while (defined(my $piece = pop @regexp)) {
$regexp = "(?:$piece$regexp)";
}
my @code;
push @code, (
'#line ' . __LINE__ . ' "' . __FILE__ . '"',
'printf STDERR "Attempting to match \"' . $self->path . '\" against \"$path\""',
'if Path::Router::DEBUG();',
'print STDERR " regexp is " . ' . B::perlstring($regexp),
'if Path::Router::DEBUG();',
'print STDERR "\n"',
'if Path::Router::DEBUG();',
'if ($path =~ /^' . $regexp . '$/) {',
'# ' . $self->path,
);
if (@variables) {
push @code, (
'my %captures = (',
);
foreach my $i (0..$#variables) {
my $name = $variables[$i];
$name =~ s/'/\\'/g;
push @code, (
'defined($' . ($i + 1) . ') ? ' .
'(' . B::perlstring($name) . ' => $' . ($i + 1) . ') : (),',
);
}
push @code, (
');',
);
}
push @code, (
'my $route = $routes->[' . $pos . '];',
'my $valid = 1;',
);
if ($self->has_defaults) {
push @code, (
'my $mapping = $route->create_default_mapping;',
);
} else {
push @code, (
'my $mapping = {};',
);
}
if (@variables) {
push @code, (
'my $validations = $route->validations;',
'while (my ($key, $value) = each %captures) {',
'next unless defined $value && length $value;',
);
my $if = "if";
foreach my $v (@variables) {
if ($self->has_validation_for($v)) {
my $vstr = B::perlstring($v);
push @code, (
$if . ' ($key eq ' . $vstr . ') {',
'my $v = $validations->{' . $vstr . '};',
'if (!$v->check($value)) {',
'print STDERR ' . $vstr . ' . " failed validation\n"',
'if Path::Router::DEBUG();',
'$valid = 0;',
'}',
'}',
);
$if = "elsif";
}
}
push @code, (
'$mapping->{$key} = $value;',
'}',
);
}
push @code, (
'if ($valid) {',
'print STDERR "match success\n" if Path::Router::DEBUG();',
'push @matches, bless({',
'path => $path,',
'route => $route,',
'mapping => $mapping,',
'}, "Path::Router::Route::Match")',
'}',
'}',
);
return @code;
}
sub clone {
my $self = shift;
my %new_args = map {$_ => Clone::PP::clone($self->$_)} qw(path target);
if ($self->has_defaults) {
$new_args{defaults} = \%{$self->defaults};
}
if ($self->has_validations) {
$new_args{validations} = \%{$self->validations};
}
return ref($self)->new({ %new_args, @_ });
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Path::Router::Route - An object to represent a route
=head1 VERSION
version 0.15
=head1 DESCRIPTION
This object is created by L<Path::Router> when you call the
C<add_route> method. In general you won't ever create these objects
directly, they will be created for you and you may sometimes
introspect them.
=head1 METHODS
=over 4
=item B<new (path => $path, ?%options)>
=item B<clone>
=item B<path>
=item B<target>
=item B<has_target>
=item B<components>
=item B<length>
=item B<defaults>
=item B<has_defaults>
=item B<validations>
=item B<has_validations>
=item B<has_validation_for>
=back
=over 4
=item B<create_default_mapping>
=item B<match>
=item B<generate_match_code>
=back
=head2 Component checks
=over 4
=item B<get_component_name ($component)>
=item B<is_component_optional ($component)>
=item B<is_component_variable ($component)>
=back
=head2 Length methods
=over 4
=item B<length_without_optionals>
=back
=head2 Introspection
=over 4
=item B<meta>
=back
=head1 BUGS
All complex software has bugs lurking in it, and this module is no
exception. If you find a bug please either email me, or add the bug
to cpan-RT.
=head1 AUTHOR
Stevan Little E<lt>stevan@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright 2008-2011 Infinity Interactive, Inc.
L<http://www.iinteractive.com>
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=for Pod::Coverage BUILD
=head1 AUTHOR
Stevan Little <stevan@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Infinity Interactive.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|