icinga2/components/livestatus/query.h

101 lines
3.1 KiB
C
Raw Normal View History

2013-03-10 03:09:01 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
2013-03-10 03:09:01 +01:00
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef QUERY_H
#define QUERY_H
2013-03-10 03:09:01 +01:00
2013-03-17 20:19:29 +01:00
#include "livestatus/filter.h"
#include "livestatus/aggregator.h"
2013-03-17 20:19:29 +01:00
#include "base/object.h"
#include "base/array.h"
#include "base/stream.h"
2013-03-18 22:40:40 +01:00
#include <deque>
2013-03-17 20:19:29 +01:00
using namespace icinga;
namespace icinga
2013-03-10 03:09:01 +01:00
{
enum LivestatusError
{
LivestatusErrorOK = 200,
LivestatusErrorNotFound = 404,
LivestatusErrorQuery = 452
};
2013-03-10 03:09:01 +01:00
/**
* @ingroup livestatus
*/
class Query : public Object
2013-03-10 03:09:01 +01:00
{
public:
DECLARE_PTR_TYPEDEFS(Query);
2013-03-10 03:09:01 +01:00
Query(const std::vector<String>& lines, const String& compat_log_path);
2013-03-10 03:09:01 +01:00
bool Execute(const Stream::Ptr& stream);
2013-03-10 03:09:01 +01:00
static int GetExternalCommands(void);
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;
std::vector<String> m_Separators;
2013-03-10 03:09:01 +01:00
Filter::Ptr m_Filter;
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;
String m_ResponseHeader;
/* Parameters for COMMAND queries. */
String m_Command;
/* Parameters for invalid queries. */
int m_ErrorCode;
String m_ErrorMessage;
2013-10-29 13:44:43 +01:00
unsigned long m_LogTimeFrom;
unsigned long m_LogTimeUntil;
String m_CompatLogPath;
2013-03-10 03:09:01 +01:00
void PrintResultSet(std::ostream& fp, const Array::Ptr& rs);
void PrintCsvArray(std::ostream& fp, const Array::Ptr& array, int level);
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);
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
};
}
#endif /* QUERY_H */