2013-12-10 13:03:22 +00:00
|
|
|
#ifndef HTTP_SERVER_H__
|
|
|
|
#define HTTP_SERVER_H__
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <thread>
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include <boost/array.hpp>
|
2014-03-27 19:42:23 +00:00
|
|
|
#include "Streaming.h"
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
|
|
|
class HTTPConnection
|
|
|
|
{
|
2014-03-29 22:16:23 +00:00
|
|
|
protected:
|
2014-03-30 12:40:53 +00:00
|
|
|
|
2014-03-29 22:16:23 +00:00
|
|
|
struct header
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
std::string value;
|
|
|
|
};
|
2013-12-10 13:03:22 +00:00
|
|
|
|
2014-03-29 22:16:23 +00:00
|
|
|
struct request
|
|
|
|
{
|
|
|
|
std::string method;
|
|
|
|
std::string uri;
|
|
|
|
std::string host;
|
|
|
|
int http_version_major;
|
|
|
|
int http_version_minor;
|
|
|
|
std::vector<header> headers;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reply
|
|
|
|
{
|
|
|
|
std::vector<header> headers;
|
|
|
|
std::string content;
|
|
|
|
|
2014-04-17 21:53:48 +00:00
|
|
|
std::vector<boost::asio::const_buffer> to_buffers (int status);
|
2014-03-29 22:16:23 +00:00
|
|
|
};
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-03-27 19:42:23 +00:00
|
|
|
HTTPConnection (boost::asio::ip::tcp::socket * socket): m_Socket (socket), m_Stream (nullptr) { Receive (); };
|
2014-03-29 22:16:23 +00:00
|
|
|
virtual ~HTTPConnection() { delete m_Socket; }
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void Terminate ();
|
|
|
|
void Receive ();
|
2014-03-26 19:45:08 +00:00
|
|
|
void HandleReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2014-03-27 19:42:23 +00:00
|
|
|
void AsyncStreamReceive ();
|
2014-03-26 19:45:08 +00:00
|
|
|
void HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2014-03-27 19:42:23 +00:00
|
|
|
void HandleWriteReply(const boost::system::error_code& ecode);
|
|
|
|
void HandleWrite (const boost::system::error_code& ecode);
|
2014-04-17 21:53:48 +00:00
|
|
|
void SendReply (const std::string& content, int status = 200);
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
void HandleRequest ();
|
|
|
|
void FillContent (std::stringstream& s);
|
2014-01-15 00:56:34 +00:00
|
|
|
std::string ExtractAddress ();
|
|
|
|
|
2014-03-29 22:16:23 +00:00
|
|
|
protected:
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
boost::asio::ip::tcp::socket * m_Socket;
|
2014-03-27 19:42:23 +00:00
|
|
|
i2p::stream::Stream * m_Stream;
|
|
|
|
char m_Buffer[8192], m_StreamBuffer[8192];
|
2013-12-10 13:03:22 +00:00
|
|
|
request m_Request;
|
|
|
|
reply m_Reply;
|
2014-03-29 22:16:23 +00:00
|
|
|
|
|
|
|
protected:
|
2014-03-30 12:40:53 +00:00
|
|
|
|
2014-03-29 22:16:23 +00:00
|
|
|
virtual void HandleDestinationRequest(const std::string& address, const std::string& uri);
|
|
|
|
virtual void RunRequest ();
|
2014-03-30 12:40:53 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
static const std::string itoopieImage;
|
2013-12-10 13:03:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class HTTPServer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
HTTPServer (int port);
|
2014-03-29 22:16:23 +00:00
|
|
|
virtual ~HTTPServer ();
|
2013-12-10 13:03:22 +00:00
|
|
|
|
|
|
|
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;
|
2014-03-29 22:16:23 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void CreateConnection(boost::asio::ip::tcp::socket * m_NewSocket);
|
2013-12-10 13:03:22 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|