summaryrefslogtreecommitdiff
path: root/xsd-examples/cxx/tree/streaming/serializer.hxx
blob: 585bd7646f4cd90bfa7d134c258d26f32dca7f35 (plain)
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
// file      : cxx/tree/streaming/serializer.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain

#ifndef SERIALIZER_HXX
#define SERIALIZER_HXX

#include <string>
#include <iosfwd>
#include <memory> // std::unique_ptr

#include <xercesc/dom/DOMElement.hpp>

#include <xsd/cxx/xml/dom/auto-ptr.hxx>
#include <xsd/cxx/xml/dom/serialization-header.hxx> // namespace_infomap

class serializer_impl;

class serializer
{
public:
  typedef xsd::cxx::xml::dom::namespace_infomap<char> namespace_infomap;

  ~serializer ();
  serializer ();

  // Start the serialization process.
  //
  void
  start (std::ostream& is, const std::string& encoding = "UTF-8");

  // Serialize next object model fragment into an element with the specified
  // name.
  //
  template <typename T>
  void
  next (const std::string& name, const T& x);

  // Serialize next object model fragment into an element with the specified
  // name and namespace declarations.
  //
  template <typename T>
  void
  next (const std::string& name, const namespace_infomap&, const T& x);

  // Serialize next object model fragment into an element with the specified
  // namespace and qualified name.
  //
  template <typename T>
  void
  next (const std::string& ns, const std::string& name, const T& x);

  // Serialize next object model fragment into an element with the specified
  // namespace and qualified name as well as namespace declarations.
  //
  template <typename T>
  void
  next (const std::string& ns,
        const std::string& name,
        const namespace_infomap&,
        const T& x);

  // The next_open/close functions are like next() but split into two steps.
  // next_open() serializes the object model fragment into an element leaving
  // it open while next_close() closes the element.
  //
  template <typename T>
  void
  next_open (const std::string& name, const T& x);

  template <typename T>
  void
  next_open (const std::string& name, const namespace_infomap&, const T& x);

  template <typename T>
  void
  next_open (const std::string& ns, const std::string& name, const T& x);

  template <typename T>
  void
  next_open (const std::string& ns,
        const std::string& name,
        const namespace_infomap&,
        const T& x);

  void
  next_close (const std::string& name);

private:
  serializer (const serializer&);

  serializer&
  operator= (const serializer&);

private:
  xercesc::DOMElement*
  create (const std::string& name, const namespace_infomap&);

  xercesc::DOMElement*
  create (const std::string& ns,
          const std::string& name,
          const namespace_infomap&);

  void
  serialize (xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement>);

  void
  serialize_open (xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement>);

  void
  serialize_close (const std::string& name);

private:
  std::unique_ptr<serializer_impl> impl_;
};

template <typename T>
inline void serializer::
next (const std::string& name, const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (
    create (name, namespace_infomap ()));
  *e << x;
  serialize (std::move (e));
}

template <typename T>
inline void serializer::
next (const std::string& name, const namespace_infomap& map, const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (create (name, map));
  *e << x;
  serialize (std::move (e));
}

template <typename T>
inline void serializer::
next (const std::string& ns, const std::string& name, const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (
    create (ns, name, namespace_infomap ()));
  *e << x;
  serialize (std::move (e));
}

template <typename T>
inline void serializer::
next (const std::string& ns,
      const std::string& name,
      const namespace_infomap& map,
      const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (
    create (ns, name, map));

  *e << x;
  serialize (std::move (e));
}

template <typename T>
inline void serializer::
next_open (const std::string& name, const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (
    create (name, namespace_infomap ()));
  *e << x;
  serialize_open (std::move (e));
}

template <typename T>
inline void serializer::
next_open (const std::string& name, const namespace_infomap& map, const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (create (name, map));
  *e << x;
  serialize_open (std::move (e));
}

template <typename T>
inline void serializer::
next_open (const std::string& ns, const std::string& name, const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (
    create (ns, name, namespace_infomap ()));
  *e << x;
  serialize_open (std::move (e));
}

template <typename T>
inline void serializer::
next_open (const std::string& ns,
           const std::string& name,
           const namespace_infomap& map,
           const T& x)
{
  xsd::cxx::xml::dom::unique_ptr<xercesc::DOMElement> e (
    create (ns, name, map));

  *e << x;
  serialize_open (std::move (e));
}

inline void serializer::
next_close (const std::string& name)
{
  serialize_close (name);
}

#endif // SERIALIZER_HXX