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
use {escape, Xml};
use element_builder::{BuilderError, ElementBuilder};
use parser::Parser;
use std::fmt;
use std::slice;
use std::collections::HashMap;
use std::str::FromStr;
#[derive(Clone, PartialEq, Debug)]
pub struct Element {
pub name: String,
pub ns: Option<String>,
pub attributes: HashMap<(String, Option<String>), String>,
pub children: Vec<Xml>,
#[doc(hidden)]
pub prefixes: HashMap<String, String>,
#[doc(hidden)]
pub default_ns: Option<String>
}
fn fmt_elem(elem: &Element, parent: Option<&Element>, all_prefixes: &HashMap<String, String>,
f: &mut fmt::Formatter) -> fmt::Result {
let mut all_prefixes = all_prefixes.clone();
all_prefixes.extend(elem.prefixes.iter().map(|(k, v)| (k.clone(), v.clone()) ));
try!(if elem.ns != elem.default_ns {
let prefix = all_prefixes.get(elem.ns.as_ref().map(|x| &x[..]).unwrap_or(""))
.expect("No namespace prefix bound");
write!(f, "<{}:{}", *prefix, elem.name)
} else {
write!(f, "<{}", elem.name)
});
if !elem.attributes.iter().any(|(&(ref name, _), _)| *name == "xmlns") {
match (parent, &elem.default_ns) {
(None, &Some(ref ns)) => try!(write!(f, " xmlns='{}'", *ns)),
(Some(parent), ns) if parent.default_ns != *ns => {
try!(write!(f, " xmlns='{}'", ns.as_ref().map(|x| &x[..]).unwrap_or("")))
},
_ => ()
}
}
for (&(ref name, ref ns), value) in &elem.attributes {
try!(match *ns {
Some(ref ns) => {
let prefix = all_prefixes.get(ns).expect("No namespace prefix bound");
write!(f, " {}:{}='{}'", *prefix, name, escape(&value))
}
None => write!(f, " {}='{}'", name, escape(&value))
});
}
if elem.children.len() == 0 {
write!(f, "/>")
} else {
try!(write!(f, ">"));
for child in &elem.children {
try!(match *child {
Xml::ElementNode(ref child) => fmt_elem(child, Some(elem), &all_prefixes, f),
ref o => fmt::Display::fmt(o, f)
});
}
if elem.ns != elem.default_ns {
let prefix = all_prefixes.get(elem.ns.as_ref().unwrap())
.expect("No namespace prefix bound");
write!(f, "</{}:{}>", *prefix, elem.name)
} else {
write!(f, "</{}>", elem.name)
}
}
}
impl fmt::Display for Element{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt_elem(self, None, &HashMap::new(), f)
}
}
pub struct ChildElements<'a, 'b> {
elems: slice::Iter<'a, Xml>,
name: &'b str,
ns: Option<&'b str>
}
impl<'a, 'b> Iterator for ChildElements<'a, 'b> {
type Item = &'a Element;
fn next(&mut self) -> Option<&'a Element> {
let (name, ns) = (self.name, self.ns);
self.elems.by_ref().filter_map(|child| {
if let Xml::ElementNode(ref elem) = *child {
if name == elem.name && ns == elem.ns.as_ref().map(|x| &x[..]) {
return Some(elem);
}
}
None
}).next()
}
}
impl Element {
pub fn new(name: String, ns: Option<String>,
attrs: Vec<(String, Option<String>, String)>) -> Element {
let mut prefixes = HashMap::with_capacity(2);
prefixes.insert("http://www.w3.org/XML/1998/namespace".to_string(), "xml".to_string());
prefixes.insert("http://www.w3.org/2000/xmlns/".to_string(), "xmlns".to_string());
let attributes: HashMap<_, _> = attrs.into_iter()
.map(|(name, ns, value)| ((name, ns), value))
.collect();
Element {
name: name,
ns: ns.clone(),
default_ns: ns,
prefixes: prefixes,
attributes: attributes,
children: Vec::new()
}
}
pub fn content_str(&self) -> String {
let mut res = String::new();
for child in &self.children {
match *child {
Xml::ElementNode(ref elem) => res.push_str(&elem.content_str()),
Xml::CharacterNode(ref data)
| Xml::CDATANode(ref data) => res.push_str(&data),
_ => ()
}
}
res
}
pub fn get_attribute<'a>(&'a self, name: &str, ns: Option<&str>) -> Option<&'a str> {
self.attributes.get(&(name.to_string(), ns.map(|x| x.to_string()))).map(|x| &x[..])
}
pub fn set_attribute(&mut self, name: String, ns: Option<String>,
value: String) -> Option<String> {
self.attributes.insert((name, ns), value)
}
pub fn remove_attribute(&mut self, name: &str, ns: Option<&str>) -> Option<String> {
self.attributes.remove(&(name.to_string(), ns.map(|x| x.to_string())))
}
pub fn get_child<'a>(&'a self, name: &str, ns: Option<&str>) -> Option<&'a Element> {
self.get_children(name, ns).next()
}
pub fn get_children<'a, 'b>(&'a self, name: &'b str,
ns: Option<&'b str>) -> ChildElements<'a, 'b> {
ChildElements {
elems: self.children.iter(),
name: name,
ns: ns
}
}
pub fn tag(&mut self, child: Element) -> &mut Element {
self.children.push(Xml::ElementNode(child));
let error = "Internal error: Could not get reference to new element!";
let elem = match self.children.last_mut().expect(error) {
&mut Xml::ElementNode(ref mut elem) => elem,
_ => panic!(error)
};
elem
}
pub fn tag_stay(&mut self, child: Element) -> &mut Element {
self.children.push(Xml::ElementNode(child));
self
}
pub fn text(&mut self, text: String) -> &mut Element {
self.children.push(Xml::CharacterNode(text));
self
}
pub fn cdata(&mut self, text: String) -> &mut Element {
self.children.push(Xml::CDATANode(text));
self
}
pub fn comment(&mut self, text: String) -> &mut Element {
self.children.push(Xml::CommentNode(text));
self
}
pub fn pi(&mut self, text: String) -> &mut Element {
self.children.push(Xml::PINode(text));
self
}
}
impl FromStr for Element {
type Err = BuilderError;
#[inline]
fn from_str(data: &str) -> Result<Element, BuilderError> {
let mut p = Parser::new();
let mut e = ElementBuilder::new();
p.feed_str(data);
for event in p.filter_map(|x| e.handle_event(x)) {
return event;
}
Err(BuilderError::NoElement)
}
}
#[cfg(test)]
mod tests {
use super::Element;
#[test]
fn test_get_children() {
let elem: Element = "<a><b/><c/><b/></a>".parse().unwrap();
assert_eq!(elem.get_children("b", None).collect::<Vec<_>>(),
vec![&Element::new("b".to_string(), None, vec![]),
&Element::new("b".to_string(), None, vec![])]);
}
#[test]
fn test_get_child() {
let elem: Element = "<a><b/><c/><b/></a>".parse().unwrap();
assert_eq!(elem.get_child("b", None),
Some(&Element::new("b".to_string(), None, vec![])));
}
}