##// END OF EJS Templates
Creates iterator for ArrayData
Alexandre Leroux -
r555:03bab5615207
parent child
Show More
@@ -1,230 +1,298
1 1 #ifndef SCIQLOP_ARRAYDATA_H
2 2 #define SCIQLOP_ARRAYDATA_H
3 3
4 4 #include <Common/SortUtils.h>
5 5
6 6 #include <QReadLocker>
7 7 #include <QReadWriteLock>
8 8 #include <QVector>
9 9
10 10 #include <memory>
11 11
12 12 template <int Dim>
13 13 class ArrayData;
14 14
15 15 using DataContainer = QVector<QVector<double> >;
16 16
17 17 namespace arraydata_detail {
18 18
19 19 /// Struct used to sort ArrayData
20 20 template <int Dim>
21 21 struct Sort {
22 22 static std::shared_ptr<ArrayData<Dim> > sort(const DataContainer &data,
23 23 const std::vector<int> &sortPermutation)
24 24 {
25 25 auto nbComponents = data.size();
26 26 auto sortedData = DataContainer(nbComponents);
27 27
28 28 for (auto i = 0; i < nbComponents; ++i) {
29 29 sortedData[i] = SortUtils::sort(data.at(i), sortPermutation);
30 30 }
31 31
32 32 return std::make_shared<ArrayData<Dim> >(std::move(sortedData));
33 33 }
34 34 };
35 35
36 36 /// Specialization for uni-dimensional ArrayData
37 37 template <>
38 38 struct Sort<1> {
39 39 static std::shared_ptr<ArrayData<1> > sort(const DataContainer &data,
40 40 const std::vector<int> &sortPermutation)
41 41 {
42 42 return std::make_shared<ArrayData<1> >(SortUtils::sort(data.at(0), sortPermutation));
43 43 }
44 44 };
45 45
46 46 } // namespace arraydata_detail
47 47
48 48 /**
49 49 * @brief The ArrayData class represents a dataset for a data series.
50 50 *
51 51 * A dataset can be unidimensional or two-dimensional. This property is determined by the Dim
52 52 * template-parameter. In a case of a two-dimensional dataset, each dataset component has the same
53 53 * number of values
54 54 *
55 55 * @tparam Dim the dimension of the ArrayData (one or two)
56 56 * @sa IDataSeries
57 57 */
58 58 template <int Dim>
59 59 class ArrayData {
60 60 public:
61 class IteratorValue {
62 public:
63 explicit IteratorValue(const DataContainer &container, bool begin) : m_Its{}
64 {
65 for (auto i = 0; i < container.size(); ++i) {
66 m_Its.push_back(begin ? container.at(i).cbegin() : container.at(i).cend());
67 }
68 }
69
70 double at(int index) const { return *m_Its.at(index); }
71 double first() const { return *m_Its.front(); }
72
73 void next()
74 {
75 for (auto &it : m_Its) {
76 ++it;
77 }
78 }
79
80 bool operator==(const IteratorValue &other) const { return m_Its == other.m_Its; }
81
82 private:
83 std::vector<DataContainer::value_type::const_iterator> m_Its;
84 };
85
86 class Iterator {
87 public:
88 using iterator_category = std::forward_iterator_tag;
89 using value_type = const IteratorValue;
90 using difference_type = std::ptrdiff_t;
91 using pointer = value_type *;
92 using reference = value_type &;
93
94 Iterator(const DataContainer &container, bool begin) : m_CurrentValue{container, begin} {}
95
96 virtual ~Iterator() noexcept = default;
97 Iterator(const Iterator &) = default;
98 Iterator(Iterator &&) = default;
99 Iterator &operator=(const Iterator &) = default;
100 Iterator &operator=(Iterator &&) = default;
101
102 Iterator &operator++()
103 {
104 m_CurrentValue.next();
105 return *this;
106 }
107
108 pointer operator->() const { return &m_CurrentValue; }
109 reference operator*() const { return m_CurrentValue; }
110
111 bool operator==(const Iterator &other) const
112 {
113 return m_CurrentValue == other.m_CurrentValue;
114 }
115
116 bool operator!=(const Iterator &other) const { return !(*this == other); }
117
118 private:
119 IteratorValue m_CurrentValue;
120 };
121
61 122 // ///// //
62 123 // Ctors //
63 124 // ///// //
64 125
65 126 /**
66 127 * Ctor for a unidimensional ArrayData
67 128 * @param data the data the ArrayData will hold
68 129 */
69 130 template <int D = Dim, typename = std::enable_if_t<D == 1> >
70 131 explicit ArrayData(QVector<double> data) : m_Data{1, QVector<double>{}}
71 132 {
72 133 m_Data[0] = std::move(data);
73 134 }
74 135
75 136 /**
76 137 * Ctor for a two-dimensional ArrayData. The number of components (number of vectors) must be
77 138 * greater than 2 and each component must have the same number of values
78 139 * @param data the data the ArrayData will hold
79 140 * @throws std::invalid_argument if the number of components is less than 2
80 141 * @remarks if the number of values is not the same for each component, no value is set
81 142 */
82 143 template <int D = Dim, typename = std::enable_if_t<D == 2> >
83 144 explicit ArrayData(DataContainer data)
84 145 {
85 146 auto nbComponents = data.size();
86 147 if (nbComponents < 2) {
87 148 throw std::invalid_argument{
88 149 QString{"A multidimensional ArrayData must have at least 2 components (found: %1"}
89 150 .arg(data.size())
90 151 .toStdString()};
91 152 }
92 153
93 154 auto nbValues = data.front().size();
94 155 if (std::all_of(data.cbegin(), data.cend(), [nbValues](const auto &component) {
95 156 return component.size() == nbValues;
96 157 })) {
97 158 m_Data = std::move(data);
98 159 }
99 160 else {
100 161 m_Data = DataContainer{nbComponents, QVector<double>{}};
101 162 }
102 163 }
103 164
104 165 /// Copy ctor
105 166 explicit ArrayData(const ArrayData &other)
106 167 {
107 168 QReadLocker otherLocker{&other.m_Lock};
108 169 m_Data = other.m_Data;
109 170 }
110 171
111 172 // /////////////// //
112 173 // General methods //
113 174 // /////////////// //
114 175
115 176 /**
116 177 * Merges into the array data an other array data. The two array datas must have the same number
117 178 * of components so the merge can be done
118 179 * @param other the array data to merge with
119 180 * @param prepend if true, the other array data is inserted at the beginning, otherwise it is
120 181 * inserted at the end
121 182 */
122 183 void add(const ArrayData<Dim> &other, bool prepend = false)
123 184 {
124 185 QWriteLocker locker{&m_Lock};
125 186 QReadLocker otherLocker{&other.m_Lock};
126 187
127 188 auto nbComponents = m_Data.size();
128 189 if (nbComponents != other.m_Data.size()) {
129 190 return;
130 191 }
131 192
132 193 for (auto componentIndex = 0; componentIndex < nbComponents; ++componentIndex) {
133 194 if (prepend) {
134 195 const auto &otherData = other.data(componentIndex);
135 196 const auto otherDataSize = otherData.size();
136 197
137 198 auto &data = m_Data[componentIndex];
138 199 data.insert(data.begin(), otherDataSize, 0.);
139 200
140 201 for (auto i = 0; i < otherDataSize; ++i) {
141 202 data.replace(i, otherData.at(i));
142 203 }
143 204 }
144 205 else {
145 206 m_Data[componentIndex] += other.data(componentIndex);
146 207 }
147 208 }
148 209 }
149 210
150 211 void clear()
151 212 {
152 213 QWriteLocker locker{&m_Lock};
153 214
154 215 auto nbComponents = m_Data.size();
155 216 for (auto i = 0; i < nbComponents; ++i) {
156 217 m_Data[i].clear();
157 218 }
158 219 }
159 220
160 221 /**
161 222 * @return the data of a component
162 223 * @param componentIndex the index of the component to retrieve the data
163 224 * @return the component's data, empty vector if the index is invalid
164 225 */
165 226 QVector<double> data(int componentIndex) const noexcept
166 227 {
167 228 QReadLocker locker{&m_Lock};
168 229
169 230 return (componentIndex >= 0 && componentIndex < m_Data.size()) ? m_Data.at(componentIndex)
170 231 : QVector<double>{};
171 232 }
172 233
173 234 /// @return the size (i.e. number of values) of a single component
174 235 /// @remarks in a case of a two-dimensional ArrayData, each component has the same size
175 236 int size() const
176 237 {
177 238 QReadLocker locker{&m_Lock};
178 239 return m_Data[0].size();
179 240 }
180 241
181 242 std::shared_ptr<ArrayData<Dim> > sort(const std::vector<int> &sortPermutation)
182 243 {
183 244 QReadLocker locker{&m_Lock};
184 245 return arraydata_detail::Sort<Dim>::sort(m_Data, sortPermutation);
185 246 }
186 247
248 // ///////// //
249 // Iterators //
250 // ///////// //
251
252 Iterator cbegin() const { return Iterator{m_Data, true}; }
253 Iterator cend() const { return Iterator{m_Data, false}; }
254
187 255 // ///////////// //
188 256 // 1-dim methods //
189 257 // ///////////// //
190 258
191 259 /**
192 260 * @return the data at a specified index
193 261 * @remarks index must be a valid position
194 262 * @remarks this method is only available for a unidimensional ArrayData
195 263 */
196 264 template <int D = Dim, typename = std::enable_if_t<D == 1> >
197 265 double at(int index) const noexcept
198 266 {
199 267 QReadLocker locker{&m_Lock};
200 268 return m_Data[0].at(index);
201 269 }
202 270
203 271 /**
204 272 * @return the data as a vector, as a const reference
205 273 * @remarks this method is only available for a unidimensional ArrayData
206 274 */
207 275 template <int D = Dim, typename = std::enable_if_t<D == 1> >
208 276 const QVector<double> &cdata() const noexcept
209 277 {
210 278 QReadLocker locker{&m_Lock};
211 279 return m_Data.at(0);
212 280 }
213 281
214 282 /**
215 283 * @return the data as a vector
216 284 * @remarks this method is only available for a unidimensional ArrayData
217 285 */
218 286 template <int D = Dim, typename = std::enable_if_t<D == 1> >
219 287 QVector<double> data() const noexcept
220 288 {
221 289 QReadLocker locker{&m_Lock};
222 290 return m_Data[0];
223 291 }
224 292
225 293 private:
226 294 DataContainer m_Data;
227 295 mutable QReadWriteLock m_Lock;
228 296 };
229 297
230 298 #endif // SCIQLOP_ARRAYDATA_H
General Comments 0
You need to be logged in to leave comments. Login now