mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
d125a76f85
This should never boil down to more than a machine word comparison.
107 lines
3.5 KiB
C++
107 lines
3.5 KiB
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <AK/Format.h>
|
|
#include <AK/Platform.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Traits.h>
|
|
#include <AK/Types.h>
|
|
|
|
namespace AK {
|
|
|
|
class FlyString {
|
|
AK_MAKE_DEFAULT_MOVABLE(FlyString);
|
|
AK_MAKE_DEFAULT_COPYABLE(FlyString);
|
|
|
|
public:
|
|
FlyString() = default;
|
|
|
|
static ErrorOr<FlyString> from_utf8(StringView);
|
|
template<typename T>
|
|
requires(IsOneOf<RemoveCVReference<T>, ByteString, DeprecatedFlyString, FlyString, String>)
|
|
static ErrorOr<String> from_utf8(T&&) = delete;
|
|
|
|
FlyString(String const&);
|
|
FlyString& operator=(String const&);
|
|
|
|
[[nodiscard]] bool is_empty() const;
|
|
[[nodiscard]] unsigned hash() const;
|
|
[[nodiscard]] u32 ascii_case_insensitive_hash() const;
|
|
|
|
explicit operator String() const;
|
|
String to_string() const;
|
|
|
|
[[nodiscard]] Utf8View code_points() const;
|
|
[[nodiscard]] ReadonlyBytes bytes() const;
|
|
[[nodiscard]] StringView bytes_as_string_view() const;
|
|
|
|
[[nodiscard]] ALWAYS_INLINE bool operator==(FlyString const& other) const { return m_data.raw({}) == other.m_data.raw({}); }
|
|
[[nodiscard]] bool operator==(String const&) const;
|
|
[[nodiscard]] bool operator==(StringView) const;
|
|
[[nodiscard]] bool operator==(char const*) const;
|
|
|
|
[[nodiscard]] int operator<=>(FlyString const& other) const;
|
|
|
|
static void did_destroy_fly_string_data(Badge<Detail::StringData>, StringView);
|
|
[[nodiscard]] Detail::StringBase data(Badge<String>) const;
|
|
|
|
// This is primarily interesting to unit tests.
|
|
[[nodiscard]] static size_t number_of_fly_strings();
|
|
|
|
// FIXME: Remove these once all code has been ported to FlyString
|
|
[[nodiscard]] DeprecatedFlyString to_deprecated_fly_string() const;
|
|
static ErrorOr<FlyString> from_deprecated_fly_string(DeprecatedFlyString const&);
|
|
template<typename T>
|
|
requires(IsSame<RemoveCVReference<T>, StringView>)
|
|
static ErrorOr<String> from_deprecated_fly_string(T&&) = delete;
|
|
|
|
// Compare this FlyString against another string with ASCII caseless matching.
|
|
[[nodiscard]] bool equals_ignoring_ascii_case(FlyString const&) const;
|
|
[[nodiscard]] bool equals_ignoring_ascii_case(StringView) const;
|
|
|
|
[[nodiscard]] bool starts_with_bytes(StringView, CaseSensitivity = CaseSensitivity::CaseSensitive) const;
|
|
|
|
[[nodiscard]] bool ends_with_bytes(StringView, CaseSensitivity = CaseSensitivity::CaseSensitive) const;
|
|
|
|
template<typename... Ts>
|
|
[[nodiscard]] ALWAYS_INLINE constexpr bool is_one_of(Ts... strings) const
|
|
{
|
|
return (... || this->operator==(forward<Ts>(strings)));
|
|
}
|
|
|
|
private:
|
|
Detail::StringBase m_data;
|
|
};
|
|
|
|
template<>
|
|
struct Traits<FlyString> : public DefaultTraits<FlyString> {
|
|
static unsigned hash(FlyString const&);
|
|
};
|
|
|
|
template<>
|
|
struct Formatter<FlyString> : Formatter<StringView> {
|
|
ErrorOr<void> format(FormatBuilder&, FlyString const&);
|
|
};
|
|
|
|
struct ASCIICaseInsensitiveFlyStringTraits : public Traits<String> {
|
|
static unsigned hash(FlyString const& s) { return s.ascii_case_insensitive_hash(); }
|
|
static bool equals(FlyString const& a, FlyString const& b) { return a.bytes().data() == b.bytes().data() || a.bytes_as_string_view().equals_ignoring_ascii_case(b.bytes_as_string_view()); }
|
|
};
|
|
|
|
}
|
|
|
|
[[nodiscard]] ALWAYS_INLINE AK::FlyString operator""_fly_string(char const* cstring, size_t length)
|
|
{
|
|
return AK::FlyString::from_utf8(AK::StringView(cstring, length)).release_value();
|
|
}
|
|
|
|
#if USING_AK_GLOBALLY
|
|
using AK::FlyString;
|
|
#endif
|