/usr/share/perl5/Path/Dispatcher.pm is in libpath-dispatcher-perl 1.05-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 | package Path::Dispatcher;
use Any::Moose;
use 5.008001;
our $VERSION = '1.05';
use Path::Dispatcher::Rule;
use Path::Dispatcher::Dispatch;
use Path::Dispatcher::Path;
use constant dispatch_class => 'Path::Dispatcher::Dispatch';
use constant path_class => 'Path::Dispatcher::Path';
with 'Path::Dispatcher::Role::Rules';
sub dispatch {
my $self = shift;
my $path = $self->_autobox_path(shift);
my $dispatch = $self->dispatch_class->new;
for my $rule ($self->rules) {
$self->_dispatch_rule(
rule => $rule,
dispatch => $dispatch,
path => $path,
);
}
return $dispatch;
}
sub _dispatch_rule {
my $self = shift;
my %args = @_;
my @matches = $args{rule}->match($args{path});
$args{dispatch}->add_matches(@matches);
return @matches;
}
sub run {
my $self = shift;
my $path = shift;
my $dispatch = $self->dispatch($path);
return $dispatch->run(@_);
}
sub complete {
my $self = shift;
my $path = $self->_autobox_path(shift);
my %seen;
return grep { !$seen{$_}++ } map { $_->complete($path) } $self->rules;
}
sub _autobox_path {
my $self = shift;
my $path = shift;
unless (blessed($path) && $path->isa('Path::Dispatcher::Path')) {
$path = $self->path_class->new(
path => $path,
);
}
return $path;
}
__PACKAGE__->meta->make_immutable;
no Any::Moose;
1;
__END__
=head1 NAME
Path::Dispatcher - flexible and extensible dispatch
=head1 SYNOPSIS
use Path::Dispatcher;
my $dispatcher = Path::Dispatcher->new;
$dispatcher->add_rule(
Path::Dispatcher::Rule::Regex->new(
regex => qr{^/(foo)/},
block => sub { warn shift->pos(1); },
)
);
$dispatcher->add_rule(
Path::Dispatcher::Rule::Tokens->new(
tokens => ['ticket', 'delete', qr/^\d+$/],
delimiter => '/',
block => sub { delete_ticket(shift->pos(3)) },
)
);
my $dispatch = $dispatcher->dispatch("/foo/bar");
die "404" unless $dispatch->has_matches;
$dispatch->run;
=head1 DESCRIPTION
We really like L<Jifty::Dispatcher> and wanted to use it for L<Prophet>'s
command line.
The basic operation is that of dispatch. Dispatch takes a path and a list of
rules, and it returns a list of matches. From there you can "run" the rules
that matched. These phases are distinct so that, if you need to, you can
inspect which rules were matched without ever running their codeblocks.
Tab completion support is also available (see in particular
L<Path::Dispatcher::Cookbook/How can I configure tab completion for shells?>)
for the dispatchers you write.
Each rule may take a variety of different forms (which I think justifies the
"flexible" adjective in the module's description). Some of the rule types are:
=over 4
=item L<Path::Dispatcher::Rule::Regex>
Matches the path against a regular expression.
=item L<Path::Dispatcher::Rule::Enum>
Match one of a set of strings.
=item L<Path::Dispatcher::Rule::CodeRef>
Execute a coderef to determine whether the path matches the rule. So you can
do anything you like. Though writing a domain-specific rule (see below) will
enable better introspection and encoding intent.
=item L<Path::Dispatcher::Rule::Dispatch>
Use another L<Path::Dispatcher> to match the path. This facilitates both
extending dispatchers (a bit like subclassing) and delegating to plugins.
=back
Since L<Path::Dispatcher> is designed with good object-oriented programming
practices, you can also write your own domain-specific rule classes (which
earns it the "extensible" adjective). For example, in L<Prophet>, we have a
custom rule for matching, and tab completing, record IDs.
You may want to use L<Path::Dispatcher::Declarative> which gives you some sugar
inspired by L<Jifty::Dispatcher>.
=head1 ATTRIBUTES
=head2 rules
A list of L<Path::Dispatcher::Rule> objects.
=head1 METHODS
=head2 add_rule
Adds a L<Path::Dispatcher::Rule> to the end of this dispatcher's rule set.
=head2 dispatch path -> dispatch
Takes a string (the path) and returns a L<Path::Dispatcher::Dispatch> object
representing a list of matches (L<Path::Dispatcher::Match> objects).
=head2 run path, args
Dispatches on the path and then invokes the C<run> method on the
L<Path::Dispatcher::Dispatch> object, for when you don't need to inspect the
dispatch.
The args are passed down directly into each rule codeblock. No other args are
given to the codeblock.
=head2 complete path -> strings
Given a path, consult each rule for possible completions for the path. This is
intended for tab completion. You can use it with L<Term::ReadLine> like so:
$term->Attribs->{completion_function} = sub {
my ($last_word, $line, $start) = @_;
my @matches = map { s/^.* //; $_ } $dispatcher->complete($line);
return @matches;
};
This API is experimental and subject to change. In particular I think I want to
return an object that resembles L<Path::Dispatcher::Dispatch>.
=head1 AUTHOR
Shawn M Moore, C<< <sartak at bestpractical.com> >>
=head1 SEE ALSO
=over 4
=item L<http://sartak.org/talks/yapc-na-2010/path-dispatcher/>
=item L<http://sartak.org/talks/yapc-asia-2010/evolution-of-path-dispatcher/>
=item L<http://github.com/miyagawa/plack-dispatching-samples>
=item L<Jifty::Dispatcher>
=item L<Catalyst::Dispatcher>
=item L<Mojolicious::Dispatcher>
=item L<Path::Router>
=item L<Router::Simple>
=item L<http://github.com/bestpractical/path-dispatcher-debugger> - Not quite ready for release
=back
=head1 COPYRIGHT & LICENSE
Copyright 2008-2011 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|