icinga2/lib/remote/httprequest.hpp

70 lines
1.2 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2015-06-22 11:11:21 +02:00
#ifndef HTTPREQUEST_H
#define HTTPREQUEST_H
2014-05-25 16:23:35 +02:00
#include "remote/i2-remote.hpp"
2015-06-22 11:11:21 +02:00
#include "remote/httpchunkedencoding.hpp"
#include "remote/url.hpp"
2015-06-22 11:11:21 +02:00
#include "base/stream.hpp"
#include "base/fifo.hpp"
#include "base/dictionary.hpp"
namespace icinga
{
2015-06-22 11:11:21 +02:00
enum HttpVersion
{
2015-06-22 11:11:21 +02:00
HttpVersion10,
HttpVersion11
};
2015-06-22 11:11:21 +02:00
enum HttpRequestState
{
HttpRequestStart,
HttpRequestHeaders,
HttpRequestBody,
HttpRequestEnd
2015-06-22 11:11:21 +02:00
};
/**
2015-06-22 11:11:21 +02:00
* An HTTP request.
*
* @ingroup remote
*/
2017-12-31 07:22:16 +01:00
struct HttpRequest
{
public:
bool CompleteHeaders;
bool CompleteHeaderCheck;
bool CompleteBody;
2015-06-22 11:11:21 +02:00
String RequestMethod;
Url::Ptr RequestUrl;
2015-06-22 11:11:21 +02:00
HttpVersion ProtocolVersion;
2015-06-22 11:11:21 +02:00
Dictionary::Ptr Headers;
HttpRequest(Stream::Ptr stream);
2018-02-21 13:22:17 +01:00
bool ParseHeaders(StreamReadContext& src, bool may_wait);
bool ParseBody(StreamReadContext& src, bool may_wait);
2015-06-22 11:11:21 +02:00
size_t ReadBody(char *data, size_t count);
void AddHeader(const String& key, const String& value);
void WriteBody(const char *data, size_t count);
void Finish();
private:
Stream::Ptr m_Stream;
std::shared_ptr<ChunkReadContext> m_ChunkContext;
2015-06-22 11:11:21 +02:00
HttpRequestState m_State;
FIFO::Ptr m_Body;
void FinishHeaders();
};
}
2015-06-22 11:11:21 +02:00
#endif /* HTTPREQUEST_H */