// // detail/impl/io_uring_service.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_ASIO_DETAIL_IMPL_IO_URING_SERVICE_HPP #define BOOST_ASIO_DETAIL_IMPL_IO_URING_SERVICE_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #if defined(BOOST_ASIO_HAS_IO_URING) #include #include namespace boost { namespace asio { namespace detail { inline void io_uring_service::post_immediate_completion( operation* op, bool is_continuation) { scheduler_.post_immediate_completion(op, is_continuation); } template void io_uring_service::add_timer_queue(timer_queue& queue) { do_add_timer_queue(queue); } template void io_uring_service::remove_timer_queue(timer_queue& queue) { do_remove_timer_queue(queue); } template void io_uring_service::schedule_timer(timer_queue& queue, const typename Time_Traits::time_type& time, typename timer_queue::per_timer_data& timer, wait_op* op) { mutex::scoped_lock lock(mutex_); if (shutdown_) { scheduler_.post_immediate_completion(op, false); return; } bool earliest = queue.enqueue_timer(time, timer, op); scheduler_.work_started(); if (earliest) { update_timeout(); post_submit_sqes_op(lock); } } template std::size_t io_uring_service::cancel_timer(timer_queue& queue, typename timer_queue::per_timer_data& timer, std::size_t max_cancelled) { mutex::scoped_lock lock(mutex_); op_queue ops; std::size_t n = queue.cancel_timer(timer, ops, max_cancelled); lock.unlock(); scheduler_.post_deferred_completions(ops); return n; } template void io_uring_service::cancel_timer_by_key(timer_queue& queue, typename timer_queue::per_timer_data* timer, void* cancellation_key) { mutex::scoped_lock lock(mutex_); op_queue ops; queue.cancel_timer_by_key(timer, ops, cancellation_key); lock.unlock(); scheduler_.post_deferred_completions(ops); } template void io_uring_service::move_timer(timer_queue& queue, typename timer_queue::per_timer_data& target, typename timer_queue::per_timer_data& source) { mutex::scoped_lock lock(mutex_); op_queue ops; queue.cancel_timer(target, ops); queue.move_timer(target, source); lock.unlock(); scheduler_.post_deferred_completions(ops); } } // namespace detail } // namespace asio } // namespace boost #include #endif // defined(BOOST_ASIO_HAS_IO_URING) #endif // BOOST_ASIO_DETAIL_IMPL_IO_URING_SERVICE_HPP