Module org.eclipse.persistence.core
Class ExpressionNormalizer
java.lang.Object
org.eclipse.persistence.internal.expressions.ExpressionNormalizer
This is used during the normalization process to allow for a single main expression traversal.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanUsed to trigger adding additional join operations etc to the expression being processed instead of at the end of the where clause.protected ExpressionA new root expression can be made from joins being added to the original expression.protected ExpressionLocal expression from joins being added to the original expression.protected Map<Expression, Expression> Used to maintain identity of cloned expressions.protected AbstractSessionThe session being normalized in.protected SQLSelectStatementThe statement being normalized.protected List<SubSelectExpression> Subselect expressions found in the course of normalization. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddAdditionalExpression(Expression theExpression) voidaddAdditionalLocalExpression(Expression theExpression) Similar to addAdditionalExpression, this keeps a running expression used for joins so that they can be added locally within 'OR' predicates rather than to the entire where clause.voidaddSubSelectExpression(SubSelectExpression subSelectExpression) INTERNAL: Remember this subselect so that it can be normalized after the enclosing select statement is.booleanINTERNAL: Were subselect expressions found while normalizing the selection criteria? Assumes underlying collection is initialized on first add.booleanvoidnormalizeSubSelects(Map clonedExpressions) INTERNAL: Normalize all subselect expressions found in the course of normalizing the enclosing query.processAdditionalLocalExpressions(Expression localExpression, boolean isLogicalExpression) INTERNAL This will return the localExpression if isLogicalExpression is false, otherwise it will check the addAdditionalExpressionsWithinCurrrentExpressionContext flag and clear additionalLocalExpression once adding it to the localExpression.voidsetAddAdditionalExpressionsWithinCurrrentExpressionContext(boolean addAdditionalExpressionsWithinCurrrentExpressionContext) INTERNAL: Allows keeping track when the normalizer is within a logical OR statement, where additionalExpressions might need to be added to the local expression instead of at the end of the where clause.voidsetAdditionalExpression(Expression additionalExpression) voidsetClonedExpressions(Map<Expression, Expression> clonedExpressions) voidsetSession(AbstractSession session) voidsetStatement(SQLSelectStatement statement)
-
Field Details
-
additionalExpression
A new root expression can be made from joins being added to the original expression. -
statement
The statement being normalized. -
subSelectExpressions
Subselect expressions found in the course of normalization. -
session
The session being normalized in. -
clonedExpressions
Used to maintain identity of cloned expressions. -
addAdditionalExpressionsWithinCurrrentExpressionContext
protected boolean addAdditionalExpressionsWithinCurrrentExpressionContextUsed to trigger adding additional join operations etc to the expression being processed instead of at the end of the where clause. Useful for dealing with Treat within an Or clause, as the type expression needs to be appended within the OR condition rather AND'd to the entire thing. -
additionalLocalExpression
Local expression from joins being added to the original expression.
-
-
Constructor Details
-
ExpressionNormalizer
-
-
Method Details
-
getClonedExpressions
-
setClonedExpressions
-
addAdditionalExpression
-
addSubSelectExpression
INTERNAL: Remember this subselect so that it can be normalized after the enclosing select statement is. -
getAdditionalExpression
-
getSession
-
getStatement
-
encounteredSubSelectExpressions
public boolean encounteredSubSelectExpressions()INTERNAL: Were subselect expressions found while normalizing the selection criteria? Assumes underlying collection is initialized on first add. -
normalizeSubSelects
INTERNAL: Normalize all subselect expressions found in the course of normalizing the enclosing query. This method allows one to completely normalize the parent statement first (which should treat its sub selects as black boxes), and then normalize the subselects (which require full knowledge of the enclosing statement). This should make things clearer too, Assumes encounteredSubSelectExpressions() true. For CR#4223. -
setAdditionalExpression
-
setSession
-
setStatement
-
addAdditionalLocalExpression
Similar to addAdditionalExpression, this keeps a running expression used for joins so that they can be added locally within 'OR' predicates rather than to the entire where clause. If addAdditionalExpressionsWithinCurrrentExpressionContext is false, it will work the same as addAdditionalExpression -
processAdditionalLocalExpressions
public Expression processAdditionalLocalExpressions(Expression localExpression, boolean isLogicalExpression) INTERNAL This will return the localExpression if isLogicalExpression is false, otherwise it will check the addAdditionalExpressionsWithinCurrrentExpressionContext flag and clear additionalLocalExpression once adding it to the localExpression. -
isAddAdditionalExpressionsWithinCurrrentExpressionContext
public boolean isAddAdditionalExpressionsWithinCurrrentExpressionContext() -
setAddAdditionalExpressionsWithinCurrrentExpressionContext
public void setAddAdditionalExpressionsWithinCurrrentExpressionContext(boolean addAdditionalExpressionsWithinCurrrentExpressionContext) INTERNAL: Allows keeping track when the normalizer is within a logical OR statement, where additionalExpressions might need to be added to the local expression instead of at the end of the where clause.
-