icinga2/lib/remote/httprequest.hpp

87 lines
2.5 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2018-01-02 12:06:00 +01:00
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
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 */