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

org.hibernate.loader.plan.exec.internal.AbstractCollectionLoadQueryDetails Maven / Gradle / Ivy

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

import java.sql.ResultSet;
import java.sql.SQLException;

import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.internal.util.StringHelper;
import org.hibernate.loader.plan.exec.process.internal.CollectionReferenceInitializerImpl;
import org.hibernate.loader.plan.exec.process.internal.CollectionReturnReader;
import org.hibernate.loader.plan.exec.process.internal.EntityReferenceInitializerImpl;
import org.hibernate.loader.plan.exec.process.internal.ResultSetProcessingContextImpl;
import org.hibernate.loader.plan.exec.process.internal.AbstractRowReader;
import org.hibernate.loader.plan.exec.process.spi.CollectionReferenceInitializer;
import org.hibernate.loader.plan.exec.process.spi.ReaderCollector;
import org.hibernate.loader.plan.exec.process.spi.RowReader;
import org.hibernate.loader.plan.exec.query.internal.SelectStatementBuilder;
import org.hibernate.loader.plan.exec.query.spi.QueryBuildingParameters;
import org.hibernate.loader.plan.exec.spi.CollectionReferenceAliases;
import org.hibernate.loader.plan.exec.spi.EntityReferenceAliases;
import org.hibernate.loader.plan.spi.CollectionQuerySpace;
import org.hibernate.loader.plan.spi.CollectionReturn;
import org.hibernate.loader.plan.spi.EntityReference;
import org.hibernate.loader.plan.spi.LoadPlan;
import org.hibernate.persister.collection.QueryableCollection;
import org.hibernate.persister.entity.OuterJoinLoadable;

/**
 * Handles interpreting a LoadPlan (for loading of a collection) by:
    *
  • generating the SQL query to perform
  • *
  • creating the readers needed to read the results from the SQL's ResultSet
  • *
* * @author Gail Badner */ public abstract class AbstractCollectionLoadQueryDetails extends AbstractLoadQueryDetails { private final CollectionReferenceAliases collectionReferenceAliases; private final ReaderCollector readerCollector; protected AbstractCollectionLoadQueryDetails( LoadPlan loadPlan, AliasResolutionContextImpl aliasResolutionContext, CollectionReturn rootReturn, QueryBuildingParameters buildingParameters, SessionFactoryImplementor factory) { super( loadPlan, aliasResolutionContext, buildingParameters, ( (QueryableCollection) rootReturn.getCollectionPersister() ).getKeyColumnNames(), rootReturn, factory ); final String elementUid = rootReturn.getCollectionPersister().getElementType().isEntityType() ? rootReturn.getElementGraph().getQuerySpaceUid() : null; this.collectionReferenceAliases = aliasResolutionContext.generateCollectionReferenceAliases( rootReturn.getQuerySpaceUid(), rootReturn.getCollectionPersister(), elementUid ); this.readerCollector = new CollectionLoaderReaderCollectorImpl( new CollectionReturnReader( rootReturn ), new CollectionReferenceInitializerImpl( rootReturn, collectionReferenceAliases ) ); if ( rootReturn.getCollectionPersister().getElementType().isEntityType() ) { final EntityReference elementEntityReference = rootReturn.getElementGraph().resolveEntityReference(); readerCollector.add( new EntityReferenceInitializerImpl( elementEntityReference, collectionReferenceAliases.getEntityElementAliases() ) ); } if ( rootReturn.getCollectionPersister().hasIndex() && rootReturn.getCollectionPersister().getIndexType().isEntityType() ) { final EntityReference indexEntityReference = rootReturn.getIndexGraph().resolveEntityReference(); final EntityReferenceAliases indexEntityReferenceAliases = aliasResolutionContext.generateEntityReferenceAliases( indexEntityReference.getQuerySpaceUid(), indexEntityReference.getEntityPersister() ); readerCollector.add( new EntityReferenceInitializerImpl( indexEntityReference, indexEntityReferenceAliases ) ); } } protected CollectionReturn getRootCollectionReturn() { return (CollectionReturn) getRootReturn(); } @Override protected ReaderCollector getReaderCollector() { return readerCollector; } @Override protected CollectionQuerySpace getRootQuerySpace() { return (CollectionQuerySpace) getQuerySpace( getRootCollectionReturn().getQuerySpaceUid() ); } protected CollectionReferenceAliases getCollectionReferenceAliases() { return collectionReferenceAliases; } protected QueryableCollection getQueryableCollection() { return (QueryableCollection) getRootCollectionReturn().getCollectionPersister(); } @Override protected boolean shouldApplyRootReturnFilterBeforeKeyRestriction() { return true; } @Override protected void applyRootReturnSelectFragments(SelectStatementBuilder selectStatementBuilder) { if ( getQueryableCollection().hasIndex() && getQueryableCollection().getIndexType().isEntityType() ) { final EntityReference indexEntityReference = getRootCollectionReturn().getIndexGraph().resolveEntityReference(); final EntityReferenceAliases indexEntityReferenceAliases = getAliasResolutionContext().resolveEntityReferenceAliases( indexEntityReference.getQuerySpaceUid() ); selectStatementBuilder.appendSelectClauseFragment( ( (OuterJoinLoadable) indexEntityReference.getEntityPersister() ).selectFragment( indexEntityReferenceAliases.getTableAlias(), indexEntityReferenceAliases.getColumnAliases().getSuffix() ) ); } } @Override protected void applyRootReturnFilterRestrictions(SelectStatementBuilder selectStatementBuilder) { selectStatementBuilder.appendRestrictions( getQueryableCollection().filterFragment( getRootTableAlias(), getQueryBuildingParameters().getQueryInfluencers().getEnabledFilters() ) ); } @Override protected void applyRootReturnWhereJoinRestrictions(SelectStatementBuilder selectStatementBuilder) { } @Override protected void applyRootReturnOrderByFragments(SelectStatementBuilder selectStatementBuilder) { final String ordering = getQueryableCollection().getSQLOrderByString( getRootTableAlias() ); if ( StringHelper.isNotEmpty( ordering ) ) { selectStatementBuilder.appendOrderByFragment( ordering ); } } private static class CollectionLoaderReaderCollectorImpl extends ReaderCollectorImpl { private final CollectionReturnReader collectionReturnReader; public CollectionLoaderReaderCollectorImpl( CollectionReturnReader collectionReturnReader, CollectionReferenceInitializer collectionReferenceInitializer) { this.collectionReturnReader = collectionReturnReader; add( collectionReferenceInitializer ); } @Override public RowReader buildRowReader() { return new CollectionLoaderRowReader( this ); } @Override public CollectionReturnReader getReturnReader() { return collectionReturnReader; } } private static class CollectionLoaderRowReader extends AbstractRowReader { private final CollectionReturnReader rootReturnReader; public CollectionLoaderRowReader(CollectionLoaderReaderCollectorImpl collectionLoaderReaderCollector) { super( collectionLoaderReaderCollector ); this.rootReturnReader = collectionLoaderReaderCollector.getReturnReader(); } @Override protected Object readLogicalRow(ResultSet resultSet, ResultSetProcessingContextImpl context) throws SQLException { return rootReturnReader.read( resultSet, context ); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy