shrpx_http_downstream_connection.cc: Code cleanup

This commit is contained in:
Tatsuhiro Tsujikawa 2013-09-24 21:42:50 +09:00
parent 2572fb6fb4
commit 57f5730756
1 changed files with 22 additions and 30 deletions

View File

@ -46,8 +46,8 @@ timeval max_timeout = { 86400, 0 };
HttpDownstreamConnection::HttpDownstreamConnection HttpDownstreamConnection::HttpDownstreamConnection
(ClientHandler *client_handler) (ClientHandler *client_handler)
: DownstreamConnection(client_handler), : DownstreamConnection(client_handler),
bev_(0), bev_(nullptr),
ioctrl_(0) ioctrl_(nullptr)
{} {}
HttpDownstreamConnection::~HttpDownstreamConnection() HttpDownstreamConnection::~HttpDownstreamConnection()
@ -59,7 +59,7 @@ HttpDownstreamConnection::~HttpDownstreamConnection()
// Downstream and DownstreamConnection may be deleted // Downstream and DownstreamConnection may be deleted
// asynchronously. // asynchronously.
if(downstream_) { if(downstream_) {
downstream_->set_downstream_connection(0); downstream_->set_downstream_connection(nullptr);
} }
} }
@ -68,9 +68,9 @@ int HttpDownstreamConnection::attach_downstream(Downstream *downstream)
if(LOG_ENABLED(INFO)) { if(LOG_ENABLED(INFO)) {
DCLOG(INFO, this) << "Attaching to DOWNSTREAM:" << downstream; DCLOG(INFO, this) << "Attaching to DOWNSTREAM:" << downstream;
} }
Upstream *upstream = downstream->get_upstream(); auto upstream = downstream->get_upstream();
if(!bev_) { if(!bev_) {
event_base *evbase = client_handler_->get_evbase(); auto evbase = client_handler_->get_evbase();
bev_ = bufferevent_socket_new bev_ = bufferevent_socket_new
(evbase, -1, (evbase, -1,
BEV_OPT_CLOSE_ON_FREE | BEV_OPT_DEFER_CALLBACKS); BEV_OPT_CLOSE_ON_FREE | BEV_OPT_DEFER_CALLBACKS);
@ -190,7 +190,7 @@ int HttpDownstreamConnection::push_request_headers()
DCLOG(INFO, this) << "HTTP request headers. stream_id=" DCLOG(INFO, this) << "HTTP request headers. stream_id="
<< downstream_->get_stream_id() << "\n" << hdrp; << downstream_->get_stream_id() << "\n" << hdrp;
} }
evbuffer *output = bufferevent_get_output(bev_); auto output = bufferevent_get_output(bev_);
int rv; int rv;
rv = evbuffer_add(output, hdrs.c_str(), hdrs.size()); rv = evbuffer_add(output, hdrs.c_str(), hdrs.size());
if(rv != 0) { if(rv != 0) {
@ -216,7 +216,7 @@ int HttpDownstreamConnection::push_upload_data_chunk
ssize_t res = 0; ssize_t res = 0;
int rv; int rv;
int chunked = downstream_->get_chunked_request(); int chunked = downstream_->get_chunked_request();
evbuffer *output = bufferevent_get_output(bev_); auto output = bufferevent_get_output(bev_);
if(chunked) { if(chunked) {
char chunk_size_hex[16]; char chunk_size_hex[16];
rv = snprintf(chunk_size_hex, sizeof(chunk_size_hex), "%X\r\n", rv = snprintf(chunk_size_hex, sizeof(chunk_size_hex), "%X\r\n",
@ -248,7 +248,7 @@ int HttpDownstreamConnection::push_upload_data_chunk
int HttpDownstreamConnection::end_upload_data() int HttpDownstreamConnection::end_upload_data()
{ {
if(downstream_->get_chunked_request()) { if(downstream_->get_chunked_request()) {
evbuffer *output = bufferevent_get_output(bev_); auto output = bufferevent_get_output(bev_);
if(evbuffer_add(output, "0\r\n\r\n", 5) != 0) { if(evbuffer_add(output, "0\r\n\r\n", 5) != 0) {
DCLOG(FATAL, this) << "evbuffer_add() failed"; DCLOG(FATAL, this) << "evbuffer_add() failed";
return -1; return -1;
@ -261,8 +261,7 @@ namespace {
// Gets called when DownstreamConnection is pooled in ClientHandler. // Gets called when DownstreamConnection is pooled in ClientHandler.
void idle_eventcb(bufferevent *bev, short events, void *arg) void idle_eventcb(bufferevent *bev, short events, void *arg)
{ {
HttpDownstreamConnection *dconn; auto dconn = reinterpret_cast<HttpDownstreamConnection*>(arg);
dconn = reinterpret_cast<HttpDownstreamConnection*>(arg);
if(events & BEV_EVENT_CONNECTED) { if(events & BEV_EVENT_CONNECTED) {
// Downstream was detached before connection established? // Downstream was detached before connection established?
// This may be safe to be left. // This may be safe to be left.
@ -284,7 +283,7 @@ void idle_eventcb(bufferevent *bev, short events, void *arg)
DCLOG(INFO, dconn) << "Idle connection network error"; DCLOG(INFO, dconn) << "Idle connection network error";
} }
} }
ClientHandler *client_handler = dconn->get_client_handler(); auto client_handler = dconn->get_client_handler();
client_handler->remove_downstream_connection(dconn); client_handler->remove_downstream_connection(dconn);
delete dconn; delete dconn;
} }
@ -330,15 +329,14 @@ void HttpDownstreamConnection::force_resume_read()
bool HttpDownstreamConnection::get_output_buffer_full() bool HttpDownstreamConnection::get_output_buffer_full()
{ {
evbuffer *output = bufferevent_get_output(bev_); auto output = bufferevent_get_output(bev_);
return evbuffer_get_length(output) >= Downstream::OUTPUT_UPPER_THRES; return evbuffer_get_length(output) >= Downstream::OUTPUT_UPPER_THRES;
} }
namespace { namespace {
int htp_hdrs_completecb(http_parser *htp) int htp_hdrs_completecb(http_parser *htp)
{ {
Downstream *downstream; auto downstream = reinterpret_cast<Downstream*>(htp->data);
downstream = reinterpret_cast<Downstream*>(htp->data);
downstream->set_response_http_status(htp->status_code); downstream->set_response_http_status(htp->status_code);
downstream->set_response_major(htp->http_major); downstream->set_response_major(htp->http_major);
downstream->set_response_minor(htp->http_minor); downstream->set_response_minor(htp->http_minor);
@ -382,8 +380,7 @@ int htp_hdrs_completecb(http_parser *htp)
namespace { namespace {
int htp_hdr_keycb(http_parser *htp, const char *data, size_t len) int htp_hdr_keycb(http_parser *htp, const char *data, size_t len)
{ {
Downstream *downstream; auto downstream = reinterpret_cast<Downstream*>(htp->data);
downstream = reinterpret_cast<Downstream*>(htp->data);
if(downstream->get_response_header_key_prev()) { if(downstream->get_response_header_key_prev()) {
downstream->append_last_response_header_key(data, len); downstream->append_last_response_header_key(data, len);
} else { } else {
@ -396,8 +393,7 @@ int htp_hdr_keycb(http_parser *htp, const char *data, size_t len)
namespace { namespace {
int htp_hdr_valcb(http_parser *htp, const char *data, size_t len) int htp_hdr_valcb(http_parser *htp, const char *data, size_t len)
{ {
Downstream *downstream; auto downstream = reinterpret_cast<Downstream*>(htp->data);
downstream = reinterpret_cast<Downstream*>(htp->data);
if(downstream->get_response_header_key_prev()) { if(downstream->get_response_header_key_prev()) {
downstream->set_last_response_header_value(std::string(data, len)); downstream->set_last_response_header_value(std::string(data, len));
} else { } else {
@ -410,9 +406,7 @@ int htp_hdr_valcb(http_parser *htp, const char *data, size_t len)
namespace { namespace {
int htp_bodycb(http_parser *htp, const char *data, size_t len) int htp_bodycb(http_parser *htp, const char *data, size_t len)
{ {
Downstream *downstream; auto downstream = reinterpret_cast<Downstream*>(htp->data);
downstream = reinterpret_cast<Downstream*>(htp->data);
return downstream->get_upstream()->on_downstream_body return downstream->get_upstream()->on_downstream_body
(downstream, reinterpret_cast<const uint8_t*>(data), len); (downstream, reinterpret_cast<const uint8_t*>(data), len);
} }
@ -421,9 +415,7 @@ int htp_bodycb(http_parser *htp, const char *data, size_t len)
namespace { namespace {
int htp_msg_completecb(http_parser *htp) int htp_msg_completecb(http_parser *htp)
{ {
Downstream *downstream; auto downstream = reinterpret_cast<Downstream*>(htp->data);
downstream = reinterpret_cast<Downstream*>(htp->data);
downstream->set_response_state(Downstream::MSG_COMPLETE); downstream->set_response_state(Downstream::MSG_COMPLETE);
return downstream->get_upstream()->on_downstream_body_complete(downstream); return downstream->get_upstream()->on_downstream_body_complete(downstream);
} }
@ -431,9 +423,9 @@ int htp_msg_completecb(http_parser *htp)
namespace { namespace {
http_parser_settings htp_hooks = { http_parser_settings htp_hooks = {
0, /*http_cb on_message_begin;*/ nullptr, /*http_cb on_message_begin;*/
0, /*http_data_cb on_url;*/ nullptr, /*http_data_cb on_url;*/
0, /*http_cb on_status_complete */ nullptr, /*http_cb on_status_complete */
htp_hdr_keycb, /*http_data_cb on_header_field;*/ htp_hdr_keycb, /*http_data_cb on_header_field;*/
htp_hdr_valcb, /*http_data_cb on_header_value;*/ htp_hdr_valcb, /*http_data_cb on_header_value;*/
htp_hdrs_completecb, /*http_cb on_headers_complete;*/ htp_hdrs_completecb, /*http_cb on_headers_complete;*/
@ -444,9 +436,9 @@ http_parser_settings htp_hooks = {
int HttpDownstreamConnection::on_read() int HttpDownstreamConnection::on_read()
{ {
evbuffer *input = bufferevent_get_input(bev_); auto input = bufferevent_get_input(bev_);
size_t inputlen = evbuffer_get_length(input); size_t inputlen = evbuffer_get_length(input);
unsigned char *mem = evbuffer_pullup(input, -1); auto mem = evbuffer_pullup(input, -1);
if(downstream_->get_upgraded()) { if(downstream_->get_upgraded()) {
// For upgraded connection, just pass data to the upstream. // For upgraded connection, just pass data to the upstream.
int rv; int rv;
@ -460,7 +452,7 @@ int HttpDownstreamConnection::on_read()
inputlen); inputlen);
evbuffer_drain(input, nread); evbuffer_drain(input, nread);
http_errno htperr = HTTP_PARSER_ERRNO(&response_htp_); auto htperr = HTTP_PARSER_ERRNO(&response_htp_);
if(htperr == HPE_OK) { if(htperr == HPE_OK) {
return 0; return 0;
} else { } else {