mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
90 lines
2.3 KiB
Java
90 lines
2.3 KiB
Java
package com.avaje.ebeaninternal.server.query;
|
|
|
|
import com.avaje.ebean.bean.EntityBean;
|
|
import com.avaje.ebean.bean.EntityBeanIntercept;
|
|
import com.avaje.ebeaninternal.api.SpiQuery.Mode;
|
|
import com.avaje.ebeaninternal.server.deploy.BeanProperty;
|
|
import com.avaje.ebeaninternal.server.deploy.DbReadContext;
|
|
|
|
import javax.persistence.PersistenceException;
|
|
|
|
/**
|
|
* Controls the loading of property data into a bean.
|
|
* <p>
|
|
* Takes into account the differences of lazy loading and
|
|
* partial objects.
|
|
* </p>
|
|
*/
|
|
public class SqlBeanLoad {
|
|
|
|
private final DbReadContext ctx;
|
|
private final EntityBean bean;
|
|
private final EntityBeanIntercept ebi;
|
|
|
|
private final Class<?> type;
|
|
private final boolean lazyLoading;
|
|
private final boolean refreshLoading;
|
|
private final boolean rawSql;
|
|
|
|
public SqlBeanLoad(DbReadContext ctx, Class<?> type, EntityBean bean, Mode queryMode) {
|
|
|
|
this.ctx = ctx;
|
|
this.rawSql = ctx.isRawSql();
|
|
this.type = type;
|
|
this.lazyLoading = queryMode.equals(Mode.LAZYLOAD_BEAN);
|
|
this.refreshLoading = queryMode.equals(Mode.REFRESH_BEAN);
|
|
this.bean = bean;
|
|
this.ebi = bean == null ? null : bean._ebean_getIntercept();
|
|
}
|
|
|
|
/**
|
|
* Return true if this is a lazy loading.
|
|
*/
|
|
public boolean isLazyLoad() {
|
|
return lazyLoading;
|
|
}
|
|
|
|
/**
|
|
* Increment the resultSet index 1.
|
|
*/
|
|
public void loadIgnore(int increment) {
|
|
ctx.getDataReader().incrementPos(increment);
|
|
}
|
|
|
|
public Object load(BeanProperty prop) {
|
|
|
|
if (!rawSql && !prop.isLoadProperty()) {
|
|
return null;
|
|
}
|
|
|
|
if ((bean == null)
|
|
|| (lazyLoading && ebi.isLoadedProperty(prop.getPropertyIndex()))
|
|
|| (type != null && !prop.isAssignableFrom(type))) {
|
|
|
|
// ignore this property
|
|
// ... null: bean already in persistence context
|
|
// ... lazyLoading: partial bean that is lazy loading
|
|
// ... type: inheritance and not assignable to this instance
|
|
|
|
prop.loadIgnore(ctx);
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
Object dbVal = prop.read(ctx);
|
|
if (!refreshLoading) {
|
|
prop.setValue(bean, dbVal);
|
|
} else {
|
|
prop.setValueIntercept(bean, dbVal);
|
|
}
|
|
|
|
return dbVal;
|
|
|
|
} catch (Exception e) {
|
|
String msg = "Error loading on " + prop.getFullBeanName();
|
|
throw new PersistenceException(msg, e);
|
|
}
|
|
}
|
|
|
|
}
|