Package org.infinispan.container.offheap
Class BoundedOffHeapDataContainer
- java.lang.Object
-
- org.infinispan.container.impl.AbstractDelegatingDataContainer<K,V>
-
- org.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>
-
- org.infinispan.container.offheap.SegmentedBoundedOffHeapDataContainer
-
- org.infinispan.container.offheap.BoundedOffHeapDataContainer
-
- All Implemented Interfaces:
Iterable<InternalCacheEntry<WrappedBytes,WrappedBytes>>,DataContainer<WrappedBytes,WrappedBytes>,org.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>
public class BoundedOffHeapDataContainer extends SegmentedBoundedOffHeapDataContainer
- Since:
- 9.4
- Author:
- wburns
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.infinispan.container.DataContainer
DataContainer.ComputeAction<K,V>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Consumer<Iterable<InternalCacheEntry<WrappedBytes,WrappedBytes>>>>listeners-
Fields inherited from class org.infinispan.container.offheap.SegmentedBoundedOffHeapDataContainer
allocator, currentSize, dataContainer, evictionManager, firstAddress, lastAddress, lruLock, maxSize, offHeapEntryFactory, passivator, useCount
-
-
Constructor Summary
Constructors Constructor Description BoundedOffHeapDataContainer(int addressCount, long maxSize, EvictionType type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRemovalListener(Consumer<Iterable<InternalCacheEntry<WrappedBytes,WrappedBytes>>> listener)Adds a listener that is invoked wheneverInternalDataContainer.removeSegments(IntSet)is invoked providing a way for the listener to see what actual entries were removed from the container.voidaddSegments(IntSet segments)Sets what segments this data container should be using.InternalCacheEntry<WrappedBytes,WrappedBytes>compute(int segment, WrappedBytes key, DataContainer.ComputeAction<WrappedBytes,WrappedBytes> action)Same asDataContainer.compute(Object, ComputeAction)except that the segment of the key can provided to update entries without calculating the segment for the given key.InternalCacheEntry<WrappedBytes,WrappedBytes>compute(WrappedBytes key, DataContainer.ComputeAction<WrappedBytes,WrappedBytes> action)Computes the new value for the key.booleancontainsKey(int segment, Object k)Same asDataContainer.containsKey(Object)except that the segment of the key can provided to lookup if the entry exists without calculating the segment for the given key.booleancontainsKey(Object k)Tests whether an entry exists in the containervoidevict(int segment, WrappedBytes key)Same asDataContainer.evict(Object)except that the segment of the key can provided to remove the entry without calculating the segment for the given key.voidevict(WrappedBytes key)Atomically, it removes the key fromDataContainerand passivates it to persistence.InternalCacheEntry<WrappedBytes,WrappedBytes>get(int segment, Object k)Same asDataContainer.get(Object)except that the segment of the key can provided to lookup entries without calculating the segment for the given keyInternalCacheEntry<WrappedBytes,WrappedBytes>get(Object k)Retrieves a cached entryprotected OffHeapConcurrentMapgetMapThatContainsKey(byte[] key)Iterator<InternalCacheEntry<WrappedBytes,WrappedBytes>>iterator(IntSet segments)Same asDataContainer.iterator()except that only entries that map to the provided segments are returned via the iterator.Iterator<InternalCacheEntry<WrappedBytes,WrappedBytes>>iteratorIncludingExpired(IntSet segments)Same asDataContainer.iteratorIncludingExpired()except that only entries that map to the provided segments are returned via the iterator.InternalCacheEntry<WrappedBytes,WrappedBytes>peek(int segment, Object k)Same asDataContainer.peek(Object)except that the segment of the key can provided to lookup entries without calculating the segment for the given keyInternalCacheEntry<WrappedBytes,WrappedBytes>peek(Object k)Retrieves a cache entry in the same way asDataContainer.get(Object)} except that it does not update or reorder any of the internal constructs.voidput(int segment, WrappedBytes key, WrappedBytes value, Metadata metadata, long createdTimestamp, long lastUseTimestamp)Same asDataContainer.put(Object, Object, Metadata)except that the segment of the key can provided to write/lookup entries without calculating the segment for the given key.voidput(WrappedBytes key, WrappedBytes value, Metadata metadata)Puts an entry in the cache along with metadata adding information such lifespan of entry, max idle time, version information...etc.InternalCacheEntry<WrappedBytes,WrappedBytes>remove(int segment, Object k)Same asDataContainer.remove(Object)except that the segment of the key can provided to remove the entry without calculating the segment for the given key.InternalCacheEntry<WrappedBytes,WrappedBytes>remove(Object k)Removes an entry from the cachevoidremoveRemovalListener(Object listener)Removes a previously registered listener viaInternalDataContainer.addRemovalListener(Consumer).voidremoveSegments(IntSet segments)Removes and un-associates the given segments.Spliterator<InternalCacheEntry<WrappedBytes,WrappedBytes>>spliterator(IntSet segments)Same asDataContainer.spliterator()except that only entries that map to the provided segments are returned via this spliterator.Spliterator<InternalCacheEntry<WrappedBytes,WrappedBytes>>spliteratorIncludingExpired(IntSet segments)Same asDataContainer.spliteratorIncludingExpired()except that only entries that map to the provided segments are returned via this spliterator.voidstart()-
Methods inherited from class org.infinispan.container.offheap.SegmentedBoundedOffHeapDataContainer
capacity, delegate, evictionSize, getSize, stop
-
Methods inherited from class org.infinispan.container.impl.AbstractDelegatingInternalDataContainer
clear, forEach, size, sizeIncludingExpired, touch
-
Methods inherited from class org.infinispan.container.impl.AbstractDelegatingDataContainer
clear, entrySet, executeTask, executeTask, forEach, iterator, iteratorIncludingExpired, keySet, resize, size, sizeIncludingExpired, spliterator, spliteratorIncludingExpired, values
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.infinispan.container.DataContainer
clear, entrySet, executeTask, executeTask, iterator, iteratorIncludingExpired, keySet, resize, size, sizeIncludingExpired, spliterator, spliteratorIncludingExpired, values
-
-
-
-
Field Detail
-
listeners
protected final List<Consumer<Iterable<InternalCacheEntry<WrappedBytes,WrappedBytes>>>> listeners
-
-
Constructor Detail
-
BoundedOffHeapDataContainer
public BoundedOffHeapDataContainer(int addressCount, long maxSize, EvictionType type)
-
-
Method Detail
-
start
public void start()
- Overrides:
startin classSegmentedBoundedOffHeapDataContainer
-
getMapThatContainsKey
protected OffHeapConcurrentMap getMapThatContainsKey(byte[] key)
- Overrides:
getMapThatContainsKeyin classSegmentedBoundedOffHeapDataContainer
-
containsKey
public boolean containsKey(Object k)
Description copied from interface:DataContainerTests whether an entry exists in the container- Specified by:
containsKeyin interfaceDataContainer<WrappedBytes,WrappedBytes>- Overrides:
containsKeyin classorg.infinispan.container.impl.AbstractDelegatingDataContainer<WrappedBytes,WrappedBytes>- Parameters:
k- key to test- Returns:
- true if entry exists and has not expired; false otherwise
-
peek
public InternalCacheEntry<WrappedBytes,WrappedBytes> peek(Object k)
Description copied from interface:DataContainerRetrieves a cache entry in the same way asDataContainer.get(Object)} except that it does not update or reorder any of the internal constructs. I.e., expiration does not happen, and in the case of the LRU container, the entry is not moved to the end of the chain. This method should be used instead ofDataContainer.get(Object)} when called while iterating through the data container using methods likeDataContainer.iterator()to avoid changing the underlying collection's order.- Specified by:
peekin interfaceDataContainer<WrappedBytes,WrappedBytes>- Overrides:
peekin classorg.infinispan.container.impl.AbstractDelegatingDataContainer<WrappedBytes,WrappedBytes>- Parameters:
k- key under which entry is stored- Returns:
- entry, if it exists, or null if not
-
get
public InternalCacheEntry<WrappedBytes,WrappedBytes> get(Object k)
Description copied from interface:DataContainerRetrieves a cached entry- Specified by:
getin interfaceDataContainer<WrappedBytes,WrappedBytes>- Specified by:
getin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
getin classorg.infinispan.container.impl.AbstractDelegatingDataContainer<WrappedBytes,WrappedBytes>- Parameters:
k- key under which entry is stored- Returns:
- entry, if it exists and has not expired, or null if not
-
compute
public InternalCacheEntry<WrappedBytes,WrappedBytes> compute(WrappedBytes key, DataContainer.ComputeAction<WrappedBytes,WrappedBytes> action)
Description copied from interface:DataContainerComputes the new value for the key. SeeDataContainer.ComputeAction.compute(Object, org.infinispan.container.entries.InternalCacheEntry, InternalEntryFactory). Thekeymust be activate by invokingActivationManager.onRemove(Object, boolean)orActivationManager.onUpdate(Object, boolean)depending if the value returned by theDataContainer.ComputeActionis null or not respectively.Note the entry provided to
DataContainer.ComputeActionmay be expired as these entries are not filtered as many other methods do.- Specified by:
computein interfaceDataContainer<WrappedBytes,WrappedBytes>- Overrides:
computein classSegmentedBoundedOffHeapDataContainer- Parameters:
key- The key.action- The action that will compute the new value.- Returns:
- The
InternalCacheEntryassociated to the key.
-
remove
public InternalCacheEntry<WrappedBytes,WrappedBytes> remove(Object k)
Description copied from interface:DataContainerRemoves an entry from the cache Thekeymust be activate by invokingActivationManager.onRemove(Object, boolean).- Specified by:
removein interfaceDataContainer<WrappedBytes,WrappedBytes>- Overrides:
removein classorg.infinispan.container.impl.AbstractDelegatingDataContainer<WrappedBytes,WrappedBytes>- Parameters:
k- key to remove- Returns:
- entry removed, or null if it didn't exist or had expired
-
evict
public void evict(WrappedBytes key)
Description copied from interface:DataContainerAtomically, it removes the key fromDataContainerand passivates it to persistence. The passivation must be done by invoking the methodPassivationManager.passivate(org.infinispan.container.entries.InternalCacheEntry).- Specified by:
evictin interfaceDataContainer<WrappedBytes,WrappedBytes>- Overrides:
evictin classorg.infinispan.container.impl.AbstractDelegatingDataContainer<WrappedBytes,WrappedBytes>- Parameters:
key- The key to evict.
-
put
public void put(WrappedBytes key, WrappedBytes value, Metadata metadata)
Description copied from interface:DataContainerPuts an entry in the cache along with metadata adding information such lifespan of entry, max idle time, version information...etc. Thekeymust be activate by invokingActivationManager.onUpdate(Object, boolean).- Specified by:
putin interfaceDataContainer<WrappedBytes,WrappedBytes>- Overrides:
putin classSegmentedBoundedOffHeapDataContainer- Parameters:
key- key under which to store entryvalue- value to storemetadata- metadata of the entry
-
containsKey
public boolean containsKey(int segment, Object k)Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.containsKey(Object)except that the segment of the key can provided to lookup if the entry exists without calculating the segment for the given key.- Specified by:
containsKeyin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
containsKeyin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segment- segment for the keyk- key under which entry is stored- Returns:
- true if entry exists and has not expired; false otherwise
-
peek
public InternalCacheEntry<WrappedBytes,WrappedBytes> peek(int segment, Object k)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.peek(Object)except that the segment of the key can provided to lookup entries without calculating the segment for the given key- Specified by:
peekin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
peekin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segment- segment for the keyk- key under which entry is stored- Returns:
- entry, if it exists, or null if not
-
get
public InternalCacheEntry<WrappedBytes,WrappedBytes> get(int segment, Object k)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.get(Object)except that the segment of the key can provided to lookup entries without calculating the segment for the given key- Specified by:
getin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
getin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segment- segment for the keyk- key under which entry is stored- Returns:
- entry, if it exists and has not expired, or null if not
-
compute
public InternalCacheEntry<WrappedBytes,WrappedBytes> compute(int segment, WrappedBytes key, DataContainer.ComputeAction<WrappedBytes,WrappedBytes> action)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.compute(Object, ComputeAction)except that the segment of the key can provided to update entries without calculating the segment for the given key.- Specified by:
computein interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
computein classSegmentedBoundedOffHeapDataContainer- Parameters:
segment- segment for the keykey- The key.action- The action that will compute the new value.- Returns:
- The
InternalCacheEntryassociated to the key.
-
remove
public InternalCacheEntry<WrappedBytes,WrappedBytes> remove(int segment, Object k)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.remove(Object)except that the segment of the key can provided to remove the entry without calculating the segment for the given key.- Specified by:
removein interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
removein classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segment- segment for the keyk- key to remove- Returns:
- entry removed, or null if it didn't exist or had expired
-
evict
public void evict(int segment, WrappedBytes key)Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.evict(Object)except that the segment of the key can provided to remove the entry without calculating the segment for the given key.- Specified by:
evictin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
evictin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segment- segment for the keykey- The key to evict.
-
put
public void put(int segment, WrappedBytes key, WrappedBytes value, Metadata metadata, long createdTimestamp, long lastUseTimestamp)Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.put(Object, Object, Metadata)except that the segment of the key can provided to write/lookup entries without calculating the segment for the given key.Note: The timestamps ignored if the entry already exists in the data container.
- Specified by:
putin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
putin classSegmentedBoundedOffHeapDataContainer- Parameters:
segment- segment for the keykey- key under which to store entryvalue- value to storemetadata- metadata of the entrycreatedTimestamp- creation timestamp, or-1to use the current timelastUseTimestamp- last use timestamp, or-1to use the current time
-
spliterator
public Spliterator<InternalCacheEntry<WrappedBytes,WrappedBytes>> spliterator(IntSet segments)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.spliterator()except that only entries that map to the provided segments are returned via this spliterator. The spliterator will not return expired entries.- Specified by:
spliteratorin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
spliteratorin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segments- segments of entries to return- Returns:
- spliterator containing entries mapping to those segments that aren't expired
-
spliteratorIncludingExpired
public Spliterator<InternalCacheEntry<WrappedBytes,WrappedBytes>> spliteratorIncludingExpired(IntSet segments)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.spliteratorIncludingExpired()except that only entries that map to the provided segments are returned via this spliterator. The spliterator will return expired entries as well.- Specified by:
spliteratorIncludingExpiredin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
spliteratorIncludingExpiredin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segments- segments of entries to use- Returns:
- spliterator containing entries mapping to those segments that could be expired
-
iterator
public Iterator<InternalCacheEntry<WrappedBytes,WrappedBytes>> iterator(IntSet segments)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.iterator()except that only entries that map to the provided segments are returned via the iterator. The iterator will not return expired entries.- Specified by:
iteratorin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
iteratorin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segments- segments of entries to use- Returns:
- iterator that returns all entries mapped to the given segments
-
iteratorIncludingExpired
public Iterator<InternalCacheEntry<WrappedBytes,WrappedBytes>> iteratorIncludingExpired(IntSet segments)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSame asDataContainer.iteratorIncludingExpired()except that only entries that map to the provided segments are returned via the iterator. The iterator can return expired entries.- Specified by:
iteratorIncludingExpiredin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
iteratorIncludingExpiredin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segments- segments of entries to use- Returns:
- iterator that returns all entries mapped to the given segments that could be expired
-
addRemovalListener
public void addRemovalListener(Consumer<Iterable<InternalCacheEntry<WrappedBytes,WrappedBytes>>> listener)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerAdds a listener that is invoked wheneverInternalDataContainer.removeSegments(IntSet)is invoked providing a way for the listener to see what actual entries were removed from the container.- Specified by:
addRemovalListenerin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
addRemovalListenerin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
listener- listener that invoked of removed entries
-
removeRemovalListener
public void removeRemovalListener(Object listener)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerRemoves a previously registered listener viaInternalDataContainer.addRemovalListener(Consumer).- Specified by:
removeRemovalListenerin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
removeRemovalListenerin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
listener- the listener to remove
-
addSegments
public void addSegments(IntSet segments)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerSets what segments this data container should be using. Already associated segments are unaffected by this and takes a union of existing and new segments.- Specified by:
addSegmentsin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
addSegmentsin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segments- segments to associate with this container
-
removeSegments
public void removeSegments(IntSet segments)
Description copied from interface:org.infinispan.container.impl.InternalDataContainerRemoves and un-associates the given segments. This will notify any listeners registered viaInternalDataContainer.addRemovalListener(Consumer)of entries that were removed due to no longer being associated with this container. There is no guarantee if the consumer is invoked once or multiple times for a given group of segments and could be in any order.When this method is invoked an implementation is free to remove any entries that don't map to segments currently associated with this container. Note that entries that were removed due to their segments never being associated with this container do not notify listeners registered via
InternalDataContainer.addRemovalListener(Consumer).- Specified by:
removeSegmentsin interfaceorg.infinispan.container.impl.InternalDataContainer<WrappedBytes,WrappedBytes>- Overrides:
removeSegmentsin classorg.infinispan.container.impl.AbstractDelegatingInternalDataContainer<WrappedBytes,WrappedBytes>- Parameters:
segments- segments that should no longer be associated with this container
-
-