select_reactor.hpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. //
  2. // detail/select_reactor.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2023 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 ASIO_DETAIL_SELECT_REACTOR_HPP
  11. #define ASIO_DETAIL_SELECT_REACTOR_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #if defined(ASIO_HAS_IOCP) \
  17. || (!defined(ASIO_HAS_DEV_POLL) \
  18. && !defined(ASIO_HAS_EPOLL) \
  19. && !defined(ASIO_HAS_KQUEUE) \
  20. && !defined(ASIO_WINDOWS_RUNTIME))
  21. #include <cstddef>
  22. #include "asio/detail/fd_set_adapter.hpp"
  23. #include "asio/detail/limits.hpp"
  24. #include "asio/detail/mutex.hpp"
  25. #include "asio/detail/op_queue.hpp"
  26. #include "asio/detail/reactor_op.hpp"
  27. #include "asio/detail/reactor_op_queue.hpp"
  28. #include "asio/detail/scheduler_task.hpp"
  29. #include "asio/detail/select_interrupter.hpp"
  30. #include "asio/detail/socket_types.hpp"
  31. #include "asio/detail/timer_queue_base.hpp"
  32. #include "asio/detail/timer_queue_set.hpp"
  33. #include "asio/detail/wait_op.hpp"
  34. #include "asio/execution_context.hpp"
  35. #if defined(ASIO_HAS_IOCP)
  36. # include "asio/detail/thread.hpp"
  37. #endif // defined(ASIO_HAS_IOCP)
  38. #include "asio/detail/push_options.hpp"
  39. namespace asio {
  40. namespace detail {
  41. class select_reactor
  42. : public execution_context_service_base<select_reactor>
  43. #if !defined(ASIO_HAS_IOCP)
  44. , public scheduler_task
  45. #endif // !defined(ASIO_HAS_IOCP)
  46. {
  47. public:
  48. #if defined(ASIO_WINDOWS) || defined(__CYGWIN__)
  49. enum op_types { read_op = 0, write_op = 1, except_op = 2,
  50. max_select_ops = 3, connect_op = 3, max_ops = 4 };
  51. #else // defined(ASIO_WINDOWS) || defined(__CYGWIN__)
  52. enum op_types { read_op = 0, write_op = 1, except_op = 2,
  53. max_select_ops = 3, connect_op = 1, max_ops = 3 };
  54. #endif // defined(ASIO_WINDOWS) || defined(__CYGWIN__)
  55. // Per-descriptor data.
  56. struct per_descriptor_data
  57. {
  58. };
  59. // Constructor.
  60. ASIO_DECL select_reactor(asio::execution_context& ctx);
  61. // Destructor.
  62. ASIO_DECL ~select_reactor();
  63. // Destroy all user-defined handler objects owned by the service.
  64. ASIO_DECL void shutdown();
  65. // Recreate internal descriptors following a fork.
  66. ASIO_DECL void notify_fork(
  67. asio::execution_context::fork_event fork_ev);
  68. // Initialise the task, but only if the reactor is not in its own thread.
  69. ASIO_DECL void init_task();
  70. // Register a socket with the reactor. Returns 0 on success, system error
  71. // code on failure.
  72. ASIO_DECL int register_descriptor(socket_type, per_descriptor_data&);
  73. // Register a descriptor with an associated single operation. Returns 0 on
  74. // success, system error code on failure.
  75. ASIO_DECL int register_internal_descriptor(
  76. int op_type, socket_type descriptor,
  77. per_descriptor_data& descriptor_data, reactor_op* op);
  78. // Post a reactor operation for immediate completion.
  79. void post_immediate_completion(operation* op, bool is_continuation) const;
  80. // Post a reactor operation for immediate completion.
  81. ASIO_DECL static void call_post_immediate_completion(
  82. operation* op, bool is_continuation, const void* self);
  83. // Start a new operation. The reactor operation will be performed when the
  84. // given descriptor is flagged as ready, or an error has occurred.
  85. ASIO_DECL void start_op(int op_type, socket_type descriptor,
  86. per_descriptor_data&, reactor_op* op, bool is_continuation, bool,
  87. void (*on_immediate)(operation*, bool, const void*),
  88. const void* immediate_arg);
  89. // Start a new operation. The reactor operation will be performed when the
  90. // given descriptor is flagged as ready, or an error has occurred.
  91. void start_op(int op_type, socket_type descriptor,
  92. per_descriptor_data& descriptor_data, reactor_op* op,
  93. bool is_continuation, bool allow_speculative)
  94. {
  95. start_op(op_type, descriptor, descriptor_data,
  96. op, is_continuation, allow_speculative,
  97. &select_reactor::call_post_immediate_completion, this);
  98. }
  99. // Cancel all operations associated with the given descriptor. The
  100. // handlers associated with the descriptor will be invoked with the
  101. // operation_aborted error.
  102. ASIO_DECL void cancel_ops(socket_type descriptor, per_descriptor_data&);
  103. // Cancel all operations associated with the given descriptor and key. The
  104. // handlers associated with the descriptor will be invoked with the
  105. // operation_aborted error.
  106. ASIO_DECL void cancel_ops_by_key(socket_type descriptor,
  107. per_descriptor_data& descriptor_data,
  108. int op_type, void* cancellation_key);
  109. // Cancel any operations that are running against the descriptor and remove
  110. // its registration from the reactor. The reactor resources associated with
  111. // the descriptor must be released by calling cleanup_descriptor_data.
  112. ASIO_DECL void deregister_descriptor(socket_type descriptor,
  113. per_descriptor_data&, bool closing);
  114. // Remove the descriptor's registration from the reactor. The reactor
  115. // resources associated with the descriptor must be released by calling
  116. // cleanup_descriptor_data.
  117. ASIO_DECL void deregister_internal_descriptor(
  118. socket_type descriptor, per_descriptor_data&);
  119. // Perform any post-deregistration cleanup tasks associated with the
  120. // descriptor data.
  121. ASIO_DECL void cleanup_descriptor_data(per_descriptor_data&);
  122. // Move descriptor registration from one descriptor_data object to another.
  123. ASIO_DECL void move_descriptor(socket_type descriptor,
  124. per_descriptor_data& target_descriptor_data,
  125. per_descriptor_data& source_descriptor_data);
  126. // Add a new timer queue to the reactor.
  127. template <typename Time_Traits>
  128. void add_timer_queue(timer_queue<Time_Traits>& queue);
  129. // Remove a timer queue from the reactor.
  130. template <typename Time_Traits>
  131. void remove_timer_queue(timer_queue<Time_Traits>& queue);
  132. // Schedule a new operation in the given timer queue to expire at the
  133. // specified absolute time.
  134. template <typename Time_Traits>
  135. void schedule_timer(timer_queue<Time_Traits>& queue,
  136. const typename Time_Traits::time_type& time,
  137. typename timer_queue<Time_Traits>::per_timer_data& timer, wait_op* op);
  138. // Cancel the timer operations associated with the given token. Returns the
  139. // number of operations that have been posted or dispatched.
  140. template <typename Time_Traits>
  141. std::size_t cancel_timer(timer_queue<Time_Traits>& queue,
  142. typename timer_queue<Time_Traits>::per_timer_data& timer,
  143. std::size_t max_cancelled = (std::numeric_limits<std::size_t>::max)());
  144. // Cancel the timer operations associated with the given key.
  145. template <typename Time_Traits>
  146. void cancel_timer_by_key(timer_queue<Time_Traits>& queue,
  147. typename timer_queue<Time_Traits>::per_timer_data* timer,
  148. void* cancellation_key);
  149. // Move the timer operations associated with the given timer.
  150. template <typename Time_Traits>
  151. void move_timer(timer_queue<Time_Traits>& queue,
  152. typename timer_queue<Time_Traits>::per_timer_data& target,
  153. typename timer_queue<Time_Traits>::per_timer_data& source);
  154. // Run select once until interrupted or events are ready to be dispatched.
  155. ASIO_DECL void run(long usec, op_queue<operation>& ops);
  156. // Interrupt the select loop.
  157. ASIO_DECL void interrupt();
  158. private:
  159. #if defined(ASIO_HAS_IOCP)
  160. // Run the select loop in the thread.
  161. ASIO_DECL void run_thread();
  162. #endif // defined(ASIO_HAS_IOCP)
  163. // Helper function to add a new timer queue.
  164. ASIO_DECL void do_add_timer_queue(timer_queue_base& queue);
  165. // Helper function to remove a timer queue.
  166. ASIO_DECL void do_remove_timer_queue(timer_queue_base& queue);
  167. // Get the timeout value for the select call.
  168. ASIO_DECL timeval* get_timeout(long usec, timeval& tv);
  169. // Cancel all operations associated with the given descriptor. This function
  170. // does not acquire the select_reactor's mutex.
  171. ASIO_DECL void cancel_ops_unlocked(socket_type descriptor,
  172. const asio::error_code& ec);
  173. // The scheduler implementation used to post completions.
  174. # if defined(ASIO_HAS_IOCP)
  175. typedef class win_iocp_io_context scheduler_type;
  176. # else // defined(ASIO_HAS_IOCP)
  177. typedef class scheduler scheduler_type;
  178. # endif // defined(ASIO_HAS_IOCP)
  179. scheduler_type& scheduler_;
  180. // Mutex to protect access to internal data.
  181. asio::detail::mutex mutex_;
  182. // The interrupter is used to break a blocking select call.
  183. select_interrupter interrupter_;
  184. // The queues of read, write and except operations.
  185. reactor_op_queue<socket_type> op_queue_[max_ops];
  186. // The file descriptor sets to be passed to the select system call.
  187. fd_set_adapter fd_sets_[max_select_ops];
  188. // The timer queues.
  189. timer_queue_set timer_queues_;
  190. #if defined(ASIO_HAS_IOCP)
  191. // Helper class to run the reactor loop in a thread.
  192. class thread_function;
  193. friend class thread_function;
  194. // Does the reactor loop thread need to stop.
  195. bool stop_thread_;
  196. // The thread that is running the reactor loop.
  197. asio::detail::thread* thread_;
  198. // Helper class to join and restart the reactor thread.
  199. class restart_reactor : public operation
  200. {
  201. public:
  202. restart_reactor(select_reactor* r)
  203. : operation(&restart_reactor::do_complete),
  204. reactor_(r)
  205. {
  206. }
  207. ASIO_DECL static void do_complete(void* owner, operation* base,
  208. const asio::error_code& ec, std::size_t bytes_transferred);
  209. private:
  210. select_reactor* reactor_;
  211. };
  212. friend class restart_reactor;
  213. // Operation used to join and restart the reactor thread.
  214. restart_reactor restart_reactor_;
  215. #endif // defined(ASIO_HAS_IOCP)
  216. // Whether the service has been shut down.
  217. bool shutdown_;
  218. };
  219. } // namespace detail
  220. } // namespace asio
  221. #include "asio/detail/pop_options.hpp"
  222. #include "asio/detail/impl/select_reactor.hpp"
  223. #if defined(ASIO_HEADER_ONLY)
  224. # include "asio/detail/impl/select_reactor.ipp"
  225. #endif // defined(ASIO_HEADER_ONLY)
  226. #endif // defined(ASIO_HAS_IOCP)
  227. // || (!defined(ASIO_HAS_DEV_POLL)
  228. // && !defined(ASIO_HAS_EPOLL)
  229. // && !defined(ASIO_HAS_KQUEUE)
  230. // && !defined(ASIO_WINDOWS_RUNTIME))
  231. #endif // ASIO_DETAIL_SELECT_REACTOR_HPP