2014-04-01 13:58:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
2014-03-31 16:51:50 +00:00
|
|
|
#include <string>
|
2014-04-01 12:25:16 +00:00
|
|
|
#include <unordered_map>
|
2014-04-20 08:45:10 +00:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2014-04-01 12:25:16 +00:00
|
|
|
|
2014-04-01 13:58:52 +00:00
|
|
|
#include "http_request.h"
|
|
|
|
|
2014-03-31 16:51:50 +00:00
|
|
|
namespace flask
|
|
|
|
{
|
2014-04-01 12:25:16 +00:00
|
|
|
template <typename Handler>
|
2014-03-31 16:51:50 +00:00
|
|
|
struct HTTPParser : public http_parser
|
|
|
|
{
|
|
|
|
static int on_message_begin(http_parser* self_)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
self->clear();
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_url(http_parser* self_, const char* at, size_t length)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
self->url.insert(self->url.end(), at, at+length);
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_status(http_parser* self_, const char* at, size_t length)
|
|
|
|
{
|
2014-04-01 12:25:16 +00:00
|
|
|
// will not call while parsing request
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_header_field(http_parser* self_, const char* at, size_t length)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
switch (self->header_building_state)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (!self->header_value.empty())
|
|
|
|
{
|
2014-04-20 08:45:10 +00:00
|
|
|
boost::algorithm::to_lower(self->header_field);
|
2014-04-01 12:25:16 +00:00
|
|
|
self->headers.emplace(std::move(self->header_field), std::move(self->header_value));
|
|
|
|
}
|
|
|
|
self->header_field.assign(at, at+length);
|
|
|
|
self->header_building_state = 1;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
self->header_field.insert(self->header_value.end(), at, at+length);
|
|
|
|
break;
|
|
|
|
}
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_header_value(http_parser* self_, const char* at, size_t length)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
switch (self->header_building_state)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
self->header_value.insert(self->header_value.end(), at, at+length);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
self->header_building_state = 0;
|
|
|
|
self->header_value.assign(at, at+length);
|
|
|
|
break;
|
|
|
|
}
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_headers_complete(http_parser* self_)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
if (!self->header_field.empty())
|
|
|
|
{
|
2014-04-20 08:45:10 +00:00
|
|
|
boost::algorithm::to_lower(self->header_field);
|
2014-04-01 12:25:16 +00:00
|
|
|
self->headers.emplace(std::move(self->header_field), std::move(self->header_value));
|
|
|
|
}
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_body(http_parser* self_, const char* at, size_t length)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
self->body.insert(self->body.end(), at, at+length);
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int on_message_complete(http_parser* self_)
|
|
|
|
{
|
|
|
|
HTTPParser* self = static_cast<HTTPParser*>(self_);
|
2014-04-01 12:25:16 +00:00
|
|
|
self->process_message();
|
2014-03-31 16:51:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-04-01 12:25:16 +00:00
|
|
|
HTTPParser(Handler* handler) :
|
2014-03-31 16:51:50 +00:00
|
|
|
settings_ {
|
|
|
|
on_message_begin,
|
|
|
|
on_url,
|
|
|
|
on_status,
|
|
|
|
on_header_field,
|
|
|
|
on_header_value,
|
|
|
|
on_headers_complete,
|
|
|
|
on_body,
|
|
|
|
on_message_complete,
|
2014-04-10 16:43:33 +00:00
|
|
|
},
|
|
|
|
handler_(handler)
|
2014-03-31 16:51:50 +00:00
|
|
|
{
|
|
|
|
http_parser_init(this, HTTP_REQUEST);
|
|
|
|
}
|
|
|
|
|
2014-04-01 12:25:16 +00:00
|
|
|
bool feed(const char* buffer, int length)
|
2014-03-31 16:51:50 +00:00
|
|
|
{
|
|
|
|
int nparsed = http_parser_execute(this, &settings_, buffer, length);
|
2014-04-01 12:25:16 +00:00
|
|
|
return nparsed == length;
|
2014-03-31 16:51:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 12:25:16 +00:00
|
|
|
bool done()
|
2014-03-31 16:51:50 +00:00
|
|
|
{
|
|
|
|
int nparsed = http_parser_execute(this, &settings_, nullptr, 0);
|
2014-04-01 12:25:16 +00:00
|
|
|
return nparsed == 0;
|
2014-03-31 16:51:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 12:25:16 +00:00
|
|
|
void clear()
|
|
|
|
{
|
|
|
|
url.clear();
|
|
|
|
header_building_state = 0;
|
|
|
|
header_field.clear();
|
|
|
|
header_value.clear();
|
|
|
|
headers.clear();
|
|
|
|
body.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void process_message()
|
|
|
|
{
|
|
|
|
handler_->handle();
|
|
|
|
}
|
|
|
|
|
2014-04-01 13:58:52 +00:00
|
|
|
request to_request()
|
|
|
|
{
|
2014-04-20 08:45:10 +00:00
|
|
|
return request{(HTTPMethod)method, std::move(url), std::move(headers), std::move(body)};
|
2014-04-01 13:58:52 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 12:25:16 +00:00
|
|
|
std::string url;
|
|
|
|
int header_building_state = 0;
|
|
|
|
std::string header_field;
|
|
|
|
std::string header_value;
|
|
|
|
std::unordered_map<std::string, std::string> headers;
|
|
|
|
std::string body;
|
|
|
|
|
2014-03-31 16:51:50 +00:00
|
|
|
http_parser_settings settings_;
|
2014-04-01 12:25:16 +00:00
|
|
|
|
|
|
|
Handler* handler_;
|
2014-03-31 16:51:50 +00:00
|
|
|
};
|
|
|
|
}
|