Class PrivateMaxEntriesMap<K,V>

java.lang.Object
java.util.AbstractMap<K,V>
tools.jackson.databind.util.internal.PrivateMaxEntriesMap<K,V>
Type Parameters:
K - the type of keys maintained by this map
V - the type of mapped values
All Implemented Interfaces:
Serializable, ConcurrentMap<K,V>, Map<K,V>

public final class PrivateMaxEntriesMap<K,V> extends AbstractMap<K,V> implements ConcurrentMap<K,V>, Serializable
A hash table supporting full concurrency of retrievals, adjustable expected concurrency for updates, and a maximum capacity to bound the map by. This implementation differs from ConcurrentHashMap in that it maintains a page replacement algorithm that is used to evict an entry when the map has exceeded its capacity. Unlike the Java Collections Framework, this map does not have a publicly visible constructor and instances are created through a PrivateMaxEntriesMap.Builder.

An entry is evicted from the map when the entry size exceeds its maximum capacity threshold.

An EvictionListener may be supplied for notification when an entry is evicted from the map. This listener is invoked on a caller's thread and will not block other threads from operating on the map. An implementation should be aware that the caller's thread will not expect long execution times or failures as a side effect of the listener being notified. Execution safety and a fast turn around time can be achieved by performing the operation asynchronously, such as by submitting a task to an ExecutorService.

The concurrency level determines the number of threads that can concurrently modify the table. Using a significantly higher or lower value than needed can waste space or lead to thread contention, but an estimate within an order of magnitude of the ideal value does not usually have a noticeable impact. Because placement in hash tables is essentially random, the actual concurrency will vary.

This class and its views and iterators implement all of the optional methods of the Map and Iterator interfaces.

Like Hashtable but unlike HashMap, this class does not allow null to be used as a key or value. Unlike LinkedHashMap, this class does not provide predictable iteration order. A snapshot of the keys and entries may be obtained in ascending and descending order of retention.

