aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/writer.rs')
-rw-r--r--src/writer.rs43
1 files changed, 35 insertions, 8 deletions
diff --git a/src/writer.rs b/src/writer.rs
index 08be8c2..249ced5 100644
--- a/src/writer.rs
+++ b/src/writer.rs
@@ -1,26 +1,53 @@
-use futures::{AsyncWrite, Sink};
+use std::collections::HashSet;
+
+use futures::Sink;
+use tokio::io::AsyncWrite;
use crate::{
- element::{Element, Name, Namespace},
+ element::{Element, Name, NamespaceDeclaration},
error::Error,
+ xml::{self, composers::Composer, parsers_complete::Parser, ETag},
};
// pub struct Writer<W, C = Composer> {
pub struct Writer<W> {
- writer: W,
+ inner: W,
depth: Vec<Name>,
- namespaces: Vec<(usize, Namespace)>,
+ namespaces: Vec<HashSet<NamespaceDeclaration>>,
}
-impl<W: AsyncWrite> Writer<W> {
- pub async fn write(&self, element: impl Into<Element>) -> Result<(), Error> {
+impl<W: AsyncWrite + Unpin> Writer<W> {
+ pub async fn write(&mut self, element: Element) -> Result<(), Error> {
todo!()
}
- pub async fn write_start(&self, element: impl Into<Element>) -> Result<(), Error> {
+
+ pub async fn write_start(&mut self, element: Element) -> Result<(), Error> {
todo!()
}
- pub async fn write_end(&self) -> Result<(), Error> {
+
+ pub async fn write_end(&mut self) -> Result<(), Error> {
todo!()
+ // let e_tag;
+ // if let Some(name) = self.depth.pop() {
+ // if let Some(prefix) = name.namespace.prefix {
+ // e_tag = xml::ETag {
+ // name: xml::QName::PrefixedName(xml::PrefixedName {
+ // prefix: xml::Prefix::parse_full(&prefix)?,
+ // local_part: xml::LocalPart::parse_full(&name.name)?,
+ // }),
+ // };
+ // e_tag.write(&mut self.inner).await?;
+ // Ok(())
+ // } else {
+ // e_tag = xml::ETag {
+ // name: xml::QName::UnprefixedName(xml::UnprefixedName::parse_full(&name.name)?),
+ // };
+ // e_tag.write(&mut self.inner).await?;
+ // Ok(())
+ // }
+ // } else {
+ // return Err(Error::NotInElement("".to_string()));
+ // }
}
}