io.ebeaninternal.server.persist.dml.UpdateMeta Maven / Gradle / Ivy
package io.ebeaninternal.server.persist.dml;
import io.ebean.bean.EntityBean;
import io.ebeaninternal.api.ConcurrencyMode;
import io.ebeaninternal.api.SpiUpdatePlan;
import io.ebeaninternal.server.core.PersistRequestBean;
import io.ebeaninternal.server.deploy.BeanDescriptor;
import io.ebeaninternal.server.persist.dmlbind.Bindable;
import io.ebeaninternal.server.persist.dmlbind.BindableId;
import io.ebeaninternal.server.persist.dmlbind.BindableList;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
/**
* Meta data for update handler. The meta data is for a particular bean type. It
* is considered immutable and is thread safe.
*/
final class UpdateMeta extends BaseMeta {
private final BindableList set;
UpdateMeta(BindableList set, BindableId id, Bindable version, Bindable tenantId) {
super(id, version, tenantId);
this.set = set;
}
/**
* Bind the request based on the concurrency mode.
*/
public void bind(PersistRequestBean> persist, DmlHandler bind, SpiUpdatePlan updatePlan) throws SQLException {
EntityBean bean = persist.entityBean();
updatePlan.bindSet(bind, bean);
id.dmlBind(bind, bean);
if (tenantId != null) {
tenantId.dmlBind(bind, bean);
}
if (persist.concurrencyMode() == ConcurrencyMode.VERSION) {
version.dmlBind(bind, bean);
}
}
/**
* get or generate the sql based on the concurrency mode.
*/
SpiUpdatePlan updatePlan(PersistRequestBean> request) {
return dynamicUpdatePlan(request);
}
private SpiUpdatePlan dynamicUpdatePlan(PersistRequestBean> persistRequest) {
String key = persistRequest.updatePlanHash();
// check if we can use a cached UpdatePlan
BeanDescriptor> beanDescriptor = persistRequest.descriptor();
SpiUpdatePlan updatePlan = beanDescriptor.updatePlan(key);
if (updatePlan != null) {
return updatePlan;
}
// build a new UpdatePlan and cache it
// build a bindableList that only contains the changed properties
List list = new ArrayList<>();
set.addToUpdate(persistRequest, list);
BindableList bindableList = new BindableList(list);
ConcurrencyMode mode = persistRequest.concurrencyMode();
// build the SQL for this update statement
String sql = genSql(mode, bindableList, persistRequest.updateTable());
updatePlan = new UpdatePlan(key, mode, sql, bindableList);
// add the UpdatePlan to the cache
beanDescriptor.updatePlan(key, updatePlan);
return updatePlan;
}
private String genSql(ConcurrencyMode conMode, BindableList bindableList, String tableName) {
GenerateDmlRequest request = new GenerateDmlRequest();
request.append("update ").append(tableName).append(" set ");
request.setUpdateSetMode();
bindableList.dmlAppend(request);
if (request.bindColumnCount() == 0) {
// update properties must have been updatable=false
// with the result that nothing is in the set clause
return null;
}
request.append(" where ");
return appendWhere(request, conMode);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy