-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathmod.rs
142 lines (127 loc) · 4.23 KB
/
mod.rs
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
// Copyright 2014-2017 The html5ever Project Developers. See the
// COPYRIGHT file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use tendril::StrTendril;
pub mod treebuilder;
use super::{LocalName, Prefix, Namespace};
pub use self::treebuilder::{NodeOrText, AppendNode, AppendText};
pub use self::treebuilder::{QuirksMode, Quirks, LimitedQuirks, NoQuirks};
pub use self::treebuilder::{TreeSink, Tracer, NextParserState};
/// A name with a namespace.
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Clone)]
#[cfg_attr(feature = "heap_size", derive(HeapSizeOf))]
/// Fully qualified name. Used to depict names of tags and attributes.
///
/// Used to differentiate between similar XML fragments. For example
/// ```ignore
/// // HTML
/// <table>
/// <tr>
/// <td>Apples</td>
/// <td>Bananas</td>
/// </tr>
/// </table>
///
/// // Furniture XML
/// <table>
/// <name>African Coffee Table</name>
/// <width>80</width>
/// <length>120</length>
/// </table>
/// ```
/// Without XML namespaces we can't use those two fragments in occur
/// XML at same time. however if we declare a namespace we could instead say:
///
/// ```ignore
/// // Furniture XML
/// <furn:table>
/// <furn:name>African Coffee Table</furn:name>
/// <furn:width>80</furn:width>
/// <furn:length>120</furn:length>
/// </furn:table>
/// ```
/// and bind it to a different name.
///
/// For this reason we parse names that contain a colon in the following way
///
/// ```ignore
/// < furn:table>
/// | |
/// | +- local name
/// |
/// prefix (when resolved gives namespace_url)
/// ```
pub struct QualName {
pub ns: Namespace,
pub local: LocalName,
pub prefix: Option<Prefix>,
}
impl QualName {
#[inline]
pub fn new(ns: Namespace, local: LocalName) -> QualName {
QualName {
ns: ns,
local: local,
prefix: None,
}
}
#[inline]
pub fn new_localname(local: LocalName) -> QualName {
QualName {
ns: ns!(),
local: local,
prefix: None,
}
}
#[inline]
pub fn new_prefixed(prefix: Prefix, local: LocalName) -> QualName {
QualName {
ns: ns!(),
local: local,
prefix: Some(prefix),
}
}
}
/// A tag attribute.
///
/// The namespace on the attribute name is almost always ns!("").
/// The tokenizer creates all attributes this way, but the tree
/// builder will adjust certain attribute names inside foreign
/// content (MathML, SVG).
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Debug)]
pub struct Attribute {
pub name: QualName,
pub value: StrTendril,
}
#[cfg(test)]
mod tests {
use super::{Namespace, QualName};
use LocalName;
#[test]
fn ns_macro() {
assert_eq!(ns!(), Namespace::from(""));
assert_eq!(ns!(html), Namespace::from("http://www.w3.org/1999/xhtml"));
assert_eq!(ns!(xml), Namespace::from("http://www.w3.org/XML/1998/namespace"));
assert_eq!(ns!(xmlns), Namespace::from("http://www.w3.org/2000/xmlns/"));
assert_eq!(ns!(xlink), Namespace::from("http://www.w3.org/1999/xlink"));
assert_eq!(ns!(svg), Namespace::from("http://www.w3.org/2000/svg"));
assert_eq!(ns!(mathml), Namespace::from("http://www.w3.org/1998/Math/MathML"));
}
#[test]
fn qualname() {
assert_eq!(QualName::new(ns!(), local_name!("")),
QualName { ns: ns!(), local: LocalName::from(""), prefix: None });
assert_eq!(QualName::new(ns!(xml), local_name!("base")),
QualName { ns: ns!(xml), local: local_name!("base"), prefix: None });
}
#[test]
fn qualname_macro() {
assert_eq!(qualname!("", ""), QualName { ns: ns!(), local: local_name!(""), prefix: None });
assert_eq!(qualname!(xml, "base"), QualName { ns: ns!(xml), local: local_name!("base"), prefix: None });
}
}