SeqAn3 3.3.0-rc.1
The Modern C++ library for sequence analysis.
 
Loading...
Searching...
No Matches
alignment_matrix_column_major_range_base.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2022, Knut Reinert & MPI für molekulare Genetik
4// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6// -----------------------------------------------------------------------------------------------------
7
13#pragma once
14
15#include <cassert>
16#include <iterator>
17#include <ranges>
18#include <span>
19
22
23namespace seqan3::detail
24{
25
61template <typename derived_t>
63{
64private:
66 friend derived_t;
67
77 class alignment_column_type : public std::ranges::view_interface<alignment_column_type>
78 {
79 private:
82
83 static_assert(std::ranges::random_access_range<view_type>, "Column view must support random access.");
84 static_assert(std::ranges::sized_range<view_type>, "Column view must be a sized range.");
85 static_assert(std::ranges::view<view_type>, "Column view must be a view.");
86
88 using sentinel = std::ranges::sentinel_t<view_type>;
89
100 {
101 public:
110 using pointer = void;
112 using difference_type = std::ranges::range_difference_t<view_type>;
116
120 constexpr iterator_type() = default;
121 constexpr iterator_type(iterator_type const &) = default;
122 constexpr iterator_type(iterator_type &&) = default;
123 constexpr iterator_type & operator=(iterator_type const &) = default;
124 constexpr iterator_type & operator=(iterator_type &&) = default;
125 ~iterator_type() = default;
126
130 explicit constexpr iterator_type(alignment_column_type & host) :
131 host_ptr{&host},
132 host_iter{host.ref.begin()}
133 {
134 host_ptr->me_ptr->on_column_iterator_creation(host_iter);
135 }
137
142 constexpr reference operator*() const noexcept
143 {
144 static_assert(std::convertible_to<decltype(host_ptr->me_ptr->make_proxy(host_iter)), reference>,
145 "The returned type of make_proxy must be convertible to the reference type.");
146 assert(host_ptr != nullptr);
147 return host_ptr->me_ptr->make_proxy(host_iter);
148 }
150
155 constexpr iterator_type & operator++() noexcept
156 {
157 assert(host_ptr != nullptr);
158 assert(host_ptr->me_ptr != nullptr);
159
160 host_ptr->me_ptr->before_column_iterator_increment(host_iter);
161 ++host_iter;
162 host_ptr->me_ptr->after_column_iterator_increment(host_iter);
163 return *this;
164 }
165
167 constexpr iterator_type operator++(int) noexcept
168 {
169 iterator_type tmp{*this};
170 ++(*this);
171 return tmp;
172 }
174
179 constexpr bool operator==(sentinel const & rhs) const noexcept
180 {
181 return host_iter == rhs;
182 }
183
185 friend constexpr bool operator==(sentinel const & lhs, iterator_type const & rhs) noexcept
186 {
187 return rhs == lhs;
188 }
189
191 constexpr bool operator==(iterator_type const & rhs) const noexcept
192 {
193 return (host_ptr == rhs.host_ptr) && (host_iter == rhs.host_iter);
194 }
195
197 constexpr bool operator!=(sentinel const & rhs) const noexcept
198 {
199 return !(*this == rhs);
200 }
201
203 friend constexpr bool operator!=(sentinel const & lhs, iterator_type const & rhs) noexcept
204 {
205 return rhs != lhs;
206 }
207
209 constexpr bool operator!=(iterator_type const & rhs) const noexcept
210 {
211 return !(*this == rhs);
212 }
214
215 private:
219 std::ranges::iterator_t<view_type> host_iter{};
220 }; // class iterator_type
221
222 public:
226 constexpr alignment_column_type() = default;
227 constexpr alignment_column_type(alignment_column_type const &) = default;
232
241 constexpr alignment_column_type(derived_t & me, view_type ref) : ref{std::move(ref)}, me_ptr{&me}
242 {}
244
250 constexpr iterator_type begin() noexcept
251 {
252 assert(me_ptr != nullptr);
253 return iterator_type{*this};
254 }
255
257 constexpr auto begin() const noexcept = delete; // Not needed by the alignment algorithm
258
260 constexpr sentinel end() noexcept
261 {
262 return ref.end();
263 }
264
266 constexpr sentinel end() const noexcept = delete; // Not needed by the alignment algorithm
268
270 constexpr size_t size() const noexcept
271 {
272 return std::ranges::size(ref);
273 }
274
275 private:
280 }; // class alignment_column_type
281
295 {
296 public:
305 using pointer = void;
307 using difference_type = std::ranges::range_difference_t<alignment_column_type>;
311
315 constexpr iterator_type() = default;
316 constexpr iterator_type(iterator_type const &) = default;
317 constexpr iterator_type(iterator_type &&) = default;
318 constexpr iterator_type & operator=(iterator_type const &) = default;
319 constexpr iterator_type & operator=(iterator_type &&) = default;
320 ~iterator_type() = default;
321
325 explicit constexpr iterator_type(derived_t & me) : me_ptr{&me}, column_index{0}
326 {}
328
333 constexpr reference operator*() const noexcept
334 {
335 static_assert(std::convertible_to<decltype(me_ptr->initialise_column(column_index)), reference>,
336 "The returned type of initialise_column must be convertible to the reference type.");
337 return me_ptr->initialise_column(column_index);
338 }
340
345 constexpr iterator_type & operator++() noexcept
346 {
347 ++column_index;
348 return *this;
349 }
350
352 constexpr void operator++(int) noexcept
353 {
354 ++(*this);
355 }
357
362 constexpr bool operator==(std::default_sentinel_t const &) const noexcept
363 {
364 return column_index == me_ptr->num_cols;
365 }
366
368 friend constexpr bool operator==(std::default_sentinel_t const & lhs, iterator_type const & rhs) noexcept
369 {
370 return rhs == lhs;
371 }
372
374 constexpr bool operator!=(std::default_sentinel_t const & rhs) const noexcept
375 {
376 return !(*this == rhs);
377 }
378
380 friend constexpr bool operator!=(std::default_sentinel_t const & lhs, iterator_type const & rhs) noexcept
381 {
382 return rhs != lhs;
383 }
385
386 private:
390 size_t column_index{};
391 }; // class iterator_type
392
411
419 SEQAN3_DOXYGEN_ONLY(typedef /*IMPLEMENTATION_DEFINED*/ value_type;)
420
424 SEQAN3_DOXYGEN_ONLY(typedef /*IMPLEMENTATION_DEFINED*/ column_data_view_type;)
426
436 SEQAN3_DOXYGEN_ONLY(value_type make_proxy(iter_t host_iter) noexcept {})
437
450 SEQAN3_DOXYGEN_ONLY(alignment_column_type initialise_column(size_t column_index){})
451
456 template <typename iter_t>
457 constexpr void on_column_iterator_creation(iter_t SEQAN3_DOXYGEN_ONLY(host_iter)) noexcept
458 {}
459
464 template <typename iter_t>
465 constexpr void before_column_iterator_increment(iter_t SEQAN3_DOXYGEN_ONLY(host_iter)) noexcept
466 {}
467
472 template <typename iter_t>
473 constexpr void after_column_iterator_increment(iter_t SEQAN3_DOXYGEN_ONLY(host_iter)) noexcept
474 {}
476
480 using sentinel = std::default_sentinel_t;
481
482public:
488 constexpr iterator begin() noexcept
489 {
490 return iterator{static_cast<derived_t &>(*this)};
491 }
492
494 constexpr iterator begin() const noexcept = delete; // not needed for the alignment algorithm
495
497 constexpr sentinel end() noexcept
498 {
499 return std::default_sentinel;
500 }
501
503 constexpr sentinel end() const noexcept = delete; // not needed for the alignment algorithm
505};
506} // namespace seqan3::detail
Provides various type traits on generic types.
The iterator over an alignment-column.
Definition: alignment_matrix_column_major_range_base.hpp:100
constexpr reference operator*() const noexcept
Returns a proxy for the current alignment cell.
Definition: alignment_matrix_column_major_range_base.hpp:142
constexpr bool operator==(sentinel const &rhs) const noexcept
Returns true if the host iterator reached the end, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:179
typename deferred_type< typename derived_t::value_type >::type value_type
A value type dependent on the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:106
constexpr iterator_type & operator++() noexcept
Advances the iterator by one.
Definition: alignment_matrix_column_major_range_base.hpp:155
std::ranges::iterator_t< view_type > host_iter
Wrapped iterator over aliased matrix column.
Definition: alignment_matrix_column_major_range_base.hpp:219
friend constexpr bool operator==(sentinel const &lhs, iterator_type const &rhs) noexcept
Returns true if the host iterator reached the end, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:185
constexpr iterator_type & operator=(iterator_type &&)=default
Defaulted.
constexpr iterator_type & operator=(iterator_type const &)=default
Defaulted.
friend constexpr bool operator!=(sentinel const &lhs, iterator_type const &rhs) noexcept
Returns true if the host iterator did not reach the end, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:203
constexpr iterator_type(alignment_column_type &host)
Construction from the underlying alignment-column.
Definition: alignment_matrix_column_major_range_base.hpp:130
alignment_column_type * host_ptr
Pointer to the underlying alignment-column.
Definition: alignment_matrix_column_major_range_base.hpp:217
constexpr iterator_type operator++(int) noexcept
Advances the iterator and returns previous iterator.
Definition: alignment_matrix_column_major_range_base.hpp:167
constexpr bool operator!=(sentinel const &rhs) const noexcept
Returns true if the host iterator did not reach the end, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:197
typename deferred_type< typename derived_t::reference >::type reference
The reference type dependent on the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:108
std::ranges::range_difference_t< view_type > difference_type
Difference type.
Definition: alignment_matrix_column_major_range_base.hpp:112
void pointer
Pointer type.
Definition: alignment_matrix_column_major_range_base.hpp:110
constexpr bool operator==(iterator_type const &rhs) const noexcept
Returns true if both iterators are equal, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:191
constexpr bool operator!=(iterator_type const &rhs) const noexcept
Returns true if both iterators are not equal, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:209
Represents a column within an alignment matrix.
Definition: alignment_matrix_column_major_range_base.hpp:78
view_type ref
The aliased alignment-column.
Definition: alignment_matrix_column_major_range_base.hpp:277
constexpr size_t size() const noexcept
Returns the size the alignment column.
Definition: alignment_matrix_column_major_range_base.hpp:270
constexpr alignment_column_type & operator=(alignment_column_type const &)=default
Defaulted.
constexpr alignment_column_type(alignment_column_type &&)=default
Defaulted.
derived_t * me_ptr
Pointer to the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:279
typename deferred_type< typename derived_t::column_data_view_type >::type view_type
A view aliasing the actual stored data column within the underlying matrix.
Definition: alignment_matrix_column_major_range_base.hpp:81
constexpr sentinel end() noexcept
Returns an iterator to the end of the column.
Definition: alignment_matrix_column_major_range_base.hpp:260
constexpr sentinel end() const noexcept=delete
Deleted end for const-qualified alignment-columns.
constexpr auto begin() const noexcept=delete
Deleted begin for const-qualified alignment-columns.
std::ranges::sentinel_t< view_type > sentinel
The sentinel type of the underlying view.
Definition: alignment_matrix_column_major_range_base.hpp:88
constexpr alignment_column_type & operator=(alignment_column_type &&)=default
Defaulted.
constexpr alignment_column_type(alignment_column_type const &)=default
Defaulted.
constexpr iterator_type begin() noexcept
Returns an iterator to the begin of the column.
Definition: alignment_matrix_column_major_range_base.hpp:250
constexpr alignment_column_type(derived_t &me, view_type ref)
Constructs from the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:241
A column iterator over the alignment matrix.
Definition: alignment_matrix_column_major_range_base.hpp:295
constexpr iterator_type & operator=(iterator_type const &)=default
Defaulted.
constexpr void operator++(int) noexcept
Increments by one.
Definition: alignment_matrix_column_major_range_base.hpp:352
alignment_column_type value_type
The alignment-column type.
Definition: alignment_matrix_column_major_range_base.hpp:301
friend constexpr bool operator!=(std::default_sentinel_t const &lhs, iterator_type const &rhs) noexcept
Returns true if the host iterator did not reach the end, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:380
constexpr iterator_type(iterator_type const &)=default
Defaulted.
constexpr bool operator!=(std::default_sentinel_t const &rhs) const noexcept
Returns true if the behind-the-end column was not reached, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:374
friend constexpr bool operator==(std::default_sentinel_t const &lhs, iterator_type const &rhs) noexcept
Returns true if the host iterator reached the end, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:368
std::ranges::range_difference_t< alignment_column_type > difference_type
Difference type.
Definition: alignment_matrix_column_major_range_base.hpp:307
constexpr bool operator==(std::default_sentinel_t const &) const noexcept
Returns true if the behind-the-end column was reached, false otherwise.
Definition: alignment_matrix_column_major_range_base.hpp:362
size_t column_index
The current column index.
Definition: alignment_matrix_column_major_range_base.hpp:390
void pointer
Pointer type.
Definition: alignment_matrix_column_major_range_base.hpp:305
derived_t * me_ptr
Pointer to the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:388
constexpr iterator_type & operator=(iterator_type &&)=default
Defaulted.
constexpr reference operator*() const noexcept
Returns the current alignment-column.
Definition: alignment_matrix_column_major_range_base.hpp:333
constexpr iterator_type(derived_t &me)
Construction from an instance of the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:325
constexpr iterator_type & operator++() noexcept
Increments by one.
Definition: alignment_matrix_column_major_range_base.hpp:345
constexpr iterator_type(iterator_type &&)=default
Defaulted.
Provides a range interface for alignment matrices.
Definition: alignment_matrix_column_major_range_base.hpp:63
typedef column_data_view_type
The view over the current alignment-column; must model std::ranges::view and std::ranges::input_range...
Definition: alignment_matrix_column_major_range_base.hpp:424
std::default_sentinel_t sentinel
The type of sentinel.
Definition: alignment_matrix_column_major_range_base.hpp:480
friend derived_t
Befriend the derived type.
Definition: alignment_matrix_column_major_range_base.hpp:66
constexpr alignment_matrix_column_major_range_base & operator=(alignment_matrix_column_major_range_base const &)=default
Defaulted.
constexpr void on_column_iterator_creation(iter_t host_iter) noexcept
Allows additional initialisations when calling begin on an alignment-column.
Definition: alignment_matrix_column_major_range_base.hpp:457
constexpr alignment_matrix_column_major_range_base()=default
Defaulted.
alignment_column_type initialise_column(size_t column_index)
Returns the current alignment-column at the given column_index.
Definition: alignment_matrix_column_major_range_base.hpp:450
constexpr iterator begin() const noexcept=delete
Deleted begin for const-qualified alignment matrix.
constexpr void after_column_iterator_increment(iter_t host_iter) noexcept
Allows to perform additional steps after incrementing the alignment-column-iterator.
Definition: alignment_matrix_column_major_range_base.hpp:473
constexpr iterator begin() noexcept
Returns an iterator to the first column of the matrix.
Definition: alignment_matrix_column_major_range_base.hpp:488
constexpr sentinel end() noexcept
Returns a sentinel marking the end of the matrix.
Definition: alignment_matrix_column_major_range_base.hpp:497
constexpr sentinel end() const noexcept=delete
Deleted end for const-qualified alignment matrix.
constexpr void before_column_iterator_increment(iter_t host_iter) noexcept
Allows to perform additional steps before incrementing the alignment-column-iterator.
Definition: alignment_matrix_column_major_range_base.hpp:465
constexpr alignment_matrix_column_major_range_base & operator=(alignment_matrix_column_major_range_base &&)=default
Defaulted.
constexpr alignment_matrix_column_major_range_base(alignment_matrix_column_major_range_base const &)=default
Defaulted.
typedef value_type
The proxy type of an alignment matrix.
Definition: alignment_matrix_column_major_range_base.hpp:419
constexpr alignment_matrix_column_major_range_base(alignment_matrix_column_major_range_base &&)=default
Defaulted.
value_type make_proxy(iter_t host_iter) noexcept
Creates the proxy value returned when dereferencing the alignment-column-iterator.
Definition: alignment_matrix_column_major_range_base.hpp:436
Provides various transformation traits used by the range module.
The internal SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
SeqAn specific customisations in the standard namespace.
t type
The type identity.
Definition: basic.hpp:107