Package org.apache.openjpa.util
Class AbstractLRSProxyCollection
- java.lang.Object
-
- org.apache.openjpa.util.AbstractLRSProxyCollection
-
- All Implemented Interfaces:
java.lang.Iterable
,java.util.Collection
,java.util.function.Predicate
,java.util.Set
,ChangeTracker
,CollectionChangeTracker
,LRSProxy
,Proxy
- Direct Known Subclasses:
LRSProxyCollection
public abstract class AbstractLRSProxyCollection extends java.lang.Object implements java.util.Set, LRSProxy, java.util.function.Predicate, CollectionChangeTracker
A collection proxy designed for collections backed by extremely large result sets in which each call toiterator()
may perform a database query. Changes to the collection are tracked through aChangeTracker
. This collection has the following limitations:- The
size
method may returnInteger.MAX_VALUE
. - The collection cannot contain duplicate elements.
- Author:
- Abe White
-
-
Constructor Summary
Constructors Constructor Description AbstractLRSProxyCollection(java.lang.Class elementType, boolean ordered)
Constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
add(java.lang.Object o)
boolean
addAll(java.util.Collection all)
void
added(java.lang.Object val)
Record that the given element was added.void
clear()
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection all)
java.lang.Object
copy(java.lang.Object orig)
Return an unproxied copy of the given instance.protected abstract int
count()
Return the number of elements in the collection, orInteger.MAX_VALUE
.java.util.Collection
getAdded()
Return the collection of values that need to be added to the managed container.java.util.Collection
getChanged()
Return the set of elements that have changed.ChangeTracker
getChangeTracker()
Return the change tracker for this proxy, or null if none.int
getNextSequence()
The next element sequence value for this proxy at load time.OpenJPAStateManager
getOwner()
Return the owning object.int
getOwnerField()
Return the owning field index.java.util.Collection
getRemoved()
Return the set of values that need to be removed from the managed container.protected abstract boolean
has(java.lang.Object o)
Return whether the collection contains the given element.boolean
isEmpty()
boolean
isTracking()
Return true if this tracker has an up-to-date view of all the changes to the container it is managing.java.util.Iterator
iterator()
protected abstract java.util.Iterator
itr()
Implement this method to return an iterator over the contents of the collection.boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection all)
void
removed(java.lang.Object val)
Record that the given element was removed.boolean
retainAll(java.util.Collection all)
void
setNextSequence(int seq)
The maximum element sequence value for this proxy at load time.void
setOwner(OpenJPAStateManager sm, int field)
Reset the state of the proxy, and set the owning instance of the proxy and the name of the field it is assigned to.int
size()
void
startTracking()
Reset the state of the change tracker, and turn change tracking back on if it has been disabled.void
stopTracking()
Tell the tracker to stop tracking changes for its container.boolean
test(java.lang.Object o)
java.lang.Object[]
toArray()
java.lang.Object[]
toArray(java.lang.Object[] a)
protected java.lang.Object
writeReplace()
-
-
-
Method Detail
-
setOwner
public void setOwner(OpenJPAStateManager sm, int field)
Description copied from interface:Proxy
Reset the state of the proxy, and set the owning instance of the proxy and the name of the field it is assigned to. Set to null to indicate that the proxy is no longer managed.
-
getOwner
public OpenJPAStateManager getOwner()
Description copied from interface:Proxy
Return the owning object.
-
getOwnerField
public int getOwnerField()
Description copied from interface:Proxy
Return the owning field index.- Specified by:
getOwnerField
in interfaceProxy
-
getChangeTracker
public ChangeTracker getChangeTracker()
Description copied from interface:Proxy
Return the change tracker for this proxy, or null if none.- Specified by:
getChangeTracker
in interfaceProxy
-
copy
public java.lang.Object copy(java.lang.Object orig)
Description copied from interface:Proxy
Return an unproxied copy of the given instance. This method is used by proxy managers to create backup values for use in rollback.
-
add
public boolean add(java.lang.Object o)
- Specified by:
add
in interfacejava.util.Collection
- Specified by:
add
in interfacejava.util.Set
-
addAll
public boolean addAll(java.util.Collection all)
- Specified by:
addAll
in interfacejava.util.Collection
- Specified by:
addAll
in interfacejava.util.Set
-
remove
public boolean remove(java.lang.Object o)
- Specified by:
remove
in interfacejava.util.Collection
- Specified by:
remove
in interfacejava.util.Set
-
removeAll
public boolean removeAll(java.util.Collection all)
- Specified by:
removeAll
in interfacejava.util.Collection
- Specified by:
removeAll
in interfacejava.util.Set
-
retainAll
public boolean retainAll(java.util.Collection all)
- Specified by:
retainAll
in interfacejava.util.Collection
- Specified by:
retainAll
in interfacejava.util.Set
-
clear
public void clear()
- Specified by:
clear
in interfacejava.util.Collection
- Specified by:
clear
in interfacejava.util.Set
-
contains
public boolean contains(java.lang.Object o)
- Specified by:
contains
in interfacejava.util.Collection
- Specified by:
contains
in interfacejava.util.Set
-
containsAll
public boolean containsAll(java.util.Collection all)
- Specified by:
containsAll
in interfacejava.util.Collection
- Specified by:
containsAll
in interfacejava.util.Set
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray
in interfacejava.util.Collection
- Specified by:
toArray
in interfacejava.util.Set
-
toArray
public java.lang.Object[] toArray(java.lang.Object[] a)
- Specified by:
toArray
in interfacejava.util.Collection
- Specified by:
toArray
in interfacejava.util.Set
-
size
public int size()
- Specified by:
size
in interfacejava.util.Collection
- Specified by:
size
in interfacejava.util.Set
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfacejava.util.Collection
- Specified by:
isEmpty
in interfacejava.util.Set
-
iterator
public java.util.Iterator iterator()
- Specified by:
iterator
in interfacejava.util.Collection
- Specified by:
iterator
in interfacejava.lang.Iterable
- Specified by:
iterator
in interfacejava.util.Set
-
writeReplace
protected java.lang.Object writeReplace() throws java.io.ObjectStreamException
- Throws:
java.io.ObjectStreamException
-
itr
protected abstract java.util.Iterator itr()
Implement this method to return an iterator over the contents of the collection. This method may be invoked multiple times. The returned iterator does not have to support theIterator.remove()
method, and may implementCloseable
.
-
has
protected abstract boolean has(java.lang.Object o)
Return whether the collection contains the given element.
-
count
protected abstract int count()
Return the number of elements in the collection, orInteger.MAX_VALUE
.
-
test
public boolean test(java.lang.Object o)
- Specified by:
test
in interfacejava.util.function.Predicate
-
isTracking
public boolean isTracking()
Description copied from interface:ChangeTracker
Return true if this tracker has an up-to-date view of all the changes to the container it is managing.- Specified by:
isTracking
in interfaceChangeTracker
-
startTracking
public void startTracking()
Description copied from interface:ChangeTracker
Reset the state of the change tracker, and turn change tracking back on if it has been disabled.- Specified by:
startTracking
in interfaceChangeTracker
-
stopTracking
public void stopTracking()
Description copied from interface:ChangeTracker
Tell the tracker to stop tracking changes for its container.- Specified by:
stopTracking
in interfaceChangeTracker
-
getAdded
public java.util.Collection getAdded()
Description copied from interface:ChangeTracker
Return the collection of values that need to be added to the managed container.- Specified by:
getAdded
in interfaceChangeTracker
-
getRemoved
public java.util.Collection getRemoved()
Description copied from interface:ChangeTracker
Return the set of values that need to be removed from the managed container.- Specified by:
getRemoved
in interfaceChangeTracker
-
getChanged
public java.util.Collection getChanged()
Description copied from interface:ChangeTracker
Return the set of elements that have changed. In maps, this marks a possible change in value for a key. In collections, this marks an element that has been removed and re-added.- Specified by:
getChanged
in interfaceChangeTracker
-
added
public void added(java.lang.Object val)
Description copied from interface:CollectionChangeTracker
Record that the given element was added.- Specified by:
added
in interfaceCollectionChangeTracker
-
removed
public void removed(java.lang.Object val)
Description copied from interface:CollectionChangeTracker
Record that the given element was removed.- Specified by:
removed
in interfaceCollectionChangeTracker
-
getNextSequence
public int getNextSequence()
Description copied from interface:ChangeTracker
The next element sequence value for this proxy at load time. If the data store keeps this proxy's data in sequence order but allows holes for removed objects, the implementation can set the next sequence at load time, then retrieve it and start from there for added objects at flush time. This value is set back to 0 if the proxy stops tracking changes. For ordered proxies, it is set to the proxy's size when the proxy starts tracking changes again.- Specified by:
getNextSequence
in interfaceChangeTracker
-
setNextSequence
public void setNextSequence(int seq)
Description copied from interface:ChangeTracker
The maximum element sequence value for this proxy at load time. If the data store keeps this proxy's data in sequence order but allows holes for removed objects, the implementation can set the next sequence at load time, then retrieve it and start from there for added objects at flush time. This value is set back to 0 if the proxy stops tracking changes. For ordered proxies, it is set to the proxy's size when the proxy starts tracking changes again.- Specified by:
setNextSequence
in interfaceChangeTracker
-
-