2013-03-10 22:20:13 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "livestatus/downtimestable.h"
|
2013-07-10 16:11:40 +02:00
|
|
|
#include "livestatus/servicestable.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "icinga/service.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/dynamictype.h"
|
|
|
|
#include "base/objectlock.h"
|
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;
|
|
|
|
using namespace livestatus;
|
|
|
|
|
|
|
|
DowntimesTable::DowntimesTable(void)
|
|
|
|
{
|
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DowntimesTable::AddColumns(Table *table, const String& prefix,
|
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
|
|
|
{
|
2013-07-09 17:15:38 +02:00
|
|
|
table->AddColumn(prefix + "author", Column(&DowntimesTable::AuthorAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "comment", Column(&DowntimesTable::CommentAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "id", Column(&DowntimesTable::IdAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "entry_time", Column(&DowntimesTable::EntryTimeAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "type", Column(&DowntimesTable::TypeAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "is_service", Column(&DowntimesTable::IsServiceAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "start_time", Column(&DowntimesTable::StartTimeAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "end_time", Column(&DowntimesTable::EndTimeAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "fixed", Column(&DowntimesTable::FixedAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "duration", Column(&DowntimesTable::DurationAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "triggered_by", Column(&DowntimesTable::TriggeredByAccessor, objectAccessor));
|
2013-03-10 22:20:13 +01:00
|
|
|
|
2013-07-11 11:10:56 +02:00
|
|
|
ServicesTable::AddColumns(table, "service_", boost::bind(&DowntimesTable::ServiceAccessor, _1, objectAccessor));
|
2013-03-10 22:20:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String DowntimesTable::GetName(void) const
|
|
|
|
{
|
|
|
|
return "downtimes";
|
|
|
|
}
|
|
|
|
|
2013-03-15 18:21:29 +01:00
|
|
|
void DowntimesTable::FetchRows(const AddRowFunction& addRowFn)
|
2013-03-10 22:20:13 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjects<Service>()) {
|
2013-03-10 22:20:13 +01:00
|
|
|
Dictionary::Ptr downtimes = service->GetDowntimes();
|
|
|
|
|
|
|
|
ObjectLock olock(downtimes);
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
String id;
|
|
|
|
BOOST_FOREACH(boost::tie(id, boost::tuples::ignore), downtimes) {
|
2013-07-11 08:58:11 +02:00
|
|
|
if (Service::GetOwnerByDowntimeID(id) == service)
|
|
|
|
addRowFn(id);
|
2013-03-10 22:20:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-09 17:15:38 +02:00
|
|
|
|
2013-07-11 11:10:56 +02:00
|
|
|
Object::Ptr DowntimesTable::ServiceAccessor(const Value& row, const Column::ObjectAccessor& parentObjectAccessor)
|
2013-07-10 16:11:40 +02:00
|
|
|
{
|
|
|
|
return Service::GetOwnerByDowntimeID(row);
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::AuthorAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
|
|
|
return downtime->Get("author");
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::CommentAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
|
|
|
return downtime->Get("comment");
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::IdAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
|
|
|
return downtime->Get("legacy_id");
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::EntryTimeAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
2013-07-11 10:57:21 +02:00
|
|
|
return static_cast<int>(downtime->Get("entry_time"));
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::TypeAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
// 1 .. active, 0 .. pending
|
|
|
|
return (Service::IsDowntimeActive(downtime) ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::IsServiceAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Service::Ptr svc = Service::GetOwnerByDowntimeID(row);
|
|
|
|
|
|
|
|
return (svc->IsHostCheck() ? 0 : 1);
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::StartTimeAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
2013-07-11 10:57:21 +02:00
|
|
|
return static_cast<int>(downtime->Get("start_time"));
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::EndTimeAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
2013-07-11 10:57:21 +02:00
|
|
|
return static_cast<int>(downtime->Get("end_time"));
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::FixedAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
|
|
|
return downtime->Get("fixed");
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::DurationAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
|
|
|
return downtime->Get("duration");
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value DowntimesTable::TriggeredByAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
|
|
|
Dictionary::Ptr downtime = Service::GetDowntimeByID(row);
|
|
|
|
|
|
|
|
return downtime->Get("triggered_by");
|
|
|
|
}
|