2014-04-12 04:21:09 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2017-01-10 15:54:22 +01:00
|
|
|
* Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/) *
|
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-08-29 01:16:16 +02:00
|
|
|
#ifndef HTTPCLIENTCONNECTION_H
|
|
|
|
#define HTTPCLIENTCONNECTION_H
|
2014-04-12 04:21:09 +02:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
#include "remote/httprequest.hpp"
|
2015-08-29 01:16:16 +02:00
|
|
|
#include "remote/httpresponse.hpp"
|
|
|
|
#include "base/stream.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/timer.hpp"
|
2015-08-29 01:16:16 +02:00
|
|
|
#include <deque>
|
2014-04-12 04:21:09 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2015-08-29 01:16:16 +02:00
|
|
|
* An HTTP client connection.
|
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-08-29 01:16:16 +02:00
|
|
|
class I2_REMOTE_API HttpClientConnection : public Object
|
2014-04-12 04:21:09 +02:00
|
|
|
{
|
|
|
|
public:
|
2015-08-29 01:16:16 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(HttpClientConnection);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
HttpClientConnection(const String& host, const String& port, bool tls = true);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
void Start(void);
|
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
Stream::Ptr GetStream(void) const;
|
|
|
|
String GetHost(void) const;
|
|
|
|
String GetPort(void) const;
|
|
|
|
bool GetTls(void) const;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
void Disconnect(void);
|
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
boost::shared_ptr<HttpRequest> NewRequest(void);
|
|
|
|
|
|
|
|
typedef boost::function<void(HttpRequest&, HttpResponse&)> HttpCompletionCallback;
|
|
|
|
void SubmitRequest(const boost::shared_ptr<HttpRequest>& request, const HttpCompletionCallback& callback);
|
|
|
|
|
2014-04-12 04:21:09 +02:00
|
|
|
private:
|
2015-08-29 01:16:16 +02:00
|
|
|
String m_Host;
|
|
|
|
String m_Port;
|
|
|
|
bool m_Tls;
|
|
|
|
Stream::Ptr m_Stream;
|
|
|
|
std::deque<std::pair<boost::shared_ptr<HttpRequest>, HttpCompletionCallback> > m_Requests;
|
|
|
|
boost::shared_ptr<HttpResponse> m_CurrentResponse;
|
2015-06-24 09:44:59 +02:00
|
|
|
boost::mutex m_DataHandlerMutex;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
StreamReadContext m_Context;
|
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
void Reconnect(void);
|
2014-05-03 20:02:22 +02:00
|
|
|
bool ProcessMessage(void);
|
2015-09-29 10:31:16 +02:00
|
|
|
void DataAvailableHandler(const Stream::Ptr& stream);
|
2015-02-26 12:41:47 +01:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
void ProcessMessageAsync(HttpRequest& request);
|
2014-04-12 04:21:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
#endif /* HTTPCLIENTCONNECTION_H */
|