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
|
#ifndef _XEXMLWRITER_HPP
#define _XEXMLWRITER_HPP
/*-------------------------------------------------------------------------
* drawElements Quality Program Test Executor
* ------------------------------------------
*
* Copyright 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*//*!
* \file
* \brief XML Writer.
*//*--------------------------------------------------------------------*/
#include "xeDefs.hpp"
#include <ostream>
#include <vector>
#include <string>
#include <streambuf>
namespace xe
{
namespace xml
{
class EscapeStreambuf : public std::streambuf
{
public:
EscapeStreambuf (std::ostream& dst) : m_dst(dst) {}
protected:
std::streamsize xsputn (const char* s, std::streamsize count);
int overflow (int ch = -1);
private:
std::ostream& m_dst;
};
class Writer
{
public:
struct BeginElement
{
std::string element;
BeginElement (const char* element_) : element(element_) {}
};
struct Attribute
{
std::string name;
std::string value;
Attribute (const char* name_, const char* value_) : name(name_), value(value_) {}
Attribute (const char* name_, const std::string& value_) : name(name_), value(value_) {}
Attribute (const std::string& name_, const std::string& value_) : name(name_), value(value_) {}
};
static const struct EndElementType {} EndElement;
Writer (std::ostream& dst);
~Writer (void);
Writer& operator<< (const BeginElement& begin);
Writer& operator<< (const Attribute& attribute);
Writer& operator<< (const EndElementType& end);
template <typename T>
Writer& operator<< (const T& value); //!< Write data.
private:
Writer (const Writer& other);
Writer& operator= (const Writer& other);
enum State
{
STATE_DATA = 0,
STATE_ELEMENT,
STATE_ELEMENT_END,
STATE_LAST
};
std::ostream& m_rawDst;
EscapeStreambuf m_dataBuf;
std::ostream m_dataStr;
State m_state;
std::vector<std::string> m_elementStack;
};
template <typename T>
Writer& Writer::operator<< (const T& value)
{
if (m_state == STATE_ELEMENT)
m_rawDst << ">";
m_dataStr << value;
m_state = STATE_DATA;
return *this;
}
} // xml
} // xe
#endif // _XEXMLWRITER_HPP
|