All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.util.collections.WeakValuedMap Maven / Gradle / Ivy

/***** BEGIN LICENSE BLOCK *****
 * Version: EPL 2.0/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Eclipse Public
 * 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.eclipse.org/legal/epl-v20.html
 *
 * Software distributed under the License is distributed on an "AS
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * rights and limitations under the License.
 *
 * Copyright (C) 2002-2004 Jan Arne Petersen 
 * Copyright (C) 2002-2004 Anders Bengtsson 
 * Copyright (C) 2004-2006 Charles O Nutter 
 * Copyright (C) 2004 Stefan Matthias Aust 
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either of the GNU General Public License Version 2 or later (the "GPL"),
 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the EPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the EPL, the GPL or the LGPL.
 ***** END LICENSE BLOCK *****/

package org.jruby.util.collections;

import java.io.Serializable;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
import java.util.AbstractCollection;
import java.util.AbstractMap.SimpleImmutableEntry;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;

/**
 * Map-like that holds its values weakly (backed by a concurrent hash map).
 */
public class WeakValuedMap implements Map, Serializable {

    private final Map> map = newMap();
    private final ReferenceQueue deadRefs = new ReferenceQueue<>();

    public Value put(Key key, Value value) {
        cleanReferences();
        KeyedReference prev = map.put(key, new KeyedReference(value, key, deadRefs));
        return prev == null ? null : prev.get();
    }

    public Value get(Object key) {
        cleanReferences();
        KeyedReference reference = map.get(key);
        if (reference == null) return null;
        return reference.get();
    }

    public void clear() {
        cleanReferences();
        map.clear();
    }

    public int size() {
        cleanReferences();
        return map.size();
    }

    @Override
    public boolean isEmpty() {
        return size() == 0;
    }

    @Override
    public boolean containsKey(final Object key) {
        return map.containsKey(key);
    }

    @Override
    public boolean containsValue(final Object value) {
        cleanReferences();
        for (KeyedReference ref : map.values()) {
            if (value == null) {
                if (ref.get() == null) return true;
            } else {
                if (value.equals(ref.get())) return true;
            }
        }
        return false;
    }

    @Override
    public Value remove(final Object key) {
        cleanReferences();
        KeyedReference prev = map.remove(key);
        return prev == null ? null : prev.get();
    }

    @Override
    public void putAll(final Map m) {
        for (Map.Entry e : m.entrySet()) put(e.getKey(), e.getValue());
    }

    @Override
    public Set keySet() {
        return map.keySet();
    }

    @Override
    public Collection values() {
        return new AbstractCollection() {
            public Iterator iterator() {
                return new Iterator() {
                    final Iterator> i = entrySet().iterator();

                    public boolean hasNext() {
                        return i.hasNext();
                    }

                    public Value next() {
                        return i.next().getValue();
                    }

                    public void remove() {
                        i.remove();
                    }
                };
            }

            public int size() {
                return WeakValuedMap.this.size();
            }

            public boolean contains(Object v) {
                return WeakValuedMap.this.containsValue(v);
            }

            public void clear() {
                WeakValuedMap.this.clear();
            }
        };
    }

    @Override
    public Set> entrySet() {
        return new EntrySet();
    }

    @Override
    public String toString() {
        return map.toString();
    }

    /**
     * Construct the backing store map for this WeakValuedMap. It should be capable of safe concurrent read and write.
     *
     * @return the backing store map
     */
    protected Map> newMap() {
        return new ConcurrentHashMap<>();
    }

    protected static class KeyedReference extends WeakReference {

        protected final Key key;

        public KeyedReference(Value object, Key key, ReferenceQueue queue) {
            super(object, queue);
            this.key = key;
        }

    }

    @SuppressWarnings("unchecked")
    private void cleanReferences() {
        KeyedReference ref;
        while ( ( ref = (KeyedReference) deadRefs.poll() ) != null ) {
            map.remove( ref.key );
        }
    }

    private class EntrySet extends AbstractCollection> implements Set> {

        transient Set>> entries;

        private Set>> getEntries() {
            if (entries == null) {
                entries = WeakValuedMap.this.map.entrySet();
            }
            return entries;
        }

        public int size() {
            return WeakValuedMap.this.size();
        }

        public void clear() {
            WeakValuedMap.this.clear();
        }

        public boolean contains(Object o) {
            if (o instanceof Entry) {
                Entry entry = (Entry) o;
                cleanReferences();
                KeyedReference reference = map.get(entry.getKey());
                if (reference == null) return false;
                Object value = reference.get();
                return value == null ? entry.getValue() == null : value.equals(entry.getValue());
            }
            return false;
        }

        public Iterator> iterator() {
            WeakValuedMap.this.cleanReferences();

            return new Iterator>() {
                final Iterator>> i = WeakValuedMap.this.map.entrySet().iterator();

                public boolean hasNext() {
                    return i.hasNext();
                }

                public Entry next() {
                    Entry> e = i.next();
                    return new SimpleImmutableEntry<>(e.getKey(), e.getValue().get());
                }

                public void remove() {
                    i.remove();
                }

            };
        }

        public boolean add(Entry e) {
            throw new UnsupportedOperationException();
        }

        public boolean remove(Object o) {
            throw new UnsupportedOperationException();
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy