src/java.base/share/classes/java/util/WeakHashMap.java
author igerasim
Mon, 23 Jul 2018 22:07:55 -0700
changeset 51187 e55d46250431
parent 49433 b6671a111395
permissions -rw-r--r--
8207314: Unnecessary reallocation when constructing WeakHashMap from a large Map Reviewed-by: martin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2018, 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;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
    27
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.ref.WeakReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.ref.ReferenceQueue;
18166
a24e00a7c5ae 8010325: Remove hash32() method and hash32 int field from java.lang.String
bchristi
parents: 17949
diff changeset
    30
import java.util.concurrent.ThreadLocalRandom;
18280
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
    31
import java.util.function.BiConsumer;
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
    32
import java.util.function.BiFunction;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
    33
import java.util.function.Consumer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    37
 * Hash table based implementation of the {@code Map} interface, with
56
48451b4616e8 5080227: (coll spec) Bug in documentation for WeakHashMap
martin
parents: 2
diff changeset
    38
 * <em>weak keys</em>.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    39
 * An entry in a {@code WeakHashMap} will automatically be removed when
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * its key is no longer in ordinary use.  More precisely, the presence of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * mapping for a given key will not prevent the key from being discarded by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * garbage collector, that is, made finalizable, finalized, and then reclaimed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * When a key has been discarded its entry is effectively removed from the map,
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    44
 * so this class behaves somewhat differently from other {@code Map}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p> Both null values and the null key are supported. This class has
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    48
 * performance characteristics similar to those of the {@code HashMap}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * class, and has the same efficiency parameters of <em>initial capacity</em>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * and <em>load factor</em>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <p> Like most collection classes, this class is not synchronized.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    53
 * A synchronized {@code WeakHashMap} may be constructed using the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * {@link Collections#synchronizedMap Collections.synchronizedMap}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <p> This class is intended primarily for use with key objects whose
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    58
 * {@code equals} methods test for object identity using the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    59
 * {@code ==} operator.  Once such a key is discarded it can never be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * recreated, so it is impossible to do a lookup of that key in a
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    61
 * {@code WeakHashMap} at some later time and be surprised that its entry
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * has been removed.  This class will work perfectly well with key objects
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    63
 * whose {@code equals} methods are not based upon object identity, such
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    64
 * as {@code String} instances.  With such recreatable key objects,
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    65
 * however, the automatic removal of {@code WeakHashMap} entries whose
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * keys have been discarded may prove to be confusing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    68
 * <p> The behavior of the {@code WeakHashMap} class depends in part upon
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * the actions of the garbage collector, so several familiar (though not
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    70
 * required) {@code Map} invariants do not hold for this class.  Because
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * the garbage collector may discard keys at any time, a
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    72
 * {@code WeakHashMap} may behave as though an unknown thread is silently
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * removing entries.  In particular, even if you synchronize on a
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    74
 * {@code WeakHashMap} instance and invoke none of its mutator methods, it
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    75
 * is possible for the {@code size} method to return smaller values over
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    76
 * time, for the {@code isEmpty} method to return {@code false} and
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    77
 * then {@code true}, for the {@code containsKey} method to return
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    78
 * {@code true} and later {@code false} for a given key, for the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    79
 * {@code get} method to return a value for a given key but later return
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    80
 * {@code null}, for the {@code put} method to return
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    81
 * {@code null} and the {@code remove} method to return
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    82
 * {@code false} for a key that previously appeared to be in the map, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * for successive examinations of the key set, the value collection, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * the entry set to yield successively smaller numbers of elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    86
 * <p> Each key object in a {@code WeakHashMap} is stored indirectly as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * the referent of a weak reference.  Therefore a key will automatically be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * removed only after the weak references to it, both inside and outside of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * map, have been cleared by the garbage collector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * <p> <strong>Implementation note:</strong> The value objects in a
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    92
 * {@code WeakHashMap} are held by ordinary strong references.  Thus care
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * should be taken to ensure that value objects do not strongly refer to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * own keys, either directly or indirectly, since that will prevent the keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * from being discarded.  Note that a value object may refer indirectly to its
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    96
 * key via the {@code WeakHashMap} itself; that is, a value object may
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * 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
    98
 * 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
    99
 * in the map do not rely on the map holding strong references to them, one way
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * to deal with this is to wrap values themselves within
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   101
 * {@code WeakReferences} before
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   102
 * inserting, as in: {@code m.put(key, new WeakReference(value))},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   103
 * and then unwrapping upon each {@code get}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   105
 * <p>The iterators returned by the {@code iterator} method of the collections
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * returned by all of this class's "collection view methods" are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <i>fail-fast</i>: if the map is structurally modified at any time after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * iterator is created, in any way except through the iterator's own
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   109
 * {@code remove} method, the iterator will throw a {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * ConcurrentModificationException}.  Thus, in the face of concurrent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * modification, the iterator fails quickly and cleanly, rather than risking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * arbitrary, non-deterministic behavior at an undetermined time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   117
 * throw {@code ConcurrentModificationException} on a best-effort basis.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * exception for its correctness:  <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * <p>This class is a member of the
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 47216
diff changeset
   123
 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * @param <K> the type of keys maintained by this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @param <V> the type of mapped values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * @author      Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * @author      Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * @author      Mark Reinhold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * @since       1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * @see         java.util.HashMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * @see         java.lang.ref.WeakReference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
public class WeakHashMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    extends AbstractMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    implements Map<K,V> {
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 default initial capacity -- MUST be a power of two.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    private static final int DEFAULT_INITIAL_CAPACITY = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * The maximum capacity, used if a higher value is implicitly specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * by either of the constructors with arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * MUST be a power of two <= 1<<30.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    private static final int MAXIMUM_CAPACITY = 1 << 30;
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 load factor used when none specified in constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    private static final float DEFAULT_LOAD_FACTOR = 0.75f;
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 table, resized as necessary. Length MUST Always be a power of two.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    Entry<K,V>[] table;
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 number of key-value mappings contained in this weak hash map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    private int size;
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 next size value at which to resize (capacity * load factor).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    private int threshold;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * The load factor for the hash table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    private final float loadFactor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * Reference queue for cleared WeakEntries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     */
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   180
    private final ReferenceQueue<Object> queue = new ReferenceQueue<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * The number of times this WeakHashMap has been structurally modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Structural modifications are those that change the number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * mappings in the map or otherwise modify its internal structure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * (e.g., rehash).  This field is used to make iterators on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Collection-views of the map fail-fast.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @see ConcurrentModificationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     */
65
51fc1d79463f 6625725: (coll) modCount should not be volatile
martin
parents: 56
diff changeset
   191
    int modCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    private Entry<K,V>[] newTable(int n) {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 9035
diff changeset
   195
        return (Entry<K,V>[]) new Entry<?,?>[n];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   199
     * Constructs a new, empty {@code WeakHashMap} with the given initial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * capacity and the given load factor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   202
     * @param  initialCapacity The initial capacity of the {@code WeakHashMap}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   203
     * @param  loadFactor      The load factor of the {@code WeakHashMap}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @throws IllegalArgumentException if the initial capacity is negative,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     *         or if the load factor is nonpositive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    public WeakHashMap(int initialCapacity, float loadFactor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        if (initialCapacity < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            throw new IllegalArgumentException("Illegal Initial Capacity: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                                               initialCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if (initialCapacity > MAXIMUM_CAPACITY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            initialCapacity = MAXIMUM_CAPACITY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        if (loadFactor <= 0 || Float.isNaN(loadFactor))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            throw new IllegalArgumentException("Illegal Load factor: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                                               loadFactor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        int capacity = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        while (capacity < initialCapacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            capacity <<= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        table = newTable(capacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        this.loadFactor = loadFactor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        threshold = (int)(capacity * loadFactor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   226
     * Constructs a new, empty {@code WeakHashMap} with the given initial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * capacity and the default load factor (0.75).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   229
     * @param  initialCapacity The initial capacity of the {@code WeakHashMap}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @throws IllegalArgumentException if the initial capacity is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    public WeakHashMap(int initialCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        this(initialCapacity, DEFAULT_LOAD_FACTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   237
     * Constructs a new, empty {@code WeakHashMap} with the default initial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * capacity (16) and load factor (0.75).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    public WeakHashMap() {
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   241
        this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   245
     * Constructs a new {@code WeakHashMap} with the same mappings as the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   246
     * specified map.  The {@code WeakHashMap} is created with the default
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * load factor (0.75) and an initial capacity sufficient to hold the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * mappings in the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @param   m the map whose mappings are to be placed in this map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @throws  NullPointerException if the specified map is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @since   1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    public WeakHashMap(Map<? extends K, ? extends V> m) {
51187
e55d46250431 8207314: Unnecessary reallocation when constructing WeakHashMap from a large Map
igerasim
parents: 49433
diff changeset
   255
        this(Math.max((int) ((float)m.size() / DEFAULT_LOAD_FACTOR + 1.0F),
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   256
                DEFAULT_INITIAL_CAPACITY),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
             DEFAULT_LOAD_FACTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        putAll(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    // internal utilities
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * Value representing null keys inside tables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    private static final Object NULL_KEY = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Use NULL_KEY for key if it is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    private static Object maskNull(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        return (key == null) ? NULL_KEY : key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * Returns internal representation of null key back to caller as null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    static Object unmaskNull(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        return (key == NULL_KEY) ? null : key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Checks for equality of non-null reference x and possibly-null y.  By
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * default uses Object.equals.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    private static boolean eq(Object x, Object y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        return x == y || x.equals(y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    /**
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   291
     * Retrieve object hash code and applies a supplemental hash function to the
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   292
     * result hash, which defends against poor quality hash functions.  This is
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   293
     * critical because HashMap uses power-of-two length hash tables, that
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   294
     * otherwise encounter collisions for hashCodes that do not differ
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   295
     * in lower bits.
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   296
     */
13018
92c86cea72a8 7173919: Minor optimization of hashing methods
mduigou
parents: 12864
diff changeset
   297
    final int hash(Object k) {
19853
832b09e2714c 8024009: Remove jdk.map.useRandomSeed system property
bchristi
parents: 19208
diff changeset
   298
        int h = k.hashCode();
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   299
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   300
        // This function ensures that hashCodes that differ only by
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   301
        // constant multiples at each bit position have a bounded
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   302
        // number of collisions (approximately 8 at default load factor).
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   303
        h ^= (h >>> 20) ^ (h >>> 12);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   304
        return h ^ (h >>> 7) ^ (h >>> 4);
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   305
    }
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   306
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   307
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * Returns index for hash code h.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    private static int indexFor(int h, int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        return h & (length-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * Expunges stale entries from the table.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    private void expungeStaleEntries() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        for (Object x; (x = queue.poll()) != null; ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            synchronized (queue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                    Entry<K,V> e = (Entry<K,V>) x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                int i = indexFor(e.hash, table.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                Entry<K,V> prev = table[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                Entry<K,V> p = prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                while (p != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                    Entry<K,V> next = p.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                    if (p == e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                        if (prev == e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                            table[i] = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                            prev.next = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                        // Must not null out e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                        // stale entries may be in use by a HashIterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                        e.value = null; // Help GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                        size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                    prev = p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    p = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * Returns the table after first expunging stale entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    private Entry<K,V>[] getTable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        expungeStaleEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        return table;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * Returns the number of key-value mappings in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * This result is a snapshot, and may not reflect unprocessed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * entries that will be removed before next attempted access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * because they are no longer referenced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        if (size == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        expungeStaleEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   368
     * Returns {@code true} if this map contains no key-value mappings.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * This result is a snapshot, and may not reflect unprocessed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * entries that will be removed before next attempted access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * because they are no longer referenced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        return size() == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * Returns the value to which the specified key is mapped,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * or {@code null} if this map contains no mapping for the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * <p>More formally, if this map contains a mapping from a key
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   382
     * {@code k} to a value {@code v} such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   383
     * {@code Objects.equals(key, k)},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   384
     * then this method returns {@code v}; otherwise
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * it returns {@code null}.  (There can be at most one such mapping.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * <p>A return value of {@code null} does not <i>necessarily</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * indicate that the map contains no mapping for the key; it's also
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * possible that the map explicitly maps the key to {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * The {@link #containsKey containsKey} operation may be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * distinguish these two cases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @see #put(Object, Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    public V get(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   397
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        int index = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        Entry<K,V> e = tab[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            if (e.hash == h && eq(k, e.get()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                return e.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            e = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   410
     * Returns {@code true} if this map contains a mapping for the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * @param  key   The key whose presence in this map is to be tested
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   414
     * @return {@code true} if there is a mapping for {@code key};
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   415
     *         {@code false} otherwise
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    public boolean containsKey(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        return getEntry(key) != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * Returns the entry associated with the specified key in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * Returns null if the map contains no mapping for this key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    Entry<K,V> getEntry(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   427
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        int index = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        Entry<K,V> e = tab[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        while (e != null && !(e.hash == h && eq(k, e.get())))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            e = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * Associates the specified value with the specified key in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * If the map previously contained a mapping for this key, the old
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * value is replaced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @param key key with which the specified value is to be associated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @param value value to be associated with the specified key.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   443
     * @return the previous value associated with {@code key}, or
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   444
     *         {@code null} if there was no mapping for {@code key}.
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   445
     *         (A {@code null} return can also indicate that the map
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   446
     *         previously associated {@code null} with {@code key}.)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    public V put(K key, V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   450
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        int i = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        for (Entry<K,V> e = tab[i]; e != null; e = e.next) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
            if (h == e.hash && eq(k, e.get())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                V oldValue = e.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                if (value != oldValue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                    e.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        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
   465
        tab[i] = new Entry<>(k, value, queue, h, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        if (++size >= threshold)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            resize(tab.length * 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * Rehashes the contents of this map into a new array with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * larger capacity.  This method is called automatically when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * number of keys in this map reaches its threshold.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * If current capacity is MAXIMUM_CAPACITY, this method does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * resize the map, but sets threshold to Integer.MAX_VALUE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * This has the effect of preventing future calls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * @param newCapacity the new capacity, MUST be a power of two;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     *        must be greater than current capacity unless current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     *        capacity is MAXIMUM_CAPACITY (in which case value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     *        is irrelevant).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    void resize(int newCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        Entry<K,V>[] oldTable = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        int oldCapacity = oldTable.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        if (oldCapacity == MAXIMUM_CAPACITY) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            threshold = Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        Entry<K,V>[] newTable = newTable(newCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        transfer(oldTable, newTable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        table = newTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
         * If ignoring null elements and processing ref queue caused massive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
         * shrinkage, then restore old table.  This should be rare, but avoids
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
         * unbounded expansion of garbage-filled tables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        if (size >= threshold / 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            threshold = (int)(newCapacity * loadFactor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            expungeStaleEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            transfer(newTable, oldTable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            table = oldTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    /** Transfers all entries from src to dest tables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    private void transfer(Entry<K,V>[] src, Entry<K,V>[] dest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        for (int j = 0; j < src.length; ++j) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            Entry<K,V> e = src[j];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            src[j] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
            while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                Entry<K,V> next = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                Object key = e.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                    e.next = null;  // Help GC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                    e.value = null; //  "   "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                    size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                    int i = indexFor(e.hash, dest.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                    e.next = dest[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                    dest[i] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                e = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * Copies all of the mappings from the specified map to this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * These mappings will replace any mappings that this map had for any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * of the keys currently in the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * @param m mappings to be stored in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * @throws  NullPointerException if the specified map is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    public void putAll(Map<? extends K, ? extends V> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        int numKeysToBeAdded = m.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        if (numKeysToBeAdded == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
         * Expand the map if the map if the number of mappings to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
         * is greater than or equal to threshold.  This is conservative; the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
         * obvious condition is (m.size() + size) >= threshold, but this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
         * condition could result in a map with twice the appropriate capacity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
         * if the keys to be added overlap with the keys already in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
         * By using the conservative calculation, we subject ourself
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
         * to at most one extra resize.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        if (numKeysToBeAdded > threshold) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            if (targetCapacity > MAXIMUM_CAPACITY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                targetCapacity = MAXIMUM_CAPACITY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            int newCapacity = table.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            while (newCapacity < targetCapacity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                newCapacity <<= 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            if (newCapacity > table.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                resize(newCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        for (Map.Entry<? extends K, ? extends V> e : m.entrySet())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
            put(e.getKey(), e.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * Removes the mapping for a key from this weak hash map if it is present.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   572
     * More formally, if this map contains a mapping from key {@code k} to
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   573
     * value {@code v} such that <code>(key==null ?  k==null :
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * key.equals(k))</code>, that mapping is removed.  (The map can contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * at most one such mapping.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * <p>Returns the value to which this map previously associated the key,
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   578
     * or {@code null} if the map contained no mapping for the key.  A
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   579
     * return value of {@code null} does not <i>necessarily</i> indicate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * that the map contained no mapping for the key; it's also possible
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   581
     * that the map explicitly mapped the key to {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * <p>The map will not contain a mapping for the specified key once the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * @param key key whose mapping is to be removed from the map
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   587
     * @return the previous value associated with {@code key}, or
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   588
     *         {@code null} if there was no mapping for {@code key}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    public V remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        Object k = maskNull(key);
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   592
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        int i = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        Entry<K,V> prev = tab[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        Entry<K,V> e = prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
            Entry<K,V> next = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            if (h == e.hash && eq(k, e.get())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                if (prev == e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    tab[i] = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                    prev.next = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                return e.value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
            e = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    /** Special version of remove needed by Entry set */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    boolean removeMapping(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        Map.Entry<?,?> entry = (Map.Entry<?,?>)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        Object k = maskNull(entry.getKey());
12859
c44b88bb9b5e 7126277: Alternative String hashing implementation
mduigou
parents: 12448
diff changeset
   623
        int h = hash(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        int i = indexFor(h, tab.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        Entry<K,V> prev = tab[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        Entry<K,V> e = prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        while (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            Entry<K,V> next = e.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
            if (h == e.hash && e.equals(entry)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                if (prev == e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                    tab[i] = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                    prev.next = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            prev = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            e = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * Removes all of the mappings from this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * The map will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        // clear out ref queue. We don't need to expunge entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        // since table is getting cleared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        while (queue.poll() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
        Arrays.fill(table, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        // Allocation of array may have caused GC, which may have caused
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        // additional entries to go stale.  Removing these entries from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        // reference queue will make them eligible for reclamation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        while (queue.poll() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
            ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   668
     * Returns {@code true} if this map maps one or more keys to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * specified value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * @param value value whose presence in this map is to be tested
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   672
     * @return {@code true} if this map maps one or more keys to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     *         specified value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    public boolean containsValue(Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        if (value==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            return containsNullValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        for (int i = tab.length; i-- > 0;)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
            for (Entry<K,V> e = tab[i]; e != null; e = e.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
                if (value.equals(e.value))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * Special-case code for containsValue with null argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    private boolean containsNullValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        Entry<K,V>[] tab = getTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        for (int i = tab.length; i-- > 0;)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
            for (Entry<K,V> e = tab[i]; e != null; e = e.next)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                if (e.value==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * The entries in this hash table extend WeakReference, using its main ref
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * field as the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    private static class Entry<K,V> extends WeakReference<Object> implements Map.Entry<K,V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        V value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        final int hash;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        Entry<K,V> next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
         * Creates new entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        Entry(Object key, V value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
              ReferenceQueue<Object> queue,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
              int hash, Entry<K,V> next) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
            super(key, queue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
            this.hash  = hash;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            this.next  = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        public K getKey() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
            return (K) WeakHashMap.unmaskNull(get());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        public V getValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
        public V setValue(V newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
            V oldValue = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            value = newValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            Map.Entry<?,?> e = (Map.Entry<?,?>)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            K k1 = getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
            Object k2 = e.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
            if (k1 == k2 || (k1 != null && k1.equals(k2))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                V v1 = getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                Object v2 = e.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                if (v1 == v2 || (v1 != null && v1.equals(v2)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            K k = getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            V v = getValue();
19853
832b09e2714c 8024009: Remove jdk.map.useRandomSeed system property
bchristi
parents: 19208
diff changeset
   753
            return Objects.hashCode(k) ^ Objects.hashCode(v);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            return getKey() + "=" + getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    private abstract class HashIterator<T> implements Iterator<T> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        private int index;
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22078
diff changeset
   763
        private Entry<K,V> entry;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22078
diff changeset
   764
        private Entry<K,V> lastReturned;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        private int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
         * Strong reference needed to avoid disappearance of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
         * between hasNext and next
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
         */
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22078
diff changeset
   771
        private Object nextKey;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
         * Strong reference needed to avoid disappearance of key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
         * between nextEntry() and any use of the entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
         */
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22078
diff changeset
   777
        private Object currentKey;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        HashIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
            index = isEmpty() ? 0 : table.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            Entry<K,V>[] t = table;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
            while (nextKey == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                Entry<K,V> e = entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
                int i = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                while (e == null && i > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                    e = t[--i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                entry = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                index = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
                if (e == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                    currentKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                nextKey = e.get(); // hold on to key in strong ref
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                if (nextKey == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                    entry = entry.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        /** The common parts of next() across different types of iterators */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
        protected Entry<K,V> nextEntry() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
            if (nextKey == null && !hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
            lastReturned = entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            entry = entry.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
            currentKey = nextKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
            nextKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
            return lastReturned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            if (lastReturned == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
            WeakHashMap.this.remove(currentKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            lastReturned = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            currentKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    private class ValueIterator extends HashIterator<V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        public V next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            return nextEntry().value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    private class KeyIterator extends HashIterator<K> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        public K next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
            return nextEntry().getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    private class EntryIterator extends HashIterator<Map.Entry<K,V>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
        public Map.Entry<K,V> next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
            return nextEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
    // Views
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22078
diff changeset
   852
    private transient Set<Map.Entry<K,V>> entrySet;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * Returns a {@link Set} view of the keys contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     * reflected in the set, and vice-versa.  If the map is modified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
     * while an iteration over the set is in progress (except through
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   859
     * the iterator's own {@code remove} operation), the results of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     * the iteration are undefined.  The set supports element removal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * which removes the corresponding mapping from the map, via the
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   862
     * {@code Iterator.remove}, {@code Set.remove},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   863
     * {@code removeAll}, {@code retainAll}, and {@code clear}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   864
     * operations.  It does not support the {@code add} or {@code addAll}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    public Set<K> keySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        Set<K> ks = keySet;
34712
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   869
        if (ks == null) {
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   870
            ks = new KeySet();
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   871
            keySet = ks;
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   872
        }
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   873
        return ks;
2
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
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   901
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   902
        public Spliterator<K> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   903
            return new KeySpliterator<>(WeakHashMap.this, 0, -1, 0, 0);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   904
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     * Returns a {@link Collection} view of the values contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     * The collection is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * reflected in the collection, and vice-versa.  If the map is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * modified while an iteration over the collection is in progress
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   912
     * (except through the iterator's own {@code remove} operation),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * the results of the iteration are undefined.  The collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     * supports element removal, which removes the corresponding
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   915
     * mapping from the map, via the {@code Iterator.remove},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   916
     * {@code Collection.remove}, {@code removeAll},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   917
     * {@code retainAll} and {@code clear} operations.  It does not
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   918
     * support the {@code add} or {@code addAll} operations.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
    public Collection<V> values() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        Collection<V> vs = values;
34712
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   922
        if (vs == null) {
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   923
            vs = new Values();
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   924
            values = vs;
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   925
        }
b183cfd1ce17 8145539: (coll) AbstractMap.keySet and .values should not be volatile
shade
parents: 32108
diff changeset
   926
        return vs;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    private class Values extends AbstractCollection<V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        public Iterator<V> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            return new ValueIterator();
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 int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
            return WeakHashMap.this.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            return containsValue(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            WeakHashMap.this.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   945
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   946
        public Spliterator<V> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   947
            return new ValueSpliterator<>(WeakHashMap.this, 0, -1, 0, 0);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   948
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     * Returns a {@link Set} view of the mappings contained in this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * The set is backed by the map, so changes to the map are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     * reflected in the set, and vice-versa.  If the map is modified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     * while an iteration over the set is in progress (except through
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   956
     * the iterator's own {@code remove} operation, or through the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   957
     * {@code setValue} operation on a map entry returned by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     * iterator) the results of the iteration are undefined.  The set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * supports element removal, which removes the corresponding
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   960
     * mapping from the map, via the {@code Iterator.remove},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   961
     * {@code Set.remove}, {@code removeAll}, {@code retainAll} and
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   962
     * {@code clear} operations.  It does not support the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   963
     * {@code add} or {@code addAll} operations.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
    public Set<Map.Entry<K,V>> entrySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        Set<Map.Entry<K,V>> es = entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        return es != null ? es : (entrySet = new EntrySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
    private class EntrySet extends AbstractSet<Map.Entry<K,V>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        public Iterator<Map.Entry<K,V>> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            return new EntryIterator();
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 boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
            if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
            Map.Entry<?,?> e = (Map.Entry<?,?>)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
            Entry<K,V> candidate = getEntry(e.getKey());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            return candidate != null && candidate.equals(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
            return removeMapping(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
            return WeakHashMap.this.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
            WeakHashMap.this.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        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
   996
            List<Map.Entry<K,V>> list = new ArrayList<>(size());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
            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
   998
                list.add(new AbstractMap.SimpleEntry<>(e));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
            return list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
            return deepCopy().toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
            return deepCopy().toArray(a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1009
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1010
        public Spliterator<Map.Entry<K,V>> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1011
            return new EntrySpliterator<>(WeakHashMap.this, 0, -1, 0, 0);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1012
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1014
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18280
diff changeset
  1015
    @SuppressWarnings("unchecked")
18280
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1016
    @Override
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1017
    public void forEach(BiConsumer<? super K, ? super V> action) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1018
        Objects.requireNonNull(action);
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1019
        int expectedModCount = modCount;
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1020
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1021
        Entry<K, V>[] tab = getTable();
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1022
        for (Entry<K, V> entry : tab) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1023
            while (entry != null) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1024
                Object key = entry.get();
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1025
                if (key != null) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1026
                    action.accept((K)WeakHashMap.unmaskNull(key), entry.value);
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1027
                }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1028
                entry = entry.next;
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1029
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1030
                if (expectedModCount != modCount) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1031
                    throw new ConcurrentModificationException();
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1032
                }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1033
            }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1034
        }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1035
    }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1036
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18280
diff changeset
  1037
    @SuppressWarnings("unchecked")
18280
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1038
    @Override
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1039
    public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1040
        Objects.requireNonNull(function);
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1041
        int expectedModCount = modCount;
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1042
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1043
        Entry<K, V>[] tab = getTable();;
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1044
        for (Entry<K, V> entry : tab) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1045
            while (entry != null) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1046
                Object key = entry.get();
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1047
                if (key != null) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1048
                    entry.value = function.apply((K)WeakHashMap.unmaskNull(key), entry.value);
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1049
                }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1050
                entry = entry.next;
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1051
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1052
                if (expectedModCount != modCount) {
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1053
                    throw new ConcurrentModificationException();
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1054
                }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1055
            }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1056
        }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1057
    }
6c3c0ff49eb5 8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents: 18166
diff changeset
  1058
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1059
    /**
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1060
     * Similar form as other hash Spliterators, but skips dead
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1061
     * elements.
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1062
     */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1063
    static class WeakHashMapSpliterator<K,V> {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1064
        final WeakHashMap<K,V> map;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1065
        WeakHashMap.Entry<K,V> current; // current node
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1066
        int index;             // current index, modified on advance/split
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1067
        int fence;             // -1 until first use; then one past last index
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1068
        int est;               // size estimate
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1069
        int expectedModCount;  // for comodification checks
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1070
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1071
        WeakHashMapSpliterator(WeakHashMap<K,V> m, int origin,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1072
                               int fence, int est,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1073
                               int expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1074
            this.map = m;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1075
            this.index = origin;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1076
            this.fence = fence;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1077
            this.est = est;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1078
            this.expectedModCount = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1079
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1080
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1081
        final int getFence() { // initialize fence and size on first use
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1082
            int hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1083
            if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1084
                WeakHashMap<K,V> m = map;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1085
                est = m.size();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1086
                expectedModCount = m.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1087
                hi = fence = m.table.length;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1088
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1089
            return hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1090
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1091
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1092
        public final long estimateSize() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1093
            getFence(); // force init
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1094
            return (long) est;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1095
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1096
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1097
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1098
    static final class KeySpliterator<K,V>
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1099
        extends WeakHashMapSpliterator<K,V>
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1100
        implements Spliterator<K> {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1101
        KeySpliterator(WeakHashMap<K,V> m, int origin, int fence, int est,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1102
                       int expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1103
            super(m, origin, fence, est, expectedModCount);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1104
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1105
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1106
        public KeySpliterator<K,V> trySplit() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1107
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1108
            return (lo >= mid) ? null :
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1109
                new KeySpliterator<>(map, lo, index = mid, est >>>= 1,
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1110
                                     expectedModCount);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1111
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1112
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1113
        public void forEachRemaining(Consumer<? super K> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1114
            int i, hi, mc;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1115
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1116
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1117
            WeakHashMap<K,V> m = map;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1118
            WeakHashMap.Entry<K,V>[] tab = m.table;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1119
            if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1120
                mc = expectedModCount = m.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1121
                hi = fence = tab.length;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1122
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1123
            else
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1124
                mc = expectedModCount;
17949
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1125
            if (tab.length >= hi && (i = index) >= 0 &&
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1126
                (i < (index = hi) || current != null)) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1127
                WeakHashMap.Entry<K,V> p = current;
17949
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1128
                current = null; // exhaust
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1129
                do {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1130
                    if (p == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1131
                        p = tab[i++];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1132
                    else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1133
                        Object x = p.get();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1134
                        p = p.next;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1135
                        if (x != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1136
                            @SuppressWarnings("unchecked") K k =
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1137
                                (K) WeakHashMap.unmaskNull(x);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1138
                            action.accept(k);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1139
                        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1140
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1141
                } while (p != null || i < hi);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1142
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1143
            if (m.modCount != mc)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1144
                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1145
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1146
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1147
        public boolean tryAdvance(Consumer<? super K> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1148
            int hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1149
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1150
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1151
            WeakHashMap.Entry<K,V>[] tab = map.table;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1152
            if (tab.length >= (hi = getFence()) && index >= 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1153
                while (current != null || index < hi) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1154
                    if (current == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1155
                        current = tab[index++];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1156
                    else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1157
                        Object x = current.get();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1158
                        current = current.next;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1159
                        if (x != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1160
                            @SuppressWarnings("unchecked") K k =
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1161
                                (K) WeakHashMap.unmaskNull(x);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1162
                            action.accept(k);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1163
                            if (map.modCount != expectedModCount)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1164
                                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1165
                            return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1166
                        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1167
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1168
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1169
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1170
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1171
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1172
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1173
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1174
            return Spliterator.DISTINCT;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1175
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1176
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1177
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1178
    static final class ValueSpliterator<K,V>
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1179
        extends WeakHashMapSpliterator<K,V>
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1180
        implements Spliterator<V> {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1181
        ValueSpliterator(WeakHashMap<K,V> m, int origin, int fence, int est,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1182
                         int expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1183
            super(m, origin, fence, est, expectedModCount);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1184
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1185
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1186
        public ValueSpliterator<K,V> trySplit() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1187
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1188
            return (lo >= mid) ? null :
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1189
                new ValueSpliterator<>(map, lo, index = mid, est >>>= 1,
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1190
                                       expectedModCount);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1191
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1192
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1193
        public void forEachRemaining(Consumer<? super V> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1194
            int i, hi, mc;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1195
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1196
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1197
            WeakHashMap<K,V> m = map;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1198
            WeakHashMap.Entry<K,V>[] tab = m.table;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1199
            if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1200
                mc = expectedModCount = m.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1201
                hi = fence = tab.length;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1202
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1203
            else
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1204
                mc = expectedModCount;
17949
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1205
            if (tab.length >= hi && (i = index) >= 0 &&
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1206
                (i < (index = hi) || current != null)) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1207
                WeakHashMap.Entry<K,V> p = current;
17949
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1208
                current = null; // exhaust
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1209
                do {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1210
                    if (p == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1211
                        p = tab[i++];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1212
                    else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1213
                        Object x = p.get();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1214
                        V v = p.value;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1215
                        p = p.next;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1216
                        if (x != null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1217
                            action.accept(v);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1218
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1219
                } while (p != null || i < hi);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1220
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1221
            if (m.modCount != mc)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1222
                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1223
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1224
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1225
        public boolean tryAdvance(Consumer<? super V> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1226
            int hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1227
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1228
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1229
            WeakHashMap.Entry<K,V>[] tab = map.table;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1230
            if (tab.length >= (hi = getFence()) && index >= 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1231
                while (current != null || index < hi) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1232
                    if (current == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1233
                        current = tab[index++];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1234
                    else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1235
                        Object x = current.get();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1236
                        V v = current.value;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1237
                        current = current.next;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1238
                        if (x != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1239
                            action.accept(v);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1240
                            if (map.modCount != expectedModCount)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1241
                                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1242
                            return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1243
                        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1244
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1245
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1246
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1247
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1248
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1249
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1250
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1251
            return 0;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1252
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1253
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1254
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1255
    static final class EntrySpliterator<K,V>
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1256
        extends WeakHashMapSpliterator<K,V>
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1257
        implements Spliterator<Map.Entry<K,V>> {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1258
        EntrySpliterator(WeakHashMap<K,V> m, int origin, int fence, int est,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1259
                       int expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1260
            super(m, origin, fence, est, expectedModCount);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1261
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1262
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1263
        public EntrySpliterator<K,V> trySplit() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1264
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1265
            return (lo >= mid) ? null :
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1266
                new EntrySpliterator<>(map, lo, index = mid, est >>>= 1,
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1267
                                       expectedModCount);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1268
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1269
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1270
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1271
        public void forEachRemaining(Consumer<? super Map.Entry<K, V>> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1272
            int i, hi, mc;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1273
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1274
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1275
            WeakHashMap<K,V> m = map;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1276
            WeakHashMap.Entry<K,V>[] tab = m.table;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1277
            if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1278
                mc = expectedModCount = m.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1279
                hi = fence = tab.length;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1280
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1281
            else
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1282
                mc = expectedModCount;
17949
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1283
            if (tab.length >= hi && (i = index) >= 0 &&
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1284
                (i < (index = hi) || current != null)) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1285
                WeakHashMap.Entry<K,V> p = current;
17949
6c33d8f2601e 8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents: 17939
diff changeset
  1286
                current = null; // exhaust
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1287
                do {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1288
                    if (p == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1289
                        p = tab[i++];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1290
                    else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1291
                        Object x = p.get();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1292
                        V v = p.value;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1293
                        p = p.next;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1294
                        if (x != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1295
                            @SuppressWarnings("unchecked") K k =
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1296
                                (K) WeakHashMap.unmaskNull(x);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1297
                            action.accept
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1298
                                (new AbstractMap.SimpleImmutableEntry<>(k, v));
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1299
                        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1300
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1301
                } while (p != null || i < hi);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1302
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1303
            if (m.modCount != mc)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1304
                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1305
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1306
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1307
        public boolean tryAdvance(Consumer<? super Map.Entry<K,V>> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1308
            int hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1309
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1310
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1311
            WeakHashMap.Entry<K,V>[] tab = map.table;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1312
            if (tab.length >= (hi = getFence()) && index >= 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1313
                while (current != null || index < hi) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1314
                    if (current == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1315
                        current = tab[index++];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1316
                    else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1317
                        Object x = current.get();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1318
                        V v = current.value;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1319
                        current = current.next;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1320
                        if (x != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1321
                            @SuppressWarnings("unchecked") K k =
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1322
                                (K) WeakHashMap.unmaskNull(x);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1323
                            action.accept
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19853
diff changeset
  1324
                                (new AbstractMap.SimpleImmutableEntry<>(k, v));
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1325
                            if (map.modCount != expectedModCount)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1326
                                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1327
                            return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1328
                        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1329
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1330
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1331
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1332
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1333
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1334
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1335
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1336
            return Spliterator.DISTINCT;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1337
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1338
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
  1339
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
}