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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
//! BGZF reader.
mod builder;
pub(crate) mod frame;
pub use self::builder::Builder;
use std::io::{self, BufRead, Read, Seek, SeekFrom};
use super::{gzi, Block, VirtualPosition, BGZF_MAX_ISIZE};
/// A BGZF reader.
///
/// The reader implements both [`std::io::Read`] and [`std::io::BufRead`], consuming compressed
/// data and emitting uncompressed data. It is internally buffered by a single block, and to
/// correctly track (virtual) positions, the reader _cannot_ be double buffered (e.g., using
/// [`std::io::BufReader`]).
///
/// # Examples
///
/// ```no_run
/// # use std::{fs::File, io::{self, Read}};
/// use noodles_bgzf as bgzf;
/// let mut reader = File::open("data.gz").map(bgzf::Reader::new)?;
/// let mut data = Vec::new();
/// reader.read_to_end(&mut data)?;
/// # Ok::<(), io::Error>(())
/// ```
pub struct Reader<R> {
inner: R,
buf: Vec<u8>,
position: u64,
block: Block,
}
impl<R> Reader<R> {
/// Returns a reference to the underlying reader.
///
/// # Examples
///
/// ```
/// use noodles_bgzf as bgzf;
/// let data = [];
/// let reader = bgzf::Reader::new(&data[..]);
/// assert!(reader.get_ref().is_empty());
/// ```
pub fn get_ref(&self) -> &R {
&self.inner
}
/// Returns a mutable reference to the underlying reader.
///
/// # Examples
///
/// ```
/// use noodles_bgzf as bgzf;
/// let data = [];
/// let mut reader = bgzf::Reader::new(&data[..]);
/// assert!(reader.get_mut().is_empty());
/// ```
pub fn get_mut(&mut self) -> &mut R {
&mut self.inner
}
/// Unwraps and returns the underlying writer.
///
/// # Examples
///
/// ```
/// use noodles_bgzf as bgzf;
/// let data = [];
/// let reader = bgzf::Reader::new(&data[..]);
/// assert!(reader.into_inner().is_empty());
/// ```
pub fn into_inner(self) -> R {
self.inner
}
}
impl<R> Reader<R>
where
R: Read,
{
/// Creates a BGZF reader.
///
/// # Examples
///
/// ```
/// use noodles_bgzf as bgzf;
/// let data = [];
/// let reader = bgzf::Reader::new(&data[..]);
/// ```
pub fn new(inner: R) -> Self {
Builder.build_from_reader(inner)
}
/// Returns the current position of the stream.
///
/// # Examples
///
/// ```
/// use noodles_bgzf as bgzf;
/// let data = [];
/// let reader = bgzf::Reader::new(&data[..]);
/// assert_eq!(reader.position(), 0);
/// ```
pub fn position(&self) -> u64 {
self.position
}
/// Returns the current virtual position of the stream.
///
/// # Examples
///
/// ```
/// use noodles_bgzf as bgzf;
/// let data = [];
/// let reader = bgzf::Reader::new(&data[..]);
/// assert_eq!(reader.virtual_position(), bgzf::VirtualPosition::from(0));
/// ```
pub fn virtual_position(&self) -> VirtualPosition {
self.block.virtual_position()
}
fn read_nonempty_block_with<F>(&mut self, mut f: F) -> io::Result<usize>
where
F: FnMut(&[u8], &mut Block) -> io::Result<()>,
{
use self::frame::read_frame_into;
while read_frame_into(&mut self.inner, &mut self.buf)?.is_some() {
f(&self.buf, &mut self.block)?;
self.block.set_position(self.position);
self.position += self.block.size();
if self.block.data().len() > 0 {
break;
}
}
Ok(self.block.data().len())
}
fn read_block(&mut self) -> io::Result<usize> {
use self::frame::parse_block;
self.read_nonempty_block_with(parse_block)
}
fn read_block_into_buf(&mut self, buf: &mut [u8]) -> io::Result<usize> {
use self::frame::parse_block_into_buf;
self.read_nonempty_block_with(|src, block| parse_block_into_buf(src, block, buf))
}
}
impl<R> Reader<R>
where
R: Read + Seek,
{
/// Seeks the stream to the given virtual position.
///
/// The underlying stream's cursor is first moved the the compressed position. A block is read,
/// decompressed, and has its own cursor moved to the uncompressed position.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let mut reader = bgzf::Reader::new(io::empty());
/// let virtual_position = bgzf::VirtualPosition::MIN;
/// reader.seek(virtual_position)?;
/// # Ok::<(), io::Error>(())
/// ```
pub fn seek(&mut self, pos: VirtualPosition) -> io::Result<VirtualPosition> {
let (cpos, upos) = pos.into();
self.inner.seek(SeekFrom::Start(cpos))?;
self.position = cpos;
self.read_block()?;
self.block.data_mut().set_position(usize::from(upos));
Ok(pos)
}
/// Seeks the stream to the given uncompressed position.
///
/// # Examples
///
/// ```
/// # use std::io;
/// use noodles_bgzf as bgzf;
/// let mut reader = bgzf::Reader::new(io::empty());
/// let index = vec![(0, 0)];
/// reader.seek_by_uncompressed_position(&index, 0)?;
/// # Ok::<_, io::Error>(())
/// ```
pub fn seek_by_uncompressed_position(
&mut self,
index: &gzi::Index,
pos: u64,
) -> io::Result<u64> {
assert!(!index.is_empty());
let i = index.partition_point(|r| r.1 <= pos);
// SAFETY: `i` is > 0.
let record = index[i - 1];
let cpos = record.0;
self.inner.seek(SeekFrom::Start(cpos))?;
self.position = cpos;
self.read_block()?;
let upos = usize::try_from(pos - record.1)
.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
self.block.data_mut().set_position(upos);
Ok(pos)
}
}
impl<R> Read for Reader<R>
where
R: Read,
{
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
// If a new block is about to be read and the given buffer is guaranteed to be larger than
// the next block, reading to the block buffer can be skipped. The uncompressed data is
// decoded into the given buffer to avoid having to subsequently recopy it from the block.
if !self.block.data().has_remaining() && buf.len() >= BGZF_MAX_ISIZE {
self.read_block_into_buf(buf)
} else {
let mut src = self.fill_buf()?;
let amt = src.read(buf)?;
self.consume(amt);
Ok(amt)
}
}
fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> {
if let Some(src) = self.block.data().as_ref().get(..buf.len()) {
buf.copy_from_slice(src);
self.consume(src.len());
Ok(())
} else {
default_read_exact(self, buf)
}
}
}
impl<R> BufRead for Reader<R>
where
R: Read,
{
fn consume(&mut self, amt: usize) {
self.block.data_mut().consume(amt);
}
fn fill_buf(&mut self) -> io::Result<&[u8]> {
if !self.block.data().has_remaining() {
self.read_block()?;
}
Ok(self.block.data().as_ref())
}
}
impl<R> crate::io::Read for Reader<R>
where
R: Read,
{
fn virtual_position(&self) -> VirtualPosition {
self.block.virtual_position()
}
}
impl<R> crate::io::BufRead for Reader<R> where R: Read {}
impl<R> crate::io::Seek for Reader<R>
where
R: Read + Seek,
{
fn seek_to_virtual_position(&mut self, pos: VirtualPosition) -> io::Result<VirtualPosition> {
self.seek(pos)
}
fn seek_with_index(&mut self, index: &gzi::Index, pos: SeekFrom) -> io::Result<u64> {
match pos {
SeekFrom::Start(pos) => self.seek_by_uncompressed_position(index, pos),
_ => unimplemented!(),
}
}
}
pub(crate) fn default_read_exact<R>(reader: &mut R, mut buf: &mut [u8]) -> io::Result<()>
where
R: Read,
{
while !buf.is_empty() {
match reader.read(buf) {
Ok(0) => break,
Ok(n) => buf = &mut buf[n..],
Err(ref e) if e.kind() == io::ErrorKind::Interrupted => {}
Err(e) => return Err(e),
}
}
if buf.is_empty() {
Ok(())
} else {
Err(io::Error::new(
io::ErrorKind::UnexpectedEof,
"failed to fill whole buffer",
))
}
}
#[cfg(test)]
mod tests {
use std::io::Cursor;
use super::*;
#[test]
fn test_read_with_empty_block() -> io::Result<()> {
#[rustfmt::skip]
let data = [
// block 0 (b"noodles")
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x22, 0x00, 0xcb, 0xcb, 0xcf, 0x4f, 0xc9, 0x49, 0x2d, 0x06, 0x00, 0xa1,
0x58, 0x2a, 0x80, 0x07, 0x00, 0x00, 0x00,
// block 1 (b"")
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x1b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
// block 2 (b"bgzf")
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x1f, 0x00, 0x4b, 0x4a, 0xaf, 0x4a, 0x03, 0x00, 0x20, 0x68, 0xf2, 0x8c,
0x04, 0x00, 0x00, 0x00,
// EOF block
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x1b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
];
let mut reader = Reader::new(&data[..]);
let mut buf = Vec::new();
reader.read_to_end(&mut buf)?;
assert_eq!(buf, b"noodlesbgzf");
Ok(())
}
#[test]
fn test_seek() -> Result<(), Box<dyn std::error::Error>> {
#[rustfmt::skip]
let data = [
// block 0 (b"noodles")
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x22, 0x00, 0xcb, 0xcb, 0xcf, 0x4f, 0xc9, 0x49, 0x2d, 0x06, 0x00, 0xa1,
0x58, 0x2a, 0x80, 0x07, 0x00, 0x00, 0x00,
// EOF block
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x1b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
];
let eof = VirtualPosition::try_from((63, 0))?;
let mut reader = Reader::new(Cursor::new(&data));
let mut buf = Vec::new();
reader.read_to_end(&mut buf)?;
assert_eq!(reader.virtual_position(), eof);
reader.seek(VirtualPosition::try_from((0, 3))?)?;
buf.clear();
reader.read_to_end(&mut buf)?;
assert_eq!(buf, b"dles");
assert_eq!(reader.virtual_position(), eof);
Ok(())
}
#[test]
fn test_seek_by_uncompressed_position() -> io::Result<()> {
#[rustfmt::skip]
let data = [
// block 0 (b"noodles")
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x22, 0x00, 0xcb, 0xcb, 0xcf, 0x4f, 0xc9, 0x49, 0x2d, 0x06, 0x00, 0xa1,
0x58, 0x2a, 0x80, 0x07, 0x00, 0x00, 0x00,
// block 1 (b"bgzf")
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x1f, 0x00, 0x4b, 0x4a, 0xaf, 0x4a, 0x03, 0x00, 0x20, 0x68, 0xf2, 0x8c,
0x04, 0x00, 0x00, 0x00,
// EOF block
0x1f, 0x8b, 0x08, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x06, 0x00, 0x42, 0x43,
0x02, 0x00, 0x1b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
];
let index = vec![(0, 0), (35, 7)];
let mut reader = Reader::new(Cursor::new(&data));
reader.seek_by_uncompressed_position(&index, 3)?;
let mut buf = [0; 4];
reader.read_exact(&mut buf)?;
assert_eq!(&buf, b"dles");
reader.seek_by_uncompressed_position(&index, 8)?;
let mut buf = [0; 2];
reader.read_exact(&mut buf)?;
assert_eq!(&buf, b"gz");
Ok(())
}
}