SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
two_dimensional_matrix.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <algorithm>
13#include <memory>
14#include <ranges>
15#include <vector>
16
22
23namespace seqan3::detail
24{
25
28struct number_cols : strong_type<size_t, number_cols>
29{
31 using strong_type<size_t, number_cols>::strong_type;
32};
33
36struct number_rows : strong_type<size_t, number_rows>
37{
39 using strong_type<size_t, number_rows>::strong_type;
40};
41
58template <typename value_t,
59 typename allocator_t = std::allocator<value_t>,
60 matrix_major_order order = matrix_major_order::row>
61class two_dimensional_matrix
62{
63private:
67 using storage_type = std::vector<value_t, allocator_t>;
69
70 // Forward declaration. For definition see below.
71 template <bool const_range>
72 class basic_iterator;
73
74public:
78 // Doxygen: https://github.com/seqan/product_backlog/issues/424
80 using value_type = typename storage_type::value_type;
81 using reference = typename storage_type::reference;
82 using const_reference = typename storage_type::const_reference;
83 using pointer = typename storage_type::pointer;
84 using const_pointer = typename storage_type::const_pointer;
85 using difference_type = typename storage_type::difference_type;
86 using size_type = typename storage_type::size_type;
87 using iterator = basic_iterator<false>;
88 using const_iterator = basic_iterator<true>;
90
94 two_dimensional_matrix() = default;
95 two_dimensional_matrix(two_dimensional_matrix const &) = default;
96 two_dimensional_matrix(two_dimensional_matrix &&) = default;
97 two_dimensional_matrix & operator=(two_dimensional_matrix const &) = default;
98 two_dimensional_matrix & operator=(two_dimensional_matrix &&) = default;
99 ~two_dimensional_matrix() = default;
100
105 two_dimensional_matrix(number_rows const row_dim, number_cols const col_dim) :
106 row_dim{row_dim.get()},
107 col_dim{col_dim.get()}
108 {
109 storage.resize(row_dim.get() * col_dim.get());
110 }
111
118 template <std::ranges::forward_range entries_t>
119 requires (std::convertible_to<std::ranges::range_value_t<entries_t>, value_type>)
120 two_dimensional_matrix(number_rows const row_dim, number_cols const col_dim, entries_t entries) :
121 row_dim{row_dim.get()},
122 col_dim{col_dim.get()}
123 {
124 static_assert(std::move_constructible<std::ranges::range_value_t<entries_t>>,
125 "The value type must be moveable.");
126
127 assert(static_cast<size_t>(std::ranges::distance(entries)) == (row_dim.get() * col_dim.get()));
128 storage.resize(row_dim.get() * col_dim.get());
129 std::ranges::move(entries, storage.begin());
130 }
131
133 two_dimensional_matrix(number_rows const row_dim, number_cols const col_dim, storage_type entries) :
134 row_dim{row_dim.get()},
135 col_dim{col_dim.get()}
136 {
137 assert(static_cast<size_t>(std::ranges::distance(entries)) == (row_dim.get() * col_dim.get()));
138 storage = std::move(entries);
139 }
140
166 template <typename other_value_t, typename other_allocator_t, matrix_major_order other_order>
167 requires std::assignable_from<other_value_t &, value_t &>
168 explicit constexpr two_dimensional_matrix(
169 two_dimensional_matrix<other_value_t, other_allocator_t, other_order> const & matrix) :
170 two_dimensional_matrix{number_rows{matrix.rows()}, number_cols{matrix.cols()}}
171 {
172 for (size_t i = 0; i < cols(); ++i)
173 {
174 for (size_t j = 0; j < rows(); ++j)
175 {
176 matrix_coordinate coord{row_index_type{j}, column_index_type{i}};
177 (*this)[coord] = matrix[coord];
178 }
179 }
180 }
182
186 constexpr reference operator[](matrix_coordinate const & coordinate) noexcept
187 {
188 assert(coordinate.col < cols());
189 assert(coordinate.row < rows());
190
191 return *(begin()
192 + matrix_offset{row_index_type{static_cast<std::ptrdiff_t>(coordinate.row)},
193 column_index_type{static_cast<std::ptrdiff_t>(coordinate.col)}});
194 }
195
197 constexpr const_reference operator[](matrix_coordinate const & coordinate) const noexcept
198 {
199 assert(coordinate.col < cols());
200 assert(coordinate.row < rows());
201
202 return *(begin()
203 + matrix_offset{row_index_type{static_cast<std::ptrdiff_t>(coordinate.row)},
204 column_index_type{static_cast<std::ptrdiff_t>(coordinate.col)}});
205 }
206
208 constexpr reference at(matrix_coordinate const & coordinate)
209 {
210 if (coordinate.col >= cols())
211 throw std::invalid_argument{"Column index is out of range. Please check the dimensions of the matrix."};
212 if (coordinate.row >= rows())
213 throw std::invalid_argument{"Row index is out of range. Please check the dimensions of the matrix."};
214
215 return (*this)[coordinate];
216 }
217
219 constexpr const_reference at(matrix_coordinate const & coordinate) const
220 {
221 if (coordinate.col >= cols())
222 throw std::invalid_argument{"Column index is out of range. Please check the dimensions of the matrix."};
223 if (coordinate.row >= rows())
224 throw std::invalid_argument{"Row index is out of range. Please check the dimensions of the matrix."};
225
226 return (*this)[coordinate];
227 }
228
234 void resize(number_rows const row_dim, number_cols const col_dim)
235 {
236 this->row_dim = row_dim.get();
237 this->col_dim = col_dim.get();
238 storage.resize(this->row_dim * this->col_dim);
239 }
240
242 size_t rows() const noexcept
243 {
244 return row_dim;
245 }
246
248 size_t cols() const noexcept
249 {
250 return col_dim;
251 }
252
254 constexpr pointer data() noexcept
255 {
256 return storage.data();
257 }
258
260 constexpr const_pointer data() const noexcept
261 {
262 return storage.data();
263 }
264
270 constexpr iterator begin() noexcept
271 {
272 return {*this, storage.begin()};
273 }
275 constexpr const_iterator begin() const noexcept
276 {
277 return {*this, storage.begin()};
278 }
279
281 constexpr const_iterator cbegin() const noexcept
282 {
283 return begin();
284 }
285
287 constexpr iterator end() noexcept
288 {
289 return {*this, storage.end()};
290 }
291
293 constexpr const_iterator end() const noexcept
294 {
295 return {*this, storage.end()};
296 }
297
299 constexpr const_iterator cend() const noexcept
300 {
301 return end();
302 }
304
305private:
306 storage_type storage;
307 size_type row_dim;
308 size_type col_dim;
309};
310
319template <typename value_t, typename allocator_t, matrix_major_order order>
320template <bool const_range>
321class two_dimensional_matrix<value_t, allocator_t, order>::basic_iterator :
322 public two_dimensional_matrix_iterator_base<basic_iterator<const_range>, order>
323{
324private:
326 using parent_t = detail::maybe_const_range_t<const_range, two_dimensional_matrix>;
327
329 using base_t = two_dimensional_matrix_iterator_base<basic_iterator, order>;
330
332 template <typename derived_t, matrix_major_order other_order>
333 friend class two_dimensional_matrix_iterator_base;
334
336 template <bool other_const_range>
337 friend class basic_iterator;
338
340 using storage_iterator = detail::maybe_const_iterator_t<const_range, storage_type>;
341
342public:
347 using value_type = std::iter_value_t<storage_iterator>;
351 using pointer = typename storage_iterator::pointer;
353 using difference_type = std::iter_difference_t<storage_iterator>;
355 using iterator_category = std::random_access_iterator_tag;
357
361 constexpr basic_iterator() = default;
362 constexpr basic_iterator(basic_iterator const &) = default;
363 constexpr basic_iterator(basic_iterator &&) = default;
364 constexpr basic_iterator & operator=(basic_iterator const &) = default;
365 constexpr basic_iterator & operator=(basic_iterator &&) = default;
366 ~basic_iterator() = default;
367
372 constexpr basic_iterator(parent_t & matrix, storage_iterator iter) : matrix_ptr{&matrix}, host_iter{iter}
373 {}
374
376 constexpr basic_iterator(basic_iterator<!const_range> const & other) noexcept
377 requires const_range
378 : matrix_ptr{other.matrix_ptr}, host_iter{other.host_iter}
379 {}
381
382 // Import advance operator from base class.
383 using base_t::operator+=;
384
386 constexpr basic_iterator & operator+=(matrix_offset const & offset) noexcept
387 {
388 assert(matrix_ptr != nullptr);
389
390 if constexpr (order == matrix_major_order::column)
391 {
392 host_iter += (offset.col * matrix_ptr->rows());
393 host_iter += offset.row;
394 }
395 else
396 {
397 host_iter += offset.col;
398 host_iter += (offset.row * matrix_ptr->cols());
399 }
400 return *this;
401 }
402
404 matrix_coordinate coordinate() const noexcept
405 {
406 assert(matrix_ptr != nullptr);
407
408 auto diff = *this - matrix_ptr->begin();
409 if constexpr (order == matrix_major_order::column)
410 return {row_index_type{diff % matrix_ptr->rows()}, column_index_type{diff / matrix_ptr->rows()}};
411 else
412 return {row_index_type{diff / matrix_ptr->cols()}, column_index_type{diff % matrix_ptr->cols()}};
413 }
414
415private:
416 parent_t * matrix_ptr{nullptr};
417 storage_iterator host_iter{};
418};
419
420} // namespace seqan3::detail
T begin(T... args)
Provides various transformation traits used by the range module.
T data(T... args)
Provides seqan3::detail::deferred_crtp_base.
T end(T... args)
@ offset
Sequence (seqan3::field::seq) relative start position (0-based), unsigned value.
typename decltype(detail::at< idx >(list_t{}))::type at
Return the type at given index from the type list.
Definition type_list/traits.hpp:276
Provides seqan3::detail::matrix_index, seqan3::detail::matrix_coordinate and associated strong types.
T move(T... args)
constexpr auto const & get(configuration< configs_t... > const &config) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition configuration.hpp:412
Provides type traits for working with templates.
Provides seqan3::detail::two_dimensional_matrix_iterator_base.
Hide me