spawn.hpp 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. //
  2. // 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_SPAWN_HPP
  11. #define BOOST_ASIO_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/coroutine/all.hpp>
  17. #include <boost/asio/detail/weak_ptr.hpp>
  18. #include <boost/asio/detail/wrapped_handler.hpp>
  19. #include <boost/asio/io_service.hpp>
  20. #include <boost/asio/strand.hpp>
  21. #include <boost/asio/detail/push_options.hpp>
  22. namespace boost {
  23. namespace asio {
  24. /// Context object the represents the currently executing coroutine.
  25. /**
  26. * The basic_yield_context class is used to represent the currently executing
  27. * stackful coroutine. A basic_yield_context may be passed as a handler to an
  28. * asynchronous operation. For example:
  29. *
  30. * @code template <typename Handler>
  31. * void my_coroutine(basic_yield_context<Handler> yield)
  32. * {
  33. * ...
  34. * std::size_t n = my_socket.async_read_some(buffer, yield);
  35. * ...
  36. * } @endcode
  37. *
  38. * The initiating function (async_read_some in the above example) suspends the
  39. * current coroutine. The coroutine is resumed when the asynchronous operation
  40. * completes, and the result of the operation is returned.
  41. */
  42. template <typename Handler>
  43. class basic_yield_context
  44. {
  45. public:
  46. /// The coroutine callee type, used by the implementation.
  47. /**
  48. * When using Boost.Coroutine v1, this type is:
  49. * @code typename coroutine<void()> @endcode
  50. * When using Boost.Coroutine v2 (unidirectional coroutines), this type is:
  51. * @code push_coroutine<void> @endcode
  52. */
  53. #if defined(GENERATING_DOCUMENTATION)
  54. typedef implementation_defined callee_type;
  55. #elif defined(BOOST_COROUTINES_UNIDIRECT) || defined(BOOST_COROUTINES_V2)
  56. typedef boost::coroutines::push_coroutine<void> callee_type;
  57. #else
  58. typedef boost::coroutines::coroutine<void()> callee_type;
  59. #endif
  60. /// The coroutine caller type, used by the implementation.
  61. /**
  62. * When using Boost.Coroutine v1, this type is:
  63. * @code typename coroutine<void()>::caller_type @endcode
  64. * When using Boost.Coroutine v2 (unidirectional coroutines), this type is:
  65. * @code pull_coroutine<void> @endcode
  66. */
  67. #if defined(GENERATING_DOCUMENTATION)
  68. typedef implementation_defined caller_type;
  69. #elif defined(BOOST_COROUTINES_UNIDIRECT) || defined(BOOST_COROUTINES_V2)
  70. typedef boost::coroutines::pull_coroutine<void> caller_type;
  71. #else
  72. typedef boost::coroutines::coroutine<void()>::caller_type caller_type;
  73. #endif
  74. /// Construct a yield context to represent the specified coroutine.
  75. /**
  76. * Most applications do not need to use this constructor. Instead, the
  77. * spawn() function passes a yield context as an argument to the coroutine
  78. * function.
  79. */
  80. basic_yield_context(
  81. const detail::weak_ptr<callee_type>& coro,
  82. caller_type& ca, Handler& handler)
  83. : coro_(coro),
  84. ca_(ca),
  85. handler_(handler),
  86. ec_(0)
  87. {
  88. }
  89. /// Return a yield context that sets the specified error_code.
  90. /**
  91. * By default, when a yield context is used with an asynchronous operation, a
  92. * non-success error_code is converted to system_error and thrown. This
  93. * operator may be used to specify an error_code object that should instead be
  94. * set with the asynchronous operation's result. For example:
  95. *
  96. * @code template <typename Handler>
  97. * void my_coroutine(basic_yield_context<Handler> yield)
  98. * {
  99. * ...
  100. * std::size_t n = my_socket.async_read_some(buffer, yield[ec]);
  101. * if (ec)
  102. * {
  103. * // An error occurred.
  104. * }
  105. * ...
  106. * } @endcode
  107. */
  108. basic_yield_context operator[](boost::system::error_code& ec) const
  109. {
  110. basic_yield_context tmp(*this);
  111. tmp.ec_ = &ec;
  112. return tmp;
  113. }
  114. #if defined(GENERATING_DOCUMENTATION)
  115. private:
  116. #endif // defined(GENERATING_DOCUMENTATION)
  117. detail::weak_ptr<callee_type> coro_;
  118. caller_type& ca_;
  119. Handler& handler_;
  120. boost::system::error_code* ec_;
  121. };
  122. #if defined(GENERATING_DOCUMENTATION)
  123. /// Context object that represents the currently executing coroutine.
  124. typedef basic_yield_context<unspecified> yield_context;
  125. #else // defined(GENERATING_DOCUMENTATION)
  126. typedef basic_yield_context<
  127. detail::wrapped_handler<
  128. io_service::strand, void(*)(),
  129. detail::is_continuation_if_running> > yield_context;
  130. #endif // defined(GENERATING_DOCUMENTATION)
  131. /**
  132. * @defgroup spawn boost::asio::spawn
  133. *
  134. * @brief Start a new stackful coroutine.
  135. *
  136. * The spawn() function is a high-level wrapper over the Boost.Coroutine
  137. * library. This function enables programs to implement asynchronous logic in a
  138. * synchronous manner, as illustrated by the following example:
  139. *
  140. * @code boost::asio::spawn(my_strand, do_echo);
  141. *
  142. * // ...
  143. *
  144. * void do_echo(boost::asio::yield_context yield)
  145. * {
  146. * try
  147. * {
  148. * char data[128];
  149. * for (;;)
  150. * {
  151. * std::size_t length =
  152. * my_socket.async_read_some(
  153. * boost::asio::buffer(data), yield);
  154. *
  155. * boost::asio::async_write(my_socket,
  156. * boost::asio::buffer(data, length), yield);
  157. * }
  158. * }
  159. * catch (std::exception& e)
  160. * {
  161. * // ...
  162. * }
  163. * } @endcode
  164. */
  165. /*@{*/
  166. /// Start a new stackful coroutine, calling the specified handler when it
  167. /// completes.
  168. /**
  169. * This function is used to launch a new coroutine.
  170. *
  171. * @param handler A handler to be called when the coroutine exits. More
  172. * importantly, the handler provides an execution context (via the the handler
  173. * invocation hook) for the coroutine. The handler must have the signature:
  174. * @code void handler(); @endcode
  175. *
  176. * @param function The coroutine function. The function must have the signature:
  177. * @code void function(basic_yield_context<Handler> yield); @endcode
  178. *
  179. * @param attributes Boost.Coroutine attributes used to customise the coroutine.
  180. */
  181. template <typename Handler, typename Function>
  182. void spawn(BOOST_ASIO_MOVE_ARG(Handler) handler,
  183. BOOST_ASIO_MOVE_ARG(Function) function,
  184. const boost::coroutines::attributes& attributes
  185. = boost::coroutines::attributes());
  186. /// Start a new stackful coroutine, inheriting the execution context of another.
  187. /**
  188. * This function is used to launch a new coroutine.
  189. *
  190. * @param ctx Identifies the current coroutine as a parent of the new
  191. * coroutine. This specifies that the new coroutine should inherit the
  192. * execution context of the parent. For example, if the parent coroutine is
  193. * executing in a particular strand, then the new coroutine will execute in the
  194. * same strand.
  195. *
  196. * @param function The coroutine function. The function must have the signature:
  197. * @code void function(basic_yield_context<Handler> yield); @endcode
  198. *
  199. * @param attributes Boost.Coroutine attributes used to customise the coroutine.
  200. */
  201. template <typename Handler, typename Function>
  202. void spawn(basic_yield_context<Handler> ctx,
  203. BOOST_ASIO_MOVE_ARG(Function) function,
  204. const boost::coroutines::attributes& attributes
  205. = boost::coroutines::attributes());
  206. /// Start a new stackful coroutine that executes in the context of a strand.
  207. /**
  208. * This function is used to launch a new coroutine.
  209. *
  210. * @param strand Identifies a strand. By starting multiple coroutines on the
  211. * same strand, the implementation ensures that none of those coroutines can
  212. * execute simultaneously.
  213. *
  214. * @param function The coroutine function. The function must have the signature:
  215. * @code void function(yield_context yield); @endcode
  216. *
  217. * @param attributes Boost.Coroutine attributes used to customise the coroutine.
  218. */
  219. template <typename Function>
  220. void spawn(boost::asio::io_service::strand strand,
  221. BOOST_ASIO_MOVE_ARG(Function) function,
  222. const boost::coroutines::attributes& attributes
  223. = boost::coroutines::attributes());
  224. /// Start a new stackful coroutine that executes on a given io_service.
  225. /**
  226. * This function is used to launch a new coroutine.
  227. *
  228. * @param io_service Identifies the io_service that will run the coroutine. The
  229. * new coroutine is implicitly given its own strand within this io_service.
  230. *
  231. * @param function The coroutine function. The function must have the signature:
  232. * @code void function(yield_context yield); @endcode
  233. *
  234. * @param attributes Boost.Coroutine attributes used to customise the coroutine.
  235. */
  236. template <typename Function>
  237. void spawn(boost::asio::io_service& io_service,
  238. BOOST_ASIO_MOVE_ARG(Function) function,
  239. const boost::coroutines::attributes& attributes
  240. = boost::coroutines::attributes());
  241. /*@}*/
  242. } // namespace asio
  243. } // namespace boost
  244. #include <boost/asio/detail/pop_options.hpp>
  245. #include <boost/asio/impl/spawn.hpp>
  246. #endif // BOOST_ASIO_SPAWN_HPP