view src/goodjava/util/SoftCacheMap.java @ 1648:224af797b1f9

Mainly small install script improvements - Consistent usage of `$LUANHOME`, removed reliance on current directory. - Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed. - Minor spelling mistake fix.
author Fox
date Mon, 28 Mar 2022 18:00:12 +0200
parents 1b809d2fdf03
children
line wrap: on
line source

package goodjava.util;

import java.lang.ref.ReferenceQueue;
import java.lang.ref.SoftReference;


public final class SoftCacheMap<K,V> extends CacheMap<K,V> {

	static final class MySoftReference<K,V> extends SoftReference<V> implements MyReference<K,V> {
		private final K key;

		MySoftReference(K key,V value,ReferenceQueue<V> q) {
			super(value,q);
			this.key = key;
		}

		public K key() {
			return key;
		}

		public boolean equals(Object obj) {
			Object o = this.get();
			if( o==null )
				return false;
			SoftReference ref = (SoftReference)obj;
			return o.equals(ref.get());
		}

	}

	protected MyReference<K,V> newReference(K key,V value,ReferenceQueue<V> q) {
		return new MySoftReference<K,V>(key,value,q);
	}

}