src/java.base/share/classes/sun/security/util/Cache.java
author igerasim
Wed, 04 Oct 2017 01:08:36 -0700
changeset 47310 eca11f20586e
parent 47216 71c04702a3d5
permissions -rw-r--r--
8186654: Poor quality of sun.security.util.Cache.EqualByteArray.hashCode() Reviewed-by: coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
     2
 * Copyright (c) 2002, 2011, 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: 2060
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: 2060
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: 2060
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2060
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2060
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 sun.security.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.ref.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Abstract base class and factory for caches. A cache is a key-value mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * It has properties that make it more suitable for caching than a Map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * The factory methods can be used to obtain two different implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * They have the following properties:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *  . keys and values reside in memory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *  . keys and values must be non-null
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *  . maximum size. Replacements are made in LRU order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *  . optional lifetime, specified in seconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
    46
 *  . safe for concurrent use by multiple threads
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *  . values are held by either standard references or via SoftReferences.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *    SoftReferences have the advantage that they are automatically cleared
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *    by the garbage collector in response to memory demand. This makes it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *    possible to simple set the maximum size to a very large value and let
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *    the GC automatically size the cache dynamically depending on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *    amount of available memory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * However, note that because of the way SoftReferences are implemented in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * HotSpot at the moment, this may not work perfectly as it clears them fairly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * eagerly. Performance may be improved if the Java heap size is set to larger
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * value using e.g. java -ms64M -mx128M foo.Test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * Cache sizing: the memory cache is implemented on top of a LinkedHashMap.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * In its current implementation, the number of buckets (NOT entries) in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * (Linked)HashMaps is always a power of two. It is recommended to set the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * maximum cache size to value that uses those buckets fully. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * if a cache with somewhere between 500 and 1000 entries is desired, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * maximum size of 750 would be a good choice: try 1024 buckets, with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * load factor of 0.75f, the number of entries can be calculated as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * buckets / 4 * 3. As mentioned above, with a SoftReference cache, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * generally reasonable to set the size to a fairly large value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
    72
public abstract class Cache<K,V> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    protected Cache() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * Return the number of currently valid entries in the cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    public abstract int size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Remove all entries from the cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    public abstract void clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * Add an entry to the cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
    91
    public abstract void put(K key, V value);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Get a value from the cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
    96
    public abstract V get(Object key);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * Remove an entry from the cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public abstract void remove(Object key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   104
     * Set the maximum size.
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   105
     */
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   106
    public abstract void setCapacity(int size);
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   107
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   108
    /**
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   109
     * Set the timeout(in seconds).
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   110
     */
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   111
    public abstract void setTimeout(int timeout);
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   112
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   113
    /**
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   114
     * accept a visitor
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   115
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   116
    public abstract void accept(CacheVisitor<K,V> visitor);
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   117
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   118
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * Return a new memory cache with the specified maximum size, unlimited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * lifetime for entries, with the values held by SoftReferences.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   122
    public static <K,V> Cache<K,V> newSoftMemoryCache(int size) {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   123
        return new MemoryCache<>(true, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * Return a new memory cache with the specified maximum size, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * specified maximum lifetime (in seconds), with the values held
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * by SoftReferences.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   131
    public static <K,V> Cache<K,V> newSoftMemoryCache(int size, int timeout) {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   132
        return new MemoryCache<>(true, size, timeout);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Return a new memory cache with the specified maximum size, unlimited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * lifetime for entries, with the values held by standard references.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   139
    public static <K,V> Cache<K,V> newHardMemoryCache(int size) {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   140
        return new MemoryCache<>(false, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Return a dummy cache that does nothing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   146
    @SuppressWarnings("unchecked")
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   147
    public static <K,V> Cache<K,V> newNullCache() {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   148
        return (Cache<K,V>) NullCache.INSTANCE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * Return a new memory cache with the specified maximum size, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * specified maximum lifetime (in seconds), with the values held
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * by standard references.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   156
    public static <K,V> Cache<K,V> newHardMemoryCache(int size, int timeout) {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   157
        return new MemoryCache<>(false, size, timeout);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * Utility class that wraps a byte array and implements the equals()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * and hashCode() contract in a way suitable for Maps and caches.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public static class EqualByteArray {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        private final byte[] b;
47310
eca11f20586e 8186654: Poor quality of sun.security.util.Cache.EqualByteArray.hashCode()
igerasim
parents: 47216
diff changeset
   167
        private int hash;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        public EqualByteArray(byte[] b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            this.b = b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            int h = hash;
47310
eca11f20586e 8186654: Poor quality of sun.security.util.Cache.EqualByteArray.hashCode()
igerasim
parents: 47216
diff changeset
   175
            if (h == 0 && b.length > 0) {
eca11f20586e 8186654: Poor quality of sun.security.util.Cache.EqualByteArray.hashCode()
igerasim
parents: 47216
diff changeset
   176
                hash = h = Arrays.hashCode(b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            return h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            if (this == obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            if (obj instanceof EqualByteArray == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            EqualByteArray other = (EqualByteArray)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            return Arrays.equals(this.b, other.b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   193
    public interface CacheVisitor<K,V> {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   194
        public void visit(Map<K,V> map);
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   195
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   196
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   199
class NullCache<K,V> extends Cache<K,V> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   201
    static final Cache<Object,Object> INSTANCE = new NullCache<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    private NullCache() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   215
    public void put(K key, V value) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   219
    public V get(Object key) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    public void remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   227
    public void setCapacity(int size) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   228
        // empty
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   229
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   230
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   231
    public void setTimeout(int timeout) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   232
        // empty
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   233
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   234
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   235
    public void accept(CacheVisitor<K,V> visitor) {
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   236
        // empty
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   237
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   238
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   241
class MemoryCache<K,V> extends Cache<K,V> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   243
    private static final float LOAD_FACTOR = 0.75f;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    // XXXX
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   246
    private static final boolean DEBUG = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   248
    private final Map<K, CacheEntry<K,V>> cacheMap;
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   249
    private int maxSize;
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   250
    private long lifetime;
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   251
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   252
    // ReferenceQueue is of type V instead of Cache<K,V>
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   253
    // to allow SoftCacheEntry to extend SoftReference<V>
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   254
    private final ReferenceQueue<V> queue;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public MemoryCache(boolean soft, int maxSize) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        this(soft, maxSize, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    public MemoryCache(boolean soft, int maxSize, int lifetime) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        this.maxSize = maxSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        this.lifetime = lifetime * 1000;
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   263
        if (soft)
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   264
            this.queue = new ReferenceQueue<>();
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   265
        else
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   266
            this.queue = null;
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   267
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        int buckets = (int)(maxSize / LOAD_FACTOR) + 1;
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   269
        cacheMap = new LinkedHashMap<>(buckets, LOAD_FACTOR, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Empty the reference queue and remove all corresponding entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * from the cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * This method should be called at the beginning of each public
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    private void emptyQueue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        if (queue == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        int startSize = cacheMap.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        while (true) {
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   285
            @SuppressWarnings("unchecked")
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   286
            CacheEntry<K,V> entry = (CacheEntry<K,V>)queue.poll();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            if (entry == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            }
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   290
            K key = entry.getKey();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                // key is null, entry has already been removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            }
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   295
            CacheEntry<K,V> currentEntry = cacheMap.remove(key);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            // check if the entry in the map corresponds to the expired
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            // entry. If not, readd the entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            if ((currentEntry != null) && (entry != currentEntry)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                cacheMap.put(key, currentEntry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            int endSize = cacheMap.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            if (startSize != endSize) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                System.out.println("*** Expunged " + (startSize - endSize)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                        + " entries, " + endSize + " entries left");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * Scan all entries and remove all expired ones.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    private void expungeExpiredEntries() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        emptyQueue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        if (lifetime == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        int cnt = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        long time = System.currentTimeMillis();
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   321
        for (Iterator<CacheEntry<K,V>> t = cacheMap.values().iterator();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                t.hasNext(); ) {
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   323
            CacheEntry<K,V> entry = t.next();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            if (entry.isValid(time) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                t.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                cnt++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            if (cnt != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                System.out.println("Removed " + cnt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                        + " expired entries, remaining " + cacheMap.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    public synchronized int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        expungeExpiredEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        return cacheMap.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    public synchronized void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        if (queue != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
            // if this is a SoftReference cache, first invalidate() all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            // entries so that GC does not have to enqueue them
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   346
            for (CacheEntry<K,V> entry : cacheMap.values()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
                entry.invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            while (queue.poll() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
                // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        cacheMap.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   356
    public synchronized void put(K key, V value) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        emptyQueue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        long expirationTime = (lifetime == 0) ? 0 :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                                        System.currentTimeMillis() + lifetime;
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   360
        CacheEntry<K,V> newEntry = newEntry(key, value, expirationTime, queue);
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   361
        CacheEntry<K,V> oldEntry = cacheMap.put(key, newEntry);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        if (oldEntry != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            oldEntry.invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        }
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   366
        if (maxSize > 0 && cacheMap.size() > maxSize) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            expungeExpiredEntries();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            if (cacheMap.size() > maxSize) { // still too large?
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   369
                Iterator<CacheEntry<K,V>> t = cacheMap.values().iterator();
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   370
                CacheEntry<K,V> lruEntry = t.next();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                    System.out.println("** Overflow removal "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                        + lruEntry.getKey() + " | " + lruEntry.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                t.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                lruEntry.invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   381
    public synchronized V get(Object key) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        emptyQueue();
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   383
        CacheEntry<K,V> entry = cacheMap.get(key);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        if (entry == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        long time = (lifetime == 0) ? 0 : System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        if (entry.isValid(time) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                System.out.println("Ignoring expired entry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            cacheMap.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        return entry.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public synchronized void remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        emptyQueue();
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   400
        CacheEntry<K,V> entry = cacheMap.remove(key);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        if (entry != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            entry.invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   406
    public synchronized void setCapacity(int size) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   407
        expungeExpiredEntries();
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   408
        if (size > 0 && cacheMap.size() > size) {
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   409
            Iterator<CacheEntry<K,V>> t = cacheMap.values().iterator();
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   410
            for (int i = cacheMap.size() - size; i > 0; i--) {
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   411
                CacheEntry<K,V> lruEntry = t.next();
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   412
                if (DEBUG) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   413
                    System.out.println("** capacity reset removal "
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   414
                        + lruEntry.getKey() + " | " + lruEntry.getValue());
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   415
                }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   416
                t.remove();
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   417
                lruEntry.invalidate();
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   418
            }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   419
        }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   420
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   421
        maxSize = size > 0 ? size : 0;
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   422
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   423
        if (DEBUG) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   424
            System.out.println("** capacity reset to " + size);
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   425
        }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   426
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   427
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   428
    public synchronized void setTimeout(int timeout) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   429
        emptyQueue();
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   430
        lifetime = timeout > 0 ? timeout * 1000L : 0L;
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   431
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   432
        if (DEBUG) {
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   433
            System.out.println("** lifetime reset to " + timeout);
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   434
        }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   435
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   436
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   437
    // it is a heavyweight method.
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   438
    public synchronized void accept(CacheVisitor<K,V> visitor) {
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   439
        expungeExpiredEntries();
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   440
        Map<K,V> cached = getCachedEntries();
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   441
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   442
        visitor.visit(cached);
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   443
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   444
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   445
    private Map<K,V> getCachedEntries() {
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   446
        Map<K,V> kvmap = new HashMap<>(cacheMap.size());
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   447
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   448
        for (CacheEntry<K,V> entry : cacheMap.values()) {
2060
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   449
            kvmap.put(entry.getKey(), entry.getValue());
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   450
        }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   451
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   452
        return kvmap;
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   453
    }
75e464ce81af 4918870: Examine session cache implementation (sun.misc.Cache)
xuelei
parents: 2
diff changeset
   454
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   455
    protected CacheEntry<K,V> newEntry(K key, V value,
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   456
            long expirationTime, ReferenceQueue<V> queue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        if (queue != null) {
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   458
            return new SoftCacheEntry<>(key, value, expirationTime, queue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        } else {
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   460
            return new HardCacheEntry<>(key, value, expirationTime);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   464
    private static interface CacheEntry<K,V> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        boolean isValid(long currentTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        void invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   470
        K getKey();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   472
        V getValue();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   476
    private static class HardCacheEntry<K,V> implements CacheEntry<K,V> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   478
        private K key;
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   479
        private V value;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        private long expirationTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   482
        HardCacheEntry(K key, V value, long expirationTime) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            this.key = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            this.expirationTime = expirationTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   488
        public K getKey() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            return key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   492
        public V getValue() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        public boolean isValid(long currentTime) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            boolean valid = (currentTime <= expirationTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            if (valid == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            return valid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        public void invalidate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            key = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            value = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            expirationTime = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   511
    private static class SoftCacheEntry<K,V>
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   512
            extends SoftReference<V>
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   513
            implements CacheEntry<K,V> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   515
        private K key;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        private long expirationTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   518
        SoftCacheEntry(K key, V value, long expirationTime,
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   519
                ReferenceQueue<V> queue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            super(value, queue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            this.key = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            this.expirationTime = expirationTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   525
        public K getKey() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            return key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
10785
1d42311b6355 7092897: sun.security.util.Cache should be generified
mullan
parents: 10336
diff changeset
   529
        public V getValue() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            return get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        public boolean isValid(long currentTime) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            boolean valid = (currentTime <= expirationTime) && (get() != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            if (valid == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                invalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
            return valid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        public void invalidate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
            key = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            expirationTime = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
}