summaryrefslogtreecommitdiff
path: root/libxsd/libxsd/cxx/tree/list.hxx
blob: e54b75df25330c40ccce6f128d358d0564bc4fc7 (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
// file      : libxsd/cxx/tree/list.hxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef LIBXSD_CXX_TREE_LIST_HXX
#define LIBXSD_CXX_TREE_LIST_HXX

#include <string>

#include <xercesc/dom/DOMAttr.hpp>
#include <xercesc/dom/DOMElement.hpp>

#include <libxsd/cxx/tree/elements.hxx>
#include <libxsd/cxx/tree/istream-fwd.hxx> // tree::istream
#include <libxsd/cxx/tree/containers.hxx>  // fundamental_p, sequence

namespace xsd
{
  namespace cxx
  {
    namespace tree
    {
      // Class template for xsd:list mapping. Based on the sequence
      // template.
      //
      template <typename T,
                typename C,
                schema_type::value ST = schema_type::other,
                bool fund = fundamental_p<T>::r>
      class list;


      //
      //
      template <typename T, typename C, schema_type::value ST>
      class list<T, C, ST, false>: public sequence<T>
      {
      public:
        explicit
        list (container* c = 0)
            : sequence<T> (c)
        {
        }

        list (typename sequence<T>::size_type n,
              const T& x,
              container* c = 0)
            : sequence<T> (n, x, c)
        {
        }

        template<typename I>
        list (const I& b, const I& e, container* c = 0)
            : sequence<T> (b, e, c)
        {
        }

        template <typename S>
        list (istream<S>&, flags = 0, container* c = 0);

        list (const list<T, C, ST, false>& l, flags f = 0, container* c = 0)
            : sequence<T> (l, f, c)
        {
        }

#ifdef XSD_CXX11
        list&
        operator= (const list&) = default;
#endif

      public:
        list (const xercesc::DOMElement&, flags = 0, container* c = 0);

        list (const xercesc::DOMAttr&, flags = 0, container* c = 0);

        list (const std::basic_string<C>&,
              const xercesc::DOMElement*,
              flags = 0,
              container* c = 0);

      private:
        void
        init (const std::basic_string<C>&,
              const xercesc::DOMElement*,
              flags);
      };


      //
      //
      template <typename T, typename C, schema_type::value ST>
      class list<T, C, ST, true>: public sequence<T>
      {
      public:
        explicit
        list (container* c = 0)
            : sequence<T> (c)
        {
        }

        explicit
        list (typename sequence<T>::size_type n, const T& x, container* c = 0)
            : sequence<T> (n, x, c)
        {
        }

        template<typename I>
        list (const I& b, const I& e, container* c = 0)
            : sequence<T> (b, e, c)
        {
        }

        template <typename S>
        list (istream<S>&, flags = 0, container* c = 0);

        list (const list<T, C, ST, true>& l, flags f = 0, container* c = 0)
            : sequence<T> (l, f, c)
        {
        }

#ifdef XSD_CXX11
        list&
        operator= (const list&) = default;
#endif

      public:
        list (const xercesc::DOMElement&, flags = 0, container* c = 0);

        list (const xercesc::DOMAttr&, flags = 0, container* c = 0);

        list (const std::basic_string<C>&,
              const xercesc::DOMElement*,
              flags = 0,
              container* c = 0);

      private:
        void
        init (const std::basic_string<C>&, const xercesc::DOMElement*);
      };
    }
  }
}

#endif // LIBXSD_CXX_TREE_LIST_HXX