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:
|
|
|
|
//
|
|
|
|
// server.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 <boost/date_time/posix_time/posix_time.hpp>
|
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
namespace asio_http2 {
|
|
|
|
namespace server {
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
server::server(const std::string &address, uint16_t port,
|
2015-03-04 17:52:12 +01:00
|
|
|
std::size_t io_service_pool_size, serve_mux &mux,
|
2014-11-27 15:39:04 +01:00
|
|
|
std::unique_ptr<boost::asio::ssl::context> ssl_ctx, int backlog)
|
2015-03-03 17:46:59 +01:00
|
|
|
: io_service_pool_(io_service_pool_size),
|
2014-11-27 15:39:04 +01:00
|
|
|
signals_(io_service_pool_.get_io_service()),
|
|
|
|
tick_timer_(io_service_pool_.get_io_service(),
|
|
|
|
boost::posix_time::seconds(1)),
|
2015-03-04 17:52:12 +01:00
|
|
|
ssl_ctx_(std::move(ssl_ctx)), mux_(mux) {
|
2014-09-21 11:28:06 +02:00
|
|
|
// Register to handle the signals that indicate when the server should exit.
|
|
|
|
// It is safe to register for the same signal multiple times in a program,
|
|
|
|
// provided all registration for the specified signal is made through Asio.
|
|
|
|
signals_.add(SIGINT);
|
|
|
|
signals_.add(SIGTERM);
|
|
|
|
#if defined(SIGQUIT)
|
|
|
|
signals_.add(SIGQUIT);
|
|
|
|
#endif // defined(SIGQUIT)
|
2014-11-27 15:39:04 +01:00
|
|
|
signals_.async_wait([this](const boost::system::error_code &error,
|
|
|
|
int signal_number) { io_service_pool_.stop(); });
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
// Open the acceptor with the option to reuse the address (i.e. SO_REUSEADDR).
|
2014-11-30 14:39:16 +01:00
|
|
|
boost::asio::ip::tcp::resolver resolver(io_service_pool_.get_io_service());
|
2014-09-21 11:28:06 +02:00
|
|
|
boost::asio::ip::tcp::resolver::query query(address, std::to_string(port));
|
2014-11-30 14:39:16 +01:00
|
|
|
|
|
|
|
for (auto itr = resolver.resolve(query);
|
|
|
|
itr != boost::asio::ip::tcp::resolver::iterator(); ++itr) {
|
|
|
|
boost::asio::ip::tcp::endpoint endpoint = *itr;
|
|
|
|
auto acceptor =
|
|
|
|
boost::asio::ip::tcp::acceptor(io_service_pool_.get_io_service());
|
|
|
|
|
|
|
|
acceptor.open(endpoint.protocol());
|
|
|
|
acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
|
|
|
|
acceptor.bind(endpoint);
|
|
|
|
if (backlog == -1) {
|
|
|
|
acceptor.listen();
|
|
|
|
} else {
|
|
|
|
acceptor.listen(backlog);
|
|
|
|
}
|
|
|
|
acceptors_.push_back(std::move(acceptor));
|
2014-11-10 15:26:01 +01:00
|
|
|
}
|
2014-09-21 11:28:06 +02:00
|
|
|
|
2015-03-03 18:27:33 +01:00
|
|
|
for (auto &acceptor : acceptors_) {
|
|
|
|
start_accept(acceptor);
|
|
|
|
}
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
start_timer();
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void server::run() { io_service_pool_.run(); }
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
std::shared_ptr<std::string> cached_date;
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
void update_date() {
|
2014-09-21 11:28:06 +02:00
|
|
|
cached_date = std::make_shared<std::string>(util::http_date(time(nullptr)));
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void server::start_timer() {
|
2014-09-21 11:28:06 +02:00
|
|
|
update_date();
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
tick_timer_.async_wait([this](const boost::system::error_code &e) {
|
|
|
|
tick_timer_.expires_at(tick_timer_.expires_at() +
|
|
|
|
boost::posix_time::seconds(1));
|
|
|
|
start_timer();
|
|
|
|
});
|
2014-09-21 11:28:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> ssl_socket;
|
|
|
|
|
2015-03-03 18:27:33 +01:00
|
|
|
void server::start_accept(boost::asio::ip::tcp::acceptor &acceptor) {
|
2014-11-27 15:39:04 +01:00
|
|
|
if (ssl_ctx_) {
|
|
|
|
auto new_connection = std::make_shared<connection<ssl_socket>>(
|
2015-03-04 17:52:12 +01:00
|
|
|
mux_, io_service_pool_.get_io_service(), *ssl_ctx_);
|
2014-11-27 15:39:04 +01:00
|
|
|
|
2015-03-03 18:27:33 +01:00
|
|
|
acceptor.async_accept(
|
|
|
|
new_connection->socket().lowest_layer(),
|
|
|
|
[this, &acceptor, new_connection](const boost::system::error_code &e) {
|
|
|
|
if (!e) {
|
|
|
|
new_connection->socket().lowest_layer().set_option(
|
|
|
|
boost::asio::ip::tcp::no_delay(true));
|
|
|
|
new_connection->socket().async_handshake(
|
|
|
|
boost::asio::ssl::stream_base::server,
|
|
|
|
[new_connection](const boost::system::error_code &e) {
|
|
|
|
if (!e) {
|
|
|
|
new_connection->start();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
start_accept(acceptor);
|
|
|
|
});
|
2014-09-21 11:28:06 +02:00
|
|
|
} else {
|
|
|
|
auto new_connection =
|
2014-11-27 15:39:04 +01:00
|
|
|
std::make_shared<connection<boost::asio::ip::tcp::socket>>(
|
2015-03-04 17:52:12 +01:00
|
|
|
mux_, io_service_pool_.get_io_service());
|
2014-11-27 15:39:04 +01:00
|
|
|
|
2015-03-03 18:27:33 +01:00
|
|
|
acceptor.async_accept(
|
|
|
|
new_connection->socket(),
|
|
|
|
[this, &acceptor, new_connection](const boost::system::error_code &e) {
|
|
|
|
if (!e) {
|
|
|
|
new_connection->socket().set_option(
|
|
|
|
boost::asio::ip::tcp::no_delay(true));
|
|
|
|
new_connection->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
start_accept(acceptor);
|
|
|
|
});
|
2014-09-21 11:28:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace server
|
|
|
|
} // namespace asio_http2
|
|
|
|
} // namespace nghttp2
|