| 
									
										
										
										
											2020-03-02 14:23:11 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2018-2020, Andreas Kling <awesomekling@gmail.com> | 
					
						
							|  |  |  |  * Copyright (c) 2020, Fei Wu <f.eiwu@yahoo.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-03-02 14:23:11 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-12 23:28:45 +03:30
										 |  |  | #include <AK/MemMem.h>
 | 
					
						
							| 
									
										
										
										
											2020-05-26 02:58:34 -07:00
										 |  |  | #include <AK/Memory.h>
 | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  | #include <AK/Optional.h>
 | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2021-02-20 22:39:22 +01:00
										 |  |  | #include <AK/StringBuilder.h>
 | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | #include <AK/StringUtils.h>
 | 
					
						
							|  |  |  | #include <AK/StringView.h>
 | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  | #include <AK/Vector.h>
 | 
					
						
							| 
									
										
										
										
											2021-01-03 02:56:02 +03:30
										 |  |  | #include <ctype.h>
 | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace AK { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace StringUtils { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  | bool matches(const StringView& str, const StringView& mask, CaseSensitivity case_sensitivity, Vector<MaskSpan>* match_spans) | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |     auto record_span = [&match_spans](size_t start, size_t length) { | 
					
						
							|  |  |  |         if (match_spans) | 
					
						
							|  |  |  |             match_spans->append({ start, length }); | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     if (str.is_null() || mask.is_null()) | 
					
						
							|  |  |  |         return str.is_null() && mask.is_null(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |     if (mask == "*") { | 
					
						
							|  |  |  |         record_span(0, str.length()); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     const char* string_ptr = str.characters_without_null_termination(); | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |     const char* string_start = str.characters_without_null_termination(); | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     const char* string_end = string_ptr + str.length(); | 
					
						
							|  |  |  |     const char* mask_ptr = mask.characters_without_null_termination(); | 
					
						
							|  |  |  |     const char* mask_end = mask_ptr + mask.length(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-17 00:33:38 +02:00
										 |  |  |     auto matches_one = [](char ch, char p, CaseSensitivity case_sensitivity) { | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |         if (p == '?') | 
					
						
							|  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2021-04-17 00:33:38 +02:00
										 |  |  |         if (ch == 0) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         if (case_sensitivity == CaseSensitivity::CaseSensitive) | 
					
						
							|  |  |  |             return p == ch; | 
					
						
							|  |  |  |         return tolower(p) == tolower(ch); | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |     }; | 
					
						
							|  |  |  |     while (string_ptr < string_end && mask_ptr < mask_end) { | 
					
						
							|  |  |  |         auto string_start_ptr = string_ptr; | 
					
						
							|  |  |  |         switch (*mask_ptr) { | 
					
						
							|  |  |  |         case '*': | 
					
						
							|  |  |  |             if (mask_ptr[1] == 0) { | 
					
						
							|  |  |  |                 record_span(string_ptr - string_start, string_end - string_ptr); | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |                 return true; | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-17 00:33:38 +02:00
										 |  |  |             while (string_ptr < string_end && !matches(string_ptr, mask_ptr + 1, case_sensitivity)) | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |                 ++string_ptr; | 
					
						
							|  |  |  |             record_span(string_start_ptr - string_start, string_ptr - string_start_ptr); | 
					
						
							|  |  |  |             --string_ptr; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case '?': | 
					
						
							|  |  |  |             record_span(string_ptr - string_start, 1); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2021-04-17 00:33:38 +02:00
										 |  |  |             if (!matches_one(*string_ptr, *mask_ptr, case_sensitivity)) | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |                 return false; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |         ++string_ptr; | 
					
						
							|  |  |  |         ++mask_ptr; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-29 00:04:12 +03:30
										 |  |  |     if (string_ptr == string_end) { | 
					
						
							|  |  |  |         // Allow ending '*' to contain nothing.
 | 
					
						
							|  |  |  |         while (mask_ptr != mask_end && *mask_ptr == '*') { | 
					
						
							|  |  |  |             record_span(string_ptr - string_start, 0); | 
					
						
							|  |  |  |             ++mask_ptr; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-25 09:04:39 +03:30
										 |  |  |     return string_ptr == string_end && mask_ptr == mask_end; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  | template<typename T> | 
					
						
							|  |  |  | Optional<T> convert_to_int(const StringView& str) | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     auto str_trimmed = str.trim_whitespace(); | 
					
						
							|  |  |  |     if (str_trimmed.is_empty()) | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-20 16:27:33 +11:00
										 |  |  |     T sign = 1; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     size_t i = 0; | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     const auto characters = str_trimmed.characters_without_null_termination(); | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (characters[0] == '-' || characters[0] == '+') { | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |         if (str_trimmed.length() == 1) | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |         i++; | 
					
						
							| 
									
										
										
										
											2020-12-20 16:27:33 +11:00
										 |  |  |         if (characters[0] == '-') | 
					
						
							|  |  |  |             sign = -1; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-02 21:19:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  |     T value = 0; | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     for (; i < str_trimmed.length(); i++) { | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |         if (characters[i] < '0' || characters[i] > '9') | 
					
						
							|  |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-12-20 16:27:33 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (__builtin_mul_overflow(value, 10, &value)) | 
					
						
							|  |  |  |             return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (__builtin_add_overflow(value, sign * (characters[i] - '0'), &value)) | 
					
						
							|  |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-20 16:27:33 +11:00
										 |  |  |     return value; | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-02 21:19:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  | template Optional<i8> convert_to_int(const StringView& str); | 
					
						
							|  |  |  | template Optional<i16> convert_to_int(const StringView& str); | 
					
						
							|  |  |  | template Optional<i32> convert_to_int(const StringView& str); | 
					
						
							|  |  |  | template Optional<i64> convert_to_int(const StringView& str); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<typename T> | 
					
						
							|  |  |  | Optional<T> convert_to_uint(const StringView& str) | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     auto str_trimmed = str.trim_whitespace(); | 
					
						
							|  |  |  |     if (str_trimmed.is_empty()) | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-03-02 21:19:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  |     T value = 0; | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     const auto characters = str_trimmed.characters_without_null_termination(); | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     for (size_t i = 0; i < str_trimmed.length(); i++) { | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |         if (characters[i] < '0' || characters[i] > '9') | 
					
						
							|  |  |  |             return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-20 16:27:33 +11:00
										 |  |  |         if (__builtin_mul_overflow(value, 10, &value)) | 
					
						
							|  |  |  |             return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (__builtin_add_overflow(value, characters[i] - '0', &value)) | 
					
						
							|  |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-03-02 21:19:33 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-22 13:04:04 +01:00
										 |  |  |     return value; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-02 21:19:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  | template Optional<u8> convert_to_uint(const StringView& str); | 
					
						
							|  |  |  | template Optional<u16> convert_to_uint(const StringView& str); | 
					
						
							|  |  |  | template Optional<u32> convert_to_uint(const StringView& str); | 
					
						
							|  |  |  | template Optional<u64> convert_to_uint(const StringView& str); | 
					
						
							| 
									
										
										
										
											2021-01-11 21:39:22 +03:30
										 |  |  | template Optional<long> convert_to_uint(const StringView& str); | 
					
						
							|  |  |  | template Optional<long long> convert_to_uint(const StringView& str); | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | template<typename T> | 
					
						
							|  |  |  | Optional<T> convert_to_uint_from_hex(const StringView& str) | 
					
						
							| 
									
										
										
										
											2020-05-20 21:20:43 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     auto str_trimmed = str.trim_whitespace(); | 
					
						
							|  |  |  |     if (str_trimmed.is_empty()) | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-05-20 21:20:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  |     T value = 0; | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |     const auto count = str_trimmed.length(); | 
					
						
							| 
									
										
										
										
											2021-02-25 21:10:47 +01:00
										 |  |  |     const T upper_bound = NumericLimits<T>::max(); | 
					
						
							| 
									
										
										
										
											2020-05-20 21:20:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (size_t i = 0; i < count; i++) { | 
					
						
							| 
									
										
										
										
											2020-11-16 18:30:22 +00:00
										 |  |  |         char digit = str_trimmed[i]; | 
					
						
							| 
									
										
										
										
											2020-05-20 21:20:43 +03:00
										 |  |  |         u8 digit_val; | 
					
						
							| 
									
										
										
										
											2020-12-20 16:27:33 +11:00
										 |  |  |         if (value > (upper_bound >> 4)) | 
					
						
							|  |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-05-20 21:20:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (digit >= '0' && digit <= '9') { | 
					
						
							|  |  |  |             digit_val = digit - '0'; | 
					
						
							|  |  |  |         } else if (digit >= 'a' && digit <= 'f') { | 
					
						
							|  |  |  |             digit_val = 10 + (digit - 'a'); | 
					
						
							|  |  |  |         } else if (digit >= 'A' && digit <= 'F') { | 
					
						
							|  |  |  |             digit_val = 10 + (digit - 'A'); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2020-06-12 21:07:52 +02:00
										 |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-05-20 21:20:43 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value = (value << 4) + digit_val; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-11 00:17:30 +11:00
										 |  |  | template Optional<u8> convert_to_uint_from_hex(const StringView& str); | 
					
						
							|  |  |  | template Optional<u16> convert_to_uint_from_hex(const StringView& str); | 
					
						
							|  |  |  | template Optional<u32> convert_to_uint_from_hex(const StringView& str); | 
					
						
							|  |  |  | template Optional<u64> convert_to_uint_from_hex(const StringView& str); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-22 13:07:45 +01:00
										 |  |  | static inline char to_lowercase(char c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (c >= 'A' && c <= 'Z') | 
					
						
							|  |  |  |         return c | 0x20; | 
					
						
							|  |  |  |     return c; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool equals_ignoring_case(const StringView& a, const StringView& b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (a.length() != b.length()) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     for (size_t i = 0; i < a.length(); ++i) { | 
					
						
							|  |  |  |         if (to_lowercase(a.characters_without_null_termination()[i]) != to_lowercase(b.characters_without_null_termination()[i])) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-26 02:12:18 -07:00
										 |  |  | bool ends_with(const StringView& str, const StringView& end, CaseSensitivity case_sensitivity) | 
					
						
							| 
									
										
										
										
											2020-05-26 02:58:34 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     if (end.is_empty()) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     if (str.is_empty()) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     if (end.length() > str.length()) | 
					
						
							|  |  |  |         return false; | 
					
						
							| 
									
										
										
										
											2020-05-26 02:12:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (case_sensitivity == CaseSensitivity::CaseSensitive) | 
					
						
							|  |  |  |         return !memcmp(str.characters_without_null_termination() + (str.length() - end.length()), end.characters_without_null_termination(), end.length()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto str_chars = str.characters_without_null_termination(); | 
					
						
							|  |  |  |     auto end_chars = end.characters_without_null_termination(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size_t si = str.length() - end.length(); | 
					
						
							|  |  |  |     for (size_t ei = 0; ei < end.length(); ++si, ++ei) { | 
					
						
							|  |  |  |         if (to_lowercase(str_chars[si]) != to_lowercase(end_chars[ei])) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2020-05-26 02:58:34 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-18 17:59:38 +01:00
										 |  |  | bool starts_with(const StringView& str, const StringView& start, CaseSensitivity case_sensitivity) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (start.is_empty()) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     if (str.is_empty()) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     if (start.length() > str.length()) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     if (str.characters_without_null_termination() == start.characters_without_null_termination()) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (case_sensitivity == CaseSensitivity::CaseSensitive) | 
					
						
							|  |  |  |         return !memcmp(str.characters_without_null_termination(), start.characters_without_null_termination(), start.length()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto str_chars = str.characters_without_null_termination(); | 
					
						
							|  |  |  |     auto start_chars = start.characters_without_null_termination(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size_t si = 0; | 
					
						
							|  |  |  |     for (size_t starti = 0; starti < start.length(); ++si, ++starti) { | 
					
						
							|  |  |  |         if (to_lowercase(str_chars[si]) != to_lowercase(start_chars[starti])) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 15:07:03 -06:00
										 |  |  | bool contains(const StringView& str, const StringView& needle, CaseSensitivity case_sensitivity) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (str.is_null() || needle.is_null() || str.is_empty() || needle.length() > str.length()) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     if (needle.is_empty()) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     auto str_chars = str.characters_without_null_termination(); | 
					
						
							|  |  |  |     auto needle_chars = needle.characters_without_null_termination(); | 
					
						
							|  |  |  |     if (case_sensitivity == CaseSensitivity::CaseSensitive) | 
					
						
							|  |  |  |         return memmem(str_chars, str.length(), needle_chars, needle.length()) != nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto needle_first = to_lowercase(needle_chars[0]); | 
					
						
							| 
									
										
										
										
											2020-11-12 23:44:32 +00:00
										 |  |  |     for (size_t si = 0; si < str.length(); si++) { | 
					
						
							| 
									
										
										
										
											2020-10-20 15:07:03 -06:00
										 |  |  |         if (to_lowercase(str_chars[si]) != needle_first) | 
					
						
							|  |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2020-11-12 23:44:32 +00:00
										 |  |  |         for (size_t ni = 0; si + ni < str.length(); ni++) { | 
					
						
							|  |  |  |             if (to_lowercase(str_chars[si + ni]) != to_lowercase(needle_chars[ni])) { | 
					
						
							|  |  |  |                 si += ni; | 
					
						
							| 
									
										
										
										
											2020-10-20 15:07:03 -06:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2020-11-12 23:44:32 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             if (ni + 1 == needle.length()) | 
					
						
							|  |  |  |                 return true; | 
					
						
							| 
									
										
										
										
											2020-10-20 15:07:03 -06:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-03 02:56:02 +03:30
										 |  |  | bool is_whitespace(const StringView& str) | 
					
						
							| 
									
										
										
										
											2020-09-20 18:05:04 +04:30
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-01-03 02:56:02 +03:30
										 |  |  |     for (auto ch : str) { | 
					
						
							|  |  |  |         if (!isspace(ch)) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-09-20 18:05:04 +04:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 09:42:01 +02:00
										 |  |  | StringView trim(const StringView& str, const StringView& characters, TrimMode mode) | 
					
						
							| 
									
										
										
										
											2021-01-03 02:56:02 +03:30
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-20 18:05:04 +04:30
										 |  |  |     size_t substring_start = 0; | 
					
						
							|  |  |  |     size_t substring_length = str.length(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (mode == TrimMode::Left || mode == TrimMode::Both) { | 
					
						
							|  |  |  |         for (size_t i = 0; i < str.length(); ++i) { | 
					
						
							|  |  |  |             if (substring_length == 0) | 
					
						
							|  |  |  |                 return ""; | 
					
						
							| 
									
										
										
										
											2021-05-25 09:42:01 +02:00
										 |  |  |             if (!characters.contains(str[i])) | 
					
						
							| 
									
										
										
										
											2020-09-20 18:05:04 +04:30
										 |  |  |                 break; | 
					
						
							|  |  |  |             ++substring_start; | 
					
						
							|  |  |  |             --substring_length; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (mode == TrimMode::Right || mode == TrimMode::Both) { | 
					
						
							|  |  |  |         for (size_t i = str.length() - 1; i > 0; --i) { | 
					
						
							|  |  |  |             if (substring_length == 0) | 
					
						
							|  |  |  |                 return ""; | 
					
						
							| 
									
										
										
										
											2021-05-25 09:42:01 +02:00
										 |  |  |             if (!characters.contains(str[i])) | 
					
						
							| 
									
										
										
										
											2020-09-20 18:05:04 +04:30
										 |  |  |                 break; | 
					
						
							|  |  |  |             --substring_length; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return str.substring_view(substring_start, substring_length); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-01-12 23:28:45 +03:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-25 09:42:01 +02:00
										 |  |  | StringView trim_whitespace(const StringView& str, TrimMode mode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return trim(str, " \n\t\v\f\r", mode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-12 23:28:45 +03:30
										 |  |  | Optional<size_t> find(const StringView& haystack, const StringView& needle) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return AK::memmem_optional( | 
					
						
							|  |  |  |         haystack.characters_without_null_termination(), haystack.length(), | 
					
						
							|  |  |  |         needle.characters_without_null_termination(), needle.length()); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-02-20 22:39:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | String to_snakecase(const StringView& str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto should_insert_underscore = [&](auto i, auto current_char) { | 
					
						
							|  |  |  |         if (i == 0) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         auto previous_ch = str[i - 1]; | 
					
						
							|  |  |  |         if (islower(previous_ch) && isupper(current_char)) | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         if (i >= str.length() - 1) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         auto next_ch = str[i + 1]; | 
					
						
							|  |  |  |         if (isupper(current_char) && islower(next_ch)) | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  |     for (size_t i = 0; i < str.length(); ++i) { | 
					
						
							|  |  |  |         auto ch = str[i]; | 
					
						
							|  |  |  |         if (should_insert_underscore(i, ch)) | 
					
						
							|  |  |  |             builder.append('_'); | 
					
						
							|  |  |  |         builder.append(tolower(ch)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-26 15:25:24 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |