-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml_writer.h
192 lines (163 loc) · 5.85 KB
/
xml_writer.h
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
/*
Copyright (C) 2010, Ferruccio Barletta ([email protected])
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef XML_WRITER_HPP
#define XML_WRITER_HPP
#include <string>
#include <iostream>
#include <sstream>
#include <stack>
#include <cassert>
namespace xml {
#define XML_HEADER "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
class element;
//
// xml::writer class
//
class writer
{
public:
// writer must be bound to an ostream
writer(std::ostream& os) : os(os), need_header(true) {}
~writer(void) { assert(elements.empty()); }
private:
std::ostream& os; // output stream
bool need_header; // have we written an XML header yet?
std::stack<element*> elements; // stack of open element tags
// write XML header, if necessary
writer& header() {
if (need_header) {
os << "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
need_header = false;
}
return *this;
}
// write a single character to the output stream
writer& putc(char c) {
os.put(c);
return *this;
}
// write a string to the output stream
writer& puts(const char* str) {
os << str;
return *this;
}
friend element;
};
//
// xml::element class
//
class element
{
public:
// create a new element tag, bound to an xml::writer
element(const char* name, writer& wr) : name(name), wr(wr) {
assert(name != 0);
check_parent();
wr.header().putc('<').puts(name);
tagopen = true;
wr.elements.push(this);
}
// close the current element tag
~element() {
if (!wr.elements.empty() && wr.elements.top() == this) {
wr.elements.pop();
if (tagopen)
wr.puts("/>");
else
wr.puts("</").puts(name).putc('>');
}
}
// write an attribute for the current element
element& attr(const char* name, const char* value) {
assert(name != 0);
assert(value != 0);
assert(tagopen);
wr.putc(' ').puts(name).puts("=\"");
qputs(value);
wr.putc('"');
return *this;
}
// attr() overload for std::string type
element& attr(const char* name, const std::string& value) { return attr(name, value.c_str()); }
// attr() function template for all streamable types
template <class T>
element& attr(const char* name, T value) {
std::stringstream ss;
ss << value;
attr(name, ss.str());
return *this;
}
// write text content for the current element
element& contents(const char* str) {
assert(str != 0);
check_parent();
qputs(str);
return *this;
}
// contents() overload for std::string type
element& contents(const std::string& str) { return contents(str.c_str()); }
// contents() function template for all streamable types
template <class T>
element& contents(T value) {
std::stringstream ss;
ss << value;
contents(ss.str());
return *this;
}
// write CDATA section
element& cdata(const char* str) {
assert(str != 0);
check_parent();
wr.puts("<![CDATA[");
wr.puts(str);
wr.puts("]]>");
return *this;
}
// cdata() overload for std::string type
element& cdata(const std::string& str) { return cdata(str.c_str()); }
private:
writer& wr; // bound XML writer
const char* name; // name of current element
bool tagopen; // is the element tag for this element still open?
// write a string quoting characters which have meaning in xml
element& qputs(const char* str) {
for (; *str; ++str)
switch (*str) {
case '&': wr.puts("&"); break;
case '<': wr.puts("<"); break;
case '>': wr.puts(">"); break;
case '\'': wr.puts("'"); break;
case '"': wr.puts("""); break;
default: wr.putc(*str); break;
}
return *this;
}
// check to see if we have a parent tag which needs to be closed
void check_parent() {
if (!wr.elements.empty() && wr.elements.top()->tagopen) {
wr.putc('>');
wr.elements.top()->tagopen = false;
}
}
};
}
#endif