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 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
|
// Copyright 2020 The Chromium Authors
// Copyright 2014 Blake Embrey (hello@blakeembrey.com)
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file or at https://opensource.org/licenses/MIT.
#include "third_party/liburlpattern/pattern.h"
#include <algorithm>
#include <optional>
#include <string>
#include <string_view>
#include <unordered_map>
#include <utility>
#include <vector>
#include "base/notreached.h"
#include "base/types/expected.h"
#include "third_party/abseil-cpp/absl/base/macros.h"
#include "third_party/abseil-cpp/absl/status/status.h"
#include "third_party/abseil-cpp/absl/strings/str_cat.h"
#include "third_party/abseil-cpp/absl/strings/str_format.h"
#include "third_party/icu/source/common/unicode/utf8.h"
#include "third_party/liburlpattern/utils.h"
namespace liburlpattern {
namespace {
void AppendModifier(Modifier modifier, std::string& append_target) {
switch (modifier) {
case Modifier::kZeroOrMore:
append_target += '*';
break;
case Modifier::kOptional:
append_target += '?';
break;
case Modifier::kOneOrMore:
append_target += '+';
break;
case Modifier::kNone:
break;
}
}
size_t ModifierLength(Modifier modifier) {
switch (modifier) {
case Modifier::kZeroOrMore:
case Modifier::kOptional:
case Modifier::kOneOrMore:
return 1;
case Modifier::kNone:
return 0;
}
}
} // namespace
Pattern::Pattern(std::vector<Part> part_list,
Options options,
std::string segment_wildcard_regex)
: part_list_(std::move(part_list)),
options_(std::move(options)),
segment_wildcard_regex_(std::move(segment_wildcard_regex)) {}
std::string Pattern::GeneratePatternString() const {
std::string result;
// Estimate the final length and reserve a reasonable sized string
// buffer to avoid reallocations.
size_t estimated_length = 0;
for (const Part& part : part_list_) {
// Add an arbitrary extra 3 per Part to account for braces, modifier, etc.
estimated_length +=
part.prefix.size() + part.value.size() + part.suffix.size() + 3;
}
result.reserve(estimated_length);
for (size_t i = 0; i < part_list_.size(); ++i) {
const Part& part = part_list_[i];
if (part.type == PartType::kFixed) {
// A simple fixed string part.
if (part.modifier == Modifier::kNone) {
EscapePatternStringAndAppend(part.value, result);
continue;
}
// A fixed string, but with a modifier which requires a grouping.
// For example, `{foo}?`.
result += "{";
EscapePatternStringAndAppend(part.value, result);
result += "}";
AppendModifier(part.modifier, result);
continue;
}
bool custom_name = part.HasCustomName();
// Determine if the part needs a grouping like `{ ... }`. This is
// necessary when the group:
//
// 1. is using a non-automatic prefix or any suffix.
bool needs_grouping =
!part.suffix.empty() ||
(!part.prefix.empty() &&
(part.prefix.size() != 1 ||
options_.prefix_list.find(part.prefix[0]) == std::string::npos));
// 2. followed by a matching group that may be expressed in a way that can
// be mistakenly interpreted as part of this matching group. For
// example:
//
// a. An `(...)` expression following a `:foo` group. We want to
// output `{:foo}(...)` and not `:foo(...)`.
// b. A plaint text expression following a `:foo` group where the text
// could be mistakenly interpreted as part of the name. We want to
// output `{:foo}bar` and not `:foobar`.
const Part* next_part =
(i + 1) < part_list_.size() ? &part_list_[i + 1] : nullptr;
if (!needs_grouping && custom_name &&
part.type == PartType::kSegmentWildcard &&
part.modifier == Modifier::kNone && next_part &&
next_part->prefix.empty() && next_part->suffix.empty()) {
if (next_part->type == PartType::kFixed) {
UChar32 codepoint = -1;
U8_GET(reinterpret_cast<const uint8_t*>(next_part->value.data()), 0, 0,
static_cast<int>(next_part->value.size()), codepoint);
needs_grouping = IsNameCodepoint(codepoint, /*first_codepoint=*/false);
} else {
needs_grouping = !next_part->HasCustomName();
}
}
// 3. preceded by a fixed text part that ends with an implicit prefix
// character (like `/`). This occurs when the original pattern used
// an escape or grouping to prevent the implicit prefix; e.g.
// `\\/*` or `/{*}`. In these cases we use a grouping to prevent the
// implicit prefix in the generated string.
const Part* last_part = i > 0 ? &part_list_[i - 1] : nullptr;
if (!needs_grouping && part.prefix.empty() && last_part &&
last_part->type == PartType::kFixed) {
needs_grouping = options_.prefix_list.find(last_part->value.back()) !=
std::string::npos;
}
// This is a full featured part. We must generate a string that looks
// like:
//
// { <prefix> <value> <suffix> } <modifier>
//
// Where the { and } may not be needed. The <value> will be a regexp,
// named group, or wildcard.
if (needs_grouping)
result += "{";
EscapePatternStringAndAppend(part.prefix, result);
if (custom_name) {
result += ":";
result += part.name;
}
if (part.type == PartType::kRegex) {
result += "(";
result += part.value;
result += ")";
} else if (part.type == PartType::kSegmentWildcard) {
// We only need to emit a regexp if a custom name was
// not specified. A custom name like `:foo` gets the
// kSegmentWildcard type automatically.
if (!custom_name) {
result += "(";
result += segment_wildcard_regex_;
result += ")";
}
} else if (part.type == PartType::kFullWildcard) {
// We can only use the `*` wildcard card if we meet a number
// of conditions. We must use an explicit `(.*)` group if:
//
// 1. A custom name was used; e.g. `:foo(.*)`.
// 2. If the preceding group is a matching group without a modifier; e.g.
// `(foo)(.*)`. In that case we cannot emit the `*` shorthand without
// it being mistakenly interpreted as the modifier for the previous
// group.
// 3. The current group is not enclosed in a `{ }` grouping.
// 4. The current group does not have an implicit prefix like `/`.
if (!custom_name && (!last_part || last_part->type == PartType::kFixed ||
last_part->modifier != Modifier::kNone ||
needs_grouping || !part.prefix.empty())) {
result += "*";
} else {
result += "(";
result += kFullWildcardRegex;
result += ")";
}
}
// If the matching group is a simple `:foo` custom name with the default
// segment wildcard, then we must check for a trailing suffix that could
// be interpreted as a trailing part of the name itself. In these cases
// we must escape the beginning of the suffix in order to separate it
// from the end of the custom name; e.g. `:foo\\bar` instead of `:foobar`.
if (part.type == PartType::kSegmentWildcard && custom_name &&
!part.suffix.empty()) {
UChar32 codepoint = -1;
U8_GET(reinterpret_cast<const uint8_t*>(part.suffix.data()), 0, 0,
static_cast<int>(part.suffix.size()), codepoint);
if (IsNameCodepoint(codepoint, /*first_codepoint=*/false)) {
result += "\\";
}
}
EscapePatternStringAndAppend(part.suffix, result);
if (needs_grouping)
result += "}";
if (part.modifier != Modifier::kNone)
AppendModifier(part.modifier, result);
}
return result;
}
// The following code is a translation from the path-to-regexp typescript at:
//
// https://github.com/pillarjs/path-to-regexp/blob/125c43e6481f68cc771a5af22b914acdb8c5ba1f/src/index.ts#L532-L596
std::string Pattern::GenerateRegexString(
std::vector<std::string>* name_list_out) const {
std::string result;
// This method mirrors the logic and structure of RegexStringLength(). If
// one changes, so should the other.
// Perform a full pass of the |part_list| to compute the length of the regex
// string to avoid additional allocations.
size_t expected_length = RegexStringLength();
result.reserve(RegexStringLength());
// Anchor to the start of the string if configured to in the options.
if (options_.start)
result += "^";
// Iterate over each Part and append its equivalent value to the expression
// string.
for (const Part& part : part_list_) {
// Handle kFixed Parts. If there is a modifier we must wrap the escaped
// value in a non-capturing group. Otherwise we just append the escaped
// value. For example:
//
// <escaped-fixed-value>
//
// Or:
//
// (?:<escaped-fixed-value>)<modifier>
//
if (part.type == PartType::kFixed) {
if (part.modifier == Modifier::kNone) {
EscapeRegexpStringAndAppend(part.value, result);
} else {
result += "(?:";
EscapeRegexpStringAndAppend(part.value, result);
result += ")";
AppendModifier(part.modifier, result);
}
continue;
}
// All remaining Part types must have a name. Append it to the output
// list if provided.
ABSL_ASSERT(!part.name.empty());
if (name_list_out)
name_list_out->push_back(part.name);
// Compute the Part regex value. For kSegmentWildcard and kFullWildcard
// types we must convert the type enum back to the defined regex value.
std::string_view regex_value = part.value;
if (part.type == PartType::kSegmentWildcard)
regex_value = segment_wildcard_regex_;
else if (part.type == PartType::kFullWildcard)
regex_value = kFullWildcardRegex;
// Handle the case where there is no prefix or suffix value. This varies a
// bit depending on the modifier.
//
// If there is no modifier or an optional modifier, then we simply wrap the
// regex value in a capturing group:
//
// (<regex-value>)<modifier>
//
// If there is a modifier, then we need to use a non-capturing group for the
// regex value and an outer capturing group that includes the modifier as
// well. Like:
//
// ((?:<regex-value>)<modifier>)
if (part.prefix.empty() && part.suffix.empty()) {
if (part.modifier == Modifier::kNone ||
part.modifier == Modifier::kOptional) {
absl::StrAppendFormat(&result, "(%s)", regex_value);
AppendModifier(part.modifier, result);
} else {
absl::StrAppendFormat(&result, "((?:%s)", regex_value);
AppendModifier(part.modifier, result);
result += ")";
}
continue;
}
// Handle non-repeating regex Parts with a prefix and/or suffix. The
// capturing group again only contains the regex value. This inner group
// is compined with the prefix and/or suffix in an outer non-capturing
// group. Finally the modifier is applied to the entire outer group.
// For example:
//
// (?:<prefix>(<regex-value>)<suffix>)<modifier>
//
if (part.modifier == Modifier::kNone ||
part.modifier == Modifier::kOptional) {
result += "(?:";
EscapeRegexpStringAndAppend(part.prefix, result);
absl::StrAppendFormat(&result, "(%s)", regex_value);
EscapeRegexpStringAndAppend(part.suffix, result);
result += ")";
AppendModifier(part.modifier, result);
continue;
}
// Repeating Parts are dramatically more complicated. We want to exclude
// the initial prefix and the final suffix, but include them between any
// repeated elements. To achieve this we provide a separate initial
// part that excludes the prefix. Then the part is duplicated with the
// prefix/suffix values included in an optional repeating element. If
// zero values are permitted then a final optional modifier may be added.
// For example:
//
// (?:<prefix>((?:<regex-value>)(?:<suffix><prefix>(?:<regex-value>))*)<suffix>)?
//
result += "(?:";
EscapeRegexpStringAndAppend(part.prefix, result);
absl::StrAppendFormat(&result, "((?:%s)(?:", regex_value);
EscapeRegexpStringAndAppend(part.suffix, result);
EscapeRegexpStringAndAppend(part.prefix, result);
absl::StrAppendFormat(&result, "(?:%s))*)", regex_value);
EscapeRegexpStringAndAppend(part.suffix, result);
result += ")";
if (part.modifier == Modifier::kZeroOrMore)
result += "?";
}
// Should we anchor the pattern to the end of the input string?
if (options_.end) {
// In non-strict mode an optional delimiter character is always
// permitted at the end of the string. For example, if the pattern
// is "/foo/bar" then it would match "/foo/bar/".
//
// [<delimiter chars>]?
//
if (!options_.strict) {
AppendDelimiterList(result);
result += "?";
}
// The options ends_with value contains a list of characters that
// may also signal the end of the pattern match.
if (options_.ends_with.empty()) {
// Simply anchor to the end of the input string.
result += "$";
} else {
// Anchor to either a ends_with character or the end of the input
// string. This uses a lookahead assertion.
//
// (?=[<ends_with chars>]|$)
//
result += "(?=";
AppendEndsWith(result);
result += ")";
}
return result;
}
// We are not anchored to the end of the input string.
// Again, if not in strict mode we permit an optional trailing delimiter
// character before anchoring to any ends_with characters with a lookahead
// assertion.
//
// (?:[<delimiter chars>](?=[<ends_with chars>]|$))?
//
if (!options_.strict) {
result += "(?:";
AppendDelimiterList(result);
result += "(?=";
AppendEndsWith(result);
result += "))?";
}
// Further, if the pattern does not end with a trailing delimiter character
// we also anchor to a delimiter character in our lookahead assertion. So
// a pattern "/foo/bar" would match "/foo/bar/baz", but not "/foo/barbaz".
//
// (?=[<delimiter chars>]|[<ends_with chars>]|$)
//
bool end_delimited = false;
if (!part_list_.empty()) {
auto& last_part = part_list_.back();
if (last_part.type == PartType::kFixed &&
last_part.modifier == Modifier::kNone) {
ABSL_ASSERT(!last_part.value.empty());
end_delimited = options_.delimiter_list.find(last_part.value.back()) !=
std::string::npos;
}
}
if (!end_delimited) {
result += "(?=";
AppendDelimiterList(result);
result += "|";
AppendEndsWith(result);
result += ")";
}
ABSL_ASSERT(result.size() == expected_length);
return result;
}
bool Pattern::HasRegexGroups() const {
for (const Part& part : part_list_) {
if (part.type == PartType::kRegex) {
return true;
}
}
return false;
}
bool Pattern::CanDirectMatch() const {
// We currently only support direct matching with the options used by
// URLPattern.
if (!options_.start || !options_.end || !options_.strict ||
!options_.sensitive) {
return false;
}
return part_list_.empty() || IsOnlyFullWildcard() || IsOnlyFixedText();
}
bool Pattern::DirectMatch(
std::string_view input,
std::vector<
std::pair<std::string_view, std::optional<std::string_view>>>*
group_list_out) const {
ABSL_ASSERT(CanDirectMatch());
if (part_list_.empty())
return input.empty();
if (IsOnlyFullWildcard()) {
if (group_list_out)
group_list_out->emplace_back(part_list_[0].name, input);
return true;
}
if (IsOnlyFixedText()) {
return part_list_[0].value == input;
}
return false;
}
base::expected<std::string, absl::Status> Pattern::Generate(
const std::unordered_map<std::string, std::string>& groups,
EncodeCallback callback) const {
std::string result;
for (auto&& p : part_list_) {
if (p.modifier != Modifier::kNone) {
return base::unexpected(absl::UnimplementedError(
"Patterns with modifiers are not supported."));
}
switch (p.type) {
case PartType::kFixed: {
ABSL_ASSERT(p.prefix.empty() && p.suffix.empty());
result += p.value;
continue;
}
case PartType::kSegmentWildcard: {
if (!p.HasCustomName()) {
// Reaches when input patterns has a RegExp that is identical to
// the segment wildcard regex string.
// e.g. { pathname: "/([^\\/]+?)" }
return base::unexpected(absl::UnimplementedError(
"Segment-Wildcards with numeric names are not supported."));
}
// Note that names are not encoded while we should encode values.
auto it = groups.find(p.name);
if (it == groups.end()) {
return base::unexpected(absl::InvalidArgumentError(
absl::StrFormat("No input found for `%s`", p.name)));
}
base::expected<std::string, absl::Status> encoded_value_result =
callback(it->second);
if (!encoded_value_result.has_value()) {
return base::unexpected(encoded_value_result.error());
}
std::string& value = encoded_value_result.value();
// Throws error if input strings have delimiter chars.
// TODO(crbug.com/414682820): support this according to specification
// discussions.
for (auto delimiter : options_.delimiter_list) {
if (value.find(delimiter) != std::string::npos) {
return base::unexpected(absl::UnimplementedError(absl::StrFormat(
"Unsupported input: `%s` contains delimiter char `%c`.", value,
delimiter)));
}
}
absl::StrAppend(&result, p.prefix, value, p.suffix);
continue;
}
case PartType::kFullWildcard:
case PartType::kRegex:
return base::unexpected(absl::UnimplementedError(
"Patterns with Full-Wildcards or RegExp are not supported."));
}
NOTREACHED();
}
return result;
}
size_t Pattern::RegexStringLength() const {
size_t result = 0;
// This method mirrors the logic and structure of GenerateRegexString(). If
// one changes, so should the other. See GenerateRegexString() for an
// explanation of the logic.
if (options_.start) {
// ^
result += 1;
}
for (const Part& part : part_list_) {
if (part.type == PartType::kFixed) {
if (part.modifier == Modifier::kNone) {
// <escaped-fixed-value>
result += EscapedRegexpStringLength(part.value);
} else {
// (?:<escaped-fixed-value>)<modifier>
result += EscapedRegexpStringLength(part.value) + 4 +
ModifierLength(part.modifier);
}
continue;
}
std::string_view regex_value = part.value;
if (part.type == PartType::kSegmentWildcard)
regex_value = segment_wildcard_regex_;
else if (part.type == PartType::kFullWildcard)
regex_value = kFullWildcardRegex;
if (part.prefix.empty() && part.suffix.empty()) {
// (<regex-value>)<modifier>
result += regex_value.size() + ModifierLength(part.modifier) + 2;
continue;
}
size_t prefix_length = EscapedRegexpStringLength(part.prefix);
size_t suffix_length = EscapedRegexpStringLength(part.suffix);
if (part.modifier == Modifier::kNone ||
part.modifier == Modifier::kOptional) {
// (?:<prefix>(<regex-value>)<suffix>)<modifier>
result += prefix_length + regex_value.size() + suffix_length +
ModifierLength(part.modifier) + 6;
continue;
}
// (?:<prefix>((?:<regex-value>)(?:<suffix><prefix>(?:<regex-value>))*)<suffix>)?
result += prefix_length + regex_value.size() + suffix_length +
prefix_length + regex_value.size() + suffix_length + 19;
if (part.modifier == Modifier::kZeroOrMore)
result += 1;
}
if (options_.end) {
if (!options_.strict) {
// [<delimiter chars>]?
result += DelimiterListLength() + 1;
}
if (options_.ends_with.empty()) {
// $
result += 1;
} else {
// (?=[<ends_with chars>]|$)
result += EndsWithLength() + 4;
}
} else {
bool end_delimited = false;
if (!part_list_.empty()) {
auto& last_part = part_list_.back();
if (last_part.type == PartType::kFixed &&
last_part.modifier == Modifier::kNone) {
ABSL_ASSERT(!last_part.value.empty());
end_delimited = options_.delimiter_list.find(last_part.value.back()) !=
std::string::npos;
}
}
if (!options_.strict) {
// (?:[<delimiter chars>](?=[<ends_with chars>]|$))?
result += DelimiterListLength() + EndsWithLength() + 9;
}
if (!end_delimited) {
// (?=[<delimiter chars>]|[<ends_with chars>]|$)
result += DelimiterListLength() + EndsWithLength() + 5;
}
}
return result;
}
void Pattern::AppendDelimiterList(std::string& append_target) const {
append_target += "[";
EscapeRegexpStringAndAppend(options_.delimiter_list, append_target);
append_target += "]";
}
size_t Pattern::DelimiterListLength() const {
return EscapedRegexpStringLength(options_.delimiter_list) + 2;
}
void Pattern::AppendEndsWith(std::string& append_target) const {
append_target += "[";
EscapeRegexpStringAndAppend(options_.ends_with, append_target);
append_target += "]|$";
}
size_t Pattern::EndsWithLength() const {
return EscapedRegexpStringLength(options_.ends_with) + 4;
}
bool Pattern::IsOnlyFullWildcard() const {
if (part_list_.size() != 1)
return false;
auto& part = part_list_[0];
// The modifier does not matter as an optional or repeated full wildcard
// is functionally equivalent.
return part.type == PartType::kFullWildcard && part.prefix.empty() &&
part.suffix.empty();
}
bool Pattern::IsOnlyFixedText() const {
if (part_list_.size() != 1)
return false;
auto& part = part_list_[0];
bool result =
part.type == PartType::kFixed && part.modifier == Modifier::kNone;
if (result) {
ABSL_ASSERT(part.prefix.empty());
ABSL_ASSERT(part.suffix.empty());
}
return result;
}
} // namespace liburlpattern
|