use std::{
fs::File,
io::{self, BufWriter, Write},
path::Path,
};
use noodles_bcf as bcf;
use noodles_bgzf as bgzf;
use noodles_vcf as vcf;
use super::Writer;
use crate::variant::io::{CompressionMethod, Format};
#[derive(Default)]
pub struct Builder {
compression_method: Option<Option<CompressionMethod>>,
format: Option<Format>,
}
impl Builder {
pub fn set_compression_method(mut self, compression_method: Option<CompressionMethod>) -> Self {
self.compression_method = Some(compression_method);
self
}
pub fn set_format(mut self, format: Format) -> Self {
self.format = Some(format);
self
}
pub fn build_from_path<P>(mut self, src: P) -> io::Result<Writer<File>>
where
P: AsRef<Path>,
{
let src = src.as_ref();
if self.compression_method.is_none() {
self.compression_method = Some(detect_compression_method_from_path_extension(src));
}
if self.format.is_none() {
self.format = detect_format_from_path_extension(src);
}
let file = File::create(src)?;
Ok(self.build_from_writer(file))
}
pub fn build_from_writer<W>(self, writer: W) -> Writer<W>
where
W: Write,
{
use super::Inner;
let format = self.format.unwrap_or(Format::Vcf);
let compression_method = match self.compression_method {
Some(compression_method) => compression_method,
None => match format {
Format::Vcf => None,
Format::Bcf => Some(CompressionMethod::Bgzf),
},
};
let inner = match (format, compression_method) {
(Format::Bcf, None) => Inner::Bcf(bcf::io::Writer::new(writer)),
(Format::Bcf, Some(CompressionMethod::Bgzf)) => {
Inner::BcfRaw(bcf::io::Writer::from(BufWriter::new(writer)))
}
(Format::Vcf, None) => Inner::Vcf(vcf::io::Writer::new(BufWriter::new(writer))),
(Format::Vcf, Some(CompressionMethod::Bgzf)) => {
Inner::VcfGz(vcf::io::Writer::new(bgzf::io::Writer::new(writer)))
}
};
Writer(inner)
}
}
pub(crate) fn detect_format_from_path_extension<P>(path: P) -> Option<Format>
where
P: AsRef<Path>,
{
let path = path.as_ref();
match path.extension().and_then(|ext| ext.to_str()) {
Some("vcf") => Some(Format::Vcf),
Some("bcf") => Some(Format::Bcf),
Some("gz" | "bgz") => {
let file_stem = path.file_stem().and_then(|stem| stem.to_str())?;
file_stem.ends_with("vcf").then_some(Format::Vcf)
}
_ => None,
}
}
pub(crate) fn detect_compression_method_from_path_extension<P>(path: P) -> Option<CompressionMethod>
where
P: AsRef<Path>,
{
match path.as_ref().extension().and_then(|ext| ext.to_str()) {
Some("bcf" | "gz" | "bgz") => Some(CompressionMethod::Bgzf),
_ => None,
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_detect_compression_method_from_path_extension() {
assert_eq!(
detect_compression_method_from_path_extension("out.vcf"),
None
);
assert_eq!(
detect_compression_method_from_path_extension("out.vcf.gz"),
Some(CompressionMethod::Bgzf),
);
assert_eq!(
detect_compression_method_from_path_extension("out.bcf"),
Some(CompressionMethod::Bgzf)
);
}
#[test]
fn test_detect_format_from_path_extension() {
assert_eq!(
detect_format_from_path_extension("out.vcf"),
Some(Format::Vcf)
);
assert_eq!(
detect_format_from_path_extension("out.vcf.gz"),
Some(Format::Vcf)
);
assert_eq!(
detect_format_from_path_extension("out.bcf"),
Some(Format::Bcf)
);
assert!(detect_format_from_path_extension("out.bcf.gz").is_none());
assert!(detect_format_from_path_extension("out.fa").is_none());
}
}