icinga2/lib/livestatus/commentstable.cpp

219 lines
6.6 KiB
C++
Raw Normal View History

2013-03-10 22:20:13 +01:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
2013-03-10 22:20:13 +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 "livestatus/commentstable.hpp"
#include "livestatus/hoststable.hpp"
2014-05-25 16:23:35 +02:00
#include "livestatus/servicestable.hpp"
#include "icinga/service.hpp"
#include "base/configtype.hpp"
2014-05-25 16:23:35 +02:00
#include "base/objectlock.hpp"
2013-03-15 18:21:29 +01:00
#include <boost/tuple/tuple.hpp>
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
2013-03-10 22:20:13 +01:00
using namespace icinga;
CommentsTable::CommentsTable(void)
{
AddColumns(this);
}
void CommentsTable::AddColumns(Table *table, const String& prefix,
const Column::ObjectAccessor& objectAccessor)
{
table->AddColumn(prefix + "author", Column(&CommentsTable::AuthorAccessor, objectAccessor));
table->AddColumn(prefix + "comment", Column(&CommentsTable::CommentAccessor, objectAccessor));
table->AddColumn(prefix + "id", Column(&CommentsTable::IdAccessor, objectAccessor));
table->AddColumn(prefix + "entry_time", Column(&CommentsTable::EntryTimeAccessor, objectAccessor));
table->AddColumn(prefix + "type", Column(&CommentsTable::TypeAccessor, objectAccessor));
table->AddColumn(prefix + "is_service", Column(&CommentsTable::IsServiceAccessor, objectAccessor));
2013-10-03 18:58:48 +02:00
table->AddColumn(prefix + "persistent", Column(&Table::OneAccessor, objectAccessor));
table->AddColumn(prefix + "source", Column(&Table::OneAccessor, objectAccessor));
table->AddColumn(prefix + "entry_type", Column(&CommentsTable::EntryTypeAccessor, objectAccessor));
table->AddColumn(prefix + "expires", Column(&CommentsTable::ExpiresAccessor, objectAccessor));
table->AddColumn(prefix + "expire_time", Column(&CommentsTable::ExpireTimeAccessor, objectAccessor));
2013-03-10 22:20:13 +01:00
/* order is important - host w/o services must not be empty */
ServicesTable::AddColumns(table, "service_", boost::bind(&CommentsTable::ServiceAccessor, _1, objectAccessor));
HostsTable::AddColumns(table, "host_", boost::bind(&CommentsTable::HostAccessor, _1, objectAccessor));
2013-03-10 22:20:13 +01:00
}
String CommentsTable::GetName(void) const
{
return "comments";
}
String CommentsTable::GetPrefix(void) const
{
return "comment";
}
2013-03-15 18:21:29 +01:00
void CommentsTable::FetchRows(const AddRowFunction& addRowFn)
2013-03-10 22:20:13 +01:00
{
BOOST_FOREACH(const Host::Ptr& host, ConfigType::GetObjectsByType<Host>()) {
2014-04-03 15:36:13 +02:00
Dictionary::Ptr comments = host->GetComments();
ObjectLock olock(comments);
String id;
Comment::Ptr comment;
BOOST_FOREACH(tie(id, comment), comments) {
if (Host::GetOwnerByCommentID(id) == host) {
if (!addRowFn(comment, LivestatusGroupByNone, Empty))
return;
}
2014-04-03 15:36:13 +02:00
}
}
BOOST_FOREACH(const Service::Ptr& service, ConfigType::GetObjectsByType<Service>()) {
2013-03-10 22:20:13 +01:00
Dictionary::Ptr comments = service->GetComments();
ObjectLock olock(comments);
String id;
Comment::Ptr comment;
2014-04-03 15:36:13 +02:00
BOOST_FOREACH(tie(id, comment), comments) {
if (Service::GetOwnerByCommentID(id) == service) {
if (!addRowFn(comment, LivestatusGroupByNone, Empty))
return;
}
2013-03-10 22:20:13 +01:00
}
}
}
Object::Ptr CommentsTable::HostAccessor(const Value& row, const Column::ObjectAccessor&)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
Checkable::Ptr checkable = Checkable::GetOwnerByCommentID(comment->GetId());
2015-01-27 10:50:15 +01:00
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
return host;
}
2014-05-22 09:02:44 +02:00
Object::Ptr CommentsTable::ServiceAccessor(const Value& row, const Column::ObjectAccessor&)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
Checkable::Ptr checkable = Checkable::GetOwnerByCommentID(comment->GetId());
2015-01-27 10:50:15 +01:00
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
return service;
}
Value CommentsTable::AuthorAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetAuthor();
}
Value CommentsTable::CommentAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetText();
}
Value CommentsTable::IdAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetLegacyId();
}
Value CommentsTable::EntryTimeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return static_cast<int>(comment->GetEntryTime());
}
Value CommentsTable::TypeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
2014-04-03 15:36:13 +02:00
Checkable::Ptr checkable = Checkable::GetOwnerByCommentID(comment->GetId());
2014-04-03 15:36:13 +02:00
if (!checkable)
return Empty;
2014-04-03 15:36:13 +02:00
if (dynamic_pointer_cast<Host>(checkable))
return 1;
else
return 2;
}
Value CommentsTable::IsServiceAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
2014-04-03 15:36:13 +02:00
Checkable::Ptr checkable = Checkable::GetOwnerByCommentID(comment->GetId());
2014-04-03 15:36:13 +02:00
if (!checkable)
return Empty;
2014-04-03 15:36:13 +02:00
return (dynamic_pointer_cast<Host>(checkable) ? 0 : 1);
}
Value CommentsTable::EntryTypeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetEntryType();
}
Value CommentsTable::ExpiresAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return comment->GetExpireTime() != 0;
}
Value CommentsTable::ExpireTimeAccessor(const Value& row)
{
Comment::Ptr comment = static_cast<Comment::Ptr>(row);
if (!comment)
return Empty;
return static_cast<int>(comment->GetExpireTime());
}