109 lines
2.1 KiB
C++
109 lines
2.1 KiB
C++
#ifndef Http_Request_H_
|
|
#define Http_Request_H_
|
|
|
|
class Http_Request;
|
|
extern std::set< Http_Request * > Global_WebRequests_pendingNotify;
|
|
|
|
class Http_Request : public HttpConnection
|
|
{
|
|
public:
|
|
Http_Request(SOCKET sck,Socket_Address &inaddr) : HttpConnection(sck,inaddr)
|
|
{
|
|
};
|
|
|
|
~Http_Request()
|
|
{
|
|
Global_WebRequests_pendingNotify.erase(this);
|
|
};
|
|
bool BuildPage( BufferedWriter_Growable &_writer, ParsedHttpRequest &parser)
|
|
{
|
|
Global_WebRequests_pendingNotify.insert((Http_Request *)this);
|
|
|
|
_state = WAITING_TO_FINALIZE;
|
|
_Timer.ResetAll(Time_Clock::GetCurrentTime(),Time_Span(9999999,0));
|
|
return true;
|
|
};
|
|
|
|
CloseState TryAndFinalize()
|
|
{
|
|
return ConnectionDoNotClose;
|
|
};
|
|
|
|
PUBLISHED:
|
|
|
|
std::string GetRequestType()
|
|
{
|
|
return _parser.GetRequestType();
|
|
}
|
|
|
|
std::string GetRawRequest()
|
|
{
|
|
return _parser.GetRawRequest();
|
|
}
|
|
|
|
std::string GetRequestURL()
|
|
{
|
|
return _parser.GetRequestURL();
|
|
}
|
|
|
|
std::string GetSourceAddress()
|
|
{
|
|
return _MyAddress.get_ip_port();
|
|
}
|
|
|
|
void AppendToResponse(const std::string &in)
|
|
{
|
|
_writer+=in;
|
|
}
|
|
|
|
|
|
void SendThisResponse(const std::string &in)
|
|
{
|
|
_writer+=in;
|
|
Finish();
|
|
}
|
|
|
|
void Finish()
|
|
{
|
|
_Timer.ResetAll(Time_Clock::GetCurrentTime(),Time_Span(10,0));
|
|
_state = WRITING_DATA;
|
|
};
|
|
void Abort()
|
|
{
|
|
_state = ABORTING;
|
|
};
|
|
|
|
|
|
bool HasOption(std::string in)
|
|
{
|
|
const std::string * answer = _parser.GetOption(in);
|
|
if(answer != NULL)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
char * GetOption(std::string in)
|
|
{
|
|
const std::string * answer = _parser.GetOption(in);
|
|
if(answer != NULL)
|
|
return (char *)answer->c_str();
|
|
return "";
|
|
}
|
|
std::string GetRequestOptionString()
|
|
{
|
|
return _parser.GetRequestOptionString();
|
|
}
|
|
|
|
static bool HttpManager_Initialize( unsigned short port);
|
|
static Http_Request * HttpManager_GetARequest();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Http_Request_H_
|