Package org.apache.cayenne.exp.parser
Class SimpleNode
java.lang.Object
org.apache.cayenne.exp.Expression
org.apache.cayenne.exp.parser.SimpleNode
- All Implemented Interfaces:
Serializable
,Node
,XMLSerializable
- Direct Known Subclasses:
AggregateConditionNode
,ASTAsterisk
,ASTCustomOperator
,ASTEnclosingObject
,ASTFullObject
,ASTList
,ASTNegate
,ASTPath
,ASTScalar
,ASTSubquery
,ConditionNode
,EvaluatedNode
Superclass of AST* expressions that implements Node interface defined by JavaCC framework.
Some parts of the parser are based on OGNL parser, copyright (c) 2002, Drew Davidson and Luke Blanshard.
- Since:
- 1.1
- See Also:
-
Field Summary
Fields inherited from class org.apache.cayenne.exp.Expression
ADD, AND, ASTERISK, BETWEEN, BITWISE_AND, BITWISE_LEFT_SHIFT, BITWISE_NOT, BITWISE_OR, BITWISE_RIGHT_SHIFT, BITWISE_XOR, CUSTOM_OP, DB_PATH, DBID_PATH, DIVIDE, ENCLOSING_OBJECT, EQUAL_TO, EXISTS, FALSE, FULL_OBJECT, FUNCTION_CALL, GREATER_THAN, GREATER_THAN_EQUAL_TO, IN, LESS_THAN, LESS_THAN_EQUAL_TO, LIKE, LIKE_IGNORE_CASE, LIST, MULTIPLY, NEGATIVE, NOT, NOT_BETWEEN, NOT_EQUAL_TO, NOT_EXISTS, NOT_IN, NOT_LIKE, NOT_LIKE_IGNORE_CASE, OBJ_PATH, OR, PRUNED_NODE, SUBQUERY, SUBTRACT, TRUE, type
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
appendAsEJBQL
(Appendable out, String rootId) Stores a String representation of Expression as EJBQL using a provided Appendable.void
appendAsEJBQL
(List<Object> parameterAccumulator, Appendable out, String rootId) Stores a String representation of Expression as EJBQL using a provided PrintWriter.protected static void
appendAsEscapedString
(Appendable out, String source) Utility method that prints a string to the provided Appendable, escaping special characters.void
appendAsString
(Appendable out) Appends own content as a String to the provided Appendable.protected void
appendChildrenAsEJBQL
(List<Object> parameterAccumulator, Appendable out, String rootId) Encodes child of this node with specified index to EJBQLprotected static void
appendScalarAsString
(Appendable out, Object scalar, char quoteChar) Utility method that encodes an object that is not an expression Node to String.protected void
Sets the parent to this for all children.protected static void
encodeScalarAsEJBQL
(List<Object> parameterAccumulator, Appendable out, Object scalar) This is a utility method that can represent the supplied scalar as either an EJBQL literal into the suppliedPrintWriter
or is able to add the scalar to the parameters and to instead write a positional parameter to the EJBQL written to thePrintWriter
.Calculates expression value with object as a context for path expressions.protected Object
evaluateChild
(int index, Object o) protected abstract Object
Evaluates itself with object, pushing result on the stack.expName()
Implemented for backwards compatibility with exp package.protected void
Flattens the tree under this node by eliminating any children that are of the same class as this node and copying their children to this node.protected String
getEJBQLExpressionOperator
(int index) Returns operator for EJBQL statements, which can differ for Cayenne expression operatorprotected abstract String
getExpressionOperator
(int index) getOperand
(int index) Returns a value of operand atindex
.int
Returns a count of operands of this expression.Always returns empty map.void
jjtAddChild
(Node n, int i) This method tells the node to add its argument to the node's list of children.void
jjtClose()
Called after all the child nodes have been added.jjtGetChild
(int i) This method returns a child node.final int
Return the number of children the node has.void
jjtOpen()
Called after the node has been made the current node.void
jjtSetParent
(Node n) This pair of methods are used to inform the node of its parent.notExp()
Returns a logical NOT of current expression.protected boolean
pruneNodeForPrunedChild
(Object prunedChild) Returns true if this node should be pruned from expression tree in the event a child is removed.void
setOperand
(int index, Object value) Sets a value of operand atindex
.protected Object
unwrapChild
(Node child) protected Node
Methods inherited from class org.apache.cayenne.exp.Expression
andExp, andExp, deepCopy, encodeAsXML, equals, filter, filterObjects, first, getType, hashCode, joinExp, joinExp, match, orExp, orExp, params, params, paramsArray, setType, shallowCopy, toEJBQL, toEJBQL, toString, transform, transformExpression, traverse, traverse
-
Field Details
-
parent
-
children
-
id
protected int id
-
-
Constructor Details
-
SimpleNode
protected SimpleNode(int i)
-
-
Method Details
-
encodeScalarAsEJBQL
protected static void encodeScalarAsEJBQL(List<Object> parameterAccumulator, Appendable out, Object scalar) throws IOException This is a utility method that can represent the supplied scalar as either an EJBQL literal into the supplied
PrintWriter
or is able to add the scalar to the parameters and to instead write a positional parameter to the EJBQL written to thePrintWriter
. If the parameters are null and the scalar object is not able to be represented as an EJBQL literal then the method will throw a runtime exception to indicate that it has failed to produce valid EJBQL.- Throws:
IOException
-
appendScalarAsString
protected static void appendScalarAsString(Appendable out, Object scalar, char quoteChar) throws IOException Utility method that encodes an object that is not an expression Node to String.- Throws:
IOException
-
appendAsEscapedString
Utility method that prints a string to the provided Appendable, escaping special characters.- Throws:
IOException
-
getPathAliases
Always returns empty map.- Specified by:
getPathAliases
in classExpression
- Since:
- 3.0
-
getExpressionOperator
-
getEJBQLExpressionOperator
Returns operator for EJBQL statements, which can differ for Cayenne expression operator -
pruneNodeForPrunedChild
Description copied from class:Expression
Returns true if this node should be pruned from expression tree in the event a child is removed.- Specified by:
pruneNodeForPrunedChild
in classExpression
-
expName
Implemented for backwards compatibility with exp package.- Overrides:
expName
in classExpression
-
flattenTree
protected void flattenTree()Flattens the tree under this node by eliminating any children that are of the same class as this node and copying their children to this node.- Specified by:
flattenTree
in classExpression
-
appendAsString
Description copied from class:Expression
Appends own content as a String to the provided Appendable.- Specified by:
appendAsString
in classExpression
- Throws:
IOException
- Since:
- 4.0
-
getOperand
Description copied from class:Expression
Returns a value of operand atindex
. Operand indexing starts at 0.- Specified by:
getOperand
in classExpression
-
wrapChild
-
unwrapChild
-
getOperandCount
public int getOperandCount()Description copied from class:Expression
Returns a count of operands of this expression. In real life there are unary (count == 1), binary (count == 2) and ternary (count == 3) expressions.- Specified by:
getOperandCount
in classExpression
-
setOperand
Description copied from class:Expression
Sets a value of operand atindex
. Operand indexing starts at 0.- Specified by:
setOperand
in classExpression
-
jjtOpen
public void jjtOpen()Description copied from interface:Node
Called after the node has been made the current node. It indicates that child nodes can now be added to it. -
jjtClose
public void jjtClose()Description copied from interface:Node
Called after all the child nodes have been added. -
jjtSetParent
Description copied from interface:Node
This pair of methods are used to inform the node of its parent.- Specified by:
jjtSetParent
in interfaceNode
-
jjtGetParent
- Specified by:
jjtGetParent
in interfaceNode
-
jjtAddChild
Description copied from interface:Node
This method tells the node to add its argument to the node's list of children.- Specified by:
jjtAddChild
in interfaceNode
-
jjtGetChild
Description copied from interface:Node
This method returns a child node. The children are numbered from zero, left to right.- Specified by:
jjtGetChild
in interfaceNode
-
jjtGetNumChildren
public final int jjtGetNumChildren()Description copied from interface:Node
Return the number of children the node has.- Specified by:
jjtGetNumChildren
in interfaceNode
-
evaluateNode
Evaluates itself with object, pushing result on the stack.- Throws:
Exception
-
connectChildren
protected void connectChildren()Sets the parent to this for all children.- Since:
- 3.0
-
evaluateChild
- Throws:
Exception
-
notExp
Description copied from class:Expression
Returns a logical NOT of current expression.- Specified by:
notExp
in classExpression
-
evaluate
Description copied from class:Expression
Calculates expression value with object as a context for path expressions.- Specified by:
evaluate
in classExpression
-
appendAsEJBQL
Description copied from class:Expression
Stores a String representation of Expression as EJBQL using a provided Appendable. DB path expressions produce non-standard EJBQL path expressions.- Overrides:
appendAsEJBQL
in classExpression
- Throws:
IOException
- Since:
- 4.0
-
appendAsEJBQL
public void appendAsEJBQL(List<Object> parameterAccumulator, Appendable out, String rootId) throws IOException Description copied from class:Expression
Stores a String representation of Expression as EJBQL using a provided PrintWriter. DB path expressions produce non-standard EJBQL path expressions. If the parameterAccumulator is supplied then as the EJBQL is output, it may load parameters into this list. In this case, the EJBQL output will contain reference to positional parameters. If no parameterAccumulator is supplied and a scalar type is encountered for which there is no EJBQL literal representation (such as dates) then this method will throw a runtime exception to indicate that it was not possible to generate a string-only representation of the Expression in EJBQL.- Specified by:
appendAsEJBQL
in classExpression
- Throws:
IOException
- Since:
- 4.0
-
appendChildrenAsEJBQL
protected void appendChildrenAsEJBQL(List<Object> parameterAccumulator, Appendable out, String rootId) throws IOException Encodes child of this node with specified index to EJBQL- Throws:
IOException
-