icinga2/lib/icinga/downtimeprocessor.h

75 lines
2.8 KiB
C
Raw Normal View History

2013-01-29 14:50:51 +01: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 DOWNTIMEPROCESSOR_H
#define DOWNTIMEPROCESSOR_H
namespace icinga
{
/**
2013-01-29 16:29:09 +01:00
* Downtime processor.
2013-01-29 14:50:51 +01:00
*
* @ingroup icinga
*/
class I2_ICINGA_API DowntimeProcessor
{
public:
static int GetNextDowntimeID(void);
static String AddDowntime(const DynamicObject::Ptr& owner,
2013-01-29 14:50:51 +01:00
const String& author, const String& comment,
double startTime, double endTime,
bool fixed, const String& triggeredBy, double duration);
2013-01-29 14:50:51 +01:00
static void RemoveDowntime(const String& id);
2013-01-29 14:50:51 +01:00
static void TriggerDowntimes(const DynamicObject::Ptr& owner);
static void TriggerDowntime(const String& id);
static String GetIDFromLegacyID(int id);
static DynamicObject::Ptr GetOwnerByDowntimeID(const String& id);
static Dictionary::Ptr GetDowntimeByID(const String& id);
2013-01-29 14:50:51 +01:00
static bool IsDowntimeActive(const Dictionary::Ptr& downtime);
2013-01-30 14:28:13 +01:00
static bool IsDowntimeExpired(const Dictionary::Ptr& downtime);
2013-01-29 14:50:51 +01:00
static void InvalidateDowntimeCache(void);
static void ValidateDowntimeCache(void);
2013-01-29 14:50:51 +01:00
private:
static int m_NextDowntimeID;
static map<int, String> m_LegacyDowntimeCache;
static map<String, DynamicObject::WeakPtr> m_DowntimeCache;
2013-01-29 14:50:51 +01:00
static bool m_DowntimeCacheValid;
2013-01-30 14:28:13 +01:00
static Timer::Ptr m_DowntimeExpireTimer;
2013-01-29 14:50:51 +01:00
DowntimeProcessor(void);
2013-01-30 14:28:13 +01:00
static void DowntimeExpireTimerHandler(void);
2013-01-29 14:50:51 +01:00
static void AddDowntimesToCache(const DynamicObject::Ptr& owner);
2013-01-30 14:28:13 +01:00
static void RemoveExpiredDowntimes(const DynamicObject::Ptr& owner);
2013-01-29 14:50:51 +01:00
};
}
#endif /* DOWNTIMEPROCESSOR_H */