Class ExecutionContextImpl
- java.lang.Object
-
- org.datanucleus.ExecutionContextImpl
-
- All Implemented Interfaces:
ExecutionContextReference,ExecutionContext,TransactionEventListener
- Direct Known Subclasses:
ExecutionContextThreadedImpl
public class ExecutionContextImpl extends Object implements ExecutionContext, TransactionEventListener
Manager for persistence/retrieval of objects within an execution context, equating to the work required by JDO PersistenceManager and JPA EntityManager.Caching
An ExecutionContext has its own Level 1 cache. This stores objects against their identity. The Level 1 cache is typically a weak referenced map and so cached objects can be garbage collected. Objects are placed in the Level 1 cache during the transaction. The NucleusContext also has a Level 2 cache. This is used to allow cross-communication between ExecutionContexts. Objects are placed in the Level 2 cache during commit() of a transaction. If an object is deleted during a transaction then it will be removed from the Level 2 cache at commit(). If an object is no longer enlisted in the transaction at commit then it will be removed from the Level 2 cache (so we remove the chance of handing out old data).
Transactions
An ExecutionContext has a single transaction (the "current" transaction). The transaction can be "active" (if begin() has been called on it) or "inactive".
Persisted Objects
When an object involved in the current transaction it is enlisted (calling enlistInTransaction()). Its identity is saved (in "txEnlistedIds") for use later in any "persistenceByReachability" process run at commit. Any object that is passed via makePersistent() will be stored (as an identity) in "txKnownPersistedIds" and objects persisted due to reachability from these objects will also have their identity stored (in "txFlushedNewIds"). All of this information is used in the "persistence-by-reachability-at-commit" process which detects if some objects originally persisted are no longer reachable and hence should not be persistent after all.
ObjectProvider-based storage
You may note that we have various fields here storing ObjectProvider-related information such as which ObjectProvider is embedded into which ObjectProvider etc, or the managed relations for an ObjectProvider. These are stored here to avoid adding a reference to the storage of each and every ObjectProvider, since we could potentially have a very large number of ObjectProviders (and they may not use that field in the majority, but it still needs the reference). The same should be followed as a general rule when considering storing something in the ObjectProvider.
This class is NOT thread-safe. Use ExecutionContextThreadedImpl if you want to *attempt* to have multithreaded PM/EMs.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.datanucleus.ExecutionContext
ExecutionContext.EmbeddedOwnerRelation, ExecutionContext.LifecycleListener
-
-
Field Summary
Fields Modifier and Type Field Description protected Level1CachecacheLevel 1 Cache, essentially a Map of ObjectProvider keyed by the id.protected Map<ObjectProvider,Map<?,?>>opAssociatedValuesMapByOPMap of associated values for the ObjectProvider.-
Fields inherited from interface org.datanucleus.ExecutionContext
OPTION_JTA_AUTOJOIN, OPTION_PASSWORD, OPTION_USERNAME
-
-
Constructor Summary
Constructors Constructor Description ExecutionContextImpl(PersistenceNucleusContext ctx, Object owner, Map<String,Object> options)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.datanucleus.ExecutionContextImpl.ThreadContextInfoacquireThreadContextInfo()Accessor for the thread context information, for the current thread.voidaddInternalFetchGroup(FetchGroup grp)Method to add a dynamic FetchGroup.voidaddObjectProviderToCache(ObjectProvider op)Method to add the object managed by the specified ObjectProvider to the (L1) cache.voidaddOperationToQueue(Operation oper)Method to add an operation to the queue.protected voidassertActiveTransaction()Method to assert if the current transaction is active.voidassertClassPersistable(Class cls)Method to assert if the specified class is Persistence Capable.protected voidassertDetachable(Object object)Method to assert if the specified object is Detachable.protected voidassertIsOpen()Method to assert if this context is open.protected voidassertNotDetached(Object object)Method to assert if the specified object is detached.voidattachObject(ObjectProvider ownerOP, Object pc, boolean sco)Method to attach a persistent detached object.<T> TattachObjectCopy(ObjectProvider ownerOP, T pc, boolean sco)Method to attach a persistent detached object returning an attached copy of the object.voidclearDirty()Method to clear all objects marked as dirty (whether directly or indirectly).voidclearDirty(ObjectProvider op)Method to clear an object from the list of dirty objects.voidclose()Method to close the context.voidcloseCallbackHandler()Close the callback handler and disconnect any registered listeners.booleancontainsObjectProviderAssociatedValue(ObjectProvider op, Object key)voiddeleteObject(Object obj)Method to delete an object from the datastore.voiddeleteObjectInternal(Object obj)Method to delete an object from persistence which should be called from internal calls only.voiddeleteObjects(Object... objs)Method to delete an array of objects from the datastore.voidderegisterEmbeddedRelation(ExecutionContext.EmbeddedOwnerRelation rel)Method to deregister the specified embedded relation (e.g when the embedded object is disconnected).voidderegisterExecutionContextListener(ExecutionContextListener listener)Deregister a listener from calling when this ExecutionContext is closing.voiddetachAll()Method to detach all objects in the context.voiddetachObject(FetchPlanState state, Object obj)Method to detach a persistent object without making a copy.<T> TdetachObjectCopy(FetchPlanState state, T pc)Detach a copy of the passed persistent object using the provided detach state.voiddetachObjects(FetchPlanState state, Object... pcs)Method to detach the passed object(s).voidenlistInTransaction(ObjectProvider op)Method to enlist the specified ObjectProvider in the current transaction.voidevictAllObjects()Method to evict all current objects from L1 cache.voidevictFromTransaction(ObjectProvider op)Method to evict the specified ObjectProvider from the current transaction.voidevictObject(Object obj)Internal method to evict an object from L1 cache.voidevictObjects(Class cls, boolean subclasses)Method to evict all objects of the specified type (and optionaly its subclasses) that are present in the L1 cache.booleanexists(Object obj)Method to return if the specified object exists in the datastore.<T> TfindObject(Class<T> cls, Object key)Accessor for an object of the specified type with the provided id "key".ObjectfindObject(Object id, boolean validate)Shortcut to calling "findObject(id, validate, validate, null)".ObjectfindObject(Object id, boolean validate, boolean checkInheritance, String objectClassName)Accessor for an object given the object id.ObjectfindObject(Object id, FieldValues fv, Class cls, boolean ignoreCache, boolean checkInheritance)Accessor for an object given the object id and a set of field values to apply to it.<T> TfindObjectByUnique(Class<T> cls, String[] memberNames, Object[] memberValues)Accessor for an object of the specified type with the provided values for a unique key.ObjectProviderfindObjectProvider(Object pc)Method to return the ObjectProvider for an object (if managed).ObjectProviderfindObjectProvider(Object pc, boolean persist)Find the ObjectProvider for the specified object, persisting it if required.ObjectProviderfindObjectProviderForEmbedded(Object value, ObjectProvider owner, AbstractMemberMetaData mmd)Method to find the ObjectProvider for the passed embedded persistable object.ObjectProviderfindObjectProviderOfOwnerForAttachingObject(Object pc)<T> List<T>findObjects(Class<T> cls, List keys)Accessor for objects of the specified type, with the provided id "key"s.Object[]findObjectsById(Object[] identities, boolean validate)Accessor for objects with the specified identities.voidflush()Method callable from external APIs for user-management of flushing.voidflushInternal(boolean flushToDatastore)This method flushes all dirty, new, and deleted instances to the datastore.voidflushOperationsForBackingStore(Store backingStore, ObjectProvider op)Method to flush all queued operations for the specified backing store (if any).ObjectgetAttachDetachReferencedObject(ObjectProvider op)Access a referenced object for this ObjectProvider during the attach/detach process.ObjectgetAttachedObjectForId(Object id)Convenience method to return the attached object for the specified id if one exists.BooleangetBooleanProperty(String name)Accessor for a boolean property value.CallbackHandlergetCallbackHandler()Retrieve the callback handler for this context.ClassLoaderResolvergetClassLoaderResolver()Accessor for the ClassLoader resolver to use in class loading issues.List<ExecutionContext.EmbeddedOwnerRelation>getEmbeddedInformationForOwner(ObjectProvider ownerOP)Accessor for the relations for the specified embedded ObjectProvider where it is embedded.<T> Extent<T>getExtent(Class<T> pcClass, boolean subclasses)Extents are collections of datastore objects managed by the datastore, not by explicit user operations on collections.protected FetchGroupManagergetFetchGroupManager()Convenience accessor for the FetchGroupManager.Set<FetchGroup>getFetchGroupsWithName(String name)Accessor for the fetch groups for the specified name.FetchPlangetFetchPlan()Acessor for the current FetchPlanFlushModegetFlushMode()Accessor for the flush mode.FetchGroupgetInternalFetchGroup(Class cls, String name)Accessor for an internal fetch group for the specified class.IntegergetIntProperty(String name)Accessor for an int property value.protected CachedPCgetL2CacheableObject(ObjectProvider op, CachedPC currentCachedPC)Convenience method to convert the object managed by the ObjectProvider into a form suitable for caching in an L2 cache.Level1CachegetLevel1Cache()protected StringgetLevel2CacheRetrieveMode()protected StringgetLevel2CacheStoreMode()LockManagergetLockManager()Accessor for the lock manager for this execution context.SetgetManagedObjects()Accessor for the currently managed objects for the current transaction.SetgetManagedObjects(Class[] classes)Accessor for the currently managed objects for the current transaction.SetgetManagedObjects(String[] states)Accessor for the currently managed objects for the current transaction.SetgetManagedObjects(String[] states, Class[] classes)Accessor for the currently managed objects for the current transaction.booleangetManageRelations()Accessor for whether to manage relationships at flush/commit.booleangetMultithreaded()Accessor for whether the usage is multi-threaded.PersistenceNucleusContextgetNucleusContext()Accessor for the context in which this execution context is running.ObjectgetObjectFromCache(Object id)Convenience method to access an object in the cache.ObjectgetObjectFromLevel1Cache(Object id)Convenience method to access an object in the Level 1 cache.protected ObjectgetObjectFromLevel2Cache(Object id)Convenience method to access an object in the Level 2 cache.protected ObjectgetObjectFromLevel2CacheForUnique(CacheUniqueKey uniKey)Convenience method to access the identity that corresponds to a unique key, in the Level 2 cache.ObjectgetObjectProviderAssociatedValue(ObjectProvider op, Object key)Object[]getObjectsFromCache(Object[] ids)Convenience method to access objects in the cache.protected MapgetObjectsFromLevel2Cache(Collection ids)Convenience method to access a collection of objects from the Level 2 cache.List<ObjectProvider>getObjectsToBeFlushed()Convenience method to inspect the list of objects with outstanding changes to flush.OperationQueuegetOperationQueue()Accessor for the operation queue.ObjectgetOwner()Accessor for the owner of this ExecutionContext.List<ExecutionContext.EmbeddedOwnerRelation>getOwnerInformationForEmbedded(ObjectProvider embOP)Accessor for the relations for the specified embedded ObjectProvider where it is embedded.ObjectProvider[]getOwnersForEmbeddedObjectProvider(ObjectProvider embOP)Accessor for the owning ObjectProviders for the managed object when stored embedded.Map<String,Object>getProperties()Accessor for the defined properties.ObjectgetProperty(String name)Accessor for a property.RelationshipManagergetRelationshipManager(ObjectProvider op)Method to return the RelationshipManager for the ObjectProvider.booleangetSerializeReadForClass(String className)Convenience method to return the setting for serialize read for the current transaction for the specified class name.ManagerStatisticsgetStatistics()Accessor for any statistics-gathering object.StringgetStringProperty(String name)Accessor for a String property value.Set<String>getSupportedProperties()Accessor for the supported property names.protected org.datanucleus.ExecutionContextImpl.ThreadContextInfogetThreadContextInfo()Get the current ThreadContextInfo assigned to the current thread without changing the reference counter.TransactiongetTransaction()Accessor for the current transaction.booleanhasIdentityInCache(Object id)Whether the specified identity is cached currently.booleanhasPersistenceInformationForClass(Class cls)Utility method to check if the specified class has reachable metadata or annotations.voidinitialise(Object owner, Map<String,Object> options)protected voidinitialiseLevel1Cache()Method to initialise the L1 cache.booleanisClosed()Accessor for whether this context is closed.booleanisDelayDatastoreOperationsEnabled()Whether the datastore operations are delayed until commit/flush.booleanisEnlistedInTransaction(Object id)Method to return if an object is enlisted in the current transaction.booleanisFlushing()Returns whether the context is in the process of flushing.booleanisInserting(Object pc)Tests whether this persistable object is in the process of being inserted.booleanisManagingRelations()Returns whether this context is currently performing the manage relationships task.booleanisObjectModifiedInTransaction(Object id)Accessor for whether the object with this identity is modified in the current transaction.booleanisRunningDetachAllOnCommit()Accessor for whether this context is currently running detachAllOnCommit.voidmakeObjectNontransactional(Object obj)Method to make an object nontransactional.voidmakeObjectTransactional(Object obj)Method to make an object transactional.voidmakeObjectTransient(Object obj, FetchPlanState state)Method to migrate an object to transient state.voidmarkDirty(ObjectProvider op, boolean directUpdate)Method to mark an object (ObjectProvider) as dirty.voidmarkFieldsForUpdateInLevel2Cache(Object id, boolean[] fields)Method to mark the object with specifed id to have the supplied fields updated in the L2 cache at commit.<T> TnewInstance(Class<T> cls)Method to generate an instance of an interface, abstract class, or concrete PC class.ObjectnewObjectId(Class pcClass, Object key)This method returns an object id instance corresponding to the pcClass and key arguments.ObjectnewObjectId(String className, Object pc)This method returns an object id instance corresponding to the class name, and the passed object (when using app identity).booleanoperationQueueIsActive()Accessor for whether the operation queue is currently active.ObjectpersistObject(Object obj, boolean merging)Method to make an object persistent.<T> TpersistObjectInternal(T pc, ObjectProvider ownerOP, int ownerFieldNum, int objectType)Method to persist the passed object (internally).<T> TpersistObjectInternal(T obj, FieldValues preInsertChanges, ObjectProvider ownerOP, int ownerFieldNum, int objectType)Method to make an object persistent which should be called from internal calls only.Object[]persistObjects(Object... objs)Method to persist an array of objects to the datastore.voidpostBegin()Method to perform any post-begin checks.voidpostCommit()Commit any changes made to objects managed by the object manager to the database.voidpostRollback()Callback invoked after the actual datastore rollback.voidpreCommit()Method to perform any pre-commit checks.voidpreRollback()Rollback any changes made to objects managed by the object manager to the database.protected voidprocessNontransactionalAtomicChanges()Handler for all outstanding changes to be "committed" atomically.voidprocessNontransactionalUpdate()Method called when a non-tx update has been performed (via setter call on the persistable object, or via use of mutator methods of a field).voidputObjectIntoLevel1Cache(ObjectProvider op)Convenience method to add an object to the L1 cache.protected voidputObjectIntoLevel2Cache(ObjectProvider op, boolean updateIfPresent)Method to add/update the managed object into the L2 cache as long as it isn't modified in the current transaction.protected voidputObjectIntoLevel2CacheInternal(ObjectProvider op, boolean updateIfPresent)Convenience method to add/update an object in the L2 cache.protected voidputObjectsIntoLevel2Cache(Set<ObjectProvider> ops)Method to put the passed objects into the L2 cache.voidrefreshAllObjects()Method to do a refresh of all objects.voidrefreshObject(Object obj)Method to do a refresh of an object, updating it from its datastore representation.ExecutionContext.EmbeddedOwnerRelationregisterEmbeddedRelation(ObjectProvider ownerOP, int ownerFieldNum, ObjectProvider embOP)Method to register an embedded relation for the specified memberf of the owner ObjectProvider where the embedded ObjectProvider is stored.voidregisterExecutionContextListener(ExecutionContextListener listener)Register a listener to be called when this ExecutionContext is closing.protected voidreleaseThreadContextInfo()Method to remove the current thread context info for the current thread, after the reference counter reached 0.voidremoveEmbeddedOwnerRelation(ObjectProvider ownerOP, int ownerFieldNum, ObjectProvider embOP)Convenience method to remove the EmbeddedOwnerRelation between the specified ObjectProviders.protected voidremoveInternalFetchGroup(FetchGroup grp)Method to remove a dynamic FetchGroup.voidremoveObjectFromLevel1Cache(Object id)Convenience method to evict an object from the L1 cache.voidremoveObjectFromLevel2Cache(Object id)Convenience method to remove the object with the specified identity from the L2 cache.voidremoveObjectProviderAssociatedValue(ObjectProvider op, Object key)voidremoveObjectProviderFromCache(ObjectProvider op)Method to remove the object managed by the specified ObjectProvider from the cache.voidreplaceObjectId(Object pc, Object oldID, Object newID)Replace the previous object id for a persistable object with a new one.voidretrieveObject(Object obj, boolean fgOnly)Method to retrieve an object.voidsetAttachDetachReferencedObject(ObjectProvider op, Object obj)Register a referenced object against this ObjectProvider for the attach/detach process.protected voidsetLevel2Cache(boolean flag)Method to set whether we are supporting the Level2 Cache with this ExecutionContext Note that if the NucleusContext has no Level2 Cache enabled then you cannot turn it on here.voidsetObjectProviderAssociatedValue(ObjectProvider op, Object key, Object value)voidsetProperties(Map props)Method to set properties on the execution context.voidsetProperty(String name, Object value)Method to set a property on the execution contextvoidtransactionCommitted()Method invoked when the transaction is committed.voidtransactionEnded()Method invoked when the transaction is ended (Using XA).voidtransactionFlushed()Method invoked when the transaction is flushed (happens before commit, rollback).voidtransactionPreCommit()Method invoked before the transaction commit.voidtransactionPreFlush()Method invoked just before a flush.voidtransactionPreRollBack()Method invoked before the transaction is rolledback.voidtransactionReleaseSavepoint(String name)Savepoint to be released for this name.voidtransactionRollbackToSavepoint(String name)Invoke a rollback to this savepoint name.voidtransactionRolledBack()Method invoked when the transaction is rolled back.voidtransactionSetSavepoint(String name)Savepoint to be registered under this name.voidtransactionStarted()Method invoked when the transaction is started.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.datanucleus.ExecutionContext
getApiAdapter, getLock, getMetaDataManager, getStoreManager, getTypeManager, persistObjectInternal
-
-
-
-
Field Detail
-
cache
protected Level1Cache cache
Level 1 Cache, essentially a Map of ObjectProvider keyed by the id.
-
opAssociatedValuesMapByOP
protected Map<ObjectProvider,Map<?,?>> opAssociatedValuesMapByOP
Map of associated values for the ObjectProvider. This can contain anything really and is down to the StoreManager to define. For example RDBMS datastores typically put external FK info in here keyed by the mapping of the field to which it pertains.
-
-
Constructor Detail
-
ExecutionContextImpl
public ExecutionContextImpl(PersistenceNucleusContext ctx, Object owner, Map<String,Object> options)
Constructor. TODO userName/password aren't currently used and we always use the PMF/EMF userName/password.- Parameters:
ctx- NucleusContextowner- Owning object (for bytecode enhancement contract, PersistenceManager)options- Any options affecting startup- Throws:
NucleusUserException- if an error occurs allocating the necessary requested components
-
-
Method Detail
-
initialise
public void initialise(Object owner, Map<String,Object> options)
- Specified by:
initialisein interfaceExecutionContext
-
close
public void close()
Method to close the context.- Specified by:
closein interfaceExecutionContext
-
registerExecutionContextListener
public void registerExecutionContextListener(ExecutionContextListener listener)
Description copied from interface:ExecutionContextRegister a listener to be called when this ExecutionContext is closing.- Specified by:
registerExecutionContextListenerin interfaceExecutionContext- Parameters:
listener- The listener
-
deregisterExecutionContextListener
public void deregisterExecutionContextListener(ExecutionContextListener listener)
Description copied from interface:ExecutionContextDeregister a listener from calling when this ExecutionContext is closing.- Specified by:
deregisterExecutionContextListenerin interfaceExecutionContext- Parameters:
listener- The listener
-
setLevel2Cache
protected void setLevel2Cache(boolean flag)
Method to set whether we are supporting the Level2 Cache with this ExecutionContext Note that if the NucleusContext has no Level2 Cache enabled then you cannot turn it on here.- Parameters:
flag- Whether to enable/disable it
-
isClosed
public boolean isClosed()
Accessor for whether this context is closed.- Specified by:
isClosedin interfaceExecutionContext- Returns:
- Whether this manager is closed.
-
acquireThreadContextInfo
protected org.datanucleus.ExecutionContextImpl.ThreadContextInfo acquireThreadContextInfo()
Accessor for the thread context information, for the current thread. If the current thread is not present, will add an info context for it.You must call
releaseThreadContextInfo()when you don't need it anymore, since we use reference counting. Use a try...finally-block for this purpose.- Returns:
- The thread context information
- See Also:
getThreadContextInfo()
-
getThreadContextInfo
protected org.datanucleus.ExecutionContextImpl.ThreadContextInfo getThreadContextInfo()
Get the current ThreadContextInfo assigned to the current thread without changing the reference counter.- Returns:
- the thread context information
- See Also:
acquireThreadContextInfo()
-
releaseThreadContextInfo
protected void releaseThreadContextInfo()
Method to remove the current thread context info for the current thread, after the reference counter reached 0. This method decrements a reference counter (per thread), that is incremented byacquireThreadContextInfo().- See Also:
acquireThreadContextInfo()
-
transactionStarted
public void transactionStarted()
Description copied from interface:TransactionEventListenerMethod invoked when the transaction is started.- Specified by:
transactionStartedin interfaceTransactionEventListener
-
transactionPreFlush
public void transactionPreFlush()
Description copied from interface:TransactionEventListenerMethod invoked just before a flush.- Specified by:
transactionPreFlushin interfaceTransactionEventListener
-
transactionFlushed
public void transactionFlushed()
Description copied from interface:TransactionEventListenerMethod invoked when the transaction is flushed (happens before commit, rollback).- Specified by:
transactionFlushedin interfaceTransactionEventListener
-
transactionPreCommit
public void transactionPreCommit()
Description copied from interface:TransactionEventListenerMethod invoked before the transaction commit.- Specified by:
transactionPreCommitin interfaceTransactionEventListener
-
transactionCommitted
public void transactionCommitted()
Description copied from interface:TransactionEventListenerMethod invoked when the transaction is committed.- Specified by:
transactionCommittedin interfaceTransactionEventListener
-
transactionPreRollBack
public void transactionPreRollBack()
Description copied from interface:TransactionEventListenerMethod invoked before the transaction is rolledback.- Specified by:
transactionPreRollBackin interfaceTransactionEventListener
-
transactionRolledBack
public void transactionRolledBack()
Description copied from interface:TransactionEventListenerMethod invoked when the transaction is rolled back.- Specified by:
transactionRolledBackin interfaceTransactionEventListener
-
transactionEnded
public void transactionEnded()
Description copied from interface:TransactionEventListenerMethod invoked when the transaction is ended (Using XA).- Specified by:
transactionEndedin interfaceTransactionEventListener
-
transactionSetSavepoint
public void transactionSetSavepoint(String name)
Description copied from interface:TransactionEventListenerSavepoint to be registered under this name. Do nothing if not supported- Specified by:
transactionSetSavepointin interfaceTransactionEventListener- Parameters:
name- Name of the savepoint
-
transactionReleaseSavepoint
public void transactionReleaseSavepoint(String name)
Description copied from interface:TransactionEventListenerSavepoint to be released for this name. Do nothing if not supported- Specified by:
transactionReleaseSavepointin interfaceTransactionEventListener- Parameters:
name- Name of the savepoint
-
transactionRollbackToSavepoint
public void transactionRollbackToSavepoint(String name)
Description copied from interface:TransactionEventListenerInvoke a rollback to this savepoint name. Do nothing if not supported.- Specified by:
transactionRollbackToSavepointin interfaceTransactionEventListener- Parameters:
name- Name of the savepoint
-
getStatistics
public ManagerStatistics getStatistics()
Description copied from interface:ExecutionContextAccessor for any statistics-gathering object.- Specified by:
getStatisticsin interfaceExecutionContext- Returns:
- The statistics for this manager
-
initialiseLevel1Cache
protected void initialiseLevel1Cache()
Method to initialise the L1 cache.- Throws:
NucleusUserException- if an error occurs setting up the L1 cache
-
getLevel1Cache
public Level1Cache getLevel1Cache()
- Specified by:
getLevel1Cachein interfaceExecutionContext
-
getClassLoaderResolver
public ClassLoaderResolver getClassLoaderResolver()
Description copied from interface:ExecutionContextAccessor for the ClassLoader resolver to use in class loading issues.- Specified by:
getClassLoaderResolverin interfaceExecutionContext- Returns:
- The ClassLoader resolver
-
getLockManager
public LockManager getLockManager()
Description copied from interface:ExecutionContextAccessor for the lock manager for this execution context.- Specified by:
getLockManagerin interfaceExecutionContext- Returns:
- The lock manager
-
getFetchPlan
public FetchPlan getFetchPlan()
Description copied from interface:ExecutionContextAcessor for the current FetchPlan- Specified by:
getFetchPlanin interfaceExecutionContext- Returns:
- FetchPlan
-
getNucleusContext
public PersistenceNucleusContext getNucleusContext()
Description copied from interface:ExecutionContextAccessor for the context in which this execution context is running.- Specified by:
getNucleusContextin interfaceExecutionContext- Returns:
- Returns the context.
-
getOwner
public Object getOwner()
Accessor for the owner of this ExecutionContext. This will typically be PersistenceManager (JDO) or EntityManager (JPA).- Specified by:
getOwnerin interfaceExecutionContext- Specified by:
getOwnerin interfaceExecutionContextReference- Returns:
- The owner
-
setProperties
public void setProperties(Map props)
Description copied from interface:ExecutionContextMethod to set properties on the execution context.- Specified by:
setPropertiesin interfaceExecutionContext- Parameters:
props- The properties
-
setProperty
public void setProperty(String name, Object value)
Description copied from interface:ExecutionContextMethod to set a property on the execution context- Specified by:
setPropertyin interfaceExecutionContext- Parameters:
name- Name of the propertyvalue- Value to set
-
getProperties
public Map<String,Object> getProperties()
Description copied from interface:ExecutionContextAccessor for the defined properties.- Specified by:
getPropertiesin interfaceExecutionContext- Returns:
- Properties for this execution context
-
getBooleanProperty
public Boolean getBooleanProperty(String name)
Description copied from interface:ExecutionContextAccessor for a boolean property value.- Specified by:
getBooleanPropertyin interfaceExecutionContext- Parameters:
name- Name of the property- Returns:
- the value
-
getIntProperty
public Integer getIntProperty(String name)
Description copied from interface:ExecutionContextAccessor for an int property value.- Specified by:
getIntPropertyin interfaceExecutionContext- Parameters:
name- Name of the property- Returns:
- the value
-
getStringProperty
public String getStringProperty(String name)
Description copied from interface:ExecutionContextAccessor for a String property value.- Specified by:
getStringPropertyin interfaceExecutionContext- Parameters:
name- Name of the property- Returns:
- The value
-
getProperty
public Object getProperty(String name)
Description copied from interface:ExecutionContextAccessor for a property.- Specified by:
getPropertyin interfaceExecutionContext- Parameters:
name- Name of the property- Returns:
- The value
-
getSupportedProperties
public Set<String> getSupportedProperties()
Description copied from interface:ExecutionContextAccessor for the supported property names.- Specified by:
getSupportedPropertiesin interfaceExecutionContext- Returns:
- Set of names
-
getMultithreaded
public boolean getMultithreaded()
Accessor for whether the usage is multi-threaded.- Specified by:
getMultithreadedin interfaceExecutionContext- Returns:
- False
-
getFlushMode
public FlushMode getFlushMode()
Description copied from interface:ExecutionContextAccessor for the flush mode. Whether to auto-commit, or whether to delay flushing.- Specified by:
getFlushModein interfaceExecutionContext- Returns:
- The flush mode.
-
isDelayDatastoreOperationsEnabled
public boolean isDelayDatastoreOperationsEnabled()
Whether the datastore operations are delayed until commit/flush. In optimistic transactions this is automatically enabled. In datastore transactions there is a persistence property to enable it. If we are committing/flushing then will return false since the delay is no longer required.- Specified by:
isDelayDatastoreOperationsEnabledin interfaceExecutionContext- Returns:
- true if datastore operations are delayed until commit/flush
-
isInserting
public boolean isInserting(Object pc)
Tests whether this persistable object is in the process of being inserted.- Specified by:
isInsertingin interfaceExecutionContext- Parameters:
pc- the object to verify the status- Returns:
- true if this instance is inserting.
-
getTransaction
public Transaction getTransaction()
Accessor for the current transaction.- Specified by:
getTransactionin interfaceExecutionContext- Returns:
- The transaction
-
enlistInTransaction
public void enlistInTransaction(ObjectProvider op)
Method to enlist the specified ObjectProvider in the current transaction.- Specified by:
enlistInTransactionin interfaceExecutionContext- Parameters:
op- The ObjectProvider
-
evictFromTransaction
public void evictFromTransaction(ObjectProvider op)
Method to evict the specified ObjectProvider from the current transaction.- Specified by:
evictFromTransactionin interfaceExecutionContext- Parameters:
op- The ObjectProvider
-
isEnlistedInTransaction
public boolean isEnlistedInTransaction(Object id)
Method to return if an object is enlisted in the current transaction. This is only of use when running "persistence-by-reachability" at commit.- Specified by:
isEnlistedInTransactionin interfaceExecutionContext- Parameters:
id- Identity for the object- Returns:
- Whether it is enlisted in the current transaction
-
getAttachedObjectForId
public Object getAttachedObjectForId(Object id)
Convenience method to return the attached object for the specified id if one exists. Returns null if there is no currently enlisted/cached object with the specified id.- Specified by:
getAttachedObjectForIdin interfaceExecutionContext- Parameters:
id- The id- Returns:
- The attached object
-
addObjectProviderToCache
public void addObjectProviderToCache(ObjectProvider op)
Method to add the object managed by the specified ObjectProvider to the (L1) cache.- Specified by:
addObjectProviderToCachein interfaceExecutionContext- Parameters:
op- The ObjectProvider
-
removeObjectProviderFromCache
public void removeObjectProviderFromCache(ObjectProvider op)
Method to remove the object managed by the specified ObjectProvider from the cache.- Specified by:
removeObjectProviderFromCachein interfaceExecutionContext- Parameters:
op- The ObjectProvider
-
findObjectProvider
public ObjectProvider findObjectProvider(Object pc)
Method to return the ObjectProvider for an object (if managed).- Specified by:
findObjectProviderin interfaceExecutionContext- Parameters:
pc- The object we are checking- Returns:
- The ObjectProvider, null if not found.
- Throws:
NucleusUserException- if the persistable object is managed by a different ExecutionContext
-
findObjectProvider
public ObjectProvider findObjectProvider(Object pc, boolean persist)
Find the ObjectProvider for the specified object, persisting it if required.- Specified by:
findObjectProviderin interfaceExecutionContext- Parameters:
pc- The persistable objectpersist- persists the object if not yet persisted.- Returns:
- The ObjectProvider
-
findObjectProviderForEmbedded
public ObjectProvider findObjectProviderForEmbedded(Object value, ObjectProvider owner, AbstractMemberMetaData mmd)
Description copied from interface:ExecutionContextMethod to find the ObjectProvider for the passed embedded persistable object. Will create one if not already registered, and tie it to the specified owner.- Specified by:
findObjectProviderForEmbeddedin interfaceExecutionContext- Parameters:
value- The embedded objectowner- The owner ObjectProvider (if known).mmd- Metadata for the field of the owner- Returns:
- The ObjectProvider for the embedded object
-
findObjectProviderOfOwnerForAttachingObject
public ObjectProvider findObjectProviderOfOwnerForAttachingObject(Object pc)
- Specified by:
findObjectProviderOfOwnerForAttachingObjectin interfaceExecutionContext
-
processNontransactionalUpdate
public void processNontransactionalUpdate()
Method called when a non-tx update has been performed (via setter call on the persistable object, or via use of mutator methods of a field). Only hands the update across to be "committed" if not part of an owning persist/delete call.- Specified by:
processNontransactionalUpdatein interfaceExecutionContext
-
processNontransactionalAtomicChanges
protected void processNontransactionalAtomicChanges()
Handler for all outstanding changes to be "committed" atomically. If a transaction is active, non-tx writes are disabled, or atomic updates not enabled then will do nothing. Otherwise will flush any updates that are outstanding (updates to an object), will perform detachAllOnCommit if enabled (so user always has detached objects), update objects in any L2 cache, and migrates any objects through lifecycle changes. Is similar in content to "flush"+"preCommit"+"postCommit" Note that this handling for updates is not part of standard JDO which expects non-tx updates to migrate an object to P_NONTRANS_DIRTY rather than committing it directly. TODO If any update fails we should throw the appropriate exception for the API
-
evictObject
public void evictObject(Object obj)
Internal method to evict an object from L1 cache.- Specified by:
evictObjectin interfaceExecutionContext- Parameters:
obj- The object- Throws:
NucleusException- if an error occurs evicting the object
-
evictObjects
public void evictObjects(Class cls, boolean subclasses)
Method to evict all objects of the specified type (and optionaly its subclasses) that are present in the L1 cache.- Specified by:
evictObjectsin interfaceExecutionContext- Parameters:
cls- Type of persistable objectsubclasses- Whether to include subclasses
-
evictAllObjects
public void evictAllObjects()
Method to evict all current objects from L1 cache.- Specified by:
evictAllObjectsin interfaceExecutionContext
-
refreshObject
public void refreshObject(Object obj)
Method to do a refresh of an object, updating it from its datastore representation. Also updates the object in the L1/L2 caches.- Specified by:
refreshObjectin interfaceExecutionContext- Parameters:
obj- The Object
-
refreshAllObjects
public void refreshAllObjects()
Method to do a refresh of all objects.- Specified by:
refreshAllObjectsin interfaceExecutionContext- Throws:
NucleusUserException- thrown if instances could not be refreshed.
-
retrieveObject
public void retrieveObject(Object obj, boolean fgOnly)
Method to retrieve an object.- Specified by:
retrieveObjectin interfaceExecutionContext- Parameters:
obj- The objectfgOnly- Whether to retrieve the current fetch group fields only
-
persistObject
public Object persistObject(Object obj, boolean merging)
Method to make an object persistent. NOT to be called by internal DataNucleus methods. Only callable by external APIs (JDO/JPA).- Specified by:
persistObjectin interfaceExecutionContext- Parameters:
obj- The objectmerging- Whether this object (and dependents) is being merged- Returns:
- The persisted object
- Throws:
NucleusUserException- if the object is managed by a different manager
-
persistObjects
public Object[] persistObjects(Object... objs)
Method to persist an array of objects to the datastore.- Specified by:
persistObjectsin interfaceExecutionContext- Parameters:
objs- The objects to persist- Returns:
- The persisted objects
- Throws:
NucleusUserException- Thrown if an error occurs during the persist process. Any exception could have several nested exceptions for each failed object persist
-
persistObjectInternal
public <T> T persistObjectInternal(T obj, FieldValues preInsertChanges, ObjectProvider ownerOP, int ownerFieldNum, int objectType)Method to make an object persistent which should be called from internal calls only. All PM/EM calls should go via persistObject(Object obj).- Specified by:
persistObjectInternalin interfaceExecutionContext- Type Parameters:
T- Type of the persistable object- Parameters:
obj- The objectpreInsertChanges- Any changes to make before insertingownerOP- ObjectProvider of the owner when embeddedownerFieldNum- Field number in the owner where this is embedded (or -1 if not embedded)objectType- Type of object (see org.datanucleus.ObjectProvider, e.g ObjectProvider.PC)- Returns:
- The persisted object
- Throws:
NucleusUserException- if the object is managed by a different manager
-
persistObjectInternal
public <T> T persistObjectInternal(T pc, ObjectProvider ownerOP, int ownerFieldNum, int objectType)Method to persist the passed object (internally).- Specified by:
persistObjectInternalin interfaceExecutionContext- Type Parameters:
T- Type of the persistable object- Parameters:
pc- The objectownerOP- ObjectProvider of the owner when embeddedownerFieldNum- Field number in the owner where this is embedded (or -1 if not embedded)objectType- Type of object (see org.datanucleus.ObjectProvider, e.g ObjectProvider.PC)- Returns:
- The persisted object
-
deleteObjects
public void deleteObjects(Object... objs)
Method to delete an array of objects from the datastore.- Specified by:
deleteObjectsin interfaceExecutionContext- Parameters:
objs- The objects- Throws:
NucleusUserException- Thrown if an error occurs during the deletion process. Any exception could have several nested exceptions for each failed object deletion
-
deleteObject
public void deleteObject(Object obj)
Method to delete an object from the datastore. NOT to be called by internal methods. Only callable by external APIs (JDO/JPA).- Specified by:
deleteObjectin interfaceExecutionContext- Parameters:
obj- The object
-
deleteObjectInternal
public void deleteObjectInternal(Object obj)
Method to delete an object from persistence which should be called from internal calls only. All PM/EM calls should go via deleteObject(Object obj).- Specified by:
deleteObjectInternalin interfaceExecutionContext- Parameters:
obj- Object to delete
-
makeObjectTransient
public void makeObjectTransient(Object obj, FetchPlanState state)
Method to migrate an object to transient state.- Specified by:
makeObjectTransientin interfaceExecutionContext- Parameters:
obj- The objectstate- Object containing the state of the fetch plan process (if any)- Throws:
NucleusException- When an error occurs in making the object transient
-
makeObjectTransactional
public void makeObjectTransactional(Object obj)
Method to make an object transactional.- Specified by:
makeObjectTransactionalin interfaceExecutionContext- Parameters:
obj- The object- Throws:
NucleusException- Thrown when an error occurs
-
makeObjectNontransactional
public void makeObjectNontransactional(Object obj)
Method to make an object nontransactional.- Specified by:
makeObjectNontransactionalin interfaceExecutionContext- Parameters:
obj- The object
-
attachObject
public void attachObject(ObjectProvider ownerOP, Object pc, boolean sco)
Method to attach a persistent detached object. If a different object with the same identity as this object exists in the L1 cache then an exception will be thrown.- Specified by:
attachObjectin interfaceExecutionContext- Parameters:
ownerOP- ObjectProvider of the owner object that has this in a field that causes this attachpc- The persistable objectsco- Whether the PC object is stored without an identity (embedded/serialised)
-
attachObjectCopy
public <T> T attachObjectCopy(ObjectProvider ownerOP, T pc, boolean sco)
Method to attach a persistent detached object returning an attached copy of the object. If the object is of class that is not detachable, a ClassNotDetachableException will be thrown.- Specified by:
attachObjectCopyin interfaceExecutionContext- Type Parameters:
T- Type of the persistable object- Parameters:
ownerOP- ObjectProvider of the owner object that has this in a field that causes this attachpc- The objectsco- Whether it has no identity (second-class object)- Returns:
- The attached object
-
detachObject
public void detachObject(FetchPlanState state, Object obj)
Method to detach a persistent object without making a copy. Note that also all the objects which are refered to from this object are detached. If the object is of class that is not detachable a ClassNotDetachableException will be thrown. If the object is not persistent a NucleusUserException is thrown.- Specified by:
detachObjectin interfaceExecutionContext- Parameters:
state- State for the detachment processobj- The object
-
detachObjects
public void detachObjects(FetchPlanState state, Object... pcs)
Description copied from interface:ExecutionContextMethod to detach the passed object(s).- Specified by:
detachObjectsin interfaceExecutionContext- Parameters:
state- State for the detachment process.pcs- The object(s) to detach
-
detachObjectCopy
public <T> T detachObjectCopy(FetchPlanState state, T pc)
Detach a copy of the passed persistent object using the provided detach state. If the object is of class that is not detachable it will be detached as transient. If it is not yet persistent it will be first persisted.- Specified by:
detachObjectCopyin interfaceExecutionContext- Type Parameters:
T- Type of the persistable object- Parameters:
state- State for the detachment processpc- The object- Returns:
- The detached object
-
detachAll
public void detachAll()
Method to detach all objects in the context. Detaches all objects enlisted as well as all objects in the L1 cache. Of particular use with JPA when doing a clear of the persistence context.- Specified by:
detachAllin interfaceExecutionContext
-
getAttachDetachReferencedObject
public Object getAttachDetachReferencedObject(ObjectProvider op)
Description copied from interface:ExecutionContextAccess a referenced object for this ObjectProvider during the attach/detach process. When attaching and this is the detached object this returns the newly attached object. When attaching and this is the newly attached object this returns the detached object. When detaching and this is the newly detached object this returns the attached object. When detaching and this is the attached object this returns the newly detached object.- Specified by:
getAttachDetachReferencedObjectin interfaceExecutionContext- Parameters:
op- Object provider- Returns:
- The referenced object (if any)
-
setAttachDetachReferencedObject
public void setAttachDetachReferencedObject(ObjectProvider op, Object obj)
Description copied from interface:ExecutionContextRegister a referenced object against this ObjectProvider for the attach/detach process.- Specified by:
setAttachDetachReferencedObjectin interfaceExecutionContext- Parameters:
op- The ObjectProviderobj- The referenced object (or null to clear out any reference)
-
newInstance
public <T> T newInstance(Class<T> cls)
Method to generate an instance of an interface, abstract class, or concrete PC class.- Specified by:
newInstancein interfaceExecutionContext- Type Parameters:
T- Type of the persistable object- Parameters:
cls- The class of the interface or abstract class, or concrete class defined in MetaData- Returns:
- The instance of this type
- Throws:
NucleusUserException- if an ImplementationCreator instance does not exist and one is needed (i.e not a concrete class passed in)
-
exists
public boolean exists(Object obj)
Method to return if the specified object exists in the datastore.- Specified by:
existsin interfaceExecutionContext- Parameters:
obj- The (persistable) object- Returns:
- Whether it exists
-
getManagedObjects
public Set getManagedObjects()
Accessor for the currently managed objects for the current transaction. If the transaction is not active this returns null.- Specified by:
getManagedObjectsin interfaceExecutionContext- Returns:
- Collection of managed objects enlisted in the current transaction
-
getManagedObjects
public Set getManagedObjects(Class[] classes)
Accessor for the currently managed objects for the current transaction. If the transaction is not active this returns null.- Specified by:
getManagedObjectsin interfaceExecutionContext- Parameters:
classes- Classes that we want the enlisted objects for- Returns:
- Collection of managed objects enlisted in the current transaction
-
getManagedObjects
public Set getManagedObjects(String[] states)
Accessor for the currently managed objects for the current transaction. If the transaction is not active this returns null.- Specified by:
getManagedObjectsin interfaceExecutionContext- Parameters:
states- States that we want the enlisted objects for- Returns:
- Collection of managed objects enlisted in the current transaction
-
getManagedObjects
public Set getManagedObjects(String[] states, Class[] classes)
Accessor for the currently managed objects for the current transaction. If the transaction is not active this returns null.- Specified by:
getManagedObjectsin interfaceExecutionContext- Parameters:
states- States that we want the enlisted objects forclasses- Classes that we want the enlisted objects for- Returns:
- Collection of managed objects enlisted in the current transaction
-
findObject
public <T> T findObject(Class<T> cls, Object key)
Accessor for an object of the specified type with the provided id "key". With datastore id or single-field id the "key" is the key of the id, and with composite ids the "key" is the toString() of the id.- Specified by:
findObjectin interfaceExecutionContext- Type Parameters:
T- Type of the persistable- Parameters:
cls- Class of the persistablekey- Value of the key field for SingleFieldIdentity, or the string value of the key otherwise- Returns:
- The object for this id.
-
findObjects
public <T> List<T> findObjects(Class<T> cls, List keys)
Description copied from interface:ExecutionContextAccessor for objects of the specified type, with the provided id "key"s. With datastore id or single-field id the "key" is the key of the id, and with composite ids the "key" is the toString() of the id.- Specified by:
findObjectsin interfaceExecutionContext- Type Parameters:
T- Type of the persistable- Parameters:
cls- Class of the persistablekeys- Values of the key field for SingleFieldIdentity, or the string value of the keys otherwise- Returns:
- The objects meeting this requirement
-
findObjectByUnique
public <T> T findObjectByUnique(Class<T> cls, String[] memberNames, Object[] memberValues)
Description copied from interface:ExecutionContextAccessor for an object of the specified type with the provided values for a unique key. Alternative would be to have an intermediate class and do thisec.findObjectByUnique(cls).for("field1", val1).for("field2", val2).find();- Specified by:
findObjectByUniquein interfaceExecutionContext- Type Parameters:
T- Type of the persistable- Parameters:
cls- Class of the persistablememberNames- Name(s) of the field(s) forming the unique keymemberValues- Value(s) of the field(s) forming the unique key- Returns:
- The object meeting this requirement
-
findObject
public Object findObject(Object id, boolean validate)
Description copied from interface:ExecutionContextShortcut to calling "findObject(id, validate, validate, null)". Note: This is used by the bytecode enhancement contract indnCopyKeyFieldsFromObjectId
- Specified by:
findObjectin interfaceExecutionContext- Specified by:
findObjectin interfaceExecutionContextReference- Parameters:
id- The id of the objectvalidate- Whether to validate the id- Returns:
- The object
-
findObject
public Object findObject(Object id, FieldValues fv, Class cls, boolean ignoreCache, boolean checkInheritance)
Accessor for an object given the object id and a set of field values to apply to it. This is intended for use where we have done a query and have the id from the results, and we want to create the object, preferably using the cache, and then apply any field values to it.- Specified by:
findObjectin interfaceExecutionContext- Parameters:
id- Id of the object.fv- Field values for the object (to copy in)cls- the type which the object is (optional). Used to instantiate the objectignoreCache- true if it must ignore the cachecheckInheritance- Whether to check the inheritance on the id of the object- Returns:
- The Object
-
findObjectsById
public Object[] findObjectsById(Object[] identities, boolean validate)
Accessor for objects with the specified identities.- Specified by:
findObjectsByIdin interfaceExecutionContext- Parameters:
identities- Ids of the object(s).validate- Whether to validate the object state- Returns:
- The Objects with these ids (same order)
- Throws:
NucleusObjectNotFoundException- if an object doesn't exist in the datastore
-
findObject
public Object findObject(Object id, boolean validate, boolean checkInheritance, String objectClassName)
Accessor for an object given the object id. If validate is false, we return the object if found in the cache, or otherwise a Hollow object with that id. If validate is true we check with the datastore and return an object with the FetchPlan fields loaded. TODO Would be nice, when using checkInheritance, to be able to specify the "id" is an instance of class X or subclass. See IdentityUtils where we have the min class- Specified by:
findObjectin interfaceExecutionContext- Parameters:
id- Id of the object.validate- Whether to validate the object statecheckInheritance- Whether look to the database to determine which class this object is.objectClassName- Class name for the object with this id (if known, optional)- Returns:
- The Object with this id
- Throws:
NucleusObjectNotFoundException- if the object doesn't exist in the datastore
-
newObjectId
public Object newObjectId(Class pcClass, Object key)
This method returns an object id instance corresponding to the pcClass and key arguments. Operates in 2 modes :-- The class uses SingleFieldIdentity and the key is the value of the key field
- In all other cases the key is the String form of the object id instance
- Specified by:
newObjectIdin interfaceExecutionContext- Parameters:
pcClass- Class of the persistable object to create the identity forkey- Value of the key for SingleFieldIdentity (or the toString value)- Returns:
- The new object-id instance
-
newObjectId
public Object newObjectId(String className, Object pc)
This method returns an object id instance corresponding to the class name, and the passed object (when using app identity).- Specified by:
newObjectIdin interfaceExecutionContext- Parameters:
className- Name of the class of the object.pc- The persistable object. Used for application-identity- Returns:
- A new object ID.
-
clearDirty
public void clearDirty(ObjectProvider op)
Method to clear an object from the list of dirty objects.- Specified by:
clearDirtyin interfaceExecutionContext- Parameters:
op- The ObjectProvider
-
clearDirty
public void clearDirty()
Method to clear all objects marked as dirty (whether directly or indirectly).- Specified by:
clearDirtyin interfaceExecutionContext
-
markDirty
public void markDirty(ObjectProvider op, boolean directUpdate)
Method to mark an object (ObjectProvider) as dirty.- Specified by:
markDirtyin interfaceExecutionContext- Parameters:
op- ObjectProviderdirectUpdate- Whether the object has had a direct update made on it (if known)
-
getManageRelations
public boolean getManageRelations()
Accessor for whether to manage relationships at flush/commit.- Specified by:
getManageRelationsin interfaceExecutionContext- Returns:
- Whether to manage relationships at flush/commit.
-
getRelationshipManager
public RelationshipManager getRelationshipManager(ObjectProvider op)
Method to return the RelationshipManager for the ObjectProvider. If we are currently managing relations and the ObjectProvider has no RelationshipManager allocated then one is created.- Specified by:
getRelationshipManagerin interfaceExecutionContext- Parameters:
op- ObjectProvider- Returns:
- The RelationshipManager
-
isManagingRelations
public boolean isManagingRelations()
Returns whether this context is currently performing the manage relationships task.- Specified by:
isManagingRelationsin interfaceExecutionContext- Returns:
- Whether in the process of managing relations
-
getObjectsToBeFlushed
public List<ObjectProvider> getObjectsToBeFlushed()
Convenience method to inspect the list of objects with outstanding changes to flush.- Specified by:
getObjectsToBeFlushedin interfaceExecutionContext- Returns:
- ObjectProviders for the objects to be flushed.
-
isFlushing
public boolean isFlushing()
Returns whether the context is in the process of flushing.- Specified by:
isFlushingin interfaceExecutionContext- Returns:
- true if the context is flushing
-
flush
public void flush()
Method callable from external APIs for user-management of flushing. Called by JDO PM.flush, or JPA EM.flush(). Performs management of relations, prior to performing internal flush of all dirty/new/deleted instances to the datastore.- Specified by:
flushin interfaceExecutionContext
-
flushInternal
public void flushInternal(boolean flushToDatastore)
This method flushes all dirty, new, and deleted instances to the datastore.- Specified by:
flushInternalin interfaceExecutionContext- Parameters:
flushToDatastore- Whether to ensure any changes reach the datastore Otherwise they will be flushed to the datastore manager and leave it to decide the opportune moment to actually flush them to the datastore- Throws:
NucleusOptimisticException- when optimistic locking error(s) occur
-
getOperationQueue
public OperationQueue getOperationQueue()
Description copied from interface:ExecutionContextAccessor for the operation queue. The queue can be null if there are no operations queued (txn not active, not optimistic, no ops arrived yet).- Specified by:
getOperationQueuein interfaceExecutionContext- Returns:
- The operation queue (typically for collections/maps)
-
addOperationToQueue
public void addOperationToQueue(Operation oper)
Description copied from interface:ExecutionContextMethod to add an operation to the queue.- Specified by:
addOperationToQueuein interfaceExecutionContext- Parameters:
oper- The operation to add
-
flushOperationsForBackingStore
public void flushOperationsForBackingStore(Store backingStore, ObjectProvider op)
Description copied from interface:ExecutionContextMethod to flush all queued operations for the specified backing store (if any).- Specified by:
flushOperationsForBackingStorein interfaceExecutionContext- Parameters:
backingStore- The backing storeop- ObjectProvider
-
operationQueueIsActive
public boolean operationQueueIsActive()
Description copied from interface:ExecutionContextAccessor for whether the operation queue is currently active. Will return false if not delaying flush, or not in a transaction, or flushing.- Specified by:
operationQueueIsActivein interfaceExecutionContext- Returns:
- Whether the operation queue is active for adding operations
-
postBegin
public void postBegin()
Method to perform any post-begin checks.
-
preCommit
public void preCommit()
Method to perform any pre-commit checks.
-
isObjectModifiedInTransaction
public boolean isObjectModifiedInTransaction(Object id)
Accessor for whether the object with this identity is modified in the current transaction. Only returns true when using the L2 cache and the object has been modified during the txn.- Specified by:
isObjectModifiedInTransactionin interfaceExecutionContext- Parameters:
id- The identity- Returns:
- Whether it is modified/new/deleted in this transaction
-
markFieldsForUpdateInLevel2Cache
public void markFieldsForUpdateInLevel2Cache(Object id, boolean[] fields)
Description copied from interface:ExecutionContextMethod to mark the object with specifed id to have the supplied fields updated in the L2 cache at commit.- Specified by:
markFieldsForUpdateInLevel2Cachein interfaceExecutionContext- Parameters:
id- Id of the objectfields- The fields to update
-
isRunningDetachAllOnCommit
public boolean isRunningDetachAllOnCommit()
Accessor for whether this context is currently running detachAllOnCommit.- Specified by:
isRunningDetachAllOnCommitin interfaceExecutionContext- Returns:
- Whether running detachAllOnCommit
-
postCommit
public void postCommit()
Commit any changes made to objects managed by the object manager to the database.
-
preRollback
public void preRollback()
Rollback any changes made to objects managed by the object manager to the database.
-
postRollback
public void postRollback()
Callback invoked after the actual datastore rollback.
-
getLevel2CacheRetrieveMode
protected String getLevel2CacheRetrieveMode()
-
getLevel2CacheStoreMode
protected String getLevel2CacheStoreMode()
-
putObjectIntoLevel1Cache
public void putObjectIntoLevel1Cache(ObjectProvider op)
Convenience method to add an object to the L1 cache.- Specified by:
putObjectIntoLevel1Cachein interfaceExecutionContext- Parameters:
op- The ObjectProvider
-
putObjectIntoLevel2Cache
protected void putObjectIntoLevel2Cache(ObjectProvider op, boolean updateIfPresent)
Method to add/update the managed object into the L2 cache as long as it isn't modified in the current transaction.- Parameters:
op- ObjectProvider for the objectupdateIfPresent- Whether to update it in the L2 cache if already present
-
getL2CacheableObject
protected CachedPC getL2CacheableObject(ObjectProvider op, CachedPC currentCachedPC)
Convenience method to convert the object managed by the ObjectProvider into a form suitable for caching in an L2 cache.- Parameters:
op- ObjectProvider for the objectcurrentCachedPC- Current L2 cached object (if any) to use for updating- Returns:
- The cacheable form of the object
-
putObjectsIntoLevel2Cache
protected void putObjectsIntoLevel2Cache(Set<ObjectProvider> ops)
Method to put the passed objects into the L2 cache. Performs the "put" in batches- Parameters:
ops- The ObjectProviders whose objects are to be cached
-
putObjectIntoLevel2CacheInternal
protected void putObjectIntoLevel2CacheInternal(ObjectProvider op, boolean updateIfPresent)
Convenience method to add/update an object in the L2 cache.- Parameters:
op- ObjectProvider of the object to add.updateIfPresent- Whether to update the L2 cache if it is present
-
removeObjectFromLevel1Cache
public void removeObjectFromLevel1Cache(Object id)
Convenience method to evict an object from the L1 cache.- Specified by:
removeObjectFromLevel1Cachein interfaceExecutionContext- Parameters:
id- The Persistable object id
-
removeObjectFromLevel2Cache
public void removeObjectFromLevel2Cache(Object id)
Convenience method to remove the object with the specified identity from the L2 cache.- Specified by:
removeObjectFromLevel2Cachein interfaceExecutionContext- Parameters:
id- Identity of the object
-
hasIdentityInCache
public boolean hasIdentityInCache(Object id)
Whether the specified identity is cached currently. Looks in L1 cache and L2 cache.- Specified by:
hasIdentityInCachein interfaceExecutionContext- Parameters:
id- The identity- Returns:
- Whether an object exists in the cache(s) with this identity
-
getObjectFromCache
public Object getObjectFromCache(Object id)
Convenience method to access an object in the cache. Firstly looks in the L1 cache for this context, and if not found looks in the L2 cache.- Specified by:
getObjectFromCachein interfaceExecutionContext- Parameters:
id- Id of the object- Returns:
- Persistable object (with connected ObjectProvider).
-
getObjectsFromCache
public Object[] getObjectsFromCache(Object[] ids)
Convenience method to access objects in the cache. Firstly looks in the L1 cache for this context, and if not found looks in the L2 cache.- Specified by:
getObjectsFromCachein interfaceExecutionContext- Parameters:
ids- Ids of the objects- Returns:
- Persistable objects (with connected ObjectProviders), or null.
-
getObjectFromLevel1Cache
public Object getObjectFromLevel1Cache(Object id)
Convenience method to access an object in the Level 1 cache.- Parameters:
id- Id of the object- Returns:
- Persistable object (with connected ObjectProvider).
-
getObjectFromLevel2Cache
protected Object getObjectFromLevel2Cache(Object id)
Convenience method to access an object in the Level 2 cache.- Parameters:
id- Id of the object- Returns:
- Persistable object (with connected ObjectProvider).
-
getObjectFromLevel2CacheForUnique
protected Object getObjectFromLevel2CacheForUnique(CacheUniqueKey uniKey)
Convenience method to access the identity that corresponds to a unique key, in the Level 2 cache.- Parameters:
uniKey- The CacheUniqueKey to use in lookups- Returns:
- Identity of the associated object
-
getObjectsFromLevel2Cache
protected Map getObjectsFromLevel2Cache(Collection ids)
Convenience method to access a collection of objects from the Level 2 cache.- Parameters:
ids- Collection of ids to retrieve- Returns:
- Map of persistable objects (with connected ObjectProvider) keyed by their id if found in the L2 cache
-
replaceObjectId
public void replaceObjectId(Object pc, Object oldID, Object newID)
Replace the previous object id for a persistable object with a new one. This is used where we have already added the object to the cache(s) and/or enlisted it in the txn before its real identity was fixed (attributed in the datastore).- Specified by:
replaceObjectIdin interfaceExecutionContext- Parameters:
pc- The Persistable objectoldID- the old id it was known bynewID- the new id
-
getSerializeReadForClass
public boolean getSerializeReadForClass(String className)
Convenience method to return the setting for serialize read for the current transaction for the specified class name. Returns the setting for the transaction (if set), otherwise falls back to the setting for the class, otherwise returns false.- Specified by:
getSerializeReadForClassin interfaceExecutionContext- Parameters:
className- Name of the class- Returns:
- Setting for serialize read
-
getExtent
public <T> Extent<T> getExtent(Class<T> pcClass, boolean subclasses)
Extents are collections of datastore objects managed by the datastore, not by explicit user operations on collections. Extent capability is a boolean property of classes that are persistence capable. If an instance of a class that has a managed extent is made persistent via reachability, the instance is put into the extent implicitly.- Specified by:
getExtentin interfaceExecutionContext- Type Parameters:
T- Type of the persistable object- Parameters:
pcClass- The class to querysubclasses- Whether to include subclasses in the query.- Returns:
- returns an Extent that contains all of the instances in the parameter class, and if the subclasses flag is true, all of the instances of the parameter class and its subclasses.
-
getCallbackHandler
public CallbackHandler getCallbackHandler()
Retrieve the callback handler for this context. If the callback handler hasn't yet been created, this will create it.- Specified by:
getCallbackHandlerin interfaceExecutionContext- Returns:
- the callback handler
-
closeCallbackHandler
public void closeCallbackHandler()
Close the callback handler and disconnect any registered listeners.- Specified by:
closeCallbackHandlerin interfaceExecutionContext
-
assertIsOpen
protected void assertIsOpen()
Method to assert if this context is open. Throws a NucleusUserException if the context is closed.
-
assertClassPersistable
public void assertClassPersistable(Class cls)
Method to assert if the specified class is Persistence Capable.- Specified by:
assertClassPersistablein interfaceExecutionContext- Parameters:
cls- The class to check- Throws:
ClassNotPersistableException- if class is not persistableNoPersistenceInformationException- if no metadata/annotations are found for class
-
assertDetachable
protected void assertDetachable(Object object)
Method to assert if the specified object is Detachable. Throws a ClassNotDetachableException if not capable- Parameters:
object- The object to check
-
assertNotDetached
protected void assertNotDetached(Object object)
Method to assert if the specified object is detached. Throws a ObjectDetachedException if it is detached.- Parameters:
object- The object to check
-
assertActiveTransaction
protected void assertActiveTransaction()
Method to assert if the current transaction is active. Throws a TransactionNotActiveException if not active
-
hasPersistenceInformationForClass
public boolean hasPersistenceInformationForClass(Class cls)
Utility method to check if the specified class has reachable metadata or annotations.- Specified by:
hasPersistenceInformationForClassin interfaceExecutionContext- Parameters:
cls- The class to check- Returns:
- Whether the class has reachable metadata or annotations
-
getFetchGroupManager
protected FetchGroupManager getFetchGroupManager()
Convenience accessor for the FetchGroupManager. Creates it if not yet existing.- Returns:
- The FetchGroupManager
-
addInternalFetchGroup
public void addInternalFetchGroup(FetchGroup grp)
Method to add a dynamic FetchGroup.- Specified by:
addInternalFetchGroupin interfaceExecutionContext- Parameters:
grp- The group
-
removeInternalFetchGroup
protected void removeInternalFetchGroup(FetchGroup grp)
Method to remove a dynamic FetchGroup.- Parameters:
grp- The group
-
getInternalFetchGroup
public FetchGroup getInternalFetchGroup(Class cls, String name)
Accessor for an internal fetch group for the specified class.- Specified by:
getInternalFetchGroupin interfaceExecutionContext- Parameters:
cls- The classname- Name of the group- Returns:
- The FetchGroup
- Throws:
NucleusUserException- if the class is not persistable
-
getFetchGroupsWithName
public Set<FetchGroup> getFetchGroupsWithName(String name)
Accessor for the fetch groups for the specified name.- Specified by:
getFetchGroupsWithNamein interfaceExecutionContext- Parameters:
name- Name of the group- Returns:
- The FetchGroup
-
registerEmbeddedRelation
public ExecutionContext.EmbeddedOwnerRelation registerEmbeddedRelation(ObjectProvider ownerOP, int ownerFieldNum, ObjectProvider embOP)
Description copied from interface:ExecutionContextMethod to register an embedded relation for the specified memberf of the owner ObjectProvider where the embedded ObjectProvider is stored.- Specified by:
registerEmbeddedRelationin interfaceExecutionContext- Parameters:
ownerOP- Owner ObjectProviderownerFieldNum- Member number that is embeddedembOP- ObjectProvider of the embedded object- Returns:
- The EmbeddedOwnerRelation
-
deregisterEmbeddedRelation
public void deregisterEmbeddedRelation(ExecutionContext.EmbeddedOwnerRelation rel)
Description copied from interface:ExecutionContextMethod to deregister the specified embedded relation (e.g when the embedded object is disconnected).- Specified by:
deregisterEmbeddedRelationin interfaceExecutionContext- Parameters:
rel- The embedded relation
-
removeEmbeddedOwnerRelation
public void removeEmbeddedOwnerRelation(ObjectProvider ownerOP, int ownerFieldNum, ObjectProvider embOP)
Description copied from interface:ExecutionContextConvenience method to remove the EmbeddedOwnerRelation between the specified ObjectProviders.- Specified by:
removeEmbeddedOwnerRelationin interfaceExecutionContext- Parameters:
ownerOP- Owner ObjectProviderownerFieldNum- Field in ownerembOP- Embedded ObjectProvider
-
getOwnersForEmbeddedObjectProvider
public ObjectProvider[] getOwnersForEmbeddedObjectProvider(ObjectProvider embOP)
Accessor for the owning ObjectProviders for the managed object when stored embedded. Should really only have a single owner but users could, in principle, assign it to multiple.- Specified by:
getOwnersForEmbeddedObjectProviderin interfaceExecutionContext- Parameters:
embOP- The ObjectProvider that is embedded that we are looking for the owners for- Returns:
- ObjectProviders owning this embedded object.
-
getOwnerInformationForEmbedded
public List<ExecutionContext.EmbeddedOwnerRelation> getOwnerInformationForEmbedded(ObjectProvider embOP)
Description copied from interface:ExecutionContextAccessor for the relations for the specified embedded ObjectProvider where it is embedded.- Specified by:
getOwnerInformationForEmbeddedin interfaceExecutionContext- Parameters:
embOP- The ObjectProvider that is embedded- Returns:
- The List of embedded relations involving this ObjectProvider as embedded
-
getEmbeddedInformationForOwner
public List<ExecutionContext.EmbeddedOwnerRelation> getEmbeddedInformationForOwner(ObjectProvider ownerOP)
Description copied from interface:ExecutionContextAccessor for the relations for the specified embedded ObjectProvider where it is embedded.- Specified by:
getEmbeddedInformationForOwnerin interfaceExecutionContext- Parameters:
ownerOP- The ObjectProvider that owns the embedded- Returns:
- The List of embedded relations involving this ObjectProvider as owner
-
setObjectProviderAssociatedValue
public void setObjectProviderAssociatedValue(ObjectProvider op, Object key, Object value)
- Specified by:
setObjectProviderAssociatedValuein interfaceExecutionContext
-
getObjectProviderAssociatedValue
public Object getObjectProviderAssociatedValue(ObjectProvider op, Object key)
- Specified by:
getObjectProviderAssociatedValuein interfaceExecutionContext
-
removeObjectProviderAssociatedValue
public void removeObjectProviderAssociatedValue(ObjectProvider op, Object key)
- Specified by:
removeObjectProviderAssociatedValuein interfaceExecutionContext
-
containsObjectProviderAssociatedValue
public boolean containsObjectProviderAssociatedValue(ObjectProvider op, Object key)
- Specified by:
containsObjectProviderAssociatedValuein interfaceExecutionContext
-
-