qxLib
string_view_iterator.h
Go to the documentation of this file.
1 /**
2 
3  @file string_view_iterator.h
4  @author Khrapov
5  @date 24.10.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/containers/flags.h>
13 #include <qx/typedefs.h>
14 
15 namespace qx
16 {
17 
18 enum class delimiter_inclusion_flags : u8
19 {
20  none = 0,
21  begin = 1 << 0,
22  end = 1 << 1
23 };
24 QX_FLAGS_ENUM_CLASS(delimiter_inclusion_flags);
25 
26 /**
27 
28  @class string_view_iterator
29  @brief Iterator class that allows to iterate over a string view using a delimiter character
30  @details This class is not supposed to use manually, @see string_view_view
31  @tparam char_t - char type
32  @author Khrapov
33  @date 24.10.2023
34 
35 **/
36 template<class char_t>
38 {
39 public:
40  using value_type = basic_string_view<char_t>;
41  using size_type = size_t;
42  using iterator_category = std::forward_iterator_tag;
43  using iterator_concept = std::forward_iterator_tag;
44 
45 public:
46  /**
47  @brief Return iterator to beginning
48  @param svFull - string to iterate
49  @param chDelimiter - delimiter character
50  @param eDelimiterInclusionFlags - flags that determine whether to include delimiters in parts when iterating
51  @retval - iterator to beginning
52  **/
53  [[nodiscard]] static constexpr string_view_iterator begin(
54  value_type svFull,
55  char_t chDelimiter,
56  flags<delimiter_inclusion_flags> eDelimiterInclusionFlags = delimiter_inclusion_flags::none);
57 
58  /**
59  @brief Return iterator to end
60  @retval - iterator to end
61  **/
62  [[nodiscard]] static constexpr string_view_iterator end();
63 
64  [[nodiscard]] constexpr value_type operator*() const noexcept;
65  constexpr string_view_iterator& operator++() noexcept;
66  [[nodiscard]] constexpr string_view_iterator operator++(int) const noexcept;
67  constexpr bool operator==(const string_view_iterator& itOther) const noexcept = default;
68  constexpr bool operator!=(const string_view_iterator& itOther) const noexcept = default;
69 
70 private:
71  /**
72  @brief string_view_iterator object constructor
73  @param svFull - string to iterate
74  @param chDelimiter - delimiter character
75  @param eDelimiterInclusionFlags - flags that determine whether to include delimiters in parts when iterating
76  **/
77  constexpr string_view_iterator(
78  value_type svFull,
79  char_t chDelimiter,
80  flags<delimiter_inclusion_flags> eDelimiterInclusionFlags) noexcept;
81 
82  /**
83  @brief Go to the next part
84  **/
85  constexpr void next() noexcept;
86 
87 private:
88  value_type m_svFull;
89  value_type m_svCurrent;
90  char_t m_chDelimiter;
91  flags<delimiter_inclusion_flags> m_eDelimiterInclusionFlags = delimiter_inclusion_flags::none;
92 };
93 
94 } // namespace qx
95 
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.
#define QX_FLAGS_ENUM_CLASS(enumName)
Define to let to use this enum class in different binary operations returning qx::flags.
Definition: flags.h:20
uint8_t u8
0 .. 65 535
Definition: typedefs.h:20