]> granicus.if.org Git - icinga2/blob - lib/livestatus/endpointstable.cpp
Update copyright year
[icinga2] / lib / livestatus / endpointstable.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/endpointstable.hpp"
21 #include "icinga/host.hpp"
22 #include "icinga/service.hpp"
23 #include "icinga/icingaapplication.hpp"
24 #include "remote/endpoint.hpp"
25 #include "base/dynamictype.hpp"
26 #include "base/objectlock.hpp"
27 #include "base/convert.hpp"
28 #include "base/utility.hpp"
29 #include <boost/algorithm/string/classification.hpp>
30 #include <boost/foreach.hpp>
31 #include <boost/tuple/tuple.hpp>
32 #include <boost/algorithm/string/replace.hpp>
33 #include <boost/algorithm/string/split.hpp>
34
35 using namespace icinga;
36
37 EndpointsTable::EndpointsTable(void)
38 {
39         AddColumns(this);
40 }
41
42 void EndpointsTable::AddColumns(Table *table, const String& prefix,
43     const Column::ObjectAccessor& objectAccessor)
44 {
45         table->AddColumn(prefix + "name", Column(&EndpointsTable::NameAccessor, objectAccessor));
46         table->AddColumn(prefix + "identity", Column(&EndpointsTable::IdentityAccessor, objectAccessor));
47         table->AddColumn(prefix + "node", Column(&EndpointsTable::NodeAccessor, objectAccessor));
48         table->AddColumn(prefix + "is_connected", Column(&EndpointsTable::IsConnectedAccessor, objectAccessor));
49 }
50
51 String EndpointsTable::GetName(void) const
52 {
53         return "endpoints";
54 }
55
56 String EndpointsTable::GetPrefix(void) const
57 {
58         return "endpoint";
59 }
60
61 void EndpointsTable::FetchRows(const AddRowFunction& addRowFn)
62 {
63         BOOST_FOREACH(const Endpoint::Ptr& endpoint, DynamicType::GetObjectsByType<Endpoint>()) {
64                 addRowFn(endpoint);
65         }
66 }
67
68 Value EndpointsTable::NameAccessor(const Value& row)
69 {
70         Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
71
72         if (!endpoint)
73                 return Empty;
74
75         return endpoint->GetName();
76 }
77
78 Value EndpointsTable::IdentityAccessor(const Value& row)
79 {
80         Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
81
82         if (!endpoint)
83                 return Empty;
84
85         return endpoint->GetName();
86 }
87
88 Value EndpointsTable::NodeAccessor(const Value& row)
89 {
90         Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
91
92         if (!endpoint)
93                 return Empty;
94
95         return IcingaApplication::GetInstance()->GetNodeName();
96 }
97
98 Value EndpointsTable::IsConnectedAccessor(const Value& row)
99 {
100         Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
101
102         if (!endpoint)
103                 return Empty;
104
105         unsigned int is_connected = endpoint->IsConnected() ? 1 : 0;
106
107         /* if identity is equal to node, fake is_connected */
108         if (endpoint->GetName() == IcingaApplication::GetInstance()->GetNodeName())
109                 is_connected = 1;
110
111         return is_connected;
112 }
113
114
115