mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
78 lines
1.9 KiB
Java
78 lines
1.9 KiB
Java
package com.avaje.ebeaninternal.server.expression;
|
|
|
|
import com.avaje.ebeaninternal.api.HashQueryPlanBuilder;
|
|
import com.avaje.ebeaninternal.api.SpiExpression;
|
|
import com.avaje.ebeaninternal.api.SpiExpressionRequest;
|
|
|
|
import java.io.IOException;
|
|
|
|
class BetweenExpression extends AbstractExpression {
|
|
|
|
private static final String BETWEEN = " between ";
|
|
|
|
private final Object valueHigh;
|
|
|
|
private final Object valueLow;
|
|
|
|
BetweenExpression(String propertyName, Object valueLow, Object valueHigh) {
|
|
super(propertyName);
|
|
this.valueLow = valueLow;
|
|
this.valueHigh = valueHigh;
|
|
}
|
|
|
|
private Object low() {
|
|
return NamedParamHelp.value(valueLow);
|
|
}
|
|
|
|
private Object high() {
|
|
return NamedParamHelp.value(valueHigh);
|
|
}
|
|
|
|
@Override
|
|
public void writeDocQuery(DocQueryContext context) throws IOException {
|
|
context.writeRange(propName, Op.GT_EQ, low(), Op.LT_EQ, high());
|
|
}
|
|
|
|
@Override
|
|
public void addBindValues(SpiExpressionRequest request) {
|
|
request.addBindValue(low());
|
|
request.addBindValue(high());
|
|
}
|
|
|
|
@Override
|
|
public void addSql(SpiExpressionRequest request) {
|
|
|
|
request.append(propName).append(BETWEEN).append(" ? and ? ");
|
|
}
|
|
|
|
@Override
|
|
public void queryPlanHash(HashQueryPlanBuilder builder) {
|
|
builder.add(BetweenExpression.class).add(propName);
|
|
builder.bind(2);
|
|
}
|
|
|
|
@Override
|
|
public int queryBindHash() {
|
|
int hc = low().hashCode();
|
|
hc = hc * 31 + high().hashCode();
|
|
return hc;
|
|
}
|
|
|
|
@Override
|
|
public boolean isSameByPlan(SpiExpression other) {
|
|
if (!(other instanceof BetweenExpression)) {
|
|
return false;
|
|
}
|
|
|
|
BetweenExpression that = (BetweenExpression) other;
|
|
return this.propName.equals(that.propName);
|
|
}
|
|
|
|
@Override
|
|
public boolean isSameByBind(SpiExpression other) {
|
|
BetweenExpression that = (BetweenExpression) other;
|
|
return low().equals(that.low())
|
|
&& high().equals(that.high());
|
|
}
|
|
}
|