qxLib
string_data.h
Go to the documentation of this file.
1 /**
2 
3  @file string_data.h
4  @author Khrapov
5  @date 8.11.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <array>
12 #include <cstring> // std::memmove
13 
14 namespace qx
15 {
16 
17 enum class string_resize_type
18 {
19  common,
20  reserve,
21  shrink_to_fit
22 };
23 
24 /**
25 
26  @class string_data
27  @brief Represents string data
28  @details Implements small string optimization
29  @tparam traits_t - char traits. \see string_traits.h
30  @author Khrapov
31  @date 8.11.2020
32 
33 **/
34 template<class traits_t>
36 {
37  using value_type = typename traits_t::value_type;
38  using pointer = typename traits_t::pointer;
39  using size_type = typename traits_t::size_type;
40  using buffer = std::array<value_type, traits_t::small_string_size()>;
41 
42 public:
43  /**
44  @brief Get string data: from buffer or from pointer
45  @retval - string pointer
46  **/
47  pointer data() noexcept;
48 
49  /**
50  @brief Free allocated memory
51  **/
52  void free() noexcept;
53 
54  /**
55  @brief Resize string data
56  @param nSymbols - new size
57  @param nAlign - align (if 16 then size 13->16 16->16 18->32)
58  @param eType - resize type
59  @retval - true if memory alloc is successful
60  **/
61  bool resize(size_type nSymbols, size_type nAlign, string_resize_type eType) noexcept;
62 
63  /**
64  @brief Get string length
65  @retval - string length
66  **/
67  size_type size() const noexcept;
68 
69  /**
70  @brief Get capacity of string
71  @retval - string capacity, can't be less than Traits::small_string_size()
72  **/
73  size_type capacity() const noexcept;
74 
75  /**
76  @brief Is string small and fits in the local buffer
77  @retval - true if string is small and fits in the local buffer
78  **/
79  bool is_small() const noexcept;
80 
81 private:
82  union
83  {
84  pointer m_pData = nullptr;
85  buffer m_Buffer;
86  };
87 
88  size_type m_nSize = 0;
89  size_type m_nAllocatedSize = 0;
90 };
91 
92 } // namespace qx
93 
Represents string data.
Definition: string_data.h:36
bool resize(size_type nSymbols, size_type nAlign, string_resize_type eType) noexcept
Resize string data.
Definition: string_data.inl:41
size_type size() const noexcept
Get string length.
bool is_small() const noexcept
Is string small and fits in the local buffer.
void free() noexcept
Free allocated memory.
Definition: string_data.inl:28
pointer data() noexcept
Get string data: from buffer or from pointer.
Definition: string_data.inl:14
size_type capacity() const noexcept
Get capacity of string.