1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWeakRef - Generic weak references for wxWidgets
4 // Author: Arne Steinarson
7 // Copyright: (c) 2007 Arne Steinarson
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_WEAKREF_H_
12 #define _WX_WEAKREF_H_
14 #include "wx/tracker.h"
16 #include "wx/meta/convertible.h"
17 #include "wx/meta/int2type.h"
20 struct wxIsStaticTrackable
22 enum { value
= wxConvertibleTo
<T
, wxTrackable
>::value
};
25 // Weak ref implementation when T has wxTrackable as a known base class
27 class wxWeakRefStatic
: public wxTrackerNode
30 wxWeakRefStatic() : m_pobj(NULL
) { }
34 // Release old object if any
37 // Remove ourselves from object tracker list
38 wxTrackable
*pt
= static_cast<wxTrackable
*>(m_pobj
);
52 // Now set new trackable object
55 // Add ourselves to object tracker list
56 wxTrackable
*pt
= static_cast<wxTrackable
*>(pobj
);
62 void AssignCopy(const wxWeakRefStatic
& wr
)
67 virtual void OnObjectDestroy()
69 // Tracked object itself removes us from list of trackers
70 wxASSERT( m_pobj
!=NULL
);
78 #if !defined(HAVE_PARTIAL_SPECIALIZATION) || !defined(HAVE_TEMPLATE_OVERLOAD_RESOLUTION)
79 #define USE_STATIC_WEAKREF
83 #ifndef USE_STATIC_WEAKREF
84 template<class T
,bool use_static
>
87 // Intermediate class, to select the static case above.
89 struct wxWeakRefImpl
<T
, true> : public wxWeakRefStatic
<T
>
94 // Weak ref implementation when T does not have wxTrackable as known base class
96 struct wxWeakRefImpl
<T
, false> : public wxTrackerNode
100 // Release old object if any
103 // Remove ourselves from object tracker list
104 m_ptbase
->RemoveNode(this);
111 wxWeakRefImpl() : m_pobj(NULL
), m_ptbase(NULL
) { }
113 // Assign receives most derived class here and can use that
114 template <class TDerived
>
115 void Assign( TDerived
* pobj
)
117 AssignHelper( pobj
, wxInt2Type
<wxIsStaticTrackable
<TDerived
>::value
>() );
120 template <class TDerived
>
121 void AssignHelper(TDerived
* pobj
, wxInt2Type
<true>)
123 wxTrackable
*ptbase
= static_cast<wxTrackable
*>(pobj
);
124 DoAssign( pobj
, ptbase
);
127 #ifdef HAVE_DYNAMIC_CAST
128 void AssignHelper(T
* pobj
, wxInt2Type
<false>)
130 // A last way to get a trackable pointer
131 wxTrackable
*ptbase
= dynamic_cast<wxTrackable
*>(pobj
);
134 DoAssign( pobj
, ptbase
);
138 wxFAIL_MSG( "Tracked class should inherit from wxTrackable" );
143 #endif // HAVE_DYNAMIC_CAST
145 void AssignCopy(const wxWeakRefImpl
& wr
)
147 DoAssign(wr
.m_pobj
, wr
.m_ptbase
);
150 void DoAssign( T
* pobj
, wxTrackable
*ptbase
) {
151 if( m_pobj
==pobj
) return;
154 // Now set new trackable object
157 // Add ourselves to object tracker list
159 ptbase
->AddNode( this );
165 virtual void OnObjectDestroy()
167 // Tracked object itself removes us from list of trackers
168 wxASSERT( m_pobj
!=NULL
);
174 wxTrackable
*m_ptbase
;
177 #endif // #ifndef USE_STATIC_WEAKREF
181 // A weak reference to an object of type T, where T has type wxTrackable
182 // (usually statically but if not dynamic_cast<> is tried).
184 class wxWeakRef
: public
185 #ifdef USE_STATIC_WEAKREF
188 wxWeakRefImpl
<T
, wxIsStaticTrackable
<T
>::value
>
195 // When we have the full type here, static_cast<> will always work
196 // (or give a straight compiler error).
197 template <class TDerived
>
198 wxWeakRef(TDerived
* pobj
)
203 template <class TDerived
>
204 wxWeakRef
<T
>& operator=(TDerived
* pobj
)
210 wxWeakRef
<T
>& operator=(const wxWeakRef
<T
>& wr
)
216 virtual ~wxWeakRef() { this->Release(); }
218 // Smart pointer functions
219 T
& operator*() const { return *this->m_pobj
; }
220 T
* operator->() const { return this->m_pobj
; }
222 T
* get() const { return this->m_pobj
; }
223 operator T
*() const { return get(); }
227 // Weak ref implementation assign objects are queried for wxTrackable
228 // using dynamic_cast<>
230 class wxWeakRefDynamic
: public wxTrackerNode
233 wxWeakRefDynamic() : m_pobj(NULL
) { }
235 wxWeakRefDynamic(T
* pobj
) : m_pobj(pobj
)
240 virtual ~wxWeakRefDynamic() { Release(); }
242 // Smart pointer functions
243 T
& operator * (){ wxASSERT(this->m_pobj
); return *m_pobj
; }
244 T
* operator -> (){ wxASSERT(this->m_pobj
); return m_pobj
; }
245 T
* operator = (T
* pobj
) { Assign(pobj
); return m_pobj
; }
247 T
* get(){ return this->m_pobj
; }
249 // operator T* (){ return this->m_pobj; }
251 // test for pointer validity: defining conversion to unspecified_bool_type
252 // and not more obvious bool to avoid implicit conversions to integer types
253 typedef T
*(wxWeakRef
<T
>::*unspecified_bool_type
)() const;
254 operator unspecified_bool_type() const
256 return m_pobj
? &wxWeakRef
<T
>::get
: NULL
;
259 // Assign from another weak ref, point to same object
260 T
* operator = (const wxWeakRef
<T
> &wr
) { Assign( wr
.get() ); return this->m_pobj
; }
264 // Release old object if any
267 // Remove ourselves from object tracker list
268 wxTrackable
*pt
= dynamic_cast<wxTrackable
*>(m_pobj
);
270 pt
->RemoveNode(this);
278 if ( m_pobj
== pobj
)
283 // Now set new trackable object
286 // Add ourselves to object tracker list
287 wxTrackable
*pt
= dynamic_cast<wxTrackable
*>(pobj
);
295 // If the object we want to track does not support wxTackable, then
296 // log a message and keep the NULL object pointer.
297 wxFAIL_MSG( "Tracked class should inherit from wxTrackable" );
302 virtual void OnObjectDestroy()
304 wxASSERT_MSG( m_pobj
, "tracked object should have removed us itself" );
312 // Provide some basic types of weak references
313 class WXDLLIMPEXP_FWD_BASE wxEvtHandler
;
314 class WXDLLIMPEXP_FWD_CORE wxWindow
;
316 typedef wxWeakRef
<wxEvtHandler
> wxEvtHandlerRef
;
317 typedef wxWeakRef
<wxWindow
> wxWindowRef
;
319 #endif // _WX_WEAKREF_H_