Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get rid of a useless/obsolete helper class #9914

Merged
merged 5 commits into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import java.util.function.Function;
import java.util.function.Supplier;

import static org.hibernate.internal.util.StringHelper.isNotEmpty;

/**
* @author Steve Ebersole
*/
Expand Down Expand Up @@ -39,8 +41,8 @@ public static <T> T coalesce(T... values) {
}
for ( T value : values ) {
if ( value != null ) {
if ( value instanceof String ) {
if ( StringHelper.isNotEmpty( (String) value ) ) {
if ( value instanceof String string) {
if ( isNotEmpty( string ) ) {
return value;
}
}
Expand All @@ -66,7 +68,7 @@ public static <T> T coalesce(T... values) {
@SafeVarargs
public static <T> T coalesceSuppliedValues(Supplier<T>... valueSuppliers) {
return coalesceSuppliedValues(
(value) -> ( value instanceof String && StringHelper.isNotEmpty( (String) value ) )
(value) -> value instanceof String string && isNotEmpty( string )
|| value != null,
valueSuppliers
);
Expand Down Expand Up @@ -94,7 +96,6 @@ public static <T> T coalesceSuppliedValues(Function<T,Boolean> checker, Supplier
if ( checker.apply( value ) ) {
return value;
}

}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
import jakarta.persistence.criteria.CriteriaUpdate;

/**
* The internal contract for QueryProducer implementations. Acts as the value passed to
* produced queries and provides them with access to needed functionality.
* The internal contract for {@link QueryProducer} implementations.
*
* @deprecated This interface is no longer needed and will be removed.
*
* @author Steve Ebersole
*/
@Deprecated(since = "7.0", forRemoval = true)
public interface QueryProducerImplementor extends QueryProducer {
SessionFactoryImplementor getFactory();

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@
import java.util.concurrent.TimeUnit;

import org.hibernate.CacheMode;
import org.hibernate.SharedSessionContract;
import org.hibernate.cache.spi.QueryKey;
import org.hibernate.cache.spi.QueryResultsCache;
import org.hibernate.engine.spi.LoadQueryInfluencers;
import org.hibernate.engine.spi.PersistenceContext;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.internal.util.collections.ArrayHelper;
import org.hibernate.query.TupleTransformer;
import org.hibernate.query.spi.QueryOptions;
import org.hibernate.sql.exec.SqlExecLogger;
import org.hibernate.sql.exec.spi.ExecutionContext;
import org.hibernate.sql.exec.spi.JdbcOperationQuerySelect;
Expand All @@ -26,6 +28,7 @@
import org.hibernate.sql.results.internal.RowProcessingStateStandardImpl;
import org.hibernate.sql.results.internal.RowTransformerStandardImpl;
import org.hibernate.sql.results.internal.RowTransformerTupleTransformerAdapter;
import org.hibernate.sql.results.jdbc.internal.AbstractJdbcValues;
import org.hibernate.sql.results.jdbc.internal.CachedJdbcValuesMetadata;
import org.hibernate.sql.results.jdbc.internal.DeferredResultSetAccess;
import org.hibernate.sql.results.jdbc.internal.JdbcValuesCacheHit;
Expand All @@ -45,6 +48,9 @@
import org.hibernate.type.descriptor.java.JavaType;
import org.hibernate.type.spi.TypeConfiguration;

import static org.hibernate.internal.util.NullnessHelper.coalesceSuppliedValues;
import static org.hibernate.internal.util.collections.ArrayHelper.indexOf;

/**
* Standard JdbcSelectExecutor implementation used by Hibernate,
* through {@link JdbcSelectExecutorStandardImpl#INSTANCE}
Expand Down Expand Up @@ -141,22 +147,7 @@ private <T, R> T doExecuteQuery(
);

if ( rowTransformer == null ) {
@SuppressWarnings("unchecked")
final TupleTransformer<R> tupleTransformer = (TupleTransformer<R>) executionContext
.getQueryOptions()
.getTupleTransformer();

if ( tupleTransformer == null ) {
rowTransformer = RowTransformerStandardImpl.instance();
}
else {
final List<DomainResult<?>> domainResults = jdbcValues.getValuesMapping().getDomainResults();
final String[] aliases = new String[domainResults.size()];
for ( int i = 0; i < domainResults.size(); i++ ) {
aliases[i] = domainResults.get( i ).getResultVariable();
}
rowTransformer = new RowTransformerTupleTransformerAdapter<>( aliases, tupleTransformer );
}
rowTransformer = getRowTransformer( executionContext, jdbcValues );
}

final SharedSessionContractImplementor session = executionContext.getSession();
Expand Down Expand Up @@ -200,10 +191,8 @@ public boolean shouldReturnProxies() {
}
};

final JdbcValuesSourceProcessingStateStandardImpl valuesProcessingState = new JdbcValuesSourceProcessingStateStandardImpl(
executionContext,
processingOptions
);
final JdbcValuesSourceProcessingStateStandardImpl valuesProcessingState =
new JdbcValuesSourceProcessingStateStandardImpl( executionContext, processingOptions );

final RowReader<R> rowReader = ResultsHelper.createRowReader(
session.getFactory(),
Expand All @@ -230,7 +219,8 @@ public boolean shouldReturnProxies() {

if ( stats ) {
final long endTime = System.nanoTime();
final long milliseconds = TimeUnit.MILLISECONDS.convert( endTime - startTime, TimeUnit.NANOSECONDS );
final long milliseconds =
TimeUnit.MILLISECONDS.convert( endTime - startTime, TimeUnit.NANOSECONDS );
statistics.queryExecuted(
executionContext.getQueryIdentifier( jdbcSelect.getSqlString() ),
getResultSize( result ),
Expand All @@ -241,11 +231,25 @@ public boolean shouldReturnProxies() {
return result;
}

private <T> int getResultSize(T result) {
if ( result instanceof List ) {
return ( (List<?>) result ).size();
private static <R> RowTransformer<R> getRowTransformer(ExecutionContext executionContext, JdbcValues jdbcValues) {
@SuppressWarnings("unchecked")
final TupleTransformer<R> tupleTransformer =
(TupleTransformer<R>) executionContext.getQueryOptions().getTupleTransformer();
if ( tupleTransformer == null ) {
return RowTransformerStandardImpl.instance();
}
return -1;
else {
final List<DomainResult<?>> domainResults = jdbcValues.getValuesMapping().getDomainResults();
final String[] aliases = new String[domainResults.size()];
for ( int i = 0; i < domainResults.size(); i++ ) {
aliases[i] = domainResults.get( i ).getResultVariable();
}
return new RowTransformerTupleTransformerAdapter<>( aliases, tupleTransformer );
}
}

private <T> int getResultSize(T result) {
return result instanceof List<?> list ? list.size() : -1;
}

private JdbcValues resolveJdbcValuesSource(
Expand All @@ -258,30 +262,32 @@ private JdbcValues resolveJdbcValuesSource(
final SessionFactoryImplementor factory = session.getFactory();
final boolean queryCacheEnabled = factory.getSessionFactoryOptions().isQueryCacheEnabled();

final List<?> cachedResults;
final CacheMode cacheMode = JdbcExecHelper.resolveCacheMode( executionContext );

final CacheMode cacheMode = resolveCacheMode( executionContext );
final JdbcValuesMappingProducer mappingProducer = jdbcSelect.getJdbcValuesMappingProducer();
final boolean cacheable = queryCacheEnabled && canBeCached
&& executionContext.getQueryOptions().isResultCachingEnabled() == Boolean.TRUE;
final QueryKey queryResultsCacheKey;
final QueryOptions queryOptions = executionContext.getQueryOptions();
final boolean cacheable =
queryCacheEnabled
&& canBeCached
&& queryOptions.isResultCachingEnabled() == Boolean.TRUE;

final QueryKey queryResultsCacheKey;
final List<?> cachedResults;
if ( cacheable && cacheMode.isGetEnabled() ) {
SqlExecLogger.SQL_EXEC_LOGGER.debugf( "Reading Query result cache data per CacheMode#isGetEnabled [%s]", cacheMode.name() );
final Set<String> querySpaces = jdbcSelect.getAffectedTableNames();
if ( querySpaces == null || querySpaces.size() == 0 ) {
if ( querySpaces == null || querySpaces.isEmpty() ) {
SqlExecLogger.SQL_EXEC_LOGGER.tracef( "Unexpected querySpaces is empty" );
}
else {
SqlExecLogger.SQL_EXEC_LOGGER.tracef( "querySpaces is `%s`", querySpaces );
}

final QueryResultsCache queryCache = factory.getCache()
.getQueryResultsCache( executionContext.getQueryOptions().getResultCacheRegionName() );
.getQueryResultsCache( queryOptions.getResultCacheRegionName() );

queryResultsCacheKey = QueryKey.from(
jdbcSelect.getSqlString(),
executionContext.getQueryOptions().getLimit(),
queryOptions.getLimit(),
executionContext.getQueryParameterBindings(),
session
);
Expand Down Expand Up @@ -321,7 +327,7 @@ private JdbcValues resolveJdbcValuesSource(
if ( cacheable && cacheMode.isPutEnabled() ) {
queryResultsCacheKey = QueryKey.from(
jdbcSelect.getSqlString(),
executionContext.getQueryOptions().getLimit(),
queryOptions.getLimit(),
executionContext.getQueryParameterBindings(),
session
);
Expand All @@ -331,20 +337,41 @@ private JdbcValues resolveJdbcValuesSource(
}
}

return resolveJdbcValues(
queryIdentifier,
executionContext,
resultSetAccess,
cachedResults,
queryResultsCacheKey,
mappingProducer,
session,
factory
);
}

private static AbstractJdbcValues resolveJdbcValues(
String queryIdentifier,
ExecutionContext executionContext,
DeferredResultSetAccess resultSetAccess,
List<?> cachedResults,
QueryKey queryResultsCacheKey,
JdbcValuesMappingProducer mappingProducer,
SharedSessionContractImplementor session,
SessionFactoryImplementor factory) {
final LoadQueryInfluencers loadQueryInfluencers = session.getLoadQueryInfluencers();
if ( cachedResults == null ) {
final CachedJdbcValuesMetadata metadataForCache;
final JdbcValuesMapping jdbcValuesMapping;
if ( queryResultsCacheKey == null ) {
jdbcValuesMapping = mappingProducer.resolve( resultSetAccess, session.getLoadQueryInfluencers(), factory );
jdbcValuesMapping = mappingProducer.resolve( resultSetAccess, loadQueryInfluencers, factory );
metadataForCache = null;
}
else {
// If we need to put the values into the cache, we need to be able to capture the JdbcValuesMetadata
final CapturingJdbcValuesMetadata capturingMetadata = new CapturingJdbcValuesMetadata( resultSetAccess );
jdbcValuesMapping = mappingProducer.resolve( capturingMetadata, session.getLoadQueryInfluencers(), factory );
jdbcValuesMapping = mappingProducer.resolve( capturingMetadata, loadQueryInfluencers, factory );
metadataForCache = capturingMetadata.resolveMetadataForCache();
}

return new JdbcValuesResultSetImpl(
resultSetAccess,
queryResultsCacheKey,
Expand All @@ -357,17 +384,26 @@ private JdbcValues resolveJdbcValuesSource(
);
}
else {
final JdbcValuesMapping jdbcValuesMapping;
if ( cachedResults.isEmpty() || !( cachedResults.get( 0 ) instanceof JdbcValuesMetadata ) ) {
jdbcValuesMapping = mappingProducer.resolve( resultSetAccess, session.getLoadQueryInfluencers(), factory );
}
else {
jdbcValuesMapping = mappingProducer.resolve( (JdbcValuesMetadata) cachedResults.get( 0 ), session.getLoadQueryInfluencers(), factory );
}
return new JdbcValuesCacheHit( cachedResults, jdbcValuesMapping );
final JdbcValuesMetadata valuesMetadata =
!cachedResults.isEmpty()
&& cachedResults.get( 0 ) instanceof JdbcValuesMetadata jdbcValuesMetadata
? jdbcValuesMetadata
: resultSetAccess;
return new JdbcValuesCacheHit( cachedResults,
mappingProducer.resolve( valuesMetadata, loadQueryInfluencers, factory ) );
}
}

private static CacheMode resolveCacheMode(ExecutionContext executionContext) {
final QueryOptions queryOptions = executionContext.getQueryOptions();
final SharedSessionContract session = executionContext.getSession();
return coalesceSuppliedValues(
() -> queryOptions == null ? null : queryOptions.getCacheMode(),
session::getCacheMode,
() -> CacheMode.NORMAL
);
}

static class CapturingJdbcValuesMetadata implements JdbcValuesMetadata {
private final ResultSetAccess resultSetAccess;
private String[] columnNames;
Expand Down Expand Up @@ -401,7 +437,7 @@ public int resolveColumnPosition(String columnName) {
position = resultSetAccess.resolveColumnPosition( columnName );
columnNames[position - 1] = columnName;
}
else if ( ( position = ArrayHelper.indexOf( columnNames, columnName ) + 1 ) == 0 ) {
else if ( ( position = indexOf( columnNames, columnName ) + 1 ) == 0 ) {
position = resultSetAccess.resolveColumnPosition( columnName );
columnNames[position - 1] = columnName;
}
Expand Down Expand Up @@ -433,16 +469,14 @@ public <J> BasicType<J> resolveType(
if ( columnNames == null ) {
initializeArrays();
}
final BasicType<J> basicType = resultSetAccess.resolveType( position, explicitJavaType, typeConfiguration );
final BasicType<J> basicType =
resultSetAccess.resolveType( position, explicitJavaType, typeConfiguration );
types[position - 1] = basicType;
return basicType;
}

public CachedJdbcValuesMetadata resolveMetadataForCache() {
if ( columnNames == null ) {
return null;
}
return new CachedJdbcValuesMetadata( columnNames, types );
return columnNames == null ? null : new CachedJdbcValuesMetadata( columnNames, types );
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import jakarta.persistence.JoinTable;
import jakarta.persistence.ManyToOne;

import org.hibernate.query.spi.QueryImplementor;
import org.hibernate.query.Query;

import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.SessionFactory;
Expand All @@ -38,7 +38,7 @@ public void testMemberOfQuery(SessionFactoryScope scope) {
session -> {
Address a = new Address();
a.setStreet( "Lollard Street" );
QueryImplementor query = session.createQuery( "from Person p where :address member of p.addresses" );
Query query = session.createQuery( "from Person p where :address member of p.addresses" );
query.setParameter( "address", a );
query.list();
}
Expand Down
Loading
Loading