2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-07-11 13:03:14 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/timeperiodstable.hpp"
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
|
|
|
#include "icinga/timeperiod.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/utility.hpp"
|
2013-07-11 13:03:14 +02:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
TimePeriodsTable::TimePeriodsTable()
|
2013-07-11 13:03:14 +02:00
|
|
|
{
|
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TimePeriodsTable::AddColumns(Table *table, const String& prefix,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
2013-07-11 13:03:14 +02:00
|
|
|
{
|
|
|
|
table->AddColumn(prefix + "name", Column(&TimePeriodsTable::NameAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "alias", Column(&TimePeriodsTable::AliasAccessor, objectAccessor));
|
2013-07-18 15:30:39 +02:00
|
|
|
table->AddColumn(prefix + "in", Column(&TimePeriodsTable::InAccessor, objectAccessor));
|
2013-07-11 13:03:14 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String TimePeriodsTable::GetName() const
|
2013-07-11 13:03:14 +02:00
|
|
|
{
|
|
|
|
return "timeperiod";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String TimePeriodsTable::GetPrefix() const
|
2014-06-25 11:30:27 +02:00
|
|
|
{
|
|
|
|
return "timeperiod";
|
|
|
|
}
|
|
|
|
|
2013-07-11 13:03:14 +02:00
|
|
|
void TimePeriodsTable::FetchRows(const AddRowFunction& addRowFn)
|
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const TimePeriod::Ptr& tp : ConfigType::GetObjectsByType<TimePeriod>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(tp, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2013-07-11 13:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Value TimePeriodsTable::NameAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
return static_cast<TimePeriod::Ptr>(row)->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value TimePeriodsTable::AliasAccessor(const Value& row)
|
|
|
|
{
|
2013-07-18 15:30:39 +02:00
|
|
|
return static_cast<TimePeriod::Ptr>(row)->GetDisplayName();
|
2013-07-11 13:03:14 +02:00
|
|
|
}
|
|
|
|
|
2013-07-18 15:30:39 +02:00
|
|
|
Value TimePeriodsTable::InAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
return (static_cast<TimePeriod::Ptr>(row)->IsInside(Utility::GetTime()) ? 1 : 0);
|
|
|
|
}
|