All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.loader.entity.plan.EntityLoader Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2008, Red Hat Middleware LLC 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 Middleware LLC.
 *
 * 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.loader.entity.plan;

import org.hibernate.LockMode;
import org.hibernate.LockOptions;
import org.hibernate.MappingException;
import org.hibernate.engine.spi.LoadQueryInfluencers;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.internal.CoreLogging;
import org.hibernate.loader.plan.exec.query.spi.QueryBuildingParameters;
import org.hibernate.persister.entity.OuterJoinLoadable;
import org.hibernate.type.Type;

import org.jboss.logging.Logger;

/**
 * UniqueEntityLoader implementation that is the main functionality for LoadPlan-based Entity loading.
 * 

* Can handle batch-loading as well as non-pk, unique-key loading, *

* Much is ultimately delegated to its superclass, AbstractLoadPlanBasedEntityLoader. However: * * Loads an entity instance using outerjoin fetching to fetch associated entities. *
* The EntityPersister must implement Loadable. For other entities, * create a customized subclass of Loader. * * @author Gavin King * @author Steve Ebersole * @author Gail Badner */ public class EntityLoader extends AbstractLoadPlanBasedEntityLoader { private static final Logger log = CoreLogging.logger( EntityLoader.class ); public static Builder forEntity(OuterJoinLoadable persister) { return new Builder( persister ); } public static class Builder { private final OuterJoinLoadable persister; private int batchSize = 1; private LoadQueryInfluencers influencers = LoadQueryInfluencers.NONE; private LockMode lockMode = LockMode.NONE; private LockOptions lockOptions; public Builder(OuterJoinLoadable persister) { this.persister = persister; } public Builder withBatchSize(int batchSize) { this.batchSize = batchSize; return this; } public Builder withInfluencers(LoadQueryInfluencers influencers) { this.influencers = influencers; return this; } public Builder withLockMode(LockMode lockMode) { this.lockMode = lockMode; return this; } public Builder withLockOptions(LockOptions lockOptions) { this.lockOptions = lockOptions; return this; } public EntityLoader byPrimaryKey() { return byUniqueKey( persister.getIdentifierColumnNames(), persister.getIdentifierType() ); } public EntityLoader byUniqueKey(String[] keyColumnNames, Type keyType) { return new EntityLoader( persister.getFactory(), persister, keyColumnNames, keyType, new QueryBuildingParameters() { @Override public LoadQueryInfluencers getQueryInfluencers() { return influencers; } @Override public int getBatchSize() { return batchSize; } @Override public LockMode getLockMode() { return lockMode; } @Override public LockOptions getLockOptions() { return lockOptions; } } ); } } private EntityLoader( SessionFactoryImplementor factory, OuterJoinLoadable persister, String[] uniqueKeyColumnNames, Type uniqueKeyType, QueryBuildingParameters buildingParameters) throws MappingException { super( persister, factory, uniqueKeyColumnNames, uniqueKeyType, buildingParameters ); if ( log.isDebugEnabled() ) { if ( buildingParameters.getLockOptions() != null ) { log.debugf( "Static select for entity %s [%s:%s]: %s", getEntityName(), buildingParameters.getLockOptions().getLockMode(), buildingParameters.getLockOptions().getTimeOut(), getStaticLoadQuery().getSqlStatement() ); } else if ( buildingParameters.getLockMode() != null ) { log.debugf( "Static select for entity %s [%s]: %s", getEntityName(), buildingParameters.getLockMode(), getStaticLoadQuery().getSqlStatement() ); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy