icinga2/components/livestatus/query.h

77 lines
2.5 KiB
C
Raw Normal View History

2013-03-10 03:09:01 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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
namespace livestatus
2013-03-10 03:09:01 +01:00
{
/**
* @ingroup livestatus
*/
class Query : public Object
2013-03-10 03:09:01 +01:00
{
public:
typedef shared_ptr<Query> Ptr;
typedef weak_ptr<Query> WeakPtr;
2013-03-10 03:09:01 +01:00
Query(const vector<String>& lines);
2013-03-10 03:09:01 +01:00
void Execute(const Stream::Ptr& stream);
private:
String m_Verb;
bool m_KeepAlive;
/* Parameters for GET queries. */
String m_Table;
vector<String> m_Columns;
2013-03-10 15:11:32 +01:00
deque<Filter::Ptr> m_Filters;
deque<Filter::Ptr> m_Stats;
2013-03-10 03:09:01 +01:00
String m_OutputFormat;
bool m_ColumnHeaders;
int m_Limit;
String m_ResponseHeader;
/* Parameters for COMMAND queries. */
String m_Command;
/* Parameters for invalid queries. */
int m_ErrorCode;
String m_ErrorMessage;
void PrintResultSet(ostream& fp, const vector<String>& columns, const Array::Ptr& rs);
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);
};
}
#endif /* QUERY_H */