2
0
mirror of https://github.com/boostorg/asio.git synced 2026-01-30 19:32:09 +00:00

Use new signal_set to shut down.

[SVN r71707]
This commit is contained in:
Christopher Kohlhoff
2011-05-03 23:57:23 +00:00
parent 1a6b11f287
commit a2000c8a38
8 changed files with 52 additions and 34 deletions

View File

@@ -57,13 +57,6 @@ void server::run()
io_service_.run();
}
void server::stop()
{
// Post a call to the stop function so that server::stop() is safe to call
// from any thread.
io_service_.post(boost::bind(&server::handle_stop, this));
}
void server::handle_accept(const boost::system::error_code& e)
{
if (!e)

View File

@@ -34,9 +34,6 @@ public:
/// Run the server's io_service loop.
void run();
/// Stop the server.
void stop();
private:
/// Handle completion of an asynchronous accept operation.
void handle_accept(const boost::system::error_code& e);

View File

@@ -20,13 +20,13 @@ int main(int argc, char* argv[])
try
{
// Check command line arguments.
if (argc != 4)
if (argc != 5)
{
std::cerr << "Usage: http_server <address> <port> <doc_root>\n";
std::cerr << "Usage: http_server <address> <port> <threads> <doc_root>\n";
std::cerr << " For IPv4, try:\n";
std::cerr << " receiver 0.0.0.0 80 .\n";
std::cerr << " receiver 0.0.0.0 80 1 .\n";
std::cerr << " For IPv6, try:\n";
std::cerr << " receiver 0::0 80 .\n";
std::cerr << " receiver 0::0 80 1 .\n";
return 1;
}

View File

@@ -17,11 +17,22 @@ namespace server2 {
server::server(const std::string& address, const std::string& port,
const std::string& doc_root, std::size_t io_service_pool_size)
: io_service_pool_(io_service_pool_size),
signals_(io_service_pool_.get_io_service()),
acceptor_(io_service_pool_.get_io_service()),
new_connection_(new connection(
io_service_pool_.get_io_service(), request_handler_)),
request_handler_(doc_root)
{
// 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)
signals_.async_wait(boost::bind(&server::handle_stop, this));
// Open the acceptor with the option to reuse the address (i.e. SO_REUSEADDR).
boost::asio::ip::tcp::resolver resolver(acceptor_.get_io_service());
boost::asio::ip::tcp::resolver::query query(address, port);
@@ -40,11 +51,6 @@ void server::run()
io_service_pool_.run();
}
void server::stop()
{
io_service_pool_.stop();
}
void server::handle_accept(const boost::system::error_code& e)
{
if (!e)
@@ -58,5 +64,10 @@ void server::handle_accept(const boost::system::error_code& e)
}
}
void server::handle_stop()
{
io_service_pool_.stop();
}
} // namespace server2
} // namespace http

View File

@@ -36,16 +36,19 @@ public:
/// Run the server's io_service loop.
void run();
/// Stop the server.
void stop();
private:
/// Handle completion of an asynchronous accept operation.
void handle_accept(const boost::system::error_code& e);
/// Handle a request to stop the server.
void handle_stop();
/// The pool of io_service objects used to perform asynchronous operations.
io_service_pool io_service_pool_;
/// The signal_set is used to register for process termination notifications.
boost::asio::signal_set signals_;
/// Acceptor used to listen for incoming connections.
boost::asio::ip::tcp::acceptor acceptor_;

View File

@@ -20,13 +20,13 @@ int main(int argc, char* argv[])
try
{
// Check command line arguments.
if (argc != 4)
if (argc != 5)
{
std::cerr << "Usage: http_server <address> <port> <doc_root>\n";
std::cerr << "Usage: http_server <address> <port> <threads> <doc_root>\n";
std::cerr << " For IPv4, try:\n";
std::cerr << " receiver 0.0.0.0 80 .\n";
std::cerr << " receiver 0.0.0.0 80 1 .\n";
std::cerr << " For IPv6, try:\n";
std::cerr << " receiver 0::0 80 .\n";
std::cerr << " receiver 0::0 80 1 .\n";
return 1;
}

View File

@@ -20,10 +20,21 @@ namespace server3 {
server::server(const std::string& address, const std::string& port,
const std::string& doc_root, std::size_t thread_pool_size)
: thread_pool_size_(thread_pool_size),
signals_(io_service_),
acceptor_(io_service_),
new_connection_(new connection(io_service_, request_handler_)),
request_handler_(doc_root)
{
// 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)
signals_.async_wait(boost::bind(&server::handle_stop, this));
// Open the acceptor with the option to reuse the address (i.e. SO_REUSEADDR).
boost::asio::ip::tcp::resolver resolver(io_service_);
boost::asio::ip::tcp::resolver::query query(address, port);
@@ -53,11 +64,6 @@ void server::run()
threads[i]->join();
}
void server::stop()
{
io_service_.stop();
}
void server::handle_accept(const boost::system::error_code& e)
{
if (!e)
@@ -70,5 +76,10 @@ void server::handle_accept(const boost::system::error_code& e)
}
}
void server::handle_stop()
{
io_service_.stop();
}
} // namespace server3
} // namespace http

View File

@@ -35,19 +35,22 @@ public:
/// Run the server's io_service loop.
void run();
/// Stop the server.
void stop();
private:
/// Handle completion of an asynchronous accept operation.
void handle_accept(const boost::system::error_code& e);
/// Handle a request to stop the server.
void handle_stop();
/// The number of threads that will call io_service::run().
std::size_t thread_pool_size_;
/// The io_service used to perform asynchronous operations.
boost::asio::io_service io_service_;
/// The signal_set is used to register for process termination notifications.
boost::asio::signal_set signals_;
/// Acceptor used to listen for incoming connections.
boost::asio::ip::tcp::acceptor acceptor_;