Package org.apache.openjpa.kernel
Interface FetchConfiguration
- All Superinterfaces:
Cloneable
,LockLevels
,LockScopes
,QueryFlushModes
,Serializable
- All Known Subinterfaces:
JDBCFetchConfiguration
- All Known Implementing Classes:
DelegatingFetchConfiguration
,DelegatingJDBCFetchConfiguration
,FetchConfigurationImpl
,JDBCFetchConfigurationImpl
,TargetFetchConfiguration
public interface FetchConfiguration
extends Serializable, Cloneable, LockLevels, LockScopes, QueryFlushModes
Allows configuration and optimization of how objects are loaded from
the data store.
- Since:
- 0.3.0
- Author:
- Abe White, Pinaki Poddar
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Constant to revert any setting back to its default value.static final int
Constant indicating that a field requires a fetch and load of fetched data.static final int
Constant indicating that a field does not require fetching.static final int
Constant indicating that a reference to the field's value must be fetched, but loading data is not necessary.Fields inherited from interface org.apache.openjpa.kernel.LockLevels
LOCK_NONE, LOCK_READ, LOCK_WRITE
Fields inherited from interface org.apache.openjpa.kernel.LockScopes
LOCKSCOPE_EXTENDED, LOCKSCOPE_NORMAL
Fields inherited from interface org.apache.openjpa.kernel.QueryFlushModes
FLUSH_FALSE, FLUSH_TRUE, FLUSH_WITH_CONNECTION
-
Method Summary
Modifier and TypeMethodDescriptionaddFetchGroup
(String group) Addsgroup
to the set of fetch group names to use when loading objects.addFetchGroups
(Collection<String> groups) Addsgroups
to the set of fetch group names to use when loading objects.Addsfield
to the set of fully-qualified field names to use when loading objects.addFields
(Collection<String> fields) Addsfields
to the set of fully-qualified field names to use when loading objects.Clears the set of fetch group names to use when loading data.Clears the set of field names to use when loading data.clone()
Clone this instance.void
copy
(FetchConfiguration fetch) Copy the state from the given fetch configuration to this one.Gets the current retrieve mode for data cache.Gets the current storage mode for data cache.Return the context associated with this configuration; may be null if it has not been set or this object has been serialized.boolean
Affirms if extended path lookup feature is active.int
Return the fetch batch size for large result set support.Returns immutable set of names of the fetch groups that this component will use when loading objects.Returns the set of fully-qualified field names that this component will use when loading objects.int
The query automatic flush configuration.Get the hint value for the specific key as originally set by the caller, or null if the hint is not specified.getHints()
Get an immutable view of the currently active hints and their values.int
The lock scope for next fetch.int
The number of milliseconds to wait for an object lock, or -1 for no limit.int
Return the maximum depth of fetched instance graph.boolean
Return whether or not query caching is enabled.int
The number of milliseconds to wait for a query, or -1 for no limit.int
The lock level to use for locking loaded objects.Root classes for recursive operations.Root instances for recursive operations.int
The lock level to use for locking dirtied objects.boolean
hasFetchGroup
(String group) Return true if the given fetch group has been added.boolean
Return true if the given fully-qualified field has been added.boolean
Affirm if the Fetch Plan currently matches the Persistence Unit's configured default.boolean
Whether SQL generated by the FetchConfiguration's current configuration should be cached.boolean
Affirm if the given hint has been set in this receiver.void
lock()
Synchronize on internal lock if multithreaded is true.ResultList<?>
Return a new result list for the current fetch configuration.removeFetchGroup
(String group) Remove the given fetch group.removeFetchGroups
(Collection<String> groups) Removesgroups
from the set of fetch group names to use when loading objects.removeField
(String field) Remove the given fully-qualified field.removeFields
(Collection<String> fields) Removesfields
from the set of fully-qualified field names to use when loading objects.int
Affirms if the given field requires to be fetched in the context of current fetch operation.boolean
Return false if we know that the object being fetched with this configuration does not require a load, because this configuration came from a traversal of aFETCH_REF
field.Resets the set of fetch groups to the list in the global configuration.void
Sets the current retrieve mode for data cache.void
Sets the current storage mode for data cache.void
setContext
(StoreContext ctx) Called automatically by the system to associate the fetch configuration with a context before use.setExtendedPathLookup
(boolean flag) Sets extended path lookup feature.setFetchBatchSize
(int fetchBatchSize) Set the fetch batch size for large result set support.setFlushBeforeQueries
(int flush) The query automatic flush configuration.void
Sets an arbitrary query hint that may be utilized during execution.void
Sets an arbitrary query hint that may be utilized during execution.setLockScope
(int scope) The lock scope for next fetch.setLockTimeout
(int timeout) The number of milliseconds to wait for an object lock, or -1 for no limit.setMaxFetchDepth
(int max) Set the maximum depth of the fetched instance graph.setQueryCacheEnabled
(boolean cache) Control whether or not query caching is enabled.setQueryTimeout
(int timeout) The number of milliseconds to wait for a query, or -1 for no limit.setReadLockLevel
(int level) The lock level to use for locking loaded objects.setRootClasses
(Collection<Class<?>> classes) Root classes for recursive operations.setRootInstances
(Collection<?> roots) Root instances for recursive operations.setWriteLockLevel
(int level) The lock level to use for locking dirtied objects.Traverse the given field to generate (possibly) a new configuration state.void
unlock()
Release internal lock if multithreaded is true.
-
Field Details
-
DEFAULT
static final int DEFAULTConstant to revert any setting back to its default value.- See Also:
-
FETCH_NONE
static final int FETCH_NONEConstant indicating that a field does not require fetching. -
FETCH_LOAD
static final int FETCH_LOADConstant indicating that a field requires a fetch and load of fetched data. -
FETCH_REF
static final int FETCH_REFConstant indicating that a reference to the field's value must be fetched, but loading data is not necessary. Used when we know the data will be loaded anyway, such as when traversing the back-ptr of a bidirectional relation where the other side is also being fetched.
-
-
Method Details
-
getContext
StoreContext getContext()Return the context associated with this configuration; may be null if it has not been set or this object has been serialized. -
setContext
Called automatically by the system to associate the fetch configuration with a context before use. The fetch configuration properties should be synchronized with the context's configuration object. Subclasses for specific back ends cannot rely on the context's configuration implementing their back end's configuration sub-interface. -
clone
Object clone()Clone this instance. -
copy
Copy the state from the given fetch configuration to this one. -
getFetchBatchSize
int getFetchBatchSize()Return the fetch batch size for large result set support. Defaults to theopenjpa.FetchBatchSize
setting. Note that this property will be ignored under some data stores. -
setFetchBatchSize
Set the fetch batch size for large result set support. Defaults to theopenjpa.FetchBatchSize
setting. Note that this property will be ignored under some data stores. -
getMaxFetchDepth
int getMaxFetchDepth()Return the maximum depth of fetched instance graph. Defaults to1
-
setMaxFetchDepth
Set the maximum depth of the fetched instance graph.- Parameters:
max
- denotes limiting length of traversal path from a root instance.-1
implies no limit.0
is not permissible.
-
getQueryCacheEnabled
boolean getQueryCacheEnabled()Return whether or not query caching is enabled. If this returnstrue
but the datacache plugin is not installed, caching will not be enabled. If this returnsfalse
, query caching will not be used even if the datacache plugin is installed. -
setQueryCacheEnabled
Control whether or not query caching is enabled. This has no effect if the datacache plugin is not installed, or if the query cache size is set to zero. -
getFlushBeforeQueries
int getFlushBeforeQueries()The query automatic flush configuration. -
setFlushBeforeQueries
The query automatic flush configuration. -
getExtendedPathLookup
boolean getExtendedPathLookup()Affirms if extended path lookup feature is active.- Since:
- 2.0.0
-
setExtendedPathLookup
Sets extended path lookup feature.- Since:
- 2.0.0
-
getFetchGroups
Returns immutable set of names of the fetch groups that this component will use when loading objects. Defaults to theopenjpa.FetchGroups
setting. This set is not thread safe. -
hasFetchGroup
Return true if the given fetch group has been added. -
addFetchGroup
Addsgroup
to the set of fetch group names to use when loading objects. -
addFetchGroups
Addsgroups
to the set of fetch group names to use when loading objects. -
removeFetchGroup
Remove the given fetch group. -
removeFetchGroups
Removesgroups
from the set of fetch group names to use when loading objects. -
clearFetchGroups
FetchConfiguration clearFetchGroups()Clears the set of fetch group names to use when loading data. After this operation is invoked, only those fields in the default fetch group (and any requested field) will be loaded when loading an object. -
resetFetchGroups
FetchConfiguration resetFetchGroups()Resets the set of fetch groups to the list in the global configuration. -
getFields
Returns the set of fully-qualified field names that this component will use when loading objects. Defaults to the empty set. This set is not thread safe. -
hasField
Return true if the given fully-qualified field has been added. -
addField
Addsfield
to the set of fully-qualified field names to use when loading objects. -
addFields
Addsfields
to the set of fully-qualified field names to use when loading objects. -
removeField
Remove the given fully-qualified field. -
removeFields
Removesfields
from the set of fully-qualified field names to use when loading objects. -
clearFields
FetchConfiguration clearFields()Clears the set of field names to use when loading data. After this operation is invoked, only those fields in the configured fetch groups will be loaded when loading an object. -
getLockTimeout
int getLockTimeout()The number of milliseconds to wait for an object lock, or -1 for no limit.- Since:
- 0.3.1
-
setLockTimeout
The number of milliseconds to wait for an object lock, or -1 for no limit.- Since:
- 0.3.1
-
getLockScope
int getLockScope()The lock scope for next fetch.- Since:
- 2.0.0
-
setLockScope
The lock scope for next fetch.- Since:
- 2.0.0
-
getQueryTimeout
int getQueryTimeout()The number of milliseconds to wait for a query, or -1 for no limit.- Since:
- 2.0.0
-
setQueryTimeout
The number of milliseconds to wait for a query, or -1 for no limit.- Since:
- 2.0.0
-
getReadLockLevel
int getReadLockLevel()The lock level to use for locking loaded objects.- Since:
- 0.3.1
-
setReadLockLevel
The lock level to use for locking loaded objects.- Since:
- 0.3.1
-
getWriteLockLevel
int getWriteLockLevel()The lock level to use for locking dirtied objects.- Since:
- 0.3.1
-
getCacheStoreMode
DataCacheStoreMode getCacheStoreMode()Gets the current storage mode for data cache.- Since:
- 2.0.0
-
setCacheStoreMode
Sets the current storage mode for data cache.- Since:
- 2.0.0
-
getCacheRetrieveMode
DataCacheRetrieveMode getCacheRetrieveMode()Gets the current retrieve mode for data cache.- Since:
- 2.0.0
-
setCacheRetrieveMode
Sets the current retrieve mode for data cache.- Since:
- 2.0.0
-
setWriteLockLevel
The lock level to use for locking dirtied objects.- Since:
- 0.3.1
-
newResultList
Return a new result list for the current fetch configuration. -
setHint
Sets an arbitrary query hint that may be utilized during execution. The hint may be specific to a particular database. A hint, if known to this receiver, may have a corresponding setter method, then the hint sets the value. Otherwise the hint is stored opaquely by the receiver.- Parameters:
name
- the name of the hintvalue
- the value of the hint. If the hint has a corresponding setter, then the type of value must be same as the setter argument.original
- the value of the hint as specified by the user.- Since:
- 2.0.0
-
setHint
Sets an arbitrary query hint that may be utilized during execution. The hint may be specific to a particular database. A hint, if known to this receiver, may have a corresponding setter method, then the hint sets the value. Otherwise the hint is stored opaquely by the receiver.
This is same as calling setHint(String, Object, Object) with the third argument being the same as the second.- Parameters:
name
- the name of the hintvalue
- the value of the hint. If the hint has a corresponding setter, then the type of value must be same as the setter argument.- Since:
- 2.0.0
-
getHint
Get the hint value for the specific key as originally set by the caller, or null if the hint is not specified.- Parameters:
name
- the hint name- Since:
- 0.4.0
-
getHints
Get an immutable view of the currently active hints and their values. The values are as specified by the user.- Since:
- 2.0.0
-
isHintSet
Affirm if the given hint has been set in this receiver. -
isDefaultPUFetchGroupConfigurationOnly
boolean isDefaultPUFetchGroupConfigurationOnly()Affirm if the Fetch Plan currently matches the Persistence Unit's configured default. -
getRootClasses
Root classes for recursive operations. This set is not thread safe. -
setRootClasses
Root classes for recursive operations. -
getRootInstances
Root instances for recursive operations. This set is not thread safe. -
setRootInstances
Root instances for recursive operations. -
lock
void lock()Synchronize on internal lock if multithreaded is true. -
unlock
void unlock()Release internal lock if multithreaded is true. -
requiresFetch
Affirms if the given field requires to be fetched in the context of current fetch operation. Returns one ofFETCH_NONE
,FETCH_LOAD
,FETCH_REF
.- Since:
- 0.4.1
-
requiresLoad
boolean requiresLoad()Return false if we know that the object being fetched with this configuration does not require a load, because this configuration came from a traversal of aFETCH_REF
field. -
traverse
Traverse the given field to generate (possibly) a new configuration state.- Returns:
- a new configuration state resulting out of traversal
- Since:
- 0.4.1
-
isFetchConfigurationSQLCacheAdmissible
boolean isFetchConfigurationSQLCacheAdmissible()Whether SQL generated by the FetchConfiguration's current configuration should be cached.
-