use tokio::io::{AsyncWrite, AsyncWriteExt};
use crate::errors::Result;
use crate::events::Event;
use crate::Writer;
impl<W: AsyncWrite + Unpin> Writer<W> {
pub async fn write_event_async<'a, E: AsRef<Event<'a>>>(&mut self, event: E) -> Result<()> {
match *event.as_ref() {
Event::Start(ref e) => self.write_wrapped_async(b"<", e, b">").await,
Event::End(ref e) => self.write_wrapped_async(b"</", e, b">").await,
Event::Empty(ref e) => self.write_wrapped_async(b"<", e, b"/>").await,
Event::Text(ref e) => self.write_async(e).await,
Event::Comment(ref e) => self.write_wrapped_async(b"<!--", e, b"-->").await,
Event::CData(ref e) => {
self.write_async(b"<![CDATA[").await?;
self.write_async(e).await?;
self.write_async(b"]]>").await
}
Event::Decl(ref e) => self.write_wrapped_async(b"<?", e, b"?>").await,
Event::PI(ref e) => self.write_wrapped_async(b"<?", e, b"?>").await,
Event::DocType(ref e) => self.write_wrapped_async(b"<!DOCTYPE ", e, b">").await,
Event::Eof => Ok(()),
}
}
#[inline]
async fn write_async(&mut self, value: &[u8]) -> Result<()> {
self.writer.write_all(value).await.map_err(Into::into)
}
#[inline]
async fn write_wrapped_async(
&mut self,
before: &[u8],
value: &[u8],
after: &[u8],
) -> Result<()> {
self.write_async(before).await?;
self.write_async(value).await?;
self.write_async(after).await?;
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::events::*;
use pretty_assertions::assert_eq;
macro_rules! test {
($name: ident, $event: expr, $expected: expr) => {
#[tokio::test]
async fn $name() {
let mut buffer = Vec::new();
let mut writer = Writer::new(&mut buffer);
writer
.write_event_async($event)
.await
.expect("write event failed");
assert_eq!(std::str::from_utf8(&buffer).unwrap(), $expected,);
}
};
}
test!(
xml_header,
Event::Decl(BytesDecl::new("1.0", Some("UTF-8"), Some("no"))),
r#"<?xml version="1.0" encoding="UTF-8" standalone="no"?>"#
);
test!(empty_tag, Event::Empty(BytesStart::new("tag")), r#"<tag/>"#);
test!(
comment,
Event::Comment(BytesText::new("this is a comment")),
r#"<!--this is a comment-->"#
);
test!(
cdata,
Event::CData(BytesCData::new("this is a cdata")),
r#"<![CDATA[this is a cdata]]>"#
);
test!(
pi,
Event::PI(BytesText::new("this is a processing instruction")),
r#"<?this is a processing instruction?>"#
);
test!(
doctype,
Event::DocType(BytesText::new("this is a doctype")),
r#"<!DOCTYPE this is a doctype>"#
);
#[tokio::test]
async fn full_tag() {
let mut buffer = Vec::new();
let mut writer = Writer::new(&mut buffer);
let start = Event::Start(BytesStart::new("tag"));
let text = Event::Text(BytesText::new("inner text"));
let end = Event::End(BytesEnd::new("tag"));
for i in [start, text, end] {
writer.write_event_async(i).await.expect("write tag failed");
}
assert_eq!(
std::str::from_utf8(&buffer).unwrap(),
r#"<tag>inner text</tag>"#
);
}
}