jdk/src/java.base/share/classes/java/security/Provider.java
author weijun
Fri, 06 May 2016 11:38:44 +0800
changeset 37796 256c45c4af5d
parent 32931 2ba4f06f8684
child 37880 60ec48925dc6
permissions -rw-r--r--
8051408: NIST SP 800-90A SecureRandom implementations Reviewed-by: wetmore, xuelei, coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
37796
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
     2
 * Copyright (c) 1996, 2016, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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.security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import static java.util.Locale.ENGLISH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.ref.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.lang.reflect.*;
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
    33
import java.util.function.BiConsumer;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
    34
import java.util.function.BiFunction;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
    35
import java.util.function.Function;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * This class represents a "provider" for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Java Security API, where a provider implements some or all parts of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Java Security. Services that a provider may implement include:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    44
 * <li>Algorithms (such as DSA, RSA, or SHA-256).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <li>Key generation, conversion, and management facilities (such as for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * algorithm-specific keys).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    49
 * </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <p>Some provider implementations may encounter unrecoverable internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * errors during their operation, for example a failure to communicate with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * security token. A {@link ProviderException} should be used to indicate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * such errors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    56
 * <p>Please note that a provider can be used to implement any security
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    57
 * service in Java that uses a pluggable architecture with a choice
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    58
 * of implementations that fit underneath.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    59
 *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    60
 * <p>The service type {@code Provider} is reserved for use by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * security framework. Services of this type cannot be added, removed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * or modified by applications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * The following attributes are automatically placed in each Provider object:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * <table cellspacing=4>
