00001
00002
00003
00004
00005
00006
00007 #ifndef COH_IMMUTABLE_HPP
00008 #define COH_IMMUTABLE_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/IllegalArgumentException.hpp"
00013 #include "coherence/lang/Object.hpp"
00014 #include "coherence/lang/TypedHandle.hpp"
00015
00016 #include <sstream>
00017
00018 COH_OPEN_NAMESPACE2(coherence,lang)
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 template<class T>
00033 class Immutable
00034 : public TypedHandle<const T>
00035 {
00036
00037
00038 public:
00039
00040
00041
00042 Immutable()
00043 : TypedHandle<const T>()
00044 {
00045 }
00046
00047
00048
00049
00050
00051
00052 Immutable(const T* po)
00053 : TypedHandle<const T>(NULL)
00054 {
00055 set(po, NULL);
00056 }
00057
00058
00059
00060
00061
00062
00063 template<class O> Immutable<T>(const TypedHandle<O>& that)
00064 : TypedHandle<const T>(that)
00065 {
00066 }
00067
00068
00069
00070
00071
00072
00073 Immutable<T>(const Immutable<T>& that)
00074 : TypedHandle<const T>(that)
00075 {
00076 }
00077
00078
00079
00080 protected:
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094 Immutable<T>& set(const T* cpo, const ChainedHandleElement* pThat)
00095 {
00096 if (cpo == NULL || cpo->isImmutable())
00097 {
00098 if (pThat != NULL)
00099 {
00100 TypedHandle<const T>::set(cpo, *pThat);
00101 }
00102 else
00103 {
00104 TypedHandle<const T>::operator=(cpo);
00105 }
00106 }
00107 else
00108 {
00109 Object::View vClone;
00110 {
00111
00112
00113
00114
00115
00116 vClone = cpo->clone();
00117 }
00118 if (NULL == vClone || !vClone->isImmutable())
00119 {
00120 COH_THROW_STREAM(IllegalArgumentException,
00121 "Object of type '" << typeid(*cpo).name() <<
00122 "' cannot be made immutable through cloning.");
00123 }
00124 TypedHandle<const T>::operator=(cast<typename T::View>(vClone));
00125 }
00126 return *this;
00127 }
00128 };
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140 template<class T> typename T::View immutable_view(const typename T::View& v)
00141 {
00142 return Immutable<T>(v);
00143 }
00144
00145 COH_CLOSE_NAMESPACE2
00146
00147 #endif // COH_IMMUTABLE_HPP