Package org.hibernate.search.store

Source Code of org.hibernate.search.store.RAMDirectoryProvider

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2010, Red Hat, Inc. and/or its affiliates 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.search.store;

import java.io.IOException;
import java.util.Properties;

import org.apache.lucene.analysis.SimpleAnalyzer;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.store.RAMDirectory;
import org.hibernate.HibernateException;
import org.hibernate.search.spi.BuildContext;

/**
* Use a Lucene RAMDirectory
*
* @author Emmanuel Bernard
* @author Sylvain Vieujot
*/
public class RAMDirectoryProvider implements DirectoryProvider<RAMDirectory> {

  private final RAMDirectory directory = new RAMDirectory();
  private String indexName;

  public void initialize(String directoryProviderName, Properties properties, BuildContext context) {
    indexName = directoryProviderName;
    directory.setLockFactory( DirectoryProviderHelper.createLockFactory( null, properties ) );
  }

  public void start() {
    try {
      IndexWriter.MaxFieldLength fieldLength = new IndexWriter.MaxFieldLength( IndexWriter.DEFAULT_MAX_FIELD_LENGTH );
      IndexWriter iw = new IndexWriter( directory, new SimpleAnalyzer(), true, fieldLength );
      iw.close();
    }
    catch (IOException e) {
      throw new HibernateException( "Unable to initialize index: " + indexName, e );
    }
  }


  public RAMDirectory getDirectory() {
    return directory;
  }

  public void stop() {
    directory.close();
  }

  @Override
  public boolean equals(Object obj) {
    // this code is actually broken since the value change after initialize call
    // but from a practical POV this is fine since we only call this method
    // after initialize call
    if ( obj == this ) return true;
    if ( obj == null || !( obj instanceof RAMDirectoryProvider ) ) return false;
    return indexName.equals( ( (RAMDirectoryProvider) obj ).indexName );
  }

  @Override
  public int hashCode() {
    // this code is actually broken since the value change after initialize call
    // but from a practical POV this is fine since we only call this method
    // after initialize call
    int hash = 7;
    return 29 * hash + indexName.hashCode();
  }

}
TOP

Related Classes of org.hibernate.search.store.RAMDirectoryProvider

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.