icinga2/lib/icinga/service-comment.cpp

246 lines
6.3 KiB
C++
Raw Normal View History

2013-01-29 16:29:09 +01:00
/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
2013-01-29 16:29:09 +01:00
* *
* 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"
#include "base/dynamictype.h"
#include "base/objectlock.h"
#include "base/logger_fwd.h"
2013-03-18 11:02:18 +01:00
#include "base/timer.h"
2013-03-25 18:36:15 +01:00
#include "base/utility.h"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
2013-03-18 11:02:18 +01:00
#include <boost/tuple/tuple.hpp>
2013-01-29 16:29:09 +01:00
using namespace icinga;
2013-03-18 11:02:18 +01:00
static int l_NextCommentID = 1;
static boost::mutex l_CommentMutex;
static std::map<int, String> l_LegacyCommentsCache;
static std::map<String, Service::WeakPtr> l_CommentsCache;
static Timer::Ptr l_CommentsExpireTimer;
2013-01-29 16:29:09 +01:00
2013-08-28 14:59:41 +02:00
boost::signals2::signal<void (const Service::Ptr&, const Dictionary::Ptr&, const String&)> Service::OnCommentAdded;
boost::signals2::signal<void (const Service::Ptr&, const Dictionary::Ptr&, const String&)> Service::OnCommentRemoved;
int Service::GetNextCommentID(void)
2013-01-29 16:29:09 +01:00
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_CommentMutex);
2013-03-02 09:07:47 +01:00
2013-03-18 11:02:18 +01:00
return l_NextCommentID;
2013-01-29 16:29:09 +01:00
}
String Service::AddComment(CommentType entryType, const String& author,
2013-08-28 14:59:41 +02:00
const String& text, double expireTime, const String& id, const String& authority)
2013-01-29 16:29:09 +01:00
{
2013-08-28 14:59:41 +02:00
String uid;
if (id.IsEmpty())
uid = Utility::NewUniqueID();
else
uid = id;
Dictionary::Ptr comment = make_shared<Dictionary>();
2013-08-28 14:59:41 +02:00
comment->Set("id", uid);
2013-01-29 16:29:09 +01:00
comment->Set("entry_time", Utility::GetTime());
comment->Set("entry_type", entryType);
comment->Set("author", author);
comment->Set("text", text);
comment->Set("expire_time", expireTime);
int legacy_id;
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_CommentMutex);
legacy_id = l_NextCommentID++;
}
comment->Set("legacy_id", legacy_id);
2013-01-29 16:29:09 +01:00
2013-10-26 09:41:45 +02:00
GetComments()->Set(uid, comment);
2013-01-29 16:29:09 +01:00
{
boost::mutex::scoped_lock lock(l_CommentMutex);
2013-08-28 14:59:41 +02:00
l_LegacyCommentsCache[legacy_id] = uid;
l_CommentsCache[uid] = GetSelf();
}
2013-09-01 06:01:27 +02:00
Utility::QueueAsyncCallback(boost::bind(boost::ref(OnCommentAdded), GetSelf(), comment, authority));
2013-08-28 14:59:41 +02:00
return uid;
2013-01-29 16:29:09 +01:00
}
void Service::RemoveAllComments(void)
2013-01-29 16:29:09 +01:00
{
2013-08-28 14:59:41 +02:00
std::vector<String> ids;
2013-10-26 09:41:45 +02:00
Dictionary::Ptr comments = GetComments();
2013-08-28 14:59:41 +02:00
ObjectLock olock(comments);
String id;
BOOST_FOREACH(boost::tie(id, boost::tuples::ignore), comments) {
ids.push_back(id);
}
2013-08-28 14:59:41 +02:00
BOOST_FOREACH(id, ids) {
RemoveComment(id);
}
2013-01-29 16:29:09 +01:00
}
2013-08-28 14:59:41 +02:00
void Service::RemoveComment(const String& id, const String& authority)
2013-01-29 16:29:09 +01:00
{
Service::Ptr owner = GetOwnerByCommentID(id);
2013-01-29 16:29:09 +01:00
if (!owner)
return;
2013-01-29 16:29:09 +01:00
2013-03-02 09:07:47 +01:00
Dictionary::Ptr comments = owner->GetComments();
2013-01-29 16:29:09 +01:00
2013-08-28 14:59:41 +02:00
ObjectLock olock(owner);
2013-08-28 14:59:41 +02:00
Dictionary::Ptr comment = comments->Get(id);
2013-08-28 14:59:41 +02:00
if (!comment)
return;
2013-08-28 14:59:41 +02:00
int legacy_id = comment->Get("legacy_id");
2013-08-28 14:59:41 +02:00
comments->Remove(id);
2013-08-28 14:59:41 +02:00
{
boost::mutex::scoped_lock lock(l_CommentMutex);
l_LegacyCommentsCache.erase(legacy_id);
l_CommentsCache.erase(id);
2013-01-29 16:29:09 +01:00
}
2013-08-28 14:59:41 +02:00
2013-09-01 06:01:27 +02:00
Utility::QueueAsyncCallback(boost::bind(boost::ref(OnCommentRemoved), owner, comment, authority));
2013-01-29 16:29:09 +01:00
}
String Service::GetCommentIDFromLegacyID(int id)
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_CommentMutex);
2013-03-18 11:02:18 +01:00
std::map<int, String>::iterator it = l_LegacyCommentsCache.find(id);
2013-03-18 11:02:18 +01:00
if (it == l_LegacyCommentsCache.end())
return Empty;
return it->second;
}
Service::Ptr Service::GetOwnerByCommentID(const String& id)
2013-01-29 16:29:09 +01:00
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_CommentMutex);
2013-01-29 16:29:09 +01:00
2013-03-18 11:02:18 +01:00
return l_CommentsCache[id].lock();
2013-01-29 16:29:09 +01:00
}
Dictionary::Ptr Service::GetCommentByID(const String& id)
2013-01-29 16:29:09 +01:00
{
Service::Ptr owner = GetOwnerByCommentID(id);
2013-01-29 16:29:09 +01:00
if (!owner)
return Dictionary::Ptr();
2013-01-29 16:29:09 +01:00
2013-03-02 09:07:47 +01:00
Dictionary::Ptr comments = owner->GetComments();
2013-01-29 16:29:09 +01:00
2013-03-02 09:07:47 +01:00
if (comments)
return comments->Get(id);
2013-01-29 16:29:09 +01:00
return Dictionary::Ptr();
}
bool Service::IsCommentExpired(const Dictionary::Ptr& comment)
2013-01-30 14:28:13 +01:00
{
double expire_time = comment->Get("expire_time");
return (expire_time != 0 && expire_time < Utility::GetTime());
}
void Service::AddCommentsToCache(void)
2013-02-27 15:23:25 +01:00
{
2013-03-16 21:18:53 +01:00
Log(LogDebug, "icinga", "Updating Service comments cache.");
Dictionary::Ptr comments = GetComments();
ObjectLock olock(comments);
2013-01-29 16:29:09 +01:00
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_CommentMutex);
String id;
Dictionary::Ptr comment;
BOOST_FOREACH(boost::tie(id, comment), comments) {
int legacy_id = comment->Get("legacy_id");
if (legacy_id >= l_NextCommentID)
l_NextCommentID = legacy_id + 1;
2013-01-30 14:28:13 +01:00
l_LegacyCommentsCache[legacy_id] = id;
l_CommentsCache[id] = GetSelf();
2013-01-30 14:28:13 +01:00
}
}
void Service::RemoveCommentsByType(int type)
{
Dictionary::Ptr comments = GetComments();
std::vector<String> removedComments;
{
ObjectLock olock(comments);
String id;
Dictionary::Ptr comment;
BOOST_FOREACH(boost::tie(id, comment), comments) {
if (comment->Get("entry_type") == type)
removedComments.push_back(id);
}
}
2013-08-28 14:59:41 +02:00
BOOST_FOREACH(const String& id, removedComments) {
RemoveComment(id);
}
}
void Service::RemoveExpiredComments(void)
2013-01-30 14:28:13 +01:00
{
2013-03-02 09:07:47 +01:00
Dictionary::Ptr comments = GetComments();
2013-01-30 14:28:13 +01:00
2013-03-16 21:18:53 +01:00
std::vector<String> expiredComments;
2013-01-30 14:28:13 +01:00
2013-03-04 15:52:42 +01:00
{
ObjectLock olock(comments);
2013-03-04 15:52:42 +01:00
String id;
Dictionary::Ptr comment;
BOOST_FOREACH(boost::tie(id, comment), comments) {
2013-03-04 15:52:42 +01:00
if (IsCommentExpired(comment))
expiredComments.push_back(id);
}
2013-01-30 14:28:13 +01:00
}
2013-08-28 14:59:41 +02:00
BOOST_FOREACH(const String& id, expiredComments) {
RemoveComment(id);
2013-01-30 14:28:13 +01:00
}
}
void Service::CommentsExpireTimerHandler(void)
2013-01-30 14:28:13 +01:00
{
BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjects<Service>()) {
service->RemoveExpiredComments();
2013-01-30 14:28:13 +01:00
}
2013-01-29 16:29:09 +01:00
}