]> granicus.if.org Git - icinga2/blob - lib/livestatus/table.hpp
Update copyright headers for 2016
[icinga2] / lib / livestatus / table.hpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2016 Icinga Development Team (https://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 #ifndef TABLE_H
21 #define TABLE_H
22
23 #include "livestatus/column.hpp"
24 #include "base/object.hpp"
25 #include "base/dictionary.hpp"
26 #include "base/array.hpp"
27 #include <vector>
28
29 namespace icinga
30 {
31
32 struct LivestatusRowValue {
33         Value Row;
34         LivestatusGroupByType GroupByType;
35         Value GroupByObject;
36 };
37
38
39 typedef boost::function<bool (const Value&, LivestatusGroupByType, const Object::Ptr&)> AddRowFunction;
40
41 class Filter;
42
43 /**
44  * @ingroup livestatus
45  */
46 class I2_LIVESTATUS_API Table : public Object
47 {
48 public:
49         DECLARE_PTR_TYPEDEFS(Table);
50
51         static Table::Ptr GetByName(const String& name, const String& compat_log_path = "", const unsigned long& from = 0, const unsigned long& until = 0);
52
53         virtual String GetName(void) const = 0;
54         virtual String GetPrefix(void) const = 0;
55
56         std::vector<LivestatusRowValue> FilterRows(const intrusive_ptr<Filter>& filter, int limit = -1);
57
58         void AddColumn(const String& name, const Column& column);
59         Column GetColumn(const String& name) const;
60         std::vector<String> GetColumnNames(void) const;
61
62         virtual LivestatusGroupByType GetGroupByType(void) const;
63
64 protected:
65         Table(LivestatusGroupByType type = LivestatusGroupByNone);
66
67         virtual void FetchRows(const AddRowFunction& addRowFn) = 0;
68
69         static Value ZeroAccessor(const Value&);
70         static Value OneAccessor(const Value&);
71         static Value EmptyStringAccessor(const Value&);
72         static Value EmptyArrayAccessor(const Value&);
73         static Value EmptyDictionaryAccessor(const Value&);
74
75         LivestatusGroupByType m_GroupByType;
76         Value m_GroupByObject;
77
78 private:
79         std::map<String, Column> m_Columns;
80
81         bool FilteredAddRow(std::vector<LivestatusRowValue>& rs, const intrusive_ptr<Filter>& filter, int limit, const Value& row, LivestatusGroupByType groupByType, const Object::Ptr& groupByObject);
82 };
83
84 }
85
86 #endif /* TABLE_H */
87
88 #include "livestatus/filter.hpp"