2013-09-27 13:34:46 -04:00
|
|
|
|
|
|
|
// HTTPConnection.h
|
|
|
|
|
|
|
|
// Declares the cHTTPConnection class representing a single persistent connection in the HTTP server.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-24 04:11:34 -05:00
|
|
|
#include "../OSSupport/Network.h"
|
2013-09-27 13:34:46 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// fwd:
|
|
|
|
class cHTTPServer;
|
|
|
|
class cHTTPResponse;
|
|
|
|
class cHTTPRequest;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cHTTPConnection :
|
2015-01-24 04:11:34 -05:00
|
|
|
public cTCPLink::cCallbacks
|
2013-09-27 13:34:46 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum eState
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
wcsRecvHeaders, ///< Receiving request headers (m_CurrentRequest is created if nullptr)
|
2013-09-27 13:34:46 -04:00
|
|
|
wcsRecvBody, ///< Receiving request body (m_CurrentRequest is valid)
|
2014-10-20 16:55:07 -04:00
|
|
|
wcsRecvIdle, ///< Has received the entire body, waiting to send the response (m_CurrentRequest == nullptr)
|
|
|
|
wcsSendingResp, ///< Sending response body (m_CurrentRequest == nullptr)
|
2013-09-27 13:34:46 -04:00
|
|
|
wcsInvalid, ///< The request was malformed, the connection is closing
|
|
|
|
} ;
|
|
|
|
|
|
|
|
cHTTPConnection(cHTTPServer & a_HTTPServer);
|
2013-12-20 10:20:54 -05:00
|
|
|
virtual ~cHTTPConnection();
|
2013-09-27 13:34:46 -04:00
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Sends HTTP status code together with a_Reason (used for HTTP errors) */
|
2013-09-27 13:34:46 -04:00
|
|
|
void SendStatusAndReason(int a_StatusCode, const AString & a_Reason);
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Sends the "401 unauthorized" reply together with instructions on authorizing, using the specified realm */
|
2013-10-04 14:28:30 -04:00
|
|
|
void SendNeedAuth(const AString & a_Realm);
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Sends the headers contained in a_Response */
|
2013-09-27 13:34:46 -04:00
|
|
|
void Send(const cHTTPResponse & a_Response);
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Sends the data as the response (may be called multiple times) */
|
2014-04-01 10:36:00 -04:00
|
|
|
void Send(const void * a_Data, size_t a_Size);
|
2013-09-27 13:34:46 -04:00
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Sends the data as the response (may be called multiple times) */
|
2013-09-27 13:34:46 -04:00
|
|
|
void Send(const AString & a_Data) { Send(a_Data.data(), a_Data.size()); }
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Indicates that the current response is finished, gets ready for receiving another request (HTTP 1.1 keepalive) */
|
2013-09-27 13:34:46 -04:00
|
|
|
void FinishResponse(void);
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Resets the internal connection state for a new request.
|
|
|
|
Depending on the state, this will send an "InternalServerError" status or a "ResponseEnd" */
|
2013-09-27 15:28:41 -04:00
|
|
|
void AwaitNextRequest(void);
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Terminates the connection; finishes any request being currently processed */
|
2013-10-06 10:40:28 -04:00
|
|
|
void Terminate(void);
|
|
|
|
|
2013-09-27 13:34:46 -04:00
|
|
|
protected:
|
|
|
|
typedef std::map<AString, AString> cNameValueMap;
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** The parent webserver that is to be notified of events on this connection */
|
2013-09-27 13:34:46 -04:00
|
|
|
cHTTPServer & m_HTTPServer;
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** All the incoming data until the entire request header is parsed */
|
2013-09-27 13:34:46 -04:00
|
|
|
AString m_IncomingHeaderData;
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Status in which the request currently is */
|
2013-09-27 13:34:46 -04:00
|
|
|
eState m_State;
|
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** The request being currently received
|
|
|
|
Valid only between having parsed the headers and finishing receiving the body. */
|
2013-09-27 13:34:46 -04:00
|
|
|
cHTTPRequest * m_CurrentRequest;
|
2013-09-27 14:33:18 -04:00
|
|
|
|
2014-01-18 14:20:56 -05:00
|
|
|
/** Number of bytes that remain to read for the complete body of the message to be received.
|
|
|
|
Valid only in wcsRecvBody */
|
2014-04-01 10:36:00 -04:00
|
|
|
size_t m_CurrentRequestBodyRemaining;
|
2015-01-24 04:11:34 -05:00
|
|
|
|
|
|
|
/** The network link attached to this connection. */
|
|
|
|
cTCPLinkPtr m_Link;
|
2013-09-27 13:34:46 -04:00
|
|
|
|
|
|
|
|
2015-01-24 04:11:34 -05:00
|
|
|
// cTCPLink::cCallbacks overrides:
|
|
|
|
/** The link instance has been created, remember it. */
|
|
|
|
virtual void OnLinkCreated(cTCPLinkPtr a_Link) override;
|
|
|
|
|
|
|
|
/** Data is received from the client. */
|
|
|
|
virtual void OnReceivedData(const char * a_Data, size_t a_Size) override;
|
2014-05-01 09:08:15 -04:00
|
|
|
|
2015-01-24 04:11:34 -05:00
|
|
|
/** The socket has been closed for any reason. */
|
|
|
|
virtual void OnRemoteClosed(void) override;
|
2014-05-01 09:08:15 -04:00
|
|
|
|
2015-01-24 04:11:34 -05:00
|
|
|
/** An error has occurred on the socket. */
|
|
|
|
virtual void OnError(int a_ErrorCode, const AString & a_ErrorMsg) override;
|
|
|
|
|
|
|
|
// Overridable:
|
|
|
|
/** Called to send raw data over the link. Descendants may provide data transformations (SSL etc.) */
|
|
|
|
virtual void SendData(const void * a_Data, size_t a_Size);
|
|
|
|
|
|
|
|
/** Sends the raw data over the link.
|
|
|
|
Descendants may provide data transformations (SSL etc.) via the overridable SendData() function. */
|
|
|
|
void SendData(const AString & a_Data)
|
|
|
|
{
|
|
|
|
SendData(a_Data.data(), a_Data.size());
|
|
|
|
}
|
2013-09-27 13:34:46 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
typedef std::vector<cHTTPConnection *> cHTTPConnections;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|