qxLib
string_view_iterator.inl
Go to the documentation of this file.
1 /**
2 
3  @file string_view_iterator.inl
4  @author Khrapov
5  @date 24.10.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class char_t>
15  value_type svFull,
16  char_t chDelimiter,
17  flags<delimiter_inclusion_flags> eDelimiterInclusionFlags)
18 {
19  return ++string_view_iterator(svFull, chDelimiter, eDelimiterInclusionFlags);
20 }
21 
22 template<class char_t>
24 {
25  return string_view_iterator(value_type(nullptr, 0), QX_TEXT('\0'), delimiter_inclusion_flags::none);
26 }
27 
28 template<class char_t>
29 constexpr typename string_view_iterator<char_t>::value_type string_view_iterator<char_t>::operator*() const noexcept
30 {
31  return m_svCurrent;
32 }
33 
34 template<class char_t>
35 constexpr string_view_iterator<char_t>& string_view_iterator<char_t>::operator++() noexcept
36 {
37  next();
38  return *this;
39 }
40 
41 template<class char_t>
42 constexpr string_view_iterator<char_t> string_view_iterator<char_t>::operator++(int) const noexcept
43 {
44  string_view_iterator itResult(*this);
45  ++itResult;
46  return itResult;
47 }
48 
49 template<class char_t>
50 constexpr string_view_iterator<char_t>::string_view_iterator(
51  value_type svFull,
52  char_t chDelimiter,
53  flags<delimiter_inclusion_flags> eDelimiterInclusionFlags) noexcept
54  : m_svFull(svFull)
55  , m_svCurrent(value_type(m_svFull.data(), 0))
56  , m_chDelimiter(chDelimiter)
57  , m_eDelimiterInclusionFlags(eDelimiterInclusionFlags)
58 {
59 }
60 
61 template<class char_t>
62 constexpr void string_view_iterator<char_t>::next() noexcept
63 {
64  size_type nStart = m_svCurrent.data() - m_svFull.data() + m_svCurrent.size();
65  size_type nEnd = nStart;
66 
67  auto set_start = [this](size_type nStart)
68  {
69  m_svCurrent = value_type(
70  m_svFull.data()
71  + (m_eDelimiterInclusionFlags.contains(delimiter_inclusion_flags::begin) && nStart != 0 ? nStart - 1
72  : nStart),
73  0);
74  };
75 
76  auto set_end = [this](size_type nEnd)
77  {
78  m_svCurrent = value_type(
79  m_svCurrent.data(),
80  (m_eDelimiterInclusionFlags.contains(delimiter_inclusion_flags::end) ? nEnd + 1 : nEnd)
81  - (m_svCurrent.data() - m_svFull.data()));
82  };
83 
84  while ((nEnd = m_svFull.find(m_chDelimiter, nStart)) != value_type::npos)
85  {
86  if (nStart != nEnd)
87  {
88  set_start(nStart);
89  set_end(nEnd);
90  return;
91  }
92 
93  nStart = nEnd;
94  while (nStart < m_svFull.size() && m_svFull[nStart] == m_chDelimiter)
95  ++nStart;
96  }
97 
98  if (nStart != m_svFull.size())
99  {
100  set_start(nStart);
101  m_svCurrent = value_type(m_svCurrent.data(), m_svFull.size() - (m_svCurrent.data() - m_svFull.data()));
102  return;
103  }
104 
105  *this = end();
106 }
107 
108 } // namespace qx
Iterator class that allows to iterate over a string view using a delimiter character.
static constexpr string_view_iterator begin(value_type svFull, char_t chDelimiter, flags< delimiter_inclusion_flags > eDelimiterInclusionFlags=delimiter_inclusion_flags::none)
Return iterator to beginning.
static constexpr string_view_iterator end()
Return iterator to end.