/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2011, Red Hat Inc. or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.hibernate.engine.jdbc.internal; import org.hibernate.AssertionFailure; import org.hibernate.ScrollMode; import org.hibernate.TransactionException; import org.hibernate.cfg.Settings; import org.hibernate.engine.jdbc.spi.LogicalConnectionImplementor; import org.hibernate.engine.jdbc.spi.SqlExceptionHelper; import org.hibernate.engine.jdbc.spi.StatementPreparer; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * @author Steve Ebersole * @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com) */ class StatementPreparerImpl implements StatementPreparer { private long transactionTimeOut = -1; private JdbcCoordinatorImpl jdbcCoordinator; StatementPreparerImpl(JdbcCoordinatorImpl jdbcCoordinator) { this.jdbcCoordinator = jdbcCoordinator; } protected final Settings settings() { return jdbcCoordinator.sessionFactory().getSettings(); } protected final Connection connectionProxy() { return logicalConnection().getShareableConnectionProxy(); } protected final LogicalConnectionImplementor logicalConnection() { return jdbcCoordinator.getLogicalConnection(); } protected final SqlExceptionHelper sqlExceptionHelper() { return jdbcCoordinator.getTransactionCoordinator() .getTransactionContext() .getTransactionEnvironment() .getJdbcServices() .getSqlExceptionHelper(); } @Override public PreparedStatement prepareStatement(String sql) { return buildPreparedStatementPreparationTemplate( sql, false ).prepareStatement(); } @Override public PreparedStatement prepareStatement(String sql, final boolean isCallable) { jdbcCoordinator.executeBatch(); return buildPreparedStatementPreparationTemplate( sql, isCallable ).prepareStatement(); } private StatementPreparationTemplate buildPreparedStatementPreparationTemplate(String sql, final boolean isCallable) { return new StatementPreparationTemplate( sql ) { @Override protected PreparedStatement doPrepare() throws SQLException { return isCallable ? connectionProxy().prepareCall( sql ) : connectionProxy().prepareStatement( sql ); } }; } private void checkAutoGeneratedKeysSupportEnabled() { if ( ! settings().isGetGeneratedKeysEnabled() ) { throw new AssertionFailure( "getGeneratedKeys() support is not enabled" ); } } @Override public PreparedStatement prepareStatement(String sql, final int autoGeneratedKeys) { if ( autoGeneratedKeys == PreparedStatement.RETURN_GENERATED_KEYS ) { checkAutoGeneratedKeysSupportEnabled(); } jdbcCoordinator.executeBatch(); return new StatementPreparationTemplate( sql ) { public PreparedStatement doPrepare() throws SQLException { return connectionProxy().prepareStatement( sql, autoGeneratedKeys ); } }.prepareStatement(); } @Override public PreparedStatement prepareStatement(String sql, final String[] columnNames) { checkAutoGeneratedKeysSupportEnabled(); jdbcCoordinator.executeBatch(); return new StatementPreparationTemplate( sql ) { public PreparedStatement doPrepare() throws SQLException { return connectionProxy().prepareStatement( sql, columnNames ); } }.prepareStatement(); } @Override public PreparedStatement prepareQueryStatement( String sql, final boolean isCallable, final ScrollMode scrollMode) { if ( scrollMode != null && !scrollMode.equals( ScrollMode.FORWARD_ONLY ) ) { if ( ! settings().isScrollableResultSetsEnabled() ) { throw new AssertionFailure("scrollable result sets are not enabled"); } PreparedStatement ps = new QueryStatementPreparationTemplate( sql ) { public PreparedStatement doPrepare() throws SQLException { return isCallable ? connectionProxy().prepareCall( sql, scrollMode.toResultSetType(), ResultSet.CONCUR_READ_ONLY ) : connectionProxy().prepareStatement( sql, scrollMode.toResultSetType(), ResultSet.CONCUR_READ_ONLY ); } }.prepareStatement(); logicalConnection().getResourceRegistry().registerLastQuery( ps ); return ps; } else { PreparedStatement ps = new QueryStatementPreparationTemplate( sql ) { public PreparedStatement doPrepare() throws SQLException { return isCallable ? connectionProxy().prepareCall( sql ) : connectionProxy().prepareStatement( sql ); } }.prepareStatement(); logicalConnection().getResourceRegistry().registerLastQuery( ps ); return ps; } } @Override public void setTransactionTimeOut(int timeOut) { transactionTimeOut = timeOut; } @Override public void unsetTransactionTimeOut() { transactionTimeOut = -1; } private abstract class StatementPreparationTemplate { protected final String sql; protected StatementPreparationTemplate(String sql) { this.sql = jdbcCoordinator.getTransactionCoordinator().getTransactionContext().onPrepareStatement( sql ); } public PreparedStatement prepareStatement() { try { PreparedStatement preparedStatement = doPrepare(); setStatementTimeout( preparedStatement ); postProcess( preparedStatement ); return preparedStatement; } catch ( SQLException e ) { throw sqlExceptionHelper().convert( e, "could not prepare statement", sql ); } } protected abstract PreparedStatement doPrepare() throws SQLException; public void postProcess(PreparedStatement preparedStatement) throws SQLException { } private void setStatementTimeout(PreparedStatement preparedStatement) throws SQLException { if ( transactionTimeOut > 0 ) { int timeout = (int) ( transactionTimeOut - ( System.currentTimeMillis() / 1000 ) ); if ( timeout <= 0 ) { throw new TransactionException( "transaction timeout expired" ); } else { preparedStatement.setQueryTimeout( timeout ); } } } } private abstract class QueryStatementPreparationTemplate extends StatementPreparationTemplate { protected QueryStatementPreparationTemplate(String sql) { super( sql ); } public void postProcess(PreparedStatement preparedStatement) throws SQLException { super.postProcess( preparedStatement ); setStatementFetchSize( preparedStatement ); } } private void setStatementFetchSize(PreparedStatement statement) throws SQLException { if ( settings().getJdbcFetchSize() != null ) { statement.setFetchSize( settings().getJdbcFetchSize() ); } } }