GCC Code Coverage Report


Directory: Fw/DataStructures/
File: MapConstIterator.hpp
Date: 2026-09-03 21:14:50
Exec Total Coverage
Lines: 47 54 87.0%
Functions: 17 17 100.0%
Branches: 8 11 72.7%

Line Branch Exec Source
1 // ======================================================================
2 // \title MapConstIterator
3 // \author bocchino
4 // \brief An abstract class template representing a const iterator for a map
5 // ======================================================================
6
7 #ifndef Fw_MapConstIterator_HPP
8 #define Fw_MapConstIterator_HPP
9
10 #include <new>
11
12 #include "Fw/DataStructures/ArraySetOrMapImpl.hpp"
13 #include "Fw/DataStructures/MapEntryBase.hpp"
14 #include "Fw/DataStructures/RedBlackTreeSetOrMapImpl.hpp"
15 #include "Fw/FPrimeBasicTypes.hpp"
16
17 namespace Fw {
18
19 template <typename K, typename V>
20 class MapConstIterator {
21 public:
22 // ----------------------------------------------------------------------
23 // Public types
24 // ----------------------------------------------------------------------
25
26 //! The type of an array iterator
27 using ArrayIterator = typename ArraySetOrMapImpl<K, V>::ConstIterator;
28 //! The type of a map entry base
29 using EntryBase = MapEntryBase<K, V>;
30 //! The type of a red-black tree iterator
31 using RedBlackTreeIterator = typename RedBlackTreeSetOrMapImpl<K, V>::ConstIterator;
32
33 private:
34 // ----------------------------------------------------------------------
35 // Private types
36 // ----------------------------------------------------------------------
37
38 //! The type of an implementation kind
39 using ImplKind = typename SetOrMapImplConstIterator<K, V>::ImplKind;
40
41 //! The type of an implementation
42 union Impl {
43 //! Default constructor
44 4306 Impl() {}
45 //! Array constructor
46 625 Impl(const ArrayIterator& it) : array(it) {}
47 //! Red-black tree constructor
48 643 Impl(const RedBlackTreeIterator& it) : redBlackTree(it) {}
49 //! An array iterator
50 ArrayIterator array;
51 //! A red-black tree iterator
52 RedBlackTreeIterator redBlackTree;
53 // ! Destructor
54 5574 ~Impl() {}
55 };
56
57 public:
58 // ----------------------------------------------------------------------
59 // Constructors and destructors
60 // ----------------------------------------------------------------------
61
62 //! Constructor providing an array implementation
63 625 MapConstIterator(const ArrayIterator& it) : m_impl(it), m_implIterator(&m_impl.array) {}
64
65 //! Constructor providing a red-black tree implementation
66 643 MapConstIterator(const RedBlackTreeIterator& it) : m_impl(it), m_implIterator(&m_impl.redBlackTree) {}
67
68 //! Copy constructor
69 4306 MapConstIterator(const MapConstIterator& it) : m_impl(), m_implIterator() {
70
2/2
✓ Branch 2 taken 4306 times.
✓ Branch 11 taken 4306 times.
4306 const auto implKind = it.getImplIterator().implKind();
71
2/3
✓ Branch 0 taken 2136 times.
✓ Branch 1 taken 2170 times.
✗ Branch 2 not taken.
4306 switch (implKind) {
72 2136 case ImplKind::ARRAY:
73 2136 this->m_implIterator = new (&this->m_impl.array) ArrayIterator(it.m_impl.array);
74 2136 break;
75 2170 case ImplKind::RED_BLACK_TREE:
76 2170 this->m_implIterator = new (&this->m_impl.redBlackTree) RedBlackTreeIterator(it.m_impl.redBlackTree);
77 2170 break;
78 default:
79 FW_ASSERT(false, static_cast<FwAssertArgType>(implKind));
80 break;
81 }
82 4306 }
83
84 //! Destructor
85 5574 ~MapConstIterator() {}
86
87 public:
88 // ----------------------------------------------------------------------
89 // Public member functions
90 // ----------------------------------------------------------------------
91
92 //! Copy assignment operator
93 MapConstIterator& operator=(const MapConstIterator&) = default;
94
95 //! Equality comparison operator
96 770 bool operator==(const MapConstIterator& it) const {
97 770 bool result = false;
98 770 const auto implKind1 = this->getImplIterator().implKind();
99 770 const auto implKind2 = it.getImplIterator().implKind();
100
1/2
✓ Branch 0 taken 770 times.
✗ Branch 1 not taken.
770 if (implKind1 == implKind2) {
101
2/3
✓ Branch 0 taken 362 times.
✓ Branch 1 taken 408 times.
✗ Branch 2 not taken.
770 switch (implKind1) {
102 362 case ImplKind::ARRAY:
103 362 result = this->m_impl.array.compareEqual(it.m_impl.array);
104 362 break;
105 408 case ImplKind::RED_BLACK_TREE:
106 408 result = this->m_impl.redBlackTree.compareEqual(it.m_impl.redBlackTree);
107 408 break;
108 default:
109 FW_ASSERT(false, static_cast<FwAssertArgType>(implKind1));
110 break;
111 }
112 }
113 770 return result;
114 }
115
116 //! Inequality comparison operator
117 770 bool operator!=(const MapConstIterator& it) const { return !(*this == it); };
118
119 //! Prefix increment
120 4766 MapConstIterator& operator++() {
121 4766 this->getImplIterator().increment();
122 4766 return *this;
123 }
124
125 //! Postfix increment
126 4306 MapConstIterator operator++(int) {
127 4306 MapConstIterator tmp = *this;
128
1/1
✓ Branch 2 taken 4306 times.
4306 ++(*this);
129 4306 return tmp;
130 }
131
132 //! Check whether the iterator is in range
133 798 bool isInRange() const { return this->getImplIterator().isInRange(); }
134
135 //! Dereference
136 797 const EntryBase& operator*() const { return this->getImplIterator().getEntry(); }
137
138 //! Pointer
139 8575 const EntryBase* operator->() const { return &this->getImplIterator().getEntry(); }
140
141 private:
142 // ----------------------------------------------------------------------
143 // Private helper functions
144 // ----------------------------------------------------------------------
145
146 //! Assert and get the impl iterator
147 4766 SetOrMapImplConstIterator<K, V>& getImplIterator() {
148 4766 FW_ASSERT(this->m_implIterator != nullptr);
149 4766 return *this->m_implIterator;
150 }
151
152 //! Assert and get the impl iterator (const)
153 16016 const SetOrMapImplConstIterator<K, V>& getImplIterator() const {
154 16016 FW_ASSERT(this->m_implIterator != nullptr);
155 16016 return *this->m_implIterator;
156 }
157
158 private:
159 // ----------------------------------------------------------------------
160 // Private member variables
161 // ----------------------------------------------------------------------
162
163 //! The implementation
164 Impl m_impl;
165
166 //! The impl iterator
167 SetOrMapImplConstIterator<K, V>* m_implIterator = nullptr;
168 };
169
170 } // namespace Fw
171
172 #endif
173