/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include namespace AK { // String is a convenience wrapper around StringImpl, suitable for passing // around as a value type. It's basically the same as passing around a // RefPtr, with a bit of syntactic sugar. // // Note that StringImpl is an immutable object that cannot shrink or grow. // Its allocation size is snugly tailored to the specific string it contains. // Copying a String is very efficient, since the internal StringImpl is // retainable and so copying only requires modifying the ref count. // // There are three main ways to construct a new String: // // s = String("some literal"); // // s = String::formatted("{} little piggies", m_piggies); // // StringBuilder builder; // builder.append("abc"); // builder.append("123"); // s = builder.to_string(); class String { public: ~String() = default; String() = default; String(const StringView& view) { m_impl = StringImpl::create(view.characters_without_null_termination(), view.length()); } String(const String& other) : m_impl(const_cast(other).m_impl) { } String(String&& other) : m_impl(move(other.m_impl)) { } String(const char* cstring, ShouldChomp shouldChomp = NoChomp) : m_impl(StringImpl::create(cstring, shouldChomp)) { } String(const char* cstring, size_t length, ShouldChomp shouldChomp = NoChomp) : m_impl(StringImpl::create(cstring, length, shouldChomp)) { } explicit String(ReadonlyBytes bytes, ShouldChomp shouldChomp = NoChomp) : m_impl(StringImpl::create(bytes, shouldChomp)) { } String(const StringImpl& impl) : m_impl(const_cast(impl)) { } String(const StringImpl* impl) : m_impl(const_cast(impl)) { } String(RefPtr&& impl) : m_impl(move(impl)) { } String(NonnullRefPtr&& impl) : m_impl(move(impl)) { } String(const FlyString&); [[nodiscard]] static String repeated(char, size_t count); [[nodiscard]] static String repeated(const StringView&, size_t count); [[nodiscard]] static String bijective_base_from(size_t value, unsigned base = 26, StringView map = {}); template [[nodiscard]] static String join(const SeparatorType& separator, const CollectionType& collection) { StringBuilder builder; builder.join(separator, collection); return builder.build(); } [[nodiscard]] bool matches(const StringView& mask, CaseSensitivity = CaseSensitivity::CaseInsensitive) const; [[nodiscard]] bool matches(const StringView& mask, Vector&, CaseSensitivity = CaseSensitivity::CaseInsensitive) const; template [[nodiscard]] Optional to_int(TrimWhitespace = TrimWhitespace::Yes) const; template [[nodiscard]] Optional to_uint(TrimWhitespace = TrimWhitespace::Yes) const; [[nodiscard]] String to_lowercase() const; [[nodiscard]] String to_uppercase() const; [[nodiscard]] String to_snakecase() const; [[nodiscard]] bool is_whitespace() const { return StringUtils::is_whitespace(*this); } #ifndef KERNEL [[nodiscard]] String trim(const StringView& characters, TrimMode mode = TrimMode::Both) const { return StringUtils::trim(view(), characters, mode); } [[nodiscard]] String trim_whitespace(TrimMode mode = TrimMode::Both) const { return StringUtils::trim_whitespace(view(), mode); } #endif [[nodiscard]] bool equals_ignoring_case(const StringView&) const; [[nodiscard]] bool contains(const StringView&, CaseSensitivity = CaseSensitivity::CaseSensitive) const; [[nodiscard]] Vector split_limit(char separator, size_t limit, bool keep_empty = false) const; [[nodiscard]] Vector split(char separator, bool keep_empty = false) const; [[nodiscard]] Optional find(char, size_t start = 0) const; [[nodiscard]] Optional find(StringView const&, size_t start = 0) const; [[nodiscard]] Vector find_all(StringView const& needle) const { return StringUtils::find_all(*this, needle); } [[nodiscard]] String substring(size_t start) const; [[nodiscard]] String substring(size_t start, size_t length) const; [[nodiscard]] Vector split_view(char separator, bool keep_empty = false) const; [[nodiscard]] StringView substring_view(size_t start, size_t length) const; [[nodiscard]] StringView substring_view(size_t start) const; [[nodiscard]] bool is_null() const { return !m_impl; } [[nodiscard]] ALWAYS_INLINE bool is_empty() const { return length() == 0; } [[nodiscard]] ALWAYS_INLINE size_t length() const { return m_impl ? m_impl->length() : 0; } // Includes NUL-terminator, if non-nullptr. [[nodiscard]] ALWAYS_INLINE const char* characters() const { return m_impl ? m_impl->characters() : nullptr; } [[nodiscard]] bool copy_characters_to_buffer(char* buffer, size_t buffer_size) const; [[nodiscard]] ALWAYS_INLINE ReadonlyBytes bytes() const { if (m_impl) { return m_impl->bytes(); } return {}; } [[nodiscard]] ALWAYS_INLINE const char& operator[](size_t i) const { VERIFY(!is_null()); return (*m_impl)[i]; } using ConstIterator = SimpleIterator; [[nodiscard]] constexpr ConstIterator begin() const { return ConstIterator::begin(*this); } [[nodiscard]] constexpr ConstIterator end() const { return ConstIterator::end(*this); } [[nodiscard]] bool starts_with(const StringView&, CaseSensitivity = CaseSensitivity::CaseSensitive) const; [[nodiscard]] bool ends_with(const StringView&, CaseSensitivity = CaseSensitivity::CaseSensitive) const; [[nodiscard]] bool starts_with(char) const; [[nodiscard]] bool ends_with(char) const; bool operator==(const String&) const; bool operator!=(const String& other) const { return !(*this == other); } bool operator==(const StringView&) const; bool operator!=(const StringView& other) const { return !(*this == other); } bool operator==(const FlyString&) const; bool operator!=(const FlyString& other) const { return !(*this == other); } bool operator<(const String&) const; bool operator<(const char*) const; bool operator>=(const String& other) const { return !(*this < other); } bool operator>=(const char* other) const { return !(*this < other); } bool operator>(const String&) const; bool operator>(const char*) const; bool operator<=(const String& other) const { return !(*this > other); } bool operator<=(const char* other) const { return !(*this > other); } bool operator==(const char* cstring) const; bool operator!=(const char* cstring) const { return !(*this == cstring); } [[nodiscard]] String isolated_copy() const; [[nodiscard]] static String empty() { return StringImpl::the_empty_stringimpl(); } [[nodiscard]] StringImpl* impl() { return m_impl.ptr(); } [[nodiscard]] const StringImpl* impl() const { return m_impl.ptr(); } String& operator=(String&& other) { if (this != &other) m_impl = move(other.m_impl); return *this; } String& operator=(const String& other) { if (this != &other) m_impl = const_cast(other).m_impl; return *this; } String& operator=(std::nullptr_t) { m_impl = nullptr; return *this; } String& operator=(ReadonlyBytes bytes) { m_impl = StringImpl::create(bytes); return *this; } [[nodiscard]] u32 hash() const { if (!m_impl) return 0; return m_impl->hash(); } [[nodiscard]] ByteBuffer to_byte_buffer() const; template [[nodiscard]] static String copy(const BufferType& buffer, ShouldChomp should_chomp = NoChomp) { if (buffer.is_empty()) return empty(); return String((const char*)buffer.data(), buffer.size(), should_chomp); } [[nodiscard]] static String vformatted(StringView fmtstr, TypeErasedFormatParams); template [[nodiscard]] static String formatted(CheckedFormatString&& fmtstr, const Parameters&... parameters) { return vformatted(fmtstr.view(), VariadicFormatParams { parameters... }); } template [[nodiscard]] static String number(T value) requires IsArithmetic { return formatted("{}", value); } [[nodiscard]] StringView view() const { return { characters(), length() }; } int replace(const String& needle, const String& replacement, bool all_occurrences = false); size_t count(const String& needle) const; [[nodiscard]] String reverse() const; template [[nodiscard]] ALWAYS_INLINE constexpr bool is_one_of(Ts... strings) const { return (... || this->operator==(forward(strings))); } private: RefPtr m_impl; }; template<> struct Traits : public GenericTraits { static unsigned hash(const String& s) { return s.impl() ? s.impl()->hash() : 0; } }; struct CaseInsensitiveStringTraits : public Traits { static unsigned hash(const String& s) { return s.impl() ? s.to_lowercase().impl()->hash() : 0; } static bool equals(const String& a, const String& b) { return a.to_lowercase() == b.to_lowercase(); } }; bool operator<(const char*, const String&); bool operator>=(const char*, const String&); bool operator>(const char*, const String&); bool operator<=(const char*, const String&); String escape_html_entities(const StringView& html); InputStream& operator>>(InputStream& stream, String& string); } using AK::CaseInsensitiveStringTraits; using AK::escape_html_entities; using AK::String;