diff options
Diffstat (limited to 'src/reader.rs')
-rw-r--r-- | src/reader.rs | 130 |
1 files changed, 65 insertions, 65 deletions
diff --git a/src/reader.rs b/src/reader.rs index b0d21db..313de4c 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -26,74 +26,74 @@ impl<R> Reader<R> { } } -impl<R> Reader<R> -where - R: AsyncBufReadExt + Unpin, -{ - /// could resursively read and include namespace tree with values to be shadowed within new local context - async fn read_recursive(&mut self, namespaces: BTreeMap<Option<String>, String>) -> Result<Element, Error> { - let element; - let len; - loop { - let buf = self.inner.fill_buf().await?; - let input = str::from_utf8(buf)?; - match crate::xml::element(input) { - Ok((rest, e)) => { - element = e; - len = buf.len() - rest.len(); - break; - } - Err(e) => match e { - Err::Incomplete(_) => (), - e => return Err::<E, Error>(Error::ParseError(input.to_owned())), - }, - } - } +// impl<R> Reader<R> +// where +// R: AsyncBufReadExt + Unpin, +// { +// /// could resursively read and include namespace tree with values to be shadowed within new local context +// async fn read_recursive(&mut self, namespaces: BTreeMap<Option<String>, String>) -> Result<Element, Error> { +// let element; +// let len; +// loop { +// let buf = self.inner.fill_buf().await?; +// let input = str::from_utf8(buf)?; +// match crate::xml::element(input) { +// Ok((rest, e)) => { +// element = e; +// len = buf.len() - rest.len(); +// break; +// } +// Err(e) => match e { +// Err::Incomplete(_) => (), +// e => return Err::<E, Error>(Error::ParseError(input.to_owned())), +// }, +// } +// } - let final; - match element { - crate::xml::Element::Empty(e) => { - let final = Element { - - } - }, - crate::xml::Element::NotEmpty(_, _, _) => todo!(), - } +// let final; +// match element { +// crate::xml::Element::Empty(e) => { +// let final = Element { - self.inner.consume(len); - todo!() - } - /// reads entire next prolog, element, or misc - // pub async fn read<E: From<Element>>(&mut self) -> Result<E, Error> { - // let element; - // let len; - // loop { - // let buf = self.inner.fill_buf().await?; - // let input = str::from_utf8(buf)?; - // match crate::xml::element(input) { - // Ok((rest, e)) => { - // element = e; - // len = buf.len() - rest.len(); - // break; - // } - // Err(e) => match e { - // Err::Incomplete(_) => (), - // e => return Err::<E, Error>(Error::ParseError(input.to_owned())), - // }, - // } - // } - // self.inner.consume(len); +// } +// }, +// crate::xml::Element::NotEmpty(_, _, _) => todo!(), +// } - // // Ok(element) - // todo!() - // } - // pub async fn read_start(&self) -> Result<impl From<Element>, Error> { - // todo!() - // } - // pub async fn read_end(&self) -> Result<(), Error> { - // todo!() - // } -} +// self.inner.consume(len); +// todo!() +// } +// /// reads entire next prolog, element, or misc +// pub async fn read<E: From<Element>>(&mut self) -> Result<E, Error> { +// let element; +// let len; +// loop { +// let buf = self.inner.fill_buf().await?; +// let input = str::from_utf8(buf)?; +// match crate::xml::element(input) { +// Ok((rest, e)) => { +// element = e; +// len = buf.len() - rest.len(); +// break; +// } +// Err(e) => match e { +// Err::Incomplete(_) => (), +// e => return Err::<E, Error>(Error::ParseError(input.to_owned())), +// }, +// } +// } +// self.inner.consume(len); + +// // Ok(element) +// todo!() +// } +// pub async fn read_start(&self) -> Result<impl From<Element>, Error> { +// todo!() +// } +// pub async fn read_end(&self) -> Result<(), Error> { +// todo!() +// } +// } // impl<R: AsyncBufRead> Stream for Reader<R> { // type Item = impl From<Element>; |