/* * 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 <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.search.backend.impl; import java.util.concurrent.ConcurrentMap; import javax.transaction.Status; import org.hibernate.search.backend.spi.Work; import org.hibernate.search.engine.integration.impl.ExtendedSearchIntegrator; import org.hibernate.search.util.logging.impl.Log; import org.hibernate.search.util.logging.impl.LoggerFactory; /** * Execute final work in the after transaction synchronization. * * @author Emmanuel Bernard */ public class PostTransactionWorkQueueSynchronization implements WorkQueueSynchronization { private static final Log log = LoggerFactory.make(); /** * FullTextIndexEventListener is using a WeakIdentityHashMap<Session,Synchronization> * So make sure all Synchronization implementations don't have any * (direct or indirect) reference to the Session. */ private final QueueingProcessor queueingProcessor; private boolean consumed; private boolean prepared; private final ConcurrentMap<Object, WorkQueueSynchronization> queuePerTransaction; private final WorkQueue queue; private final Object transactionIdentifier; public PostTransactionWorkQueueSynchronization(Object transactionIdentifier, QueueingProcessor queueingProcessor, ConcurrentMap<Object, WorkQueueSynchronization> queuePerTransaction, ExtendedSearchIntegrator extendedIntegrator) { this.transactionIdentifier = transactionIdentifier; this.queueingProcessor = queueingProcessor; this.queuePerTransaction = queuePerTransaction; queue = new WorkQueue( extendedIntegrator ); } @Override public void add(Work work) { queueingProcessor.add( work, queue ); } @Override public boolean isConsumed() { return consumed; } @Override public void beforeCompletion() { if ( prepared ) { log.tracef( "Transaction's beforeCompletion() phase already been processed, ignoring: %s", this ); } else { log.tracef( "Processing Transaction's beforeCompletion() phase: %s", this ); queueingProcessor.prepareWorks( queue ); prepared = true; } } @Override public void afterCompletion(int i) { try { if ( Status.STATUS_COMMITTED == i ) { log.tracef( "Processing Transaction's afterCompletion() phase for %s. Performing work.", this ); queueingProcessor.performWorks( queue ); } else { log.tracef( "Processing Transaction's afterCompletion() phase for %s. Cancelling work due to transaction status %d", this, i ); queueingProcessor.cancelWorks( queue ); } } finally { consumed = true; //clean the Synchronization per Transaction //not needed stricto sensus but a cleaner approach and faster than the GC if ( queuePerTransaction != null ) { queuePerTransaction.remove( transactionIdentifier ); } } } @Override public void flushWorks() { WorkQueue subQueue = queue.splitQueue(); queueingProcessor.prepareWorks( subQueue ); queueingProcessor.performWorks( subQueue ); } }