spawn.hpp 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. //
  2. // impl/spawn.hpp
  3. // ~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_IMPL_SPAWN_HPP
  11. #define BOOST_ASIO_IMPL_SPAWN_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <boost/asio/async_result.hpp>
  17. #include <boost/asio/detail/atomic_count.hpp>
  18. #include <boost/asio/detail/handler_alloc_helpers.hpp>
  19. #include <boost/asio/detail/handler_cont_helpers.hpp>
  20. #include <boost/asio/detail/handler_invoke_helpers.hpp>
  21. #include <boost/asio/detail/noncopyable.hpp>
  22. #include <boost/asio/detail/shared_ptr.hpp>
  23. #include <boost/asio/handler_type.hpp>
  24. #include <boost/asio/detail/push_options.hpp>
  25. namespace boost {
  26. namespace asio {
  27. namespace detail {
  28. template <typename Handler, typename T>
  29. class coro_handler
  30. {
  31. public:
  32. coro_handler(basic_yield_context<Handler> ctx)
  33. : coro_(ctx.coro_.lock()),
  34. ca_(ctx.ca_),
  35. handler_(ctx.handler_),
  36. ready_(0),
  37. ec_(ctx.ec_),
  38. value_(0)
  39. {
  40. }
  41. void operator()(T value)
  42. {
  43. *ec_ = boost::system::error_code();
  44. *value_ = BOOST_ASIO_MOVE_CAST(T)(value);
  45. if (--*ready_ == 0)
  46. (*coro_)();
  47. }
  48. void operator()(boost::system::error_code ec, T value)
  49. {
  50. *ec_ = ec;
  51. *value_ = BOOST_ASIO_MOVE_CAST(T)(value);
  52. if (--*ready_ == 0)
  53. (*coro_)();
  54. }
  55. //private:
  56. shared_ptr<typename basic_yield_context<Handler>::callee_type> coro_;
  57. typename basic_yield_context<Handler>::caller_type& ca_;
  58. Handler& handler_;
  59. atomic_count* ready_;
  60. boost::system::error_code* ec_;
  61. T* value_;
  62. };
  63. template <typename Handler>
  64. class coro_handler<Handler, void>
  65. {
  66. public:
  67. coro_handler(basic_yield_context<Handler> ctx)
  68. : coro_(ctx.coro_.lock()),
  69. ca_(ctx.ca_),
  70. handler_(ctx.handler_),
  71. ready_(0),
  72. ec_(ctx.ec_)
  73. {
  74. }
  75. void operator()()
  76. {
  77. *ec_ = boost::system::error_code();
  78. if (--*ready_ == 0)
  79. (*coro_)();
  80. }
  81. void operator()(boost::system::error_code ec)
  82. {
  83. *ec_ = ec;
  84. if (--*ready_ == 0)
  85. (*coro_)();
  86. }
  87. //private:
  88. shared_ptr<typename basic_yield_context<Handler>::callee_type> coro_;
  89. typename basic_yield_context<Handler>::caller_type& ca_;
  90. Handler& handler_;
  91. atomic_count* ready_;
  92. boost::system::error_code* ec_;
  93. };
  94. template <typename Handler, typename T>
  95. inline void* asio_handler_allocate(std::size_t size,
  96. coro_handler<Handler, T>* this_handler)
  97. {
  98. return boost_asio_handler_alloc_helpers::allocate(
  99. size, this_handler->handler_);
  100. }
  101. template <typename Handler, typename T>
  102. inline void asio_handler_deallocate(void* pointer, std::size_t size,
  103. coro_handler<Handler, T>* this_handler)
  104. {
  105. boost_asio_handler_alloc_helpers::deallocate(
  106. pointer, size, this_handler->handler_);
  107. }
  108. template <typename Handler, typename T>
  109. inline bool asio_handler_is_continuation(coro_handler<Handler, T>*)
  110. {
  111. return true;
  112. }
  113. template <typename Function, typename Handler, typename T>
  114. inline void asio_handler_invoke(Function& function,
  115. coro_handler<Handler, T>* this_handler)
  116. {
  117. boost_asio_handler_invoke_helpers::invoke(
  118. function, this_handler->handler_);
  119. }
  120. template <typename Function, typename Handler, typename T>
  121. inline void asio_handler_invoke(const Function& function,
  122. coro_handler<Handler, T>* this_handler)
  123. {
  124. boost_asio_handler_invoke_helpers::invoke(
  125. function, this_handler->handler_);
  126. }
  127. } // namespace detail
  128. #if !defined(GENERATING_DOCUMENTATION)
  129. template <typename Handler, typename ReturnType>
  130. struct handler_type<basic_yield_context<Handler>, ReturnType()>
  131. {
  132. typedef detail::coro_handler<Handler, void> type;
  133. };
  134. template <typename Handler, typename ReturnType, typename Arg1>
  135. struct handler_type<basic_yield_context<Handler>, ReturnType(Arg1)>
  136. {
  137. typedef detail::coro_handler<Handler, Arg1> type;
  138. };
  139. template <typename Handler, typename ReturnType>
  140. struct handler_type<basic_yield_context<Handler>,
  141. ReturnType(boost::system::error_code)>
  142. {
  143. typedef detail::coro_handler<Handler, void> type;
  144. };
  145. template <typename Handler, typename ReturnType, typename Arg2>
  146. struct handler_type<basic_yield_context<Handler>,
  147. ReturnType(boost::system::error_code, Arg2)>
  148. {
  149. typedef detail::coro_handler<Handler, Arg2> type;
  150. };
  151. template <typename Handler, typename T>
  152. class async_result<detail::coro_handler<Handler, T> >
  153. {
  154. public:
  155. typedef T type;
  156. explicit async_result(detail::coro_handler<Handler, T>& h)
  157. : handler_(h),
  158. ca_(h.ca_),
  159. ready_(2)
  160. {
  161. h.ready_ = &ready_;
  162. out_ec_ = h.ec_;
  163. if (!out_ec_) h.ec_ = &ec_;
  164. h.value_ = &value_;
  165. }
  166. type get()
  167. {
  168. handler_.coro_.reset(); // Must not hold shared_ptr to coro while suspended.
  169. if (--ready_ != 0)
  170. ca_();
  171. if (!out_ec_ && ec_) throw boost::system::system_error(ec_);
  172. return BOOST_ASIO_MOVE_CAST(type)(value_);
  173. }
  174. private:
  175. detail::coro_handler<Handler, T>& handler_;
  176. typename basic_yield_context<Handler>::caller_type& ca_;
  177. detail::atomic_count ready_;
  178. boost::system::error_code* out_ec_;
  179. boost::system::error_code ec_;
  180. type value_;
  181. };
  182. template <typename Handler>
  183. class async_result<detail::coro_handler<Handler, void> >
  184. {
  185. public:
  186. typedef void type;
  187. explicit async_result(detail::coro_handler<Handler, void>& h)
  188. : handler_(h),
  189. ca_(h.ca_),
  190. ready_(2)
  191. {
  192. h.ready_ = &ready_;
  193. out_ec_ = h.ec_;
  194. if (!out_ec_) h.ec_ = &ec_;
  195. }
  196. void get()
  197. {
  198. handler_.coro_.reset(); // Must not hold shared_ptr to coro while suspended.
  199. if (--ready_ != 0)
  200. ca_();
  201. if (!out_ec_ && ec_) throw boost::system::system_error(ec_);
  202. }
  203. private:
  204. detail::coro_handler<Handler, void>& handler_;
  205. typename basic_yield_context<Handler>::caller_type& ca_;
  206. detail::atomic_count ready_;
  207. boost::system::error_code* out_ec_;
  208. boost::system::error_code ec_;
  209. };
  210. namespace detail {
  211. template <typename Handler, typename Function>
  212. struct spawn_data : private noncopyable
  213. {
  214. spawn_data(BOOST_ASIO_MOVE_ARG(Handler) handler,
  215. bool call_handler, BOOST_ASIO_MOVE_ARG(Function) function)
  216. : handler_(BOOST_ASIO_MOVE_CAST(Handler)(handler)),
  217. call_handler_(call_handler),
  218. function_(BOOST_ASIO_MOVE_CAST(Function)(function))
  219. {
  220. }
  221. weak_ptr<typename basic_yield_context<Handler>::callee_type> coro_;
  222. Handler handler_;
  223. bool call_handler_;
  224. Function function_;
  225. };
  226. template <typename Handler, typename Function>
  227. struct coro_entry_point
  228. {
  229. void operator()(typename basic_yield_context<Handler>::caller_type& ca)
  230. {
  231. shared_ptr<spawn_data<Handler, Function> > data(data_);
  232. #if !defined(BOOST_COROUTINES_UNIDIRECT) && !defined(BOOST_COROUTINES_V2)
  233. ca(); // Yield until coroutine pointer has been initialised.
  234. #endif // !defined(BOOST_COROUTINES_UNIDIRECT) && !defined(BOOST_COROUTINES_V2)
  235. const basic_yield_context<Handler> yield(
  236. data->coro_, ca, data->handler_);
  237. (data->function_)(yield);
  238. if (data->call_handler_)
  239. (data->handler_)();
  240. }
  241. shared_ptr<spawn_data<Handler, Function> > data_;
  242. };
  243. template <typename Handler, typename Function>
  244. struct spawn_helper
  245. {
  246. void operator()()
  247. {
  248. typedef typename basic_yield_context<Handler>::callee_type callee_type;
  249. coro_entry_point<Handler, Function> entry_point = { data_ };
  250. shared_ptr<callee_type> coro(new callee_type(entry_point, attributes_));
  251. data_->coro_ = coro;
  252. (*coro)();
  253. }
  254. shared_ptr<spawn_data<Handler, Function> > data_;
  255. boost::coroutines::attributes attributes_;
  256. };
  257. inline void default_spawn_handler() {}
  258. } // namespace detail
  259. template <typename Handler, typename Function>
  260. void spawn(BOOST_ASIO_MOVE_ARG(Handler) handler,
  261. BOOST_ASIO_MOVE_ARG(Function) function,
  262. const boost::coroutines::attributes& attributes)
  263. {
  264. detail::spawn_helper<Handler, Function> helper;
  265. helper.data_.reset(
  266. new detail::spawn_data<Handler, Function>(
  267. BOOST_ASIO_MOVE_CAST(Handler)(handler), true,
  268. BOOST_ASIO_MOVE_CAST(Function)(function)));
  269. helper.attributes_ = attributes;
  270. boost_asio_handler_invoke_helpers::invoke(helper, helper.data_->handler_);
  271. }
  272. template <typename Handler, typename Function>
  273. void spawn(basic_yield_context<Handler> ctx,
  274. BOOST_ASIO_MOVE_ARG(Function) function,
  275. const boost::coroutines::attributes& attributes)
  276. {
  277. Handler handler(ctx.handler_); // Explicit copy that might be moved from.
  278. detail::spawn_helper<Handler, Function> helper;
  279. helper.data_.reset(
  280. new detail::spawn_data<Handler, Function>(
  281. BOOST_ASIO_MOVE_CAST(Handler)(handler), false,
  282. BOOST_ASIO_MOVE_CAST(Function)(function)));
  283. helper.attributes_ = attributes;
  284. boost_asio_handler_invoke_helpers::invoke(helper, helper.data_->handler_);
  285. }
  286. template <typename Function>
  287. void spawn(boost::asio::io_service::strand strand,
  288. BOOST_ASIO_MOVE_ARG(Function) function,
  289. const boost::coroutines::attributes& attributes)
  290. {
  291. boost::asio::spawn(strand.wrap(&detail::default_spawn_handler),
  292. BOOST_ASIO_MOVE_CAST(Function)(function), attributes);
  293. }
  294. template <typename Function>
  295. void spawn(boost::asio::io_service& io_service,
  296. BOOST_ASIO_MOVE_ARG(Function) function,
  297. const boost::coroutines::attributes& attributes)
  298. {
  299. boost::asio::spawn(boost::asio::io_service::strand(io_service),
  300. BOOST_ASIO_MOVE_CAST(Function)(function), attributes);
  301. }
  302. #endif // !defined(GENERATING_DOCUMENTATION)
  303. } // namespace asio
  304. } // namespace boost
  305. #include <boost/asio/detail/pop_options.hpp>
  306. #endif // BOOST_ASIO_IMPL_SPAWN_HPP