2013-03-10 03:09:01 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2013-03-10 03:09:01 +01: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-09-25 09:31:52 +02:00
|
|
|
#ifndef LIVESTATUSLISTENER_H
|
|
|
|
#define LIVESTATUSLISTENER_H
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2015-02-26 09:02:45 +01:00
|
|
|
#include "livestatus/i2-livestatus.hpp"
|
2014-05-28 14:25:12 +02:00
|
|
|
#include "livestatus/livestatuslistener.thpp"
|
|
|
|
#include "livestatus/livestatusquery.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/socket.hpp"
|
2013-07-10 14:19:01 +02:00
|
|
|
#include <boost/thread/thread.hpp>
|
2013-03-17 20:19:29 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-11-11 11:57:25 +01:00
|
|
|
namespace icinga
|
2013-03-10 03:09:01 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup livestatus
|
|
|
|
*/
|
2015-02-26 09:02:45 +01:00
|
|
|
class I2_LIVESTATUS_API LivestatusListener : public ObjectImpl<LivestatusListener>
|
2013-03-10 03:09:01 +01:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(LivestatusListener);
|
|
|
|
DECLARE_OBJECTNAME(LivestatusListener);
|
2013-09-25 09:31:52 +02:00
|
|
|
|
2015-02-07 22:36:17 +01:00
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2013-07-19 15:42:00 +02:00
|
|
|
static int GetClientsConnected(void);
|
|
|
|
static int GetConnections(void);
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
virtual void ValidateSocketType(const String& value, const ValidationUtils& utils) override;
|
2013-09-30 10:07:49 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
protected:
|
2015-08-18 07:46:04 +02:00
|
|
|
virtual void Start(void) override;
|
|
|
|
virtual void Stop(void) override;
|
2013-08-20 11:06:04 +02:00
|
|
|
|
2013-03-10 03:09:01 +01:00
|
|
|
private:
|
2015-01-09 09:53:43 +01:00
|
|
|
void ServerThreadProc(void);
|
2013-12-12 12:07:47 +01:00
|
|
|
void ClientHandler(const Socket::Ptr& client);
|
2015-01-08 14:03:43 +01:00
|
|
|
|
|
|
|
Socket::Ptr m_Listener;
|
2015-01-09 09:53:43 +01:00
|
|
|
boost::thread m_Thread;
|
2013-03-10 03:09:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-25 09:31:52 +02:00
|
|
|
#endif /* LIVESTATUSLISTENER_H */
|