/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2010, 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.batch.internal;

import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;

import org.hibernate.engine.jdbc.batch.spi.Batch;
import org.hibernate.engine.jdbc.batch.spi.BatchKey;
import org.hibernate.engine.jdbc.batch.spi.BatchObserver;
import org.hibernate.engine.jdbc.spi.JdbcCoordinator;
import org.hibernate.engine.jdbc.spi.JdbcServices;
import org.hibernate.engine.jdbc.spi.SqlExceptionHelper;
import org.hibernate.engine.jdbc.spi.SqlStatementLogger;
import org.hibernate.engine.transaction.spi.TransactionContext;
import org.hibernate.internal.CoreMessageLogger;

import org.jboss.logging.Logger;

Convenience base class for implementers of the Batch interface.
Author:Steve Ebersole, Lukasz Antoniak (lukasz dot antoniak at gmail dot com)
/** * Convenience base class for implementers of the Batch interface. * * @author Steve Ebersole * @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com) */
public abstract class AbstractBatchImpl implements Batch { private static final CoreMessageLogger LOG = Logger.getMessageLogger( CoreMessageLogger.class, AbstractBatchImpl.class.getName() ); private final BatchKey key; private final JdbcCoordinator jdbcCoordinator; private final TransactionContext transactionContext; private final SqlStatementLogger sqlStatementLogger; private final SqlExceptionHelper sqlExceptionHelper; private LinkedHashMap<String,PreparedStatement> statements = new LinkedHashMap<String,PreparedStatement>(); private LinkedHashSet<BatchObserver> observers = new LinkedHashSet<BatchObserver>(); protected AbstractBatchImpl(BatchKey key, JdbcCoordinator jdbcCoordinator) { if ( key == null ) { throw new IllegalArgumentException( "batch key cannot be null" ); } if ( jdbcCoordinator == null ) { throw new IllegalArgumentException( "JDBC coordinator cannot be null" ); } this.key = key; this.jdbcCoordinator = jdbcCoordinator; this.transactionContext = jdbcCoordinator.getTransactionCoordinator().getTransactionContext(); final JdbcServices jdbcServices = transactionContext.getTransactionEnvironment().getJdbcServices(); this.sqlStatementLogger = jdbcServices.getSqlStatementLogger(); this.sqlExceptionHelper = jdbcServices.getSqlExceptionHelper(); }
Perform batch execution.

This is called from the explicit execution, but may also be called from elsewhere depending on the exact implementation.
/** * Perform batch execution. * <p/> * This is called from the explicit {@link #execute() execution}, but may also be called from elsewhere * depending on the exact implementation. */
protected abstract void doExecuteBatch(); public TransactionContext transactionContext() { return transactionContext; }
Convenience access to the SQLException helper.
Returns:The underlying SQLException helper.
/** * Convenience access to the SQLException helper. * * @return The underlying SQLException helper. */
protected SqlExceptionHelper sqlExceptionHelper() { return sqlExceptionHelper; }
Convenience access to the SQL statement logger.
Returns:The underlying JDBC services.
/** * Convenience access to the SQL statement logger. * * @return The underlying JDBC services. */
protected SqlStatementLogger sqlStatementLogger() { return sqlStatementLogger; } protected void abortBatch() { jdbcCoordinator.abortBatch(); }
Access to the batch's map of statements (keyed by SQL statement string).
Returns:This batch's statements.
/** * Access to the batch's map of statements (keyed by SQL statement string). * * @return This batch's statements. */
protected LinkedHashMap<String,PreparedStatement> getStatements() { return statements; } @Override public final BatchKey getKey() { return key; } @Override public void addObserver(BatchObserver observer) { observers.add( observer ); } @Override public PreparedStatement getBatchStatement(String sql, boolean callable) { if ( sql == null ) { throw new IllegalArgumentException( "sql must be non-null." ); } PreparedStatement statement = statements.get( sql ); if ( statement == null ) { statement = buildBatchStatement( sql, callable ); statements.put( sql, statement ); } else { LOG.debug( "Reusing batch statement" ); sqlStatementLogger().logStatement( sql ); } return statement; } private PreparedStatement buildBatchStatement(String sql, boolean callable) { return jdbcCoordinator.getStatementPreparer().prepareStatement( sql, callable ); } @Override public final void execute() { notifyObserversExplicitExecution(); if ( getStatements().isEmpty() ) { return; } try { doExecuteBatch(); } finally { releaseStatements(); } } protected void releaseStatements() { for ( PreparedStatement statement : getStatements().values() ) { clearBatch( statement ); jdbcCoordinator.release( statement ); } getStatements().clear(); } protected void clearBatch(PreparedStatement statement) { try { statement.clearBatch(); } catch ( SQLException e ) { LOG.unableToReleaseBatchStatement(); } }
Convenience method to notify registered observers of an explicit execution of this batch.
/** * Convenience method to notify registered observers of an explicit execution of this batch. */
protected final void notifyObserversExplicitExecution() { for ( BatchObserver observer : observers ) { observer.batchExplicitlyExecuted(); } }
Convenience method to notify registered observers of an implicit execution of this batch.
/** * Convenience method to notify registered observers of an implicit execution of this batch. */
protected final void notifyObserversImplicitExecution() { for ( BatchObserver observer : observers ) { observer.batchImplicitlyExecuted(); } } @Override public void release() { if ( getStatements() != null && !getStatements().isEmpty() ) { LOG.batchContainedStatementsOnRelease(); } releaseStatements(); observers.clear(); } }