00001
00002
00003
00004
00005
00006
00007 #ifndef COH_BOX_HANDLE_HPP
00008 #define COH_BOX_HANDLE_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/Object.hpp"
00013 #include "coherence/lang/TypedHandle.hpp"
00014
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016
00017
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 template<class T, class B = typename T::BoxedType, bool fStrict = true>
00044 class BoxHandle
00045 : public TypedHandle<T>
00046 {
00047
00048
00049 public:
00050
00051
00052
00053 typedef B BoxedType;
00054
00055
00056
00057
00058 public:
00059
00060
00061
00062 BoxHandle()
00063 : TypedHandle<T>()
00064 {
00065 }
00066
00067
00068
00069
00070 BoxHandle(const B& b)
00071 : TypedHandle<T>(T::create(b))
00072 {
00073 }
00074
00075
00076
00077
00078 template<class O> BoxHandle(const TypedHandle<O>& that)
00079 : TypedHandle<T>(that)
00080 {
00081 }
00082
00083
00084
00085
00086 BoxHandle(T* o)
00087 : TypedHandle<T>(o)
00088 {
00089 }
00090
00091
00092
00093
00094 BoxHandle(const BoxHandle& h)
00095 : TypedHandle<T>(h)
00096 {
00097 }
00098
00099
00100
00101 public:
00102
00103
00104
00105 BoxHandle& operator=(const BoxedType& b)
00106 {
00107 TypedHandle<T>::operator=(T::create(b));
00108 return *this;
00109 }
00110
00111
00112
00113
00114
00115
00116 operator BoxedType() const
00117 {
00118 const T* pT = TypedHandle<T>::get();
00119 if (NULL == pT)
00120 {
00121 if (fStrict)
00122 {
00123 coh_throw_npe(typeid(T));
00124 }
00125 return BoxedType();
00126 }
00127 return (BoxedType) *pT;
00128 }
00129 };
00130
00131 template<class T, class B, bool S>
00132 bool operator==(const BoxHandle<T, B, S>& h1, const BoxHandle<T, B, S>& h2)
00133 {
00134 return operator==(Object::Holder(h1), Object::Holder(h2));
00135 }
00136
00137 template<class T, class B, bool S>
00138 bool operator==(const BoxHandle<T, B, S>& h, const B& b)
00139 {
00140 const T* pT = get_pointer(h);
00141 if (S && pT == NULL)
00142 {
00143 coh_throw_npe(typeid(T));
00144 }
00145 return NULL == pT ? B() == b : ((B) *pT) == b;
00146 }
00147
00148 template<class T, class B, bool S>
00149 bool operator==(const B& b, const BoxHandle<T, B, S>& h)
00150 {
00151 return operator==(h, b);
00152 }
00153
00154 template<class T, class B, bool S>
00155 bool operator!=(const BoxHandle<T, B, S>& h1, const BoxHandle<T, B, S>& h2)
00156 {
00157 return !operator==(h1, h2);
00158 }
00159
00160 template<class T, class B, bool S>
00161 bool operator!=(const BoxHandle<T, B, S>& h, const B& b)
00162 {
00163 return !operator==(h, b);
00164 }
00165
00166 template<class T, class B, bool S>
00167 bool operator!=(const B& b, const BoxHandle<T, B, S>& h)
00168 {
00169 return !operator==(h, b);
00170 }
00171
00172 COH_CLOSE_NAMESPACE2
00173
00174 #endif // COH_BOX_HANDLE_HPP