noodles_tabix/io/writer.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
mod index;
use std::io::{self, Write};
use noodles_bgzf as bgzf;
use self::index::write_index;
use crate::Index;
/// A tabix writer.
pub struct Writer<W>
where
W: Write,
{
inner: bgzf::Writer<W>,
}
impl<W> Writer<W>
where
W: Write,
{
/// Creates a tabix writer.
///
/// # Examples
///
/// ```
/// use noodles_tabix as tabix;
/// let writer = tabix::io::Writer::new(Vec::new());
/// ```
pub fn new(writer: W) -> Self {
Self {
inner: bgzf::Writer::new(writer),
}
}
/// Returns a reference to the underlying writer.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_tabix as tabix;
/// let writer = tabix::io::Writer::new(io::sink());
/// let _inner = writer.get_ref();
/// ```
pub fn get_ref(&self) -> &bgzf::Writer<W> {
&self.inner
}
/// Returns a mutable reference to the underlying writer.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_tabix as tabix;
/// let mut writer = tabix::io::Writer::new(io::sink());
/// let _inner = writer.get_mut();
/// ```
pub fn get_mut(&mut self) -> &mut bgzf::Writer<W> {
&mut self.inner
}
/// Returns the underlying writer.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_tabix as tabix;
/// let writer = tabix::io::Writer::new(io::sink());
/// let _inner = writer.into_inner();
/// ```
pub fn into_inner(self) -> bgzf::Writer<W> {
self.inner
}
/// Attempts to finish the output stream.
///
/// This is typically only manually called if the underlying stream is needed before the writer
/// is dropped.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_tabix as tabix;
/// let mut writer = tabix::io::Writer::new(Vec::new());
/// writer.try_finish()?;
/// # Ok::<(), io::Error>(())
/// ```
pub fn try_finish(&mut self) -> io::Result<()> {
self.inner.try_finish()
}
/// Writes a tabix index.
///
/// # Examples
///
/// ```
/// use noodles_csi::binning_index::index::Header;
/// use noodles_tabix as tabix;
///
/// let mut writer = tabix::io::Writer::new(Vec::new());
/// let index = tabix::Index::builder().set_header(Header::default()).build();
/// writer.write_index(&index)?;
/// # Ok::<(), std::io::Error>(())
/// ```
pub fn write_index(&mut self, index: &Index) -> io::Result<()> {
write_index(&mut self.inner, index)
}
}