Package org.hibernate.search.impl

Source Code of org.hibernate.search.impl.ConfigContext

/*
* 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.impl;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.search.Similarity;
import org.apache.lucene.util.Version;
import org.slf4j.Logger;

import org.hibernate.annotations.common.util.ReflectHelper;
import org.hibernate.annotations.common.util.StringHelper;
import org.hibernate.search.Environment;
import org.hibernate.search.SearchException;
import org.hibernate.search.annotations.AnalyzerDef;
import org.hibernate.search.cfg.SearchConfiguration;
import org.hibernate.search.util.ClassLoaderHelper;
import org.hibernate.search.util.DelegateNamedAnalyzer;
import org.hibernate.search.util.LoggerFactory;

/**
* Provides access to some default configuration settings (eg default <code>Analyzer</code> or default
* <code>Similarity</code>) and checks whether certain optional libraries are available.
*
* @author Emmanuel Bernard
* @author Hardy Ferentschik
*/
public final class ConfigContext {

  private static final Logger log = LoggerFactory.make();
  private static final Version DEFAULT_LUCENE_MATCH_VERSION = Version.LUCENE_30;

  private final Map<String, AnalyzerDef> analyzerDefs = new HashMap<String, AnalyzerDef>();
  private final List<DelegateNamedAnalyzer> lazyAnalyzers = new ArrayList<DelegateNamedAnalyzer>();
  private final Analyzer defaultAnalyzer;
  private final Similarity defaultSimilarity;
  private final boolean solrPresent;
  private final boolean jpaPresent;

  private final Version luceneMatchVersion;

  public ConfigContext(SearchConfiguration cfg) {
    luceneMatchVersion = getLuceneMatchVersion( cfg );
    defaultAnalyzer = initAnalyzer( cfg );
    defaultSimilarity = initSimilarity( cfg );
    solrPresent = isPresent( "org.apache.solr.analysis.TokenizerFactory" );
    jpaPresent = isPresent( "javax.persistence.Id" );
  }

  public void addAnalyzerDef(AnalyzerDef ann) {
    //FIXME somehow remember where the analyzerDef comes from and raise an exception if an analyzerDef
    //with the same name from two different places are added
    //multiple adding from the same place is required to deal with inheritance hierarchy processed multiple times
    if ( ann != null && analyzerDefs.put( ann.name(), ann ) != null ) {
      //throw new SearchException("Multiple AnalyzerDef with the same name: " + name);
    }
  }

  public Analyzer buildLazyAnalyzer(String name) {
    final DelegateNamedAnalyzer delegateNamedAnalyzer = new DelegateNamedAnalyzer( name );
    lazyAnalyzers.add( delegateNamedAnalyzer );
    return delegateNamedAnalyzer;
  }

  public List<DelegateNamedAnalyzer> getLazyAnalyzers() {
    return lazyAnalyzers;
  }

  /**
   * Initializes the Lucene analyzer to use by reading the analyzer class from the configuration and instantiating it.
   *
   * @param cfg The current configuration.
   *
   * @return The Lucene analyzer to use for tokenisation.
   */
  private Analyzer initAnalyzer(SearchConfiguration cfg) {
    Class analyzerClass;
    String analyzerClassName = cfg.getProperty( Environment.ANALYZER_CLASS );
    if ( analyzerClassName != null ) {
      try {
        analyzerClass = ReflectHelper.classForName( analyzerClassName );
      }
      catch ( Exception e ) {
        return buildLazyAnalyzer( analyzerClassName );
      }
    }
    else {
      analyzerClass = StandardAnalyzer.class;
    }
    return ClassLoaderHelper.analyzerInstanceFromClass( analyzerClass, luceneMatchVersion );
  }

