From a141c401f78467bc15f62882fca5d55a007cacbb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 17 Feb 2025 00:21:48 +0100 Subject: Reorganize everything --- asl/strings/string.hpp | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 asl/strings/string.hpp (limited to 'asl/strings/string.hpp') diff --git a/asl/strings/string.hpp b/asl/strings/string.hpp new file mode 100644 index 0000000..abad3b4 --- /dev/null +++ b/asl/strings/string.hpp @@ -0,0 +1,77 @@ +#pragma once + +#include "asl/containers/buffer.hpp" +#include "asl/strings/string_view.hpp" + +namespace asl +{ + +template +class string +{ + buffer m_buffer; + + explicit constexpr string(buffer&& buffer) : + m_buffer{ASL_MOVE(buffer)} + {} + + template + friend class StringBuilder; + +public: + constexpr string() requires default_constructible = default; + explicit constexpr string(Allocator allocator) : m_buffer{ASL_MOVE(allocator)} {} + + // NOLINTNEXTLINE(*-explicit-conversions) + constexpr string(string_view sv) + requires default_constructible + : m_buffer{sv.as_span()} + {} + + constexpr string(string_view sv, Allocator allocator) + : m_buffer{sv.as_span(), ASL_MOVE(allocator)} + {} + + constexpr ~string() = default; + + constexpr string(const string&) requires copy_constructible = default; + constexpr string(string&&) = default; + + constexpr string& operator=(const string&) requires copy_assignable = default; + constexpr string& operator=(string&&) = default; + + constexpr isize_t size() const { return m_buffer.size(); } + constexpr const char* data() const { return m_buffer.data(); } + + // NOLINTNEXTLINE(*-explicit-conversions) + constexpr operator string_view() const + { + return as_string_view(); + } + + constexpr string_view as_string_view() const + { + auto span = m_buffer.as_span(); + return string_view{span.data(), span.size()}; + } + + constexpr bool operator==(const string& other) const + { + return as_string_view() == other.as_string_view(); + } + + constexpr bool operator==(string_view other) const + { + return as_string_view() == other; + } + + template + friend H AslHashValue(H h, const string& str) + { + return H::combine(h, str.as_string_view()); + } +}; + +string() -> string<>; + +} // namespace asl -- cgit