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

F79659-03

coherence/lang/Volatile.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_VOLATILE_HPP
00008 #define COH_VOLATILE_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/Object.hpp"
00013 #include "coherence/native/NativeAtomic32.hpp"
00014 #include "coherence/native/NativeAtomic64.hpp"
00015 
00016 
00017 COH_OPEN_NAMESPACE2(coherence,lang)
00018 
00019 using coherence::native::NativeAtomic32;
00020 using coherence::native::NativeAtomic64;
00021 
00022 template<class T>
00023 class VolatileStorage
00024     {
00025     public:
00026         typedef int64_t cast_type;
00027         typedef NativeAtomic64 storage;
00028     };
00029 
00030 #define COH_DEFINE_VOLATILE_STORAGE(TYPE, WIDTH) \
00031 template<> \
00032 class VolatileStorage<TYPE> \
00033     { \
00034     public: \
00035         typedef int##WIDTH##_t cast_type; \
00036         typedef NativeAtomic##WIDTH storage; \
00037     }
00038 
00039 COH_DEFINE_VOLATILE_STORAGE(bool,        32);
00040 COH_DEFINE_VOLATILE_STORAGE(char,        32);
00041 //COH_DEFINE_VOLATILE_STORAGE(octet_t,   32); // avoid duplicate instantiation
00042 //COH_DEFINE_VOLATILE_STORAGE(wchar16_t, 32); // avoid duplicate instantiation
00043 //COH_DEFINE_VOLATILE_STORAGE(int8_t,    32); // avoid duplicate instantiation
00044 //COH_DEFINE_VOLATILE_STORAGE(uint8_t,   32); // avoid duplicate instantiation
00045 COH_DEFINE_VOLATILE_STORAGE(int16_t,     32);
00046 COH_DEFINE_VOLATILE_STORAGE(uint16_t,    32);
00047 COH_DEFINE_VOLATILE_STORAGE(int32_t,     32);
00048 COH_DEFINE_VOLATILE_STORAGE(uint32_t,    32);
00049 COH_DEFINE_VOLATILE_STORAGE(int64_t,     64);
00050 COH_DEFINE_VOLATILE_STORAGE(uint64_t,    64);
00051 COH_DEFINE_VOLATILE_STORAGE(float32_t,   64);
00052 COH_DEFINE_VOLATILE_STORAGE(float64_t ,  64);
00053 //COH_DEFINE_VOLATILE_STORAGE(size32_t,  32); // avoid duplicate instantiation
00054 //COH_DEFINE_VOLATILE_STORAGE(size64_t,  64); // avoid duplicate instantiation
00055 
00056 /**
00057 * Template class wraps primitive data types with memory barriers, providing
00058 * JSR-133 style volatiles.  Note that Weak|MemberHandle/View/Holder are naturally
00059 * volatile and thus don't need to be supported by this class.
00060 *
00061 * Note: In the rare case that a Volatile is declared via the mutable
00062 *       keyword, the Volatile must be informed of this fact by setting
00063 *       fMutable to true during construction.
00064 *
00065 * @author mf  2008.02.07
00066 */
00067 template<class T>
00068 class COH_EXPORT Volatile
00069     {
00070     // ----- typedefs -------------------------------------------------------
00071 
00072     public:
00073         /**
00074         * A primitive data type that is wrapped by this Volatile<T>
00075         */
00076         typedef T Type;
00077 
00078 
00079     // ----- constructors ---------------------------------------------------
00080 
00081     public:
00082         /**
00083         * Construct a new Volatile<T> with the default wrapped T value.
00084         *
00085         * @param oGuardian  the object which this data member is part of
00086         */
00087         Volatile(Object& oGuardian);
00088 
00089         /**
00090         * Copy-construct a Volatile<T>.
00091         *
00092         * @param oGuardian  the object which this data member is part of
00093         */
00094         Volatile(Object& oGuardian, const Volatile& o);
00095 
00096         /**
00097         * Copy-construct a Volatile<T>.
00098         *
00099         * @param oGuardian  the object which this data member is part of
00100         * @param fMutable   true if the member is declared as mutable, false
00101         *                   if declared as const
00102         */
00103         Volatile(Object& oGuardian, const Volatile& o, bool fMutable);
00104 
00105         /**
00106         * Construct a new Volatile<T> with the specified wrapped T value.
00107         *
00108         * @param oGuardian  the object which this data member is part of
00109         */
00110         Volatile(Object& oGuardian, const T& value);
00111 
00112         /**
00113         * Construct a new Volatile<T> with the specified wrapped T value.
00114         *
00115         * @param oGuardian  the object which this data member is part of
00116         * @param fMutable   true if the member is declared as mutable, false
00117         *                   if declared as const
00118         */
00119         Volatile(Object& oGuardian, const T& value, bool fMutable);
00120 
00121         /**
00122         * Destruct this Volatile<T> object.
00123         */
00124         ~Volatile();
00125 
00126 
00127     // ----- operators ------------------------------------------------------
00128 
00129     public:
00130         /**
00131         * Assign this Volatile the value from another Volatile
00132         */
00133         Volatile& operator=(const Volatile& value);
00134 
00135         /**
00136         * Assign this Volatile a new value.
00137         */
00138         Volatile& operator=(const T& value);
00139 
00140 
00141     // ----- Volatile interface --------------------------------------------
00142 
00143     public:
00144         /**
00145         * Return the Volatile value
00146         *
00147         * @return The Volatile value
00148         */
00149         operator const T() const;
00150 
00151 
00152     // ----- data members ---------------------------------------------------
00153 
00154     private:
00155         /**
00156         * The object which this data member is part of.
00157         */
00158         const Object& m_oGuardian;
00159 
00160         /**
00161         * The volatile value wrapped in a union of NativeAtomic64.
00162         */
00163         typename VolatileStorage<T>::storage m_atomic;
00164     };
00165 
00166 // ----- global operators and functions -------------------------------------
00167 
00168 /**
00169 * Output a human-readable description of the given Volatile<T> to the
00170 * specified stream.
00171 *
00172 * @param out  the stream used to output the description
00173 * @param o    the Volatile<T> value to describe
00174 *
00175 * @return the supplied stream
00176 */
00177 template <typename Char, typename Traits, class T>
00178 COH_INLINE std::basic_ostream<Char, Traits>& operator<<(std::basic_ostream<Char, Traits>& out,
00179             const coherence::lang::Volatile<T>& o)
00180     {
00181     out << (T) o;
00182     return out;
00183     }
00184 
00185 COH_CLOSE_NAMESPACE2
00186 
00187 #endif // COH_Volatile_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.