Package org.hibernate.search.event

Source Code of org.hibernate.search.event.ContextHolder

// $Id: ContextHolder.java 14954 2008-07-17 20:43:10Z sannegrinovero $
package org.hibernate.search.event;

import java.util.WeakHashMap;

import org.hibernate.cfg.Configuration;
import org.hibernate.search.cfg.SearchConfigurationFromHibernateCore;
import org.hibernate.search.impl.SearchFactoryImpl;

/**
* Holds already built SearchFactory per Hibernate Configuration object
* concurrent threads do not share this information
*
* @author Emmanuel Bernard
*/
public class ContextHolder {
  private static final ThreadLocal<WeakHashMap<Configuration, SearchFactoryImpl>> contexts =
      new ThreadLocal<WeakHashMap<Configuration, SearchFactoryImpl>>();

  //code doesn't have to be multithreaded because SF creation is not.
  //this is not a public API, should really only be used during the SessionFActory building
  public static SearchFactoryImpl getOrBuildSearchFactory(Configuration cfg) {
    WeakHashMap<Configuration, SearchFactoryImpl> contextMap = contexts.get();
    if ( contextMap == null ) {
      contextMap = new WeakHashMap<Configuration, SearchFactoryImpl>( 2 );
      contexts.set( contextMap );
    }
    SearchFactoryImpl searchFactory = contextMap.get( cfg );
    if ( searchFactory == null ) {
      searchFactory = new SearchFactoryImpl( new SearchConfigurationFromHibernateCore( cfg ) );
      contextMap.put( cfg, searchFactory );
    }
    return searchFactory;
  }
}
TOP

Related Classes of org.hibernate.search.event.ContextHolder

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.