Table of Contents

Class ExpressionEvaluator

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Class used for MacroExpression evaluation.

public class ExpressionEvaluator
Inheritance
object
ExpressionEvaluator
Extension Methods

Constructors

ExpressionEvaluator(MacroExpression, EvaluationContext)

Constructor.

public ExpressionEvaluator(MacroExpression expr, EvaluationContext context)

Parameters

expr MacroExpression

Expression to evaluate

context EvaluationContext

Evaluation context

Properties

Children

Child expressions of the expression.

protected List<MacroExpression> Children { get; }

Property Value

List<MacroExpression>

Context

Evaluation context.

public EvaluationContext Context { get; protected set; }

Property Value

EvaluationContext

Expression

Expression to evaluate.

public MacroExpression Expression { get; protected set; }

Property Value

MacroExpression

Name

Name of the data member or method call.

protected string Name { get; }

Property Value

string

Parent

Parent expression of the expression.

protected MacroExpression Parent { get; }

Property Value

MacroExpression

Type

Returns the expression type.

protected ExpressionType Type { get; }

Property Value

ExpressionType

Value

Value of the value expression (is null for expression types like method, property, etc.).

protected object Value { get; }

Property Value

object

Methods

CheckForTimeout()

Checks whether the evaluation time did not exceed the specified limit.

protected void CheckForTimeout()

Evaluate()

Evaluates the expression and returns the result. Sets the result of security check into MacroEvalParameters object.

public EvaluationResult Evaluate()

Returns

EvaluationResult

EvaluateChild(MacroExpression, ref bool, ref bool)

Evaluates the child expression (uses the same context, does not create a child context).

protected object EvaluateChild(MacroExpression childExpr, ref bool match, ref bool securityPassed)

Parameters

childExpr MacroExpression

Child expression to evaluate

match bool

Returns true if all data members used were known (could have been null, but must have been registered)

securityPassed bool

Returns true if the security of the evaluated macro was OK (both integrity and permissions)

Returns

object

EvaluateInternal(ref bool, ref bool)

Evaluates the expression and returns the result.

protected object EvaluateInternal(ref bool match, ref bool securityPassed)

Parameters

match bool

Returns true if all data members used were known (could have been null, but must have been registered)

securityPassed bool

Returns true if the security of the evaluated macro was OK (both integrity and permissions)

Returns

object

EvaluateMethodCall(ref bool, ref bool)

Evaluates general method call.

public object EvaluateMethodCall(ref bool match, ref bool securityPassed)

Parameters

match bool

Determines whether all the necessary objects for evaluation were present

securityPassed bool

Returns true if the security of the evaluated macro was OK (both integrity and permissions)

Returns

object

HasNumberOfChildren(int)

Returns true if the current expression node has exactly specified number of children.

protected bool HasNumberOfChildren(int number)

Parameters

number int

Number of children

Returns

bool

IsEnumObjectEqual(Enum, object, EvaluationContext)

Compares the given enumeration object with any object. If the object is not enumeration of the same type, then compares it according its values (integer enumeration with integer, otherwise as text constants).

protected static bool IsEnumObjectEqual(Enum enumObj, object obj2, EvaluationContext context)

Parameters

enumObj Enum

enumeration obj to compare

obj2 object

Object to compare with

context EvaluationContext

Evaluation context

Returns

bool

IsEqual(object, object, EvaluationContext)

Returns true if first parameter is equal to the second. Handles several specialties:

  1. GUID is equal also to string representation of GUID (case insensitive regardless the context setting).
  2. Simple data types are equal to their ToString representation.
  3. InfoObject is equal also to string constant if it's either its display name or code name.
  4. Two info objects are equal when they have same object type and same ID.
  5. Empty string is equal to null.
public static bool IsEqual(object param1, object param2, EvaluationContext context)

Parameters

param1 object

First parameter to compare

param2 object

Second parameter to compare

context EvaluationContext

Evaluation context

Returns

bool

IsInfoInfoEqual(BaseInfo, BaseInfo)

Returns true if two Info objects are equal (have same object type and ID).

protected static bool IsInfoInfoEqual(BaseInfo info1, BaseInfo info2)

Parameters

info1 BaseInfo

First info to compare

info2 BaseInfo

Second info to compare

Returns

bool

IsMethodWithName(string)

Returns true if the type of current expression is MethodCall with specified name.

protected bool IsMethodWithName(string name)

Parameters

name string

Name of the method

Returns

bool

IsObjectStringEqual(BaseInfo, string, EvaluationContext)

Returns true if given object has code name or display name equal to specified name.

protected static bool IsObjectStringEqual(BaseInfo info, string name, EvaluationContext context)

Parameters

info BaseInfo

BaseInfo object

name string

Name to compare with

context EvaluationContext

Evaluation context

Returns

bool

IsStringStringEqual(string, string, EvaluationContext)

Returns true if the two strings are equal. Empty string is equal to null.

protected static bool IsStringStringEqual(string text1, string text2, EvaluationContext context)

Parameters

text1 string

First text to compare

text2 string

Second text to compare

context EvaluationContext

Evaluation context

Returns

bool

UpdateEvaluationContextFromParameters()

Reads all the in-line macro parameters and modifies the default evaluation context accordingly.

protected void UpdateEvaluationContextFromParameters()