]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/ptr_scpd.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: scoped smart pointer class
4 // Author: Jesse Lovelace <jllovela@eos.ncsu.edu>
8 // Copyright: (c) Jesse Lovelace and original Boost authors (see below)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // This class closely follows the implementation of the boost
13 // library scoped_ptr and is an adaption for c++ macro's in
14 // the wxWidgets project. The original authors of the boost
15 // scoped_ptr are given below with their respective copyrights.
17 // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
18 // Copyright (c) 2001, 2002 Peter Dimov
20 // Permission to copy, use, modify, sell and distribute this software
21 // is granted provided this copyright notice appears in all copies.
22 // This software is provided "as is" without express or implied
23 // warranty, and with no claim as to its suitability for any purpose.
25 // See http://www.boost.org/libs/smart_ptr/scoped_ptr.htm for documentation.
28 #ifndef __WX_SCOPED_POINTER__
29 #define __WX_SCOPED_POINTER__
33 // ----------------------------------------------------------------------------
34 // wxScopedPtr: A scoped pointer
35 // ----------------------------------------------------------------------------
43 wxScopedPtr(wxScopedPtr
const &);
44 wxScopedPtr
& operator=(wxScopedPtr
const &);
47 typedef T element_type
;
49 wxEXPLICIT
wxScopedPtr(T
* ptr
= NULL
)
58 void reset(T
* ptr
= NULL
)
76 wxASSERT(m_ptr
!= NULL
);
80 T
* operator->() const
82 wxASSERT(m_ptr
!= NULL
);
91 void swap(wxScopedPtr
& ot
)
99 // ----------------------------------------------------------------------------
100 // old macro based implementation
101 // ----------------------------------------------------------------------------
104 checked deleters are used to make sure that the type being deleted is really
105 a complete type.: otherwise sizeof() would result in a compile-time error
107 do { ... } while ( 0 ) construct is used to have an anonymous scope
108 (otherwise we could have name clashes between different "complete"s) but
109 still force a semicolon after the macro
113 #define wxFOR_ONCE(name) for(int name=0; name<1; name++)
114 #define wxPRE_NO_WARNING_SCOPE(name) wxFOR_ONCE(wxMAKE_UNIQUE_NAME(name))
115 #define wxPOST_NO_WARNING_SCOPE(name)
117 #define wxPRE_NO_WARNING_SCOPE(name) do
118 #define wxPOST_NO_WARNING_SCOPE(name) while ( wxFalse )
121 #define wxCHECKED_DELETE(ptr) \
122 wxPRE_NO_WARNING_SCOPE(scope_var1) \
124 typedef char complete[sizeof(*ptr)]; \
126 } wxPOST_NO_WARNING_SCOPE(scope_var1)
128 #define wxCHECKED_DELETE_ARRAY(ptr) \
129 wxPRE_NO_WARNING_SCOPE(scope_var2) \
131 typedef char complete[sizeof(*ptr)]; \
133 } wxPOST_NO_WARNING_SCOPE(scope_var2)
135 /* The type being used *must* be complete at the time
136 that wxDEFINE_SCOPED_* is called or a compiler error will result.
137 This is because the class checks for the completeness of the type
140 #define wxDECLARE_SCOPED_PTR(T, name) \
146 name(name const &); \
147 name & operator=(name const &); \
150 wxEXPLICIT name(T * ptr = NULL) \
155 void reset(T * ptr = NULL) \
171 T & operator*() const \
173 wxASSERT(m_ptr != NULL); \
177 T * operator->() const \
179 wxASSERT(m_ptr != NULL); \
188 void swap(name & ot) \
190 T * tmp = ot.m_ptr; \
196 #define wxDEFINE_SCOPED_PTR(T, name)\
199 wxCHECKED_DELETE(m_ptr); \
202 // this macro can be used for the most common case when you want to declare and
203 // define the scoped pointer at the same time and want to use the standard
204 // naming convention: auto pointer to Foo is called FooPtr
205 #define wxDEFINE_SCOPED_PTR_TYPE(T) \
206 wxDECLARE_SCOPED_PTR(T, T ## Ptr) \
207 wxDEFINE_SCOPED_PTR(T, T ## Ptr)
209 // the same but for arrays instead of simple pointers
210 #define wxDECLARE_SCOPED_ARRAY(T, name)\
215 name(name const &); \
216 name & operator=(name const &); \
219 wxEXPLICIT name(T * p = NULL) : m_ptr(p) \
223 void reset(T * p = NULL); \
225 T & operator[](long int i) const\
227 wxASSERT(m_ptr != NULL); \
237 void swap(name & ot) \
239 T * tmp = ot.m_ptr; \
245 #define wxDEFINE_SCOPED_ARRAY(T, name) \
248 wxCHECKED_DELETE_ARRAY(m_ptr); \
250 void name::reset(T * p){ \
253 wxCHECKED_DELETE_ARRAY(m_ptr); \
258 // ----------------------------------------------------------------------------
259 // "Tied" scoped pointer: same as normal one but also sets the value of
260 // some other variable to the pointer value
261 // ----------------------------------------------------------------------------
263 #define wxDEFINE_TIED_SCOPED_PTR_TYPE(T) \
264 wxDEFINE_SCOPED_PTR_TYPE(T) \
265 class T ## TiedPtr : public T ## Ptr \
268 T ## TiedPtr(T **pp, T *p) \
269 : T ## Ptr(p), m_pp(pp) \
285 #endif // __WX_SCOPED_POINTER__