See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • ceilingNextPowerOfTwo

      static int ceilingNextPowerOfTwo(int x)
    • readBufferIndex

      private static int readBufferIndex(int bufferIndex, int entryIndex)
    • checkNotNull

      static void checkNotNull(Object o)
      Ensures that the object is not null.
    • checkArgument

      static void checkArgument(boolean expression)
      Ensures that the argument expression is true.
    • checkState

      static void checkState(boolean expression)
      Ensures that the state expression is true.
    • capacity

      public long capacity()
      Retrieves the maximum capacity of the map.
      Returns:
      the maximum capacity
    • setCapacity

      public void setCapacity(long capacity)
      Sets the maximum capacity of the map and eagerly evicts entries until it shrinks to the appropriate size.
      Parameters:
      capacity - the maximum capacity of the map
      Throws:
      IllegalArgumentException - if the capacity is negative
    • hasOverflowed

      boolean hasOverflowed()
      Determines whether the map has exceeded its capacity.
    • evict

      void evict()
      Evicts entries from the map while it exceeds the capacity and appends evicted entries to the notification queue for processing.
    • afterRead

      void afterRead(PrivateMaxEntriesMap.Node<K,V> node)
      Performs the post-processing work required after a read.
      Parameters:
      node - the entry in the page replacement policy
    • readBufferIndex

      static int readBufferIndex()
      Returns the index to the read buffer to record into.
    • recordRead

      long recordRead(int bufferIndex, PrivateMaxEntriesMap.Node<K,V> node)
      Records a read in the buffer and return its write count.
      Parameters:
      bufferIndex - the index to the chosen read buffer
      node - the entry in the page replacement policy
      Returns:
      the number of writes on the chosen read buffer
    • drainOnReadIfNeeded

      void drainOnReadIfNeeded(int bufferIndex, long writeCount)
      Attempts to drain the buffers if it is determined to be needed when post-processing a read.
      Parameters:
      bufferIndex - the index to the chosen read buffer
      writeCount - the number of writes on the chosen read buffer
    • afterWrite

      void afterWrite(Runnable task)
      Performs the post-processing work required after a write.
      Parameters:
      task - the pending operation to be applied
    • tryToDrainBuffers

      void tryToDrainBuffers()
      Attempts to acquire the eviction lock and apply the pending operations, up to the amortized threshold, to the page replacement policy.
    • drainBuffers

      void drainBuffers()
      Drains the read and write buffers up to an amortized threshold.
    • drainReadBuffers

      void drainReadBuffers()
      Drains the read buffers, each up to an amortized threshold.
    • drainReadBuffer

      void drainReadBuffer(int bufferIndex)
      Drains the read buffer up to an amortized threshold.
    • applyRead

      void applyRead(PrivateMaxEntriesMap.Node<K,V> node)
      Updates the node's location in the page replacement policy.
    • drainWriteBuffer

      void drainWriteBuffer()
      Drains the read buffer up to an amortized threshold.
    • tryToRetire

      boolean tryToRetire(PrivateMaxEntriesMap.Node<K,V> node, PrivateMaxEntriesMap.WeightedValue<V> expect)
      Attempts to transition the node from the alive state to the retired state.
      Parameters:
      node - the entry in the page replacement policy
      expect - the expected weighted value
      Returns:
      if successful
    • makeRetired

      void makeRetired(PrivateMaxEntriesMap.Node<K,V> node)
      Atomically transitions the node from the alive state to the retired state, if a valid transition.
      Parameters:
      node - the entry in the page replacement policy
    • makeDead

      void makeDead(PrivateMaxEntriesMap.Node<K,V> node)
      Atomically transitions the node to the dead state and decrements the weightedSize.
      Parameters:
      node - the entry in the page replacement policy
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface Map<K,V>
      Overrides:
      isEmpty in class AbstractMap<K,V>
    • size

      public int size()
      Specified by:
      size in interface Map<K,V>
      Overrides:
      size in class AbstractMap<K,V>
    • clear

      public void clear()
      Specified by:
      clear in interface Map<K,V>
      Overrides:
      clear in class AbstractMap<K,V>
    • containsKey

      public boolean containsKey(Object key)
      Specified by:
      containsKey in interface Map<K,V>
      Overrides:
      containsKey in class AbstractMap<K,V>
    • containsValue

      public boolean containsValue(Object value)
      Specified by:
      containsValue in interface Map<K,V>
      Overrides:
      containsValue in class AbstractMap<K,V>
    • get

      public V get(Object key)
      Specified by:
      get in interface Map<K,V>
      Overrides:
      get in class AbstractMap<K,V>
    • put

      public V put(K key, V value)
      Specified by:
      put in interface Map<K,V>
      Overrides:
      put in class AbstractMap<K,V>
    • putIfAbsent

      public V putIfAbsent(K key, V value)
      Specified by:
      putIfAbsent in interface ConcurrentMap<K,V>
      Specified by:
      putIfAbsent in interface Map<K,V>
    • put

      V put(K key, V value, boolean onlyIfAbsent)
      Adds a node to the list and the data store. If an existing node is found, then its value is updated if allowed.
      Parameters:
      key - key with which the specified value is to be associated
      value - value to be associated with the specified key
      onlyIfAbsent - a write is performed only if the key is not already associated with a value
      Returns:
      the prior value in the data store or null if no mapping was found
    • remove

      public V remove(Object key)
      Specified by:
      remove in interface Map<K,V>
      Overrides:
      remove in class AbstractMap<K,V>
    • remove

      public boolean remove(Object key, Object value)
      Specified by:
      remove in interface ConcurrentMap<K,V>
      Specified by:
      remove in interface Map<K,V>
    • replace

      public V replace(K key, V value)
      Specified by:
      replace in interface ConcurrentMap<K,V>
      Specified by:
      replace in interface Map<K,V>
    • replace

      public boolean replace(K key, V oldValue, V newValue)
      Specified by:
      replace in interface ConcurrentMap<K,V>
      Specified by:
      replace in interface Map<K,V>
    • keySet

      public Set<K> keySet()
      Specified by:
      keySet in interface Map<K,V>
      Overrides:
      keySet in class AbstractMap<K,V>
    • values

      public Collection<V> values()
      Specified by:
      values in interface Map<K,V>
      Overrides:
      values in class AbstractMap<K,V>
    • entrySet

      public Set<Map.Entry<K,V>> entrySet()
      Specified by:
      entrySet in interface Map<K,V>
      Specified by:
      entrySet in class AbstractMap<K,V>
    • writeReplace

      Object writeReplace()
    • readObject

      private void readObject(ObjectInputStream stream) throws InvalidObjectException
      Throws:
      InvalidObjectException