2012-05-25 11:10:11 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2012-05-25 11:10:11 +02: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-06-01 16:49:33 +02:00
|
|
|
#ifndef EXPRESSION_H
|
|
|
|
#define EXPRESSION_H
|
2012-05-25 11:10:11 +02:00
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "config/i2-config.h"
|
|
|
|
#include "config/debuginfo.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/dictionary.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include <iostream>
|
2013-03-19 07:12:16 +01:00
|
|
|
#include <vector>
|
2013-03-19 14:47:19 +01:00
|
|
|
#include <set>
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2012-06-01 16:49:33 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-17 14:47:43 +02:00
|
|
|
/**
|
|
|
|
* The operator in a configuration expression.
|
|
|
|
*
|
|
|
|
* @ingroup config
|
|
|
|
*/
|
2012-06-01 16:49:33 +02:00
|
|
|
enum ExpressionOperator
|
|
|
|
{
|
2013-09-24 13:13:14 +02:00
|
|
|
OperatorNop,
|
2012-07-06 14:33:10 +02:00
|
|
|
OperatorExecute,
|
2012-06-01 16:49:33 +02:00
|
|
|
OperatorSet,
|
|
|
|
OperatorPlus,
|
|
|
|
OperatorMinus,
|
|
|
|
OperatorMultiply,
|
|
|
|
OperatorDivide
|
|
|
|
};
|
2012-05-31 16:04:51 +02:00
|
|
|
|
2013-03-19 07:09:06 +01:00
|
|
|
class ExpressionList;
|
|
|
|
|
2012-09-17 14:47:43 +02:00
|
|
|
/**
|
|
|
|
* A configuration expression.
|
|
|
|
*
|
|
|
|
* @ingroup config
|
|
|
|
*/
|
2012-09-07 10:27:31 +02:00
|
|
|
struct I2_CONFIG_API Expression
|
2012-05-31 16:04:51 +02:00
|
|
|
{
|
2012-06-06 14:38:28 +02:00
|
|
|
public:
|
2012-09-19 12:32:39 +02:00
|
|
|
Expression(const String& key, ExpressionOperator op, const Value& value,
|
|
|
|
const DebugInfo& debuginfo);
|
2012-06-01 16:49:33 +02:00
|
|
|
|
2012-06-05 15:05:15 +02:00
|
|
|
void Execute(const Dictionary::Ptr& dictionary) const;
|
2012-06-06 14:38:28 +02:00
|
|
|
|
2013-03-19 14:47:19 +01:00
|
|
|
void ExtractPath(const std::vector<String>& path, const shared_ptr<ExpressionList>& result) const;
|
2013-11-27 12:23:27 +01:00
|
|
|
void ExtractFiltered(const std::set<String>& keys, const shared_ptr<ExpressionList>& result) const;
|
2013-03-19 07:09:06 +01:00
|
|
|
|
2013-09-24 13:13:14 +02:00
|
|
|
void ErasePath(const std::vector<String>& path);
|
|
|
|
|
|
|
|
void FindDebugInfoPath(const std::vector<String>& path, DebugInfo& result) const;
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
private:
|
2012-08-02 09:38:08 +02:00
|
|
|
String m_Key;
|
2012-06-06 14:38:28 +02:00
|
|
|
ExpressionOperator m_Operator;
|
2012-08-02 09:38:08 +02:00
|
|
|
Value m_Value;
|
2012-06-06 14:38:28 +02:00
|
|
|
DebugInfo m_DebugInfo;
|
2013-11-17 20:50:56 +01:00
|
|
|
|
|
|
|
static Value DeepClone(const Value& value);
|
2012-06-01 16:49:33 +02:00
|
|
|
};
|
|
|
|
|
2012-05-31 16:04:51 +02:00
|
|
|
}
|
2012-06-01 16:49:33 +02:00
|
|
|
|
|
|
|
#endif /* EXPRESSION_H */
|