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
use std::io::Write;
use crate::{Result, XMLElement, XMLVersion};
pub struct XML {
version: XMLVersion,
encoding: String,
standalone: Option<bool>,
sort_attributes: bool,
indent: bool,
root: Option<XMLElement>,
}
impl Default for XML {
fn default() -> Self {
XML {
version: XMLVersion::XML1_0,
encoding: "UTF-8".into(),
standalone: None,
sort_attributes: false,
indent: true,
root: None,
}
}
}
impl XML {
pub fn new() -> Self {
XML::default()
}
pub fn set_xml_version(&mut self, version: XMLVersion) {
self.version = version;
}
pub fn set_xml_encoding(&mut self, encoding: String) {
self.encoding = encoding;
}
pub fn standalone(&mut self) {
self.standalone = Some(true);
}
pub fn not_standalone(&mut self) {
self.standalone = Some(false);
}
pub fn enable_attributes_sorting(&mut self) {
self.sort_attributes = true;
}
pub fn disable_attributes_sorting(&mut self) {
self.sort_attributes = false;
}
pub fn enable_indentation(&mut self) {
self.indent = true;
}
pub fn disable_indentation(&mut self) {
self.indent = false;
}
pub fn set_root_element(&mut self, element: XMLElement) {
self.root = Some(element);
}
pub fn build<W: Write>(self, mut writer: W) -> Result<()> {
let standalone_attribute = if let Some(standalone) = self.standalone {
format!(r#" standalone="{}""#, standalone.to_string())
} else {
String::default()
};
writeln!(
writer,
r#"<?xml version="{}" encoding="{}"{}?>"#,
self.version.to_string(),
self.encoding,
standalone_attribute
)?;
if let Some(elem) = &self.root {
elem.render(&mut writer, self.sort_attributes, self.indent)?;
}
Ok(())
}
}