icinga2/lib/icinga/checkable-comment.cpp

245 lines
6.2 KiB
C++
Raw Normal View History

2013-01-29 16:29:09 +01:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 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. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "icinga/service.hpp"
#include "base/dynamictype.hpp"
#include "base/objectlock.hpp"
#include "base/timer.hpp"
#include "base/utility.hpp"
2014-10-19 14:21:12 +02:00
#include "base/logger.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.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, Checkable::Ptr> l_CommentsCache;
2013-03-18 11:02:18 +01:00
static Timer::Ptr l_CommentsExpireTimer;
2013-01-29 16:29:09 +01:00
boost::signals2::signal<void (const Checkable::Ptr&, const Comment::Ptr&, const MessageOrigin::Ptr&)> Checkable::OnCommentAdded;
boost::signals2::signal<void (const Checkable::Ptr&, const Comment::Ptr&, const MessageOrigin::Ptr&)> Checkable::OnCommentRemoved;
2014-04-03 15:36:13 +02:00
int Checkable::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
}
2014-04-03 15:36:13 +02:00
String Checkable::AddComment(CommentType entryType, const String& author,
const String& text, double expireTime, const String& id, const MessageOrigin::Ptr& origin)
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;
Comment::Ptr comment = new Comment();
comment->SetId(uid);;
comment->SetEntryTime(Utility::GetTime());
comment->SetEntryType(entryType);
comment->SetAuthor(author);
comment->SetText(text);
comment->SetExpireTime(expireTime);
int legacy_id;
{
2013-03-18 11:02:18 +01:00
boost::mutex::scoped_lock lock(l_CommentMutex);
legacy_id = l_NextCommentID++;
}
comment->SetLegacyId(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] = this;
}
OnCommentAdded(this, comment, origin);
2013-08-28 14:59:41 +02:00
return uid;
2013-01-29 16:29:09 +01:00
}
2014-04-03 15:36:13 +02:00
void Checkable::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);
BOOST_FOREACH(const Dictionary::Pair& kv, comments) {
ids.push_back(kv.first);
}
}
BOOST_FOREACH(const String& id, ids) {
2013-08-28 14:59:41 +02:00
RemoveComment(id);
}
2013-01-29 16:29:09 +01:00
}
void Checkable::RemoveComment(const String& id, const MessageOrigin::Ptr& origin)
2013-01-29 16:29:09 +01:00
{
2014-04-03 15:36:13 +02:00
Checkable::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);
Comment::Ptr comment = comments->Get(id);
2013-08-28 14:59:41 +02:00
if (!comment)
return;
int legacy_id = comment->GetLegacyId();
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
OnCommentRemoved(owner, comment, origin);
2013-01-29 16:29:09 +01:00
}
2014-04-03 15:36:13 +02:00
String Checkable::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;
}
2014-04-03 15:36:13 +02:00
Checkable::Ptr Checkable::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
return l_CommentsCache[id];
2013-01-29 16:29:09 +01:00
}
2014-04-03 15:36:13 +02:00
Comment::Ptr Checkable::GetCommentByID(const String& id)
2013-01-29 16:29:09 +01:00
{
2014-04-03 15:36:13 +02:00
Checkable::Ptr owner = GetOwnerByCommentID(id);
2013-01-29 16:29:09 +01:00
if (!owner)
return Comment::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 Comment::Ptr();
2013-01-29 16:29:09 +01:00
}
2014-04-03 15:36:13 +02:00
void Checkable::AddCommentsToCache(void)
2013-02-27 15:23:25 +01:00
{
2014-12-19 12:19:28 +01:00
#ifdef I2_DEBUG
Log(LogDebug, "Checkable", "Updating Checkable comments cache.");
2014-12-19 12:19:28 +01:00
#endif /* I2_DEBUG */
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);
BOOST_FOREACH(const Dictionary::Pair& kv, comments) {
Comment::Ptr comment = kv.second;
int legacy_id = comment->GetLegacyId();
if (legacy_id >= l_NextCommentID)
l_NextCommentID = legacy_id + 1;
2013-01-30 14:28:13 +01:00
l_LegacyCommentsCache[legacy_id] = kv.first;
l_CommentsCache[kv.first] = this;
2013-01-30 14:28:13 +01:00
}
}
2014-04-03 15:36:13 +02:00
void Checkable::RemoveCommentsByType(int type)
{
Dictionary::Ptr comments = GetComments();
std::vector<String> removedComments;
{
ObjectLock olock(comments);
BOOST_FOREACH(const Dictionary::Pair& kv, comments) {
Comment::Ptr comment = kv.second;
if (comment->GetEntryType() == type)
removedComments.push_back(kv.first);
}
}
2013-08-28 14:59:41 +02:00
BOOST_FOREACH(const String& id, removedComments) {
RemoveComment(id);
}
}
2014-04-03 15:36:13 +02:00
void Checkable::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);
BOOST_FOREACH(const Dictionary::Pair& kv, comments) {
Comment::Ptr comment = kv.second;
if (comment->IsExpired())
expiredComments.push_back(kv.first);
2013-03-04 15:52:42 +01:00
}
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
}
}
2014-04-03 15:36:13 +02:00
void Checkable::CommentsExpireTimerHandler(void)
2013-01-30 14:28:13 +01:00
{
BOOST_FOREACH(const Host::Ptr& host, DynamicType::GetObjectsByType<Host>()) {
2014-04-03 15:36:13 +02:00
host->RemoveExpiredComments();
}
BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjectsByType<Service>()) {
service->RemoveExpiredComments();
2013-01-30 14:28:13 +01:00
}
2013-01-29 16:29:09 +01:00
}