Class RowProcessingStateStandardImpl
java.lang.Object
org.hibernate.sql.exec.internal.BaseExecutionContext
org.hibernate.sql.results.internal.RowProcessingStateStandardImpl
- All Implemented Interfaces:
ExecutionContext
,RowProcessingState
public class RowProcessingStateStandardImpl
extends BaseExecutionContext
implements RowProcessingState
Standard RowProcessingState implementation
-
Constructor Summary
ConstructorsConstructorDescriptionRowProcessingStateStandardImpl
(JdbcValuesSourceProcessingStateStandardImpl resultSetProcessingState, ExecutionContext executionContext, RowReader<?> rowReader, JdbcValues jdbcValues) -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
afterStatement
(LogicalConnectionImplementor logicalConnection) Hook to allow delaying calls toLogicalConnectionImplementor.afterStatement()
.void
determineEffectiveLockMode
(String alias) void
finishRowProcessing
(boolean wasAdded) Callback at the end of processing the current "row"boolean
first()
Get the collection key for the collection which is to be loaded immediately.Should only be used when initializing a bytecode-proxy<T extends InitializerData>
TgetInitializerData
(int initializerId) getJdbcValue
(int position) Retrieve the value corresponding to the given index as part of the "current JDBC row".Access to the state related to the overall processing of the results.int
RowReader<?>
todo (6.0) : do we want this here? Depends how we handle caching assembler / result mementoboolean
boolean
Determine if the query execution has to be considered by theStatistics
.boolean
boolean
boolean
isFirst()
boolean
isLast()
boolean
boolean
boolean
last()
boolean
boolean
next()
boolean
position
(int i) boolean
previous()
void
void
registerNonExists
(EntityFetch fetch) boolean
scroll
(int i) void
setInitializerData
(int initializerId, InitializerData state) boolean
Does this query return objects that might be already cached by the session, whose lock mode may need upgradingMethods inherited from class org.hibernate.sql.exec.internal.BaseExecutionContext
getLoadQueryInfluencers, getQueryIdentifier, getSession
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.sql.exec.spi.ExecutionContext
getLoadQueryInfluencers, getQueryIdentifier, getSession
Methods inherited from interface org.hibernate.sql.results.jdbc.spi.RowProcessingState
getJdbcValue, unwrap
-
Constructor Details
-
RowProcessingStateStandardImpl
public RowProcessingStateStandardImpl(JdbcValuesSourceProcessingStateStandardImpl resultSetProcessingState, ExecutionContext executionContext, RowReader<?> rowReader, JdbcValues jdbcValues)
-
-
Method Details
-
getJdbcValuesSourceProcessingState
Description copied from interface:RowProcessingState
Access to the state related to the overall processing of the results.- Specified by:
getJdbcValuesSourceProcessingState
in interfaceRowProcessingState
-
determineEffectiveLockMode
- Specified by:
determineEffectiveLockMode
in interfaceRowProcessingState
-
needsResolveState
public boolean needsResolveState()- Specified by:
needsResolveState
in interfaceRowProcessingState
-
getInitializerData
- Specified by:
getInitializerData
in interfaceRowProcessingState
-
setInitializerData
- Specified by:
setInitializerData
in interfaceRowProcessingState
-
getRowReader
Description copied from interface:RowProcessingState
todo (6.0) : do we want this here? Depends how we handle caching assembler / result memento- Specified by:
getRowReader
in interfaceRowProcessingState
-
next
public boolean next() -
previous
public boolean previous() -
scroll
public boolean scroll(int i) -
position
public boolean position(int i) -
getPosition
public int getPosition() -
isBeforeFirst
public boolean isBeforeFirst() -
beforeFirst
public void beforeFirst() -
isFirst
public boolean isFirst() -
first
public boolean first() -
last
public boolean last() -
isLast
public boolean isLast() -
afterLast
public void afterLast() -
isAfterLast
public boolean isAfterLast() -
getJdbcValue
Description copied from interface:RowProcessingState
Retrieve the value corresponding to the given index as part of the "current JDBC row". We read all the ResultSet values for the given row one time and store them into an array internally based on the principle that multiple accesses to this array will be significantly faster than accessing them from the ResultSet potentially multiple times.- Specified by:
getJdbcValue
in interfaceRowProcessingState
-
registerNonExists
- Specified by:
registerNonExists
in interfaceRowProcessingState
-
isQueryCacheHit
public boolean isQueryCacheHit()- Specified by:
isQueryCacheHit
in interfaceRowProcessingState
-
finishRowProcessing
public void finishRowProcessing(boolean wasAdded) Description copied from interface:RowProcessingState
Callback at the end of processing the current "row"- Specified by:
finishRowProcessing
in interfaceRowProcessingState
-
getQueryOptions
- Specified by:
getQueryOptions
in interfaceExecutionContext
- Overrides:
getQueryOptions
in classBaseExecutionContext
-
getQueryParameterBindings
- Specified by:
getQueryParameterBindings
in interfaceExecutionContext
- Overrides:
getQueryParameterBindings
in classBaseExecutionContext
-
isScrollResult
public boolean isScrollResult()- Specified by:
isScrollResult
in interfaceExecutionContext
-
getCallback
- Specified by:
getCallback
in interfaceExecutionContext
- Overrides:
getCallback
in classBaseExecutionContext
-
hasCallbackActions
public boolean hasCallbackActions()- Specified by:
hasCallbackActions
in interfaceExecutionContext
-
getCollectionKey
Description copied from interface:ExecutionContext
Get the collection key for the collection which is to be loaded immediately.- Specified by:
getCollectionKey
in interfaceExecutionContext
-
getEntityInstance
Description copied from interface:ExecutionContext
Should only be used when initializing a bytecode-proxy- Specified by:
getEntityInstance
in interfaceExecutionContext
-
getEntityId
- Specified by:
getEntityId
in interfaceExecutionContext
-
getEntityUniqueKeyAttributePath
- Specified by:
getEntityUniqueKeyAttributePath
in interfaceExecutionContext
-
getEntityUniqueKey
- Specified by:
getEntityUniqueKey
in interfaceExecutionContext
-
getRootEntityDescriptor
- Specified by:
getRootEntityDescriptor
in interfaceExecutionContext
-
registerLoadingEntityHolder
- Specified by:
registerLoadingEntityHolder
in interfaceExecutionContext
-
afterStatement
Description copied from interface:ExecutionContext
Hook to allow delaying calls toLogicalConnectionImplementor.afterStatement()
. Mainly used in the case of batching and multi-table mutations- Specified by:
afterStatement
in interfaceExecutionContext
-
hasQueryExecutionToBeAddedToStatistics
public boolean hasQueryExecutionToBeAddedToStatistics()Description copied from interface:ExecutionContext
Determine if the query execution has to be considered by theStatistics
.- Specified by:
hasQueryExecutionToBeAddedToStatistics
in interfaceExecutionContext
- Returns:
- true if the query execution has to be added to the
Statistics
, false otherwise.
-
upgradeLocks
public boolean upgradeLocks()Description copied from interface:ExecutionContext
Does this query return objects that might be already cached by the session, whose lock mode may need upgrading- Specified by:
upgradeLocks
in interfaceExecutionContext
-