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
|
package Web::Simple::DispatchParser;
use strict;
use warnings FATAL => 'all';
sub DEBUG () { 0 }
BEGIN {
if ($ENV{WEB_SIMPLE_DISPATCHPARSER_DEBUG}) {
no warnings 'redefine';
*DEBUG = sub () { 1 }
}
}
sub diag { if (DEBUG) { warn $_[0] } }
sub new { bless({}, ref($_[0])||$_[0]) }
sub _blam {
my ($self, $error) = @_;
my $hat = (' ' x (pos||0)).'^';
die "Error parsing dispatch specification: ${error}\n
${_}
${hat} here\n";
}
sub parse_dispatch_specification {
my ($self, $spec) = @_;
return $self->_parse_spec($spec);
}
sub _parse_spec {
my ($self, $spec, $nested) = @_;
for ($_[1]) {
my @match;
/^\G\s*/; # eat leading whitespace
PARSE: { do {
push @match, $self->_parse_spec_section($_)
or $self->_blam("Unable to work out what the next section is");
if (/\G\)/gc) {
$self->_blam("Found closing ) with no opening (") unless $nested;
last PARSE;
}
last PARSE if (pos == length);
$match[-1] = $self->_parse_spec_combinator($_, $match[-1])
or $self->_blam('No valid combinator - expected + or |');
} until (pos == length) }; # accept trailing whitespace
if ($nested and pos == length) {
pos = $nested - 1;
$self->_blam("No closing ) found for opening (");
}
return $match[0] if (@match == 1);
return sub {
my $env = { %{$_[0]} };
my $new_env;
my @got;
foreach my $match (@match) {
if (my @this_got = $match->($env)) {
my %change_env = %{shift(@this_got)};
@{$env}{keys %change_env} = values %change_env;
@{$new_env}{keys %change_env} = values %change_env;
push @got, @this_got;
} else {
return;
}
}
return ($new_env, @got);
};
}
}
sub _parse_spec_combinator {
my ($self, $spec, $match) = @_;
for ($_[1]) {
/\G\+/gc and
return $match;
/\G\|/gc and
return do {
my @match = $match;
PARSE: { do {
push @match, $self->_parse_spec_section($_)
or $self->_blam("Unable to work out what the next section is");
last PARSE if (pos == length);
last PARSE unless /\G\|/gc; # give up when next thing isn't |
} until (pos == length) }; # accept trailing whitespace
return sub {
foreach my $try (@match) {
if (my @ret = $try->(@_)) {
return @ret;
}
}
return;
};
};
}
return;
}
sub _parse_spec_section {
my ($self) = @_;
for ($_[1]) {
# GET POST PUT HEAD ...
/\G([A-Z]+)/gc and
return $self->_http_method_match($_, $1);
# /...
/\G(?=\/)/gc and
return $self->_url_path_match($_);
# .* and .html
/\G\.(\*|\w+)/gc and
return $self->_url_extension_match($_, $1);
# (...)
/\G\(/gc and
return $self->_parse_spec($_, pos);
# !something
/\G!/gc and
return do {
my $match = $self->_parse_spec_section($_);
return sub {
return {} unless $match->(@_);
return;
};
};
# ?<param spec>
/\G\?/gc and
return $self->_parse_param_handler($_, 'query');
# %<param spec>
/\G\%/gc and
return $self->_parse_param_handler($_, 'body');
}
return; # () will trigger the blam in our caller
}
sub _http_method_match {
my ($self, $str, $method) = @_;
sub { shift->{REQUEST_METHOD} eq $method ? {} : () };
}
sub _url_path_match {
my ($self) = @_;
for ($_[1]) {
my @path;
my $full_path = '$';
PATH: while (/\G\//gc) {
/\G\.\.\./gc
and do {
$full_path = '';
last PATH;
};
push @path, $self->_url_path_segment_match($_)
or $self->_blam("Couldn't parse path match segment");
}
my $re = '^()'.join('/','',@path).($full_path ? '$' : '(/.*)$');
$re = qr/$re/;
if ($full_path) {
return sub {
if (my @cap = (shift->{PATH_INFO} =~ /$re/)) {
$cap[0] = {}; return @cap;
}
return ();
};
}
return sub {
if (my @cap = (shift->{PATH_INFO} =~ /$re/)) {
$cap[0] = { PATH_INFO => pop(@cap) }; return @cap;
}
return ();
};
}
return;
}
sub _url_path_segment_match {
my ($self) = @_;
for ($_[1]) {
# trailing / -> require / on end of URL
/\G(?:(?=\s)|$)/gc and
return '$';
# word chars only -> exact path part match
/\G(\w+)/gc and
return "\Q$1";
# ** -> capture unlimited path parts
/\G\*\*/gc and
return '(.*?[^/])';
# * -> capture path part
/\G\*/gc and
return '([^/]+)';
}
return ();
}
sub _url_extension_match {
my ($self, $str, $extension) = @_;
if ($extension eq '*') {
sub {
if ((my $tmp = shift->{PATH_INFO}) =~ s/\.(\w+)$//) {
({ PATH_INFO => $tmp }, $1);
} else {
();
}
};
} else {
sub {
if ((my $tmp = shift->{PATH_INFO}) =~ s/\.\Q${extension}\E$//) {
({ PATH_INFO => $tmp });
} else {
();
}
};
}
}
sub _parse_param_handler {
my ($self, $spec, $type) = @_;
require Web::Simple::ParamParser;
my $unpacker = Web::Simple::ParamParser->can("get_unpacked_${type}_from");
for ($_[1]) {
my (@required, @single, %multi, $star, $multistar, %positional, $have_kw);
my $pos_idx = 0;
PARAM: { do {
# ?:foo or ?@:foo
my $is_kw = /\G\:/gc;
# ?@foo or ?@*
my $multi = /\G\@/gc;
# @* or *
if (/\G\*/gc) {
$self->_blam("* is always named; no need to supply :") if $is_kw;
$multi ? ($multistar = 1) : ($star = 1);
$have_kw = 1;
if ($star && $multistar) {
$self->_blam("Can't use * and \@* in the same parameter match");
}
} else {
# @foo= or foo= or @foo~ or foo~
/\G(\w+)/gc or $self->_blam('Expected parameter name');
my $name = $1;
# check for = or ~ on the end
/\G\=/gc
? push(@required, $name)
: (/\G\~/gc or $self->_blam('Expected = or ~ after parameter name'));
# record the key in the right category depending on the multi (@) flag
$multi ? ($multi{$name} = 1) : (push @single, $name);
# record positional or keyword
$is_kw ? ($have_kw = 1) : ($positional{$name} = $pos_idx++);
}
} while (/\G\&/gc) }
return sub {
my $raw = $unpacker->($_[0]);
foreach my $name (@required) {
return unless exists $raw->{$name};
}
my (%p, %done);
my @p = (undef) x $pos_idx;
foreach my $name (
@single,
($star
? (grep { !exists $multi{$_} } keys %$raw)
: ()
)
) {
if (exists $raw->{$name}) {
if (exists $positional{$name}) {
$p[$positional{$name}] = $raw->{$name}->[-1];
} else {
$p{$name} = $raw->{$name}->[-1];
}
}
$done{$name} = 1;
}
foreach my $name (
keys %multi,
($multistar
? (grep { !exists $done{$_} && !exists $multi{$_} } keys %$raw)
: ()
)
) {
if (exists $positional{$name}) {
$p[$positional{$name}] = $raw->{$name}||[];
} else {
$p{$name} = $raw->{$name}||[];
}
}
$p[$pos_idx] = \%p if $have_kw;
return ({}, @p);
};
}
}
1;
|