mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
173 lines
4.4 KiB
Java
173 lines
4.4 KiB
Java
package com.avaje.ebeaninternal.server.persist;
|
|
|
|
import com.avaje.ebeaninternal.api.BindParams;
|
|
import com.avaje.ebeaninternal.api.SpiSqlUpdate;
|
|
import com.avaje.ebeaninternal.api.SpiTransaction;
|
|
import com.avaje.ebeaninternal.server.core.PersistRequestUpdateSql;
|
|
import com.avaje.ebeaninternal.server.core.PersistRequestUpdateSql.SqlType;
|
|
import com.avaje.ebeaninternal.server.type.DataBind;
|
|
import com.avaje.ebeaninternal.server.util.BindParamsParser;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import javax.persistence.PersistenceException;
|
|
import java.sql.PreparedStatement;
|
|
import java.sql.SQLException;
|
|
|
|
/**
|
|
* Executes the UpdateSql requests.
|
|
*/
|
|
public class ExeUpdateSql {
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(ExeUpdateSql.class);
|
|
|
|
private final Binder binder;
|
|
|
|
private final PstmtFactory pstmtFactory;
|
|
|
|
/**
|
|
* Create with a given binder.
|
|
*/
|
|
public ExeUpdateSql(Binder binder) {
|
|
this.binder = binder;
|
|
this.pstmtFactory = new PstmtFactory();
|
|
}
|
|
|
|
/**
|
|
* Execute the UpdateSql request.
|
|
*/
|
|
public int execute(PersistRequestUpdateSql request) {
|
|
|
|
boolean batchThisRequest = request.isBatchThisRequest();
|
|
|
|
PreparedStatement pstmt = null;
|
|
try {
|
|
|
|
pstmt = bindStmt(request, batchThisRequest);
|
|
|
|
if (batchThisRequest) {
|
|
pstmt.addBatch();
|
|
// return -1 to indicate batch mode
|
|
return -1;
|
|
} else {
|
|
int rowCount = pstmt.executeUpdate();
|
|
request.checkRowCount(rowCount);
|
|
request.postExecute();
|
|
return rowCount;
|
|
}
|
|
} catch (SQLException ex) {
|
|
throw new PersistenceException(ex);
|
|
|
|
} finally {
|
|
if (!batchThisRequest && pstmt != null) {
|
|
try {
|
|
pstmt.close();
|
|
} catch (SQLException e) {
|
|
logger.error(null, e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private PreparedStatement bindStmt(PersistRequestUpdateSql request, boolean batchThisRequest) throws SQLException {
|
|
|
|
SpiSqlUpdate updateSql = request.getUpdateSql();
|
|
SpiTransaction t = request.getTransaction();
|
|
|
|
String sql = updateSql.getSql();
|
|
|
|
BindParams bindParams = updateSql.getBindParams();
|
|
|
|
// process named parameters if required
|
|
sql = BindParamsParser.parse(bindParams, sql);
|
|
updateSql.setGeneratedSql(sql);
|
|
|
|
boolean logSql = request.isLogSql();
|
|
|
|
PreparedStatement pstmt;
|
|
if (batchThisRequest) {
|
|
pstmt = pstmtFactory.getPstmt(t, logSql, sql, request);
|
|
} else {
|
|
if (logSql) {
|
|
t.logSql(sql);
|
|
}
|
|
pstmt = pstmtFactory.getPstmt(t, sql);
|
|
}
|
|
|
|
if (updateSql.getTimeout() > 0) {
|
|
pstmt.setQueryTimeout(updateSql.getTimeout());
|
|
}
|
|
|
|
String bindLog = null;
|
|
if (!bindParams.isEmpty()) {
|
|
bindLog = binder.bind(bindParams, new DataBind(pstmt));
|
|
}
|
|
|
|
request.setBindLog(bindLog);
|
|
|
|
// derive the statement type (for TransactionEvent)
|
|
parseUpdate(sql, request);
|
|
return pstmt;
|
|
}
|
|
|
|
|
|
private void determineType(String word1, String word2, String word3, PersistRequestUpdateSql request) {
|
|
|
|
if (word1.equalsIgnoreCase("UPDATE")) {
|
|
request.setType(SqlType.SQL_UPDATE, word2, "UpdateSql");
|
|
|
|
} else if (word1.equalsIgnoreCase("DELETE")) {
|
|
request.setType(SqlType.SQL_DELETE, word3, "DeleteSql");
|
|
|
|
} else if (word1.equalsIgnoreCase("INSERT")) {
|
|
request.setType(SqlType.SQL_INSERT, word3, "InsertSql");
|
|
|
|
} else {
|
|
request.setType(SqlType.SQL_UNKNOWN, null, "UnknownSql");
|
|
}
|
|
}
|
|
|
|
private void parseUpdate(String sql, PersistRequestUpdateSql request) {
|
|
|
|
int start = leadingTrim(sql);
|
|
|
|
int[] pos = new int[3];
|
|
int spaceCount = 0;
|
|
|
|
int len = sql.length();
|
|
for (int i = start; i < len; i++) {
|
|
char c = sql.charAt(i);
|
|
if (Character.isWhitespace(c)) {
|
|
pos[spaceCount] = i;
|
|
spaceCount++;
|
|
if (spaceCount > 2) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
String firstWord = sql.substring(0, pos[0]);
|
|
String secWord = sql.substring(pos[0] + 1, pos[1]);
|
|
String thirdWord;
|
|
if (pos[2] == 0) {
|
|
// there is nothing after the table name
|
|
thirdWord = sql.substring(pos[1] + 1);
|
|
} else {
|
|
thirdWord = sql.substring(pos[1] + 1, pos[2]);
|
|
}
|
|
|
|
determineType(firstWord, secWord, thirdWord, request);
|
|
}
|
|
|
|
private int leadingTrim(String s) {
|
|
int len = s.length();
|
|
int i;
|
|
for (i = 0; i < len; i++) {
|
|
if (!Character.isWhitespace(s.charAt(i))) {
|
|
return i;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
}
|