Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
7.2KB

  1. //
  2. // detail/kqueue_reactor.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 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 ASIO_DETAIL_KQUEUE_REACTOR_HPP
  12. #define 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 "asio/detail/config.hpp"
  17. #if defined(ASIO_HAS_KQUEUE)
  18. #include <cstddef>
  19. #include <sys/types.h>
  20. #include <sys/event.h>
  21. #include <sys/time.h>
  22. #include "asio/detail/limits.hpp"
  23. #include "asio/detail/mutex.hpp"
  24. #include "asio/detail/object_pool.hpp"
  25. #include "asio/detail/op_queue.hpp"
  26. #include "asio/detail/reactor_op.hpp"
  27. #include "asio/detail/select_interrupter.hpp"
  28. #include "asio/detail/socket_types.hpp"
  29. #include "asio/detail/timer_queue_base.hpp"
  30. #include "asio/detail/timer_queue_set.hpp"
  31. #include "asio/detail/wait_op.hpp"
  32. #include "asio/error.hpp"
  33. #include "asio/execution_context.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 "asio/detail/push_options.hpp"
  39. namespace asio {
  40. namespace detail {
  41. class scheduler;
  42. class kqueue_reactor
  43. : public execution_context_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. int num_kevents_; // 1 == read only, 2 == read and write
  58. op_queue<reactor_op> op_queue_[max_ops];
  59. bool shutdown_;
  60. };
  61. // Per-descriptor data.
  62. typedef descriptor_state* per_descriptor_data;
  63. // Constructor.
  64. ASIO_DECL kqueue_reactor(asio::execution_context& ctx);
  65. // Destructor.
  66. ASIO_DECL ~kqueue_reactor();
  67. // Destroy all user-defined handler objects owned by the service.
  68. ASIO_DECL void shutdown();
  69. // Recreate internal descriptors following a fork.
  70. ASIO_DECL void notify_fork(
  71. asio::execution_context::fork_event fork_ev);
  72. // Initialise the task.
  73. ASIO_DECL void init_task();
  74. // Register a socket with the reactor. Returns 0 on success, system error
  75. // code on failure.
  76. ASIO_DECL int register_descriptor(socket_type descriptor,
  77. per_descriptor_data& descriptor_data);
  78. // Register a descriptor with an associated single operation. Returns 0 on
  79. // success, system error code on failure.
  80. ASIO_DECL int register_internal_descriptor(
  81. int op_type, socket_type descriptor,
  82. per_descriptor_data& descriptor_data, reactor_op* op);
  83. // Move descriptor registration from one descriptor_data object to another.
  84. ASIO_DECL void move_descriptor(socket_type descriptor,
  85. per_descriptor_data& target_descriptor_data,
  86. per_descriptor_data& source_descriptor_data);
  87. // Post a reactor operation for immediate completion.
  88. void post_immediate_completion(reactor_op* op, bool is_continuation)
  89. {
  90. scheduler_.post_immediate_completion(op, is_continuation);
  91. }
  92. // Start a new operation. The reactor operation will be performed when the
  93. // given descriptor is flagged as ready, or an error has occurred.
  94. ASIO_DECL void start_op(int op_type, socket_type descriptor,
  95. per_descriptor_data& descriptor_data, reactor_op* op,
  96. bool is_continuation, bool allow_speculative);
  97. // Cancel all operations associated with the given descriptor. The
  98. // handlers associated with the descriptor will be invoked with the
  99. // operation_aborted error.
  100. ASIO_DECL void cancel_ops(socket_type descriptor,
  101. per_descriptor_data& descriptor_data);
  102. // Cancel any operations that are running against the descriptor and remove
  103. // its registration from the reactor.
  104. ASIO_DECL void deregister_descriptor(socket_type descriptor,
  105. per_descriptor_data& descriptor_data, bool closing);
  106. // Remote the descriptor's registration from the reactor.
  107. ASIO_DECL void deregister_internal_descriptor(
  108. socket_type descriptor, per_descriptor_data& descriptor_data);
  109. // Add a new timer queue to the reactor.
  110. template <typename Time_Traits>
  111. void add_timer_queue(timer_queue<Time_Traits>& queue);
  112. // Remove a timer queue from the reactor.
  113. template <typename Time_Traits>
  114. void remove_timer_queue(timer_queue<Time_Traits>& queue);
  115. // Schedule a new operation in the given timer queue to expire at the
  116. // specified absolute time.
  117. template <typename Time_Traits>
  118. void schedule_timer(timer_queue<Time_Traits>& queue,
  119. const typename Time_Traits::time_type& time,
  120. typename timer_queue<Time_Traits>::per_timer_data& timer, wait_op* op);
  121. // Cancel the timer operations associated with the given token. Returns the
  122. // number of operations that have been posted or dispatched.
  123. template <typename Time_Traits>
  124. std::size_t cancel_timer(timer_queue<Time_Traits>& queue,
  125. typename timer_queue<Time_Traits>::per_timer_data& timer,
  126. std::size_t max_cancelled = (std::numeric_limits<std::size_t>::max)());
  127. // Move the timer operations associated with the given timer.
  128. template <typename Time_Traits>
  129. void move_timer(timer_queue<Time_Traits>& queue,
  130. typename timer_queue<Time_Traits>::per_timer_data& target,
  131. typename timer_queue<Time_Traits>::per_timer_data& source);
  132. // Run the kqueue loop.
  133. ASIO_DECL void run(bool block, op_queue<operation>& ops);
  134. // Interrupt the kqueue loop.
  135. ASIO_DECL void interrupt();
  136. private:
  137. // Create the kqueue file descriptor. Throws an exception if the descriptor
  138. // cannot be created.
  139. ASIO_DECL static int do_kqueue_create();
  140. // Allocate a new descriptor state object.
  141. ASIO_DECL descriptor_state* allocate_descriptor_state();
  142. // Free an existing descriptor state object.
  143. ASIO_DECL void free_descriptor_state(descriptor_state* s);
  144. // Helper function to add a new timer queue.
  145. ASIO_DECL void do_add_timer_queue(timer_queue_base& queue);
  146. // Helper function to remove a timer queue.
  147. ASIO_DECL void do_remove_timer_queue(timer_queue_base& queue);
  148. // Get the timeout value for the kevent call.
  149. ASIO_DECL timespec* get_timeout(timespec& ts);
  150. // The scheduler used to post completions.
  151. scheduler& scheduler_;
  152. // Mutex to protect access to internal data.
  153. mutex mutex_;
  154. // The kqueue file descriptor.
  155. int kqueue_fd_;
  156. // The interrupter is used to break a blocking kevent call.
  157. select_interrupter interrupter_;
  158. // The timer queues.
  159. timer_queue_set timer_queues_;
  160. // Whether the service has been shut down.
  161. bool shutdown_;
  162. // Mutex to protect access to the registered descriptors.
  163. mutex registered_descriptors_mutex_;
  164. // Keep track of all registered descriptors.
  165. object_pool<descriptor_state> registered_descriptors_;
  166. };
  167. } // namespace detail
  168. } // namespace asio
  169. #include "asio/detail/pop_options.hpp"
  170. #include "asio/detail/impl/kqueue_reactor.hpp"
  171. #if defined(ASIO_HEADER_ONLY)
  172. # include "asio/detail/impl/kqueue_reactor.ipp"
  173. #endif // defined(ASIO_HEADER_ONLY)
  174. #endif // defined(ASIO_HAS_KQUEUE)
  175. #endif // ASIO_DETAIL_KQUEUE_REACTOR_HPP