icinga2/lib/icinga/service-notification.cpp

336 lines
9.3 KiB
C++
Raw Normal View History

/******************************************************************************
* 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. *
******************************************************************************/
2013-03-16 21:18:53 +01:00
#include "icinga/service.h"
2013-03-17 20:19:29 +01:00
#include "icinga/notificationrequestmessage.h"
#include "remoting/endpointmanager.h"
#include "base/dynamictype.h"
2013-03-16 21:18:53 +01:00
#include "base/objectlock.h"
#include "base/logger_fwd.h"
2013-03-17 20:19:29 +01:00
#include "config/configitembuilder.h"
2013-03-15 18:21:29 +01:00
#include <boost/tuple/tuple.hpp>
2013-03-16 21:18:53 +01:00
#include <boost/smart_ptr/make_shared.hpp>
#include <boost/foreach.hpp>
#include <boost/exception/diagnostic_information.hpp>
using namespace icinga;
2013-03-18 11:02:18 +01:00
static boost::mutex l_NotificationMutex;
static std::map<String, std::set<Notification::WeakPtr> > l_NotificationsCache;
static bool l_NotificationsCacheNeedsUpdate = false;
static Timer::Ptr l_NotificationsCacheTimer;
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-03-07 12:04:20 +01:00
void Service::RequestNotifications(NotificationType type, const Dictionary::Ptr& cr)
{
RequestMessage msg;
msg.SetMethod("icinga::SendNotifications");
NotificationRequestMessage params;
msg.SetParams(params);
params.SetService(GetName());
params.SetType(type);
2013-03-07 12:04:20 +01:00
params.SetCheckResult(cr);
2013-03-16 21:18:53 +01:00
Log(LogDebug, "icinga", "Sending notification anycast request for service '" + GetName() + "'");
EndpointManager::GetInstance()->SendAnycastMessage(Endpoint::Ptr(), msg);
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-03-07 12:04:20 +01:00
void Service::SendNotifications(NotificationType type, const Dictionary::Ptr& cr)
{
2013-03-02 09:07:47 +01:00
if (!GetEnableNotifications()) {
if (!GetForceNextNotification()) {
Log(LogInformation, "icinga", "Notifications are disabled for service '" + GetName() + "'.");
return;
}
SetForceNextNotification(false);
}
2013-03-16 21:18:53 +01:00
Log(LogInformation, "icinga", "Sending notifications for service '" + 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())
2013-03-16 21:18:53 +01:00
Log(LogInformation, "icinga", "Service '" + GetName() + "' does not have any notifications.");
BOOST_FOREACH(const Notification::Ptr& notification, notifications) {
2013-02-24 08:26:10 +01:00
try {
2013-03-07 12:04:20 +01:00
notification->BeginExecuteNotification(type, cr);
2013-03-16 21:18:53 +01:00
} catch (const std::exception& ex) {
std::ostringstream msgbuf;
2013-02-24 08:26:10 +01:00
msgbuf << "Exception occured during notification for service '"
2013-03-16 21:18:53 +01:00
<< GetName() << "': " << boost::diagnostic_information(ex);
2013-02-24 08:26:10 +01:00
String message = msgbuf.str();
2013-03-16 21:18:53 +01:00
Log(LogWarning, "icinga", message);
2013-02-24 08:26:10 +01:00
}
}
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-02-27 15:23:25 +01:00
void Service::InvalidateNotificationsCache(void)
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_NotificationMutex);
2013-02-27 16:04:49 +01:00
2013-03-18 11:02:18 +01:00
if (l_NotificationsCacheNeedsUpdate)
2013-03-06 11:03:50 +01:00
return; /* Someone else has already requested a refresh. */
2013-02-27 16:04:49 +01:00
2013-03-18 11:02:18 +01:00
if (!l_NotificationsCacheTimer) {
l_NotificationsCacheTimer = boost::make_shared<Timer>();
l_NotificationsCacheTimer->SetInterval(0.5);
l_NotificationsCacheTimer->OnTimerExpired.connect(boost::bind(&Service::RefreshNotificationsCache));
l_NotificationsCacheTimer->Start();
2013-03-06 11:03:50 +01:00
}
2013-03-18 11:02:18 +01:00
l_NotificationsCacheNeedsUpdate = true;
2013-02-27 15:23:25 +01:00
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
void Service::RefreshNotificationsCache(void)
{
2013-02-27 15:23:25 +01:00
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_NotificationMutex);
2013-02-27 15:23:25 +01:00
2013-03-18 11:02:18 +01:00
if (!l_NotificationsCacheNeedsUpdate)
return;
2013-03-18 11:02:18 +01:00
l_NotificationsCacheNeedsUpdate = false;
2013-02-27 15:23:25 +01:00
}
2013-03-16 21:18:53 +01:00
Log(LogDebug, "icinga", "Updating Service notifications cache.");
2013-03-16 21:18:53 +01:00
std::map<String, std::set<Notification::WeakPtr> > newNotificationsCache;
2013-02-18 23:44:24 +01:00
BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("Notification")) {
const Notification::Ptr& notification = static_pointer_cast<Notification>(object);
2013-03-02 09:07:47 +01:00
Service::Ptr service = notification->GetService();
2013-03-02 09:07:47 +01:00
if (!service)
continue;
2013-03-02 09:07:47 +01:00
newNotificationsCache[service->GetName()].insert(notification);
}
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_NotificationMutex);
l_NotificationsCache.swap(newNotificationsCache);
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-03-16 21:18:53 +01:00
std::set<Notification::Ptr> Service::GetNotifications(void) const
{
2013-03-16 21:18:53 +01:00
std::set<Notification::Ptr> notifications;
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_NotificationMutex);
2013-03-18 11:02:18 +01:00
BOOST_FOREACH(const Notification::WeakPtr& wservice, l_NotificationsCache[GetName()]) {
Notification::Ptr notification = wservice.lock();
if (!notification)
continue;
notifications.insert(notification);
}
}
return notifications;
}
2013-03-04 15:52:42 +01:00
void Service::UpdateSlaveNotifications(void)
{
2013-02-26 10:13:54 +01:00
Dictionary::Ptr oldNotifications;
ConfigItem::Ptr serviceItem, hostItem;
serviceItem = ConfigItem::GetObject("Service", GetName());
2013-02-26 10:13:54 +01:00
/* Don't create slave notifications unless we own this object */
if (!serviceItem)
return;
Host::Ptr host = GetHost();
if (!host)
return;
hostItem = ConfigItem::GetObject("Host", host->GetName());
/* Don't create slave notifications unless we own the host */
if (!hostItem)
2013-03-04 15:52:42 +01:00
return;
2013-02-26 10:13:54 +01:00
{
2013-03-04 15:52:42 +01:00
ObjectLock olock(this);
oldNotifications = m_SlaveNotifications;
2013-02-26 10:13:54 +01:00
}
std::vector<Dictionary::Ptr> descLists;
descLists.push_back(Get("notifications"));
2013-03-04 15:52:42 +01:00
Dictionary::Ptr newNotifications;
newNotifications = boost::make_shared<Dictionary>();
descLists.push_back(host->Get("notifications"));
2013-03-01 12:07:52 +01:00
for (int i = 0; i < 2; i++) {
Dictionary::Ptr descs;
ConfigItem::Ptr item;
2013-02-19 23:02:08 +01:00
if (i == 0) {
/* Host notification descs */
descs = host->Get("notifications");
item = hostItem;
} else {
/* Service notification descs */
descs = Get("notifications");
item = serviceItem;
}
2013-02-19 23:02:08 +01:00
if (!descs)
continue;
ObjectLock olock(descs);
2013-02-26 10:13:54 +01:00
String nfcname;
Value nfcdesc;
BOOST_FOREACH(boost::tie(nfcname, nfcdesc), descs) {
2013-03-16 21:18:53 +01:00
std::ostringstream namebuf;
2013-03-04 15:52:42 +01:00
namebuf << GetName() << "-" << nfcname;
String name = namebuf.str();
2013-03-04 15:52:42 +01:00
ConfigItemBuilder::Ptr builder = boost::make_shared<ConfigItemBuilder>(item->GetDebugInfo());
builder->SetType("Notification");
builder->SetName(name);
2013-03-04 15:52:42 +01:00
builder->AddExpression("host_name", OperatorSet, host->GetName());
builder->AddExpression("service", OperatorSet, GetShortName());
2013-03-14 12:17:46 +01:00
if (!nfcdesc.IsObjectType<Dictionary>())
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("Notification description must be a dictionary."));
2013-03-14 12:17:46 +01:00
Dictionary::Ptr notification = nfcdesc;
2013-03-14 12:17:46 +01:00
Array::Ptr templates = notification->Get("templates");
2013-03-01 12:07:52 +01:00
2013-03-14 12:17:46 +01:00
if (templates) {
ObjectLock tlock(templates);
2013-03-14 12:17:46 +01:00
BOOST_FOREACH(const Value& tmpl, templates) {
builder->AddParent(tmpl);
}
}
/* Clone attributes from the host/service object. */
std::set<String, string_iless> keys;
keys.insert("users");
keys.insert("groups");
keys.insert("notification_interval");
ExpressionList::Ptr svc_exprl = boost::make_shared<ExpressionList>();
item->GetLinkedExpressionList()->ExtractFiltered(keys, svc_exprl);
builder->AddExpressionList(svc_exprl);
/* Clone attributes from the notification expression list. */
std::vector<String> path;
path.push_back("notifications");
path.push_back(nfcname);
ExpressionList::Ptr nfc_exprl = boost::make_shared<ExpressionList>();
item->GetLinkedExpressionList()->ExtractPath(path, nfc_exprl);
builder->AddExpressionList(nfc_exprl);
2013-03-14 12:17:46 +01:00
ConfigItem::Ptr notificationItem = builder->Compile();
2013-03-02 09:07:47 +01:00
notificationItem->Commit();
newNotifications->Set(name, notificationItem);
}
}
if (oldNotifications) {
2013-03-01 12:07:52 +01:00
ObjectLock olock(oldNotifications);
ConfigItem::Ptr notification;
2013-03-15 18:21:29 +01:00
BOOST_FOREACH(boost::tie(boost::tuples::ignore, notification), oldNotifications) {
if (!notification)
continue;
if (!newNotifications->Contains(notification->GetName()))
notification->Unregister();
}
}
2013-02-26 10:13:54 +01:00
{
2013-03-04 15:52:42 +01:00
ObjectLock olock(this);
m_SlaveNotifications = newNotifications;
2013-02-26 10:13:54 +01:00
}
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
bool Service::GetEnableNotifications(void) const
{
if (m_EnableNotifications.IsEmpty())
return true;
else
return m_EnableNotifications;
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
void Service::SetEnableNotifications(bool enabled)
{
m_EnableNotifications = enabled;
Touch("enable_notifications");
}
/**
* @threadsafety Always.
*/
bool Service::GetForceNextNotification(void) const
{
if (m_ForceNextNotification.IsEmpty())
return false;
return static_cast<bool>(m_ForceNextNotification);
}
/**
* @threadsafety Always.
*/
void Service::SetForceNextNotification(bool forced)
{
m_ForceNextNotification = forced ? 1 : 0;
Touch("force_next_notification");
}