mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
260 lines
6.9 KiB
Java
260 lines
6.9 KiB
Java
package com.avaje.ebeaninternal.server.query;
|
|
|
|
import java.sql.Connection;
|
|
import java.sql.PreparedStatement;
|
|
import java.sql.ResultSet;
|
|
import java.sql.ResultSetMetaData;
|
|
import java.sql.SQLException;
|
|
import java.util.ArrayList;
|
|
|
|
import javax.persistence.PersistenceException;
|
|
|
|
import com.avaje.ebean.SqlQueryListener;
|
|
import com.avaje.ebean.SqlRow;
|
|
import com.avaje.ebean.bean.BeanCollection;
|
|
import com.avaje.ebean.config.GlobalProperties;
|
|
import com.avaje.ebeaninternal.api.BindParams;
|
|
import com.avaje.ebeaninternal.api.SpiSqlQuery;
|
|
import com.avaje.ebeaninternal.api.SpiTransaction;
|
|
import com.avaje.ebeaninternal.server.core.Message;
|
|
import com.avaje.ebeaninternal.server.core.RelationalQueryEngine;
|
|
import com.avaje.ebeaninternal.server.core.RelationalQueryRequest;
|
|
import com.avaje.ebeaninternal.server.jmx.MAdminLogging;
|
|
import com.avaje.ebeaninternal.server.persist.Binder;
|
|
import com.avaje.ebeaninternal.server.type.DataBind;
|
|
import com.avaje.ebeaninternal.server.util.BindParamsParser;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
/**
|
|
* Perform native sql fetches.
|
|
*/
|
|
public class DefaultRelationalQueryEngine implements RelationalQueryEngine {
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(DefaultRelationalQueryEngine.class);
|
|
|
|
private final int defaultMaxRows;
|
|
|
|
private final Binder binder;
|
|
|
|
private final String dbTrueValue;
|
|
|
|
public DefaultRelationalQueryEngine(MAdminLogging logControl, Binder binder, String dbTrueValue) {
|
|
this.binder = binder;
|
|
this.defaultMaxRows = GlobalProperties.getInt("nativesql.defaultmaxrows",100000);
|
|
this.dbTrueValue = dbTrueValue == null ? "true" : dbTrueValue;
|
|
}
|
|
|
|
public Object findMany(RelationalQueryRequest request) {
|
|
|
|
SpiSqlQuery query = request.getQuery();
|
|
|
|
long startTime = System.currentTimeMillis();
|
|
|
|
SpiTransaction t = request.getTransaction();
|
|
Connection conn = t.getInternalConnection();
|
|
ResultSet rset = null;
|
|
PreparedStatement pstmt = null;
|
|
|
|
// flag indicating whether we need to close the resources...
|
|
boolean useBackgroundToContinueFetch = false;
|
|
|
|
String sql = query.getQuery();
|
|
|
|
BindParams bindParams = query.getBindParams();
|
|
|
|
if (!bindParams.isEmpty()) {
|
|
// convert any named parameters if required
|
|
sql = BindParamsParser.parse(bindParams, sql);
|
|
}
|
|
|
|
try {
|
|
|
|
String bindLog = "";
|
|
String[] propNames = null;
|
|
|
|
synchronized (query) {
|
|
if (query.isCancelled()){
|
|
logger.trace("Query already cancelled");
|
|
return null;
|
|
}
|
|
|
|
// synchronise for query.cancel() support
|
|
pstmt = conn.prepareStatement(sql);
|
|
|
|
if (query.getTimeout() > 0){
|
|
pstmt.setQueryTimeout(query.getTimeout());
|
|
}
|
|
if (query.getBufferFetchSizeHint() > 0){
|
|
pstmt.setFetchSize(query.getBufferFetchSizeHint());
|
|
}
|
|
|
|
if (!bindParams.isEmpty()) {
|
|
bindLog = binder.bind(bindParams, new DataBind(pstmt));
|
|
}
|
|
|
|
if (request.isLogSql()) {
|
|
String sOut = sql.replace(Constants.NEW_LINE, ' ');
|
|
sOut = sOut.replace(Constants.CARRIAGE_RETURN, ' ');
|
|
t.logInternal(sOut);
|
|
}
|
|
|
|
rset = pstmt.executeQuery();
|
|
|
|
propNames = getPropertyNames(rset);
|
|
}
|
|
|
|
// calculate the initialCapacity of the Map to reduce
|
|
// rehashing for queries with 12+ columns
|
|
float initCap = (propNames.length) / 0.7f;
|
|
int estimateCapacity = (int) initCap + 1;
|
|
|
|
// determine the maxRows limit
|
|
int maxRows = defaultMaxRows;
|
|
if (query.getMaxRows() >= 1) {
|
|
maxRows = query.getMaxRows();
|
|
}
|
|
|
|
boolean hasHitMaxRows = false;
|
|
|
|
int loadRowCount = 0;
|
|
|
|
SqlQueryListener listener = query.getListener();
|
|
|
|
BeanCollectionWrapper wrapper = new BeanCollectionWrapper(request);
|
|
boolean isMap = wrapper.isMap();
|
|
String mapKey = query.getMapKey();
|
|
|
|
SqlRow bean = null;
|
|
|
|
while (rset.next()) {
|
|
synchronized (query) {
|
|
// synchronise for query.cancel() support
|
|
if (!query.isCancelled()){
|
|
bean = readRow(request, rset, propNames, estimateCapacity);
|
|
}
|
|
}
|
|
if (bean != null){
|
|
// bean can be null if query cancelled
|
|
if (listener != null) {
|
|
listener.process(bean);
|
|
|
|
} else {
|
|
if (isMap) {
|
|
Object keyValue = bean.get(mapKey);
|
|
wrapper.addToMap(bean, keyValue);
|
|
} else {
|
|
wrapper.addToCollection(bean);
|
|
}
|
|
}
|
|
|
|
loadRowCount++;
|
|
|
|
if (loadRowCount == maxRows) {
|
|
// break, as we have hit the max rows to fetch...
|
|
hasHitMaxRows = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
BeanCollection<?> beanColl = wrapper.getBeanCollection();
|
|
|
|
if (hasHitMaxRows) {
|
|
if (rset.next()) {
|
|
// there are more rows available after the maxRows limit
|
|
beanColl.setHasMoreRows(true);
|
|
}
|
|
}
|
|
|
|
if (!useBackgroundToContinueFetch) {
|
|
beanColl.setFinishedFetch(true);
|
|
}
|
|
|
|
if (request.isLogSummary()) {
|
|
|
|
long exeTime = System.currentTimeMillis() - startTime;
|
|
|
|
String msg = "SqlQuery rows[" + loadRowCount + "] time[" + exeTime + "] bind["
|
|
+ bindLog + "] finished[" + beanColl.isFinishedFetch() + "]";
|
|
|
|
t.logInternal(msg);
|
|
}
|
|
|
|
if (query.isCancelled()){
|
|
logger.debug("Query was cancelled during execution rows:"+loadRowCount);
|
|
}
|
|
|
|
return beanColl;
|
|
|
|
} catch (Exception e) {
|
|
String m = Message.msg("fetch.error", e.getMessage(), sql);
|
|
throw new PersistenceException(m, e);
|
|
|
|
} finally {
|
|
if (!useBackgroundToContinueFetch) {
|
|
try {
|
|
if (rset != null) {
|
|
rset.close();
|
|
}
|
|
} catch (SQLException e) {
|
|
logger.error(null, e);
|
|
}
|
|
try {
|
|
if (pstmt != null) {
|
|
pstmt.close();
|
|
}
|
|
} catch (SQLException e) {
|
|
logger.error(null, e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build the list of property names.
|
|
*/
|
|
protected String[] getPropertyNames(ResultSet rset) throws SQLException {
|
|
|
|
ArrayList<String> propNames = new ArrayList<String>();
|
|
|
|
ResultSetMetaData rsmd = rset.getMetaData();
|
|
|
|
int columnsPlusOne = rsmd.getColumnCount()+1;
|
|
|
|
|
|
for (int i = 1; i < columnsPlusOne; i++) {
|
|
String columnName = rsmd.getColumnLabel(i);
|
|
// will convert columnName to lower case
|
|
propNames.add(columnName);
|
|
}
|
|
|
|
return (String[]) propNames.toArray(new String[propNames.size()]);
|
|
}
|
|
|
|
/**
|
|
* Read the row from the ResultSet and return as a MapBean.
|
|
*/
|
|
protected SqlRow readRow(RelationalQueryRequest request, ResultSet rset,
|
|
String[] propNames, int initialCapacity) throws SQLException {
|
|
|
|
// by default a map will rehash on the 12th entry
|
|
// it will be pretty common to have 12 or more entries so
|
|
// to reduce rehashing I am trying to estimate a good
|
|
// initial capacity for the MapBean to use.
|
|
SqlRow bean = new DefaultSqlRow(initialCapacity, 0.75f, dbTrueValue);
|
|
|
|
int index = 0;
|
|
|
|
for (int i = 0; i < propNames.length; i++) {
|
|
index++;
|
|
Object value = rset.getObject(index);
|
|
bean.set(propNames[i], value);
|
|
}
|
|
|
|
return bean;
|
|
|
|
}
|
|
|
|
}
|