Refactoring: Changed all check parameters starting with a 'p' to the new rulespec...
[check_mk.git] / livestatus / src / ServiceListColumn.h
blob5f857ade92136dd74daf6ab6f1f9370ba0806fd1
1 // +------------------------------------------------------------------+
2 // | ____ _ _ __ __ _ __ |
3 // | / ___| |__ ___ ___| | __ | \/ | |/ / |
4 // | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
5 // | | |___| | | | __/ (__| < | | | | . \ |
6 // | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
7 // | |
8 // | Copyright Mathias Kettner 2014 mk@mathias-kettner.de |
9 // +------------------------------------------------------------------+
11 // This file is part of Check_MK.
12 // The official homepage is at http://mathias-kettner.de/check_mk.
14 // check_mk is free software; you can redistribute it and/or modify it
15 // under the terms of the GNU General Public License as published by
16 // the Free Software Foundation in version 2. check_mk is distributed
17 // in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
18 // out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
19 // PARTICULAR PURPOSE. See the GNU General Public License for more de-
20 // tails. You should have received a copy of the GNU General Public
21 // License along with GNU Make; see the file COPYING. If not, write
22 // to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23 // Boston, MA 02110-1301 USA.
25 #ifndef ServiceListColumn_h
26 #define ServiceListColumn_h
28 #include "config.h" // IWYU pragma: keep
29 #include <chrono>
30 #include <cstdint>
31 #include <string>
32 #include <utility>
33 #include <vector>
34 #include "ListColumn.h"
35 class MonitoringCore;
36 class Row;
37 class RowRenderer;
38 enum class ServiceState;
40 #ifdef CMC
41 #include "cmc.h"
42 #else
43 #include "nagios.h"
44 #endif
46 class ServiceListColumn : public ListColumn {
47 public:
48 ServiceListColumn(const std::string &name, const std::string &description,
49 int indirect_offset, int extra_offset,
50 int extra_extra_offset, int offset, MonitoringCore *mc,
51 int info_depth)
52 : ListColumn(name, description, indirect_offset, extra_offset,
53 extra_extra_offset, offset)
54 , _mc(mc)
55 , _info_depth(info_depth) {}
57 void output(Row row, RowRenderer &r, const contact *auth_user,
58 std::chrono::seconds timezone_offset) const override;
60 std::vector<std::string> getValue(
61 Row row, const contact *auth_user,
62 std::chrono::seconds timezone_offset) const override;
64 private:
65 MonitoringCore *_mc;
66 int _info_depth;
68 struct Entry {
69 Entry(std::string d, ServiceState cs, bool hbc, std::string po,
70 ServiceState lhs, uint32_t ca, uint32_t mca, uint32_t sdt, bool a,
71 bool spa)
72 : description(std::move(d))
73 , current_state(cs)
74 , has_been_checked(hbc)
75 , plugin_output(std::move(po))
76 , last_hard_state(lhs)
77 , current_attempt(ca)
78 , max_check_attempts(mca)
79 , scheduled_downtime_depth(sdt)
80 , acknowledged(a)
81 , service_period_active(spa) {}
83 std::string description;
84 ServiceState current_state;
85 bool has_been_checked;
86 std::string plugin_output;
87 ServiceState last_hard_state;
88 uint32_t current_attempt;
89 uint32_t max_check_attempts;
90 uint32_t scheduled_downtime_depth;
91 bool acknowledged;
92 bool service_period_active;
95 std::vector<Entry> getEntries(Row row, const contact *auth_user) const;
98 #endif // ServiceListColumn_h