]> granicus.if.org Git - icinga2/blob - lib/livestatus/downtimestable.cpp
Update copyright year
[icinga2] / lib / livestatus / downtimestable.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org)    *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "livestatus/downtimestable.hpp"
21 #include "livestatus/hoststable.hpp"
22 #include "livestatus/servicestable.hpp"
23 #include "icinga/service.hpp"
24 #include "base/dynamictype.hpp"
25 #include "base/objectlock.hpp"
26 #include <boost/tuple/tuple.hpp>
27 #include <boost/foreach.hpp>
28
29 using namespace icinga;
30
31 DowntimesTable::DowntimesTable(void)
32 {
33         AddColumns(this);
34 }
35
36 void DowntimesTable::AddColumns(Table *table, const String& prefix,
37     const Column::ObjectAccessor& objectAccessor)
38 {
39         table->AddColumn(prefix + "author", Column(&DowntimesTable::AuthorAccessor, objectAccessor));
40         table->AddColumn(prefix + "comment", Column(&DowntimesTable::CommentAccessor, objectAccessor));
41         table->AddColumn(prefix + "id", Column(&DowntimesTable::IdAccessor, objectAccessor));
42         table->AddColumn(prefix + "entry_time", Column(&DowntimesTable::EntryTimeAccessor, objectAccessor));
43         table->AddColumn(prefix + "type", Column(&DowntimesTable::TypeAccessor, objectAccessor));
44         table->AddColumn(prefix + "is_service", Column(&DowntimesTable::IsServiceAccessor, objectAccessor));
45         table->AddColumn(prefix + "start_time", Column(&DowntimesTable::StartTimeAccessor, objectAccessor));
46         table->AddColumn(prefix + "end_time", Column(&DowntimesTable::EndTimeAccessor, objectAccessor));
47         table->AddColumn(prefix + "fixed", Column(&DowntimesTable::FixedAccessor, objectAccessor));
48         table->AddColumn(prefix + "duration", Column(&DowntimesTable::DurationAccessor, objectAccessor));
49         table->AddColumn(prefix + "triggered_by", Column(&DowntimesTable::TriggeredByAccessor, objectAccessor));
50
51         /* order is important - host w/o services must not be empty */
52         ServicesTable::AddColumns(table, "service_", boost::bind(&DowntimesTable::ServiceAccessor, _1, objectAccessor));
53         HostsTable::AddColumns(table, "host_", boost::bind(&DowntimesTable::HostAccessor, _1, objectAccessor));
54 }
55
56 String DowntimesTable::GetName(void) const
57 {
58         return "downtimes";
59 }
60
61 String DowntimesTable::GetPrefix(void) const
62 {
63         return "downtime";
64 }
65
66 void DowntimesTable::FetchRows(const AddRowFunction& addRowFn)
67 {
68         BOOST_FOREACH(const Host::Ptr& host, DynamicType::GetObjectsByType<Host>()) {
69                 Dictionary::Ptr downtimes = host->GetDowntimes();
70
71                 ObjectLock olock(downtimes);
72
73                 String id;
74                 Downtime::Ptr downtime;
75                 BOOST_FOREACH(boost::tie(id, downtime), downtimes) {
76                         if (Host::GetOwnerByDowntimeID(id) == host)
77                                 addRowFn(downtime);
78                 }
79         }
80
81         BOOST_FOREACH(const Service::Ptr& service, DynamicType::GetObjectsByType<Service>()) {
82                 Dictionary::Ptr downtimes = service->GetDowntimes();
83
84                 ObjectLock olock(downtimes);
85
86                 String id;
87                 Downtime::Ptr downtime;
88                 BOOST_FOREACH(boost::tie(id, downtime), downtimes) {
89                         if (Service::GetOwnerByDowntimeID(id) == service)
90                                 addRowFn(downtime);
91                 }
92         }
93 }
94
95 Object::Ptr DowntimesTable::HostAccessor(const Value& row, const Column::ObjectAccessor&)
96 {
97         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
98
99         Checkable::Ptr checkable = Checkable::GetOwnerByDowntimeID(downtime->GetId());
100
101         Host::Ptr host;
102         Service::Ptr service;
103         tie(host, service) = GetHostService(checkable);
104
105         return host;
106 }
107
108 Object::Ptr DowntimesTable::ServiceAccessor(const Value& row, const Column::ObjectAccessor&)
109 {
110         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
111
112         Checkable::Ptr checkable = Checkable::GetOwnerByDowntimeID(downtime->GetId());
113
114         Host::Ptr host;
115         Service::Ptr service;
116         tie(host, service) = GetHostService(checkable);
117
118         return service;
119 }
120
121 Value DowntimesTable::AuthorAccessor(const Value& row)
122 {
123         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
124
125         return downtime->GetAuthor();
126 }
127
128 Value DowntimesTable::CommentAccessor(const Value& row)
129 {
130         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
131
132         return downtime->GetComment();
133 }
134
135 Value DowntimesTable::IdAccessor(const Value& row)
136 {
137         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
138
139         return downtime->GetLegacyId();
140 }
141
142 Value DowntimesTable::EntryTimeAccessor(const Value& row)
143 {
144         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
145
146         return static_cast<int>(downtime->GetEntryTime());
147 }
148
149 Value DowntimesTable::TypeAccessor(const Value& row)
150 {
151         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
152         // 1 .. active, 0 .. pending
153         return (downtime->IsActive() ? 1 : 0);
154 }
155
156 Value DowntimesTable::IsServiceAccessor(const Value& row)
157 {
158         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
159         Checkable::Ptr checkable = Checkable::GetOwnerByDowntimeID(downtime->GetId());
160
161         return (dynamic_pointer_cast<Host>(checkable) ? 0 : 1);
162 }
163
164 Value DowntimesTable::StartTimeAccessor(const Value& row)
165 {
166         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
167
168         return static_cast<int>(downtime->GetStartTime());
169 }
170
171 Value DowntimesTable::EndTimeAccessor(const Value& row)
172 {
173         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
174
175         return static_cast<int>(downtime->GetEndTime());
176 }
177
178 Value DowntimesTable::FixedAccessor(const Value& row)
179 {
180         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
181
182         return downtime->GetFixed();
183 }
184
185 Value DowntimesTable::DurationAccessor(const Value& row)
186 {
187         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
188
189         return downtime->GetDuration();
190 }
191
192 Value DowntimesTable::TriggeredByAccessor(const Value& row)
193 {
194         Downtime::Ptr downtime = static_cast<Downtime::Ptr>(row);
195
196         return downtime->GetTriggeredByLegacyId();
197 }