1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
|
//! A simple library for parsing an XML file into an in-memory tree structure
//!
//! Not recommended for large XML files, as it will load the entire file into memory.
//!
//! # Example
//!
//! ```no_run
//! use xmltree::Element;
//! use std::fs::File;
//!
//! let data: &'static str = r##"
//! <?xml version="1.0" encoding="utf-8" standalone="yes"?>
//! <names>
//! <name first="bob" last="jones" />
//! <name first="elizabeth" last="smith" />
//! </names>
//! "##;
//!
//! let mut names_element = Element::parse(data.as_bytes()).unwrap();
//!
//! println!("{:#?}", names_element);
//! {
//! // get first `name` element
//! let name = names_element.get_mut_child("name").expect("Can't find name element");
//! name.attributes.insert("suffix".to_owned(), "mr".to_owned());
//! }
//! names_element.write(File::create("result.xml").unwrap());
//!
//!
//! ```
extern crate xml;
use std::borrow::Cow;
#[cfg(not(feature = "attribute-order"))]
use std::collections::HashMap as AttributeMap;
use std::fmt;
use std::io::{Read, Write};
pub use xml::namespace::Namespace;
use xml::reader::{EventReader, ParserConfig, XmlEvent};
pub use xml::writer::{EmitterConfig, Error};
#[cfg(feature = "attribute-order")]
use indexmap::map::IndexMap as AttributeMap;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum XMLNode {
Element(Element),
Comment(String),
CData(String),
Text(String),
ProcessingInstruction(String, Option<String>),
}
impl XMLNode {
pub fn as_element(&self) -> Option<&Element> {
if let XMLNode::Element(e) = self {
Some(e)
} else {
None
}
}
pub fn as_mut_element(&mut self) -> Option<&mut Element> {
if let XMLNode::Element(e) = self {
Some(e)
} else {
None
}
}
pub fn as_comment(&self) -> Option<&str> {
if let XMLNode::Comment(c) = self {
Some(c)
} else {
None
}
}
pub fn as_cdata(&self) -> Option<&str> {
if let XMLNode::CData(c) = self {
Some(c)
} else {
None
}
}
pub fn as_text(&self) -> Option<&str> {
if let XMLNode::Text(c) = self {
Some(c)
} else {
None
}
}
pub fn as_processing_instruction(&self) -> Option<(&str, Option<&str>)> {
if let XMLNode::ProcessingInstruction(s, o) = self {
Some((s, o.as_ref().map(|s| s.as_str())))
} else {
None
}
}
}
/// Represents an XML element.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Element {
/// This elements prefix, if any
pub prefix: Option<String>,
/// This elements namespace, if any
pub namespace: Option<String>,
/// The full list of namespaces, if any
///
/// The `Namespace` type is exported from the `xml-rs` crate.
pub namespaces: Option<Namespace>,
/// The name of the Element. Does not include any namespace info
pub name: String,
/// The Element attributes
///
/// By default, this is a `HashMap`, but if the optional "attribute-order" feature is enabled,
/// this is an [IndexMap](https://docs.rs/indexmap/1.4.0/indexmap/), which will retain
/// item insertion order.
pub attributes: AttributeMap<String, String>,
/// Children
pub children: Vec<XMLNode>,
}
/// Errors that can occur parsing XML
#[derive(Debug)]
pub enum ParseError {
/// The XML is invalid
MalformedXml(xml::reader::Error),
/// This library is unable to process this XML. This can occur if, for
/// example, the XML contains processing instructions.
CannotParse,
}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
ParseError::MalformedXml(ref e) => write!(f, "Malformed XML. {}", e),
ParseError::CannotParse => write!(f, "Cannot parse"),
}
}
}
impl std::error::Error for ParseError {
fn description(&self) -> &str {
match *self {
ParseError::MalformedXml(..) => "Malformed XML",
ParseError::CannotParse => "Cannot parse",
}
}
fn cause(&self) -> Option<&dyn std::error::Error> {
match *self {
ParseError::MalformedXml(ref e) => Some(e),
ParseError::CannotParse => None,
}
}
}
fn build<B: Read>(reader: &mut EventReader<B>, mut elem: Element) -> Result<Element, ParseError> {
loop {
match reader.next() {
Ok(XmlEvent::EndElement { ref name }) => {
if name.local_name == elem.name {
return Ok(elem);
} else {
return Err(ParseError::CannotParse);
}
}
Ok(XmlEvent::StartElement {
name,
attributes,
namespace,
}) => {
let mut attr_map = AttributeMap::new();
for attr in attributes {
attr_map.insert(attr.name.local_name, attr.value);
}
let new_elem = Element {
prefix: name.prefix,
namespace: name.namespace,
namespaces: if namespace.is_essentially_empty() {
None
} else {
Some(namespace)
},
name: name.local_name,
attributes: attr_map,
children: Vec::new(),
};
elem.children
.push(XMLNode::Element(build(reader, new_elem)?));
}
Ok(XmlEvent::Characters(s)) => elem.children.push(XMLNode::Text(s)),
Ok(XmlEvent::Whitespace(..)) => (),
Ok(XmlEvent::Comment(s)) => elem.children.push(XMLNode::Comment(s)),
Ok(XmlEvent::CData(s)) => elem.children.push(XMLNode::Text(s)),
Ok(XmlEvent::ProcessingInstruction { name, data }) => elem
.children
.push(XMLNode::ProcessingInstruction(name, data)),
Ok(XmlEvent::StartDocument { .. }) | Ok(XmlEvent::EndDocument) => {
return Err(ParseError::CannotParse)
}
Err(e) => return Err(ParseError::MalformedXml(e)),
}
}
}
impl Element {
/// Create a new empty element with given name
///
/// All other fields are empty
pub fn new(name: &str) -> Element {
Element {
name: String::from(name),
prefix: None,
namespace: None,
namespaces: None,
attributes: AttributeMap::new(),
children: Vec::new(),
}
}
/// Parses some data into a list of `XMLNode`s
///
/// This is useful when you want to capture comments or processing instructions that appear
/// before or after the root node
pub fn parse_all<R: Read>(r: R) -> Result<Vec<XMLNode>, ParseError> {
let parser_config = ParserConfig::new().ignore_comments(false);
let mut reader = EventReader::new_with_config(r, parser_config);
let mut root_nodes = Vec::new();
loop {
match reader.next() {
Ok(XmlEvent::StartElement {
name,
attributes,
namespace,
}) => {
let mut attr_map = AttributeMap::with_capacity(attributes.len());
for attr in attributes {
attr_map.insert(attr.name.local_name, attr.value);
}
let root = Element {
prefix: name.prefix,
namespace: name.namespace,
namespaces: if namespace.is_essentially_empty() {
None
} else {
Some(namespace)
},
name: name.local_name,
attributes: attr_map,
children: Vec::new(),
};
root_nodes.push(XMLNode::Element(build(&mut reader, root)?));
}
Ok(XmlEvent::Comment(comment_string)) => {
root_nodes.push(XMLNode::Comment(comment_string))
}
Ok(XmlEvent::Characters(text_string)) => {
root_nodes.push(XMLNode::Text(text_string))
}
Ok(XmlEvent::CData(cdata_string)) => root_nodes.push(XMLNode::CData(cdata_string)),
Ok(XmlEvent::Whitespace(..)) | Ok(XmlEvent::StartDocument { .. }) => continue,
Ok(XmlEvent::ProcessingInstruction { name, data }) => {
root_nodes.push(XMLNode::ProcessingInstruction(name, data))
}
Ok(XmlEvent::EndElement { .. }) => (),
Ok(XmlEvent::EndDocument) => return Ok(root_nodes),
Err(e) => return Err(ParseError::MalformedXml(e)),
}
}
}
/// Parses some data into an Element
pub fn parse<R: Read>(r: R) -> Result<Element, ParseError> {
let nodes = Element::parse_all(r)?;
for node in nodes {
match node {
XMLNode::Element(elem) => return Ok(elem),
_ => (),
}
}
// This assume the underlying xml library throws an error on no root element
unreachable!();
}
fn _write<B: Write>(&self, emitter: &mut xml::writer::EventWriter<B>) -> Result<(), Error> {
use xml::attribute::Attribute;
use xml::name::Name;
use xml::writer::events::XmlEvent;
let mut name = Name::local(&self.name);
if let Some(ref ns) = self.namespace {
name.namespace = Some(ns);
}
if let Some(ref p) = self.prefix {
name.prefix = Some(p);
}
let mut attributes = Vec::with_capacity(self.attributes.len());
for (k, v) in &self.attributes {
attributes.push(Attribute {
name: Name::local(k),
value: v,
});
}
let empty_ns = Namespace::empty();
let namespace = if let Some(ref ns) = self.namespaces {
Cow::Borrowed(ns)
} else {
Cow::Borrowed(&empty_ns)
};
emitter.write(XmlEvent::StartElement {
name,
attributes: Cow::Owned(attributes),
namespace,
})?;
for node in &self.children {
match node {
XMLNode::Element(elem) => elem._write(emitter)?,
XMLNode::Text(text) => emitter.write(XmlEvent::Characters(text))?,
XMLNode::Comment(comment) => emitter.write(XmlEvent::Comment(comment))?,
XMLNode::CData(comment) => emitter.write(XmlEvent::CData(comment))?,
XMLNode::ProcessingInstruction(name, data) => match data.to_owned() {
Some(string) => emitter.write(XmlEvent::ProcessingInstruction {
name,
data: Some(&string),
})?,
None => emitter.write(XmlEvent::ProcessingInstruction { name, data: None })?,
},
}
// elem._write(emitter)?;
}
emitter.write(XmlEvent::EndElement { name: Some(name) })?;
Ok(())
}
/// Writes out this element as the root element in an new XML document
pub fn write<W: Write>(&self, w: W) -> Result<(), Error> {
self.write_with_config(w, EmitterConfig::new())
}
/// Writes out this element as the root element in a new XML document using the provided configuration
pub fn write_with_config<W: Write>(&self, w: W, config: EmitterConfig) -> Result<(), Error> {
use xml::common::XmlVersion;
use xml::writer::events::XmlEvent;
use xml::writer::EventWriter;
let write_document_declaration = config.write_document_declaration;
let mut emitter = EventWriter::new_with_config(w, config);
if write_document_declaration {
emitter.write(XmlEvent::StartDocument {
version: XmlVersion::Version10,
encoding: None,
standalone: None,
})?;
}
self._write(&mut emitter)
}
/// Find a child element with the given name and return a reference to it.
///
/// Both `&str` and `String` implement `ElementPredicate` and can be used to search for child
/// elements that match the given element name with `.get_child("element_name")`. You can also
/// search by `("element_name", "tag_name")` tuple.
///
///
/// Note: this will only return Elements. To get other nodes (like comments), iterate through
/// the `children` field.
pub fn get_child<P: ElementPredicate>(&self, k: P) -> Option<&Element> {
self.children
.iter()
.filter_map(|e| match e {
XMLNode::Element(elem) => Some(elem),
_ => None,
})
.find(|e| k.match_element(e))
}
/// Find a child element with the given name and return a mutable reference to it.
pub fn get_mut_child<P: ElementPredicate>(&mut self, k: P) -> Option<&mut Element> {
self.children
.iter_mut()
.filter_map(|e| match e {
XMLNode::Element(elem) => Some(elem),
_ => None,
})
.find(|e| k.match_element(e))
}
/// Find a child element with the given name, remove and return it.
pub fn take_child<P: ElementPredicate>(&mut self, k: P) -> Option<Element> {
let index = self.children.iter().position(|e| match e {
XMLNode::Element(elem) => k.match_element(elem),
_ => false,
});
match index {
Some(index) => match self.children.remove(index) {
XMLNode::Element(elem) => Some(elem),
_ => None,
},
None => None,
}
}
/// Returns the inner text/cdata of this element, if any.
///
/// If there are multiple text/cdata nodes, they will be all concatenated into one string.
pub fn get_text<'a>(&'a self) -> Option<Cow<'a, str>> {
let text_nodes: Vec<&'a str> = self
.children
.iter()
.filter_map(|node| node.as_text().or_else(|| node.as_cdata()))
.collect();
if text_nodes.is_empty() {
None
} else if text_nodes.len() == 1 {
Some(Cow::Borrowed(text_nodes[0]))
} else {
let mut full_text = String::new();
for text in text_nodes {
full_text.push_str(text);
}
Some(Cow::Owned(full_text))
}
}
}
/// A predicate for matching elements.
///
/// The default implementations allow you to match by tag name or a tuple of
/// tag name and namespace.
pub trait ElementPredicate {
fn match_element(&self, e: &Element) -> bool;
}
// Unfortunately,
// `impl<TN> ElementPredicate for TN where String: PartialEq<TN>` and
// `impl<TN, NS> ElementPredicate for (TN, NS) where String: PartialEq<TN>, String: PartialEq<NS>`
// are conflicting implementations, even though we know that there is no
// implementation for tuples. We just manually implement `ElementPredicate` for
// all `PartialEq` impls of `String` and forward them to the 1-tuple version.
//
// This can probably be fixed once specialization is stable.
impl<TN> ElementPredicate for (TN,)
where
String: PartialEq<TN>,
{
fn match_element(&self, e: &Element) -> bool {
e.name == self.0
}
}
impl<'a> ElementPredicate for &'a str {
/// Search by tag name
fn match_element(&self, e: &Element) -> bool {
(*self,).match_element(e)
}
}
impl<'a> ElementPredicate for Cow<'a, str> {
/// Search by tag name
fn match_element(&self, e: &Element) -> bool {
(&**self,).match_element(e)
}
}
impl ElementPredicate for String {
/// Search by tag name
fn match_element(&self, e: &Element) -> bool {
(&**self,).match_element(e)
}
}
impl<TN, NS> ElementPredicate for (TN, NS)
where
String: PartialEq<TN>,
String: PartialEq<NS>,
{
/// Search by a tuple of (tagname, namespace)
fn match_element(&self, e: &Element) -> bool {
e.name == self.0
&& e.namespace
.as_ref()
.map(|ns| ns == &self.1)
.unwrap_or(false)
}
}
|