move.hpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. // Distributed under the Boost Software License, Version 1.0. (See
  2. // accompanying file LICENSE_1_0.txt or copy at
  3. // http://www.boost.org/LICENSE_1_0.txt)
  4. // (C) Copyright 2007-8 Anthony Williams
  5. // (C) Copyright 2011-2012 Vicente J. Botet Escriba
  6. #ifndef BOOST_THREAD_MOVE_HPP
  7. #define BOOST_THREAD_MOVE_HPP
  8. #include <boost/thread/detail/config.hpp>
  9. #ifndef BOOST_NO_SFINAE
  10. #include <boost/core/enable_if.hpp>
  11. #include <boost/type_traits/is_convertible.hpp>
  12. #include <boost/type_traits/remove_reference.hpp>
  13. #include <boost/type_traits/remove_cv.hpp>
  14. #include <boost/type_traits/decay.hpp>
  15. #include <boost/type_traits/conditional.hpp>
  16. #include <boost/type_traits/remove_extent.hpp>
  17. #include <boost/type_traits/is_array.hpp>
  18. #include <boost/type_traits/is_function.hpp>
  19. #include <boost/type_traits/remove_cv.hpp>
  20. #include <boost/type_traits/add_pointer.hpp>
  21. #include <boost/type_traits/decay.hpp>
  22. #endif
  23. #include <boost/thread/detail/delete.hpp>
  24. #include <boost/move/utility.hpp>
  25. #include <boost/move/traits.hpp>
  26. #include <boost/config/abi_prefix.hpp>
  27. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  28. #include <type_traits>
  29. #endif
  30. namespace boost
  31. {
  32. namespace detail
  33. {
  34. template <typename T>
  35. struct enable_move_utility_emulation_dummy_specialization;
  36. template<typename T>
  37. struct thread_move_t
  38. {
  39. T& t;
  40. explicit thread_move_t(T& t_):
  41. t(t_)
  42. {}
  43. T& operator*() const
  44. {
  45. return t;
  46. }
  47. T* operator->() const
  48. {
  49. return &t;
  50. }
  51. private:
  52. void operator=(thread_move_t&);
  53. };
  54. }
  55. #if !defined BOOST_THREAD_USES_MOVE
  56. #ifndef BOOST_NO_SFINAE
  57. template<typename T>
  58. typename enable_if<boost::is_convertible<T&,boost::detail::thread_move_t<T> >, boost::detail::thread_move_t<T> >::type move(T& t)
  59. {
  60. return boost::detail::thread_move_t<T>(t);
  61. }
  62. #endif
  63. template<typename T>
  64. boost::detail::thread_move_t<T> move(boost::detail::thread_move_t<T> t)
  65. {
  66. return t;
  67. }
  68. #endif //#if !defined BOOST_THREAD_USES_MOVE
  69. }
  70. #if ! defined BOOST_NO_CXX11_RVALUE_REFERENCES
  71. #define BOOST_THREAD_COPY_ASSIGN_REF(TYPE) BOOST_COPY_ASSIGN_REF(TYPE)
  72. #define BOOST_THREAD_RV_REF(TYPE) BOOST_RV_REF(TYPE)
  73. #define BOOST_THREAD_RV_REF_2_TEMPL_ARGS(TYPE) BOOST_RV_REF_2_TEMPL_ARGS(TYPE)
  74. #define BOOST_THREAD_RV_REF_BEG BOOST_RV_REF_BEG
  75. #define BOOST_THREAD_RV_REF_END BOOST_RV_REF_END
  76. #define BOOST_THREAD_RV(V) V
  77. #define BOOST_THREAD_MAKE_RV_REF(RVALUE) RVALUE
  78. #define BOOST_THREAD_FWD_REF(TYPE) BOOST_FWD_REF(TYPE)
  79. #define BOOST_THREAD_DCL_MOVABLE(TYPE)
  80. #define BOOST_THREAD_DCL_MOVABLE_BEG(T) \
  81. namespace detail { \
  82. template <typename T> \
  83. struct enable_move_utility_emulation_dummy_specialization<
  84. #define BOOST_THREAD_DCL_MOVABLE_BEG2(T1, T2) \
  85. namespace detail { \
  86. template <typename T1, typename T2> \
  87. struct enable_move_utility_emulation_dummy_specialization<
  88. #define BOOST_THREAD_DCL_MOVABLE_END > \
  89. : integral_constant<bool, false> \
  90. {}; \
  91. }
  92. #elif ! defined BOOST_NO_CXX11_RVALUE_REFERENCES && defined BOOST_MSVC
  93. #define BOOST_THREAD_COPY_ASSIGN_REF(TYPE) BOOST_COPY_ASSIGN_REF(TYPE)
  94. #define BOOST_THREAD_RV_REF(TYPE) BOOST_RV_REF(TYPE)
  95. #define BOOST_THREAD_RV_REF_2_TEMPL_ARGS(TYPE) BOOST_RV_REF_2_TEMPL_ARGS(TYPE)
  96. #define BOOST_THREAD_RV_REF_BEG BOOST_RV_REF_BEG
  97. #define BOOST_THREAD_RV_REF_END BOOST_RV_REF_END
  98. #define BOOST_THREAD_RV(V) V
  99. #define BOOST_THREAD_MAKE_RV_REF(RVALUE) RVALUE
  100. #define BOOST_THREAD_FWD_REF(TYPE) BOOST_FWD_REF(TYPE)
  101. #define BOOST_THREAD_DCL_MOVABLE(TYPE)
  102. #define BOOST_THREAD_DCL_MOVABLE_BEG(T) \
  103. namespace detail { \
  104. template <typename T> \
  105. struct enable_move_utility_emulation_dummy_specialization<
  106. #define BOOST_THREAD_DCL_MOVABLE_BEG2(T1, T2) \
  107. namespace detail { \
  108. template <typename T1, typename T2> \
  109. struct enable_move_utility_emulation_dummy_specialization<
  110. #define BOOST_THREAD_DCL_MOVABLE_END > \
  111. : integral_constant<bool, false> \
  112. {}; \
  113. }
  114. #else
  115. #if defined BOOST_THREAD_USES_MOVE
  116. #define BOOST_THREAD_COPY_ASSIGN_REF(TYPE) BOOST_COPY_ASSIGN_REF(TYPE)
  117. #define BOOST_THREAD_RV_REF(TYPE) BOOST_RV_REF(TYPE)
  118. #define BOOST_THREAD_RV_REF_2_TEMPL_ARGS(TYPE) BOOST_RV_REF_2_TEMPL_ARGS(TYPE)
  119. #define BOOST_THREAD_RV_REF_BEG BOOST_RV_REF_BEG
  120. #define BOOST_THREAD_RV_REF_END BOOST_RV_REF_END
  121. #define BOOST_THREAD_RV(V) V
  122. #define BOOST_THREAD_FWD_REF(TYPE) BOOST_FWD_REF(TYPE)
  123. #define BOOST_THREAD_DCL_MOVABLE(TYPE)
  124. #define BOOST_THREAD_DCL_MOVABLE_BEG(T) \
  125. namespace detail { \
  126. template <typename T> \
  127. struct enable_move_utility_emulation_dummy_specialization<
  128. #define BOOST_THREAD_DCL_MOVABLE_BEG2(T1, T2) \
  129. namespace detail { \
  130. template <typename T1, typename T2> \
  131. struct enable_move_utility_emulation_dummy_specialization<
  132. #define BOOST_THREAD_DCL_MOVABLE_END > \
  133. : integral_constant<bool, false> \
  134. {}; \
  135. }
  136. #else
  137. #define BOOST_THREAD_COPY_ASSIGN_REF(TYPE) const TYPE&
  138. #define BOOST_THREAD_RV_REF(TYPE) boost::detail::thread_move_t< TYPE >
  139. #define BOOST_THREAD_RV_REF_BEG boost::detail::thread_move_t<
  140. #define BOOST_THREAD_RV_REF_END >
  141. #define BOOST_THREAD_RV(V) (*V)
  142. #define BOOST_THREAD_FWD_REF(TYPE) BOOST_FWD_REF(TYPE)
  143. #define BOOST_THREAD_DCL_MOVABLE(TYPE) \
  144. template <> \
  145. struct enable_move_utility_emulation< TYPE > \
  146. { \
  147. static const bool value = false; \
  148. };
  149. #define BOOST_THREAD_DCL_MOVABLE_BEG(T) \
  150. template <typename T> \
  151. struct enable_move_utility_emulation<
  152. #define BOOST_THREAD_DCL_MOVABLE_BEG2(T1, T2) \
  153. template <typename T1, typename T2> \
  154. struct enable_move_utility_emulation<
  155. #define BOOST_THREAD_DCL_MOVABLE_END > \
  156. { \
  157. static const bool value = false; \
  158. };
  159. #endif
  160. namespace boost
  161. {
  162. namespace detail
  163. {
  164. template <typename T>
  165. BOOST_THREAD_RV_REF(typename ::boost::remove_cv<typename ::boost::remove_reference<T>::type>::type)
  166. make_rv_ref(T v) BOOST_NOEXCEPT
  167. {
  168. return (BOOST_THREAD_RV_REF(typename ::boost::remove_cv<typename ::boost::remove_reference<T>::type>::type))(v);
  169. }
  170. // template <typename T>
  171. // BOOST_THREAD_RV_REF(typename ::boost::remove_cv<typename ::boost::remove_reference<T>::type>::type)
  172. // make_rv_ref(T &v) BOOST_NOEXCEPT
  173. // {
  174. // return (BOOST_THREAD_RV_REF(typename ::boost::remove_cv<typename ::boost::remove_reference<T>::type>::type))(v);
  175. // }
  176. // template <typename T>
  177. // const BOOST_THREAD_RV_REF(typename ::boost::remove_cv<typename ::boost::remove_reference<T>::type>::type)
  178. // make_rv_ref(T const&v) BOOST_NOEXCEPT
  179. // {
  180. // return (const BOOST_THREAD_RV_REF(typename ::boost::remove_cv<typename ::boost::remove_reference<T>::type>::type))(v);
  181. // }
  182. }
  183. }
  184. #define BOOST_THREAD_MAKE_RV_REF(RVALUE) RVALUE.move()
  185. //#define BOOST_THREAD_MAKE_RV_REF(RVALUE) boost::detail::make_rv_ref(RVALUE)
  186. #endif
  187. #if ! defined BOOST_NO_CXX11_RVALUE_REFERENCES
  188. #define BOOST_THREAD_MOVABLE(TYPE)
  189. #define BOOST_THREAD_COPYABLE(TYPE)
  190. #else
  191. #if defined BOOST_THREAD_USES_MOVE
  192. #define BOOST_THREAD_MOVABLE(TYPE) \
  193. ::boost::rv<TYPE>& move() BOOST_NOEXCEPT \
  194. { \
  195. return *static_cast< ::boost::rv<TYPE>* >(this); \
  196. } \
  197. const ::boost::rv<TYPE>& move() const BOOST_NOEXCEPT \
  198. { \
  199. return *static_cast<const ::boost::rv<TYPE>* >(this); \
  200. } \
  201. operator ::boost::rv<TYPE>&() \
  202. { \
  203. return *static_cast< ::boost::rv<TYPE>* >(this); \
  204. } \
  205. operator const ::boost::rv<TYPE>&() const \
  206. { \
  207. return *static_cast<const ::boost::rv<TYPE>* >(this); \
  208. }\
  209. #define BOOST_THREAD_COPYABLE(TYPE) \
  210. TYPE& operator=(TYPE &t)\
  211. { this->operator=(static_cast<const ::boost::rv<TYPE> &>(const_cast<const TYPE &>(t))); return *this;}
  212. #else
  213. #define BOOST_THREAD_MOVABLE(TYPE) \
  214. operator ::boost::detail::thread_move_t<TYPE>() BOOST_NOEXCEPT \
  215. { \
  216. return move(); \
  217. } \
  218. ::boost::detail::thread_move_t<TYPE> move() BOOST_NOEXCEPT \
  219. { \
  220. ::boost::detail::thread_move_t<TYPE> x(*this); \
  221. return x; \
  222. } \
  223. #define BOOST_THREAD_COPYABLE(TYPE)
  224. #endif
  225. #endif
  226. #define BOOST_THREAD_MOVABLE_ONLY(TYPE) \
  227. BOOST_THREAD_NO_COPYABLE(TYPE) \
  228. BOOST_THREAD_MOVABLE(TYPE) \
  229. typedef int boost_move_no_copy_constructor_or_assign; \
  230. #define BOOST_THREAD_COPYABLE_AND_MOVABLE(TYPE) \
  231. BOOST_THREAD_COPYABLE(TYPE) \
  232. BOOST_THREAD_MOVABLE(TYPE) \
  233. namespace boost
  234. {
  235. namespace thread_detail
  236. {
  237. #if ! defined BOOST_NO_CXX11_RVALUE_REFERENCES
  238. #elif defined BOOST_THREAD_USES_MOVE
  239. template <class T>
  240. struct is_rv
  241. : ::boost::move_detail::is_rv<T>
  242. {};
  243. #else
  244. template <class T>
  245. struct is_rv
  246. : ::boost::integral_constant<bool, false>
  247. {};
  248. template <class T>
  249. struct is_rv< ::boost::detail::thread_move_t<T> >
  250. : ::boost::integral_constant<bool, true>
  251. {};
  252. template <class T>
  253. struct is_rv< const ::boost::detail::thread_move_t<T> >
  254. : ::boost::integral_constant<bool, true>
  255. {};
  256. #endif
  257. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  258. template <class Tp>
  259. struct remove_reference : boost::remove_reference<Tp> {};
  260. template <class Tp>
  261. struct decay : boost::decay<Tp> {};
  262. #else
  263. template <class Tp>
  264. struct remove_reference
  265. {
  266. typedef Tp type;
  267. };
  268. template <class Tp>
  269. struct remove_reference<Tp&>
  270. {
  271. typedef Tp type;
  272. };
  273. template <class Tp>
  274. struct remove_reference< rv<Tp> > {
  275. typedef Tp type;
  276. };
  277. template <class Tp>
  278. struct decay
  279. {
  280. private:
  281. typedef typename boost::move_detail::remove_rvalue_reference<Tp>::type Up0;
  282. typedef typename boost::remove_reference<Up0>::type Up;
  283. public:
  284. typedef typename conditional
  285. <
  286. is_array<Up>::value,
  287. typename remove_extent<Up>::type*,
  288. typename conditional
  289. <
  290. is_function<Up>::value,
  291. typename add_pointer<Up>::type,
  292. typename remove_cv<Up>::type
  293. >::type
  294. >::type type;
  295. };
  296. #endif
  297. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  298. template <class T>
  299. typename decay<T>::type
  300. decay_copy(T&& t)
  301. {
  302. return boost::forward<T>(t);
  303. }
  304. #else
  305. template <class T>
  306. typename decay<T>::type
  307. decay_copy(BOOST_THREAD_FWD_REF(T) t)
  308. {
  309. return boost::forward<T>(t);
  310. }
  311. #endif
  312. }
  313. }
  314. #include <boost/config/abi_suffix.hpp>
  315. #endif