21#include <seqan3/contrib/stream/bgzf.hpp>
22#include <seqan3/contrib/stream/bgzf_istream.hpp>
23#include <seqan3/contrib/stream/bgzf_stream_util.hpp>
24#include <seqan3/contrib/stream/bz2_istream.hpp>
25#include <seqan3/contrib/stream/gz_istream.hpp>
30namespace seqan3::detail
38template <std::ranges::forward_range ref_t, std::ranges::forward_range query_t>
39inline bool starts_with(ref_t && reference, query_t && query)
40 requires std::equality_comparable_with<std::ranges::range_reference_t<ref_t>,
41 std::ranges::range_reference_t<query_t>>
44 auto rend = std::ranges::end(reference);
47 auto qend = std::ranges::end(query);
72template <builtin_
character
char_t>
76 assert(primary_stream.good());
88 std::array<char, bgzf_compression::magic_header.
size()> magic_number{};
89 size_t read_chars = 0;
90 for (; read_chars < magic_number.size(); ++read_chars)
95 magic_number[read_chars] = *it;
100 for (
size_t i = 0; i < read_chars; ++i)
101 primary_stream.unget();
103 assert(primary_stream.good() &&
"`unget()` was called too many times on primary_stream.");
106 if (filename.has_extension())
107 extension = filename.extension().
string().substr(1);
110 [[maybe_unused]]
auto contains_extension = [](
auto compression_tag,
auto const & extension)
constexpr
113 != std::ranges::end(
decltype(compression_tag)::file_extensions);
117 if (read_chars == magic_number.size() && bgzf_compression::validate_header(
std::span{magic_number}))
120 if (contains_extension(gz_compression{}, extension) || contains_extension(bgzf_compression{}, extension))
121 filename.replace_extension();
123 return {
new contrib::basic_bgzf_istream<char_t>{primary_stream}, stream_deleter_default};
125 throw file_open_error{
"Trying to read from a bgzf file, but no ZLIB available."};
128 else if (starts_with(magic_number, gz_compression::magic_header))
131 if (contains_extension(gz_compression{}, extension) || contains_extension(bgzf_compression{}, extension))
132 filename.replace_extension();
134 return {
new contrib::basic_gz_istream<char_t>{primary_stream}, stream_deleter_default};
136 throw file_open_error{
"Trying to read from a gzipped file, but no ZLIB available."};
139 else if (starts_with(magic_number, bz2_compression::magic_header))
142 if (contains_extension(bz2_compression{}, extension))
143 filename.replace_extension();
145 return {
new contrib::basic_bz2_istream<char_t>{primary_stream}, stream_deleter_default};
147 throw file_open_error{
"Trying to read from a bzipped file, but no libbz2 available."};
150 else if (starts_with(magic_number, zstd_compression::magic_header))
152 throw file_open_error{
"Trying to read from a zst'ed file, but SeqAn does not yet support this."};
155 return {&primary_stream, stream_deleter_noop};
159template <builtin_
character
char_t>
163 return make_secondary_istream(primary_stream, p);
Provides exceptions used in the I/O module.
Provides concepts that do not have equivalents in C++20.