C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/lang/FinalView.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
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 * FinalView is an immutable thread-safe view intended for use as a data-member
00020 * within Objects.
00021 *
00022 * @author mf  2008.12.01
00023 *
00024 * @see FinalHandle
00025 * @see FinalHolder
00026 */
00027 template<class T>
00028 class FinalView
00029     : public MemberView<T>
00030     {
00031     // ----- typedefs -------------------------------------------------------
00032 
00033     public:
00034         /**
00035         * The type of the values the holder can reference.
00036         */
00037         typedef T ValueType;
00038 
00039         /**
00040         * The View type for the referenced Object.
00041         */
00042         typedef typename T::View ValueView;
00043 
00044 
00045     // -------- constructors ------------------------------------------------
00046 
00047     public:
00048         /**
00049         * Construct a new FinalView referencing NULL via a handle.
00050         *
00051         * @param oGuardian  the object that protects this member
00052         */
00053         FinalView(const Object& oGuardian)
00054             : MemberView<T>(oGuardian)
00055             {
00056             }
00057 
00058         /**
00059         * Construct a new FinalView referencing specified Object.
00060         *
00061         * @param oGuardian  the object that protects this member
00062         * @param that       the object to reference
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         * Construct a new FinalView referencing specified Object.
00075         *
00076         * @param oGuardian  the object that protects this member
00077         * @param that       the object to reference
00078         * @param fMutable   true if the member is declared as mutable, false
00079         *                   if declared as const
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         * Blocked copy constructor.
00093         */
00094         FinalView(const FinalView&);
00095 
00096 
00097     // ----- operators ------------------------------------------------------
00098 
00099     public:
00100         /**
00101         * Return a View to the referenced Object.
00102         *
00103         * @return a View to the referenced Object
00104         */
00105         operator ValueView() const
00106             {
00107             return getFinal();
00108             }
00109 
00110         /**
00111         * Return a View to the referenced Object.
00112         *
00113         * @return a View to the referenced Object
00114         */
00115         template<class PT>
00116         operator TypedHandle<const PT>() const
00117             {
00118             return getFinal();
00119             }
00120 
00121         /**
00122         * Return a TypedHolder to the referenced Object.
00123         *
00124         * @return a TypedHolder to the referenced Object
00125         */
00126         template<class PT>
00127         operator TypedHolder<PT>() const
00128             {
00129             return getFinal();
00130             }
00131 
00132         /**
00133         * Dereference the FinalView.
00134         *
00135         * @return a const pointer to the referenced Object
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         * Blocked assignment operator.
00160         */
00161         FinalView& operator=(const ValueView& that);
00162 
00163         /**
00164         * Blocked assignment operator.
00165         */
00166         FinalView& operator=(const FinalView<T>& that);
00167 
00168 
00169     // ----- SmartMember interface ------------------------------------------
00170 
00171     protected:
00172         /**
00173         * {@inheritDoc}
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(/*fDeep*/ true);
00188             }
00189 
00190 
00191     // ----- helper methods -------------------------------------------------
00192 
00193     protected:
00194         /**
00195          * {@inheritDoc}
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         * Initialize the value of a FinalView after it is
00219         * constructed.  A FinalView may be initialized only if the
00220         * following conditions hold:
00221         * <ul>
00222         *   <li> The FinalView has not already been initialized
00223         *   (either during construction, or via <tt>initialize()</tt>)
00224         *   <li> The FinalView has not escaped
00225         * </ul>
00226         *
00227         * @param that  the value to initialize this FinalView to
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) // sync'd check
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     // ----- friends --------------------------------------------------------
00263 
00264     /**
00265     * @internal
00266     */
00267     template<class _T, class V> friend void initialize(FinalView<_T>& fh,
00268                                               V that);
00269     };
00270 
00271 /**
00272 * Perform a dynamic cast the pointer associated with the FinalView
00273 * to a the specified handle/view type.
00274 *
00275 * @param v       the FinalView from which to perform the cast
00276 * @param fThrow  true if an exception is to be thrown on a failed cast
00277 *
00278 * @return the casted pointer, or NULL if the cast fails and fThrow is false
00279 *
00280 * @throws ClassCastException if the cast fails and fThrow is true
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 * Perform an instanceof check on a FinalView.
00290 *
00291 * @param v   the FinalView from which to perform the test
00292 *
00293 * @return true if the supplied handle is an instance of the specified type
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 * Initialize the value of a FinalView after it is constructed.  A
00303 * FinalView may be initialized only if the following conditions
00304 * hold:
00305 * <ul>
00306 *   <li> The FinalView has not already been initialized to a
00307 *   non-NULL value (either during construction, or via
00308 *   <tt>initialize()</tt>)
00309 * </ul>
00310 *
00311 * @param h     the FinalView to initialize
00312 * @param that  the value to initialize this FinalView to
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
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.