Package edu.caltech.nanodb.expressions
Class CompareOperator
- java.lang.Object
-
- edu.caltech.nanodb.expressions.Expression
-
- edu.caltech.nanodb.expressions.CompareOperator
-
- All Implemented Interfaces:
java.lang.Cloneable
public class CompareOperator extends Expression
This class implements simple binary comparison operations. The supported operations are:- equals, =
- not-equals, != or <>
- greater-than, >
- less-than, <
- greater-or-equal, >=
- less-or-equal, <=
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CompareOperator.Type
This enumeration specifies the types of comparisons that can be performed.
-
Field Summary
Fields Modifier and Type Field Description private Expression
leftExpr
The left expression in the comparison.private Expression
rightExpr
The right expression in the comparison.private CompareOperator.Type
type
The kind of comparison, such as "equals" or "less than."
-
Constructor Summary
Constructors Constructor Description CompareOperator(CompareOperator.Type type, Expression lhs, Expression rhs)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
areObjectsEqual(java.lang.Object obj1, java.lang.Object obj2)
Performs an equality comparison between two objects, using the database's rules for type conversions/coercions.protected java.lang.Object
clone()
Creates a copy of expression.boolean
equals(java.lang.Object obj)
Checks if the argument is an expression with the same structure, but not necessarily the same references.java.lang.Object
evaluate(Environment env)
Evaluates this comparison expression and returns eitherBoolean.TRUE
orBoolean.FALSE
.ColumnInfo
getColumnInfo(Schema schema)
Returns aColumnInfo
object describing the type (and possibly the name) of the expression's result.Expression
getLeftExpression()
Returns the left expression.Expression
getRightExpression()
Returns the right expression.CompareOperator.Type
getType()
Returns the type of this comparison operator.int
hashCode()
Computes the hashcode of an Expression.void
normalize()
Normalize the comparison expression.java.lang.String
toString()
Returns a string representation of this comparison expression and its subexpressions.Expression
traverse(ExpressionProcessor p)
This method allows the entire expression tree to be traversed node by node, either for analysis or for transformation.-
Methods inherited from class edu.caltech.nanodb.expressions.Expression
duplicate, evaluate, evaluatePredicate, evaluatePredicate, getAllSymbols, hasSymbols, simplify
-
-
-
-
Field Detail
-
type
private CompareOperator.Type type
The kind of comparison, such as "equals" or "less than."
-
leftExpr
private Expression leftExpr
The left expression in the comparison.
-
rightExpr
private Expression rightExpr
The right expression in the comparison.
-
-
Constructor Detail
-
CompareOperator
public CompareOperator(CompareOperator.Type type, Expression lhs, Expression rhs)
-
-
Method Detail
-
getColumnInfo
public ColumnInfo getColumnInfo(Schema schema) throws SchemaNameException
Description copied from class:Expression
Returns aColumnInfo
object describing the type (and possibly the name) of the expression's result.- Specified by:
getColumnInfo
in classExpression
- Parameters:
schema
- a schema object that can be used to look up name and type details for symbols referenced by the expression.- Returns:
- a column-information object describing the type (and possibly the name and table-name) of this expression's result
- Throws:
SchemaNameException
- if a symbol cannot be resolved, either because it doesn't appear in the schema, or because the name is ambiguous.
-
evaluate
public java.lang.Object evaluate(Environment env) throws ExpressionException
Evaluates this comparison expression and returns eitherBoolean.TRUE
orBoolean.FALSE
. If either the left-hand or right-hand expression evaluates tonull
(representing the SQL NULL value), then the expression's result is alwaysFALSE
.- Specified by:
evaluate
in classExpression
- Parameters:
env
- the environment to look up symbol-values from, when evaluating the expression- Returns:
- the result of the expression evaluation
- Throws:
ExpressionException
- if the expression cannot be evaluated for some reason.- Design Note:
- (Donnie) We have to suppress "unchecked operation" warnings on
this code, since
Comparable
is a generic (and thus allows us to specify the type of object being compared), but we want to use it without specifying any types.
-
traverse
public Expression traverse(ExpressionProcessor p)
Description copied from class:Expression
This method allows the entire expression tree to be traversed node by node, either for analysis or for transformation. The
ExpressionProcessor
instance receives notifications as each node in the expression is entered and left.The expression tree can also be manipulated by this traversal process, depending on what the
ExpressionProcessor
wants to do. If the expression node thattraverse()
is invoked on, needs to be replaced with a new expression node, the replacement is returned by thetraverse()
method. (TheExpressionProcessor
specifies the replacement as the return-value from theExpressionProcessor.leave(Expression)
method.)- Specified by:
traverse
in classExpression
- Parameters:
p
- the object that performs analysis or transformation of the expression tree- Returns:
- an
Expression
node to replace this node, ornull
if no changes are to be made.
-
toString
public java.lang.String toString()
Returns a string representation of this comparison expression and its subexpressions.- Overrides:
toString
in classjava.lang.Object
-
getType
public CompareOperator.Type getType()
Returns the type of this comparison operator.- Returns:
- the type of comparison
-
getLeftExpression
public Expression getLeftExpression()
Returns the left expression.- Returns:
- the left expression
-
getRightExpression
public Expression getRightExpression()
Returns the right expression.- Returns:
- the right expression
-
normalize
public void normalize()
Normalize the comparison expression. The rules are:- Comparisons with a column-name and a literal value will be updated so that the literal value is always on the right.
- Comparisons with two column-names will be updated so that the
left column-name is "less than" the right column-name, using the
ColumnName.compareTo(edu.caltech.nanodb.expressions.ColumnName)
method.
-
equals
public boolean equals(java.lang.Object obj)
Checks if the argument is an expression with the same structure, but not necessarily the same references.- Specified by:
equals
in classExpression
- Parameters:
obj
- the object to which we are comparing
-
hashCode
public int hashCode()
Computes the hashcode of an Expression. This method is used to see if two expressions might be equal.- Specified by:
hashCode
in classExpression
-
clone
protected java.lang.Object clone() throws java.lang.CloneNotSupportedException
Creates a copy of expression. This method is used by theExpression.duplicate()
method to make a deep copy of an expression tree.- Overrides:
clone
in classExpression
- Throws:
java.lang.CloneNotSupportedException
-
areObjectsEqual
public static boolean areObjectsEqual(java.lang.Object obj1, java.lang.Object obj2)
Performs an equality comparison between two objects, using the database's rules for type conversions/coercions.- Parameters:
obj1
- the first object to compareobj2
- the second object to compare- Returns:
- the results of the equality comparison
-
-