2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-03-10 09:55:46 +01:00
|
|
|
|
|
|
|
#ifndef TABLE_H
|
|
|
|
#define TABLE_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/column.hpp"
|
|
|
|
#include "base/object.hpp"
|
|
|
|
#include "base/dictionary.hpp"
|
2015-02-13 15:50:20 +01:00
|
|
|
#include "base/array.hpp"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include <vector>
|
2013-03-17 20:19:29 +01:00
|
|
|
|
2013-11-11 11:57:25 +01:00
|
|
|
namespace icinga
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
|
|
|
|
2019-08-07 15:22:09 +02:00
|
|
|
// Well, don't ask.
|
|
|
|
#define LIVESTATUS_INTERVAL_LENGTH 60.0
|
|
|
|
|
2015-02-13 15:50:20 +01:00
|
|
|
struct LivestatusRowValue {
|
|
|
|
Value Row;
|
|
|
|
LivestatusGroupByType GroupByType;
|
|
|
|
Value GroupByObject;
|
|
|
|
};
|
|
|
|
|
2017-11-21 11:52:55 +01:00
|
|
|
typedef std::function<bool (const Value&, LivestatusGroupByType, const Object::Ptr&)> AddRowFunction;
|
2013-12-18 17:19:16 +01:00
|
|
|
|
2013-03-10 15:11:32 +01:00
|
|
|
class Filter;
|
|
|
|
|
2013-03-10 09:55:46 +01:00
|
|
|
/**
|
|
|
|
* @ingroup livestatus
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class Table : public Object
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
|
|
|
public:
|
2014-11-07 18:37:07 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(Table);
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2013-11-07 14:04:13 +01:00
|
|
|
static Table::Ptr GetByName(const String& name, const String& compat_log_path = "", const unsigned long& from = 0, const unsigned long& until = 0);
|
2013-03-18 11:02:18 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
virtual String GetName() const = 0;
|
|
|
|
virtual String GetPrefix() const = 0;
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2015-03-04 12:03:35 +01:00
|
|
|
std::vector<LivestatusRowValue> FilterRows(const intrusive_ptr<Filter>& filter, int limit = -1);
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2013-03-10 18:49:14 +01:00
|
|
|
void AddColumn(const String& name, const Column& column);
|
|
|
|
Column GetColumn(const String& name) const;
|
2018-01-04 04:25:35 +01:00
|
|
|
std::vector<String> GetColumnNames() const;
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
LivestatusGroupByType GetGroupByType() const;
|
2015-02-13 15:50:20 +01:00
|
|
|
|
2013-03-10 09:55:46 +01:00
|
|
|
protected:
|
2015-02-13 15:50:20 +01:00
|
|
|
Table(LivestatusGroupByType type = LivestatusGroupByNone);
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2013-03-15 18:21:29 +01:00
|
|
|
virtual void FetchRows(const AddRowFunction& addRowFn) = 0;
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2013-11-05 13:39:40 +01:00
|
|
|
static Value ZeroAccessor(const Value&);
|
|
|
|
static Value OneAccessor(const Value&);
|
|
|
|
static Value EmptyStringAccessor(const Value&);
|
|
|
|
static Value EmptyArrayAccessor(const Value&);
|
|
|
|
static Value EmptyDictionaryAccessor(const Value&);
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2015-02-13 15:50:20 +01:00
|
|
|
LivestatusGroupByType m_GroupByType;
|
|
|
|
Value m_GroupByObject;
|
|
|
|
|
2013-03-10 09:55:46 +01:00
|
|
|
private:
|
2013-03-16 21:18:53 +01:00
|
|
|
std::map<String, Column> m_Columns;
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2015-03-04 12:03:35 +01:00
|
|
|
bool FilteredAddRow(std::vector<LivestatusRowValue>& rs, const intrusive_ptr<Filter>& filter, int limit, const Value& row, LivestatusGroupByType groupByType, const Object::Ptr& groupByObject);
|
2013-03-10 09:55:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* TABLE_H */
|
2014-11-08 21:17:16 +01:00
|
|
|
|
|
|
|
#include "livestatus/filter.hpp"
|