xmpp-rs/src/lib.rs

374 lines
11 KiB
Rust
Raw Normal View History

2017-02-19 19:46:44 +00:00
extern crate xml;
pub mod error;
use std::io::prelude::*;
use std::convert::{From, AsRef};
2017-02-19 19:46:44 +00:00
use std::iter::Iterator;
use std::slice;
2017-02-19 19:46:44 +00:00
use std::fmt;
use xml::reader::{XmlEvent as ReaderEvent, EventReader};
use xml::writer::{XmlEvent as WriterEvent, EventWriter};
use xml::name::Name;
use xml::escape::escape_str_attribute;
use xml::namespace::NS_NO_PREFIX;
2017-02-19 19:46:44 +00:00
use error::Error;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Attribute {
pub name: String,
pub value: String,
}
impl fmt::Display for Attribute {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
write!(fmt, "{}=\"{}\"", self.name, escape_str_attribute(&self.value))
}
}
impl Attribute {
pub fn new<N: Into<String>, V: Into<String>>(name: N, value: V) -> Attribute {
Attribute {
name: name.into(),
value: value.into(),
}
}
}
2017-02-19 19:46:44 +00:00
#[derive(Clone, PartialEq, Eq)]
pub struct Element {
name: String,
namespace: Option<String>,
attributes: Vec<Attribute>,
2017-02-19 19:46:44 +00:00
children: Vec<Fork>,
}
impl fmt::Debug for Element {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
if let Some(ref ns) = self.namespace {
write!(fmt, "<{{{}}}{}", ns, self.name)?;
}
else {
write!(fmt, "<{}", self.name)?;
}
2017-02-19 19:46:44 +00:00
for attr in &self.attributes {
write!(fmt, " {}", attr)?;
}
write!(fmt, ">")?;
for child in &self.children {
match *child {
Fork::Element(ref e) => {
write!(fmt, "{:?}", e)?;
},
Fork::Text(ref s) => {
write!(fmt, "{}", s)?;
},
}
}
write!(fmt, "</{}>", self.name)?;
Ok(())
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Fork {
Element(Element),
Text(String),
}
impl Element {
pub fn new(name: String, namespace: Option<String>, attributes: Vec<Attribute>) -> Element {
2017-02-19 19:46:44 +00:00
Element {
name: name,
namespace: namespace,
2017-02-19 19:46:44 +00:00
attributes: attributes,
children: Vec::new(),
}
}
pub fn builder<S: Into<String>>(name: S) -> ElementBuilder {
ElementBuilder {
name: name.into(),
namespace: None,
2017-02-19 19:46:44 +00:00
attributes: Vec::new(),
}
}
pub fn name(&self) -> &str {
&self.name
2017-02-19 19:46:44 +00:00
}
pub fn ns(&self) -> Option<&str> {
self.namespace.as_ref()
.map(String::as_ref)
2017-02-19 19:46:44 +00:00
}
pub fn attr(&self, name: &str) -> Option<&str> {
2017-02-19 19:46:44 +00:00
for attr in &self.attributes {
if attr.name == name {
2017-02-19 19:46:44 +00:00
return Some(&attr.value);
}
}
None
}
pub fn is<N: AsRef<str>, NS: AsRef<str>>(&self, name: N, namespace: NS) -> bool {
let ns = self.namespace.as_ref().map(String::as_ref);
self.name == name.as_ref() && ns == Some(namespace.as_ref())
}
2017-02-19 19:46:44 +00:00
pub fn from_reader<R: Read>(reader: &mut EventReader<R>) -> Result<Element, Error> {
loop {
let e = reader.next()?;
match e {
ReaderEvent::StartElement { name, attributes, namespace } => {
let attributes = attributes.into_iter()
.map(|o| Attribute::new(o.name.local_name, o.value))
.collect();
let mut root = Element::new(name.local_name, namespace.get(NS_NO_PREFIX).map(|s| s.to_owned()), attributes);
2017-02-19 19:46:44 +00:00
root.from_reader_inner(reader);
return Ok(root);
},
ReaderEvent::EndDocument => {
return Err(Error::EndOfDocument);
},
_ => () // TODO: may need more errors
}
}
}
fn from_reader_inner<R: Read>(&mut self, reader: &mut EventReader<R>) -> Result<(), Error> {
loop {
let e = reader.next()?;
match e {
ReaderEvent::StartElement { name, attributes, namespace } => {
let attributes = attributes.into_iter()
.map(|o| Attribute::new(o.name.local_name, o.value))
.collect();
let elem = Element::new(name.local_name, namespace.get(NS_NO_PREFIX).map(|s| s.to_owned()), attributes);
2017-02-19 19:46:44 +00:00
let elem_ref = self.append_child(elem);
elem_ref.from_reader_inner(reader);
},
ReaderEvent::EndElement { .. } => {
// TODO: may want to check whether we're closing the correct element
return Ok(());
},
ReaderEvent::Characters(s) => {
self.append_text_node(s);
},
ReaderEvent::CData(s) => {
self.append_text_node(s);
},
ReaderEvent::EndDocument => {
return Err(Error::EndOfDocument);
},
_ => (), // TODO: may need to implement more
}
}
}
pub fn write_to<W: Write>(&self, writer: &mut EventWriter<W>) -> Result<(), Error> {
let name = if let Some(ref ns) = self.namespace {
Name::qualified(&self.name, &ns, None)
}
else {
Name::local(&self.name)
};
let mut start = WriterEvent::start_element(name);
if let Some(ref ns) = self.namespace {
2017-02-19 19:46:44 +00:00
start = start.default_ns(ns.as_ref());
}
for attr in &self.attributes { // TODO: I think this could be done a lot more efficiently
start = start.attr(Name::local(&attr.name), &attr.value);
2017-02-19 19:46:44 +00:00
}
writer.write(start)?;
for child in &self.children {
match *child {
Fork::Element(ref e) => {
e.write_to(writer)?;
},
Fork::Text(ref s) => {
writer.write(WriterEvent::characters(s))?;
},
}
}
writer.write(WriterEvent::end_element())?;
Ok(())
}
pub fn children<'a>(&'a self) -> Children<'a> {
Children {
iter: self.children.iter(),
}
2017-02-19 19:46:44 +00:00
}
pub fn children_mut<'a>(&'a mut self) -> ChildrenMut<'a> {
ChildrenMut {
iter: self.children.iter_mut(),
}
2017-02-19 19:46:44 +00:00
}
pub fn append_child(&mut self, mut child: Element) -> &mut Element {
if child.namespace.is_none() {
child.namespace = self.namespace.clone();
}
2017-02-19 19:46:44 +00:00
self.children.push(Fork::Element(child));
if let Fork::Element(ref mut cld) = *self.children.last_mut().unwrap() {
cld
}
else {
unreachable!()
}
}
pub fn append_text_node<S: Into<String>>(&mut self, child: S) {
self.children.push(Fork::Text(child.into()));
}
pub fn text(&self) -> &str {
unimplemented!()
}
pub fn get_child<'a, N: Into<Name<'a>>>(&self, name: N) -> Option<&Element> {
unimplemented!()
}
pub fn get_child_mut<'a, N: Into<Name<'a>>>(&mut self, name: N) -> Option<&mut Element> {
unimplemented!()
}
pub fn into_child<'a, N: Into<Name<'a>>>(self, name: N) -> Option<Element> {
unimplemented!()
}
}
pub struct Children<'a> {
iter: slice::Iter<'a, Fork>,
}
impl<'a> Iterator for Children<'a> {
type Item = &'a Element;
fn next(&mut self) -> Option<&'a Element> {
while let Some(item) = self.iter.next() {
if let Fork::Element(ref child) = *item {
return Some(child);
}
}
None
}
2017-02-19 19:46:44 +00:00
}
pub struct ChildrenMut<'a> {
iter: slice::IterMut<'a, Fork>,
}
impl<'a> Iterator for ChildrenMut<'a> {
type Item = &'a mut Element;
fn next(&mut self) -> Option<&'a mut Element> {
while let Some(item) = self.iter.next() {
if let Fork::Element(ref mut child) = *item {
return Some(child);
}
}
None
}
2017-02-19 19:46:44 +00:00
}
pub struct ElementBuilder {
name: String,
namespace: Option<String>,
attributes: Vec<Attribute>,
2017-02-19 19:46:44 +00:00
}
impl ElementBuilder {
pub fn ns<S: Into<String>>(mut self, namespace: S) -> ElementBuilder {
self.namespace = Some(namespace.into());
2017-02-19 19:46:44 +00:00
self
}
pub fn attr<S: Into<String>, V: Into<String>>(mut self, name: S, value: V) -> ElementBuilder {
self.attributes.push(Attribute::new(name, value));
2017-02-19 19:46:44 +00:00
self
}
pub fn build(self) -> Element {
Element::new(self.name, self.namespace, self.attributes)
2017-02-19 19:46:44 +00:00
}
}
#[cfg(test)]
mod tests {
use super::*;
use xml::reader::EventReader;
use xml::writer::EventWriter;
2017-02-19 19:46:44 +00:00
const TEST_STRING: &'static str = r#"<?xml version="1.0" encoding="utf-8"?><root xmlns="root_ns" a="b">meow<child c="d" /><child xmlns="child_ns" d="e" />nya</root>"#;
fn build_test_tree() -> Element {
let mut root = Element::builder("root")
.ns("root_ns")
.attr("a", "b")
.build();
root.append_text_node("meow");
let child = Element::builder("child")
.attr("c", "d")
.build();
root.append_child(child);
let other_child = Element::builder("child")
.ns("child_ns")
.attr("d", "e")
.build();
root.append_child(other_child);
root.append_text_node("nya");
root
}
#[test]
fn reader_works() {
use std::io::Cursor;
let mut reader = EventReader::new(Cursor::new(TEST_STRING));
assert_eq!(Element::from_reader(&mut reader).unwrap(), build_test_tree());
}
#[test]
fn writer_works() {
let root = build_test_tree();
let mut out = Vec::new();
{
let mut writer = EventWriter::new(&mut out);
root.write_to(&mut writer).unwrap();
2017-02-19 19:46:44 +00:00
}
assert_eq!(String::from_utf8(out).unwrap(), TEST_STRING);
}
#[test]
fn builder_works() {
let elem = Element::builder("a")
.ns("b")
.attr("c", "d")
.build();
assert_eq!(elem.name(), "a");
2017-02-19 19:46:44 +00:00
assert_eq!(elem.ns(), Some("b"));
assert_eq!(elem.attr("c"), Some("d"));
assert_eq!(elem.is("a", "b"), true);
}
#[test]
fn children_iter_works() {
let root = build_test_tree();
let mut iter = root.children();
assert!(iter.next().unwrap().is("child", "root_ns"));
assert!(iter.next().unwrap().is("child", "child_ns"));
assert_eq!(iter.next(), None);
2017-02-19 19:46:44 +00:00
}
}