summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/custom/comments/xml-schema-custom.cxx
blob: 67937d16201fc5e73a867f8f2a738b32c631ad00 (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
// file      : examples/cxx/tree/custom/comments/xml-schema-custom.cxx
// copyright : not copyrighted - public domain

// Include xml-schema.hxx instead of xml-schema-custom.hxx here.
//
#include "xml-schema.hxx"

#include <xercesc/dom/DOMComment.hpp>
#include <xercesc/dom/DOMDocument.hpp>

#include <xsd/cxx/xml/string.hxx> // xml::transcode, xml::string

namespace xml = xsd::cxx::xml;

namespace xml_schema
{
  type::
  type ()
      : type_base ()
  {
  }

  type::
  type (const xercesc::DOMElement& e, flags f, container* c)
      : type_base (e, f, c)
  {
    using namespace xercesc;

    // Here we are only handling a comment that is the first
    // node in the element's content.
    //
    const DOMNode* n (e.getFirstChild ());

    if (n != 0 && n->getNodeType () == DOMNode::COMMENT_NODE)
    {
      const DOMComment* c (static_cast<const DOMComment*> (n));
      comment_ = xml::transcode<char> (c->getData ());
    }
  }

  type::
  type (const xercesc::DOMAttr& a, flags f, container* c)
      : type_base (a, f, c)
  {
    // No comments for attributes.
    //
  }

  type::
  type (const std::string& s, const xercesc::DOMElement* e,
        flags f, container* c)
      : type_base (s, e, f, c)
  {
    // No comments for list items.
    //
  }

  type::
  type (const type& x, flags f, container* c)
      : type_base (x, f, c), comment_ (x.comment_)
  {
  }

  type* type::
  _clone (flags f, container* c) const
  {
    return new type (*this, f, c);
  }

  // Serialization operators.
  //
  void
  operator<< (xercesc::DOMElement& e, const type& x)
  {
    // Call our base first.
    //
    const type_base& b (x);
    e << b;

    // Add the comment if any.
    //
    const std::string s (x.comment ());

    if (!s.empty ())
    {
      using namespace xercesc;

      DOMDocument* doc (e.getOwnerDocument ());
      DOMComment* c (doc->createComment (xml::string (s).c_str ()));
      e.appendChild (c);
    }
  }

  void
  operator<< (xercesc::DOMAttr& a, const type& x)
  {
    // Call our base first.
    //
    const type_base& b (x);
    a << b;

    // No comments for attributes.
    //
  }

  void
  operator<< (xml_schema::list_stream& ls, const type& x)
  {
    // Call our base first.
    //
    const type_base& b (x);
    ls << b;

    // No comments for list items.
    //
  }
}