blob: 5797d93ee7429f332112edb825c75a58d19d8388 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "livestatus/timeperiodstable.hpp"
#include "icinga/icingaapplication.hpp"
#include "icinga/timeperiod.hpp"
#include "base/configtype.hpp"
#include "base/objectlock.hpp"
#include "base/convert.hpp"
#include "base/utility.hpp"
#include <boost/algorithm/string/replace.hpp>
using namespace icinga;
TimePeriodsTable::TimePeriodsTable()
{
AddColumns(this);
}
void TimePeriodsTable::AddColumns(Table *table, const String& prefix,
const Column::ObjectAccessor& objectAccessor)
{
table->AddColumn(prefix + "name", Column(&TimePeriodsTable::NameAccessor, objectAccessor));
table->AddColumn(prefix + "alias", Column(&TimePeriodsTable::AliasAccessor, objectAccessor));
table->AddColumn(prefix + "in", Column(&TimePeriodsTable::InAccessor, objectAccessor));
}
String TimePeriodsTable::GetName() const
{
return "timeperiod";
}
String TimePeriodsTable::GetPrefix() const
{
return "timeperiod";
}
void TimePeriodsTable::FetchRows(const AddRowFunction& addRowFn)
{
for (const TimePeriod::Ptr& tp : ConfigType::GetObjectsByType<TimePeriod>()) {
if (!addRowFn(tp, LivestatusGroupByNone, Empty))
return;
}
}
Value TimePeriodsTable::NameAccessor(const Value& row)
{
return static_cast<TimePeriod::Ptr>(row)->GetName();
}
Value TimePeriodsTable::AliasAccessor(const Value& row)
{
return static_cast<TimePeriod::Ptr>(row)->GetDisplayName();
}
Value TimePeriodsTable::InAccessor(const Value& row)
{
return (static_cast<TimePeriod::Ptr>(row)->IsInside(Utility::GetTime()) ? 1 : 0);
}
|