com.helger.commons.collection.map.SoftLinkedHashMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.8+ Library with tons of utility classes required in all projects
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.commons.collection.map;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Predicate;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import com.helger.commons.annotation.OverrideOnDemand;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.impl.CommonsLinkedHashMap;
import com.helger.commons.hashcode.HashCodeGenerator;
/**
* Soft {@link HashMap} implementation based on
* http://www.javaspecialists.eu/archive/Issue015.html
* The entrySet
implementation is from
* org.hypergraphdb.util
* Note: {@link SoftLinkedHashMap} is NOT serializable!
*
* @author Philip Helger
* @param
* Key type
* @param
* Value type
*/
public class SoftLinkedHashMap extends AbstractSoftMap
{
private final int m_nMaxSize;
private static class InternalLinkedHashMap extends CommonsLinkedHashMap >
{
// Note: 0.75f is the same as HashMap.DEFAULT_LOAD_FACTOR
private static final float DEFAULT_LOAD_FACTOR = 0.75f;
private transient Predicate super Map.Entry > m_aFilter;
public InternalLinkedHashMap (@Nonnegative final int nMaxSize)
{
super (nMaxSize, DEFAULT_LOAD_FACTOR, true);
}
@Override
protected final boolean removeEldestEntry (@Nonnull final Map.Entry > aEldest)
{
final MapEntry aEntry = new MapEntry <> (aEldest.getKey (), aEldest.getValue ().get ());
return m_aFilter.test (aEntry);
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
return super.equals (o);
}
@Override
public int hashCode ()
{
return super.hashCode ();
}
}
public SoftLinkedHashMap (@Nonnegative final int nMaxSize)
{
super (new InternalLinkedHashMap <> (nMaxSize));
m_nMaxSize = nMaxSize;
// Must be set explicitly for dependency handling
((InternalLinkedHashMap ) m_aSrcMap).m_aFilter = aEldest -> {
final int nSize = size ();
if (nSize <= m_nMaxSize)
{
// No need to remove anything
return false;
}
// Invoke protected method
SoftLinkedHashMap.this.onRemoveEldestEntry (nSize, aEldest);
return true;
};
}
/**
* @return The maximum number of elements that can reside inside this object.
* Never < 0.
*/
@Nonnegative
public final int getMaxSize ()
{
return m_nMaxSize;
}
/**
* Protected method that is invoked every time the oldest entry is removed.
*
* @param nSize
* Current size of the map. Always ≥ 0.
* @param aEldest
* The map entry that is removed. Never null
.
*/
@OverrideOnDemand
protected void onRemoveEldestEntry (@Nonnegative final int nSize, @Nonnull final Map.Entry aEldest)
{}
@Nonnull
@ReturnsMutableCopy
public SoftLinkedHashMap getClone ()
{
final SoftLinkedHashMap ret = new SoftLinkedHashMap <> (m_nMaxSize);
ret.putAll (this);
return ret;
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (!super.equals (o))
return false;
final SoftLinkedHashMap , ?> rhs = (SoftLinkedHashMap , ?>) o;
return m_nMaxSize == rhs.m_nMaxSize;
}
@Override
public int hashCode ()
{
return HashCodeGenerator.getDerived (super.hashCode ()).append (m_nMaxSize).getHashCode ();
}
}