icinga2/components/compatido/compatidocomponent.h

71 lines
2.5 KiB
C
Raw Normal View History

2012-09-15 12:51:40 +02:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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. *
******************************************************************************/
#ifndef COMPATIDOCOMPONENT_H
#define COMPATIDOCOMPONENT_H
namespace icinga
{
/**
* @ingroup compatido
*/
class CompatIdoComponent : public IComponent
{
public:
virtual String GetName(void) const;
virtual void Start(void);
virtual void Stop(void);
private:
Timer::Ptr m_StatusTimer;
IdoSocket::Ptr m_IdoSocket;
void OpenSink(String node, String service );
void SendHello(String instancename);
void StartConfigDump();
void EndConfigDump();
void DumpConfigObjects(void);
void DumpHostObject(const Host::Ptr& host);
void DumpServiceObject(const Service::Ptr& service);
void DumpStatusData(void);
void DumpHostStatus(const Host::Ptr& host);
void DumpServiceStatus(const Service::Ptr& service);
template<typename T>
void CreateMessageList(stringstream& msg, const T& list, int type)
{
typename T::const_iterator it;
for (it = list.begin(); it != list.end(); it++) {
msg << type << "=" << *it << "\n";
}
}
//void DemoTimerHandler(void);
//void HelloWorldRequestHandler(const Endpoint::Ptr& sender, const RequestMessage& request);
void ConfigTimerHandler(void);
void StatusTimerHandler(void);
};
}
#endif /* COMPATIDOCOMPONENT_H */