icinga2/lib/icinga/checkable-notification.cpp

102 lines
4.3 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2016-01-12 08:29:59 +01:00
* Copyright (C) 2012-2016 Icinga Development Team (https://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. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "icinga/checkable.hpp"
#include "icinga/icingaapplication.hpp"
#include "base/objectlock.hpp"
2014-10-19 14:21:12 +02:00
#include "base/logger.hpp"
2014-05-25 16:23:35 +02:00
#include "base/exception.hpp"
#include "base/context.hpp"
#include "base/convert.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
using namespace icinga;
2014-04-03 15:36:13 +02:00
boost::signals2::signal<void (const Notification::Ptr&, const Checkable::Ptr&, const std::set<User::Ptr>&,
const NotificationType&, const CheckResult::Ptr&, const String&, const String&)> Checkable::OnNotificationSentToAllUsers;
boost::signals2::signal<void (const Notification::Ptr&, const Checkable::Ptr&, const std::set<User::Ptr>&,
const NotificationType&, const CheckResult::Ptr&, const String&, const String&)> Checkable::OnNotificationSendStart;
boost::signals2::signal<void (const Notification::Ptr&, const Checkable::Ptr&, const User::Ptr&,
const NotificationType&, const CheckResult::Ptr&, const String&, const String&, const String&)> Checkable::OnNotificationSentToUser;
void Checkable::ResetNotificationNumbers(void)
2013-07-18 17:04:09 +02:00
{
BOOST_FOREACH(const Notification::Ptr& notification, GetNotifications()) {
ObjectLock olock(notification);
notification->ResetNotificationNumber();
}
}
2014-04-03 15:36:13 +02:00
void Checkable::SendNotifications(NotificationType type, const CheckResult::Ptr& cr, const String& author, const String& text)
{
2014-04-03 15:36:13 +02:00
CONTEXT("Sending notifications for object '" + GetName() + "'");
bool force = GetForceNextNotification();
2013-10-08 11:57:35 +02:00
if (!IcingaApplication::GetInstance()->GetEnableNotifications() || !GetEnableNotifications()) {
if (!force) {
2014-10-19 17:52:17 +02:00
Log(LogInformation, "Checkable")
<< "Notifications are disabled for service '" << GetName() << "'.";
return;
}
SetForceNextNotification(false);
}
2014-10-19 17:52:17 +02:00
Log(LogInformation, "Checkable")
<< "Checking for configured notifications for object '" << GetName() << "'";
2013-03-16 21:18:53 +01:00
std::set<Notification::Ptr> notifications = GetNotifications();
2013-03-06 15:41:13 +01:00
if (notifications.empty())
2014-10-19 17:52:17 +02:00
Log(LogInformation, "Checkable")
<< "Checkable '" << GetName() << "' does not have any notifications.";
2014-10-19 17:52:17 +02:00
Log(LogDebug, "Checkable")
<< "Checkable '" << GetName() << "' has " << notifications.size() << " notification(s).";
BOOST_FOREACH(const Notification::Ptr& notification, notifications) {
2013-02-24 08:26:10 +01:00
try {
notification->BeginExecuteNotification(type, cr, force, author, text);
2013-03-16 21:18:53 +01:00
} catch (const std::exception& ex) {
2014-10-19 17:52:17 +02:00
Log(LogWarning, "Checkable")
<< "Exception occured during notification for service '"
<< GetName() << "': " << DiagnosticInformation(ex);
2013-02-24 08:26:10 +01:00
}
}
}
2014-04-03 15:36:13 +02:00
std::set<Notification::Ptr> Checkable::GetNotifications(void) const
2013-02-27 15:23:25 +01:00
{
boost::mutex::scoped_lock lock(m_NotificationMutex);
return m_Notifications;
2013-02-27 15:23:25 +01:00
}
void Checkable::RegisterNotification(const Notification::Ptr& notification)
{
boost::mutex::scoped_lock lock(m_NotificationMutex);
m_Notifications.insert(notification);
}
void Checkable::UnregisterNotification(const Notification::Ptr& notification)
{
boost::mutex::scoped_lock lock(m_NotificationMutex);
m_Notifications.erase(notification);
}