callback_0.h
Go to the documentation of this file.00001
00002
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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057 #ifndef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_0_H
00058 #define LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_0_H
00059
00060
00061
00062
00063
00064 #include "util_common.h"
00065 #include "callback_common.h"
00066 #include "shared_ptr.h"
00067 #include "impl/dispatcher_0.h"
00068 #include "../meta/is_derived.h"
00069 #include "../meta/wrap.h"
00070
00071
00072
00073
00074
00075 namespace lass
00076 {
00077 namespace util
00078 {
00079
00080
00081
00082
00083 class Callback0
00084 {
00085 public:
00086
00087 typedef Callback0 TSelf;
00088 typedef SharedPtr<impl::Dispatcher0> TDispatcherPtr;
00089
00090
00091
00092
00093
00094 Callback0()
00095 {
00096 }
00097
00098
00099
00100 template <typename Function>
00101 Callback0(Function iFunction):
00102 dispatcher_(make(iFunction, meta::Wrap<typename meta::IsDerived<Function, impl::Dispatcher0>::Type>()))
00103 {
00104 }
00105
00106
00107
00108 template <typename ObjectPtr, typename Method>
00109 Callback0(ObjectPtr iObject, Method iMethod):
00110 dispatcher_(new impl::Dispatcher0Method<ObjectPtr, Method>(iObject, iMethod))
00111 {
00112 }
00113
00114
00115
00116 Callback0(const Callback0& iOther):
00117 dispatcher_(iOther.dispatcher_)
00118 {
00119 }
00120
00121
00122
00123
00124
00125
00126
00127 template <typename Other>
00128 TSelf& operator=(const Other& iOther)
00129 {
00130 TSelf temp(iOther);
00131 swap(temp);
00132 return *this;
00133 }
00134
00135
00136
00137
00138
00139 void operator()() const
00140 {
00141 if (!isEmpty())
00142 {
00143 dispatcher_->call();
00144 }
00145 }
00146
00147
00148
00149
00150
00151
00152 void reset()
00153 {
00154 dispatcher_.reset();
00155 }
00156
00157
00158
00159 bool isEmpty() const
00160 {
00161 return dispatcher_.isEmpty();
00162 }
00163
00164
00165
00166 bool operator!() const
00167 {
00168 return dispatcher_.isEmpty();
00169 }
00170
00171
00172
00173 operator num::SafeBool() const
00174 {
00175 return dispatcher_.isEmpty() ? num::safeFalse : num::safeTrue;
00176 }
00177
00178
00179
00180 void swap(TSelf& iOther)
00181 {
00182 dispatcher_.swap(iOther.dispatcher_);
00183 }
00184
00185
00186
00187
00188 bool operator==(const TSelf& iOther) const
00189 {
00190 return dispatcher_->isEquivalent(iOther.dispatcher_.get());
00191 }
00192
00193 private:
00194
00195 template <typename Function>
00196 static TDispatcherPtr make(Function iFunction, meta::Wrap<meta::False>)
00197 {
00198 return TDispatcherPtr(new impl::Dispatcher0Function<Function>(iFunction));
00199 }
00200
00201 template <typename Dispatcher>
00202 static TDispatcherPtr make(Dispatcher iDispatcher, meta::Wrap<meta::True>)
00203 {
00204 return TDispatcherPtr(new Dispatcher(iDispatcher));
00205 }
00206
00207 TDispatcherPtr dispatcher_;
00208 };
00209
00210
00211
00212
00213
00214
00215 inline bool operator!=(const Callback0& iA, const Callback0& iB)
00216 {
00217 return !(iA == iB);
00218 }
00219
00220
00221
00222
00223
00224
00225 inline Callback0 makeCallback(void (*iFunction)())
00226 {
00227 return Callback0(iFunction);
00228 }
00229
00230
00231
00232
00233
00234 inline const Callback0& makeCallback(const Callback0& iCallback)
00235 {
00236 return iCallback;
00237 }
00238
00239
00240
00241
00242
00243 template <typename ObjectPtr, typename Object> inline
00244 Callback0 makeCallback(ObjectPtr iObject, void (Object::*iMethod)())
00245 {
00246 return Callback0(iObject, iMethod);
00247 }
00248
00249
00250
00251
00252
00253
00254 template <typename ObjectPtr, typename Object> inline
00255 Callback0 makeCallback(ObjectPtr iObject, void (Object::*iMethod)() const)
00256 {
00257 return Callback0(iObject, iMethod);
00258 }
00259
00260
00261
00262 }
00263
00264 }
00265
00266 #define LASS_PRIM_HAVE_PY_EXPORT_TRAITS_CALLBACK_0
00267 #ifdef LASS_GUARDIAN_OF_INCLUSION_UTIL_CALLBACK_PYTHON_H
00268 # include "callback_python.h"
00269 #endif
00270
00271 #endif
00272
00273