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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
//! BGZF writer.
mod builder;
mod compression_level;
mod frame;
pub use self::{builder::Builder, compression_level::CompressionLevel};
use std::io::{self, Write};
pub(crate) use self::frame::write_frame;
use super::{gz, VirtualPosition, BGZF_HEADER_SIZE, BGZF_MAX_ISIZE};
// The max DEFLATE overhead for 65536 bytes of data at compression level 0.
//
// For zlib (and derivatives) and libdeflate, this is 10 bytes; and for miniz_oxide, 15 bytes.
const COMPRESSION_LEVEL_0_OVERHEAD: usize = 15;
// The max size of the write buffer.
//
// The buffer that uses this size is the uncompressed data that is staged to be written as a BGZF
// block. It is slightly smaller than the max allowed ISIZE to compensate for the gzip format and
// DEFLATE overheads.
pub(crate) const MAX_BUF_SIZE: usize =
BGZF_MAX_ISIZE - BGZF_HEADER_SIZE - gz::TRAILER_SIZE - COMPRESSION_LEVEL_0_OVERHEAD;
// ยง 4.1.2 End-of-file marker (2020-12-03)
pub(crate) static BGZF_EOF: &[u8] = &[
0x1f, 0x8b, // ID1, ID2
0x08, // CM = DEFLATE
0x04, // FLG = FEXTRA
0x00, 0x00, 0x00, 0x00, // MTIME = 0
0x00, // XFL = 0
0xff, // OS = 255 (unknown)
0x06, 0x00, // XLEN = 6
0x42, 0x43, // SI1, SI2
0x02, 0x00, // SLEN = 2
0x1b, 0x00, // BSIZE = 27
0x03, 0x00, // CDATA
0x00, 0x00, 0x00, 0x00, // CRC32 = 0x00000000
0x00, 0x00, 0x00, 0x00, // ISIZE = 0
];
#[cfg(feature = "libdeflate")]
pub(crate) type CompressionLevelImpl = libdeflater::CompressionLvl;
#[cfg(not(feature = "libdeflate"))]
pub(crate) type CompressionLevelImpl = flate2::Compression;
/// A BZGF writer.
///
/// This implements [`std::io::Write`], consuming uncompressed data and emitting compressed data.
///
/// # Examples
///
/// ```
/// # use std::io::{self, Write};
/// use noodles_bgzf as bgzf;
///
/// let mut writer = bgzf::Writer::new(Vec::new());
/// writer.write_all(b"noodles-bgzf")?;
///
/// let data = writer.finish()?;
/// # Ok::<(), io::Error>(())
/// ```
#[derive(Debug)]
pub struct Writer<W>
where
W: Write,
{
inner: Option<W>,
position: u64,
staging_buf: Vec<u8>,
compression_buf: Vec<u8>,
compression_level: CompressionLevelImpl,
}
impl<W> Writer<W>
where
W: Write,
{
/// Creates a writer with a default compression level.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let writer = bgzf::Writer::new(io::sink());
/// ```
pub fn new(inner: W) -> Self {
Builder::default().build_from_writer(inner)
}
/// Returns a reference to the underlying writer.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let writer = bgzf::Writer::new(io::sink());
/// let _inner = writer.get_ref();
/// ```
pub fn get_ref(&self) -> &W {
self.inner.as_ref().unwrap()
}
/// Returns the underlying writer.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let writer = bgzf::Writer::new(io::sink());
/// let _inner = writer.into_inner();
/// ```
pub fn into_inner(mut self) -> W {
self.inner.take().unwrap()
}
/// Returns the current position of the stream.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let writer = bgzf::Writer::new(io::sink());
/// assert_eq!(writer.position(), 0);
/// ```
pub fn position(&self) -> u64 {
self.position
}
/// Returns the current virtual position of the stream.
///
/// # Panics
///
/// This panics if the stream flushed >= 256 TiB of compressed data.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let writer = bgzf::Writer::new(io::sink());
/// assert_eq!(writer.virtual_position(), bgzf::VirtualPosition::from(0));
/// ```
pub fn virtual_position(&self) -> VirtualPosition {
// SAFETY: The uncompressed buffer is guaranteed to be <= `MAX_UNCOMPRESSED_POSITION`.
let uncompressed_position = self.staging_buf.len() as u16;
VirtualPosition::try_from((self.position, uncompressed_position)).unwrap()
}
fn flush_block(&mut self) -> io::Result<()> {
use crate::deflate;
let compressed_data = &mut self.compression_buf;
let crc32 = deflate::encode(&self.staging_buf, self.compression_level, compressed_data)?;
let inner = self.inner.as_mut().unwrap();
let uncompressed_len = self.staging_buf.len();
let block_size = write_frame(inner, compressed_data, crc32, uncompressed_len)?;
self.position += block_size as u64;
self.staging_buf.clear();
Ok(())
}
/// Attempts to finish the output stream by flushing any remaining buffers.
///
/// This then appends the final BGZF EOF block.
///
/// # Examples
///
/// ```
/// # use std::io::{self, Write};
/// use noodles_bgzf as bgzf;
///
/// let mut writer = bgzf::Writer::new(io::sink());
/// writer.write_all(b"noodles-bgzf")?;
///
/// writer.try_finish()?;
/// # Ok::<(), io::Error>(())
/// ```
pub fn try_finish(&mut self) -> io::Result<()> {
self.flush()?;
let inner = self.inner.as_mut().unwrap();
let result = inner.write_all(BGZF_EOF);
self.position += BGZF_EOF.len() as u64;
result
}
/// Returns the underlying writer after finishing the output stream.
///
/// This method can only be called once. Any further usage of the writer may result in a panic.
///
/// # Examples
///
/// ```
/// # use std::io::{self, Write};
/// use noodles_bgzf as bgzf;
///
/// let mut writer = bgzf::Writer::new(io::sink());
/// writer.write_all(b"noodles-bgzf")?;
///
/// let data = writer.finish()?;
/// # Ok::<(), io::Error>(())
/// ```
pub fn finish(mut self) -> io::Result<W> {
self.try_finish()?;
let inner = self.inner.take().unwrap();
Ok(inner)
}
fn remaining(&self) -> usize {
MAX_BUF_SIZE - self.staging_buf.len()
}
fn has_remaining(&self) -> bool {
self.staging_buf.len() < MAX_BUF_SIZE
}
}
impl<W> Drop for Writer<W>
where
W: Write,
{
fn drop(&mut self) {
if self.inner.is_some() {
let _ = self.try_finish();
}
}
}
impl<W> Write for Writer<W>
where
W: Write,
{
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
let amt = self.remaining().min(buf.len());
self.staging_buf.extend(&buf[..amt]);
if !self.has_remaining() {
self.flush()?;
}
Ok(amt)
}
fn flush(&mut self) -> io::Result<()> {
if self.staging_buf.is_empty() {
Ok(())
} else {
self.flush_block()
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_virtual_position() -> Result<(), Box<dyn std::error::Error>> {
let mut writer = Writer::new(Vec::new());
assert_eq!(writer.virtual_position(), VirtualPosition::from(0));
writer.write_all(b"noodles")?;
assert_eq!(
writer.virtual_position(),
VirtualPosition::try_from((0, 7))?
);
writer.flush()?;
assert_eq!(
writer.virtual_position(),
VirtualPosition::try_from((writer.get_ref().len() as u64, 0))?
);
Ok(())
}
#[test]
fn test_finish() -> io::Result<()> {
let mut writer = Writer::new(Vec::new());
writer.write_all(b"noodles")?;
let data = writer.finish()?;
let eof_start = data.len() - BGZF_EOF.len();
assert_eq!(&data[eof_start..], BGZF_EOF);
Ok(())
}
}