icinga2/lib/compat/statusdatawriter.hpp

90 lines
2.1 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-09-25 07:31:46 +02:00
#ifndef STATUSDATAWRITER_H
#define STATUSDATAWRITER_H
2018-01-18 13:50:38 +01:00
#include "compat/statusdatawriter-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/customvarobject.hpp"
#include "icinga/host.hpp"
#include "icinga/service.hpp"
#include "icinga/command.hpp"
#include "icinga/compatutility.hpp"
#include "base/timer.hpp"
#include "base/utility.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
*/
2018-01-04 06:11:04 +01:00
class StatusDataWriter final : 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:
void Start(bool runtimeCreated) override;
void Stop(bool runtimeRemoved) 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)
{
bool first = true;
for (const auto& obj : list) {
if (!first)
fp << ",";
else
first = false;
fp << obj->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
{
bool first = true;
for (const auto& str : list) {
2012-07-09 12:44:31 +02:00
if (!first)
fp << ",";
else
first = false;
fp << str;
2012-07-09 12:44:31 +02:00
}
}
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 StatusTimerHandler();
void ObjectHandler();
static String GetNotificationOptions(const Checkable::Ptr& checkable);
};
}
2013-09-25 07:31:46 +02:00
#endif /* STATUSDATAWRITER_H */