i2pd/client/HTTPServer.h

83 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>
2014-11-23 19:33:58 +03:00
#include <memory>
2013-12-10 17:03:22 +04:00
#include <boost/asio.hpp>
#include <boost/array.hpp>
2015-09-07 13:31:57 +03:00
#include "i2pcontrol/I2PControl.h"
2015-09-06 21:34:50 +03:00
#include "util/HTTP.h"
2013-12-10 17:03:22 +04:00
2015-09-06 21:34:50 +03:00
namespace i2p {
namespace util {
2015-09-06 21:34:50 +03:00
const size_t HTTP_CONNECTION_BUFFER_SIZE = 8192;
const int HTTP_DESTINATION_REQUEST_TIMEOUT = 10; // in seconds
2015-09-06 21:34:50 +03:00
class HTTPConnection: public std::enable_shared_from_this<HTTPConnection> {
public:
2015-09-07 13:31:57 +03:00
HTTPConnection(boost::asio::ip::tcp::socket* socket,
std::shared_ptr<i2p::client::I2PControlSession> session);
2015-09-06 21:34:50 +03:00
~HTTPConnection() { delete m_Socket; }
void Receive();
private:
2015-09-06 21:34:50 +03:00
void Terminate();
void HandleReceive(const boost::system::error_code& ecode, std::size_t bytes_transferred);
void RunRequest();
void HandleWriteReply(const boost::system::error_code& ecode);
void SendReply();
2015-09-06 21:34:50 +03:00
void HandleRequest();
2015-09-07 13:31:57 +03:00
void HandleI2PControlRequest();
2015-09-06 21:34:50 +03:00
void ExtractParams(const std::string& str, std::map<std::string, std::string>& params);
bool isAllowed(const std::string& address);
private:
boost::asio::ip::tcp::socket* m_Socket;
boost::asio::deadline_timer m_Timer;
char m_Buffer[HTTP_CONNECTION_BUFFER_SIZE + 1];
size_t m_BufferLen;
util::http::Request m_Request;
util::http::Response m_Reply;
2015-09-07 13:31:57 +03:00
std::shared_ptr<i2p::client::I2PControlSession> m_Session;
2015-09-06 21:34:50 +03:00
};
class HTTPServer {
public:
HTTPServer(const std::string& address, int port);
virtual ~HTTPServer();
void Start();
void Stop();
private:
void Run();
void Accept();
void HandleAccept(const boost::system::error_code& ecode);
private:
2015-09-06 21:34:50 +03:00
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;
2015-09-07 13:31:57 +03:00
std::shared_ptr<i2p::client::I2PControlSession> m_Session;
2015-09-06 21:34:50 +03:00
protected:
2015-09-07 13:31:57 +03:00
void CreateConnection(boost::asio::ip::tcp::socket* m_NewSocket);
2015-09-06 21:34:50 +03:00
};
2013-12-10 17:03:22 +04:00
}
}
#endif