Interface LockFactory
- All Superinterfaces:
PropertySetCallback
- All Known Implementing Classes:
AbstractPool
,ConcurrentPool
MT - Mutable - Container Object - Thread Safe
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true if locks held by anyone are blocking anyone elseboolean
areLocksHeld
(CompatibilitySpace compatibilitySpace) Return true if locks are held in this compatibility space.boolean
areLocksHeld
(CompatibilitySpace compatibilitySpace, Object group) Return true if locks are held in this compatibility space and this group.void
clearLimit
(CompatibilitySpace compatibilitySpace, Object group) Clear a limit set by setLimit.Create an object which can be used as a compatibility space.int
Get the lock timeout in milliseconds.boolean
isLockHeld
(CompatibilitySpace compatibilitySpace, Object group, Lockable ref, Object qualifier) Check to see if a specific lock is held.boolean
lockObject
(CompatibilitySpace compatibilitySpace, Object group, Lockable ref, Object qualifier, int timeout) Lock an object within a compatibility space and associate the lock with a group object, waits up to timeout milli-seconds for the object to become unlocked.Make a virtual lock table for diagnostics.void
setLimit
(CompatibilitySpace compatibilitySpace, Object group, int limit, Limit callback) Install a limit that is called when the size of the group exceeds the required limit.void
transfer
(CompatibilitySpace compatibilitySpace, Object oldGroup, Object newGroup) Transfer a set of locks from one group to another.int
unlock
(CompatibilitySpace compatibilitySpace, Object group, Lockable ref, Object qualifier) Unlock a single lock on a single object held within this compatibility space and locked with the supplied qualifier.void
unlockGroup
(CompatibilitySpace compatibilitySpace, Object group) Unlock all locks in a group.void
unlockGroup
(CompatibilitySpace compatibilitySpace, Object group, Matchable key) Unlock all locks on a group that match the passed in value.boolean
zeroDurationlockObject
(CompatibilitySpace compatibilitySpace, Lockable ref, Object qualifier, int timeout) Lock an object with zero duration within a compatibility space, waits up to timeout milli-seconds for the object to become unlocked.Methods inherited from interface org.apache.derby.iapi.services.property.PropertySetCallback
apply, init, map, validate
-
Method Details
-
createCompatibilitySpace
Create an object which can be used as a compatibility space. A compatibility space object can only be used in theLockFactory
that created it.- Parameters:
owner
- the owner of the compatibility space (typically a transaction object). Might benull
.- Returns:
- an object which represents a compatibility space
-
lockObject
boolean lockObject(CompatibilitySpace compatibilitySpace, Object group, Lockable ref, Object qualifier, int timeout) throws StandardException Lock an object within a compatibility space and associate the lock with a group object, waits up to timeout milli-seconds for the object to become unlocked. A timeout of 0 means do not wait for the lock to be unlocked. Note the actual time waited is approximate.A compatibility space in an space where lock requests are assumed to be compatible and granted by the lock manager if the trio {compatibilitySpace, ref, qualifier} are equal (i.e. reference equality for qualifier and compatibilitySpace, equals() method for ref). Granted by the lock manager means that the Lockable object may or may not be queried to see if the request is compatible.
A compatibility space is not assumed to be owned by a single thread.- Parameters:
compatibilitySpace
- object defining compatibility spacegroup
- handle of group, must be private to a thread.ref
- reference to object to be lockedqualifier
- A qualification of the request.timeout
- the maximum time to wait in milliseconds, LockFactory.NO_WAIT means don't wait.- Returns:
- true if the lock was obtained, false if timeout is equal to LockFactory.NO_WAIT and the lock could not be granted.
- Throws:
StandardException
- if a deadlock has occurred (message id will be LockFactory.Deadlock), or if the wait for the lock timed out (message id will be LockFactory.TimeOut), or if another thread interrupted this thread while it was waiting for the lock (this will be a StandardException with a nested InterruptedException, and the message id will be LockFactory.InterruptedExceptionId), or if any other error occurs when locking the object
-
unlock
Unlock a single lock on a single object held within this compatibility space and locked with the supplied qualifier.- Parameters:
compatibilitySpace
- object defining compatibility spacegroup
- handle of group.ref
- Reference to object to be unlocked.qualifier
- qualifier of lock to be unlocked- Returns:
- number of locks released (one or zero).
-
unlockGroup
Unlock all locks in a group.- Parameters:
compatibilitySpace
- object defining compatibility spacegroup
- handle of group that objects were locked with.
-
unlockGroup
Unlock all locks on a group that match the passed in value. -
transfer
Transfer a set of locks from one group to another. -
anyoneBlocked
boolean anyoneBlocked()Returns true if locks held by anyone are blocking anyone else -
areLocksHeld
Return true if locks are held in this compatibility space and this group.- Parameters:
group
- handle of group that objects were locked with.
-
areLocksHeld
Return true if locks are held in this compatibility space. -
zeroDurationlockObject
boolean zeroDurationlockObject(CompatibilitySpace compatibilitySpace, Lockable ref, Object qualifier, int timeout) throws StandardException Lock an object with zero duration within a compatibility space, waits up to timeout milli-seconds for the object to become unlocked. A timeout of 0 means do not wait for the lock to be unlocked. Note the actual time waited is approximate.Zero duration means the lock is released as soon as it is obtained.
A compatibility space in an space where lock requests are assumed to be compatible and granted by the lock manager if the trio {compatibilitySpace, ref, qualifier} are equal (i.e. reference equality for qualifier and compatibilitySpace, equals() method for ref). Granted by the lock manager means that the Lockable object may or may not be queried to see if the request is compatible.
A compatibility space is not assumed to be owned by a single thread.- Parameters:
compatibilitySpace
- object defining compatibility spaceref
- reference to object to be lockedqualifier
- A qualification of the request.timeout
- the maximum time to wait in milliseconds, LockFactory.NO_WAIT means don't wait.- Returns:
- true if the lock was obtained, false if timeout is equal to LockFactory.NO_WAIT and the lock could not be granted.
- Throws:
StandardException
- if a deadlock has occurred (message id will be LockFactory.Deadlock), or if the wait for the lock timed out (message id will be LockFactory.TimeOut), or if another thread interrupted this thread while it was waiting for the lock (this will be a StandardException with a nested InterruptedException, and the message id will be LockFactory.InterruptedExceptionId), or if any other error occurs when locking the object
-
isLockHeld
boolean isLockHeld(CompatibilitySpace compatibilitySpace, Object group, Lockable ref, Object qualifier) Check to see if a specific lock is held. -
getWaitTimeout
int getWaitTimeout()Get the lock timeout in milliseconds. A negative number means that there is no timeout. -
setLimit
Install a limit that is called when the size of the group exceeds the required limit.
It is not guaranteed that the callback method (Limit.reached) is called as soon as the group size exceeds the given limit. If the callback method does not result in a decrease in the number of locks held then the lock factory implementation may delay calling the method again. E.g. with a limit of 500 and a reached() method that does nothing, may result in the call back method only being called when the group size reaches 550.
Only one limit may be in place for a group at any time.- See Also:
-
clearLimit
Clear a limit set by setLimit. -
makeVirtualLockTable
Enumeration makeVirtualLockTable()Make a virtual lock table for diagnostics.
-