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 HTTPSERVERCONNECTION_H
|
|
|
|
#define HTTPSERVERCONNECTION_H
|
2014-04-12 04:21:09 +02:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
#include "remote/httprequest.hpp"
|
|
|
|
#include "remote/apiuser.hpp"
|
2014-10-16 12:27:09 +02:00
|
|
|
#include "base/tlsstream.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/timer.hpp"
|
2014-07-01 09:38:22 +02:00
|
|
|
#include "base/workqueue.hpp"
|
2014-04-12 04:21:09 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2014-05-03 20:02:22 +02:00
|
|
|
* An API 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 HttpServerConnection : public Object
|
2014-04-12 04:21:09 +02:00
|
|
|
{
|
|
|
|
public:
|
2015-08-29 01:16:16 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(HttpServerConnection);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2015-08-29 01:16:16 +02:00
|
|
|
HttpServerConnection(const String& identity, bool authenticated, const TlsStream::Ptr& stream);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
void Start(void);
|
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
ApiUser::Ptr GetApiUser(void) const;
|
2014-10-16 09:01:18 +02:00
|
|
|
bool IsAuthenticated(void) const;
|
2014-10-16 12:27:09 +02:00
|
|
|
TlsStream::Ptr GetStream(void) const;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
void Disconnect(void);
|
|
|
|
|
2014-04-12 04:21:09 +02:00
|
|
|
private:
|
2015-06-22 11:11:21 +02:00
|
|
|
ApiUser::Ptr m_ApiUser;
|
2014-10-16 12:27:09 +02:00
|
|
|
TlsStream::Ptr m_Stream;
|
2014-05-03 20:02:22 +02:00
|
|
|
double m_Seen;
|
2015-06-22 11:11:21 +02:00
|
|
|
HttpRequest m_CurrentRequest;
|
2015-06-24 09:44:59 +02:00
|
|
|
boost::mutex m_DataHandlerMutex;
|
2015-06-22 11:11:21 +02:00
|
|
|
WorkQueue m_RequestQueue;
|
|
|
|
int m_PendingRequests;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
StreamReadContext m_Context;
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
bool ProcessMessage(void);
|
2015-02-14 16:34:36 +01:00
|
|
|
void DataAvailableHandler(void);
|
2015-02-26 12:41:47 +01:00
|
|
|
|
2015-02-27 20:18:20 +01:00
|
|
|
static void StaticInitialize(void);
|
|
|
|
static void TimeoutTimerHandler(void);
|
|
|
|
void CheckLiveness(void);
|
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 /* HTTPSERVERCONNECTION_H */
|