icinga2/components/compat/compatlogger.h

74 lines
3.0 KiB
C
Raw Normal View History

2013-03-19 13:04:30 +01:00
/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
2013-03-19 13:04:30 +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 10:55:50 +02:00
#ifndef COMPATLOGGER_H
#define COMPATLOGGER_H
2013-03-19 13:04:30 +01:00
2013-10-26 09:41:45 +02:00
#include "compat/compatlogger.th"
#include "icinga/service.h"
2013-03-19 13:04:30 +01:00
#include "base/timer.h"
#include <fstream>
namespace icinga
{
/**
* An Icinga compat log writer.
*
* @ingroup compat
*/
2013-10-26 09:41:45 +02:00
class CompatLogger : public ReflectionObjectImpl<CompatLogger>
2013-03-19 13:04:30 +01:00
{
public:
2013-09-25 10:55:50 +02:00
DECLARE_PTR_TYPEDEFS(CompatLogger);
DECLARE_TYPENAME(CompatLogger);
2013-03-19 13:04:30 +01:00
2013-09-25 10:55:50 +02:00
CompatLogger(void);
2013-03-19 13:04:30 +01:00
2013-03-25 20:47:02 +01:00
static void ValidateRotationMethod(const String& location, const Dictionary::Ptr& attrs);
2013-03-19 13:04:30 +01:00
protected:
virtual void Start(void);
private:
double m_LastRotation;
2013-03-19 13:04:30 +01:00
void WriteLine(const String& line);
void Flush(void);
void CheckResultHandler(const Service::Ptr& service, const Dictionary::Ptr& cr);
void DowntimeHandler(const Service::Ptr& service, DowntimeState downtime_state);
2013-10-29 13:44:43 +01:00
void NotificationSentHandler(const Service::Ptr& service, const User::Ptr& user, NotificationType const& notification_type, Dictionary::Ptr const& cr, const String& author, const String& comment_text, const String& command_name);
void FlappingHandler(const Service::Ptr& service, FlappingState flapping_state);
2013-09-17 19:40:23 +02:00
void TriggerDowntimeHandler(const Service::Ptr& service, const Dictionary::Ptr& downtime);
void RemoveDowntimeHandler(const Service::Ptr& service, const Dictionary::Ptr& downtime);
void ExternalCommandHandler(const String& command, const std::vector<String>& arguments);
2013-03-19 13:04:30 +01:00
Timer::Ptr m_RotationTimer;
void RotationTimerHandler(void);
void ScheduleNextRotation(void);
2013-03-19 13:04:30 +01:00
std::ofstream m_OutputFile;
void ReopenFile(bool rotate);
2013-03-19 13:04:30 +01:00
};
}
2013-09-25 10:55:50 +02:00
#endif /* COMPATLOGGER_H */