Lightweight 0.1.0
Loading...
Searching...
No Matches
StdString.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 <concepts>
10#include <cstdlib>
11#include <string>
12#include <type_traits>
13
14// Specialized traits for std::basic_string<> as output string parameter
15template <typename CharT>
16struct SqlBasicStringOperations<std::basic_string<CharT>>
17{
18 using CharType = CharT;
19 using StringType = std::basic_string<CharT>;
20
21 static constexpr auto ColumnType = SqlColumnTypeDefinitions::Varchar { 255 };
22
23 static LIGHTWEIGHT_FORCE_INLINE CharType const* Data(StringType const* str) noexcept
24 {
25 return str->data();
26 }
27
28 static LIGHTWEIGHT_FORCE_INLINE CharType* Data(StringType* str) noexcept
29 {
30 return str->data();
31 }
32
33 static LIGHTWEIGHT_FORCE_INLINE SQLULEN Size(StringType const* str) noexcept
34 {
35 return str->size();
36 }
37
38 static LIGHTWEIGHT_FORCE_INLINE void Clear(StringType* str) noexcept
39 {
40 str->clear();
41 }
42
43 static LIGHTWEIGHT_FORCE_INLINE void Reserve(StringType* str, size_t capacity) noexcept
44 {
45 // std::basic_string<> tries to defer the allocation as long as possible.
46 // So we first tell StringType how much to reserve and then resize it to the *actually* reserved
47 // size.
48 str->reserve(capacity);
49 str->resize(str->capacity());
50 }
51
52 static LIGHTWEIGHT_FORCE_INLINE void Resize(StringType* str, SQLLEN indicator) noexcept
53 {
54 if (indicator > 0)
55 str->resize(indicator);
56 }
57};