kqueue_reactor.hpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. //
  2. // detail/kqueue_reactor.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. // Copyright (c) 2005 Stefan Arentz (stefan at soze dot com)
  7. //
  8. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  9. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  10. //
  11. #ifndef BOOST_ASIO_DETAIL_KQUEUE_REACTOR_HPP
  12. #define BOOST_ASIO_DETAIL_KQUEUE_REACTOR_HPP
  13. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  14. # pragma once
  15. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  16. #include <boost/asio/detail/config.hpp>
  17. #if defined(BOOST_ASIO_HAS_KQUEUE)
  18. #include <cstddef>
  19. #include <sys/types.h>
  20. #include <sys/event.h>
  21. #include <sys/time.h>
  22. #include <boost/asio/detail/limits.hpp>
  23. #include <boost/asio/detail/mutex.hpp>
  24. #include <boost/asio/detail/object_pool.hpp>
  25. #include <boost/asio/detail/op_queue.hpp>
  26. #include <boost/asio/detail/reactor_op.hpp>
  27. #include <boost/asio/detail/select_interrupter.hpp>
  28. #include <boost/asio/detail/socket_types.hpp>
  29. #include <boost/asio/detail/timer_queue_base.hpp>
  30. #include <boost/asio/detail/timer_queue_set.hpp>
  31. #include <boost/asio/detail/wait_op.hpp>
  32. #include <boost/asio/error.hpp>
  33. #include <boost/asio/io_service.hpp>
  34. // Older versions of Mac OS X may not define EV_OOBAND.
  35. #if !defined(EV_OOBAND)
  36. # define EV_OOBAND EV_FLAG1
  37. #endif // !defined(EV_OOBAND)
  38. #include <boost/asio/detail/push_options.hpp>
  39. namespace boost {
  40. namespace asio {
  41. namespace detail {
  42. class kqueue_reactor
  43. : public boost::asio::detail::service_base<kqueue_reactor>
  44. {
  45. public:
  46. enum op_types { read_op = 0, write_op = 1,
  47. connect_op = 1, except_op = 2, max_ops = 3 };
  48. // Per-descriptor queues.
  49. struct descriptor_state
  50. {
  51. friend class kqueue_reactor;
  52. friend class object_pool_access;
  53. descriptor_state* next_;
  54. descriptor_state* prev_;
  55. mutex mutex_;
  56. int descriptor_;
  57. op_queue<reactor_op> op_queue_[max_ops];
  58. bool shutdown_;
  59. };
  60. // Per-descriptor data.
  61. typedef descriptor_state* per_descriptor_data;
  62. // Constructor.
  63. BOOST_ASIO_DECL kqueue_reactor(boost::asio::io_service& io_service);
  64. // Destructor.
  65. BOOST_ASIO_DECL ~kqueue_reactor();
  66. // Destroy all user-defined handler objects owned by the service.
  67. BOOST_ASIO_DECL void shutdown_service();
  68. // Recreate internal descriptors following a fork.
  69. BOOST_ASIO_DECL void fork_service(
  70. boost::asio::io_service::fork_event fork_ev);
  71. // Initialise the task.
  72. BOOST_ASIO_DECL void init_task();
  73. // Register a socket with the reactor. Returns 0 on success, system error
  74. // code on failure.
  75. BOOST_ASIO_DECL int register_descriptor(socket_type descriptor,
  76. per_descriptor_data& descriptor_data);
  77. // Register a descriptor with an associated single operation. Returns 0 on
  78. // success, system error code on failure.
  79. BOOST_ASIO_DECL int register_internal_descriptor(
  80. int op_type, socket_type descriptor,
  81. per_descriptor_data& descriptor_data, reactor_op* op);
  82. // Move descriptor registration from one descriptor_data object to another.
  83. BOOST_ASIO_DECL void move_descriptor(socket_type descriptor,
  84. per_descriptor_data& target_descriptor_data,
  85. per_descriptor_data& source_descriptor_data);
  86. // Post a reactor operation for immediate completion.
  87. void post_immediate_completion(reactor_op* op, bool is_continuation)
  88. {
  89. io_service_.post_immediate_completion(op, is_continuation);
  90. }
  91. // Start a new operation. The reactor operation will be performed when the
  92. // given descriptor is flagged as ready, or an error has occurred.
  93. BOOST_ASIO_DECL void start_op(int op_type, socket_type descriptor,
  94. per_descriptor_data& descriptor_data, reactor_op* op,
  95. bool is_continuation, bool allow_speculative);
  96. // Cancel all operations associated with the given descriptor. The
  97. // handlers associated with the descriptor will be invoked with the
  98. // operation_aborted error.
  99. BOOST_ASIO_DECL void cancel_ops(socket_type descriptor,
  100. per_descriptor_data& descriptor_data);
  101. // Cancel any operations that are running against the descriptor and remove
  102. // its registration from the reactor.
  103. BOOST_ASIO_DECL void deregister_descriptor(socket_type descriptor,
  104. per_descriptor_data& descriptor_data, bool closing);
  105. // Remote the descriptor's registration from the reactor.
  106. BOOST_ASIO_DECL void deregister_internal_descriptor(
  107. socket_type descriptor, per_descriptor_data& descriptor_data);
  108. // Add a new timer queue to the reactor.
  109. template <typename Time_Traits>
  110. void add_timer_queue(timer_queue<Time_Traits>& queue);
  111. // Remove a timer queue from the reactor.
  112. template <typename Time_Traits>
  113. void remove_timer_queue(timer_queue<Time_Traits>& queue);
  114. // Schedule a new operation in the given timer queue to expire at the
  115. // specified absolute time.
  116. template <typename Time_Traits>
  117. void schedule_timer(timer_queue<Time_Traits>& queue,
  118. const typename Time_Traits::time_type& time,
  119. typename timer_queue<Time_Traits>::per_timer_data& timer, wait_op* op);
  120. // Cancel the timer operations associated with the given token. Returns the
  121. // number of operations that have been posted or dispatched.
  122. template <typename Time_Traits>
  123. std::size_t cancel_timer(timer_queue<Time_Traits>& queue,
  124. typename timer_queue<Time_Traits>::per_timer_data& timer,
  125. std::size_t max_cancelled = (std::numeric_limits<std::size_t>::max)());
  126. // Run the kqueue loop.
  127. BOOST_ASIO_DECL void run(bool block, op_queue<operation>& ops);
  128. // Interrupt the kqueue loop.
  129. BOOST_ASIO_DECL void interrupt();
  130. private:
  131. // Create the kqueue file descriptor. Throws an exception if the descriptor
  132. // cannot be created.
  133. BOOST_ASIO_DECL static int do_kqueue_create();
  134. // Allocate a new descriptor state object.
  135. BOOST_ASIO_DECL descriptor_state* allocate_descriptor_state();
  136. // Free an existing descriptor state object.
  137. BOOST_ASIO_DECL void free_descriptor_state(descriptor_state* s);
  138. // Helper function to add a new timer queue.
  139. BOOST_ASIO_DECL void do_add_timer_queue(timer_queue_base& queue);
  140. // Helper function to remove a timer queue.
  141. BOOST_ASIO_DECL void do_remove_timer_queue(timer_queue_base& queue);
  142. // Get the timeout value for the kevent call.
  143. BOOST_ASIO_DECL timespec* get_timeout(timespec& ts);
  144. // The io_service implementation used to post completions.
  145. io_service_impl& io_service_;
  146. // Mutex to protect access to internal data.
  147. mutex mutex_;
  148. // The kqueue file descriptor.
  149. int kqueue_fd_;
  150. // The interrupter is used to break a blocking kevent call.
  151. select_interrupter interrupter_;
  152. // The timer queues.
  153. timer_queue_set timer_queues_;
  154. // Whether the service has been shut down.
  155. bool shutdown_;
  156. // Mutex to protect access to the registered descriptors.
  157. mutex registered_descriptors_mutex_;
  158. // Keep track of all registered descriptors.
  159. object_pool<descriptor_state> registered_descriptors_;
  160. };
  161. } // namespace detail
  162. } // namespace asio
  163. } // namespace boost
  164. #include <boost/asio/detail/pop_options.hpp>
  165. #include <boost/asio/detail/impl/kqueue_reactor.hpp>
  166. #if defined(BOOST_ASIO_HEADER_ONLY)
  167. # include <boost/asio/detail/impl/kqueue_reactor.ipp>
  168. #endif // defined(BOOST_ASIO_HEADER_ONLY)
  169. #endif // defined(BOOST_ASIO_HAS_KQUEUE)
  170. #endif // BOOST_ASIO_DETAIL_KQUEUE_REACTOR_HPP