Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlFixedString.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "../SqlColumnTypeDefinitions.hpp"
6#include "Core.hpp"
7#include "UnicodeConverter.hpp"
8
9#include <format>
10#include <stdexcept>
11#include <utility>
12
13enum class SqlFixedStringMode : uint8_t
14{
15 FIXED_SIZE,
16 FIXED_SIZE_RIGHT_TRIMMED,
17 VARIABLE_SIZE,
18};
19
20/// SQL fixed-capacity string that mimmicks standard library string/string_view with a fixed-size underlying
21/// buffer.
22///
23/// The underlying storage will not be guaranteed to be `\0`-terminated unless
24/// a call to mutable/const c_str() has been performed.
25///
26/// @ingroup DataTypes
27template <std::size_t N, typename T = char, SqlFixedStringMode Mode = SqlFixedStringMode::FIXED_SIZE>
29{
30 private:
31 T _data[N + 1] {};
32 std::size_t _size = 0;
33
34 public:
35 using value_type = T;
36 using iterator = T*;
37 using const_iterator = T const*;
38 using pointer_type = T*;
39 using const_pointer_type = T const*;
40
41 static constexpr std::size_t Capacity = N;
42 static constexpr SqlFixedStringMode PostRetrieveOperation = Mode;
43
44 /// Constructs a fixed-size string from a string literal.
45 template <std::size_t SourceSize>
46 constexpr LIGHTWEIGHT_FORCE_INLINE SqlFixedString(T const (&text)[SourceSize]):
47 _size { SourceSize - 1 }
48 {
49 static_assert(SourceSize <= N + 1, "RHS string size must not exceed target string's capacity.");
50 std::copy_n(text, SourceSize, _data);
51 }
52
53 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString() noexcept = default;
54 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(SqlFixedString const&) noexcept = default;
55 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString& operator=(SqlFixedString const&) noexcept = default;
56 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(SqlFixedString&&) noexcept = default;
57 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString& operator=(SqlFixedString&&) noexcept = default;
58 LIGHTWEIGHT_FORCE_INLINE constexpr ~SqlFixedString() noexcept = default;
59
60 /// Constructs a fixed-size string from a string view.
61 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(std::basic_string_view<T> s) noexcept:
62 _size { (std::min)(N, s.size()) }
63 {
64 std::copy_n(s.data(), _size, _data);
65 }
66
67 /// Constructs a fixed-size string from a string.
68 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(std::basic_string<T> const& s) noexcept:
69 _size { (std::min)(N, s.size()) }
70 {
71 std::copy_n(s.data(), _size, _data);
72 }
73
74 /// Constructs a fixed-size string from a string pointer and length.
75 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(T const* s, std::size_t len) noexcept:
76 _size { (std::min)(N, len) }
77 {
78 std::copy_n(s, _size, _data);
79 }
80
81 /// Constructs a fixed-size string from a string pointer and end pointer.
82 LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(T const* s, T const* e) noexcept:
83 _size { (std::min)(N, static_cast<std::size_t>(e - s)) }
84 {
85 std::copy(s, e, _data);
86 }
87
88 LIGHTWEIGHT_FORCE_INLINE void reserve(std::size_t capacity)
89 {
90 if (capacity > N)
91 throw std::length_error(
92 std::format("SqlFixedString: capacity {} exceeds maximum capacity {}", capacity, N));
93 }
94
95 /// Tests if the string is empty.
96 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr bool empty() const noexcept
97 {
98 return _size == 0;
99 }
100
101 /// Returns the size of the string.
102 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t size() const noexcept
103 {
104 return _size;
105 }
106
107 LIGHTWEIGHT_FORCE_INLINE /*TODO constexpr*/ void setsize(std::size_t n) noexcept
108 {
109 auto const newSize = (std::min)(n, N);
110 _size = newSize;
111 _data[newSize] = '\0';
112 }
113
114 /// Resizes the string.
115 ///
116 /// This sets the size of the string to `n`. If `n` is greater than the current size,
117 /// capped at the maximum capacity.
118 LIGHTWEIGHT_FORCE_INLINE constexpr void resize(std::size_t n) noexcept
119 {
120 auto const newSize = (std::min)(n, N);
121 _size = newSize;
122 _data[newSize] = '\0';
123 }
124
125 /// Returns the maximum capacity of the string.
126 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t capacity() const noexcept
127 {
128 return N;
129 }
130
131 /// Clears the string.
132 LIGHTWEIGHT_FORCE_INLINE constexpr void clear() noexcept
133 {
134 _size = 0;
135 }
136
137 /// Assigns a string literal to the string.
138 template <std::size_t SourceSize>
139 LIGHTWEIGHT_FORCE_INLINE constexpr void assign(T const (&source)[SourceSize]) noexcept
140 {
141 static_assert(SourceSize <= N + 1, "Source string must not overflow the target string's capacity.");
142 _size = SourceSize - 1;
143 std::copy_n(source, SourceSize, _data);
144 }
145
146 /// Assigns a string view to the string.
147 LIGHTWEIGHT_FORCE_INLINE constexpr void assign(std::string_view s) noexcept
148 {
149 _size = (std::min)(N, s.size());
150 std::copy_n(s.data(), _size, _data);
151 }
152
153 /// Appends a character to the string.
154 LIGHTWEIGHT_FORCE_INLINE constexpr void push_back(T c) noexcept
155 {
156 if (_size < N)
157 {
158 _data[_size] = c;
159 ++_size;
160 }
161 }
162
163 /// Removes the last character from the string.
164 LIGHTWEIGHT_FORCE_INLINE constexpr void pop_back() noexcept
165 {
166 if (_size > 0)
167 --_size;
168 }
169
170 /// Returns a sub string of the string.
171 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view<T> substr(
172 std::size_t offset = 0, std::size_t count = (std::numeric_limits<std::size_t>::max)()) const noexcept
173 {
174 if (offset >= _size)
175 return {};
176 if (count == (std::numeric_limits<std::size_t>::max)())
177 return std::basic_string_view<T>(_data + offset, _size - offset);
178 if (offset + count > _size)
179 return std::basic_string_view<T>(_data + offset, _size - offset);
180 return std::basic_string_view<T>(_data + offset, count);
181 }
182
183 /// Returns a string view of the string.
184 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view<T> str() const noexcept
185 {
186 return std::basic_string_view<T> { _data, _size };
187 }
188
189 // clang-format off
190 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr pointer_type c_str() noexcept { _data[_size] = '\0'; return _data; }
191 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr pointer_type data() noexcept { return _data; }
192 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr iterator begin() noexcept { return _data; }
193 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr iterator end() noexcept { return _data + size(); }
194 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr T& at(std::size_t i) noexcept { return _data[i]; }
195 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr T& operator[](std::size_t i) noexcept { return _data[i]; }
196
197 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr const_pointer_type c_str() const noexcept { return _data; }
198 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr const_pointer_type data() const noexcept { return _data; }
199 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr const_iterator begin() const noexcept { return _data; }
200 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr const_iterator end() const noexcept { return _data + size(); }
201 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr T const& at(std::size_t i) const noexcept { return _data[i]; }
202 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr T const& operator[](std::size_t i) const noexcept { return _data[i]; }
203 // clang-format on
204
205 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view<T> ToStringView() const noexcept
206 {
207 return { _data, _size };
208 }
209
210 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE constexpr explicit operator std::basic_string_view<T>() const noexcept
211 {
212 return ToStringView();
213 }
214
215 template <std::size_t OtherSize, SqlFixedStringMode OtherMode>
216 LIGHTWEIGHT_FORCE_INLINE std::weak_ordering operator<=>(
217 SqlFixedString<OtherSize, T, OtherMode> const& other) const noexcept
218 {
219 if ((void*) this == (void*) &other) [[unlikely]]
220 return std::weak_ordering::equivalent;
221
222 for (std::size_t i = 0; i < (std::min)(size(), other.size()); ++i)
223 if (auto const cmp = _data[i] <=> other._data[i]; cmp != std::weak_ordering::equivalent) [[unlikely]]
224 return cmp;
225 return size() <=> other.size();
226 }
227
228 template <std::size_t OtherSize, SqlFixedStringMode OtherMode>
229 LIGHTWEIGHT_FORCE_INLINE constexpr bool operator==(
230 SqlFixedString<OtherSize, T, OtherMode> const& other) const noexcept
231 {
232 return (*this <=> other) == std::weak_ordering::equivalent;
233 }
234
235 template <std::size_t OtherSize, SqlFixedStringMode OtherMode>
236 LIGHTWEIGHT_FORCE_INLINE constexpr bool operator!=(
237 SqlFixedString<OtherSize, T, OtherMode> const& other) const noexcept
238 {
239 return !(*this == other);
240 }
241
242 LIGHTWEIGHT_FORCE_INLINE constexpr bool operator==(std::basic_string_view<T> other) const noexcept
243 {
244 return (substr() <=> other) == std::weak_ordering::equivalent;
245 }
246
247 LIGHTWEIGHT_FORCE_INLINE constexpr bool operator!=(std::basic_string_view<T> other) const noexcept
248 {
249 return !(*this == other);
250 }
251};
252
253template <std::size_t N, typename CharT, SqlFixedStringMode Mode>
254struct detail::SqlViewHelper<SqlFixedString<N, CharT, Mode>>
255{
256 static LIGHTWEIGHT_FORCE_INLINE std::basic_string_view<CharT> View(
257 SqlFixedString<N, CharT, Mode> const& str) noexcept
258 {
259 return { str.data(), str.size() };
260 }
261};
262
263namespace detail
264{
265
266template <typename>
267struct IsSqlFixedStringTypeImpl: std::false_type
268{
269};
270
271template <std::size_t N, typename T, SqlFixedStringMode Mode>
272struct IsSqlFixedStringTypeImpl<SqlFixedString<N, T, Mode>>: std::true_type
273{
274};
275
276} // namespace detail
277
278template <typename T>
279constexpr bool IsSqlFixedString = detail::IsSqlFixedStringTypeImpl<T>::value;
280
281/// Fixed-size string of element type `char` with a capacity of `N` characters.
282///
283/// @ingroup DataTypes
284template <std::size_t N>
286
287/// Fixed-size string of element type `char16_t` with a capacity of `N` characters.
288///
289/// @ingroup DataTypes
290template <std::size_t N>
292
293/// Fixed-size string of element type `char32_t` with a capacity of `N` characters.
294///
295/// @ingroup DataTypes
296template <std::size_t N>
298
299/// Fixed-size string of element type `wchar_t` with a capacity of `N` characters.
300///
301/// @ingroup DataTypes
302template <std::size_t N>
304
305/// Fixed-size (right-trimmed) string of element type `char` with a capacity of `N` characters.
306///
307/// @ingroup DataTypes
308template <std::size_t N, typename T = char>
310
311template <std::size_t N, typename T = char>
313
314template <std::size_t N, typename T, SqlFixedStringMode Mode>
315struct SqlBasicStringOperations<SqlFixedString<N, T, Mode>>
316{
317 using CharType = T;
318 using ValueType = SqlFixedString<N, CharType, Mode>;
319 static constexpr auto ColumnType = []() constexpr -> SqlColumnTypeDefinition {
320 if constexpr (std::same_as<CharType, char>)
321 {
322 if constexpr (Mode == SqlFixedStringMode::VARIABLE_SIZE)
323 return SqlColumnTypeDefinitions::Varchar { N };
324 else
325 return SqlColumnTypeDefinitions::Char { N };
326 }
327 else
328 {
329 if constexpr (Mode == SqlFixedStringMode::VARIABLE_SIZE)
330 return SqlColumnTypeDefinitions::NVarchar { N };
331 else
332 return SqlColumnTypeDefinitions::NChar { N };
333 }
334 }();
335
336 static CharType const* Data(ValueType const* str) noexcept
337 {
338 return str->data();
339 }
340
341 static CharType* Data(ValueType* str) noexcept
342 {
343 return str->data();
344 }
345
346 static SQLULEN Size(ValueType const* str) noexcept
347 {
348 return str->size();
349 }
350
351 static void Clear(ValueType* str) noexcept
352 {
353 str->clear();
354 }
355
356 static void Reserve(ValueType* str, size_t capacity) noexcept
357 {
358 str->reserve((std::min)(N, capacity));
359 str->resize((std::min)(N, capacity));
360 }
361
362 static void Resize(ValueType* str, SQLLEN indicator) noexcept
363 {
364 str->resize(indicator);
365 }
366
367 static void PostProcessOutputColumn(ValueType* result, SQLLEN indicator)
368 {
369 switch (indicator)
370 {
371 case SQL_NULL_DATA:
372 result->clear();
373 break;
374 case SQL_NO_TOTAL:
375 result->resize(N);
376 break;
377 default: {
378 auto const len = (std::min)(N, static_cast<std::size_t>(indicator) / sizeof(CharType));
379 result->setsize(len);
380
381 if constexpr (Mode == SqlFixedStringMode::FIXED_SIZE_RIGHT_TRIMMED)
382 {
383 TrimRight(result, indicator);
384 }
385 break;
386 }
387 }
388 }
389
390 LIGHTWEIGHT_FORCE_INLINE static void TrimRight(ValueType* boundOutputString, SQLLEN indicator) noexcept
391 {
392 size_t n = (std::min)((size_t) indicator, N - 1);
393 while (n > 0 && std::isspace((*boundOutputString)[n - 1]))
394 --n;
395 boundOutputString->setsize(n);
396 }
397};
398
399template <std::size_t N, typename T, SqlFixedStringMode P>
400struct std::formatter<SqlFixedString<N, T, P>>: std::formatter<std::string>
401{
402 using value_type = SqlFixedString<N, T, P>;
403 auto format(value_type const& text, format_context& ctx) const -> format_context::iterator
404 {
405 if constexpr (std::same_as<T, wchar_t>)
406 return std::formatter<std::string>::format((char const*) ToUtf8(text.ToStringView()).c_str(), ctx);
407 else
408 return std::formatter<std::string>::format(text.c_str(), ctx);
409 }
410};
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > substr(std::size_t offset=0, std::size_t count=(std::numeric_limits< std::size_t >::max)()) const noexcept
Returns a sub string of the string.
LIGHTWEIGHT_FORCE_INLINE constexpr void assign(T const (&source)[SourceSize]) noexcept
Assigns a string literal to the string.
LIGHTWEIGHT_FORCE_INLINE constexpr void resize(std::size_t n) noexcept
LIGHTWEIGHT_FORCE_INLINE constexpr bool empty() const noexcept
Tests if the string is empty.
LIGHTWEIGHT_FORCE_INLINE constexpr std::basic_string_view< T > str() const noexcept
Returns a string view of the string.
LIGHTWEIGHT_FORCE_INLINE constexpr void clear() noexcept
Clears the string.
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t size() const noexcept
Returns the size of the string.
LIGHTWEIGHT_FORCE_INLINE constexpr void assign(std::string_view s) noexcept
Assigns a string view to the string.
LIGHTWEIGHT_FORCE_INLINE constexpr void push_back(T c) noexcept
Appends a character to the string.
constexpr LIGHTWEIGHT_FORCE_INLINE SqlFixedString(T const (&text)[SourceSize])
Constructs a fixed-size string from a string literal.
LIGHTWEIGHT_FORCE_INLINE constexpr void pop_back() noexcept
Removes the last character from the string.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(T const *s, T const *e) noexcept
Constructs a fixed-size string from a string pointer and end pointer.
LIGHTWEIGHT_FORCE_INLINE constexpr std::size_t capacity() const noexcept
Returns the maximum capacity of the string.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(std::basic_string< T > const &s) noexcept
Constructs a fixed-size string from a string.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlFixedString(T const *s, std::size_t len) noexcept
Constructs a fixed-size string from a string pointer and length.
LIGHTWEIGHT_API std::u8string ToUtf8(std::u32string_view u32InputString)