Complex filtering expressions
This section describes the functionality of the utility class FilterExpressionUtils
, that provides a set of methods and utilities for building complex filtering expressions used in OntimizeWeb.
Filtering expression
A filtering expression is an object that defines an operation between two operands. The interface IExpression
contains the basic structure of a filtering expression. The second operand may be omitted in some expressions, for example, filtering with a NULL value.
The filtering expression structure is the following;
{
/** The left operand. */
lop: string | IExpression
/** The operator. */
op: string
/** The right operand. */
rop?: string | IExpression
}
Operators
OntimizeWeb defines a set of operators used as the op
parametter of IExpression
for building filtering expressions. This operators cover most important operations defined by every database management system and they are the following:
Operators | |
---|---|
AND | TRUE if both logical expressions are TRUE |
EQUAL | equal to a value |
LESS | less than a value |
LESS EQUAL | less than or equal to a value |
LIKE | TRUE if the operand matches a pattern |
MORE | more than a value |
MORE EQUAL | more than or equal to a value |
NOT EQUAL | not equal to a value |
NOT LIKE | TRUE if the operand not matches a pattern |
NULL | is NULL |
NOT NULL | is not NULL |
OR | TRUE if either logical expression is TRUE |
All this operator are defined statically in FilterExpressionUtils
class with the operator prefix OP_
(OP_AND
, OP_EQUAL
, etc.).
Filter building methods
OntimizeWeb defines a set of methods for building filtering expressions automatically. This methods are the following:
buildArrayExpressionLike | |
---|---|
Builds an | |
Parameters | |
keys any[] |
the keys |
value any |
the value |
Returns | |
|
the |
buildExpressionEquals | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionIsNotNull | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
Returns | |
|
the |
buildExpressionIsNull | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
Returns | |
|
the |
buildExpressionLess | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionLessEqual | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionLike | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionLikeEnd | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionLikeStart | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionMore | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionMoreEqual | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionNotEquals | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionNotLike | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
buildExpressionNullAndValue | |
---|---|
Builds an | |
Parameters | |
key string |
the key |
value any |
the value |
Returns | |
|
the |
Utility methods
OntimizeWeb also defines a set of utility methos to help you building complex filtering expressions. This methods are the following:
buildBasicExpression | |
---|---|
Builds a | |
Parameters | |
exp
|
the filtering expression |
Returns | |
|
the basic expression |
buildComplexExpression | |
---|---|
Builds a complex | |
Parameters | |
expr1
|
the first filtering expression to join |
expr2
|
the second filtering expression to join |
op string |
the joining operator |
Returns | |
|
the complex filtering expression |
buildExpressionFromObject | |
---|---|
Builds an | |
Parameters | |
obj any |
the object |
Returns | |
|
the |
buildFilterExpression | |
---|---|
Builds an | |
Parameters | |
exp
|
the filtering expression |
Returns | |
|
the |
instanceofBasicExpression | |
---|---|
Evaluates if the the expression provided is an instance of | |
Parameters | |
exp
|
the filtering expression |
Returns | |
boolean |
|
instanceofExpression | |
---|---|
Evaluates if an expresion is instance of | |
Parameters | |
exp any |
the expression to evaluate |
Returns | |
boolean |
|
instanceofFilterExpression | |
---|---|
Evaluates if an expresion is instance of | |
Parameters | |
exp any |
the expression to evaluate |
Returns | |
boolean |
|