Stream buffer/parser experiment, lifetime issues are snarling though
This commit is contained in:
parent
f385371bb9
commit
495ca0f555
2 changed files with 94 additions and 0 deletions
|
@ -5,6 +5,7 @@ extern crate futures;
|
||||||
pub mod chunk;
|
pub mod chunk;
|
||||||
pub mod ebml;
|
pub mod ebml;
|
||||||
mod iterator;
|
mod iterator;
|
||||||
|
pub mod webm_stream;
|
||||||
pub mod timecode_fixer;
|
pub mod timecode_fixer;
|
||||||
pub mod webm;
|
pub mod webm;
|
||||||
|
|
||||||
|
|
93
src/webm_stream.rs
Normal file
93
src/webm_stream.rs
Normal file
|
@ -0,0 +1,93 @@
|
||||||
|
use bytes::BytesMut;
|
||||||
|
use bytes::BufMut;
|
||||||
|
use futures::Async;
|
||||||
|
use futures::stream::Stream;
|
||||||
|
|
||||||
|
use ebml::*;
|
||||||
|
use webm::*;
|
||||||
|
|
||||||
|
pub enum ParsingError<E> {
|
||||||
|
EbmlError(::ebml::Error),
|
||||||
|
OtherError(E)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct WebmStream<S> {
|
||||||
|
stream: S,
|
||||||
|
buffer: BytesMut,
|
||||||
|
last_read: usize
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<I: AsRef<[u8]>, S: Stream<Item = I>> WebmStream<S> {
|
||||||
|
pub fn new(stream: S) -> Self {
|
||||||
|
WebmStream {
|
||||||
|
stream: stream,
|
||||||
|
buffer: BytesMut::new(),
|
||||||
|
last_read: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn try_decode(&mut self) -> Result<Async<Option<WebmElement>>, ParsingError<S::Error>> {
|
||||||
|
match WebmElement::decode_element(&self.buffer) {
|
||||||
|
Err(err) => return Err(ParsingError::EbmlError(err)),
|
||||||
|
Ok(None) => {
|
||||||
|
// need to refill buffer
|
||||||
|
return Ok(Async::NotReady);
|
||||||
|
},
|
||||||
|
Ok(Some((element, element_size))) => {
|
||||||
|
self.last_read += element_size;
|
||||||
|
return Ok(Async::Ready(Some(element)))
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn can_decode(&mut self) -> bool {
|
||||||
|
match self.try_decode() {
|
||||||
|
Ok(Async::NotReady) => false,
|
||||||
|
_ => true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn poll_event2<'a>(&'a mut self) -> Result<Async<Option<WebmElement<'a>>>, ParsingError<S::Error>> {
|
||||||
|
// release buffer from previous event
|
||||||
|
self.buffer.advance(self.last_read);
|
||||||
|
self.last_read = 0;
|
||||||
|
|
||||||
|
loop {
|
||||||
|
if self.can_decode() {
|
||||||
|
return self.try_decode()
|
||||||
|
}
|
||||||
|
|
||||||
|
match self.stream.poll() {
|
||||||
|
Ok(Async::NotReady) => return Ok(Async::NotReady),
|
||||||
|
Ok(Async::Ready(None)) => return Ok(Async::Ready(None)),
|
||||||
|
Ok(Async::Ready(Some(chunk))) => {
|
||||||
|
self.buffer.reserve(chunk.as_ref().len());
|
||||||
|
self.buffer.put_slice(chunk.as_ref());
|
||||||
|
// ok can retry decoding now
|
||||||
|
}
|
||||||
|
Err(err) => return Err(ParsingError::OtherError(err))
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*fn umm<'a, I: AsRef<[u8]>, S: Stream<Item = I>>(webm_stream: &'a mut WebmStream<S>)
|
||||||
|
-> Result<Async<Option<WebmElement<'a>>>, ParsingError<S::Error>>
|
||||||
|
{
|
||||||
|
return webmStream.poll_event();
|
||||||
|
}*/
|
||||||
|
|
||||||
|
/*impl<'a, I: AsRef<[u8]>, S: Stream<Item = I>> EbmlEventSource<'a> for WebmStream<S> {
|
||||||
|
type Event = WebmElement<'a>;
|
||||||
|
type Error = ParsingError<S::Error>;
|
||||||
|
|
||||||
|
fn poll_event(&'a mut self) -> Result<Async<Option<WebmElement<'a>>>, Self::Error> {
|
||||||
|
return self.poll_event2();
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
//#[test]
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue