i2pd/HTTPServer.h

99 lines
2.0 KiB
C
Raw Normal View History

2013-12-10 17:03:22 +04:00
#ifndef HTTP_SERVER_H__
#define HTTP_SERVER_H__
#include <sstream>
#include <thread>
#include <boost/asio.hpp>
#include <boost/array.hpp>
2014-03-27 23:42:23 +04:00
#include "Streaming.h"
2013-12-10 17:03:22 +04:00
namespace i2p
{
namespace util
{
class HTTPConnection
{
struct header
{
std::string name;
std::string value;
};
struct request
{
std::string method;
std::string uri;
int http_version_major;
int http_version_minor;
std::vector<header> headers;
};
struct reply
{
std::vector<header> headers;
std::string content;
std::vector<boost::asio::const_buffer> to_buffers();
};
public:
2014-03-27 23:42:23 +04:00
HTTPConnection (boost::asio::ip::tcp::socket * socket): m_Socket (socket), m_Stream (nullptr) { Receive (); };
2013-12-10 17:03:22 +04:00
~HTTPConnection () { delete m_Socket; }
private:
void Terminate ();
void Receive ();
2014-03-26 23:45:08 +04:00
void HandleReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
2014-03-27 23:42:23 +04:00
void AsyncStreamReceive ();
2014-03-26 23:45:08 +04:00
void HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
2014-03-27 23:42:23 +04:00
void HandleWriteReply(const boost::system::error_code& ecode);
void HandleWrite (const boost::system::error_code& ecode);
2014-03-27 21:24:23 +04:00
void SendReply (const std::string& content);
2013-12-10 17:03:22 +04:00
void HandleRequest ();
2014-03-17 05:18:23 +04:00
void HandleDestinationRequest (const std::string& address, const std::string& uri);
2013-12-10 17:03:22 +04:00
void FillContent (std::stringstream& s);
2014-01-15 04:56:34 +04:00
std::string ExtractAddress ();
2013-12-10 17:03:22 +04:00
private:
boost::asio::ip::tcp::socket * m_Socket;
2014-03-27 23:42:23 +04:00
i2p::stream::Stream * m_Stream;
char m_Buffer[8192], m_StreamBuffer[8192];
2013-12-10 17:03:22 +04:00
request m_Request;
reply m_Reply;
};
class HTTPServer
{
public:
HTTPServer (int port);
~HTTPServer ();
void Start ();
void Stop ();
private:
void Run ();
void Accept ();
void HandleAccept(const boost::system::error_code& ecode);
private:
std::thread * m_Thread;
boost::asio::io_service m_Service;
boost::asio::io_service::work m_Work;
boost::asio::ip::tcp::acceptor m_Acceptor;
boost::asio::ip::tcp::socket * m_NewSocket;
};
}
}
#endif