/* * Hibernate, Relational Persistence for Idiomatic Java * * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @authors tag. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * 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, v. 2.1. * This program is distributed in the hope that it will be useful, but WITHOUT A * 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, * v.2.1 along with this distribution; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ package org.hibernate.search.query.hibernate.impl; import org.hibernate.search.engine.spi.SearchFactoryImplementor; import org.hibernate.search.util.logging.impl.Log; import org.hibernate.Criteria; import org.hibernate.Session; import org.hibernate.search.query.engine.spi.EntityInfo; import org.hibernate.search.query.engine.spi.TimeoutManager; import org.hibernate.search.util.logging.impl.LoggerFactory; /** * Initializes objects using lookup by it. * This approach is useful is a batch size has been set on the entity. * Hibernate Session will load objects by batch reducing the number of database roundtrip. * * Note that the second level cache is naturally first checked in this approach. * * @author Emmanuel Bernard <emmanuel@hibernate.org> */ public class LookupObjectsInitializer implements ObjectsInitializer { private static final Log log = LoggerFactory.make(); public static final LookupObjectsInitializer INSTANCE = new LookupObjectsInitializer(); private LookupObjectsInitializer() { // use INSTANCE instead of constructor } public void initializeObjects(EntityInfo[] entityInfos, Criteria criteria, Class<?> entityType, SearchFactoryImplementor searchFactoryImplementor, TimeoutManager timeoutManager, Session session) { boolean traceEnabled = log.isTraceEnabled(); //Do not call isTimeOut here as the caller might be the last biggie on the list. final int maxResults = entityInfos.length; if ( maxResults == 0 ) { if ( traceEnabled ) log.tracef("No object to initialize", maxResults); return; } //TODO should we do time out check between each object call? for ( EntityInfo entityInfo : entityInfos ) { ObjectLoaderHelper.load( entityInfo, session ); } if ( traceEnabled ) log.tracef( "Initialized %d objects by lookup method.", maxResults ); } }