
org.apache.lucene.util.WeakIdentityMap Maven / Gradle / Ivy
Show all versions of org.apache.servicemix.bundles.lucene
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.lucene.util;
import java.lang.ref.Reference;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.concurrent.ConcurrentHashMap;
/**
* Implements a combination of {@link java.util.WeakHashMap} and {@link java.util.IdentityHashMap}.
* Useful for caches that need to key off of a {@code ==} comparison instead of a {@code .equals}.
*
* This class is not a general-purpose {@link java.util.Map} implementation! It intentionally
* violates Map's general contract, which mandates the use of the equals method when comparing
* objects. This class is designed for use only in the rare cases wherein reference-equality
* semantics are required.
*
*
This implementation was forked from Apache CXF but
* modified to not implement the {@link java.util.Map} interface and without any set views on
* it, as those are error-prone and inefficient, if not implemented carefully. The map only contains
* {@link Iterator} implementations on the values and not-GCed keys. Lucene's implementation also
* supports {@code null} keys, but those are never weak!
*
*
The map supports two modes of operation:
*
*
* - {@code reapOnRead = true}: This behaves identical to a {@link java.util.WeakHashMap} where
* it also cleans up the reference queue on every read operation ({@link #get(Object)}, {@link
* #containsKey(Object)}, {@link #size()}, {@link #valueIterator()}), freeing map entries of
* already GCed keys.
*
- {@code reapOnRead = false}: This mode does not call {@link #reap()} on every read
* operation. In this case, the reference queue is only cleaned up on write operations (like
* {@link #put(Object, Object)}). This is ideal for maps with few entries where the keys are
* unlikely be garbage collected, but there are lots of {@link #get(Object)} operations. The
* code can still call {@link #reap()} to manually clean up the queue without doing a write
* operation.
*
*
* @lucene.internal
*/
public final class WeakIdentityMap {
private final ReferenceQueue