pub struct Document<'input> { /* private fields */ }
Expand description
An XML tree container.
A tree consists of Nodes
.
There are no separate structs for each node type.
So you should check the current node type yourself via Node::node_type()
.
There are only 5 types:
Root, Element, PI, Comment and Text.
As you can see there are no XML declaration and CDATA types. The XML declaration is basically skipped, since it doesn’t contain any valuable information (we support only UTF-8 anyway). And CDATA will be converted into a Text node as is, without any preprocessing (you can read more about it here).
Also, the Text node data can be accessed from the text node itself or from
the parent element via Node::text()
or Node::tail()
.
Implementations§
source§impl<'input> Document<'input>
impl<'input> Document<'input>
sourcepub fn parse(text: &str) -> Result<Document<'_>, Error>
pub fn parse(text: &str) -> Result<Document<'_>, Error>
Parses the input XML string.
We do not support &[u8]
or Reader
because the input must be an already allocated
UTF-8 string.
This is a shorthand for Document::parse_with_options(data, ParsingOptions::default())
.
§Examples
let doc = roxmltree::Document::parse("<e/>").unwrap();
assert_eq!(doc.descendants().count(), 2); // root node + `e` element node
sourcepub fn parse_with_options(
text: &str,
opt: ParsingOptions,
) -> Result<Document<'_>, Error>
pub fn parse_with_options( text: &str, opt: ParsingOptions, ) -> Result<Document<'_>, Error>
Parses the input XML string using to selected options.
We do not support &[u8]
or Reader
because the input must be an already allocated
UTF-8 string.
§Examples
let opt = roxmltree::ParsingOptions::default();
let doc = roxmltree::Document::parse_with_options("<e/>", opt).unwrap();
assert_eq!(doc.descendants().count(), 2); // root node + `e` element node
source§impl<'input> Document<'input>
impl<'input> Document<'input>
sourcepub fn root<'a>(&'a self) -> Node<'a, 'input>
pub fn root<'a>(&'a self) -> Node<'a, 'input>
Returns the root node.
§Examples
let doc = roxmltree::Document::parse("<e/>").unwrap();
assert!(doc.root().is_root());
assert!(doc.root().first_child().unwrap().has_tag_name("e"));
sourcepub fn get_node<'a>(&'a self, id: NodeId) -> Option<Node<'a, 'input>>
pub fn get_node<'a>(&'a self, id: NodeId) -> Option<Node<'a, 'input>>
Returns the node of the tree with the given NodeId.
Note: NodeId::new(0) represents the root node
§Examples
let doc = roxmltree::Document::parse("\
<p>
text
</p>
").unwrap();
use roxmltree::NodeId;
assert_eq!(doc.get_node(NodeId::new(0)).unwrap(), doc.root());
assert_eq!(doc.get_node(NodeId::new(1)), doc.descendants().find(|n| n.has_tag_name("p")));
assert_eq!(doc.get_node(NodeId::new(2)), doc.descendants().find(|n| n.is_text()));
assert_eq!(doc.get_node(NodeId::new(3)), None);
sourcepub fn root_element<'a>(&'a self) -> Node<'a, 'input>
pub fn root_element<'a>(&'a self) -> Node<'a, 'input>
Returns the root element of the document.
Unlike root
, will return a first element node.
The root element always exists.
§Examples
let doc = roxmltree::Document::parse("<!-- comment --><e/>").unwrap();
assert!(doc.root_element().has_tag_name("e"));
sourcepub fn descendants(&self) -> Descendants<'_, 'input> ⓘ
pub fn descendants(&self) -> Descendants<'_, 'input> ⓘ
Returns an iterator over document’s descendant nodes.
Shorthand for doc.root().descendants()
.
sourcepub fn text_pos_at(&self, pos: usize) -> TextPos
pub fn text_pos_at(&self, pos: usize) -> TextPos
Calculates TextPos
in the original document from position in bytes.
Note: this operation is expensive.
§Examples
use roxmltree::*;
let doc = Document::parse("\
<!-- comment -->
<e/>"
).unwrap();
assert_eq!(doc.text_pos_at(10), TextPos::new(1, 11));
assert_eq!(doc.text_pos_at(9999), TextPos::new(2, 5));
sourcepub fn input_text(&self) -> &'input str
pub fn input_text(&self) -> &'input str
Returns the input text of the original document.
§Examples
use roxmltree::*;
let doc = Document::parse("<e/>").unwrap();
assert_eq!(doc.input_text(), "<e/>");