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