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
use std::fmt;
use std::ops::Deref;
use std::collections::{HashSet, HashMap};
use std::collections::{hash_set, hash_map};
use string_cache::{QualName, Atom};
use tendril::StrTendril;
#[derive(Clone, PartialEq, Eq)]
pub enum Node {
Document,
Fragment,
Doctype(Doctype),
Comment(Comment),
Text(Text),
Element(Element),
}
impl Node {
pub fn is_document(&self) -> bool {
match *self { Node::Document => true, _ => false }
}
pub fn is_fragment(&self) -> bool {
match *self { Node::Fragment => true, _ => false }
}
pub fn is_doctype(&self) -> bool {
match *self { Node::Doctype(_) => true, _ => false }
}
pub fn is_comment(&self) -> bool {
match *self { Node::Comment(_) => true, _ => false }
}
pub fn is_text(&self) -> bool {
match *self { Node::Text(_) => true, _ => false }
}
pub fn is_element(&self) -> bool {
match *self { Node::Element(_) => true, _ => false }
}
pub fn as_doctype(&self) -> Option<&Doctype> {
match *self { Node::Doctype(ref d) => Some(d), _ => None }
}
pub fn as_comment(&self) -> Option<&Comment> {
match *self { Node::Comment(ref c) => Some(c), _ => None }
}
pub fn as_text(&self) -> Option<&Text> {
match *self { Node::Text(ref t) => Some(t), _ => None }
}
pub fn as_element(&self) -> Option<&Element> {
match *self { Node::Element(ref e) => Some(e), _ => None }
}
}
impl fmt::Debug for Node {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
match *self {
Node::Document => write!(f, "Document"),
Node::Fragment => write!(f, "Fragment"),
Node::Doctype(ref d) => write!(f, "Doctype({:?})", d),
Node::Comment(ref c) => write!(f, "Comment({:?})", c),
Node::Text(ref t) => write!(f, "Text({:?})", t),
Node::Element(ref e) => write!(f, "Element({:?})", e),
}
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct Doctype {
pub name: StrTendril,
pub public_id: StrTendril,
pub system_id: StrTendril,
}
impl Doctype {
pub fn name(&self) -> &str {
self.name.deref()
}
pub fn public_id(&self) -> &str {
self.public_id.deref()
}
pub fn system_id(&self) -> &str {
self.system_id.deref()
}
}
impl fmt::Debug for Doctype {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(
f,
"<!DOCTYPE {} PUBLIC {:?} {:?}>",
self.name(),
self.public_id(),
self.system_id()
)
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct Comment {
pub comment: StrTendril,
}
impl Deref for Comment {
type Target = str;
fn deref(&self) -> &str {
self.comment.deref()
}
}
impl fmt::Debug for Comment {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(f, "<!-- {:?} -->", self.deref())
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct Text {
pub text: StrTendril,
}
impl Deref for Text {
type Target = str;
fn deref(&self) -> &str {
self.text.deref()
}
}
impl fmt::Debug for Text {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(f, "{:?}", self.deref())
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct Element {
pub name: QualName,
pub id: Option<Atom>,
pub classes: HashSet<Atom>,
pub attrs: HashMap<QualName, StrTendril>,
}
impl Element {
#[doc(hidden)]
pub fn new(name: QualName, attrs: HashMap<QualName, StrTendril>) -> Self {
let id = attrs.get(&qualname!("", "id"))
.map(Deref::deref)
.map(Atom::from);
let classes = attrs.get(&qualname!("", "class"))
.map(Deref::deref)
.into_iter()
.flat_map(str::split_whitespace)
.map(Atom::from)
.collect();
Element {
name: name,
id: id,
classes: classes,
attrs: attrs,
}
}
pub fn name(&self) -> &str {
self.name.local.deref()
}
pub fn id(&self) -> Option<&str> {
self.id.as_ref().map(Deref::deref)
}
pub fn has_class(&self, class: &str) -> bool {
self.classes.contains(&Atom::from(class))
}
pub fn classes(&self) -> Classes {
Classes { inner: self.classes.iter() }
}
pub fn attr(&self, attr: &str) -> Option<&str> {
let qualname = QualName::new(ns!(), Atom::from(attr));
self.attrs.get(&qualname).map(Deref::deref)
}
pub fn attrs(&self) -> Attrs {
Attrs { inner: self.attrs.iter() }
}
}
#[allow(missing_debug_implementations)]
#[derive(Clone)]
pub struct Classes<'a> {
inner: hash_set::Iter<'a, Atom>,
}
impl<'a> Iterator for Classes<'a> {
type Item = &'a str;
fn next(&mut self) -> Option<&'a str> {
self.inner.next().map(Deref::deref)
}
}
#[allow(missing_debug_implementations)]
#[derive(Clone)]
pub struct Attrs<'a> {
inner: hash_map::Iter<'a, QualName, StrTendril>,
}
impl<'a> Iterator for Attrs<'a> {
type Item = (&'a str, &'a str);
fn next(&mut self) -> Option<(&'a str, &'a str)> {
self.inner.next().map(|(k, v)| (k.local.deref(), v.deref()))
}
}
impl fmt::Debug for Element {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
try!(write!(f, "<{}", self.name()));
for (key, value) in self.attrs() {
try!(write!(f, " {}={:?}", key, value));
}
write!(f, ">")
}
}