Go to the documentation of this file.00001 #ifndef FWCore_Utilities_value_ptr_h
00002 #define FWCore_Utilities_value_ptr_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #include <algorithm>
00036 #include <memory>
00037
00038 namespace edm {
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049 template <typename T>
00050 struct value_ptr_traits {
00051 static T * clone(T const* p) { return new T(*p); }
00052 };
00053
00054
00055
00056
00057
00058
00059
00060
00061 template <typename T>
00062 class value_ptr {
00063
00064 public:
00065
00066
00067
00068
00069
00070 value_ptr() : myP(0) { }
00071 explicit value_ptr(T* p) : myP(p) { }
00072 ~value_ptr() { delete myP; }
00073
00074
00075
00076
00077
00078 value_ptr(value_ptr const& orig) :
00079 myP(createFrom(orig.myP)) {
00080 }
00081
00082 value_ptr& operator= (value_ptr const& orig) {
00083 value_ptr<T> temp(orig);
00084 swap(temp);
00085 return *this;
00086 }
00087
00088 #if defined( __GXX_EXPERIMENTAL_CXX0X__)
00089 value_ptr(value_ptr && orig) :
00090 myP(orig.myP) { orig.myP=0; }
00091
00092 value_ptr& operator=(value_ptr && orig) {
00093 if (myP!=orig.myP) {
00094 delete myP;
00095 myP=orig.myP;
00096 orig.myP=0;
00097 }
00098 return *this;
00099 }
00100 #endif
00101
00102
00103
00104
00105
00106
00107 T& operator*() const { return *myP; }
00108 T* operator->() const { return myP; }
00109
00110
00111
00112
00113
00114 void swap(value_ptr& orig) { std::swap(myP, orig.myP); }
00115
00116
00117
00118
00119
00120 template <typename U>
00121 value_ptr(value_ptr<U> const& orig) :
00122 myP(createFrom(orig.operator->())) {
00123 }
00124
00125 template <typename U>
00126 value_ptr& operator=(value_ptr<U> const& orig) {
00127 value_ptr<T> temp(orig);
00128 swap(temp);
00129 return *this;
00130 }
00131
00132
00133
00134
00135
00136 value_ptr(std::auto_ptr<T> orig) :
00137 myP(orig.release()) {
00138 }
00139
00140 value_ptr& operator=(std::auto_ptr<T> orig) {
00141 value_ptr<T> temp(orig);
00142 swap(temp);
00143 return *this;
00144 }
00145
00146
00147
00148
00149
00150
00151
00152 private:
00153 typedef void (value_ptr::*bool_type)() const;
00154 void this_type_does_not_support_comparisons() const {}
00155
00156 public:
00157 operator bool_type() const {
00158 return myP != 0 ?
00159 &value_ptr<T>::this_type_does_not_support_comparisons : 0;
00160 }
00161
00162 private:
00163
00164
00165
00166
00167
00168 template <typename U>
00169 static T*
00170 createFrom(U const* p) {
00171 return p
00172 ? value_ptr_traits<U>::clone(p)
00173 : 0;
00174 }
00175
00176
00177
00178
00179
00180 T * myP;
00181
00182 };
00183
00184
00185
00186
00187
00188
00189
00190
00191 template <typename T>
00192 inline
00193 void
00194 swap(value_ptr<T>& vp1, value_ptr<T>& vp2) { vp1.swap(vp2); }
00195
00196
00197
00198
00199
00200
00201 template <typename T, typename U>
00202 inline bool operator==(value_ptr<T> const& lhs, U const& rhs) {
00203 lhs.this_type_does_not_support_comparisons();
00204 return false;
00205 }
00206
00207 template <typename T, typename U>
00208 inline bool operator!=(value_ptr<T> const& lhs, U const& rhs) {
00209 lhs.this_type_does_not_support_comparisons();
00210 return false;
00211 }
00212
00213 template <typename T, typename U>
00214 inline bool operator==(U const& lhs, value_ptr<T> const& rhs) {
00215 rhs.this_type_does_not_support_comparisons();
00216 return false;
00217 }
00218
00219 template <typename T, typename U>
00220 inline bool operator!=(U const& lhs, value_ptr<T> const& rhs) {
00221 rhs.this_type_does_not_support_comparisons();
00222 return false;
00223 }
00224 }
00225
00226
00227 #endif // FWCoreUtilities_value_ptr_h