icinga2/lib/compat/statusdatawriter.hpp

109 lines
3.6 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 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 *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2013-09-25 07:31:46 +02:00
#ifndef STATUSDATAWRITER_H
#define STATUSDATAWRITER_H
2014-05-25 16:23:35 +02:00
#include "compat/statusdatawriter.thpp"
#include "icinga/customvarobject.hpp"
#include "icinga/host.hpp"
#include "icinga/service.hpp"
#include "icinga/command.hpp"
#include "icinga/compatutility.hpp"
#include "base/objectlock.hpp"
#include "base/timer.hpp"
#include "base/utility.hpp"
2013-03-18 11:02:18 +01:00
#include <boost/thread/thread.hpp>
2013-03-17 20:19:29 +01:00
#include <iostream>
2013-03-16 21:18:53 +01:00
namespace icinga
{
/**
2012-06-27 18:43:34 +02:00
* @ingroup compat
*/
class StatusDataWriter : public ObjectImpl<StatusDataWriter>
{
2012-06-27 18:43:34 +02:00
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(StatusDataWriter);
DECLARE_OBJECTNAME(StatusDataWriter);
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
protected:
virtual void Start(bool runtimeCreated) override;
2012-06-27 18:43:34 +02:00
private:
Timer::Ptr m_StatusTimer;
bool m_ObjectsCacheOutdated;
void DumpCommand(std::ostream& fp, const Command::Ptr& command);
void DumpTimePeriod(std::ostream& fp, const TimePeriod::Ptr& tp);
2014-04-03 15:36:13 +02:00
void DumpDowntimes(std::ostream& fp, const Checkable::Ptr& owner);
void DumpComments(std::ostream& fp, const Checkable::Ptr& owner);
2013-03-16 21:18:53 +01:00
void DumpHostStatus(std::ostream& fp, const Host::Ptr& host);
void DumpHostObject(std::ostream& fp, const Host::Ptr& host);
2012-06-27 18:43:34 +02:00
2014-04-03 15:36:13 +02:00
void DumpCheckableStatusAttrs(std::ostream& fp, const Checkable::Ptr& checkable);
2013-02-07 20:29:35 +01:00
template<typename T>
2013-03-17 20:19:29 +01:00
void DumpNameList(std::ostream& fp, const T& list)
{
typename T::const_iterator it;
bool first = true;
for (it = list.begin(); it != list.end(); it++) {
if (!first)
fp << ",";
else
first = false;
2013-02-18 14:40:24 +01:00
ObjectLock olock(*it);
fp << (*it)->GetName();
}
}
2012-07-09 12:44:31 +02:00
template<typename T>
2013-03-17 20:19:29 +01:00
void DumpStringList(std::ostream& fp, const T& list)
2012-07-09 12:44:31 +02:00
{
typename T::const_iterator it;
bool first = true;
for (it = list.begin(); it != list.end(); it++) {
if (!first)
fp << ",";
else
first = false;
fp << *it;
}
}
2013-03-16 21:18:53 +01:00
void DumpServiceStatus(std::ostream& fp, const Service::Ptr& service);
void DumpServiceObject(std::ostream& fp, const Service::Ptr& service);
2012-06-27 18:43:34 +02:00
void DumpCustomAttributes(std::ostream& fp, const CustomVarObject::Ptr& object);
void UpdateObjectsCache(void);
2012-06-27 18:43:34 +02:00
void StatusTimerHandler(void);
void ObjectHandler(void);
};
}
2013-09-25 07:31:46 +02:00
#endif /* STATUSDATAWRITER_H */