18592
80cdfecea074 8019539: Fix doclint errors in java.security and its subpackages
juh
parents: 18579
diff changeset
    65
 * <caption><b>Attributes Automatically Placed in a Provider Object</b></caption>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * <tr><th>Name</th><th>Value</th>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    67
 * <tr><td>{@code Provider.id name}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    68
  *    <td>{@code String.valueOf(provider.getName())}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    69
 * <tr><td>{@code Provider.id version}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    70
 *     <td>{@code String.valueOf(provider.getVersion())}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    71
 * <tr><td>{@code Provider.id info}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    72
       <td>{@code String.valueOf(provider.getInfo())}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    73
 * <tr><td>{@code Provider.id className}</td>
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    74
 *     <td>{@code provider.getClass().getName()}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    77
 * <p>Each provider has a name and a version number. A provider normally
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    78
 * identifies itself with a file named {@code java.security.Provider}
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    79
 * in the resource directory {@code META-INF/services}.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    80
 * Security providers are looked up via the {@link ServiceLoader} mechanism
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    81
 * using the {@link ClassLoader#getSystemClassLoader application class loader}.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    82
 *
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    83
 * <p>Providers may be configured such that they are automatically
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    84
 * installed and made available at runtime via the
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    85
 * {@link Security#getProviders() Security.getProviders()} method.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    86
 * The mechanism for configuring and installing security providers is
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    87
 * implementation-specific.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    88
 *
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    89
 * @implNote
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    90
 * The JDK implementation supports static registration of the security
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    91
 * providers via the {@code conf/security/java.security} file in the Java
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    92
 * installation directory. These providers are automatically installed by
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    93
 * the JDK runtime, see <a href =
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    94
 * "../../../technotes/guides/security/crypto/CryptoSpec.html#Provider">The Provider Class</a>
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    95
 * in the "Java Cryptography Architecture API Specification &amp; Reference"
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    96
 * for information about how a particular type of provider, the cryptographic
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    97
 * service provider, works and is installed.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
    98
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @author Benjamin Renaud
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
public abstract class Provider extends Properties {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    // Declare serialVersionUID to be compatible with JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    static final long serialVersionUID = -4298000515446427739L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    private static final sun.security.util.Debug debug =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        sun.security.util.Debug.getInstance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        ("provider", "Provider");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * The provider name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    private String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * A description of the provider and its services.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    private String info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * The provider version number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    private double version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    private transient Set<Map.Entry<Object,Object>> entrySet = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    private transient int entrySetCallCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    private transient boolean initialized;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   138
    private static Object newInstanceUtil(final Class<?> clazz,
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   139
        final Class<?> ctrParamClz, final Object ctorParamObj)
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   140
        throws Exception {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   141
        if (ctrParamClz == null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   142
            Constructor<?> con = clazz.getConstructor();
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   143
            return con.newInstance();
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   144
        } else {
37796
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   145
            // Looking for the constructor with a params first and fallback
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   146
            // to one without if not found. This is to support the enhanced
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   147
            // SecureRandom where both styles of constructors are supported.
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   148
            // Before jdk9, there was no params support (only getInstance(alg))
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   149
            // and an impl only had the params-less constructor. Since jdk9,
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   150
            // there is getInstance(alg,params) and an impl can contain
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   151
            // an Impl(params) constructor.
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   152
            try {
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   153
                Constructor<?> con = clazz.getConstructor(ctrParamClz);
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   154
                return con.newInstance(ctorParamObj);
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   155
            } catch (NoSuchMethodException nsme) {
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   156
                // For pre-jdk9 SecureRandom implementations, they only
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   157
                // have params-less constructors which still works when
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   158
                // the input ctorParamObj is null.
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   159
                //
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   160
                // For other primitives using params, ctorParamObj should not
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   161
                // be null and nsme is thrown, just like before.
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   162
                if (ctorParamObj == null) {
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   163
                    try {
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   164
                        Constructor<?> con = clazz.getConstructor();
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   165
                        return con.newInstance();
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   166
                    } catch (NoSuchMethodException nsme2) {
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   167
                        nsme.addSuppressed(nsme2);
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   168
                        throw nsme;
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   169
                    }
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   170
                } else {
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   171
                    throw nsme;
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   172
                }
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
   173
            }
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   174
        }
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   175
    }
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   176
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * Constructs a provider with the specified name, version number,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * and information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param name the provider name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @param version the provider version number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @param info a description of the provider and its services.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    protected Provider(String name, double version, String info) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        this.version = version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        this.info = info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        putId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        initialized = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   196
     * Apply the supplied configuration argument to this provider instance
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   197
     * and return the configured provider. Note that if this provider cannot
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   198
     * be configured in-place, a new provider will be created and returned.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   199
     * Therefore, callers should always use the returned provider.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   200
     *
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   201
     * @implSpec
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   202
     * The default implementation throws {@code UnsupportedOperationException}.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   203
     * Subclasses should override this method only if a configuration argument
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   204
     * is supported.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   205
     *
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   206
     * @param configArg the configuration information for configuring this
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   207
     *         provider.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   208
     *
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   209
     * @throws UnsupportedOperationException if a configuration argument is
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   210
     *         not supported.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   211
     * @throws NullPointerException if the supplied configuration argument is
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   212
               null.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   213
     * @throws InvalidParameterException if the supplied configuration argument
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   214
     *         is invalid.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   215
     * @return a provider configured with the supplied configuration argument.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   216
     *
32931
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   217
     * @since 9
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   218
     */
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   219
    public Provider configure(String configArg) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   220
        throw new UnsupportedOperationException("configure is not supported");
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   221
    }
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   222
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   223
    /**
32931
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   224
     * Check if this provider instance has been configured.
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   225
     *
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   226
     * @implSpec
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   227
     * The default implementation returns true.
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   228
     * Subclasses should override this method if the provider instance requires
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   229
     * an explicit {@code configure} call after being constructed.
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   230
     *
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   231
     * @return true if no further configuration is needed, false otherwise.
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   232
     *
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   233
     * @since 9
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   234
     */
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   235
    public boolean isConfigured() {
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   236
        return true;
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   237
    }
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   238
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   239
2ba4f06f8684 8130648: JCK test api/java_security/AuthProvider/ProviderTests_login starts failing after JDK-7191662
valeriep
parents: 32649
diff changeset
   240
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Returns the name of this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * @return the name of this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * Returns the version number for this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @return the version number for this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    public double getVersion() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        return version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * Returns a human-readable description of the provider and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * services.  This may return an HTML page, with relevant links.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * @return a description of the provider and its services.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    public String getInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        return info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Returns a string with the name and the version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * of this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @return the string with the name and the version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * for this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        return name + " version " + version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * override the following methods to ensure that provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * information can only be changed if the caller has the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * Clears this provider so that it no longer contains the properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * used to look up facilities implemented by the provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   289
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   290
     * method is called with the string {@code "clearProviderProperties."+name}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   291
     * (where {@code name} is the provider name) to see if it's ok to clear
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   292
     * this provider.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @throws  SecurityException
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   295
     *          if a security manager exists and its {@link
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   296
     *          java.lang.SecurityManager#checkSecurityAccess} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *          denies access to clear this provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   301
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    public synchronized void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        check("clearProviderProperties."+name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            debug.println("Remove " + name + " provider properties");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        implClear();
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
     * Reads a property list (key and element pairs) from the input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   313
     * @param inStream the input stream.
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
   314
     * @exception IOException if an error occurred when reading from the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *               input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @see java.util.Properties#load
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   318
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    public synchronized void load(InputStream inStream) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        check("putProviderProperty."+name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            debug.println("Load " + name + " provider properties");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        Properties tempProperties = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        tempProperties.load(inStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        implPutAll(tempProperties);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * Copies all of the mappings from the specified Map to this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * These mappings will replace any properties that this provider had
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * for any of the keys currently in the specified Map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   336
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    public synchronized void putAll(Map<?,?> t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        check("putProviderProperty."+name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            debug.println("Put all " + name + " provider properties");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        implPutAll(t);
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
     * Returns an unmodifiable Set view of the property entries contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * in this Provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @see   java.util.Map.Entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   352
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    public synchronized Set<Map.Entry<Object,Object>> entrySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        if (entrySet == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            if (entrySetCallCount++ == 0)  // Initial call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                entrySet = Collections.unmodifiableMap(this).entrySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                return super.entrySet();   // Recursive call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        // This exception will be thrown if the implementation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        // Collections.unmodifiableMap.entrySet() is changed such that it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        // no longer calls entrySet() on the backing Map.  (Provider's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        // entrySet implementation depends on this "implementation detail",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        // which is unlikely to change.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        if (entrySetCallCount != 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            throw new RuntimeException("Internal error.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        return entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * Returns an unmodifiable Set view of the property keys contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   379
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    public Set<Object> keySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        return Collections.unmodifiableSet(super.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * Returns an unmodifiable Collection view of the property values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * contained in this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   391
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    public Collection<Object> values() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        return Collections.unmodifiableCollection(super.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   398
     * Sets the {@code key} property to have the specified
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   399
     * {@code value}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   401
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   402
     * method is called with the string {@code "putProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   403
     * where {@code name} is the provider name, to see if it's ok to set this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   404
     * provider's property values.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @throws  SecurityException
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   407
     *          if a security manager exists and its {@link
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   408
     *          java.lang.SecurityManager#checkSecurityAccess} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *          denies access to set property values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   413
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    public synchronized Object put(Object key, Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        check("putProviderProperty."+name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            debug.println("Set " + name + " provider property [" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                          key + "/" + value +"]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        return implPut(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    /**
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   424
     * If the specified key is not already associated with a value (or is mapped
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   425
     * to {@code null}) associates it with the given value and returns
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   426
     * {@code null}, else returns the current value.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   427
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   428
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   429
     * method is called with the string {@code "putProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   430
     * where {@code name} is the provider name, to see if it's ok to set this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   431
     * provider's property values.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   432
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   433
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   434
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   435
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   436
     *          denies access to set property values.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   437
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   438
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   439
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   440
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   441
    public synchronized Object putIfAbsent(Object key, Object value) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   442
        check("putProviderProperty."+name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   443
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   444
            debug.println("Set " + name + " provider property [" +
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   445
                          key + "/" + value +"]");
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   446
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   447
        return implPutIfAbsent(key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   448
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   449
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   450
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   451
     * Removes the {@code key} property (and its corresponding
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   452
     * {@code value}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     *
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   454
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   455
     * method is called with the string {@code "removeProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   456
     * where {@code name} is the provider name, to see if it's ok to remove this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   457
     * provider's properties.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @throws  SecurityException
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   460
     *          if a security manager exists and its {@link
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   461
     *          java.lang.SecurityManager#checkSecurityAccess} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     *          denies access to remove this provider's properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   466
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    public synchronized Object remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        check("removeProviderProperty."+name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            debug.println("Remove " + name + " provider property " + key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        return implRemove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   475
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   476
     * Removes the entry for the specified key only if it is currently
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   477
     * mapped to the specified value.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   478
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   479
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   480
     * method is called with the string {@code "removeProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   481
     * where {@code name} is the provider name, to see if it's ok to remove this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   482
     * provider's properties.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   483
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   484
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   485
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   486
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   487
     *          denies access to remove this provider's properties.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   488
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   489
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   490
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   491
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   492
    public synchronized boolean remove(Object key, Object value) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   493
        check("removeProviderProperty."+name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   494
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   495
            debug.println("Remove " + name + " provider property " + key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   496
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   497
        return implRemove(key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   498
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   499
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   500
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   501
     * Replaces the entry for the specified key only if currently
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   502
     * mapped to the specified value.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   503
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   504
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   505
     * method is called with the string {@code "putProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   506
     * where {@code name} is the provider name, to see if it's ok to set this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   507
     * provider's property values.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   508
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   509
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   510
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   511
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   512
     *          denies access to set property values.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   513
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   514
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   515
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   516
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   517
    public synchronized boolean replace(Object key, Object oldValue,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   518
            Object newValue) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   519
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   520
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   521
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   522
            debug.println("Replace " + name + " provider property " + key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   523
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   524
        return implReplace(key, oldValue, newValue);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   525
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   526
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   527
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   528
     * Replaces the entry for the specified key only if it is
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   529
     * currently mapped to some value.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   530
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   531
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   532
     * method is called with the string {@code "putProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   533
     * where {@code name} is the provider name, to see if it's ok to set this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   534
     * provider's property values.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   535
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   536
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   537
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   538
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   539
     *          denies access to set property values.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   540
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   541
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   542
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   543
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   544
    public synchronized Object replace(Object key, Object value) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   545
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   546
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   547
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   548
            debug.println("Replace " + name + " provider property " + key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   549
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   550
        return implReplace(key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   551
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   552
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   553
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   554
     * Replaces each entry's value with the result of invoking the given
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   555
     * function on that entry, in the order entries are returned by an entry
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   556
     * set iterator, until all entries have been processed or the function
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   557
     * throws an exception.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   558
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   559
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   560
     * method is called with the string {@code "putProviderProperty."+name},
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   561
     * where {@code name} is the provider name, to see if it's ok to set this
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   562
     * provider's property values.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   563
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   564
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   565
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   566
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   567
     *          denies access to set property values.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   568
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   569
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   570
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   571
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   572
    public synchronized void replaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   573
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   574
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   575
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   576
            debug.println("ReplaceAll " + name + " provider property ");
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   577
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   578
        implReplaceAll(function);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   579
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   580
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   581
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   582
     * Attempts to compute a mapping for the specified key and its
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   583
     * current mapped value (or {@code null} if there is no current
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   584
     * mapping).
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   585
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   586
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   587
     * method is called with the strings {@code "putProviderProperty."+name}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   588
     * and {@code "removeProviderProperty."+name}, where {@code name} is the
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   589
     * provider name, to see if it's ok to set this provider's property values
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   590
     * and remove this provider's properties.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   591
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   592
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   593
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   594
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   595
     *          denies access to set property values or remove properties.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   596
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   597
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   598
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   599
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   600
    public synchronized Object compute(Object key,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   601
        BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   602
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   603
        check("removeProviderProperty" + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   604
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   605
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   606
            debug.println("Compute " + name + " provider property " + key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   607
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   608
        return implCompute(key, remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   609
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   610
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   611
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   612
     * If the specified key is not already associated with a value (or
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   613
     * is mapped to {@code null}), attempts to compute its value using
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   614
     * the given mapping function and enters it into this map unless
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   615
     * {@code null}.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   616
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   617
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   618
     * method is called with the strings {@code "putProviderProperty."+name}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   619
     * and {@code "removeProviderProperty."+name}, where {@code name} is the
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   620
     * provider name, to see if it's ok to set this provider's property values
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   621
     * and remove this provider's properties.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   622
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   623
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   624
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   625
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   626
     *          denies access to set property values and remove properties.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   627
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   628
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   629
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   630
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   631
    public synchronized Object computeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   632
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   633
        check("removeProviderProperty" + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   634
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   635
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   636
            debug.println("ComputeIfAbsent " + name + " provider property " +
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   637
                    key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   638
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   639
        return implComputeIfAbsent(key, mappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   640
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   641
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   642
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   643
     * If the value for the specified key is present and non-null, attempts to
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   644
     * compute a new mapping given the key and its current mapped value.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   645
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   646
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   647
     * method is called with the strings {@code "putProviderProperty."+name}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   648
     * and {@code "removeProviderProperty."+name}, where {@code name} is the
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   649
     * provider name, to see if it's ok to set this provider's property values
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   650
     * and remove this provider's properties.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   651
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   652
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   653
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   654
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   655
     *          denies access to set property values or remove properties.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   656
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   657
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   658
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   659
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   660
    public synchronized Object computeIfPresent(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   661
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   662
        check("removeProviderProperty" + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   663
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   664
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   665
            debug.println("ComputeIfPresent " + name + " provider property " +
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   666
                    key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   667
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   668
        return implComputeIfPresent(key, remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   669
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   670
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   671
    /**
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   672
     * If the specified key is not already associated with a value or is
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   673
     * associated with null, associates it with the given value. Otherwise,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   674
     * replaces the value with the results of the given remapping function,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   675
     * or removes if the result is null. This method may be of use when
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   676
     * combining multiple mapped values for a key.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   677
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   678
     * <p>If a security manager is enabled, its {@code checkSecurityAccess}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   679
     * method is called with the strings {@code "putProviderProperty."+name}
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   680
     * and {@code "removeProviderProperty."+name}, where {@code name} is the
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   681
     * provider name, to see if it's ok to set this provider's property values
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   682
     * and remove this provider's properties.
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   683
     *
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   684
     * @throws  SecurityException
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   685
     *          if a security manager exists and its {@link
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   686
     *          java.lang.SecurityManager#checkSecurityAccess} method
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   687
     *          denies access to set property values or remove properties.
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   688
     *
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   689
     * @since 1.8
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   690
     */
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   691
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   692
    public synchronized Object merge(Object key, Object value,  BiFunction<? super Object, ? super Object, ? extends Object>  remappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   693
        check("putProviderProperty." + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   694
        check("removeProviderProperty" + name);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   695
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   696
        if (debug != null) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   697
            debug.println("Merge " + name + " provider property " + key);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   698
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   699
        return implMerge(key, value, remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   700
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   701
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    // let javadoc show doc from superclass
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   703
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    public Object get(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        return super.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    }
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   708
    /**
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   709
     * @since 1.8
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   710
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   711
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   712
    public synchronized Object getOrDefault(Object key, Object defaultValue) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   713
        checkInitialized();
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   714
        return super.getOrDefault(key, defaultValue);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   715
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   716
21979
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   717
    /**
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   718
     * @since 1.8
3dcd1bc15edd 8029550: javadoc since tag for recent Hashtable updates
ascarpino
parents: 21340
diff changeset
   719
     */
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   720
    @Override
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   721
    public synchronized void forEach(BiConsumer<? super Object, ? super Object> action) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   722
        checkInitialized();
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   723
        super.forEach(action);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   724
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   725
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    // let javadoc show doc from superclass
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   727
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    public Enumeration<Object> keys() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        return super.keys();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    // let javadoc show doc from superclass
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   734
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    public Enumeration<Object> elements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        return super.elements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    // let javadoc show doc from superclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    public String getProperty(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        return super.getProperty(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
    private void checkInitialized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        if (!initialized) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    private void check(String directive) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            security.checkSecurityAccess(directive);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    // legacy properties changed since last call to any services method?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    private transient boolean legacyChanged;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    // serviceMap changed since last call to getServices()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    private transient boolean servicesChanged;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    // Map<String,String>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    private transient Map<String,String> legacyStrings;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    // Map<ServiceKey,Service>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    // used for services added via putService(), initialized on demand
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    private transient Map<ServiceKey,Service> serviceMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    // Map<ServiceKey,Service>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    // used for services added via legacy methods, init on demand
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    private transient Map<ServiceKey,Service> legacyMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    // Set<Service>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    // Unmodifiable set of all services. Initialized on demand.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    private transient Set<Service> serviceSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    // register the id attributes for this provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    // this is to ensure that equals() and hashCode() do not incorrectly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    // report to different provider objects as the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    private void putId() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        // note: name and info may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        super.put("Provider.id name", String.valueOf(name));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        super.put("Provider.id version", String.valueOf(version));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        super.put("Provider.id info", String.valueOf(info));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        super.put("Provider.id className", this.getClass().getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    private void readObject(ObjectInputStream in)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                throws IOException, ClassNotFoundException {
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
   793
        Map<Object,Object> copy = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        for (Map.Entry<Object,Object> entry : super.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            copy.put(entry.getKey(), entry.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        defaults = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        in.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        implClear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        initialized = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        putAll(copy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   804
    private boolean checkLegacy(Object key) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   805
        String keyString = (String)key;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   806
        if (keyString.startsWith("Provider.")) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   807
            return false;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   808
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   809
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   810
        legacyChanged = true;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   811
        if (legacyStrings == null) {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
   812
            legacyStrings = new LinkedHashMap<>();
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   813
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   814
        return true;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   815
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   816
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     * Copies all of the mappings from the specified Map to this provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     * Internal method to be called AFTER the security check has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     */
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   822
    private void implPutAll(Map<?,?> t) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   823
        for (Map.Entry<?,?> e : t.entrySet()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
            implPut(e.getKey(), e.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
    private Object implRemove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        if (key instanceof String) {
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   830
            if (!checkLegacy(key)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
            }
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   833
            legacyStrings.remove((String)key);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        return super.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   838
    private boolean implRemove(Object key, Object value) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   839
        if (key instanceof String && value instanceof String) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   840
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   841
                return false;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   842
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   843
            legacyStrings.remove((String)key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   844
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   845
        return super.remove(key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   846
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   847
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   848
    private boolean implReplace(Object key, Object oldValue, Object newValue) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   849
        if ((key instanceof String) && (oldValue instanceof String) &&
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   850
                (newValue instanceof String)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   851
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   852
                return false;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   853
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   854
            legacyStrings.replace((String)key, (String)oldValue,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   855
                    (String)newValue);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   856
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   857
        return super.replace(key, oldValue, newValue);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   858
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   859
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   860
    private Object implReplace(Object key, Object value) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        if ((key instanceof String) && (value instanceof String)) {
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   862
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   863
                return null;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   864
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   865
            legacyStrings.replace((String)key, (String)value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   866
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   867
        return super.replace(key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   868
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   869
23062
ece6b5d8a71b 8036747: Fix unchecked lint warnings in java.security.Provider
darcy
parents: 22117
diff changeset
   870
    @SuppressWarnings("unchecked") // Function must actually operate over strings
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   871
    private void implReplaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   872
        legacyChanged = true;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   873
        if (legacyStrings == null) {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
   874
            legacyStrings = new LinkedHashMap<>();
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   875
        } else {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   876
            legacyStrings.replaceAll((BiFunction<? super String, ? super String, ? extends String>) function);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   877
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   878
        super.replaceAll(function);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   879
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   880
23062
ece6b5d8a71b 8036747: Fix unchecked lint warnings in java.security.Provider
darcy
parents: 22117
diff changeset
   881
    @SuppressWarnings("unchecked") // Function must actually operate over strings
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   882
    private Object implMerge(Object key, Object value, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   883
        if ((key instanceof String) && (value instanceof String)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   884
            if (!checkLegacy(key)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            }
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   887
            legacyStrings.merge((String)key, (String)value,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   888
                    (BiFunction<? super String, ? super String, ? extends String>) remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   889
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   890
        return super.merge(key, value, remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   891
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   892
23062
ece6b5d8a71b 8036747: Fix unchecked lint warnings in java.security.Provider
darcy
parents: 22117
diff changeset
   893
    @SuppressWarnings("unchecked") // Function must actually operate over strings
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   894
    private Object implCompute(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   895
        if (key instanceof String) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   896
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   897
                return null;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   898
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   899
            legacyStrings.computeIfAbsent((String) key,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   900
                    (Function<? super String, ? extends String>) remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   901
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   902
        return super.compute(key, remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   903
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   904
23062
ece6b5d8a71b 8036747: Fix unchecked lint warnings in java.security.Provider
darcy
parents: 22117
diff changeset
   905
    @SuppressWarnings("unchecked") // Function must actually operate over strings
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   906
    private Object implComputeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   907
        if (key instanceof String) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   908
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   909
                return null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            }
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   911
            legacyStrings.computeIfAbsent((String) key,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   912
                    (Function<? super String, ? extends String>) mappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   913
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   914
        return super.computeIfAbsent(key, mappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   915
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   916
23062
ece6b5d8a71b 8036747: Fix unchecked lint warnings in java.security.Provider
darcy
parents: 22117
diff changeset
   917
    @SuppressWarnings("unchecked") // Function must actually operate over strings
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   918
    private Object implComputeIfPresent(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   919
        if (key instanceof String) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   920
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   921
                return null;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   922
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   923
            legacyStrings.computeIfPresent((String) key,
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   924
                    (BiFunction<? super String, ? super String, ? extends String>) remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   925
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   926
        return super.computeIfPresent(key, remappingFunction);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   927
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   928
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   929
    private Object implPut(Object key, Object value) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   930
        if ((key instanceof String) && (value instanceof String)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   931
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   932
                return null;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   933
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   934
            legacyStrings.put((String)key, (String)value);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        return super.put(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
21340
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   939
    private Object implPutIfAbsent(Object key, Object value) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   940
        if ((key instanceof String) && (value instanceof String)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   941
            if (!checkLegacy(key)) {
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   942
                return null;
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   943
            }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   944
            legacyStrings.putIfAbsent((String)key, (String)value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   945
        }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   946
        return super.putIfAbsent(key, value);
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   947
    }
17142dadfffe 8025763: Provider does not override new Hashtable methods
ascarpino
parents: 18592
diff changeset
   948
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    private void implClear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        if (legacyStrings != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
            legacyStrings.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        if (legacyMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
            legacyMap.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        if (serviceMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            serviceMap.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        legacyChanged = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        servicesChanged = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        serviceSet = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        super.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        putId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
    // used as key in the serviceMap and legacyMap HashMaps
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
    private static class ServiceKey {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        private final String type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        private final String algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        private final String originalAlgorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        private ServiceKey(String type, String algorithm, boolean intern) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            this.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
            this.originalAlgorithm = algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
            algorithm = algorithm.toUpperCase(ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            this.algorithm = intern ? algorithm.intern() : algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
            return type.hashCode() + algorithm.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
        public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            if (this == obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
            if (obj instanceof ServiceKey == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            ServiceKey other = (ServiceKey)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
            return this.type.equals(other.type)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
                && this.algorithm.equals(other.algorithm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        boolean matches(String type, String algorithm) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
            return (this.type == type) && (this.originalAlgorithm == algorithm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     * Ensure all the legacy String properties are fully parsed into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     * service objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
    private void ensureLegacyParsed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        if ((legacyChanged == false) || (legacyStrings == null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        serviceSet = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        if (legacyMap == null) {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1006
            legacyMap = new LinkedHashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
            legacyMap.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        for (Map.Entry<String,String> entry : legacyStrings.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
            parseLegacyPut(entry.getKey(), entry.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        removeInvalidServices(legacyMap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        legacyChanged = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * Remove all invalid services from the Map. Invalid services can only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     * occur if the legacy properties are inconsistent or incomplete.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
    private void removeInvalidServices(Map<ServiceKey,Service> map) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1022
        for (Iterator<Map.Entry<ServiceKey, Service>> t =
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1023
                map.entrySet().iterator(); t.hasNext(); ) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1024
            Service s = t.next().getValue();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            if (s.isValid() == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
                t.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
    private String[] getTypeAndAlgorithm(String key) {
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 23926
diff changeset
  1032
        int i = key.indexOf('.');
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        if (i < 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
                debug.println("Ignoring invalid entry in provider "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
                        + name + ":" + key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
        String type = key.substring(0, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        String alg = key.substring(i + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        return new String[] {type, alg};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31270
diff changeset
  1045
    private static final String ALIAS_PREFIX = "Alg.Alias.";
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31270
diff changeset
  1046
    private static final String ALIAS_PREFIX_LOWER = "alg.alias.";
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31270
diff changeset
  1047
    private static final int ALIAS_LENGTH = ALIAS_PREFIX.length();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
    private void parseLegacyPut(String name, String value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        if (name.toLowerCase(ENGLISH).startsWith(ALIAS_PREFIX_LOWER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            // e.g. put("Alg.Alias.MessageDigest.SHA", "SHA-1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
            // aliasKey ~ MessageDigest.SHA
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
            String stdAlg = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
            String aliasKey = name.substring(ALIAS_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            String[] typeAndAlg = getTypeAndAlgorithm(aliasKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
            if (typeAndAlg == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
            String type = getEngineName(typeAndAlg[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            String aliasAlg = typeAndAlg[1].intern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            ServiceKey key = new ServiceKey(type, stdAlg, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
            Service s = legacyMap.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            if (s == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
                s = new Service(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
                s.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
                s.algorithm = stdAlg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
                legacyMap.put(key, s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            legacyMap.put(new ServiceKey(type, aliasAlg, true), s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
            s.addAlias(aliasAlg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            String[] typeAndAlg = getTypeAndAlgorithm(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
            if (typeAndAlg == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            int i = typeAndAlg[1].indexOf(' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
            if (i == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
                // e.g. put("MessageDigest.SHA-1", "sun.security.provider.SHA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
                String type = getEngineName(typeAndAlg[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
                String stdAlg = typeAndAlg[1].intern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
                String className = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                ServiceKey key = new ServiceKey(type, stdAlg, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                Service s = legacyMap.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
                if (s == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
                    s = new Service(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
                    s.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
                    s.algorithm = stdAlg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
                    legacyMap.put(key, s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
                s.className = className;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            } else { // attribute
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
                // e.g. put("MessageDigest.SHA-1 ImplementedIn", "Software");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
                String attributeValue = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
                String type = getEngineName(typeAndAlg[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
                String attributeString = typeAndAlg[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
                String stdAlg = attributeString.substring(0, i).intern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
                String attributeName = attributeString.substring(i + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
                // kill additional spaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
                while (attributeName.startsWith(" ")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
                    attributeName = attributeName.substring(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
                attributeName = attributeName.intern();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
                ServiceKey key = new ServiceKey(type, stdAlg, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
                Service s = legacyMap.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
                if (s == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
                    s = new Service(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
                    s.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
                    s.algorithm = stdAlg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
                    legacyMap.put(key, s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
                s.addAttribute(attributeName, attributeValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     * Get the service describing this Provider's implementation of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     * specified type of this algorithm or alias. If no such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     * implementation exists, this method returns null. If there are two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * matching services, one added to this provider using
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * {@link #putService putService()} and one added via {@link #put put()},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     * the service added via {@link #putService putService()} is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     * @param type the type of {@link Service service} requested
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1125
     * (for example, {@code MessageDigest})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     * @param algorithm the case insensitive algorithm name (or alternate
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1127
     * alias) of the service requested (for example, {@code SHA-1})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * @return the service describing this Provider's matching service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     * or null if no such service exists
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * @throws NullPointerException if type or algorithm is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
    public synchronized Service getService(String type, String algorithm) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        // avoid allocating a new key object if possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        ServiceKey key = previousKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        if (key.matches(type, algorithm) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            key = new ServiceKey(type, algorithm, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
            previousKey = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        if (serviceMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
            Service service = serviceMap.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            if (service != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
                return service;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
        ensureLegacyParsed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
        return (legacyMap != null) ? legacyMap.get(key) : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
    // ServiceKey from previous getService() call
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
    // by re-using it if possible we avoid allocating a new object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    // and the toUpperCase() call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
    // re-use will occur e.g. as the framework traverses the provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    // list and queries each provider with the same values until it finds
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
    // a matching service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    private static volatile ServiceKey previousKey =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
                                            new ServiceKey("", "", false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * Get an unmodifiable Set of all services supported by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     * this Provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * @return an unmodifiable Set of all services supported by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     * this Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
    public synchronized Set<Service> getServices() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        checkInitialized();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        if (legacyChanged || servicesChanged) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
            serviceSet = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        if (serviceSet == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
            ensureLegacyParsed();
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
  1179
            Set<Service> set = new LinkedHashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
            if (serviceMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
                set.addAll(serviceMap.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
            if (legacyMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
                set.addAll(legacyMap.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
            serviceSet = Collections.unmodifiableSet(set);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
            servicesChanged = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
        return serviceSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
     * Add a service. If a service of the same type with the same algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
     * name exists and it was added using {@link #putService putService()},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
     * it is replaced by the new service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
     * This method also places information about this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
     * in the provider's Hashtable values in the format described in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
     * <a href="../../../technotes/guides/security/crypto/CryptoSpec.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
     * Java Cryptography Architecture API Specification &amp; Reference </a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     * <p>Also, if there is a security manager, its
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1202
     * {@code checkSecurityAccess} method is called with the string
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1203
     * {@code "putProviderProperty."+name}, where {@code name} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
     * the provider name, to see if it's ok to set this provider's property
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1205
     * values. If the default implementation of {@code checkSecurityAccess}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     * is used (that is, that method is not overriden), then this results in
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1207
     * a call to the security manager's {@code checkPermission} method with
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1208
     * a {@code SecurityPermission("putProviderProperty."+name)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     * permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * @param s the Service to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     * @throws SecurityException
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1214
     *      if a security manager exists and its {@link
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1215
     *      java.lang.SecurityManager#checkSecurityAccess} method denies
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     *      access to set property values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * @throws NullPointerException if s is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
    protected synchronized void putService(Service s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        check("putProviderProperty." + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
            debug.println(name + ".putService(): " + s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
        if (s == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
        if (s.getProvider() != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
            throw new IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
                    ("service.getProvider() must match this Provider object");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
        if (serviceMap == null) {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1234
            serviceMap = new LinkedHashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
        servicesChanged = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
        String type = s.getType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        String algorithm = s.getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        ServiceKey key = new ServiceKey(type, algorithm, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        // remove existing service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
        implRemoveService(serviceMap.get(key));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        serviceMap.put(key, s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
        for (String alias : s.getAliases()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
            serviceMap.put(new ServiceKey(type, alias, true), s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
        putPropertyStrings(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     * Put the string properties for this Service in this Provider's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
     * Hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
    private void putPropertyStrings(Service s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        String type = s.getType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
        String algorithm = s.getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        // use super() to avoid permission check and other processing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        super.put(type + "." + algorithm, s.getClassName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        for (String alias : s.getAliases()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
            super.put(ALIAS_PREFIX + type + "." + alias, algorithm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        for (Map.Entry<UString,String> entry : s.attributes.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
            String key = type + "." + algorithm + " " + entry.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
            super.put(key, entry.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
     * Remove the string properties for this Service from this Provider's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
     * Hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
    private void removePropertyStrings(Service s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        String type = s.getType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
        String algorithm = s.getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
        // use super() to avoid permission check and other processing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
        super.remove(type + "." + algorithm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
        for (String alias : s.getAliases()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
            super.remove(ALIAS_PREFIX + type + "." + alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
        for (Map.Entry<UString,String> entry : s.attributes.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
            String key = type + "." + algorithm + " " + entry.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
            super.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     * Remove a service previously added using
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * {@link #putService putService()}. The specified service is removed from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     * this provider. It will no longer be returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     * {@link #getService getService()} and its information will be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * from this provider's Hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * <p>Also, if there is a security manager, its
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1293
     * {@code checkSecurityAccess} method is called with the string
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1294
     * {@code "removeProviderProperty."+name}, where {@code name} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     * the provider name, to see if it's ok to remove this provider's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
     * properties. If the default implementation of
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1297
     * {@code checkSecurityAccess} is used (that is, that method is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
     * overriden), then this results in a call to the security manager's
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1299
     * {@code checkPermission} method with a
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1300
     * {@code SecurityPermission("removeProviderProperty."+name)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * @param s the Service to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * @throws  SecurityException
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1306
     *          if a security manager exists and its {@link
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1307
     *          java.lang.SecurityManager#checkSecurityAccess} method denies
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
     *          access to remove this provider's properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     * @throws NullPointerException if s is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
    protected synchronized void removeService(Service s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        check("removeProviderProperty." + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
            debug.println(name + ".removeService(): " + s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        if (s == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
        implRemoveService(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
    private void implRemoveService(Service s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
        if ((s == null) || (serviceMap == null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
        String type = s.getType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
        String algorithm = s.getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        ServiceKey key = new ServiceKey(type, algorithm, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        Service oldService = serviceMap.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
        if (s != oldService) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        servicesChanged = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
        serviceMap.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
        for (String alias : s.getAliases()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
            serviceMap.remove(new ServiceKey(type, alias, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
        removePropertyStrings(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
    // Wrapped String that behaves in a case insensitive way for equals/hashCode
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
    private static class UString {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
        final String string;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
        final String lowerString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
        UString(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
            this.string = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
            this.lowerString = s.toLowerCase(ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
            return lowerString.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
        public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
            if (this == obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
            if (obj instanceof UString == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
            UString other = (UString)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
            return lowerString.equals(other.lowerString);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
        public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
            return string;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
    // describe relevant properties of a type of engine
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
    private static class EngineDescription {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
        final String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
        final boolean supportsParameter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
        final String constructorParameterClassName;
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1378
        private volatile Class<?> constructorParameterClass;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
        EngineDescription(String name, boolean sp, String paramName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
            this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
            this.supportsParameter = sp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
            this.constructorParameterClassName = paramName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
        }
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1385
        Class<?> getConstructorParameterClass() throws ClassNotFoundException {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1386
            Class<?> clazz = constructorParameterClass;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
            if (clazz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
                clazz = Class.forName(constructorParameterClassName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
                constructorParameterClass = clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
            return clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
    // built in knowledge of the engine types shipped as part of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
    private static final Map<String,EngineDescription> knownEngines;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
    private static void addEngine(String name, boolean sp, String paramName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        EngineDescription ed = new EngineDescription(name, sp, paramName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        // also index by canonical name to avoid toLowerCase() for some lookups
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
        knownEngines.put(name.toLowerCase(ENGLISH), ed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        knownEngines.put(name, ed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
    static {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1406
        knownEngines = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        // JCA
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
        addEngine("AlgorithmParameterGenerator",        false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
        addEngine("AlgorithmParameters",                false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
        addEngine("KeyFactory",                         false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
        addEngine("KeyPairGenerator",                   false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
        addEngine("KeyStore",                           false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
        addEngine("MessageDigest",                      false, null);
37796
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
  1414
        addEngine("SecureRandom",                       false,
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
  1415
                "java.security.SecureRandomParameters");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
        addEngine("Signature",                          true,  null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
        addEngine("CertificateFactory",                 false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
        addEngine("CertPathBuilder",                    false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
        addEngine("CertPathValidator",                  false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
        addEngine("CertStore",                          false,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
                            "java.security.cert.CertStoreParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
        // JCE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
        addEngine("Cipher",                             true,  null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
        addEngine("ExemptionMechanism",                 false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
        addEngine("Mac",                                true,  null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        addEngine("KeyAgreement",                       true,  null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        addEngine("KeyGenerator",                       false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
        addEngine("SecretKeyFactory",                   false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        // JSSE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
        addEngine("KeyManagerFactory",                  false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
        addEngine("SSLContext",                         false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
        addEngine("TrustManagerFactory",                false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
        // JGSS
23926
ebade3f50c1f 8039853: Provider.Service.newInstance() does not work with current JDK JGSS Mechanisms
weijun
parents: 23735
diff changeset
  1434
        addEngine("GssApiMechanism",                    false, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
        // SASL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
        addEngine("SaslClientFactory",                  false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
        addEngine("SaslServerFactory",                  false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
        // POLICY
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
        addEngine("Policy",                             false,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
                            "java.security.Policy$Parameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
        // CONFIGURATION
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
        addEngine("Configuration",                      false,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
                            "javax.security.auth.login.Configuration$Parameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
        // XML DSig
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
        addEngine("XMLSignatureFactory",                false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
        addEngine("KeyInfoFactory",                     false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
        addEngine("TransformService",                   false, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
        // Smart Card I/O
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
        addEngine("TerminalFactory",                    false,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                            "java.lang.Object");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
    // get the "standard" (mixed-case) engine name for arbitary case engine name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
    // if there is no known engine by that name, return s
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
    private static String getEngineName(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
        // try original case first, usually correct
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
        EngineDescription e = knownEngines.get(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
        if (e == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
            e = knownEngines.get(s.toLowerCase(ENGLISH));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
        return (e == null) ? s : e.name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
     * The description of a security service. It encapsulates the properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
     * of a service and contains a factory method to obtain new implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
     * instances of this service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
     * <p>Each service has a provider that offers the service, a type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
     * an algorithm name, and the name of the class that implements the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
     * service. Optionally, it also includes a list of alternate algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
     * names for this service (aliases) and attributes, which are a map of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
     * (name, value) String pairs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
     * <p>This class defines the methods {@link #supportsParameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
     * supportsParameter()} and {@link #newInstance newInstance()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
     * which are used by the Java security framework when it searches for
25542
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1478
     * suitable services and instantiates them. The valid arguments to those
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
     * methods depend on the type of service. For the service types defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
     * within Java SE, see the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
     * <a href="../../../technotes/guides/security/crypto/CryptoSpec.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
     * Java Cryptography Architecture API Specification &amp; Reference </a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
     * for the valid values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
     * Note that components outside of Java SE can define additional types of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
     * services and their behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
     * <p>Instances of this class are immutable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
    public static class Service {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
        private String type, algorithm, className;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        private final Provider provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        private List<String> aliases;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        private Map<UString,String> attributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
        // Reference to the cached implementation Class object
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1499
        private volatile Reference<Class<?>> classRef;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
        // flag indicating whether this service has its attributes for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
        // supportedKeyFormats or supportedKeyClasses set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
        // if null, the values have not been initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
        // if TRUE, at least one of supportedFormats/Classes is non null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
        private volatile Boolean hasKeyAttributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
        // supported encoding formats
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
        private String[] supportedFormats;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
        // names of the supported key (super) classes
22117
1efafbb25acb 8031302: Fix raw types lint warnings in java.security
darcy
parents: 21979
diff changeset
  1511
        private Class<?>[] supportedClasses;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
        // whether this service has been registered with the Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
        private boolean registered;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1516
        private static final Class<?>[] CLASS0 = new Class<?>[0];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
        // this constructor and these methods are used for parsing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
        // the legacy string properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
        private Service(Provider provider) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
            this.provider = provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
            aliases = Collections.<String>emptyList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
            attributes = Collections.<UString,String>emptyMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
        private boolean isValid() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
            return (type != null) && (algorithm != null) && (className != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
        private void addAlias(String alias) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
            if (aliases.isEmpty()) {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1533
                aliases = new ArrayList<>(2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
            aliases.add(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        void addAttribute(String type, String value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
            if (attributes.isEmpty()) {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1540
                attributes = new HashMap<>(8);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
            attributes.put(new UString(type), value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
         * Construct a new service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
         * @param provider the provider that offers this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
         * @param type the type of this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
         * @param algorithm the algorithm name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
         * @param className the name of the class implementing this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
         * @param aliases List of aliases or null if algorithm has no aliases
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
         * @param attributes Map of attributes or null if this implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
         *                   has no attributes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
         * @throws NullPointerException if provider, type, algorithm, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
         * className is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
        public Service(Provider provider, String type, String algorithm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
                String className, List<String> aliases,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
                Map<String,String> attributes) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
            if ((provider == null) || (type == null) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
                    (algorithm == null) || (className == null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
                throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
            this.provider = provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
            this.type = getEngineName(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
            this.algorithm = algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
            this.className = className;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
            if (aliases == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
                this.aliases = Collections.<String>emptyList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
            } else {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1573
                this.aliases = new ArrayList<>(aliases);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
            if (attributes == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
                this.attributes = Collections.<UString,String>emptyMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
            } else {
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1578
                this.attributes = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
                for (Map.Entry<String,String> entry : attributes.entrySet()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
                    this.attributes.put(new UString(entry.getKey()), entry.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
        /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1586
         * Get the type of this service. For example, {@code MessageDigest}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
         * @return the type of this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
        public final String getType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
            return type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
         * Return the name of the algorithm of this service. For example,
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
  1596
         * {@code SHA-1}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
         * @return the algorithm of this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
        public final String getAlgorithm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
            return algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
         * Return the Provider of this service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
         * @return the Provider of this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
        public final Provider getProvider() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
            return provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
         * Return the name of the class implementing this service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
         * @return the name of the class implementing this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
        public final String getClassName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
            return className;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
        // internal only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
        private final List<String> getAliases() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
            return aliases;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
         * Return the value of the specified attribute or null if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
         * attribute is not set for this Service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
         * @param name the name of the requested attribute
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
         * @return the value of the specified attribute or null if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
         *         attribute is not present
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
         * @throws NullPointerException if name is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
        public final String getAttribute(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
            if (name == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
                throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
            return attributes.get(new UString(name));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
         * Return a new instance of the implementation described by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
         * service. The security provider framework uses this method to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
         * construct implementations. Applications will typically not need
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
         * to call it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
         * <p>The default implementation uses reflection to invoke the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
         * standard constructor for this type of service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
         * Security providers can override this method to implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
         * instantiation in a different way.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
         * For details and the values of constructorParameter that are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
         * valid for the various types of services see the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
         * <a href="../../../technotes/guides/security/crypto/CryptoSpec.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
         * Java Cryptography Architecture API Specification &amp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
         * Reference</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
         * @param constructorParameter the value to pass to the constructor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
         * or null if this type of service does not use a constructorParameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
         * @return a new implementation of this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
         * @throws InvalidParameterException if the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
         * constructorParameter is invalid for this type of service.
25542
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1668
         * @throws NoSuchAlgorithmException if instantiation failed for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
         * any other reason.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
        public Object newInstance(Object constructorParameter)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
                throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
            if (registered == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
                if (provider.getService(type, algorithm) != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
                    throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
                        ("Service not registered with Provider "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
                        + provider.getName() + ": " + this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
                registered = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
            }
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1681
            Class<?> ctrParamClz;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
                EngineDescription cap = knownEngines.get(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
                if (cap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
                    // unknown engine type, use generic code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
                    // this is the code path future for non-core
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
                    // optional packages
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1688
                    ctrParamClz = constructorParameter == null?
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1689
                        null : constructorParameter.getClass();
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1690
                } else {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1691
                    ctrParamClz = cap.constructorParameterClassName == null?
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1692
                        null : Class.forName(cap.constructorParameterClassName);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
                    if (constructorParameter != null) {
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1694
                        if (ctrParamClz == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
                            throw new InvalidParameterException
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1696
                                ("constructorParameter not used with " + type
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1697
                                + " engines");
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1698
                        } else {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1699
                            Class<?> argClass = constructorParameter.getClass();
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1700
                            if (ctrParamClz.isAssignableFrom(argClass) == false) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1701
                                throw new InvalidParameterException
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1702
                                    ("constructorParameter must be instanceof "
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1703
                                    + cap.constructorParameterClassName.replace('$', '.')
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1704
                                    + " for engine type " + type);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1705
                            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
                }
37796
256c45c4af5d 8051408: NIST SP 800-90A SecureRandom implementations
weijun
parents: 32931
diff changeset
  1709
                // constructorParameter can be null if not provided
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 30033
diff changeset
  1710
                return newInstanceUtil(getImplClass(), ctrParamClz, constructorParameter);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
            } catch (NoSuchAlgorithmException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
                throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
            } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
                throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
                    ("Error constructing implementation (algorithm: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
                    + algorithm + ", provider: " + provider.getName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
                    + ", class: " + className + ")", e.getCause());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
                throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
                    ("Error constructing implementation (algorithm: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
                    + algorithm + ", provider: " + provider.getName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
                    + ", class: " + className + ")", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
        // return the implementation Class object for this service
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1727
        private Class<?> getImplClass() throws NoSuchAlgorithmException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
            try {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1729
                Reference<Class<?>> ref = classRef;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1730
                Class<?> clazz = (ref == null) ? null : ref.get();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
                if (clazz == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
                    ClassLoader cl = provider.getClass().getClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
                    if (cl == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
                        clazz = Class.forName(className);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
                        clazz = cl.loadClass(className);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
                    }
25542
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1738
                    if (!Modifier.isPublic(clazz.getModifiers())) {
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1739
                        throw new NoSuchAlgorithmException
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1740
                            ("class configured for " + type + " (provider: " +
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1741
                            provider.getName() + ") is not public.");
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1742
                    }
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
  1743
                    classRef = new WeakReference<>(clazz);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
                return clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
            } catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
                throw new NoSuchAlgorithmException
25542
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1748
                    ("class configured for " + type + " (provider: " +
05badfb785b2 8035004: Provider provides less service
mullan
parents: 24685
diff changeset
  1749
                    provider.getName() + ") cannot be found.", e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
         * Test whether this Service can use the specified parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
         * Returns false if this service cannot use the parameter. Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
         * true if this service can use the parameter, if a fast test is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
         * infeasible, or if the status is unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
         * <p>The security provider framework uses this method with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
         * some types of services to quickly exclude non-matching
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
         * implementations for consideration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
         * Applications will typically not need to call it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
         * <p>For details and the values of parameter that are valid for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
         * various types of services see the top of this class and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
         * <a href="../../../technotes/guides/security/crypto/CryptoSpec.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
         * Java Cryptography Architecture API Specification &amp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
         * Reference</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
         * Security providers can override it to implement their own test.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
         * @param parameter the parameter to test
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
         *
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
  1773
         * @return false if this service cannot use the specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
         * parameter; true if it can possibly use the parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
         * @throws InvalidParameterException if the value of parameter is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
         * invalid for this type of service or if this method cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
         * used with this type of service
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
        public boolean supportsParameter(Object parameter) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
            EngineDescription cap = knownEngines.get(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
            if (cap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
                // unknown engine type, return true by default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
            if (cap.supportsParameter == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
                throw new InvalidParameterException("supportsParameter() not "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
                    + "used with " + type + " engines");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
            // allow null for keys without attributes for compatibility
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
            if ((parameter != null) && (parameter instanceof Key == false)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
                throw new InvalidParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
                    ("Parameter must be instanceof Key for engine " + type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
            if (hasKeyAttributes() == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
            if (parameter == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
            Key key = (Key)parameter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
            if (supportsKeyFormat(key)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
            if (supportsKeyClass(key)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
         * Return whether this service has its Supported* properties for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
         * keys defined. Parses the attributes if not yet initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
        private boolean hasKeyAttributes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
            Boolean b = hasKeyAttributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
            if (b == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
                synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
                    String s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
                    s = getAttribute("SupportedKeyFormats");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
                    if (s != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
                        supportedFormats = s.split("\\|");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
                    s = getAttribute("SupportedKeyClasses");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
                    if (s != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
                        String[] classNames = s.split("\\|");
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1827
                        List<Class<?>> classList =
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
  1828
                            new ArrayList<>(classNames.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
                        for (String className : classNames) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1830
                            Class<?> clazz = getKeyClass(className);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
                            if (clazz != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
                                classList.add(clazz);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
                        supportedClasses = classList.toArray(CLASS0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
                    boolean bool = (supportedFormats != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
                        || (supportedClasses != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
                    b = Boolean.valueOf(bool);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
                    hasKeyAttributes = b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
            return b.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
        // get the key class object of the specified name
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1847
        private Class<?> getKeyClass(String name) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
                return Class.forName(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
            } catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
                ClassLoader cl = provider.getClass().getClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
                if (cl != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
                    return cl.loadClass(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
            } catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
        private boolean supportsKeyFormat(Key key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
            if (supportedFormats == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
            String format = key.getFormat();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
            if (format == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
            for (String supportedFormat : supportedFormats) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
                if (supportedFormat.equals(format)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
        private boolean supportsKeyClass(Key key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
            if (supportedClasses == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
            }
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1884
            Class<?> keyClass = key.getClass();
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
  1885
            for (Class<?> clazz : supportedClasses) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
                if (clazz.isAssignableFrom(keyClass)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
         * Return a String representation of this service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
         * @return a String representation of this service.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
        public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
            String aString = aliases.isEmpty()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
                ? "" : "\r\n  aliases: " + aliases.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
            String attrs = attributes.isEmpty()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
                ? "" : "\r\n  attributes: " + attributes.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
            return provider.getName() + ": " + type + "." + algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
                + " -> " + className + aString + attrs + "\r\n";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
}