org.hibernate.search.batchindexing.impl.BatchTransactionalContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-orm Show documentation
Show all versions of hibernate-search-orm Show documentation
Hibernate Search integration with Hibernate Core
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.batchindexing.impl;
import javax.transaction.Status;
import javax.transaction.SystemException;
import javax.transaction.TransactionManager;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.engine.transaction.jta.platform.spi.JtaPlatform;
import org.hibernate.resource.transaction.spi.TransactionCoordinatorBuilder;
import org.hibernate.search.engine.integration.impl.ExtendedSearchIntegrator;
import org.hibernate.search.exception.ErrorHandler;
import org.hibernate.search.util.logging.impl.Log;
import org.hibernate.search.util.logging.impl.LoggerFactory;
import java.lang.invoke.MethodHandles;
/**
* Valueholder for the services needed by the massindexer to wrap operations in transactions.
*
* @since 4.4
* @see OptionallyWrapInJTATransaction
* @author Sanne Grinovero
*/
public class BatchTransactionalContext {
private static final Log log = LoggerFactory.make( MethodHandles.lookup() );
final SessionFactoryImplementor factory;
final ErrorHandler errorHandler;
final TransactionManager transactionManager;
final TransactionCoordinatorBuilder transactionCoordinatorBuilder;
final ExtendedSearchIntegrator extendedIntegrator;
public BatchTransactionalContext(ExtendedSearchIntegrator extendedIntegrator, SessionFactoryImplementor sessionFactory, ErrorHandler errorHandler, String tenantId) {
this.extendedIntegrator = extendedIntegrator;
this.factory = sessionFactory;
this.errorHandler = errorHandler;
this.transactionManager = lookupTransactionManager( factory );
this.transactionCoordinatorBuilder = lookupTransactionCoordinatorBuilder( factory );
}
private static TransactionCoordinatorBuilder lookupTransactionCoordinatorBuilder(SessionFactoryImplementor sessionFactory) {
return sessionFactory.getServiceRegistry().getService( TransactionCoordinatorBuilder.class );
}
private static TransactionManager lookupTransactionManager(SessionFactoryImplementor sessionFactory) {
return sessionFactory.getServiceRegistry()
.getService( JtaPlatform.class )
.retrieveTransactionManager();
}
boolean wrapInTransaction() {
if ( !transactionCoordinatorBuilder.isJta() ) {
//Today we only require a TransactionManager on JTA based transaction factories
log.trace( "TransactionFactory does not require a TransactionManager: don't wrap in a JTA transaction" );
return false;
}
if ( transactionManager == null ) {
//no TM, nothing to do OR configuration mistake
log.trace( "No TransactionManager found, do not start a surrounding JTA transaction" );
return false;
}
try {
if ( transactionManager.getStatus() == Status.STATUS_NO_TRANSACTION ) {
log.trace( "No Transaction in progress, needs to start a JTA transaction" );
return true;
}
}
catch (SystemException e) {
log.cannotGuessTransactionStatus( e );
return false;
}
log.trace( "Transaction in progress, no need to start a JTA transaction" );
return false;
}
}