blob: e886f771ff128d74b085cf3ce056174eab6abce2 [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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.intellij.util.containers;
import com.intellij.reference.SoftReference;
import gnu.trove.TObjectHashingStrategy;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import java.lang.ref.ReferenceQueue;
import java.util.Map;
/**
* Soft keys hash map.
* Null keys are not supported.
*/
public final class SoftHashMap<K,V> extends RefHashMap<K,V> {
public SoftHashMap(int initialCapacity, float loadFactor) {
super(initialCapacity, loadFactor);
}
public SoftHashMap(int initialCapacity) {
super(initialCapacity);
}
public SoftHashMap() {
super();
}
public SoftHashMap(@NotNull Map<K, V> t) {
super(t);
}
public SoftHashMap(@NotNull TObjectHashingStrategy<K> hashingStrategy) {
super(hashingStrategy);
}
@NotNull
@Override
protected <T> Key<T> createKey(@NotNull T k, @NotNull ReferenceQueue<? super T> q) {
return new SoftKey<T>(k, q);
}
private static class SoftKey<T> extends SoftReference<T> implements Key<T> {
private final int myHash; /* Hash code of key, stored here since the key may be tossed by the GC */
private SoftKey(@NotNull T k, @NotNull ReferenceQueue<? super T> q) {
super(k, q);
myHash = k.hashCode();
}
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Key)) return false;
if (myHash != o.hashCode()) return false;
Object t = get();
Object u = ((Key)o).get();
if (t == null || u == null) return false;
if (t == u) return true;
return t.equals(u);
}
public int hashCode() {
return myHash;
}
@NonNls
@Override
public String toString() {
return "SoftHashMap.SoftKey(" + get() + ")";
}
}
}