mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
191 lines
5.8 KiB
C++
191 lines
5.8 KiB
C++
/*
|
|
* Copyright (c) 2023-2024, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <LibUnicode/CharacterTypes.h>
|
|
#include <LibUnicode/ICU.h>
|
|
|
|
#include <unicode/bytestream.h>
|
|
#include <unicode/casemap.h>
|
|
#include <unicode/stringoptions.h>
|
|
#include <unicode/translit.h>
|
|
|
|
// This file contains definitions of AK::String methods which require UCD data.
|
|
|
|
namespace AK {
|
|
|
|
struct ResolvedLocale {
|
|
ByteString buffer;
|
|
char const* locale { nullptr };
|
|
};
|
|
|
|
static ResolvedLocale resolve_locale(Optional<StringView> const& locale)
|
|
{
|
|
if (!locale.has_value())
|
|
return {};
|
|
|
|
ResolvedLocale resolved_locale;
|
|
resolved_locale.buffer = *locale;
|
|
resolved_locale.locale = resolved_locale.buffer.characters();
|
|
|
|
return resolved_locale;
|
|
}
|
|
|
|
ErrorOr<String> String::to_lowercase(Optional<StringView> const& locale) const
|
|
{
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
StringBuilder builder { bytes_as_string_view().length() };
|
|
icu::StringByteSink sink { &builder };
|
|
|
|
auto resolved_locale = resolve_locale(locale);
|
|
|
|
icu::CaseMap::utf8ToLower(resolved_locale.locale, 0, Unicode::icu_string_piece(*this), sink, nullptr, status);
|
|
if (Unicode::icu_failure(status))
|
|
return Error::from_string_literal("Unable to convert string to lowercase");
|
|
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
ErrorOr<String> String::to_uppercase(Optional<StringView> const& locale) const
|
|
{
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
StringBuilder builder { bytes_as_string_view().length() };
|
|
icu::StringByteSink sink { &builder };
|
|
|
|
auto resolved_locale = resolve_locale(locale);
|
|
|
|
icu::CaseMap::utf8ToUpper(resolved_locale.locale, 0, Unicode::icu_string_piece(*this), sink, nullptr, status);
|
|
if (Unicode::icu_failure(status))
|
|
return Error::from_string_literal("Unable to convert string to uppercase");
|
|
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
ErrorOr<String> String::to_titlecase(Optional<StringView> const& locale, TrailingCodePointTransformation trailing_code_point_transformation) const
|
|
{
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
StringBuilder builder { bytes_as_string_view().length() };
|
|
icu::StringByteSink sink { &builder };
|
|
|
|
auto resolved_locale = resolve_locale(locale);
|
|
|
|
u32 options = 0;
|
|
if (trailing_code_point_transformation == TrailingCodePointTransformation::PreserveExisting)
|
|
options |= U_TITLECASE_NO_LOWERCASE;
|
|
|
|
icu::CaseMap::utf8ToTitle(resolved_locale.locale, options, nullptr, Unicode::icu_string_piece(*this), sink, nullptr, status);
|
|
if (Unicode::icu_failure(status))
|
|
return Error::from_string_literal("Unable to convert string to titlecase");
|
|
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
ErrorOr<String> String::to_fullwidth() const
|
|
{
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
auto const transliterator = adopt_own_if_nonnull(icu::Transliterator::createInstance("Halfwidth-Fullwidth", UTRANS_FORWARD, status));
|
|
if (Unicode::icu_failure(status)) {
|
|
return Error::from_string_literal("Unable to create transliterator");
|
|
}
|
|
|
|
auto icu_string = Unicode::icu_string(bytes_as_string_view());
|
|
transliterator->transliterate(icu_string);
|
|
|
|
return Unicode::icu_string_to_string(icu_string);
|
|
}
|
|
|
|
static ErrorOr<void> build_casefold_string(StringView string, StringBuilder& builder)
|
|
{
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
icu::StringByteSink sink { &builder };
|
|
|
|
icu::CaseMap::utf8Fold(0, Unicode::icu_string_piece(string), sink, nullptr, status);
|
|
if (Unicode::icu_failure(status))
|
|
return Error::from_string_literal("Unable to casefold string");
|
|
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<String> String::to_casefold() const
|
|
{
|
|
StringBuilder builder { bytes_as_string_view().length() };
|
|
TRY(build_casefold_string(*this, builder));
|
|
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
bool String::equals_ignoring_case(String const& other) const
|
|
{
|
|
StringBuilder lhs_builder { bytes_as_string_view().length() };
|
|
if (build_casefold_string(*this, lhs_builder).is_error())
|
|
return false;
|
|
|
|
StringBuilder rhs_builder { other.bytes_as_string_view().length() };
|
|
if (build_casefold_string(other, rhs_builder).is_error())
|
|
return false;
|
|
|
|
return lhs_builder.string_view() == rhs_builder.string_view();
|
|
}
|
|
|
|
Optional<size_t> String::find_byte_offset_ignoring_case(StringView needle, size_t from_byte_offset) const
|
|
{
|
|
auto haystack = bytes_as_string_view().substring_view(from_byte_offset);
|
|
if (haystack.is_empty())
|
|
return {};
|
|
|
|
StringBuilder lhs_builder { haystack.length() };
|
|
if (build_casefold_string(haystack, lhs_builder).is_error())
|
|
return {};
|
|
|
|
StringBuilder rhs_builder { needle.length() };
|
|
if (build_casefold_string(needle, rhs_builder).is_error())
|
|
return false;
|
|
|
|
if (auto index = lhs_builder.string_view().find(rhs_builder.string_view()); index.has_value())
|
|
return *index + from_byte_offset;
|
|
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<String> String::trim_whitespace(TrimMode mode) const
|
|
{
|
|
auto code_points = this->code_points();
|
|
|
|
Optional<size_t> start;
|
|
size_t length = 0;
|
|
|
|
for (auto it = code_points.begin(); it != code_points.end(); ++it) {
|
|
if (Unicode::code_point_has_white_space_property(*it))
|
|
continue;
|
|
|
|
auto offset = code_points.byte_offset_of(it);
|
|
|
|
if (!start.has_value())
|
|
start = offset;
|
|
|
|
length = offset + it.underlying_code_point_length_in_bytes();
|
|
}
|
|
|
|
if (mode == TrimMode::Right)
|
|
start = 0;
|
|
if (mode == TrimMode::Left)
|
|
length = bytes_as_string_view().length();
|
|
|
|
if (!start.has_value() || start == length)
|
|
return String {};
|
|
if (start == 0uz && length == bytes_as_string_view().length())
|
|
return *this;
|
|
|
|
return substring_from_byte_offset_with_shared_superstring(*start, length - *start);
|
|
}
|
|
|
|
}
|