org.hibernate.search.jpa.Search Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-orm Show documentation
Show all versions of hibernate-search-orm Show documentation
Hibernate Search integration with Hibernate Core
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.jpa;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceException;
import org.hibernate.Session;
import org.hibernate.search.exception.SearchException;
import org.hibernate.search.util.logging.impl.Log;
import org.hibernate.search.util.logging.impl.LoggerFactory;
import java.lang.invoke.MethodHandles;
/**
* Helper class that should be used when building a FullTextEntityManager
*
* @author Emmanuel Bernard
* @author Hardy Ferentschik
*/
public final class Search {
private static final Log log = LoggerFactory.make( MethodHandles.lookup() );
private Search() {
}
/**
* Build a full text capable EntityManager
* The underlying EM implementation has to be Hibernate EntityManager
* The created instance depends on the passed Session: closing either of them will
* close both instances. They both share the same persistence context.
*
* @param em the entityManager instance to use
* @return a FullTextEntityManager, wrapping the passed EntityManager
* @throws IllegalArgumentException if passed null
*/
public static FullTextEntityManager getFullTextEntityManager(EntityManager em) {
if ( em == null ) {
throw log.getNullEntityManagerPassedToFullEntityManagerCreationException();
}
else if ( em instanceof FullTextEntityManager ) {
return (FullTextEntityManager) em;
}
else {
return org.hibernate.search.Search.getFullTextSession( getSession( em ) );
}
}
private static Session getSession(EntityManager em) {
try {
return em.unwrap( Session.class );
}
catch (PersistenceException e) {
throw new SearchException(
"Trying to use Hibernate Search with a non-Hibernate EntityManager", e
);
}
}
}