2012-06-05 18:26:04 +02:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
2012-06-05 18:26:04 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "shrpx_thread_event_receiver.h"
|
|
|
|
|
2012-06-08 14:40:03 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
#include "shrpx_ssl.h"
|
|
|
|
#include "shrpx_log.h"
|
|
|
|
#include "shrpx_client_handler.h"
|
2012-11-20 17:29:39 +01:00
|
|
|
#include "shrpx_spdy_session.h"
|
2012-06-05 18:26:04 +02:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
ThreadEventReceiver::ThreadEventReceiver(SSL_CTX *ssl_ctx, SpdySession *spdy)
|
|
|
|
: ssl_ctx_(ssl_ctx),
|
|
|
|
spdy_(spdy)
|
2012-06-05 18:26:04 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
ThreadEventReceiver::~ThreadEventReceiver()
|
|
|
|
{}
|
|
|
|
|
|
|
|
void ThreadEventReceiver::on_read(bufferevent *bev)
|
|
|
|
{
|
|
|
|
evbuffer *input = bufferevent_get_input(bev);
|
|
|
|
while(evbuffer_get_length(input) >= sizeof(WorkerEvent)) {
|
|
|
|
WorkerEvent wev;
|
2013-01-25 14:00:33 +01:00
|
|
|
int nread = evbuffer_remove(input, &wev, sizeof(wev));
|
|
|
|
if(nread != sizeof(wev)) {
|
|
|
|
TLOG(FATAL, this) << "evbuffer_remove() removed fewer bytes. Expected:"
|
|
|
|
<< sizeof(wev) << " Actual:" << nread;
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
TLOG(INFO, this) << "WorkerEvent: client_fd=" << wev.client_fd
|
|
|
|
<< ", addrlen=" << wev.client_addrlen;
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
|
|
|
event_base *evbase = bufferevent_get_base(bev);
|
|
|
|
ClientHandler *client_handler;
|
2013-02-07 13:13:36 +01:00
|
|
|
client_handler = ssl::accept_connection(evbase, ssl_ctx_,
|
|
|
|
wev.client_fd,
|
|
|
|
&wev.client_addr.sa,
|
|
|
|
wev.client_addrlen);
|
2012-06-05 18:26:04 +02:00
|
|
|
if(client_handler) {
|
2012-11-20 17:29:39 +01:00
|
|
|
client_handler->set_spdy_session(spdy_);
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
TLOG(INFO, this) << "CLIENT_HANDLER:" << client_handler << " created";
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
|
|
|
} else {
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
TLOG(ERROR, this) << "ClientHandler creation failed";
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
|
|
|
close(wev.client_fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace shrpx
|