haggis-rs/src/stream.rs

47 lines
1.1 KiB
Rust
Raw Normal View History

use {
crate::{Error, Node},
std::{
io::{ErrorKind, Read},
iter::Iterator,
},
};
/// An iterator over a series of archive `Node`'s. This struct is generic over any
/// type which implements `Read`, such as a file or a network stream.
#[derive(Debug)]
pub struct Stream<T: Read> {
reader: T,
}
impl<T: Read> From<T> for Stream<T> {
fn from(value: T) -> Self {
Self { reader: value }
}
}
impl<T: Read> Iterator for Stream<T> {
type Item = Result<Node, Error>;
fn next(&mut self) -> Option<Self::Item> {
match Node::read(&mut self.reader) {
Err(Error::Io(e)) if e.kind() == ErrorKind::UnexpectedEof => None,
Ok(f) => match f.filetype {
crate::FileType::Eof => None,
_ => Some(Ok(f)),
},
x => Some(x),
}
}
}
impl<T: Read> Stream<T> {
pub fn extract(&mut self, prefix: Option<&str>) -> Result<(), Error> {
todo!()
}
#[cfg(feature = "parallel")]
pub fn par_extract(&mut self, prefix: Option<&str>) -> Result<(), Error> {
todo!()
}
}