2014-09-21 11:28:06 +02:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2 C Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
// We wrote this code based on the original code which has the
|
|
|
|
// following license:
|
|
|
|
//
|
|
|
|
// io_service_pool.cpp
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~
|
|
|
|
//
|
|
|
|
// Copyright (c) 2003-2013 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)
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "asio_server.h"
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <future>
|
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
|
|
|
|
namespace asio_http2 {
|
|
|
|
|
|
|
|
namespace server {
|
|
|
|
|
2014-09-28 09:17:43 +02:00
|
|
|
io_service_pool::io_service_pool(std::size_t pool_size,
|
|
|
|
std::size_t thread_pool_size)
|
2014-11-27 15:39:04 +01:00
|
|
|
: next_io_service_(0), thread_pool_size_(thread_pool_size) {
|
2014-09-21 11:28:06 +02:00
|
|
|
if (pool_size == 0) {
|
|
|
|
throw std::runtime_error("io_service_pool size is 0");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give all the io_services work to do so that their run() functions will not
|
|
|
|
// exit until they are explicitly stopped.
|
2014-09-28 09:17:43 +02:00
|
|
|
for (std::size_t i = 0; i < pool_size; ++i) {
|
2014-09-21 11:28:06 +02:00
|
|
|
auto io_service = std::make_shared<boost::asio::io_service>();
|
|
|
|
auto work = std::make_shared<boost::asio::io_service::work>(*io_service);
|
|
|
|
io_services_.push_back(io_service);
|
|
|
|
work_.push_back(work);
|
|
|
|
}
|
2014-09-28 09:17:43 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
auto work = std::make_shared<boost::asio::io_service::work>(task_io_service_);
|
2014-09-28 09:17:43 +02:00
|
|
|
work_.push_back(work);
|
2014-09-21 11:28:06 +02:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void io_service_pool::run() {
|
|
|
|
for (std::size_t i = 0; i < thread_pool_size_; ++i) {
|
|
|
|
thread_pool_.create_thread([this]() { task_io_service_.run(); });
|
2014-09-28 09:17:43 +02:00
|
|
|
}
|
|
|
|
|
2014-09-21 11:28:06 +02:00
|
|
|
// Create a pool of threads to run all of the io_services.
|
|
|
|
auto futs = std::vector<std::future<std::size_t>>();
|
|
|
|
|
|
|
|
for (std::size_t i = 0; i < io_services_.size(); ++i) {
|
2014-11-27 15:39:04 +01:00
|
|
|
futs.push_back(std::async(std::launch::async,
|
|
|
|
(size_t (boost::asio::io_service::*)(void)) &
|
|
|
|
boost::asio::io_service::run,
|
|
|
|
io_services_[i]));
|
2014-09-21 11:28:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for all threads in the pool to exit.
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto &fut : futs) {
|
2014-09-21 11:28:06 +02:00
|
|
|
fut.get();
|
|
|
|
}
|
2014-09-28 09:17:43 +02:00
|
|
|
|
|
|
|
thread_pool_.join_all();
|
2014-09-21 11:28:06 +02:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void io_service_pool::stop() {
|
2014-09-21 11:28:06 +02:00
|
|
|
// Explicitly stop all io_services.
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto &iosv : io_services_) {
|
2014-09-21 11:28:06 +02:00
|
|
|
iosv->stop();
|
|
|
|
}
|
2014-09-28 09:17:43 +02:00
|
|
|
|
|
|
|
task_io_service_.stop();
|
2014-09-21 11:28:06 +02:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
boost::asio::io_service &io_service_pool::get_io_service() {
|
2014-09-21 11:28:06 +02:00
|
|
|
// Use a round-robin scheme to choose the next io_service to use.
|
2014-11-27 15:39:04 +01:00
|
|
|
auto &io_service = *io_services_[next_io_service_];
|
2014-09-21 11:28:06 +02:00
|
|
|
++next_io_service_;
|
|
|
|
if (next_io_service_ == io_services_.size()) {
|
|
|
|
next_io_service_ = 0;
|
|
|
|
}
|
|
|
|
return io_service;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
boost::asio::io_service &io_service_pool::get_task_io_service() {
|
2014-09-28 09:17:43 +02:00
|
|
|
return task_io_service_;
|
|
|
|
}
|
|
|
|
|
2014-09-21 11:28:06 +02:00
|
|
|
} // namespace server
|
|
|
|
|
|
|
|
} // namespace asio_http2
|
|
|
|
|
|
|
|
} // namespace nghttp2
|