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

F79659-03

coherence/lang/FinalHolder.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_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 * FinalHolder is an immutable thread-safe holder intended for use as a
00021 * data-member within Objects.
00022 *
00023 * @author mf  2008.12.01
00024 *
00025 * @see FinalHandle
00026 * @see FinalView
00027 */
00028 template<class T>
00029 class FinalHolder
00030     : public MemberHolder<T>
00031     {
00032     // ----- typedefs -------------------------------------------------------
00033 
00034     public:
00035         /**
00036         * The type of the values the holder can reference.
00037         */
00038         typedef T ValueType;
00039 
00040         /**
00041         * The Handle type for the referenced Object.
00042         */
00043         typedef typename T::Handle ValueHandle;
00044 
00045         /**
00046         * The View type for the referenced Object.
00047         */
00048         typedef typename T::View ValueView;
00049 
00050         /**
00051         * The Holder type for the referenced Object.
00052         */
00053         typedef typename T::Holder ValueHolder;
00054 
00055 
00056     // -------- constructors ------------------------------------------------
00057 
00058     public:
00059         /**
00060         * Construct a new FinalHolder referencing NULL via a handle.
00061         *
00062         * @param oGuardian  the object that protects this member
00063         */
00064         FinalHolder(const Object& oGuardian)
00065             : MemberHolder<T>(oGuardian)
00066             {
00067             }
00068 
00069         /**
00070         * Construct a new FinalHolder referencing specified Object.
00071         *
00072         * @param oGuardian  the object that protects this member
00073         * @param that       the object to reference
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         * Construct a new FinalHolder referencing specified Object.
00086         *
00087         * @param oGuardian  the object that protects this member
00088         * @param that       the object to reference
00089         * @param fMutable   true if the member is declared as mutable, false
00090         *                   if declared as const
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         * Blocked copy constructor.
00104         */
00105         FinalHolder(const FinalHolder&);
00106 
00107 
00108     // ----- operators ------------------------------------------------------
00109 
00110     public:
00111         /**
00112         * Return a Holder to the referenced Object.
00113         *
00114         * @return a Holder to the referenced Object
00115         */
00116         operator ValueView() const
00117             {
00118             return getFinal();
00119             }
00120 
00121         /**
00122         * Return a Holder to the referenced Object.
00123         *
00124         * @return a Holder to the referenced Object
00125         */
00126         template<class PT>
00127         operator TypedHandle<const PT>() const
00128             {
00129             return getFinal();
00130             }
00131 
00132         /**
00133         * Return a TypedHolder to the referenced Object.
00134         *
00135         * @return a TypedHolder to the referenced Object
00136         */
00137         template<class PT>
00138         operator TypedHolder<PT>() const
00139             {
00140             return getFinal();
00141             }
00142 
00143         /**
00144         * Dereference the FinalHolder.
00145         *
00146         * @return a const pointer to the referenced Object
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         * Blocked assignment operator.
00171         */
00172         FinalHolder& operator=(const TypedHolder<T>& that);
00173 
00174         /**
00175         * Blocked assignment operator.
00176         */
00177         FinalHolder& operator=(const FinalHolder<T>& that);
00178 
00179     // ----- SmartMember interface ------------------------------------------
00180 
00181     protected:
00182         /**
00183         * {@inheritDoc}
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(/*fDeep*/ true);
00197             }
00198 
00199 
00200     // ----- helper methods -------------------------------------------------
00201 
00202     protected:
00203         /**
00204          * {@inheritDoc}
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         * Initialize the value of a FinalHolder after it is
00236         * constructed.  A FinalHolder may be initialized only if the
00237         * following conditions hold:
00238         * <ul>
00239         *   <li> The FinalHolder has not already been initialized
00240         *   (either during construction, or via <tt>initialize()</tt>)
00241         *   <li> The FinalHolder has not escaped
00242         * </ul>
00243         *
00244         * @param that  the value to initialize this FinalHolder to
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) // sync'd check
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, /*fThrow*/ false);
00271                 if (NULL == hThat) // view
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(/*fEscaped*/ false)
00277                                 ? NULL : cpo);
00278                     }
00279                 else // handle
00280                     {
00281                     T* po = get_pointer(hThat);
00282                     MemberHolder<T>::m_fView = false;
00283                     MemberHolder<T>::m_po    =
00284                         NULL == po->_attach(/*fEscaped*/false) ? NULL : po;
00285                     }
00286                 MemberHolder<T>::m_nMutability = MemberHolder<T>::safe_immutable;
00287                 }
00288             }
00289 
00290     // ----- friends --------------------------------------------------------
00291 
00292     /**
00293     * @internal
00294     */
00295     template<class _T, class OH> friend void initialize(FinalHolder<_T>& fh,
00296                                               OH that);
00297     };
00298 
00299 
00300 // ----- non-member operators and functions ---------------------------------
00301 
00302 /**
00303 * Perform a dynamic cast the pointer associated with the FinalHolder
00304 * to a the specified handle/view type.
00305 *
00306 * @param h       the FinalHolder from which to perform the cast
00307 * @param fThrow  true if an exception is to be thrown on a failed cast
00308 *
00309 * @return the casted pointer, or NULL if the cast fails and fThrow is false
00310 *
00311 * @throws ClassCastException if the cast fails and fThrow is true
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 * Perform an instanceof check on a handle or view.
00321 *
00322 * @param h  the FinalHolder from which to perform the test
00323 *
00324 * @return true if the supplied handle is an instance of the specified type
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 * Initialize the value of a FinalHolder after it is constructed.  A
00334 * FinalHolder may be initialized only if the following conditions
00335 * hold:
00336 * <ul>
00337 *   <li> The FinalHolder has not already been initialized to a
00338 *   non-NULL value (either during construction, or via
00339 *   <tt>initialize()</tt>)
00340 * </ul>
00341 *
00342 * @param h     the FinalHolder to initialize
00343 * @param that  the value to initialize this FinalHolder to
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
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.