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>
38template <std::ranges::forward_range ref_t, std::ranges::forward_range query_t>
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());
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);
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."};
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."};
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."};
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>
bool starts_with(ref_t &&reference, query_t &&query)
Check whether the query range is a prefix of the reference range.
Definition misc_input.hpp:39
auto make_secondary_istream(std::basic_istream< char_t > &primary_stream, std::filesystem::path &filename) -> std::unique_ptr< std::basic_istream< char_t >, std::function< void(std::basic_istream< char_t > *)> >
Depending on the magic bytes of the given stream, return a decompression stream or forward the primar...
Definition misc_input.hpp:73
Provides exceptions used in the I/O module.
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
A tag signifying a bgzf compressed file.
Definition magic_header.hpp:62
static bool validate_header(std::span< char_t, extend > header)
Checks if the given header is a bgzf header.
Definition magic_header.hpp:95
static constexpr std::array< char, 18 > magic_header
The magic byte sequence to disambiguate bgzf compressed files.
Definition magic_header.hpp:67
A tag signifying a bz2 compressed file.
Definition magic_header.hpp:40
static constexpr std::array< char, 3 > magic_header
The magic byte sequence to disambiguate bz2 compressed files.
Definition magic_header.hpp:45
A tag signifying a gz compressed file.
Definition magic_header.hpp:29
static constexpr std::array< char, 3 > magic_header
The magic byte sequence to disambiguate gz compressed files.
Definition magic_header.hpp:34
static constexpr std::array< char, 4 > magic_header
The magic byte sequence to disambiguate zstd compressed files.
Definition magic_header.hpp:56
Thrown if there is an unspecified filesystem or stream error while opening, e.g. permission problem.
Definition io/exception.hpp:36
Provides concepts that do not have equivalents in C++20.