Package org.springmodules.lucene.index.factory

Source Code of org.springmodules.lucene.index.factory.IndexWriterFactoryUtils

/*
* Copyright 2002-2005 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.IndexWriter;
import org.springmodules.lucene.index.LuceneIndexAccessException;
import org.springmodules.resource.support.ResourceBindingManager;

/**
* Helper class that provides static methods to obtain Lucene IndexWriter from
* an IndexFactory, and to close this writer if necessary. Has special support
* for Spring-managed resources, e.g. for use with LuceneIndexResourceManager.
*
* <p>Used internally by LuceneIndexTemplate, the indexer objects 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 IndexWriterFactoryUtils {

  private static final Log logger = LogFactory.getLog(IndexWriterFactoryUtils.class);

  /**
   * Get a IndexWriter 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 IndexWriter bound to the current thread, for example
   * when using LuceneIndexResourceManager. Will set an IndexWriter on an IndexHolder bound
   * to the thread.
   * @param indexFactory IndexFactory to get IndexReader from
   * @return a Lucene IndexWriter from the given IndexFactory
   * @throws LuceneIndexAccessException
   * if the attempt to get an IndexReader failed
   * @see #doGetIndexWriter(IndexFactory)
   * @see org.springmodules.lucene.index.core.LuceneIndexResourceManager
   */
  public static IndexWriter getIndexWriter(IndexFactory indexFactory) {
    try {
      return doGetIndexWriter(indexFactory);
    } catch (IOException ex) {
      throw new LuceneIndexAccessException("Could not get Lucene reader", ex);
    }
  }

  /**
   * Actually get a Lucene IndexWriter for the given IndexFactory.
   * Same as getIndexWriter, but throwing the original IOException.
   * @param indexFactory IndexFactory to get IndexWriter from
   * @return a Lucene IndexWriter from the given IndexFactory
   * @throws IOException if thrown by Lucene API methods
   */
  public static IndexWriter doGetIndexWriter(IndexFactory indexFactory) throws IOException {
    IndexHolder indexHolder = (IndexHolder) ResourceBindingManager.getResource(indexFactory);
    if (indexHolder != null && indexHolder.getIndexWriter()!=null ) {
      return indexHolder.getIndexWriter();
    }

    IndexWriter writer = indexFactory.getIndexWriter();
    if( indexHolder!=null ) {
      //Lazily open the reader if there is an IndexHolder
      indexHolder.setIndexWriter(writer);
    }

    return writer;
    }

  /**
   * Close the given IndexWriter if necessary, i.e. if it is not bound to the
   * thread.
   * @param indexFactory IndexFactory that the IndexReader came from
   * @param indexWriter IndexWriter to close if necessary
   * (if this is null, the call will be ignored)
   * @see #doReleaseIndexWriter(IndexFactory, IndexWriter)
   */
  public static void releaseIndexWriter(IndexFactory indexFactory,IndexWriter indexWriter) {
    try {
      doReleaseIndexWriter(indexFactory,indexWriter);
    } catch(IOException ex) {
      throw new LuceneIndexAccessException("Unable to close index writer",ex);
    }
  }

  /**
   * Actually close a Lucene IndexWriter for the given IndexFactory.
   * Same as releaseIndexWriter, but throwing the original IOException.
   * @param indexFactory IndexFactory that the IndexReader came from
   * @param indexWriter IndexWriter to close if necessary
   * @throws IOException if thrown by Lucene methods
   */
  public static void doReleaseIndexWriter(IndexFactory indexFactory,IndexWriter indexWriter) throws IOException {
    if (indexWriter == null || ResourceBindingManager.hasResource(indexFactory)) {
      return;
    }

    indexWriter.close();
  }

}
TOP

Related Classes of org.springmodules.lucene.index.factory.IndexWriterFactoryUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.