00001
00002
00003
00004
00005
00006
00007 #ifndef COH_SYNCHRONIZED_BLOCK_HPP
00008 #define COH_SYNCHRONIZED_BLOCK_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/IllegalStateException.hpp"
00013 #include "coherence/lang/Object.hpp"
00014
00015 #include <sstream>
00016
00017 COH_OPEN_NAMESPACE2(coherence,lang)
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 class COH_EXPORT SynchronizedBlock
00054 {
00055
00056
00057 public:
00058
00059
00060
00061
00062
00063 SynchronizedBlock(Object::View v)
00064 : m_cpObject(get_pointer(v)), m_vObject(v)
00065 {
00066 v->_enterMonitor();
00067 }
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 SynchronizedBlock(const Object* p)
00080 : m_cpObject(p), m_vObject()
00081 {
00082 if (p == NULL)
00083 {
00084 coh_throw_npe(typeid(Object));
00085 }
00086 p->_enterMonitor();
00087 }
00088
00089
00090
00091
00092 SynchronizedBlock(const SynchronizedBlock& that)
00093 : m_cpObject(that.m_cpObject), m_vObject(that.m_vObject)
00094 {
00095 that.m_cpObject = NULL;
00096 that.m_vObject = NULL;
00097 }
00098
00099
00100
00101
00102
00103
00104 ~SynchronizedBlock()
00105 {
00106 const Object* cp = m_cpObject;
00107 if (NULL != cp)
00108 {
00109 m_cpObject = NULL;
00110 cp->_exitMonitor();
00111 m_vObject = NULL;
00112 }
00113 }
00114
00115
00116
00117
00118 public:
00119
00120
00121
00122
00123
00124 operator bool() const
00125 {
00126 return m_cpObject == NULL;
00127 }
00128
00129 private:
00130
00131
00132
00133 const SynchronizedBlock& operator=(const SynchronizedBlock&);
00134
00135
00136
00137
00138 static void* operator new(size_t);
00139
00140
00141
00142
00143 protected:
00144
00145
00146
00147 mutable const Object* m_cpObject;
00148
00149
00150
00151
00152 mutable Object::View m_vObject;
00153 };
00154
00155 COH_CLOSE_NAMESPACE2
00156
00157
00158
00159
00160
00161
00162
00163
00164 #define COH_SYNCHRONIZED(V) \
00165 if (coherence::lang::SynchronizedBlock COH_UNIQUE_IDENTIFIER(_coh_sync_) \
00166 = coherence::lang::SynchronizedBlock(V)) \
00167 { \
00168 COH_THROW(coherence::lang::IllegalStateException::create()); \
00169 } \
00170 else
00171
00172 #endif // COH_SYNCHRONIZED_BLOCK_HPP