2014-04-12 04:21:09 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-04-12 04:21:09 +02:00
|
|
|
* *
|
|
|
|
* 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 HTTPRESPONSE_H
|
|
|
|
#define HTTPRESPONSE_H
|
2014-04-12 04:21:09 +02:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
#include "remote/httprequest.hpp"
|
|
|
|
#include "base/stream.hpp"
|
|
|
|
#include "base/fifo.hpp"
|
2014-04-12 04:21:09 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
enum HttpResponseState
|
2014-05-03 20:02:22 +02:00
|
|
|
{
|
2015-06-22 11:11:21 +02:00
|
|
|
HttpResponseStart,
|
|
|
|
HttpResponseHeaders,
|
2015-08-28 09:49:16 +02:00
|
|
|
HttpResponseBody,
|
|
|
|
HttpResponseEnd
|
2014-05-03 20:02:22 +02:00
|
|
|
};
|
|
|
|
|
2014-04-12 04:21:09 +02:00
|
|
|
/**
|
2015-06-22 11:11:21 +02:00
|
|
|
* An HTTP response.
|
2014-04-12 04:21:09 +02:00
|
|
|
*
|
2014-05-03 20:02:22 +02:00
|
|
|
* @ingroup remote
|
2014-04-12 04:21:09 +02:00
|
|
|
*/
|
2015-06-22 11:11:21 +02:00
|
|
|
struct I2_REMOTE_API HttpResponse
|
2014-04-12 04:21:09 +02:00
|
|
|
{
|
|
|
|
public:
|
2015-08-29 01:16:16 +02:00
|
|
|
bool Complete;
|
|
|
|
|
|
|
|
HttpVersion ProtocolVersion;
|
|
|
|
int StatusCode;
|
|
|
|
String StatusMessage;
|
|
|
|
|
|
|
|
Dictionary::Ptr Headers;
|
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
HttpResponse(const Stream::Ptr& stream, const HttpRequest& request);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
bool Parse(StreamReadContext& src, bool may_wait);
|
|
|
|
size_t ReadBody(char *data, size_t count);
|
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
void SetStatus(int code, const String& message);
|
|
|
|
void AddHeader(const String& key, const String& value);
|
|
|
|
void WriteBody(const char *data, size_t count);
|
|
|
|
void Finish(void);
|
2014-12-09 13:17:27 +01:00
|
|
|
|
2015-10-19 17:31:18 +02:00
|
|
|
bool IsPeerConnected(void) const;
|
|
|
|
|
2014-04-12 04:21:09 +02:00
|
|
|
private:
|
2015-06-22 11:11:21 +02:00
|
|
|
HttpResponseState m_State;
|
2015-08-29 01:16:16 +02:00
|
|
|
boost::shared_ptr<ChunkReadContext> m_ChunkContext;
|
2015-06-22 11:11:21 +02:00
|
|
|
const HttpRequest& m_Request;
|
|
|
|
Stream::Ptr m_Stream;
|
|
|
|
FIFO::Ptr m_Body;
|
2015-02-26 12:41:47 +01:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
void FinishHeaders(void);
|
2014-04-12 04:21:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
#endif /* HTTPRESPONSE_H */
|