Crow/http_connection.h

243 lines
8.0 KiB
C
Raw Normal View History

#pragma once
#include <boost/asio.hpp>
#include <http_parser.h>
2014-04-01 12:25:16 +00:00
#include <boost/asio.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/array.hpp>
2014-04-17 06:50:28 +00:00
#include <boost/lexical_cast.hpp>
#include <atomic>
#include <chrono>
2014-04-01 12:25:16 +00:00
#include "datetime.h"
#include "parser.h"
2014-04-01 12:25:16 +00:00
#include "http_response.h"
2014-04-26 17:19:59 +00:00
namespace crow
{
using namespace boost;
using tcp = asio::ip::tcp;
template <typename Handler>
class Connection
{
public:
Connection(tcp::socket&& socket, Handler* handler, const std::string& server_name)
: socket_(std::move(socket)),
handler_(handler),
parser_(this),
server_name_(server_name)
{
}
void start()
{
do_read();
}
2014-04-01 12:25:16 +00:00
void handle()
{
2014-04-17 09:18:02 +00:00
static std::unordered_map<int, std::string> statusCodes = {
{200, "HTTP/1.1 200 OK\r\n"},
{201, "HTTP/1.1 201 Created\r\n"},
{202, "HTTP/1.1 202 Accepted\r\n"},
{204, "HTTP/1.1 204 No Content\r\n"},
{300, "HTTP/1.1 300 Multiple Choices\r\n"},
{301, "HTTP/1.1 301 Moved Permanently\r\n"},
{302, "HTTP/1.1 302 Moved Temporarily\r\n"},
{304, "HTTP/1.1 304 Not Modified\r\n"},
{400, "HTTP/1.1 400 Bad Request\r\n"},
{401, "HTTP/1.1 401 Unauthorized\r\n"},
{403, "HTTP/1.1 403 Forbidden\r\n"},
{404, "HTTP/1.1 404 Not Found\r\n"},
{500, "HTTP/1.1 500 Internal Server Error\r\n"},
{501, "HTTP/1.1 501 Not Implemented\r\n"},
{502, "HTTP/1.1 502 Bad Gateway\r\n"},
{503, "HTTP/1.1 503 Service Unavailable\r\n"},
};
2014-04-01 13:58:52 +00:00
request req = parser_.to_request();
if (parser_.http_major == 1 && parser_.http_minor == 0)
{
// HTTP/1.0
if (!(req.headers.count("connection") && boost::iequals(req.headers["connection"],"Keep-Alive")))
close_connection_ = true;
}
else
{
// HTTP/1.1
if (req.headers.count("connection") && req.headers["connection"] == "close")
close_connection_ = true;
}
2014-04-01 13:58:52 +00:00
res = handler_->handle(req);
2014-04-01 12:25:16 +00:00
2014-04-26 17:19:59 +00:00
#ifdef CROW_ENABLE_LOGGING
std::cerr << "HTTP/" << parser_.http_major << "." << parser_.http_minor << ' ';
std::cerr << method_name(req.method);
std::cerr << " " << res.code << ' ' <<close_connection_<<std::endl;
#endif
2014-04-01 12:25:16 +00:00
static std::string seperator = ": ";
static std::string crlf = "\r\n";
2014-04-17 06:50:28 +00:00
buffers_.clear();
buffers_.reserve(4*(res.headers.size()+4)+3);
2014-04-01 12:25:16 +00:00
if (res.body.empty() && res.json_value.t() == json::type::Object)
2014-04-17 14:06:41 +00:00
{
2014-04-18 22:12:56 +00:00
res.body = json::dump(res.json_value);
2014-04-17 14:06:41 +00:00
}
2014-04-17 06:50:28 +00:00
if (!statusCodes.count(res.code))
res.code = 500;
{
auto& status = statusCodes.find(res.code)->second;
buffers_.emplace_back(status.data(), status.size());
}
2014-04-17 09:18:02 +00:00
if (res.code >= 400 && res.body.empty())
res.body = statusCodes[res.code].substr(9);
2014-04-01 12:25:16 +00:00
bool has_content_length = false;
2014-04-17 06:50:28 +00:00
bool has_date = false;
bool has_server = false;
2014-04-01 12:25:16 +00:00
for(auto& kv : res.headers)
{
2014-04-17 06:50:28 +00:00
buffers_.emplace_back(kv.first.data(), kv.first.size());
buffers_.emplace_back(seperator.data(), seperator.size());
buffers_.emplace_back(kv.second.data(), kv.second.size());
buffers_.emplace_back(crlf.data(), crlf.size());
2014-04-01 12:25:16 +00:00
if (boost::iequals(kv.first, "content-length"))
has_content_length = true;
2014-04-17 06:50:28 +00:00
if (boost::iequals(kv.first, "date"))
has_date = true;
if (boost::iequals(kv.first, "server"))
has_server = true;
2014-04-01 12:25:16 +00:00
}
if (!has_content_length)
2014-04-17 06:50:28 +00:00
{
content_length_ = boost::lexical_cast<std::string>(res.body.size());
static std::string content_length_tag = "Content-Length: ";
buffers_.emplace_back(content_length_tag.data(), content_length_tag.size());
buffers_.emplace_back(content_length_.data(), content_length_.size());
2014-04-17 06:50:28 +00:00
buffers_.emplace_back(crlf.data(), crlf.size());
}
if (!has_server)
{
static std::string server_tag = "Server: ";
buffers_.emplace_back(server_tag.data(), server_tag.size());
buffers_.emplace_back(server_name_.data(), server_name_.size());
2014-04-17 06:50:28 +00:00
buffers_.emplace_back(crlf.data(), crlf.size());
}
if (!has_date)
{
static std::string date_tag = "Date: ";
date_str_ = get_cached_date_str();
buffers_.emplace_back(date_tag.data(), date_tag.size());
buffers_.emplace_back(date_str_.data(), date_str_.size());
2014-04-18 22:27:05 +00:00
buffers_.emplace_back(crlf.data(), crlf.size());
2014-04-17 06:50:28 +00:00
}
2014-04-01 12:25:16 +00:00
2014-04-17 06:50:28 +00:00
buffers_.emplace_back(crlf.data(), crlf.size());
buffers_.emplace_back(res.body.data(), res.body.size());
2014-04-01 12:25:16 +00:00
2014-04-17 06:50:28 +00:00
do_write();
2014-04-01 12:25:16 +00:00
}
private:
static std::string get_cached_date_str()
{
using namespace std::chrono;
thread_local auto last = system_clock::now();
thread_local std::string date_str = DateTime().str();
if (system_clock::now() - last >= seconds(1))
{
last = system_clock::now();
date_str = DateTime().str();
}
return date_str;
}
void do_read()
{
2014-04-01 12:25:16 +00:00
life_++;
socket_.async_read_some(boost::asio::buffer(buffer_),
[this](boost::system::error_code ec, std::size_t bytes_transferred)
{
bool do_complete_task = false;
if (!ec)
{
2014-04-01 12:25:16 +00:00
bool ret = parser_.feed(buffer_.data(), bytes_transferred);
2014-04-17 09:18:02 +00:00
if (ret)
do_read();
else
do_complete_task = true;
2014-04-01 12:25:16 +00:00
}
else
do_complete_task = true;
if (do_complete_task)
2014-04-01 12:25:16 +00:00
{
2014-04-10 16:43:33 +00:00
parser_.done();
2014-04-01 12:25:16 +00:00
socket_.close();
life_--;
if ((int)life_ == 0)
delete this;
}
});
}
2014-04-17 06:50:28 +00:00
void do_write()
2014-04-01 12:25:16 +00:00
{
life_++;
2014-04-17 06:50:28 +00:00
boost::asio::async_write(socket_, buffers_,
2014-04-01 12:25:16 +00:00
[this](const boost::system::error_code& ec, std::size_t bytes_transferred)
{
bool should_close = false;
if (!ec)
{
if (close_connection_)
{
should_close = true;
}
}
else
{
2014-04-01 12:25:16 +00:00
should_close = true;
}
if (should_close)
{
socket_.close();
life_--;
if ((int)life_ == 0)
delete this;
}
});
}
private:
tcp::socket socket_;
Handler* handler_;
boost::array<char, 8192> buffer_;
2014-04-01 12:25:16 +00:00
HTTPParser<Connection> parser_;
response res;
int life_;
2014-04-01 12:25:16 +00:00
bool close_connection_ = false;
2014-04-17 06:50:28 +00:00
const std::string& server_name_;
std::vector<boost::asio::const_buffer> buffers_;
std::string content_length_;
std::string date_str_;
};
}