/* * Copyright 2002-2007 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springmodules.lucene.index.factory; import java.io.IOException; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.lucene.index.IndexReader; import org.springmodules.lucene.index.LuceneIndexAccessException; import org.springmodules.lucene.index.resource.ResourceBindingManager; import org.springmodules.lucene.index.resource.ResourceHolder; /** * Helper class that provides static methods to obtain Lucene IndexReader from * an IndexFactory, and to close this reader if necessary. Has special support * for Spring-managed resources, e.g. for use with LuceneIndexResourceManager. * * <p>Used internally by LuceneIndexTemplate and the LuceneIndexResourceManager. * Can also be used directly in application code. * * @author Brian McCallister * @author Thierry Templier * @see org.springmodules.lucene.index.core.LuceneIndexResourceManager */ public abstract class IndexReaderFactoryUtils { private static final Log logger = LogFactory.getLog(IndexReaderFactoryUtils.class); /** * Get an IndexReader from the given IndexFactory. Changes any Lucene IO exception * into the Spring hierarchy of unchecked lucene index access exceptions, simplifying * calling code and making any exception that is thrown more meaningful. * <p>Is aware of a corresponding IndexReader bound to the current thread, for example * when using LuceneIndexResourceManager or LuceneIndexTransactionManager. Will set an * IndexReader on an IndexHolder bound to the thread. * * @param indexFactory IndexFactory to get IndexReader from * @return a LuceneIndexReader from the given IndexFactory * @throws LuceneIndexAccessException * if the attempt to get an IndexReader failed * @see #doGetIndexReader(IndexFactory) * @see org.springmodules.lucene.index.core.LuceneIndexResourceManager */ public static LuceneIndexReader getIndexReader(IndexFactory indexFactory) { return getIndexReader(indexFactory, true); } /** * Get a IndexReader from the given IndexFactory. Changes any Lucene IO exception * into the Spring hierarchy of unchecked lucene index access exceptions, simplifying * calling code and making any exception that is thrown more meaningful. * <p>Is aware of a corresponding IndexReader bound to the current thread, for example * when using LuceneIndexResourceManager or LuceneIndexTransactionManager. Will set an * IndexReader on an IndexHolder bound to the thread. * * @param indexFactory IndexFactory to get IndexReader from * @param transaction activation of transaction management * @return a LuceneIndexReader from the given IndexFactory * @throws LuceneIndexAccessException * if the attempt to get an IndexReader failed * @see #doGetIndexReader(IndexFactory) * @see org.springmodules.lucene.index.core.LuceneIndexResourceManager */ public static LuceneIndexReader getIndexReader(IndexFactory indexFactory, boolean transaction) { try { return doGetIndexReader(indexFactory, transaction); } catch (IOException ex) { throw new LuceneIndexAccessException("Could not get Lucene reader", ex); } } /** * Actually get a Lucene IndexReader for the given IndexFactory. * Same as getIndexReader, but throwing the original IOException. * * <p>Is aware of a corresponding IndexReader bound to the current thread, for example * when using {@link org.springmodules.lucene.index.transaction.LuceneIndexTransactionManager} * or {@link org.springmodules.lucene.index.resource.ResourceInterceptor}. * * @param indexFactory IndexFactory to get IndexReader from * @param transaction activation of transaction management * @return a Lucene IndexReader from the given IndexFactory * @throws IOException if thrown by Lucene API methods */ public static LuceneIndexReader doGetIndexReader(IndexFactory indexFactory, boolean transaction) throws IOException { /*if( transaction ) { IndexHolder indexHolder = (IndexHolder) TransactionSynchronizationManager.getResource(indexFactory); if (indexHolder != null) { return indexHolder.getIndexReader(); } }*/ ResourceHolder resourceHolder = (ResourceHolder) ResourceBindingManager.getResource(indexFactory); if (resourceHolder!= null ) { return resourceHolder.getIndexReader(); } LuceneIndexReader reader = indexFactory.getIndexReader(); return reader; } /** * Close the given IndexReader if necessary, i.e. if it is not bound to the * thread. * * @param indexFactory IndexFactory that the IndexReader came from * @param indexReader IndexReader to close if necessary * (if this is null, the call will be ignored) * @see #doReleaseIndexReader(IndexFactory, IndexReader) */ public static void releaseIndexReader(IndexFactory indexFactory, LuceneIndexReader indexReader) { releaseIndexReader(indexFactory, indexReader, true); } /** * Close the given IndexReader if necessary, i.e. if it is not bound to the * thread. * * @param indexFactory IndexFactory that the IndexReader came from * @param indexReader IndexReader to close if necessary * @param transaction activation of transaction management * (if this is null, the call will be ignored) * @see #doReleaseIndexReader(IndexFactory, IndexReader) */ public static void releaseIndexReader(IndexFactory indexFactory, LuceneIndexReader indexReader, boolean transaction) { try { doReleaseIndexReader(indexFactory, indexReader, transaction); } catch(IOException ex) { throw new LuceneIndexAccessException("Unable to close index reader", ex); } } /** * Actually close a Lucene IndexReader for the given IndexFactory. * Same as releaseIndexReader, but throwing the original IOException. * * @param indexFactory IndexFactory that the IndexReader came from * @param indexReader IndexReader to close if necessary * @param transaction activation of transaction management * @throws IOException if thrown by Lucene methods */ public static void doReleaseIndexReader(IndexFactory indexFactory, LuceneIndexReader indexReader, boolean transaction) throws IOException { /*if( transaction && TransactionSynchronizationManager.hasResource(indexFactory) ) { return; }*/ if( ResourceBindingManager.hasResource(indexFactory) ) { return; } if( logger.isDebugEnabled() ) { logger.debug("Closing Lucene Index Reader"); } indexReader.close(); } /** * Close the given IndexReader. * * @param indexReader IndexReader to close if necessary * (if this is null, the call will be ignored) */ public static void closeIndexReader(LuceneIndexReader indexReader) { try { if( indexReader!=null ) { indexReader.close(); } } catch(Exception ex) { throw new LuceneIndexAccessException("Unable to close index reader", ex); } } }