15 if (view.ends_with(
'.')) {
16 view.remove_suffix(1);
21 char last_char = view.back();
22 bool possible_ipv4 = (last_char >=
'0' && last_char <=
'9') ||
23 (last_char >=
'a' && last_char <=
'f') ||
29 size_t last_dot = view.rfind(
'.');
30 if (last_dot != std::string_view::npos) {
32 view = view.substr(last_dot + 1);
41 if (view.size() == 1) {
45 if (!view.starts_with(
"0x")) {
49 if (view.size() == 2) {
54 return std::all_of(view.begin() + 2, view.end(),
55 ada::unicode::is_lowercase_hex);
62 std::array<uint8_t, 256>
result{};
63 for (
size_t i = 0; i < 256; i++) {
64 if (i <= 0x20 || i == 0x22 || i == 0x23 || i == 0x3c || i == 0x3e ||
65 i == 0x3f || i == 0x60 || i == 0x7b || i == 0x7d || i > 0x7e) {
67 }
else if (i == 0x25) {
69 }
else if (i == 0x2e) {
71 }
else if (i == 0x5c) {
81 std::string_view input)
noexcept {
88 uint8_t accumulator{};
89 for (; i + 7 < input.size(); i += 8) {
99 for (; i < input.size(); i++) {
106 std::string_view input)
noexcept {
107 if (input.back() ==
'.') {
108 if (input.size() > 254)
return false;
109 }
else if (input.size() > 253)
113 while (start < input.size()) {
114 auto dot_location = input.find(
'.', start);
116 if (dot_location == std::string_view::npos) dot_location = input.size();
118 auto label_size = dot_location - start;
119 if (label_size > 63 || label_size == 0)
return false;
121 start = dot_location + 1;
Declarations for URL specific checkers used within Ada.
#define ada_really_inline
Includes the definitions for validation functions.
static constexpr std::array< uint8_t, 256 > path_signature_table
constexpr bool is_digit(char x) noexcept
tl::expected< result_type, ada::errors > result