SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
alphabet_variant.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2025 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2025 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
12#pragma once
13
14#include <algorithm>
15#include <array>
16#include <cassert>
17#include <span>
18#include <utility>
19#include <variant>
20
25
26namespace seqan3::detail
27{
28
30template <typename t, size_t extent = std::dynamic_extent>
31struct is_span : std::false_type
32{};
33
35template <typename t, size_t extent>
36struct is_span<std::span<t, extent>> : std::true_type
37{};
39
41template <typename other_t, typename... alternative_types>
42inline constexpr bool variant_general_guard =
43 (!std::same_as<other_t, alphabet_variant<alternative_types...>>)
44 && (!std::is_base_of_v<alphabet_variant<alternative_types...>, other_t>)
45 && (!(std::same_as<other_t, alternative_types> || ...))
46 && (!list_traits::contains<alphabet_variant<alternative_types...>, recursive_required_types_t<other_t>>);
47
49template <typename lhs_t, typename rhs_t, bool lhs_rhs_switched, typename... alternative_types>
50inline constexpr bool variant_comparison_guard =
51 (instantiate_if_v<lazy<weakly_equality_comparable_with_trait, rhs_t, alternative_types>,
52 (std::same_as<lhs_t, alphabet_variant<alternative_types...>>)
53 && (variant_general_guard<rhs_t, alternative_types...>)
54 && !(lhs_rhs_switched && is_type_specialisation_of_v<rhs_t, alphabet_variant>)>
55 || ...);
56} // namespace seqan3::detail
57
58namespace seqan3
59{
60
120template <typename... alternative_types>
121 requires (detail::writable_constexpr_alphabet<alternative_types> && ...) && (std::regular<alternative_types> && ...)
122 && (sizeof...(alternative_types) >= 2)
124 public alphabet_base<alphabet_variant<alternative_types...>,
125 (static_cast<size_t>(alphabet_size<alternative_types>) + ...),
126 char>
127{
128private:
131 (static_cast<size_t>(alphabet_size<alternative_types>) + ...),
132 char>;
133
134 static_assert((std::is_same_v<alphabet_char_t<alternative_types>, char> && ...),
135 "The alphabet_variant is currently only tested for alphabets with char_type char. "
136 "Contact us on GitHub if you have a different use case: https://github.com/seqan/seqan3 .");
137
139 friend base_t;
140
143
144 static_assert(((seqan3::list_traits::count<alternative_types, alternatives> == 1) && ... && true),
145 "All types in a alphabet_variant must be distinct.");
146
149
150public:
153 using base_t::to_char;
154 using base_t::to_rank;
155
167 using seqan3_recursive_required_types = list_traits::concat<
169 detail::transformation_trait_or_t<detail::recursive_required_types<alternative_types>, type_list<>>...>;
170
178 template <typename alternative_t>
179 static constexpr bool is_alternative() noexcept
180 {
182 }
183
193
203 requires (!std::same_as<alternative_t, alphabet_variant>) && (!detail::is_span<alternative_t>::value)
204 && (!std::is_base_of_v<alphabet_variant, alternative_t>)
205 && (!list_traits::contains<
207 detail::transformation_trait_or_t<detail::recursive_required_types<alternative_t>, type_list<>>>)
213
232 template <typename indirect_alternative_t>
233 requires (!detail::is_span<indirect_alternative_t>::value)
234 && ((
235 detail::instantiate_if_v<detail::lazy<std::is_convertible, indirect_alternative_t, alternative_types>,
236 detail::variant_general_guard<indirect_alternative_t, alternative_types...>>
237 || ...))
239 {
240 using alternative_predicate = detail::implicitly_convertible_from<indirect_alternative_t>;
241 constexpr auto alternative_position =
242 seqan3::list_traits::find_if<alternative_predicate::template invoke, alternatives>;
244 assign_rank(rank_by_type_(alternative_t(rhs)));
245 }
246
263 template <typename indirect_alternative_t>
264 requires (
265 (!(detail::instantiate_if_v<detail::lazy<std::is_convertible, indirect_alternative_t, alternative_types>,
266 detail::variant_general_guard<indirect_alternative_t, alternative_types...>>
267 || ...))
268 && (detail::instantiate_if_v<detail::lazy<std::is_constructible, alternative_types, indirect_alternative_t>,
269 detail::variant_general_guard<indirect_alternative_t, alternative_types...>>
270 || ...))
271 constexpr explicit alphabet_variant(indirect_alternative_t const rhs) noexcept
272 {
273 using alternative_predicate = detail::constructible_from<indirect_alternative_t>;
274 constexpr auto alternative_position =
275 seqan3::list_traits::find_if<alternative_predicate::template invoke, alternatives>;
277 assign_rank(rank_by_type_(alternative_t(rhs)));
278 }
279
291 template <typename indirect_alternative_t>
292 requires (detail::variant_general_guard<indirect_alternative_t, alternative_types...>
294 constexpr alphabet_variant & operator=(indirect_alternative_t const & rhs) noexcept
295 {
296 using alternative_predicate = detail::assignable_from<indirect_alternative_t>;
297 constexpr auto alternative_position =
298 seqan3::list_traits::find_if<alternative_predicate::template invoke, alternatives>;
302 assign_rank(rank_by_type_(alternative));
303 return *this;
304 }
306
316 template <size_t index>
318 {
319 static_assert(index < alphabet_size, "The alphabet_variant contains less alternatives than you are checking.");
320 return (to_rank() >= partial_sum_sizes[index]) && (to_rank() < partial_sum_sizes[index + 1]);
321 }
322
329 template <size_t index>
330 constexpr auto convert_to() const
331 {
333 }
334
340 template <size_t index>
342 {
344 }
346
355 template <typename alternative_t>
358 {
359 constexpr size_t index = seqan3::list_traits::find<alternative_t, alternatives>;
361 }
362
369 template <typename alternative_t>
372 {
373 constexpr size_t index = seqan3::list_traits::find<alternative_t, alternatives>;
375 }
376
382 template <typename alternative_t>
385 {
386 constexpr size_t index = seqan3::list_traits::find<alternative_t, alternatives>;
388 }
390
413 template <typename alphabet_variant_t, typename indirect_alternative_type>
414 requires (!detail::is_span<alphabet_variant_t>::value)
415 && (detail::variant_comparison_guard<alphabet_variant_t,
417 false,
419 friend constexpr bool operator==(alphabet_variant_t const lhs, indirect_alternative_type const rhs) noexcept
420 {
421 using alternative_predicate = detail::weakly_equality_comparable_with_<indirect_alternative_type>;
422 constexpr auto alternative_position =
423 seqan3::list_traits::find_if<alternative_predicate::template invoke, alternatives>;
425 return lhs.template holds_alternative<alternative_t>()
426 && (lhs.template convert_unsafely_to<alternative_t>() == rhs);
427 }
428
430 template <typename alphabet_variant_t, typename indirect_alternative_type>
431 requires (!detail::is_span<alphabet_variant_t>::value)
432 && (detail::variant_comparison_guard<alphabet_variant_t,
434 false,
436 friend constexpr bool operator!=(alphabet_variant_t const lhs, indirect_alternative_type const rhs) noexcept
437 {
438 return !(lhs == rhs);
439 }
440
442 template <typename alphabet_variant_t, typename indirect_alternative_type, typename = void>
443 requires (!detail::is_span<alphabet_variant_t>::value)
444 && (detail::variant_comparison_guard<alphabet_variant_t,
446 true,
448 friend constexpr bool operator==(indirect_alternative_type const lhs, alphabet_variant_t const rhs) noexcept
449 {
450 return rhs == lhs;
451 }
452
454 template <typename alphabet_variant_t, typename indirect_alternative_type, typename = void>
455 requires (!detail::is_span<alphabet_variant_t>::value)
456 && (detail::variant_comparison_guard<alphabet_variant_t,
458 true,
460 friend constexpr bool operator!=(indirect_alternative_type const lhs, alphabet_variant_t const rhs) noexcept
461 {
462 return rhs != lhs;
463 }
465
470 static constexpr bool char_is_valid(char_type const chr) noexcept
471 {
472 using index_t = std::make_unsigned_t<char_type>;
473 return first_valid_char_table[static_cast<index_t>(chr)] < sizeof...(alternative_types);
474 }
475
476protected:
478
483 template <size_t index, bool throws>
484 constexpr auto convert_impl() const noexcept(!throws) -> seqan3::list_traits::at<index, alternatives>
485 {
486 static_assert(index < alphabet_size, "The alphabet_variant contains less alternatives than you are checking.");
488
489 if constexpr (throws)
490 {
491 if (!holds_alternative<index>()) // [[unlikely]]
492 {
494 }
495 }
496
497 return seqan3::assign_rank_to(to_rank() - partial_sum_sizes[index], alternative_t{});
498 }
499
505 template <size_t index, typename alternative_t>
506 requires (is_alternative<alternative_t>())
507 static constexpr rank_type rank_by_index_(alternative_t const & alternative) noexcept
508 {
509 return partial_sum_sizes[index] + static_cast<rank_type>(seqan3::to_rank(alternative));
510 }
511
517 template <typename alternative_t>
518 requires (is_alternative<alternative_t>())
519 static constexpr rank_type rank_by_type_(alternative_t const & alternative) noexcept
520 {
521 constexpr size_t index = seqan3::list_traits::find<alternative_t, alternatives>;
522 return rank_by_index_<index>(alternative);
523 }
524
531 static constexpr char_type rank_to_char(rank_type const rank)
532 {
533 return rank_to_char_table[rank];
534 }
535
542 static constexpr rank_type char_to_rank(char_type const chr)
543 {
544 using index_t = std::make_unsigned_t<char_type>;
545 return char_to_rank_table[static_cast<index_t>(chr)];
546 }
547
555 static constexpr std::array<rank_type, sizeof...(alternative_types) + 1> partial_sum_sizes{
556 []() constexpr
557 {
558 constexpr size_t N = sizeof...(alternative_types) + 1;
559
561
562 for (size_t i = 1u; i < N; ++i)
563 partial_sum[i] += partial_sum[i - 1];
564
565 return partial_sum;
566 }()};
567
569 static constexpr std::array<char_type, alphabet_size> rank_to_char_table{
570 []() constexpr
571 {
572 auto assign_value_to_char = [](auto alternative, auto & value_to_char, auto & value) constexpr
573 {
574 using alternative_t = std::decay_t<decltype(alternative)>;
575 for (size_t i = 0u; i < seqan3::alphabet_size<alternative_t>; ++i, ++value)
576 value_to_char[value] = seqan3::to_char(seqan3::assign_rank_to(i, alternative));
577 };
578
579 size_t value{};
581
582 // initializer lists guarantee sequencing;
583 // the following expression behaves as:
584 // for(auto alternative: alternative_types)
585 // assign_rank_to_char(alternative, rank_to_char, value);
586 ((assign_value_to_char(alternative_types{}, value_to_char, value)), ...);
587
588 return value_to_char;
589 }()};
590
594 static constexpr auto first_valid_char_table{
595 []() constexpr
596 {
597 constexpr size_t alternative_size = sizeof...(alternative_types);
598 constexpr size_t table_size = detail::size_in_values_v<char_type>;
599 using first_alphabet_t = detail::min_viable_uint_t<alternative_size>;
600
602
603 for (size_t i = 0u; i < table_size; ++i)
604 {
605 char_type chr = static_cast<char_type>(i);
606
607 std::array<bool, alternative_size> valid_chars{char_is_valid_for<alternative_types>(chr)...};
608
609 auto found_it = std::find(valid_chars.begin(), valid_chars.end(), true);
610 lookup_table[i] = found_it - valid_chars.begin();
611 }
612
613 return lookup_table;
614 }()};
615
617 static constexpr std::array<rank_type, detail::size_in_values_v<char_type>> char_to_rank_table{
618 []() constexpr
619 {
620 constexpr size_t alternative_size = sizeof...(alternative_types);
621 constexpr size_t table_size = detail::size_in_values_v<char_type>;
622
624
625 for (size_t i = 0u; i < table_size; ++i)
626 {
627 char_type chr = static_cast<char_type>(i);
628
630 rank_by_type_(assign_char_to(chr, alternative_types{}))...};
631
632 // if no char_is_valid_for any alternative, use the rank of the first alternative
633 char_to_rank[i] = first_valid_char_table[i] < alternative_size ? ranks[first_valid_char_table[i]] : 0;
634 }
635
636 return char_to_rank;
637 }()};
638};
639
640} // namespace seqan3
Provides implementation detail for seqan3::alphabet_variant and seqan3::alphabet_tuple_base.
Provides seqan3::alphabet_base.
A CRTP-base that makes defining a custom alphabet easier.
Definition alphabet_base.hpp:54
constexpr rank_type to_rank() const noexcept
Return the letter's numeric value (rank in the alphabet).
Definition alphabet_base.hpp:134
detail::min_viable_uint_t< size - 1 > rank_type
The type of the alphabet when represented as a number (e.g. via to_rank()).
Definition alphabet_base.hpp:77
static constexpr detail::min_viable_uint_t< size > alphabet_size
The size of the alphabet, i.e. the number of different values it can take.
Definition alphabet_base.hpp:196
constexpr char_type to_char() const noexcept
Return the letter as a character of char_type.
Definition alphabet_base.hpp:112
std::conditional_t< std::same_as< char, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition alphabet_base.hpp:69
constexpr alphabet_variant< alternative_types... > & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition alphabet_base.hpp:184
A combined alphabet that can hold values of either of its alternatives..
Definition alphabet_variant.hpp:127
static constexpr bool char_is_valid(char_type const chr) noexcept
Validate whether a character is valid in the combined alphabet.
Definition alphabet_variant.hpp:470
static constexpr bool is_alternative() noexcept
Returns true if alternative_t is one of the given alternative types.
Definition alphabet_variant.hpp:179
constexpr alternative_t convert_to() const
Convert to the specified alphabet (throws if holds_alternative() would be false).
Definition alphabet_variant.hpp:370
friend constexpr bool operator!=(indirect_alternative_type const lhs, alphabet_variant_t const rhs) noexcept
(In-)Equality comparison against types comparable with alternatives but not convertible to the varian...
Definition alphabet_variant.hpp:460
constexpr bool holds_alternative() const noexcept
Whether the variant alphabet currently holds a value of the given alternative.
Definition alphabet_variant.hpp:317
constexpr alphabet_variant(indirect_alternative_t const rhs) noexcept
Constructor for arguments implicitly convertible to an alternative.
Definition alphabet_variant.hpp:238
constexpr bool holds_alternative() const noexcept
Whether the variant alphabet currently holds a value of the given alternative.
Definition alphabet_variant.hpp:356
constexpr alphabet_variant(indirect_alternative_t const rhs) noexcept
Constructor for arguments explicitly (but not implicitly) convertible to an alternative.
Definition alphabet_variant.hpp:271
constexpr alternative_t convert_unsafely_to() const noexcept
Convert to the specified alphabet (undefined behaviour if holds_alternative() would be false).
Definition alphabet_variant.hpp:383
friend constexpr bool operator!=(alphabet_variant_t const lhs, indirect_alternative_type const rhs) noexcept
(In-)Equality comparison against types comparable with alternatives but not convertible to the varian...
Definition alphabet_variant.hpp:436
friend constexpr bool operator==(indirect_alternative_type const lhs, alphabet_variant_t const rhs) noexcept
(In-)Equality comparison against types comparable with alternatives but not convertible to the varian...
Definition alphabet_variant.hpp:448
constexpr auto convert_to() const
Convert to the specified alphabet (throws if holds_alternative() would be false).
Definition alphabet_variant.hpp:330
friend constexpr bool operator==(alphabet_variant_t const lhs, indirect_alternative_type const rhs) noexcept
(In-)Equality comparison against types comparable with alternatives but not convertible to the varian...
Definition alphabet_variant.hpp:419
constexpr alphabet_variant() noexcept=default
Defaulted.
constexpr auto convert_unsafely_to() const noexcept
Convert to the specified alphabet (undefined behaviour if holds_alternative() would be false).
Definition alphabet_variant.hpp:341
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
T find(T... args)
constexpr auto assign_char_to
Assign a character to an alphabet object.
Definition alphabet/concept.hpp:517
constexpr auto to_char
Return the char representation of an alphabet object.
Definition alphabet/concept.hpp:381
constexpr auto assign_rank_to
Assign a rank to an alphabet object.
Definition alphabet/concept.hpp:288
constexpr auto to_rank
Return the rank representation of a (semi-)alphabet object.
Definition alphabet/concept.hpp:152
decltype(detail::concat(lists_t{}...)) concat
Join two seqan3::type_list s into one.
Definition type_list/traits.hpp:339
constexpr bool contains
Whether a type occurs in a type list or not.
Definition type_list/traits.hpp:249
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
constexpr bool contains
Whether a type occurs in a pack or not.
Definition type_pack/traits.hpp:220
T is_base_of_v
Provides lazy template instantiation traits.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
T partial_sum(T... args)
Type that contains multiple types.
Definition type_list.hpp:26
Provides traits for seqan3::type_list.
Hide me