00001
00002
00003
00004
00005
00006
00007 #ifndef COH_FINAL_HANDLE_HPP
00008 #define COH_FINAL_HANDLE_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/MemberHandle.hpp"
00013 #include "coherence/lang/TypedHandle.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
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074 template<class T>
00075 class FinalHandle
00076 : public MemberHandle<T>
00077 {
00078
00079
00080 public:
00081
00082
00083
00084 typedef T ValueType;
00085
00086
00087
00088
00089 typedef typename T::Handle ValueHandle;
00090
00091
00092
00093
00094 typedef typename T::View ValueView;
00095
00096
00097
00098
00099 public:
00100
00101
00102
00103
00104
00105 FinalHandle(const Object& oGuardian)
00106 : MemberHandle<T>(oGuardian)
00107 {
00108 }
00109
00110
00111
00112
00113
00114
00115
00116 FinalHandle(const Object& oGuardian, const ValueHandle& that)
00117 : MemberHandle<T>(oGuardian, that)
00118 {
00119
00120
00121
00122 if (MemberHandle<T>::m_po)
00123 {
00124 MemberHandle<T>::m_nMutability = MemberHandle<T>::safe_immutable;
00125 }
00126 }
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136 FinalHandle(const Object& oGuardian, const ValueHandle& that, bool fMutable)
00137 : MemberHandle<T>(oGuardian, that, fMutable)
00138 {
00139 if (MemberHandle<T>::m_po && !fMutable)
00140 {
00141 MemberHandle<T>::m_nMutability = MemberHandle<T>::safe_immutable;
00142 }
00143 }
00144
00145 private:
00146
00147
00148
00149 FinalHandle(const FinalHandle&);
00150
00151
00152
00153
00154 public:
00155
00156
00157
00158
00159
00160 operator ValueView() const
00161 {
00162 return getFinal();
00163 }
00164
00165
00166
00167
00168
00169
00170 operator ValueHandle()
00171 {
00172 return getFinal();
00173 }
00174
00175
00176
00177
00178
00179
00180 template<class PT>
00181 operator TypedHandle<const PT>() const
00182 {
00183 return getFinal();
00184 }
00185
00186
00187
00188
00189
00190
00191 template<class PT>
00192 operator TypedHandle<PT>()
00193 {
00194 return getFinal();
00195 }
00196
00197
00198
00199
00200
00201
00202
00203 template<class PT>
00204 operator TypedHolder<PT>() const
00205 {
00206 return getFinal();
00207 }
00208
00209
00210
00211
00212
00213
00214 template<class PT>
00215 operator TypedHolder<PT>()
00216 {
00217 return getFinal();
00218 }
00219
00220
00221
00222
00223
00224
00225 const T* operator->() const
00226 {
00227 const T* cpo = MemberHandle<T>::m_po;
00228 if (MemberHandle<T>::m_nMutability < MemberHandle<T>::safe_immutable)
00229 {
00230 MemberHandle<T>::readBarrier();
00231 if (cpo == NULL)
00232 {
00233 cpo = MemberHandle<T>::m_po;
00234 MemberHandle<T>::readBarrier();
00235 }
00236 }
00237
00238 if (NULL == cpo)
00239 {
00240 coh_throw_npe(typeid(const T));
00241 }
00242 return cpo;
00243 }
00244
00245
00246
00247
00248
00249
00250 T* operator->()
00251 {
00252 T* po = MemberHandle<T>::m_po;
00253 if (po == NULL &&
00254 MemberHandle<T>::m_nMutability < MemberHandle<T>::safe_immutable)
00255 {
00256 MemberHandle<T>::readBarrier();
00257 po = MemberHandle<T>::m_po;
00258 }
00259 if (MemberHandle<T>::m_fView)
00260 {
00261 coh_throw_illegal_state(
00262 "attempt to access handle from const FinalHandle");
00263 }
00264
00265 if (NULL == po)
00266 {
00267 coh_throw_npe(typeid(T));
00268 }
00269 return po;
00270 }
00271
00272 private:
00273
00274
00275
00276 FinalHandle& operator=(const ValueHandle& that);
00277
00278
00279
00280
00281 FinalHandle& operator=(const FinalHandle<T>& that);
00282
00283
00284
00285
00286 FinalHandle& operator=(FinalHandle<T>& that);
00287
00288
00289
00290 protected:
00291
00292
00293
00294 virtual size64_t retained() const
00295 {
00296 const T* cpo = MemberHandle<T>::m_po;
00297 if (cpo == NULL &&
00298 MemberHandle<T>::m_nMutability < MemberHandle<T>::safe_immutable)
00299 {
00300 MemberHandle<T>::readBarrier();
00301 cpo = MemberHandle<T>::m_po;
00302 }
00303
00304 return cpo == NULL
00305 ? 0
00306 : cpo->sizeOf( true);
00307 }
00308
00309
00310
00311
00312 protected:
00313 ValueView getFinal() const
00314 {
00315 const T* cpo = MemberHandle<T>::m_po;
00316 if (MemberHandle<T>::m_prev == NULL)
00317 {
00318 if (cpo == NULL &&
00319 MemberHandle<T>::m_nMutability < MemberHandle<T>::safe_immutable)
00320 {
00321 MemberHandle<T>::readBarrier();
00322 cpo = MemberHandle<T>::m_po;
00323 }
00324 return ValueView(cpo);
00325 }
00326 else
00327 {
00328 return TypedHandle<const T>(cpo, *this);
00329 }
00330 }
00331
00332 ValueHandle getFinal()
00333 {
00334 T* po = MemberHandle<T>::m_po;
00335 if (MemberHandle<T>::m_fView)
00336 {
00337 coh_throw_illegal_state(
00338 "attempt to access handle from const FinalHandle");
00339 }
00340
00341 if (MemberHandle<T>::m_prev == NULL)
00342 {
00343 if (po == NULL &&
00344 MemberHandle<T>::m_nMutability < MemberHandle<T>::safe_immutable)
00345 {
00346 MemberHandle<T>::readBarrier();
00347 }
00348 return ValueHandle(po);
00349 }
00350 else
00351 {
00352 return TypedHandle<T>(po, *this);
00353 }
00354 }
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369 void initialize(ValueHandle that)
00370 {
00371 if (MemberHandle<T>::m_nMutability >= MemberHandle<T>::forever_immutable)
00372 {
00373 coh_throw_illegal_state(
00374 "attempt to initialize const FinalHandle");
00375 }
00376 else if (MemberHandle<T>::m_prev == NULL)
00377 {
00378 SynchronizedMemberWriteBlock block(MemberHandle<T>::getGuardian());
00379 if (MemberHandle<T>::m_po != NULL)
00380 {
00381 coh_throw_illegal_state(
00382 "attempt to multiply initialize FinalHandle");
00383 }
00384 MemberHandle<T>::setEscaped(that, &block);
00385 }
00386 else if (MemberHandle<T>::m_po != NULL)
00387 {
00388 coh_throw_illegal_state(
00389 "attempt to multiply initialize FinalHandle");
00390 }
00391 else if (that != NULL)
00392 {
00393 T* po = get_pointer(that);
00394 MemberHandle<T>::m_po =
00395 NULL == po || NULL == po->_attach( false)
00396 ? NULL : po;
00397 if (MemberHandle<T>::m_nMutability != MemberHandle<T>::forever_mutable)
00398 {
00399 MemberHandle<T>::m_nMutability = MemberHandle<T>::safe_immutable;
00400 }
00401 }
00402 }
00403
00404
00405
00406
00407
00408
00409 template<class _T, class H> friend void initialize(FinalHandle<_T>& fh,
00410 H that);
00411 };
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424 template<class D, class T>
00425 D cast(FinalHandle<T>& h, bool fThrow = true)
00426 {
00427 return cast<D>((typename FinalHandle<T>::ValueHandle) h, fThrow);
00428 }
00429
00430
00431
00432
00433
00434
00435
00436
00437
00438
00439
00440
00441 template<class D, class T>
00442 D cast(const FinalHandle<T>& h, bool fThrow = true)
00443 {
00444 return cast<D>((typename FinalHandle<T>::ValueView) h, fThrow);
00445 }
00446
00447
00448
00449
00450
00451
00452
00453
00454 template<class D, class T>
00455 bool instanceof(FinalHandle<T>& h)
00456 {
00457 return NULL != cast<D>(h, false);
00458 }
00459
00460
00461
00462
00463
00464
00465
00466
00467 template<class D, class T>
00468 bool instanceof(const FinalHandle<T>& h)
00469 {
00470 return NULL != cast<D>(h, false);
00471 }
00472
00473
00474
00475
00476
00477
00478
00479
00480
00481
00482
00483
00484
00485
00486 template<class T, class H>
00487 void initialize(FinalHandle<T>& h, H that)
00488 {
00489 h.initialize(that);
00490 }
00491
00492 COH_CLOSE_NAMESPACE2
00493
00494 #endif // COH_FINAL_HANDLE_HPP