📄 epoll_reactor.hpp
字号:
//// epoll_reactor.hpp// ~~~~~~~~~~~~~~~~~//// Copyright (c) 2003-2007 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 ASIO_DETAIL_EPOLL_REACTOR_HPP#define ASIO_DETAIL_EPOLL_REACTOR_HPP#if defined(_MSC_VER) && (_MSC_VER >= 1200)# pragma once#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)#include "asio/detail/push_options.hpp"#include "asio/detail/epoll_reactor_fwd.hpp"#if defined(ASIO_HAS_EPOLL)#include "asio/detail/push_options.hpp"#include <cstddef>#include <vector>#include <sys/epoll.h>#include <boost/config.hpp>#include <boost/date_time/posix_time/posix_time_types.hpp>#include <boost/throw_exception.hpp>#include "asio/detail/pop_options.hpp"#include "asio/error.hpp"#include "asio/io_service.hpp"#include "asio/system_error.hpp"#include "asio/detail/bind_handler.hpp"#include "asio/detail/hash_map.hpp"#include "asio/detail/mutex.hpp"#include "asio/detail/task_io_service.hpp"#include "asio/detail/thread.hpp"#include "asio/detail/reactor_op_queue.hpp"#include "asio/detail/select_interrupter.hpp"#include "asio/detail/service_base.hpp"#include "asio/detail/signal_blocker.hpp"#include "asio/detail/socket_types.hpp"#include "asio/detail/timer_queue.hpp"namespace asio {namespace detail {template <bool Own_Thread>class epoll_reactor : public asio::detail::service_base<epoll_reactor<Own_Thread> >{public: // Constructor. epoll_reactor(asio::io_service& io_service) : asio::detail::service_base<epoll_reactor<Own_Thread> >(io_service), mutex_(), epoll_fd_(do_epoll_create()), wait_in_progress_(false), interrupter_(), read_op_queue_(), write_op_queue_(), except_op_queue_(), pending_cancellations_(), stop_thread_(false), thread_(0), shutdown_(false) { // Start the reactor's internal thread only if needed. if (Own_Thread) { asio::detail::signal_blocker sb; thread_ = new asio::detail::thread( bind_handler(&epoll_reactor::call_run_thread, this)); } // Add the interrupter's descriptor to epoll. epoll_event ev = { 0, { 0 } }; ev.events = EPOLLIN | EPOLLERR; ev.data.fd = interrupter_.read_descriptor(); epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, interrupter_.read_descriptor(), &ev); } // Destructor. ~epoll_reactor() { shutdown_service(); close(epoll_fd_); } // Destroy all user-defined handler objects owned by the service. void shutdown_service() { asio::detail::mutex::scoped_lock lock(mutex_); shutdown_ = true; stop_thread_ = true; lock.unlock(); if (thread_) { interrupter_.interrupt(); thread_->join(); delete thread_; thread_ = 0; } read_op_queue_.destroy_operations(); write_op_queue_.destroy_operations(); except_op_queue_.destroy_operations(); for (std::size_t i = 0; i < timer_queues_.size(); ++i) timer_queues_[i]->destroy_timers(); timer_queues_.clear(); } // Register a socket with the reactor. Returns 0 on success, system error // code on failure. int register_descriptor(socket_type descriptor) { // No need to lock according to epoll documentation. epoll_event ev = { 0, { 0 } }; ev.events = 0; ev.data.fd = descriptor; int result = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, descriptor, &ev); if (result != 0) return errno; return 0; } // Start a new read operation. The handler object will be invoked when the // given descriptor is ready to be read, or an error has occurred. template <typename Handler> void start_read_op(socket_type descriptor, Handler handler) { asio::detail::mutex::scoped_lock lock(mutex_); if (shutdown_) return; if (!read_op_queue_.has_operation(descriptor)) if (handler(asio::error_code())) return; if (read_op_queue_.enqueue_operation(descriptor, handler)) { epoll_event ev = { 0, { 0 } }; ev.events = EPOLLIN | EPOLLERR | EPOLLHUP; if (write_op_queue_.has_operation(descriptor)) ev.events |= EPOLLOUT; if (except_op_queue_.has_operation(descriptor)) ev.events |= EPOLLPRI; ev.data.fd = descriptor; int result = epoll_ctl(epoll_fd_, EPOLL_CTL_MOD, descriptor, &ev); if (result != 0 && errno == ENOENT) result = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, descriptor, &ev); if (result != 0) { asio::error_code ec(errno, asio::error::get_system_category()); read_op_queue_.dispatch_all_operations(descriptor, ec); } } } // Start a new write operation. The handler object will be invoked when the // given descriptor is ready to be written, or an error has occurred. template <typename Handler> void start_write_op(socket_type descriptor, Handler handler) { asio::detail::mutex::scoped_lock lock(mutex_); if (shutdown_) return; if (!write_op_queue_.has_operation(descriptor)) if (handler(asio::error_code())) return; if (write_op_queue_.enqueue_operation(descriptor, handler)) { epoll_event ev = { 0, { 0 } }; ev.events = EPOLLOUT | EPOLLERR | EPOLLHUP; if (read_op_queue_.has_operation(descriptor)) ev.events |= EPOLLIN; if (except_op_queue_.has_operation(descriptor)) ev.events |= EPOLLPRI; ev.data.fd = descriptor; int result = epoll_ctl(epoll_fd_, EPOLL_CTL_MOD, descriptor, &ev); if (result != 0 && errno == ENOENT) result = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, descriptor, &ev); if (result != 0) { asio::error_code ec(errno, asio::error::get_system_category()); write_op_queue_.dispatch_all_operations(descriptor, ec); } } } // Start a new exception operation. The handler object will be invoked when // the given descriptor has exception information, or an error has occurred. template <typename Handler> void start_except_op(socket_type descriptor, Handler handler) { asio::detail::mutex::scoped_lock lock(mutex_); if (shutdown_) return; if (except_op_queue_.enqueue_operation(descriptor, handler)) { epoll_event ev = { 0, { 0 } }; ev.events = EPOLLPRI | EPOLLERR | EPOLLHUP; if (read_op_queue_.has_operation(descriptor)) ev.events |= EPOLLIN; if (write_op_queue_.has_operation(descriptor)) ev.events |= EPOLLOUT; ev.data.fd = descriptor; int result = epoll_ctl(epoll_fd_, EPOLL_CTL_MOD, descriptor, &ev); if (result != 0 && errno == ENOENT) result = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, descriptor, &ev); if (result != 0) { asio::error_code ec(errno, asio::error::get_system_category()); except_op_queue_.dispatch_all_operations(descriptor, ec); } } } // Start new write and exception operations. The handler object will be // invoked when the given descriptor is ready for writing or has exception // information available, or an error has occurred. template <typename Handler> void start_write_and_except_ops(socket_type descriptor, Handler handler) { asio::detail::mutex::scoped_lock lock(mutex_); if (shutdown_) return; bool need_mod = write_op_queue_.enqueue_operation(descriptor, handler); need_mod = except_op_queue_.enqueue_operation(descriptor, handler) && need_mod; if (need_mod) { epoll_event ev = { 0, { 0 } }; ev.events = EPOLLOUT | EPOLLPRI | EPOLLERR | EPOLLHUP; if (read_op_queue_.has_operation(descriptor)) ev.events |= EPOLLIN; ev.data.fd = descriptor; int result = epoll_ctl(epoll_fd_, EPOLL_CTL_MOD, descriptor, &ev); if (result != 0 && errno == ENOENT) result = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, descriptor, &ev); if (result != 0) { asio::error_code ec(errno, asio::error::get_system_category()); write_op_queue_.dispatch_all_operations(descriptor, ec); except_op_queue_.dispatch_all_operations(descriptor, ec); } } } // Cancel all operations associated with the given descriptor. The // handlers associated with the descriptor will be invoked with the // operation_aborted error. void cancel_ops(socket_type descriptor) { asio::detail::mutex::scoped_lock lock(mutex_); cancel_ops_unlocked(descriptor); } // Enqueue cancellation of all operations associated with the given // descriptor. The handlers associated with the descriptor will be invoked // with the operation_aborted error. This function does not acquire the // epoll_reactor's mutex, and so should only be used from within a reactor // handler. void enqueue_cancel_ops_unlocked(socket_type descriptor) { pending_cancellations_.push_back(descriptor); } // Cancel any operations that are running against the descriptor and remove // its registration from the reactor. void close_descriptor(socket_type descriptor) { asio::detail::mutex::scoped_lock lock(mutex_); // Remove the descriptor from epoll. epoll_event ev = { 0, { 0 } }; epoll_ctl(epoll_fd_, EPOLL_CTL_DEL, descriptor, &ev); // Cancel any outstanding operations associated with the descriptor. cancel_ops_unlocked(descriptor); } // Add a new timer queue to the reactor. template <typename Time_Traits> void add_timer_queue(timer_queue<Time_Traits>& timer_queue) { asio::detail::mutex::scoped_lock lock(mutex_); timer_queues_.push_back(&timer_queue); } // Remove a timer queue from the reactor. template <typename Time_Traits> void remove_timer_queue(timer_queue<Time_Traits>& timer_queue) { asio::detail::mutex::scoped_lock lock(mutex_); for (std::size_t i = 0; i < timer_queues_.size(); ++i) { if (timer_queues_[i] == &timer_queue) { timer_queues_.erase(timer_queues_.begin() + i); return;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -