/****************************************************************************** * 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 { /** * Downtime processor. * * @ingroup icinga */ class I2_ICINGA_API DowntimeProcessor { public: static int GetNextDowntimeID(void); static String AddDowntime(const DynamicObject::Ptr& owner, const String& author, const String& comment, double startTime, double endTime, bool fixed, const String& triggeredBy, double duration); static void RemoveDowntime(const String& id); 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); static bool IsDowntimeActive(const Dictionary::Ptr& downtime); static bool IsDowntimeExpired(const Dictionary::Ptr& downtime); static void InvalidateDowntimeCache(void); static void ValidateDowntimeCache(void); private: static int m_NextDowntimeID; static map m_LegacyDowntimeCache; static map m_DowntimeCache; static bool m_DowntimeCacheValid; static Timer::Ptr m_DowntimeExpireTimer; DowntimeProcessor(void); static void DowntimeExpireTimerHandler(void); static void AddDowntimesToCache(const DynamicObject::Ptr& owner); static void RemoveExpiredDowntimes(const DynamicObject::Ptr& owner); }; } #endif /* DOWNTIMEPROCESSOR_H */