view src/goodjava/util/WeakCacheMap.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.WeakReference;


public class WeakCacheMap<K,V> extends CacheMap<K,V> {

	static final class MyWeakReference<K,V> extends WeakReference<V> implements MyReference<K,V> {
		private final K key;

		MyWeakReference(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;
			WeakReference ref = (WeakReference)obj;
			return o.equals(ref.get());
		}

	}

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

}