1#ifndef Cpl_Math_RealExpressionParser_h_
2#define Cpl_Math_RealExpressionParser_h_
41#include "colony_config.h"
50#ifndef OPTION_CPL_MATH_REALEXPR_MAX_STACK_SIZE
51#define OPTION_CPL_MATH_REALEXPR_MAX_STACK_SIZE 20
81 bool eval(
const char* expressionAsText, T& result )
85 m_expr = expressionAsText;
86 m_exprLen = strlen( expressionAsText );
89 if ( !parseExpr( result ) )
102 OPERATOR_SUBTRACTION,
103 OPERATOR_MULTIPLICATION,
122 Operator(
int opr,
int prec,
int assoc )
125 , associativity( assoc )
130 : op( OPERATOR_NULL )
132 , associativity(
'L' )
147 OperatorValue(
const Operator& opr, T val )
160 int getPrecedence()
const
162 return op.precedence;
168 return op.op == OPERATOR_NULL;
173 bool calculate( T& result, T v1, T v2,
const Operator& op )
const
178 case OPERATOR_ADDITION:
182 case OPERATOR_SUBTRACTION:
186 case OPERATOR_MULTIPLICATION:
191 result = (T) pow( (
double)v1, (double) v2 );
194 case OPERATOR_DIVISION:
206 case OPERATOR_MODULO:
209 result = (T) fmod( (
double)v1, (double)v2 );
230 return m_index >= m_exprLen;
236 char getCharacter()
const
240 return m_expr[m_index];
247 void unexpected()
const
259 while ( isspace( getCharacter() ) != 0 )
268 bool parseOp( Operator& result )
273 switch ( getCharacter() )
277 result = Operator( OPERATOR_ADDITION, 10,
'L' );
282 result = Operator( OPERATOR_SUBTRACTION, 10,
'L' );
287 result = Operator( OPERATOR_DIVISION, 20,
'L' );
292 result = Operator( OPERATOR_MODULO, 20,
'L' );
297 if ( getCharacter() !=
'*' )
299 result = Operator( OPERATOR_MULTIPLICATION, 20,
'L' );
304 result = Operator( OPERATOR_POWER, 30,
'R' );
309 result = Operator( OPERATOR_NULL, 0,
'L' );
319 T value = (T) strtod( m_expr + m_index, &endPtr );
320 m_index = endPtr - m_expr;
328 bool parseValue( T& valFinal )
332 switch ( getCharacter() )
350 if ( !parseExpr( val ) )
355 if ( getCharacter() !=
')' )
357 CPL_SYSTEM_TRACE_MSG(
"Cpl::Math", (
"Syntax error: `)' expected at end of expression (index=%d",
366 if ( !parseValue( val ) )
374 if ( !parseValue( val ) )
378 val = val *
static_cast<T
>(-1);
397 bool parseExpr( T& finalValue )
399 m_stack.
push( OperatorValue( Operator( OPERATOR_NULL, 0,
'L' ), 0 ) );
403 if ( !parseValue( value ) )
412 if ( !parseOp( op ) )
418 OperatorValue topVal;
421 while ( op.precedence < topVal.getPrecedence() ||
422 (op.precedence == topVal.getPrecedence() &&
423 op.associativity ==
'L')
427 if ( topVal.isNull() )
435 if ( !calculate( value, topVal.value, value, topVal.op ) )
442 if ( !m_stack.
peekTop( topVal ) )
450 if ( !m_stack.
push( OperatorValue( op, value ) ) )
457 if ( !parseValue( value ) )
#define OPTION_CPL_MATH_REALEXPR_MAX_STACK_SIZE
Maximum depth of the operator stack used when evaluating an expression.
Definition RealExpressionParser.h:51
#define CPL_SYSTEM_TRACE_MSG(sect, var_args)
Macro Wrapper.
Definition Trace.h:411
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
void clearTheStack() noexcept
Empties the Stack.
Definition Stack.h:136
bool pop(ITEM &dst) noexcept
Removes the top item of the stack.
Definition Stack.h:156
bool peekTop(ITEM &dst) const noexcept
Returns the item on the top of the Stack.
Definition Stack.h:180
bool push(const ITEM src) noexcept
Adds an item to the top of the stack.
Definition Stack.h:143
bool isEmpty(void) const noexcept
This method returns true if the Stack is empty.
Definition Stack.h:204
This template class evaluates an null terminate string that represents an real-number arithmetic expr...
Definition RealExpressionParser.h:68
RealExpressionParser()
Constructor.
Definition RealExpressionParser.h:71
bool eval(const char *expressionAsText, T &result)
Evaluates an integer arithmetic expression and returns true if the expression was successfully evalua...
Definition RealExpressionParser.h:81
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This file contains a collection of methods comparing, manipulating, etc.
#define CPL_MATH_REAL_FLOAT_EPSILON
This symbols provides the default Epsilon value when testing for 'almost equal' between to float numb...
Definition real.h:30
#define CPL_MATH_REAL_DOUBLE_EPSILON
This symbols provides the default Epsilon value when testing for 'almost equal' between to double num...
Definition real.h:37