2012-05-25 11:10:11 +02: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-06-01 16:49:33 +02:00
|
|
|
#ifndef EXPRESSION_H
|
|
|
|
#define EXPRESSION_H
|
2012-05-25 11:10:11 +02: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
|
|
|
|
{
|
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
|
|
|
|
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;
|
2013-01-30 23:02:46 +01:00
|
|
|
void Dump(ostream& fp, int indent = 0) 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-01-30 23:02:46 +01:00
|
|
|
|
|
|
|
static void DumpValue(ostream& fp, int indent, const Value& value, bool inlineDict = false);
|
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 */
|