summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/xml/dom/auto-ptr.hxx
blob: cf5bcb5a1d3a5e7e9a0b5008eb6655b18ebcb9d9 (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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
// file      : xsd/cxx/xml/dom/auto-ptr.hxx
// copyright : Copyright (c) 2005-2017 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSD_CXX_XML_DOM_AUTO_PTR_HXX
#define XSD_CXX_XML_DOM_AUTO_PTR_HXX

#include <xsd/cxx/config.hxx> // XSD_CXX11_*

#ifdef XSD_CXX11
#  include <memory>      // std::unique_ptr
#  include <utility>     // std::move
#  include <type_traits> // std::remove_const
#endif

namespace xsd
{
  namespace cxx
  {
    namespace xml
    {
      namespace dom
      {
#ifdef XSD_CXX11
        template <typename T>
        struct deleter
        {
          void
          operator() (T* p) const
          {
            if (p != 0)
              const_cast<typename std::remove_const<T>::type*> (p)->release ();
          }
        };

#ifdef XSD_CXX11_TEMPLATE_ALIAS
        template <typename T>
        using unique_ptr = std::unique_ptr<T, deleter<T>>;
#else
        template <typename T>
        class unique_ptr: public std::unique_ptr<T, deleter<T>>
        {
        public:
          typedef std::unique_ptr<T, deleter<T>> base;

          typedef typename base::pointer pointer;
          typedef T element_type;
          typedef deleter<T> deleter_type;

          unique_ptr (): base () {}
          explicit unique_ptr (pointer p): base (p) {}
          unique_ptr (pointer p, const deleter_type& d): base (p, d) {}
          unique_ptr (pointer p, deleter_type&& d): base (p, std::move (d)) {}
          unique_ptr (unique_ptr&& p): base (std::move (p)) {}
          template <class T1>
          unique_ptr (unique_ptr<T1>&& p): base (std::move (p)) {}
          template <class T1>
          unique_ptr (std::auto_ptr<T1>&& p): base (std::move (p)) {}

          unique_ptr& operator= (unique_ptr&& p)
          {
            static_cast<base&> (*this) = std::move (p);
            return *this;
          }

          template <class T1>
          unique_ptr& operator= (unique_ptr<T1>&& p)
          {
            static_cast<base&> (*this) = std::move (p);
            return *this;
          }

#ifdef XSD_CXX11_NULLPTR
          unique_ptr (std::nullptr_t p): base (p) {}

          unique_ptr& operator= (std::nullptr_t p)
          {
            static_cast<base&> (*this) = p;
            return *this;
          }
#endif
        };
#endif // XSD_CXX11_TEMPLATE_ALIAS

#define XSD_DOM_AUTO_PTR xsd::cxx::xml::dom::unique_ptr

#else
        // Simple auto_ptr version for C++98 that calls release() instead
        // of delete.
        //
        template <typename T>
        struct remove_c
        {
          typedef T r;
        };

        template <typename T>
        struct remove_c<const T>
        {
          typedef T r;
        };

        template <typename T>
        struct auto_ptr_ref
        {
          T* x_;

          explicit
          auto_ptr_ref (T* x)
              : x_ (x)
          {
          }
        };

        template <typename T>
        struct auto_ptr
        {
          ~auto_ptr ()
          {
            reset ();
          }

          explicit
          auto_ptr (T* x = 0)
              : x_ (x)
          {
          }

          auto_ptr (auto_ptr& y)
              : x_ (y.release ())
          {
          }

          template <typename T2>
          auto_ptr (auto_ptr<T2>& y)
              : x_ (y.release ())
          {
          }

          auto_ptr (auto_ptr_ref<T> r)
              : x_ (r.x_)
          {
          }

          auto_ptr&
          operator= (auto_ptr& y)
          {
            if (x_ != y.x_)
              reset (y.release ());

            return *this;
          }

          template <typename T2>
          auto_ptr&
          operator= (auto_ptr<T2>& y)
          {
            if (x_ != y.x_)
              reset (y.release ());

            return *this;
          }

          auto_ptr&
          operator= (auto_ptr_ref<T> r)
          {
            if (r.x_ != x_)
              reset (r.x_);

            return *this;
          }

          template <typename T2>
          operator auto_ptr_ref<T2> ()
          {
            return auto_ptr_ref<T2> (release ());
          }

          template <typename T2>
          operator auto_ptr<T2> ()
          {
            return auto_ptr<T2> (release ());
          }

        public:
          T&
          operator* () const
          {
            return *x_;
          }

          T*
          operator-> () const
          {
            return x_;
          }

          T*
          get () const
          {
            return x_;
          }

          T*
          release ()
          {
            T* x (x_);
            x_ = 0;
            return x;
          }

          void
          reset (T* x = 0)
          {
            if (x_)
              const_cast<typename remove_c<T>::r*> (x_)->release ();

            x_ = x;
          }

        private:
          T* x_;
        };

#define XSD_DOM_AUTO_PTR xsd::cxx::xml::dom::auto_ptr

#endif // XSD_CXX11
      }
    }
  }
}

#endif // XSD_CXX_XML_DOM_AUTO_PTR_HXX