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);
|
|
|
|
|
2013-01-30 09:59:22 +01:00
|
|
|
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,
|
2013-01-30 09:59:22 +01:00
|
|
|
bool fixed, const String& triggeredBy, double duration);
|
2013-01-29 14:50:51 +01:00
|
|
|
|
2013-01-30 09:59:22 +01:00
|
|
|
static void RemoveDowntime(const String& id);
|
2013-01-29 14:50:51 +01:00
|
|
|
|
2013-01-31 13:57:14 +01:00
|
|
|
static void TriggerDowntimes(const DynamicObject::Ptr& owner);
|
|
|
|
static void TriggerDowntime(const String& id);
|
|
|
|
|
2013-01-30 09:59:22 +01:00
|
|
|
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);
|
2013-01-30 13:02:20 +01:00
|
|
|
static void ValidateDowntimeCache(void);
|
2013-01-29 14:50:51 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
static int m_NextDowntimeID;
|
|
|
|
|
2013-01-30 09:59:22 +01:00
|
|
|
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 */
|