summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/streaming/serializer.hxx
blob: 6ff01142431c84d4a3e3c3221b0f4a58eca55113 (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
// file      : examples/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::auto_ptr

#include <xercesc/dom/DOMElement.hpp>

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

class serializer_impl;

class serializer
{
public:
  ~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
  // namespace and qualified name.
  //
  template <typename T>
  void
  next (const std::string& ns, const std::string& name, const T& x);

private:
  serializer (const serializer&);

  serializer&
  operator= (const serializer&);

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

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

  void
  serialize (xercesc::DOMElement&);

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

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

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

#endif // SERIALIZER_HXX