jdk/src/share/classes/java/util/WeakHashMap.java
author naoto
Thu, 14 Mar 2013 11:29:16 -0700
changeset 16481 8e30386cc014
parent 14342 8435a30053c1
child 17168 b7d3500f2516
permissions -rw-r--r--
8008576: Calendar mismatch using Host LocaleProviderAdapter Reviewed-by: okutsu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 13018
diff changeset
     2
 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.lang.ref.WeakReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.ref.ReferenceQueue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
56
48451b4616e8 5080227: (coll spec) Bug in documentation for WeakHashMap
martin
parents: 2
diff changeset
    32
 * Hash table based implementation of the <tt>Map</tt> interface, with
48451b4616e8 5080227: (coll spec) Bug in documentation for WeakHashMap
martin
parents: 2
diff changeset
    33
 * <em>weak keys</em>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * An entry in a <tt>WeakHashMap</tt> will automatically be removed when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * its key is no longer in ordinary use.  More precisely, the presence of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * mapping for a given key will not prevent the key from being discarded by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * garbage collector, that is, made finalizable, finalized, and then reclaimed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * When a key has been discarded its entry is effectively removed from the map,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * so this class behaves somewhat differently from other <tt>Map</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p> Both null values and the null key are supported. This class has
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * performance characteristics similar to those of the <tt>HashMap</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * class, and has the same efficiency parameters of <em>initial capacity</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * and <em>load factor</em>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p> Like most collection classes, this class is not synchronized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * A synchronized <tt>WeakHashMap</tt> may be constructed using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * {@link Collections#synchronizedMap Collections.synchronizedMap}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <p> This class is intended primarily for use with key objects whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <tt>equals</tt> methods test for object identity using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <tt>==</tt> operator.  Once such a key is discarded it can never be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * recreated, so it is impossible to do a lookup of that key in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <tt>WeakHashMap</tt> at some later time and be surprised that its entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * has been removed.  This class will work perfectly well with key objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * whose <tt>equals</tt> methods are not based upon object identity, such
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * as <tt>String</tt> instances.  With such recreatable key objects,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * however, the automatic removal of <tt>WeakHashMap</tt> entries whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * keys have been discarded may prove to be confusing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p> The behavior of the <tt>WeakHashMap</tt> class depends in part upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * the actions of the garbage collector, so several familiar (though not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * required) <tt>Map</tt> invariants do not hold for this class.  Because
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * the garbage collector may discard keys at any time, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * <tt>WeakHashMap</tt> may behave as though an unknown thread is silently
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * removing entries.  In particular, even if you synchronize on a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <tt>WeakHashMap</tt> instance and invoke none of its mutator methods, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * is possible for the <tt>size</tt> method to return smaller values over
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * time, for the <tt>isEmpty</tt> method to return <tt>false</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * then <tt>true</tt>, for the <tt>containsKey</tt> method to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * <tt>true</tt> and later <tt>false</tt> for a given key, for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <tt>get</tt> method to return a value for a given key but later return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <tt>null</tt>, for the <tt>put</tt> method to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * <tt>null</tt> and the <tt>remove</tt> method to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * <tt>false</tt> for a key that previously appeared to be in the map, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * for successive examinations of the key set, the value collection, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * the entry set to yield successively smaller numbers of elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <p> Each key object in a <tt>WeakHashMap</tt> is stored indirectly as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * the referent of a weak reference.  Therefore a key will automatically be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * removed only after the weak references to it, both inside and outside of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * map, have been cleared by the garbage collector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * <p> <strong>Implementation note:</strong> The value objects in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <tt>WeakHashMap</tt> are held by ordinary strong references.  Thus care
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * should be taken to ensure that value objects do not strongly refer to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * own keys, either directly or indirectly, since that will prevent the keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * from being discarded.  Note that a value object may refer indirectly to its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * key via the <tt>WeakHashMap</tt> itself; that is, a value object may
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * strongly refer to some other key object whose associated value object, in
12864
c404d4a709de 7166055: Javadoc for WeakHashMap contains misleading advice
littlee
parents: 12859
diff changeset
    93
 * turn, strongly refers to the key of the first value object.  If the values
c404d4a709de 7166055: Javadoc for WeakHashMap contains misleading advice
littlee
parents: 12859
diff changeset
    94
 * in the map do not rely on the map holding strong references to them, one way
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * to deal with this is to wrap values themselves within
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * <tt>WeakReferences</tt> before
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * inserting, as in: <tt>m.put(key, new WeakReference(value))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * and then unwrapping upon each <tt>get</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * <p>The iterators returned by the <tt>iterator</tt> method of the collections
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * returned by all of this class's "collection view methods" are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * <i>fail-fast</i>: if the map is structurally modified at any time after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * iterator is created, in any way except through the iterator's own
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <tt>remove</tt> method, the iterator will throw a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * ConcurrentModificationException}.  Thus, in the face of concurrent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * modification, the iterator fails quickly and cleanly, rather than risking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * arbitrary, non-deterministic behavior at an undetermined time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * exception for its correctness:  <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * <p>This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * @param <K> the type of keys maintained by this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * @param <V> the type of mapped values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * @author      Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * @author      Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * @author      Mark Reinhold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @since       1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * @see         java.util.HashMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * @see         java.lang.ref.WeakReference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
public class WeakHashMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    extends AbstractMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    implements Map<K,V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * The default initial capacity -- MUST be a power of two.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    private static final int DEFAULT_INITIAL_CAPACITY = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * The maximum capacity, used if a higher value is implicitly specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * by either of the constructors with arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * MUST be a power of two <= 1<<30.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    private static final int MAXIMUM_CAPACITY = 1 << 30;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * The load factor used when none specified in constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    private static final float DEFAULT_LOAD_FACTOR = 0.75f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * The table, resized as necessary. Length MUST Always be a power of two.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    Entry<K,V>[] table;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * The number of key-value mappings contained in this weak hash map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    private int size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * The next size value at which to resize (capacity * load factor).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    private int threshold;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * The load factor for the hash table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    private final float loadFactor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Reference queue for cleared WeakEntries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   175
    private final ReferenceQueue<Object> queue = new ReferenceQueue<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * The number of times this WeakHashMap has been structurally modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * Structural modifications are those that change the number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * mappings in the map or otherwise modify its internal structure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * (e.g., rehash).  This field is used to make iterators on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * Collection-views of the map fail-fast.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @see ConcurrentModificationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
65
51fc1d79463f 6625725: (coll) modCount should not be volatile
martin
parents: 56
diff changeset
   186
    int modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   188
    /**
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   189
     * A randomizing value associated with this instance that is applied to
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   190
     * hash code of keys to make hash collisions harder to find.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   191
     */
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   192
    transient final int hashSeed = sun.misc.Hashing.randomHashSeed(this);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   193
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    private Entry<K,V>[] newTable(int n) {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 9035
diff changeset
   196
        return (Entry<K,V>[]) new Entry<?,?>[n];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Constructs a new, empty <tt>WeakHashMap</tt> with the given initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * capacity and the given load factor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * @param  initialCapacity The initial capacity of the <tt>WeakHashMap</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param  loadFactor      The load factor of the <tt>WeakHashMap</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @throws IllegalArgumentException if the initial capacity is negative,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *         or if the load factor is nonpositive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    public WeakHashMap(int initialCapacity, float loadFactor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        if (initialCapacity < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            throw new IllegalArgumentException("Illegal Initial Capacity: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                                               initialCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        if (initialCapacity > MAXIMUM_CAPACITY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            initialCapacity = MAXIMUM_CAPACITY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        if (loadFactor <= 0 || Float.isNaN(loadFactor))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            throw new IllegalArgumentException("Illegal Load factor: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                                               loadFactor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        int capacity = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        while (capacity < initialCapacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            capacity <<= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        table = newTable(capacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        this.loadFactor = loadFactor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        threshold = (int)(capacity * loadFactor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * Constructs a new, empty <tt>WeakHashMap</tt> with the given initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * capacity and the default load factor (0.75).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @param  initialCapacity The initial capacity of the <tt>WeakHashMap</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @throws IllegalArgumentException if the initial capacity is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    public WeakHashMap(int initialCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        this(initialCapacity, DEFAULT_LOAD_FACTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * Constructs a new, empty <tt>WeakHashMap</tt> with the default initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * capacity (16) and load factor (0.75).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    public WeakHashMap() {
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   242
        this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Constructs a new <tt>WeakHashMap</tt> with the same mappings as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * specified map.  The <tt>WeakHashMap</tt> is created with the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * load factor (0.75) and an initial capacity sufficient to hold the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * mappings in the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @param   m the map whose mappings are to be placed in this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @throws  NullPointerException if the specified map is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * @since   1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    public WeakHashMap(Map<? extends K, ? extends V> m) {
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   256
        this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1,
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   257
                DEFAULT_INITIAL_CAPACITY),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
             DEFAULT_LOAD_FACTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        putAll(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    // internal utilities
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * Value representing null keys inside tables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    private static final Object NULL_KEY = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * Use NULL_KEY for key if it is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    private static Object maskNull(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        return (key == null) ? NULL_KEY : key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * Returns internal representation of null key back to caller as null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    static Object unmaskNull(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        return (key == NULL_KEY) ? null : key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * Checks for equality of non-null reference x and possibly-null y.  By
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * default uses Object.equals.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    private static boolean eq(Object x, Object y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        return x == y || x.equals(y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    /**
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   292
     * Retrieve object hash code and applies a supplemental hash function to the
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   293
     * result hash, which defends against poor quality hash functions.  This is
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   294
     * critical because HashMap uses power-of-two length hash tables, that
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   295
     * otherwise encounter collisions for hashCodes that do not differ
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   296
     * in lower bits.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   297
     */
13018
92c86cea72a8 7173919: Minor optimization of hashing methods
mduigou
parents: 12864
diff changeset
   298
    final int hash(Object k) {
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   299
        if (k instanceof String) {
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   300
            return ((String) k).hash32();
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   301
        }
13018
92c86cea72a8 7173919: Minor optimization of hashing methods
mduigou
parents: 12864
diff changeset
   302
        int  h = hashSeed ^ k.hashCode();
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   303
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   304
        // This function ensures that hashCodes that differ only by
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   305
        // constant multiples at each bit position have a bounded
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   306
        // number of collisions (approximately 8 at default load factor).
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   307
        h ^= (h >>> 20) ^ (h >>> 12);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   308
        return h ^ (h >>> 7) ^ (h >>> 4);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   309
    }
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   310
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   311
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * Returns index for hash code h.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    private static int indexFor(int h, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        return h & (length-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Expunges stale entries from the table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    private void expungeStaleEntries() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        for (Object x; (x = queue.poll()) != null; ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            synchronized (queue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                    Entry<K,V> e = (Entry<K,V>) x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                int i = indexFor(e.hash, table.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                Entry<K,V> prev = table[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                Entry<K,V> p = prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                while (p != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                    Entry<K,V> next = p.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                    if (p == e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                        if (prev == e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                            table[i] = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                            prev.next = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                        // Must not null out e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                        // stale entries may be in use by a HashIterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                        e.value = null; // Help GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                        size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                    prev = p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                    p = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Returns the table after first expunging stale entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    private Entry<K,V>[] getTable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        expungeStaleEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        return table;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * Returns the number of key-value mappings in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * This result is a snapshot, and may not reflect unprocessed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * entries that will be removed before next attempted access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * because they are no longer referenced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        if (size == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        expungeStaleEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * Returns <tt>true</tt> if this map contains no key-value mappings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * This result is a snapshot, and may not reflect unprocessed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * entries that will be removed before next attempted access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * because they are no longer referenced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        return size() == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * Returns the value to which the specified key is mapped,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * or {@code null} if this map contains no mapping for the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * <p>More formally, if this map contains a mapping from a key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * {@code k} to a value {@code v} such that {@code (key==null ? k==null :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * key.equals(k))}, then this method returns {@code v}; otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * it returns {@code null}.  (There can be at most one such mapping.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * <p>A return value of {@code null} does not <i>necessarily</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * indicate that the map contains no mapping for the key; it's also
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * possible that the map explicitly maps the key to {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * The {@link #containsKey containsKey} operation may be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * distinguish these two cases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @see #put(Object, Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public V get(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   400
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        int index = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        Entry<K,V> e = tab[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            if (e.hash == h && eq(k, e.get()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                return e.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            e = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * Returns <tt>true</tt> if this map contains a mapping for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * @param  key   The key whose presence in this map is to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * @return <tt>true</tt> if there is a mapping for <tt>key</tt>;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     *         <tt>false</tt> otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    public boolean containsKey(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        return getEntry(key) != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * Returns the entry associated with the specified key in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Returns null if the map contains no mapping for this key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    Entry<K,V> getEntry(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   430
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        int index = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        Entry<K,V> e = tab[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        while (e != null && !(e.hash == h && eq(k, e.get())))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            e = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * Associates the specified value with the specified key in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * If the map previously contained a mapping for this key, the old
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * value is replaced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * @param key key with which the specified value is to be associated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * @param value value to be associated with the specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * @return the previous value associated with <tt>key</tt>, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     *         <tt>null</tt> if there was no mapping for <tt>key</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     *         (A <tt>null</tt> return can also indicate that the map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     *         previously associated <tt>null</tt> with <tt>key</tt>.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    public V put(K key, V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   453
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        int i = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        for (Entry<K,V> e = tab[i]; e != null; e = e.next) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            if (h == e.hash && eq(k, e.get())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                V oldValue = e.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                if (value != oldValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                    e.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        Entry<K,V> e = tab[i];
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   468
        tab[i] = new Entry<>(k, value, queue, h, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        if (++size >= threshold)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            resize(tab.length * 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * Rehashes the contents of this map into a new array with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * larger capacity.  This method is called automatically when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * number of keys in this map reaches its threshold.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * If current capacity is MAXIMUM_CAPACITY, this method does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * resize the map, but sets threshold to Integer.MAX_VALUE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * This has the effect of preventing future calls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * @param newCapacity the new capacity, MUST be a power of two;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     *        must be greater than current capacity unless current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     *        capacity is MAXIMUM_CAPACITY (in which case value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     *        is irrelevant).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    void resize(int newCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        Entry<K,V>[] oldTable = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        int oldCapacity = oldTable.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        if (oldCapacity == MAXIMUM_CAPACITY) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            threshold = Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        Entry<K,V>[] newTable = newTable(newCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        transfer(oldTable, newTable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        table = newTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
         * If ignoring null elements and processing ref queue caused massive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
         * shrinkage, then restore old table.  This should be rare, but avoids
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
         * unbounded expansion of garbage-filled tables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        if (size >= threshold / 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            threshold = (int)(newCapacity * loadFactor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            expungeStaleEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            transfer(newTable, oldTable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            table = oldTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    /** Transfers all entries from src to dest tables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    private void transfer(Entry<K,V>[] src, Entry<K,V>[] dest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        for (int j = 0; j < src.length; ++j) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
            Entry<K,V> e = src[j];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
            src[j] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                Entry<K,V> next = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                Object key = e.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                    e.next = null;  // Help GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                    e.value = null; //  "   "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                    size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                    int i = indexFor(e.hash, dest.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                    e.next = dest[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                    dest[i] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                e = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * Copies all of the mappings from the specified map to this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * These mappings will replace any mappings that this map had for any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * of the keys currently in the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * @param m mappings to be stored in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * @throws  NullPointerException if the specified map is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public void putAll(Map<? extends K, ? extends V> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        int numKeysToBeAdded = m.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        if (numKeysToBeAdded == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
         * Expand the map if the map if the number of mappings to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
         * is greater than or equal to threshold.  This is conservative; the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
         * obvious condition is (m.size() + size) >= threshold, but this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
         * condition could result in a map with twice the appropriate capacity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
         * if the keys to be added overlap with the keys already in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
         * By using the conservative calculation, we subject ourself
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
         * to at most one extra resize.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        if (numKeysToBeAdded > threshold) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            if (targetCapacity > MAXIMUM_CAPACITY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                targetCapacity = MAXIMUM_CAPACITY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            int newCapacity = table.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            while (newCapacity < targetCapacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                newCapacity <<= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            if (newCapacity > table.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                resize(newCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        for (Map.Entry<? extends K, ? extends V> e : m.entrySet())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
            put(e.getKey(), e.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * Removes the mapping for a key from this weak hash map if it is present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * More formally, if this map contains a mapping from key <tt>k</tt> to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * value <tt>v</tt> such that <code>(key==null ?  k==null :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * key.equals(k))</code>, that mapping is removed.  (The map can contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * at most one such mapping.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * <p>Returns the value to which this map previously associated the key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * or <tt>null</tt> if the map contained no mapping for the key.  A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * return value of <tt>null</tt> does not <i>necessarily</i> indicate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * that the map contained no mapping for the key; it's also possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * that the map explicitly mapped the key to <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * <p>The map will not contain a mapping for the specified key once the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * @param key key whose mapping is to be removed from the map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * @return the previous value associated with <tt>key</tt>, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *         <tt>null</tt> if there was no mapping for <tt>key</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    public V remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   595
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        int i = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        Entry<K,V> prev = tab[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        Entry<K,V> e = prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            Entry<K,V> next = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            if (h == e.hash && eq(k, e.get())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                if (prev == e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                    tab[i] = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                    prev.next = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                return e.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            e = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    /** Special version of remove needed by Entry set */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    boolean removeMapping(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        Map.Entry<?,?> entry = (Map.Entry<?,?>)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        Object k = maskNull(entry.getKey());
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   626
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        int i = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        Entry<K,V> prev = tab[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        Entry<K,V> e = prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            Entry<K,V> next = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
            if (h == e.hash && e.equals(entry)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                if (prev == e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                    tab[i] = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                    prev.next = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
            e = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * Removes all of the mappings from this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * The map will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        // clear out ref queue. We don't need to expunge entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        // since table is getting cleared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        while (queue.poll() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        Arrays.fill(table, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        // Allocation of array may have caused GC, which may have caused
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        // additional entries to go stale.  Removing these entries from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        // reference queue will make them eligible for reclamation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        while (queue.poll() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * Returns <tt>true</tt> if this map maps one or more keys to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * specified value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * @param value value whose presence in this map is to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * @return <tt>true</tt> if this map maps one or more keys to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     *         specified value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    public boolean containsValue(Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        if (value==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
            return containsNullValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        for (int i = tab.length; i-- > 0;)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
            for (Entry<K,V> e = tab[i]; e != null; e = e.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                if (value.equals(e.value))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * Special-case code for containsValue with null argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    private boolean containsNullValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        for (int i = tab.length; i-- > 0;)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
            for (Entry<K,V> e = tab[i]; e != null; e = e.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                if (e.value==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * The entries in this hash table extend WeakReference, using its main ref
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * field as the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    private static class Entry<K,V> extends WeakReference<Object> implements Map.Entry<K,V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        V value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        final int hash;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        Entry<K,V> next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
         * Creates new entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        Entry(Object key, V value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
              ReferenceQueue<Object> queue,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
              int hash, Entry<K,V> next) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            super(key, queue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
            this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            this.hash  = hash;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
            this.next  = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        public K getKey() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            return (K) WeakHashMap.unmaskNull(get());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        public V getValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        public V setValue(V newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
            V oldValue = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
            value = newValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
            Map.Entry<?,?> e = (Map.Entry<?,?>)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
            K k1 = getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
            Object k2 = e.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
            if (k1 == k2 || (k1 != null && k1.equals(k2))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                V v1 = getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
                Object v2 = e.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
                if (v1 == v2 || (v1 != null && v1.equals(v2)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            K k = getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
            V v = getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            return ((k==null ? 0 : k.hashCode()) ^
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                    (v==null ? 0 : v.hashCode()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
            return getKey() + "=" + getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    private abstract class HashIterator<T> implements Iterator<T> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        private int index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        private Entry<K,V> entry = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        private Entry<K,V> lastReturned = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        private int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
         * Strong reference needed to avoid disappearance of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
         * between hasNext and next
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        private Object nextKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
         * Strong reference needed to avoid disappearance of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
         * between nextEntry() and any use of the entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        private Object currentKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        HashIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            index = isEmpty() ? 0 : table.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            Entry<K,V>[] t = table;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
            while (nextKey == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                Entry<K,V> e = entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                int i = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
                while (e == null && i > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                    e = t[--i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                entry = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
                index = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                if (e == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                    currentKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
                nextKey = e.get(); // hold on to key in strong ref
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                if (nextKey == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                    entry = entry.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        /** The common parts of next() across different types of iterators */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
        protected Entry<K,V> nextEntry() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            if (nextKey == null && !hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
            lastReturned = entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
            entry = entry.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
            currentKey = nextKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            nextKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            return lastReturned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            if (lastReturned == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            WeakHashMap.this.remove(currentKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            lastReturned = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
            currentKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    private class ValueIterator extends HashIterator<V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
        public V next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
            return nextEntry().value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    private class KeyIterator extends HashIterator<K> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        public K next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            return nextEntry().getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    private class EntryIterator extends HashIterator<Map.Entry<K,V>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        public Map.Entry<K,V> next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            return nextEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    // Views
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    private transient Set<Map.Entry<K,V>> entrySet = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
     * Returns a {@link Set} view of the keys contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * reflected in the set, and vice-versa.  If the map is modified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * while an iteration over the set is in progress (except through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * the iterator's own <tt>remove</tt> operation), the results of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * the iteration are undefined.  The set supports element removal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * which removes the corresponding mapping from the map, via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * <tt>Iterator.remove</tt>, <tt>Set.remove</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     * <tt>removeAll</tt>, <tt>retainAll</tt>, and <tt>clear</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * operations.  It does not support the <tt>add</tt> or <tt>addAll</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     * operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    public Set<K> keySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        Set<K> ks = keySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        return (ks != null ? ks : (keySet = new KeySet()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    private class KeySet extends AbstractSet<K> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        public Iterator<K> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
            return new KeyIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            return WeakHashMap.this.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            return containsKey(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
        public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            if (containsKey(o)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                WeakHashMap.this.remove(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
            WeakHashMap.this.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     * Returns a {@link Collection} view of the values contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     * The collection is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
     * reflected in the collection, and vice-versa.  If the map is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     * modified while an iteration over the collection is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     * (except through the iterator's own <tt>remove</tt> operation),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     * the results of the iteration are undefined.  The collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * supports element removal, which removes the corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * mapping from the map, via the <tt>Iterator.remove</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     * <tt>Collection.remove</tt>, <tt>removeAll</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * <tt>retainAll</tt> and <tt>clear</tt> operations.  It does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     * support the <tt>add</tt> or <tt>addAll</tt> operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
    public Collection<V> values() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
        Collection<V> vs = values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        return (vs != null) ? vs : (values = new Values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    private class Values extends AbstractCollection<V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        public Iterator<V> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
            return new ValueIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
            return WeakHashMap.this.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            return containsValue(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
            WeakHashMap.this.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * Returns a {@link Set} view of the mappings contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     * reflected in the set, and vice-versa.  If the map is modified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * while an iteration over the set is in progress (except through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * the iterator's own <tt>remove</tt> operation, or through the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * <tt>setValue</tt> operation on a map entry returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * iterator) the results of the iteration are undefined.  The set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * supports element removal, which removes the corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     * mapping from the map, via the <tt>Iterator.remove</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     * <tt>Set.remove</tt>, <tt>removeAll</tt>, <tt>retainAll</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * <tt>clear</tt> operations.  It does not support the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     * <tt>add</tt> or <tt>addAll</tt> operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
    public Set<Map.Entry<K,V>> entrySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        Set<Map.Entry<K,V>> es = entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        return es != null ? es : (entrySet = new EntrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
    private class EntrySet extends AbstractSet<Map.Entry<K,V>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        public Iterator<Map.Entry<K,V>> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            return new EntryIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
            if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
            Map.Entry<?,?> e = (Map.Entry<?,?>)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            Entry<K,V> candidate = getEntry(e.getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            return candidate != null && candidate.equals(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            return removeMapping(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
            return WeakHashMap.this.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            WeakHashMap.this.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        private List<Map.Entry<K,V>> deepCopy() {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   984
            List<Map.Entry<K,V>> list = new ArrayList<>(size());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
            for (Map.Entry<K,V> e : this)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   986
                list.add(new AbstractMap.SimpleEntry<>(e));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            return list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
            return deepCopy().toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
            return deepCopy().toArray(a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
}