  /**
   * Initializes the Lucene similarity to use.
   *
   * @param cfg the search configuration.
   *
   * @return returns the default similarity class.
   */
  private Similarity initSimilarity(SearchConfiguration cfg) {
    String similarityClassName = cfg.getProperty( Environment.SIMILARITY_CLASS );
    Similarity defaultSimilarity;
    if ( StringHelper.isEmpty( similarityClassName ) ) {
      defaultSimilarity = Similarity.getDefault();
    }
    else {
      defaultSimilarity = ClassLoaderHelper.instanceFromName(
          Similarity.class, similarityClassName, ConfigContext.class, "default similarity"
      );
    }
    log.debug( "Using default similarity implementation: {}", defaultSimilarity.getClass().getName() );
    return defaultSimilarity;
  }

  public Analyzer getDefaultAnalyzer() {
    return defaultAnalyzer;
  }

  public Similarity getDefaultSimilarity() {
    return defaultSimilarity;
  }

  public Version getLuceneMatchVersion() {
    return luceneMatchVersion;
  }

  public Map<String, Analyzer> initLazyAnalyzers() {
    Map<String, Analyzer> initializedAnalyzers = new HashMap<String, Analyzer>( analyzerDefs.size() );

    for ( DelegateNamedAnalyzer namedAnalyzer : lazyAnalyzers ) {
      String name = namedAnalyzer.getName();
      if ( initializedAnalyzers.containsKey( name ) ) {
        namedAnalyzer.setDelegate( initializedAnalyzers.get( name ) );
      }
      else {
        if ( analyzerDefs.containsKey( name ) ) {
          final Analyzer analyzer = buildAnalyzer( analyzerDefs.get( name ) );
          namedAnalyzer.setDelegate( analyzer );
          initializedAnalyzers.put( name, analyzer );
        }
        else {
          throw new SearchException( "Analyzer found with an unknown definition: " + name );
        }
      }
    }

    //initialize the remaining definitions
    for ( Map.Entry<String, AnalyzerDef> entry : analyzerDefs.entrySet() ) {
      if ( !initializedAnalyzers.containsKey( entry.getKey() ) ) {
        final Analyzer analyzer = buildAnalyzer( entry.getValue() );
        initializedAnalyzers.put( entry.getKey(), analyzer );
      }
    }
    return Collections.unmodifiableMap( initializedAnalyzers );
  }

  private Analyzer buildAnalyzer(AnalyzerDef analyzerDef) {
    if ( !solrPresent ) {
      throw new SearchException(
          "Use of @AnalyzerDef while Solr is not present in the classpath. Add apache-solr-analyzer.jar"
      );
    }

    // SolrAnalyzerBuilder references Solr classes.
    // InitContext should not (directly or indirectly) load a Solr class to avoid hard dependency
    // unless necessary
    // the current mechanism (check Solr class presence and call SolrAnalyzerBuilder if needed
    // seems to be sufficient on Apple VM (derived from Sun's
    return SolrAnalyzerBuilder.buildAnalyzer( analyzerDef, luceneMatchVersion );
  }

  public boolean isJpaPresent() {
    return jpaPresent;
  }

  private boolean isPresent(String className) {
    try {
      ReflectHelper.classForName( className, ConfigContext.class );
      return true;
    }
    catch ( Exception e ) {
      return false;
    }
  }

  private Version getLuceneMatchVersion(SearchConfiguration cfg) {
    Version version;
    String tmp = cfg.getProperty( Environment.LUCENE_MATCH_VERSION );
    if ( StringHelper.isEmpty( tmp ) ) {
      version = DEFAULT_LUCENE_MATCH_VERSION;
    }
    else {
      try {
        version = Version.valueOf( tmp );
      }
      catch ( IllegalArgumentException e ) {
        StringBuilder msg = new StringBuilder( tmp );
        msg.append( " is a invalid value for the Lucene match version. Possible values are: " );
        for ( Version v : Version.values() ) {
          msg.append( v.toString() );
          msg.append( ", " );
        }
        msg.delete( msg.lastIndexOf( "," ), msg.length() - 1 );
        throw new SearchException( msg.toString() );
      }
    }
    return version;
  }
}
TOP

Related Classes of org.hibernate.search.impl.ConfigContext

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.