mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
117 lines
3.1 KiB
Java
117 lines
3.1 KiB
Java
package com.avaje.ebeaninternal.server.expression;
|
|
|
|
import com.avaje.ebean.LikeType;
|
|
import com.avaje.ebeaninternal.api.HashQueryPlanBuilder;
|
|
import com.avaje.ebeaninternal.api.SpiExpression;
|
|
import com.avaje.ebeaninternal.api.SpiExpressionRequest;
|
|
import com.avaje.ebeaninternal.server.el.ElPropertyValue;
|
|
|
|
import java.io.IOException;
|
|
|
|
class LikeExpression extends AbstractValueExpression {
|
|
|
|
private final boolean caseInsensitive;
|
|
|
|
private final LikeType type;
|
|
|
|
LikeExpression(String propertyName, Object value, boolean caseInsensitive, LikeType type) {
|
|
super(propertyName, value);
|
|
this.caseInsensitive = caseInsensitive;
|
|
this.type = type;
|
|
}
|
|
|
|
@Override
|
|
public void writeDocQuery(DocQueryContext context) throws IOException {
|
|
context.writeLike(propName, strValue(), type, caseInsensitive);
|
|
}
|
|
|
|
@Override
|
|
public void addBindValues(SpiExpressionRequest request) {
|
|
|
|
ElPropertyValue prop = getElProp(request);
|
|
if (prop != null && prop.isDbEncrypted()) {
|
|
// bind the key as well as the value
|
|
String encryptKey = prop.getBeanProperty().getEncryptKey().getStringValue();
|
|
request.addBindEncryptKey(encryptKey);
|
|
}
|
|
|
|
String bindValue = getValue(strValue(), caseInsensitive, type);
|
|
request.addBindValue(bindValue);
|
|
}
|
|
|
|
@Override
|
|
public void addSql(SpiExpressionRequest request) {
|
|
|
|
String pname = propName;
|
|
ElPropertyValue prop = getElProp(request);
|
|
if (prop != null && prop.isDbEncrypted()) {
|
|
pname = prop.getBeanProperty().getDecryptProperty(propName);
|
|
}
|
|
if (caseInsensitive) {
|
|
request.append("lower(").append(pname).append(")");
|
|
} else {
|
|
request.append(pname);
|
|
}
|
|
if (type.equals(LikeType.EQUAL_TO)) {
|
|
request.append(" = ? ");
|
|
} else {
|
|
// append db platform like clause
|
|
request.appendLike();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Based on caseInsensitive and the property name.
|
|
*/
|
|
@Override
|
|
public void queryPlanHash(HashQueryPlanBuilder builder) {
|
|
builder.add(LikeExpression.class).add(caseInsensitive).add(propName);
|
|
builder.bind(1);
|
|
}
|
|
|
|
@Override
|
|
public int queryBindHash() {
|
|
return strValue().hashCode();
|
|
}
|
|
|
|
@Override
|
|
public boolean isSameByPlan(SpiExpression other) {
|
|
if (!(other instanceof LikeExpression)) {
|
|
return false;
|
|
}
|
|
|
|
LikeExpression that = (LikeExpression) other;
|
|
return this.propName.equals(that.propName)
|
|
&& this.caseInsensitive == that.caseInsensitive
|
|
&& this.type == that.type;
|
|
}
|
|
|
|
@Override
|
|
public boolean isSameByBind(SpiExpression other) {
|
|
LikeExpression that = (LikeExpression) other;
|
|
return strValue().equals(that.strValue());
|
|
}
|
|
|
|
private static String getValue(String value, boolean caseInsensitive, LikeType type) {
|
|
if (caseInsensitive) {
|
|
value = value.toLowerCase();
|
|
}
|
|
switch (type) {
|
|
case RAW:
|
|
return value;
|
|
case STARTS_WITH:
|
|
return value + "%";
|
|
case ENDS_WITH:
|
|
return "%" + value;
|
|
case CONTAINS:
|
|
return "%" + value + "%";
|
|
case EQUAL_TO:
|
|
return value;
|
|
|
|
default:
|
|
throw new RuntimeException("LikeType " + type + " missed?");
|
|
}
|
|
}
|
|
|
|
}
|