com.blazebit.persistence.integration.hibernate.CustomSubselectCollectionLoader Maven / Gradle / Ivy
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Blazebit
*/
package com.blazebit.persistence.integration.hibernate;
import com.blazebit.persistence.integration.hibernate.base.SubselectLoaderUtils;
import org.hibernate.MappingException;
import org.hibernate.engine.spi.LoadQueryInfluencers;
import org.hibernate.engine.spi.QueryParameters;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.engine.spi.SessionImplementor;
import org.hibernate.loader.collection.SubselectCollectionLoader;
import org.hibernate.persister.collection.QueryableCollection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Collection;
import java.util.Map;
import static com.blazebit.persistence.integration.hibernate.base.SubselectLoaderUtils.getPreparedStatementProxy;
/**
* @author Jan-Willem Gmelig Meyling
* @since 1.2.0
*/
public class CustomSubselectCollectionLoader extends SubselectCollectionLoader {
private final int cteParameterCount;
private final int selectParameterCount;
public CustomSubselectCollectionLoader(QueryableCollection persister, String subquery, Collection entityKeys, QueryParameters queryParameters, Map namedParameterLocMap, SessionFactoryImplementor factory, LoadQueryInfluencers loadQueryInfluencers) throws MappingException {
super(persister, subquery, entityKeys, queryParameters, namedParameterLocMap, factory, loadQueryInfluencers);
String originalSql = queryParameters.getFilteredSQL();
if (originalSql.startsWith("with ")) {
StringBuilder sb = new StringBuilder(sql.length() + originalSql.length());
cteParameterCount = SubselectLoaderUtils.applyCteAndCountParameters(originalSql, sb);
selectParameterCount = SubselectLoaderUtils.countSelectParameters(originalSql, sb.length());
sb.append(sql);
this.sql = sb.toString();
} else {
cteParameterCount = 0;
selectParameterCount = 0;
}
}
@Override
protected int bindParameterValues(PreparedStatement statement, QueryParameters queryParameters, int startIndex, SessionImplementor session) throws SQLException {
if (cteParameterCount > 0) {
statement = getPreparedStatementProxy(statement, queryParameters, cteParameterCount, selectParameterCount);
}
return super.bindParameterValues(statement, queryParameters, startIndex, session);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy