31namespace seqan3::detail
36struct search_configuration_validator
42 template <
typename query_t>
43 static void validate_query_type()
46 if constexpr (range_dimension_v<pure_query_t> == 1u)
48 static_assert(std::ranges::random_access_range<pure_query_t>,
49 "The query sequence must model random_access_range.");
50 static_assert(std::ranges::sized_range<pure_query_t>,
"The query sequence must model sized_range.");
54 static_assert(std::ranges::forward_range<pure_query_t>,
"The query collection must model forward_range.");
55 static_assert(std::ranges::sized_range<pure_query_t>,
"The query collection must model sized_range.");
56 static_assert(std::ranges::random_access_range<std::ranges::range_value_t<pure_query_t>>,
57 "Elements of the query collection must model random_access_range.");
58 static_assert(std::ranges::sized_range<std::ranges::range_value_t<pure_query_t>>,
59 "Elements of the query collection must model sized_range.");
102template <
typename index_t,
103 std::ranges::forward_range queries_t,
105 requires std::ranges::forward_range<std::ranges::range_reference_t<queries_t>>
106 && std::same_as<range_innermost_value_t<queries_t>,
typename index_t::alphabet_type>
110 auto updated_cfg = detail::search_configurator::add_defaults(cfg);
112 detail::search_configuration_validator::validate_query_type<queries_t>();
114 size_t queries_size = std::ranges::distance(queries);
115 auto indexed_queries =
views::zip(std::views::iota(
size_t{0}, queries_size), std::forward<queries_t>(queries));
117 using indexed_queries_t =
decltype(indexed_queries);
119 using query_t = std::ranges::range_reference_t<indexed_queries_t>;
120 auto [algorithm, complete_config] = detail::search_configurator::configure_algorithm<query_t>(updated_cfg, index);
122 using complete_configuration_t =
decltype(complete_config);
123 using traits_t = detail::search_traits<complete_configuration_t>;
124 using algorithm_result_t =
typename traits_t::search_result_type;
126 detail::execution_handler_parallel,
127 detail::execution_handler_sequential>;
132 if constexpr (std::same_as<execution_handler_t, detail::execution_handler_parallel>)
134 auto thread_count = parallel.thread_count;
136 throw std::runtime_error{
"You must configure the number of threads in seqan3::search_cfg::parallel."};
138 return execution_handler_t{*thread_count};
142 return execution_handler_t{};
147 if constexpr (traits_t::has_user_callback)
149 select_execution_handler().bulk_execute(algorithm,
151 get<search_cfg::on_result>(complete_config).callback);
155 using executor_t = detail::algorithm_executor_blocking<indexed_queries_t,
158 execution_handler_t>;
161 std::move(algorithm),
162 algorithm_result_t{},
163 select_execution_handler()}};
170template <
typename index_t,
171 std::ranges::forward_range queries_t,
173 requires std::ranges::forward_range<std::ranges::range_reference_t<queries_t>>
174 && (!std::same_as<range_innermost_value_t<queries_t>,
typename index_t::alphabet_type>)
175inline auto search(queries_t && queries,
176 index_t
const & index,
179 static_assert(std::convertible_to<range_innermost_value_t<queries_t>,
typename index_t::alphabet_type>,
180 "The alphabet of the text collection must be convertible to the alphabet of the index.");
182 if constexpr (range_dimension_v<queries_t> == 2u)
183 return search(queries | views::deep{views::convert<typename index_t::alphabet_type>}, index, cfg);
185 return search(queries | views::convert<typename index_t::alphabet_type>, index, cfg);
190template <
typename index_t,
191 std::ranges::forward_range query_t,
196 return search(std::views::single(std::forward<query_t>(query)), index, cfg);
200template <
typename index_t,
typename configuration_t = decltype(search_cfg::default_configuration)>
201inline auto search(
char const *
const queries,
202 index_t
const & index,
209template <
typename index_t,
typename configuration_t = decltype(search_cfg::default_configuration)>
211 index_t
const & index,
215 query.
reserve(std::ranges::size(queries));
217 [&query](
char const *
const q)
221 return search(std::move(query) | seqan3::detail::all, index, cfg);
Provides seqan3::detail::algorithm_executor_blocking.
Provides seqan3::detail::algorithm_result_generator_range.
Provides seqan3::detail::all.
An input range over the algorithm results generated by the underlying algorithm executor.
Definition: algorithm_result_generator_range.hpp:48
Provides seqan3::configuration and utility functions.
Provides seqan3::views::deep.
Provides the default configuration for the seqan3::search() interface.
seqan3::detail::parallel_mode< std::integral_constant< detail::search_config_id, detail::search_config_id::parallel > > parallel
Enables the parallel execution of the search algorithm if possible for the given configuration.
Definition: parallel.hpp:35
constexpr configuration default_configuration
The default configuration: Compute all exact matches.
Definition: default_configuration.hpp:29
auto search(queries_t &&queries, index_t const &index, configuration_t const &cfg=search_cfg::default_configuration)
Search a query or a range of queries in an index.
Definition: search.hpp:108
seqan::std::views::zip zip
A view adaptor that takes several views and returns tuple-like values from every i-th element of each...
Definition: zip.hpp:27
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Provides seqan3::search_cfg::on_result.
Provides seqan3::search_cfg::parallel configuration.
Provides seqan3::detail::search_configurator.
Provides seqan3::detail::search_traits.
Provides seqan3::views::convert.
Provides seqan3::views::zip.