1 /*
   2  * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  28  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  29  *
  30  * The original version of this source code and documentation
  31  * is copyrighted and owned by Taligent, Inc., a wholly-owned
  32  * subsidiary of IBM. These materials are provided under terms
  33  * of a License Agreement between Taligent and Sun. This technology
  34  * is protected by multiple US and International patents.
  35  *
  36  * This notice and attribution to Taligent may not be removed.
  37  * Taligent is a registered trademark of Taligent, Inc.
  38  */
  39 
  40 package java.util;
  41 
  42 import java.io.InputStream;
  43 import java.io.InputStreamReader;
  44 import java.io.Reader;
  45 import java.io.IOException;
  46 import java.nio.charset.Charset;
  47 import java.nio.charset.MalformedInputException;
  48 import java.nio.charset.StandardCharsets;
  49 import java.nio.charset.UnmappableCharacterException;
  50 import java.security.AccessController;
  51 import java.util.Locale;
  52 import sun.security.action.GetPropertyAction;
  53 import sun.util.PropertyResourceBundleCharset;
  54 import sun.util.ResourceBundleEnumeration;
  55 
  56 /**
  57  * <code>PropertyResourceBundle</code> is a concrete subclass of
  58  * <code>ResourceBundle</code> that manages resources for a locale
  59  * using a set of static strings from a property file. See
  60  * {@link ResourceBundle ResourceBundle} for more information about resource
  61  * bundles.
  62  *
  63  * <p>
  64  * Unlike other types of resource bundle, you don't subclass
  65  * <code>PropertyResourceBundle</code>.  Instead, you supply properties
  66  * files containing the resource data.  <code>ResourceBundle.getBundle</code>
  67  * will automatically look for the appropriate properties file and create a
  68  * <code>PropertyResourceBundle</code> that refers to it. See
  69  * {@link ResourceBundle#getBundle(java.lang.String, java.util.Locale, java.lang.ClassLoader) ResourceBundle.getBundle}
  70  * for a complete description of the search and instantiation strategy.
  71  *
  72  * <p>
  73  * The following <a name="sample">example</a> shows a member of a resource
  74  * bundle family with the base name "MyResources".
  75  * The text defines the bundle "MyResources_de",
  76  * the German member of the bundle family.
  77  * This member is based on <code>PropertyResourceBundle</code>, and the text
  78  * therefore is the content of the file "MyResources_de.properties"
  79  * (a related <a href="ListResourceBundle.html#sample">example</a> shows
  80  * how you can add bundles to this family that are implemented as subclasses
  81  * of <code>ListResourceBundle</code>).
  82  * The keys in this example are of the form "s1" etc. The actual
  83  * keys are entirely up to your choice, so long as they are the same as
  84  * the keys you use in your program to retrieve the objects from the bundle.
  85  * Keys are case-sensitive.
  86  * <blockquote>
  87  * <pre>
  88  * # MessageFormat pattern
  89  * s1=Die Platte \"{1}\" enth&auml;lt {0}.
  90  *
  91  * # location of {0} in pattern
  92  * s2=1
  93  *
  94  * # sample disk name
  95  * s3=Meine Platte
  96  *
  97  * # first ChoiceFormat choice
  98  * s4=keine Dateien
  99  *
 100  * # second ChoiceFormat choice
 101  * s5=eine Datei
 102  *
 103  * # third ChoiceFormat choice
 104  * s6={0,number} Dateien
 105  *
 106  * # sample date
 107  * s7=3. M&auml;rz 1996
 108  * </pre>
 109  * </blockquote>
 110  *
 111  * <p>
 112  * The implementation of a {@code PropertyResourceBundle} subclass must be
 113  * thread-safe if it's simultaneously used by multiple threads. The default
 114  * implementations of the non-abstract methods in this class are thread-safe.
 115  *
 116  * <p>
 117  * <strong>Note:</strong> PropertyResourceBundle can be constructed either
 118  * from an InputStream or a Reader, which represents a property file.
 119  * Constructing a PropertyResourceBundle instance from an InputStream requires
 120  * that the input stream be encoded in UTF-8. By default, if a
 121  * {@link java.nio.charset.MalformedInputException} or an
 122  * {@link java.nio.charset.UnmappableCharacterException} occurs on reading the
 123  * input stream, then the PropertyResourceBundle instance resets to the state
 124  * before the exception, re-reads the input stream in {@code ISO-8859-1}, and
 125  * continues reading. If the system property
 126  * {@code java.util.PropertyResourceBundle.encoding} is set to either
 127  * "ISO-8859-1" or "UTF-8", the input stream is solely read in that encoding,
 128  * and throws the exception if it encounters an invalid sequence.
 129  * If "ISO-8859-1" is specified, characters that cannot be represented in
 130  * ISO-8859-1 encoding must be represented by Unicode Escapes as defined in section
 131  * 3.3 of <cite>The Java&trade; Language Specification</cite>
 132  * whereas the other constructor which takes a Reader does not have that limitation.
 133  * Other encoding values are ignored for this system property.
 134  *
 135  * @see ResourceBundle
 136  * @see ListResourceBundle
 137  * @see Properties
 138  * @since 1.1
 139  */
 140 public class PropertyResourceBundle extends ResourceBundle {
 141 
 142     // Check whether the strict encoding is specified.
 143     // The possible encoding is either "ISO-8859-1" or "UTF-8".
 144     private static final String encoding =
 145         AccessController.doPrivileged(
 146             new GetPropertyAction("java.util.PropertyResourceBundle.encoding", ""))
 147         .toUpperCase(Locale.ROOT);
 148 
 149     /**
 150      * Creates a property resource bundle from an {@link java.io.InputStream
 151     * InputStream}. This constructor reads the property file in UTF-8 by default.
 152     * If a {@link java.nio.charset.MalformedInputException} or an
 153     * {@link java.nio.charset.UnmappableCharacterException} occurs on reading the
 154     * input stream, then the PropertyResourceBundle instance resets to the state
 155     * before the exception, re-reads the input stream in {@code ISO-8859-1} and
 156     * continues reading. If the system property
 157     * {@code java.util.PropertyResourceBundle.encoding} is set to either
 158     * "ISO-8859-1" or "UTF-8", the input stream is solely read in that encoding,
 159     * and throws the exception if it encounters an invalid sequence. Other
 160     * encoding values are ignored for this system property.
 161      *
 162      * @param stream an InputStream that represents a property file
 163      *        to read from.
 164      * @throws IOException if an I/O error occurs
 165      * @throws NullPointerException if <code>stream</code> is null
 166      * @throws IllegalArgumentException if {@code stream} contains a
 167      *     malformed Unicode escape sequence.
 168      * @throws MalformedInputException if the system property
 169      *     {@code java.util.PropertyResourceBundle.encoding} is set to "UTF-8"
 170      *     and {@code stream} contains an invalid UTF-8 byte sequence.
 171      * @throws UnmappableCharacterException if the system property
 172      *     {@code java.util.PropertyResourceBundle.encoding} is set to "UTF-8"
 173      *     and {@code stream} contains an unmappable UTF-8 byte sequence.
 174      */
 175     @SuppressWarnings({"unchecked", "rawtypes"})
 176     public PropertyResourceBundle (InputStream stream) throws IOException {
 177         this(new InputStreamReader(stream,
 178             "ISO-8859-1".equals(encoding) ?
 179                 StandardCharsets.ISO_8859_1.newDecoder() :
 180                 new PropertyResourceBundleCharset("UTF-8".equals(encoding)).newDecoder()));
 181     }
 182 
 183     /**
 184      * Creates a property resource bundle from a {@link java.io.Reader
 185      * Reader}.  Unlike the constructor
 186      * {@link #PropertyResourceBundle(java.io.InputStream) PropertyResourceBundle(InputStream)},
 187      * there is no limitation as to the encoding of the input property file.
 188      *
 189      * @param reader a Reader that represents a property file to
 190      *        read from.
 191      * @throws IOException if an I/O error occurs
 192      * @throws NullPointerException if <code>reader</code> is null
 193      * @throws IllegalArgumentException if a malformed Unicode escape sequence appears
 194      *     from {@code reader}.
 195      * @since 1.6
 196      */
 197     @SuppressWarnings({"unchecked", "rawtypes"})
 198     public PropertyResourceBundle (Reader reader) throws IOException {
 199         Properties properties = new Properties();
 200         properties.load(reader);
 201         lookup = new HashMap(properties);
 202     }
 203 
 204     // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
 205     public Object handleGetObject(String key) {
 206         if (key == null) {
 207             throw new NullPointerException();
 208         }
 209         return lookup.get(key);
 210     }
 211 
 212     /**
 213      * Returns an <code>Enumeration</code> of the keys contained in
 214      * this <code>ResourceBundle</code> and its parent bundles.
 215      *
 216      * @return an <code>Enumeration</code> of the keys contained in
 217      *         this <code>ResourceBundle</code> and its parent bundles.
 218      * @see #keySet()
 219      */
 220     public Enumeration<String> getKeys() {
 221         ResourceBundle parent = this.parent;
 222         return new ResourceBundleEnumeration(lookup.keySet(),
 223                 (parent != null) ? parent.getKeys() : null);
 224     }
 225 
 226     /**
 227      * Returns a <code>Set</code> of the keys contained
 228      * <em>only</em> in this <code>ResourceBundle</code>.
 229      *
 230      * @return a <code>Set</code> of the keys contained only in this
 231      *         <code>ResourceBundle</code>
 232      * @since 1.6
 233      * @see #keySet()
 234      */
 235     protected Set<String> handleKeySet() {
 236         return lookup.keySet();
 237     }
 238 
 239     // ==================privates====================
 240 
 241     private Map<String,Object> lookup;
 242 }