2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2014-05-28 14:25:12 +02:00
|
|
|
#ifndef LIVESTATUSQUERY_H
|
|
|
|
#define LIVESTATUSQUERY_H
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/filter.hpp"
|
|
|
|
#include "livestatus/aggregator.hpp"
|
|
|
|
#include "base/object.hpp"
|
|
|
|
#include "base/array.hpp"
|
|
|
|
#include "base/stream.hpp"
|
2014-12-16 19:28:46 +01:00
|
|
|
#include "base/scriptframe.hpp"
|
2013-03-18 22:40:40 +01:00
|
|
|
#include <deque>
|
2013-03-17 20:19:29 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-11-11 11:57:25 +01:00
|
|
|
namespace icinga
|
2013-03-10 03:09:01 +01:00
|
|
|
{
|
|
|
|
|
2013-07-12 18:25:18 +02:00
|
|
|
enum LivestatusError
|
|
|
|
{
|
|
|
|
LivestatusErrorOK = 200,
|
|
|
|
LivestatusErrorNotFound = 404,
|
|
|
|
LivestatusErrorQuery = 452
|
|
|
|
};
|
|
|
|
|
2013-03-10 03:09:01 +01:00
|
|
|
/**
|
|
|
|
* @ingroup livestatus
|
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class LivestatusQuery final : public Object
|
2013-03-10 03:09:01 +01:00
|
|
|
{
|
|
|
|
public:
|
2014-11-07 18:37:07 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(LivestatusQuery);
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2014-05-28 14:25:12 +02:00
|
|
|
LivestatusQuery(const std::vector<String>& lines, const String& compat_log_path);
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2013-07-04 09:45:44 +02:00
|
|
|
bool Execute(const Stream::Ptr& stream);
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static int GetExternalCommands();
|
2013-07-19 15:42:00 +02:00
|
|
|
|
2013-03-10 03:09:01 +01:00
|
|
|
private:
|
|
|
|
String m_Verb;
|
|
|
|
|
|
|
|
bool m_KeepAlive;
|
|
|
|
|
|
|
|
/* Parameters for GET queries. */
|
|
|
|
String m_Table;
|
2013-03-16 21:18:53 +01:00
|
|
|
std::vector<String> m_Columns;
|
2013-07-29 19:37:58 +02:00
|
|
|
std::vector<String> m_Separators;
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2013-03-10 15:23:08 +01:00
|
|
|
Filter::Ptr m_Filter;
|
2013-07-11 15:52:01 +02:00
|
|
|
std::deque<Aggregator::Ptr> m_Aggregators;
|
2013-03-10 15:11:32 +01:00
|
|
|
|
2013-03-10 03:09:01 +01:00
|
|
|
String m_OutputFormat;
|
|
|
|
bool m_ColumnHeaders;
|
2015-03-04 12:03:35 +01:00
|
|
|
int m_Limit;
|
2013-03-10 03:09:01 +01:00
|
|
|
|
|
|
|
String m_ResponseHeader;
|
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
/* Parameters for COMMAND/SCRIPT queries. */
|
2013-03-10 03:09:01 +01:00
|
|
|
String m_Command;
|
2014-12-16 19:28:46 +01:00
|
|
|
String m_Session;
|
2013-03-10 03:09:01 +01:00
|
|
|
|
|
|
|
/* Parameters for invalid queries. */
|
|
|
|
int m_ErrorCode;
|
|
|
|
String m_ErrorMessage;
|
2015-11-02 16:35:21 +01:00
|
|
|
|
2013-10-29 13:44:43 +01:00
|
|
|
unsigned long m_LogTimeFrom;
|
|
|
|
unsigned long m_LogTimeUntil;
|
2013-11-07 14:04:13 +01:00
|
|
|
String m_CompatLogPath;
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2015-10-22 08:28:40 +02:00
|
|
|
void BeginResultSet(std::ostream& fp) const;
|
|
|
|
void EndResultSet(std::ostream& fp) const;
|
|
|
|
void AppendResultRow(std::ostream& fp, const Array::Ptr& row, bool& first_row) const;
|
2014-06-25 11:30:27 +02:00
|
|
|
void PrintCsvArray(std::ostream& fp, const Array::Ptr& array, int level) const;
|
|
|
|
void PrintPythonArray(std::ostream& fp, const Array::Ptr& array) const;
|
|
|
|
static String QuoteStringPython(const String& str);
|
2013-03-10 09:23:13 +01:00
|
|
|
|
2013-03-10 03:09:01 +01:00
|
|
|
void ExecuteGetHelper(const Stream::Ptr& stream);
|
|
|
|
void ExecuteCommandHelper(const Stream::Ptr& stream);
|
|
|
|
void ExecuteErrorHelper(const Stream::Ptr& stream);
|
|
|
|
|
|
|
|
void SendResponse(const Stream::Ptr& stream, int code, const String& data);
|
|
|
|
void PrintFixed16(const Stream::Ptr& stream, int code, const String& data);
|
2015-11-02 16:35:21 +01:00
|
|
|
|
2013-10-29 13:44:43 +01:00
|
|
|
static Filter::Ptr ParseFilter(const String& params, unsigned long& from, unsigned long& until);
|
2013-03-10 03:09:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-28 14:25:12 +02:00
|
|
|
#endif /* LIVESTATUSQUERY_H */
|