5#include "../SqlColumnTypeDefinitions.hpp"
8#include "UnicodeConverter.hpp"
14constexpr size_t SqlMaxColumnSize = (std::numeric_limits<uint32_t>::max)();
21template <std::
size_t N,
typename T =
char>
25 static constexpr std::size_t DynamicCapacity = N;
27 using string_type = std::basic_string<T>;
30 template <std::
size_t SourceSize>
32 _value { text, SourceSize - 1 }
34 static_assert(SourceSize <= N + 1,
"RHS string size must not exceed target string's capacity.");
51 LIGHTWEIGHT_FORCE_INLINE constexpr
SqlDynamicString(std::basic_string_view<T> s) noexcept:
57 LIGHTWEIGHT_FORCE_INLINE
constexpr SqlDynamicString(std::basic_string<T>
const& s)
noexcept:
63 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE string_type
const&
value() const noexcept
69 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE string_type&
value() noexcept
75 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE T
const*
data() const noexcept
81 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE T*
data() noexcept
87 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE std::size_t
capacity() const noexcept
93 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE std::size_t
size() const noexcept
99 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr bool empty() const noexcept
101 return _value.empty();
105 LIGHTWEIGHT_FORCE_INLINE
constexpr void clear() noexcept
111 LIGHTWEIGHT_FORCE_INLINE
constexpr void resize(std::size_t n)
noexcept
117 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr std::basic_string_view<T>
ToStringView() const noexcept
119 return { _value.data(), _value.size() };
122 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr T& operator[](std::size_t index)
noexcept
124 return _value[index];
127 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr T
const& operator[](std::size_t index)
const noexcept
129 return _value[index];
132 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr explicit operator std::basic_string_view<T>() const noexcept
137 template <std::
size_t OtherSize>
140 return _value <=> other._value;
143 template <std::
size_t OtherSize>
146 return (*this <=> other) == std::weak_ordering::equivalent;
149 template <std::
size_t OtherSize>
152 return !(*
this == other);
155 LIGHTWEIGHT_FORCE_INLINE
constexpr bool operator==(std::basic_string_view<T> other)
const noexcept
157 return (
ToStringView() <=> other) == std::weak_ordering::equivalent;
160 LIGHTWEIGHT_FORCE_INLINE
constexpr bool operator!=(std::basic_string_view<T> other)
const noexcept
162 return !(*
this == other);
169template <std::
size_t N,
typename CharT>
174 return { str.
data(), str.size() };
182struct IsSqlDynamicStringImpl: std::false_type
186template <std::
size_t N,
typename T>
194constexpr bool IsSqlDynamicString = detail::IsSqlDynamicStringImpl<T>::value;
199template <std::
size_t N>
205template <std::
size_t N>
211template <std::
size_t N>
217template <std::
size_t N>
220template <std::
size_t N,
typename T>
225 auto format(value_type
const& text, format_context& ctx)
const
227 if constexpr (detail::OneOf<T, wchar_t, char32_t, char16_t>)
228 return std::formatter<std::string>::format((
char const*)
ToUtf8(text.ToStringView()).c_str(), ctx);
230 return std::formatter<std::string>::format((
char const*) text.data(), ctx);
234template <std::
size_t N,
typename T>
240 static constexpr SqlColumnTypeDefinition ColumnType = []()
constexpr {
241 if constexpr (std::same_as<CharType, char>)
242 return SqlColumnTypeDefinitions::Varchar { N };
244 return SqlColumnTypeDefinitions::NVarchar { N };
247 static CharType
const* Data(ValueType
const* str)
noexcept
252 static CharType* Data(ValueType* str)
noexcept
257 static SQLULEN Size(ValueType
const* str)
noexcept
262 static void Clear(ValueType* str)
noexcept
264 str->value().clear();
267 static void Reserve(ValueType* str,
size_t capacity)
noexcept
269 str->value().resize((std::min)(N, capacity));
272 static void Resize(ValueType* str, SQLLEN indicator)
noexcept
274 str->value().resize(indicator);
LIGHTWEIGHT_FORCE_INLINE std::size_t capacity() const noexcept
Retrieves the string's capacity.
LIGHTWEIGHT_FORCE_INLINE T * data() noexcept
Retrieves the string's inner value (as T*).
LIGHTWEIGHT_FORCE_INLINE string_type & value() noexcept
Retrieves the string's inner value (std::basic_string<T>).
LIGHTWEIGHT_FORCE_INLINE T const * data() const noexcept
Retrieves the string's inner value (as T const*).
LIGHTWEIGHT_FORCE_INLINE string_type const & value() const noexcept
Retrieves the string's inner value (std::basic_string<T>).
LIGHTWEIGHT_FORCE_INLINE constexpr void resize(std::size_t n) noexcept
Resizes the string.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString(T const *s, T const *e) noexcept
Constructs a fixed-size string from a string pointer and end pointer.
LIGHTWEIGHT_FORCE_INLINE constexpr void clear() noexcept
Clears the string.
LIGHTWEIGHT_FORCE_INLINE std::size_t size() const noexcept
Retrieves the string's size.
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > ToStringView() const noexcept
Retrieves a string view of the string.
constexpr LIGHTWEIGHT_FORCE_INLINE SqlDynamicString(T const (&text)[SourceSize])
Constructs a fixed-size string from a string literal.
LIGHTWEIGHT_FORCE_INLINE constexpr bool empty() const noexcept
Tests if the string is empty.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDynamicString(std::basic_string< T > const &s) noexcept
Constructs a fixed-size string from a string.
LIGHTWEIGHT_API std::u8string ToUtf8(std::u32string_view u32InputString)