Class ExpressionEvaluator
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Class used for MacroExpression evaluation.
public class ExpressionEvaluator
- Inheritance
-
objectExpressionEvaluator
- Extension Methods
Constructors
ExpressionEvaluator(MacroExpression, EvaluationContext)
Constructor.
public ExpressionEvaluator(MacroExpression expr, EvaluationContext context)
Parameters
expr
MacroExpressionExpression to evaluate
context
EvaluationContextEvaluation 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
Expression
Expression to evaluate.
public MacroExpression Expression { get; protected set; }
Property Value
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
Type
Returns the expression type.
protected ExpressionType Type { get; }
Property Value
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
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
MacroExpressionChild expression to evaluate
match
boolReturns true if all data members used were known (could have been null, but must have been registered)
securityPassed
boolReturns 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
boolReturns true if all data members used were known (could have been null, but must have been registered)
securityPassed
boolReturns 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
boolDetermines whether all the necessary objects for evaluation were present
securityPassed
boolReturns 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
intNumber 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
Enumenumeration obj to compare
obj2
objectObject to compare with
context
EvaluationContextEvaluation context
Returns
- bool
IsEqual(object, object, EvaluationContext)
Returns true if first parameter is equal to the second. Handles several specialties:
- GUID is equal also to string representation of GUID (case insensitive regardless the context setting).
- Simple data types are equal to their ToString representation.
- InfoObject is equal also to string constant if it's either its display name or code name.
- Two info objects are equal when they have same object type and same ID.
- Empty string is equal to null.
public static bool IsEqual(object param1, object param2, EvaluationContext context)
Parameters
param1
objectFirst parameter to compare
param2
objectSecond parameter to compare
context
EvaluationContextEvaluation 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
Returns
- bool
IsMethodWithName(string)
Returns true if the type of current expression is MethodCall with specified name.
protected bool IsMethodWithName(string name)
Parameters
name
stringName 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
BaseInfoBaseInfo object
name
stringName to compare with
context
EvaluationContextEvaluation 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
stringFirst text to compare
text2
stringSecond text to compare
context
EvaluationContextEvaluation context
Returns
- bool
UpdateEvaluationContextFromParameters()
Reads all the in-line macro parameters and modifies the default evaluation context accordingly.
protected void UpdateEvaluationContextFromParameters()