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