2014-03-31 16:51:50 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "http_connection.h"
|
|
|
|
|
|
|
|
// TEST
|
|
|
|
#include <iostream>
|
|
|
|
|
2014-04-26 17:19:59 +00:00
|
|
|
namespace crow
|
2014-03-31 16:51:50 +00:00
|
|
|
{
|
|
|
|
using namespace boost;
|
|
|
|
using tcp = asio::ip::tcp;
|
|
|
|
template <typename Handler>
|
|
|
|
class Server
|
|
|
|
{
|
|
|
|
public:
|
2014-04-17 06:50:28 +00:00
|
|
|
Server(Handler* handler, uint16_t port, uint16_t concurrency = 1)
|
|
|
|
: acceptor_(io_service_, tcp::endpoint(asio::ip::address(), port)), socket_(io_service_), handler_(handler), concurrency_(concurrency)
|
2014-03-31 16:51:50 +00:00
|
|
|
{
|
|
|
|
do_accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void run()
|
|
|
|
{
|
2014-04-17 06:50:28 +00:00
|
|
|
std::vector<std::future<void>> v;
|
|
|
|
for(uint16_t i = 0; i < concurrency_; i ++)
|
|
|
|
v.push_back(
|
|
|
|
std::async(std::launch::async, [this]{io_service_.run();})
|
|
|
|
);
|
2014-03-31 16:51:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-15 13:08:23 +00:00
|
|
|
void stop()
|
|
|
|
{
|
|
|
|
io_service_.stop();
|
|
|
|
}
|
|
|
|
|
2014-03-31 16:51:50 +00:00
|
|
|
private:
|
|
|
|
void do_accept()
|
|
|
|
{
|
|
|
|
acceptor_.async_accept(socket_,
|
|
|
|
[this](boost::system::error_code ec)
|
|
|
|
{
|
|
|
|
if (!ec)
|
2014-04-17 06:50:28 +00:00
|
|
|
(new Connection<Handler>(std::move(socket_), handler_, server_name_))->start();
|
2014-03-31 16:51:50 +00:00
|
|
|
do_accept();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
asio::io_service io_service_;
|
|
|
|
tcp::acceptor acceptor_;
|
|
|
|
tcp::socket socket_;
|
|
|
|
Handler* handler_;
|
2014-04-17 06:50:28 +00:00
|
|
|
uint16_t concurrency_ = 1;
|
|
|
|
std::string server_name_ = "Flask++/0.1";
|
2014-03-31 16:51:50 +00:00
|
|
|
};
|
|
|
|
}
|