00001
00002
00003
00004
00005
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
00042
00043
00044
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
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067 template<class T>
00068 class COH_EXPORT Volatile
00069 {
00070
00071
00072 public:
00073
00074
00075
00076 typedef T Type;
00077
00078
00079
00080
00081 public:
00082
00083
00084
00085
00086
00087 Volatile(Object& oGuardian);
00088
00089
00090
00091
00092
00093
00094 Volatile(Object& oGuardian, const Volatile& o);
00095
00096
00097
00098
00099
00100
00101
00102
00103 Volatile(Object& oGuardian, const Volatile& o, bool fMutable);
00104
00105
00106
00107
00108
00109
00110 Volatile(Object& oGuardian, const T& value);
00111
00112
00113
00114
00115
00116
00117
00118
00119 Volatile(Object& oGuardian, const T& value, bool fMutable);
00120
00121
00122
00123
00124 ~Volatile();
00125
00126
00127
00128
00129 public:
00130
00131
00132
00133 Volatile& operator=(const Volatile& value);
00134
00135
00136
00137
00138 Volatile& operator=(const T& value);
00139
00140
00141
00142
00143 public:
00144
00145
00146
00147
00148
00149 operator const T() const;
00150
00151
00152
00153
00154 private:
00155
00156
00157
00158 const Object& m_oGuardian;
00159
00160
00161
00162
00163 typename VolatileStorage<T>::storage m_atomic;
00164 };
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
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