noodles_sam/async/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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
mod header;
use tokio::io::{self, AsyncWrite, AsyncWriteExt};
use self::header::write_header;
use crate::{Header, Record};
/// An async SAM writer.
pub struct Writer<W>
where
W: AsyncWrite,
{
inner: W,
}
impl<W> Writer<W>
where
W: AsyncWrite + Unpin,
{
/// Creates an async SAM writer.
///
/// # Examples
///
/// ```
/// use noodles_sam as sam;
/// let writer = sam::r#async::io::Writer::new(Vec::new());
/// ```
pub fn new(inner: W) -> Self {
Self { inner }
}
/// Returns a reference to the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_sam as sam;
/// let writer = sam::r#async::io::Writer::new(Vec::new());
/// assert!(writer.get_ref().is_empty());
/// ```
pub fn get_ref(&self) -> &W {
&self.inner
}
/// Returns a mutable reference to the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_sam as sam;
/// let mut writer = sam::r#async::io::Writer::new(Vec::new());
/// assert!(writer.get_mut().is_empty());
/// ```
pub fn get_mut(&mut self) -> &mut W {
&mut self.inner
}
/// Returns the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_sam as sam;
/// let writer = sam::r#async::io::Writer::new(Vec::new());
/// assert!(writer.into_inner().is_empty());
/// ```
pub fn into_inner(self) -> W {
self.inner
}
/// Writes a SAM header.
///
/// The SAM header is optional, though recommended to include. A call to this method can be
/// omitted if it is empty.
///
/// # Examples
///
/// ```
/// # use std::io;
/// #
/// # #[tokio::main]
/// # async fn main() -> io::Result<()> {
/// use noodles_sam as sam;
///
/// let mut writer = sam::r#async::io::Writer::new(Vec::new());
///
/// let header = sam::Header::builder().add_comment("noodles-sam").build();
/// writer.write_header(&header).await?;
///
/// assert_eq!(writer.get_ref(), b"@CO\tnoodles-sam\n");
/// # Ok(())
/// # }
/// ```
pub async fn write_header(&mut self, header: &Header) -> io::Result<()> {
write_header(&mut self.inner, header).await
}
/// Writes a SAM record.
///
/// # Examples
///
/// ```
/// # use std::io;
/// #
/// # #[tokio::main]
/// # async fn main() -> io::Result<()> {
/// use noodles_sam as sam;
///
/// let mut writer = sam::r#async::io::Writer::new(Vec::new());
///
/// let header = sam::Header::default();
/// let record = sam::Record::default();
/// writer.write_record(&header, &record).await?;
///
/// assert_eq!(writer.get_ref(), b"*\t4\t*\t0\t255\t*\t*\t0\t0\t*\t*\n");
/// # Ok(())
/// # }
/// ```
pub async fn write_record(&mut self, header: &Header, record: &Record) -> io::Result<()> {
self.write_alignment_record(header, record).await
}
/// Writes an alignment record.
///
/// # Examples
///
/// ```
/// # use std::io;
/// #
/// # #[tokio::main]
/// # async fn main() -> io::Result<()> {
/// use noodles_sam::{self as sam, alignment::RecordBuf};
///
/// let mut writer = sam::r#async::io::Writer::new(Vec::new());
///
/// let header = sam::Header::default();
/// let record = RecordBuf::default();
/// writer.write_alignment_record(&header, &record).await?;
///
/// assert_eq!(writer.get_ref(), b"*\t4\t*\t0\t255\t*\t*\t0\t0\t*\t*\n");
/// # Ok(())
/// # }
/// ```
pub async fn write_alignment_record(
&mut self,
header: &Header,
record: &dyn crate::alignment::Record,
) -> io::Result<()> {
use crate::io::writer::write_record;
let mut buf = Vec::new();
write_record(&mut buf, header, record)?;
self.inner.write_all(&buf).await
}
}