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