00001
00002
00003
00004
00005
00006
00007 #ifndef COH_WEAK_HOLDER_HPP
00008 #define COH_WEAK_HOLDER_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/Object.hpp"
00013 #include "coherence/lang/TypedHandle.hpp"
00014 #include "coherence/lang/TypedHolder.hpp"
00015 #include "coherence/lang/MemberHolder.hpp"
00016 #include "coherence/lang/WeakReference.hpp"
00017
00018 #include <ostream>
00019
00020 COH_OPEN_NAMESPACE2(coherence,lang)
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 template<class T>
00049 class WeakHolder
00050 {
00051
00052
00053 public:
00054
00055
00056
00057 typedef const T ValueType;
00058
00059
00060
00061
00062 typedef typename T::Handle ValueHandle;
00063
00064
00065
00066
00067 typedef typename T::View ValueView;
00068
00069
00070
00071
00072 typedef typename T::Holder ValueHolder;
00073
00074
00075
00076
00077 public:
00078
00079
00080
00081
00082
00083 WeakHolder(const Object& oGuardian)
00084 : m_ohWeak(oGuardian, WeakReference::valueOf(NULL)),
00085 m_cpWeak(NULL)
00086 {
00087 }
00088
00089
00090
00091
00092
00093
00094
00095 WeakHolder(const Object& oGuardian, const TypedHolder<T>& that)
00096 : m_ohWeak(oGuardian, WeakReference::valueOf(that)),
00097 m_cpWeak(get_pointer(that))
00098 {
00099 }
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109 WeakHolder(const Object& oGuardian, const TypedHolder<T>& that,
00110 bool fMutable)
00111 : m_ohWeak(oGuardian, WeakReference::valueOf(that), fMutable),
00112 m_cpWeak(get_pointer(that))
00113 {
00114 }
00115
00116
00117
00118
00119 public:
00120
00121
00122
00123
00124
00125 WeakHolder& operator=(const TypedHolder<T>& that)
00126 {
00127 WeakReference::Holder ohRef = WeakReference::valueOf(that);
00128 const T* cpThat = get_pointer(that);
00129
00130
00131 {
00132 SynchronizedMemberWriteBlock guard(get_guardian(m_ohWeak));
00133 guard.setMember(m_ohWeak, ohRef);
00134 m_cpWeak = cpThat;
00135 }
00136
00137 return *this;
00138 }
00139
00140
00141
00142
00143
00144
00145 WeakHolder& operator=(const WeakHolder& that)
00146 {
00147 return operator=((ValueHolder) that);
00148 }
00149
00150
00151
00152
00153
00154
00155
00156
00157 operator ValueView() const
00158 {
00159 WeakReference::View vRef;
00160 const T* cpWeak;
00161
00162
00163 {
00164 SynchronizedMemberReadBlock guard(get_guardian(m_ohWeak));
00165 vRef = guard.getMember(m_ohWeak);
00166 cpWeak = m_cpWeak;
00167 }
00168
00169 Object::View v = vRef->get();
00170 return NULL == v
00171 ? TypedHandle<const T>()
00172 : TypedHandle<const T>(cpWeak, v);
00173 }
00174
00175
00176
00177
00178
00179
00180 template<class PT>
00181 operator TypedHandle<const PT>() const
00182 {
00183 return (ValueView) *this;
00184 }
00185
00186
00187
00188
00189
00190
00191 template<class PT>
00192 operator TypedHolder<PT>() const
00193 {
00194 WeakReference::Holder ohRef;
00195 const T* cpWeak;
00196
00197
00198 {
00199 SynchronizedMemberReadBlock guard(get_guardian(m_ohWeak));
00200 ohRef = guard.getMember(m_ohWeak);
00201 cpWeak = m_cpWeak;
00202 }
00203
00204 WeakReference::Handle hRef = cast<WeakReference::Handle>(ohRef,
00205 false);
00206 Object::Holder oh = NULL == hRef
00207 ? ohRef->get()
00208 : hRef->get();
00209
00210 if (NULL == oh)
00211 {
00212 return NULL;
00213 }
00214 else if (NULL == hRef)
00215 {
00216 return TypedHandle<const T>(cpWeak, oh);
00217 }
00218 else
00219 {
00220 return TypedHandle<T>(const_cast<T*>(cpWeak), oh);
00221 }
00222 }
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233 ValueView operator->() const
00234 {
00235 return (ValueView) *this;
00236 }
00237
00238
00239
00240
00241
00242
00243
00244
00245 const T& operator*() const
00246 {
00247 return *operator->();
00248 }
00249
00250
00251
00252 protected:
00253
00254
00255
00256 MemberHolder<WeakReference> m_ohWeak;
00257
00258
00259
00260
00261 const T* m_cpWeak;
00262 };
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276 template <typename Char, typename Traits, class T>
00277 COH_INLINE std::basic_ostream<Char, Traits>& operator<<(std::basic_ostream<Char, Traits>& out, const WeakHolder<T>& woh)
00278 {
00279 typename WeakHolder<T>::ValueView v = woh;
00280 out << v;
00281 return out;
00282 }
00283
00284
00285
00286
00287
00288
00289 template<class T> void clear_handle(WeakHolder<T>& woh)
00290 {
00291 woh = NULL;
00292 }
00293
00294
00295
00296
00297
00298
00299
00300
00301 template<class T>
00302 bool is_null(const WeakHolder<T>& woh)
00303 {
00304 return woh == NULL;
00305 }
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318 template<class D, class T>
00319 D cast(const WeakHolder<T>& woh, bool fThrow = true)
00320 {
00321 return cast<D>((TypedHolder<T>) woh, fThrow);
00322 }
00323
00324
00325
00326
00327
00328
00329
00330
00331 template<class D, class T>
00332 bool instanceof(const WeakHolder<T>& woh)
00333 {
00334 return NULL != cast<D>(woh, false);
00335 }
00336
00337 COH_CLOSE_NAMESPACE2
00338
00339 #endif // COH_WEAK_HOLDER_HPP