src/share/classes/sun/util/resources/OpenListResourceBundle.java

Print this page
rev 5615 : 6336885: RFE: Locale Data Deployment Enhancements
4609153: Provide locale data for Indic locales
5104387: Support for gl_ES locale (galician language)
6337471: desktop/system locale preferences support
7056139: (cal) SPI support for locale-dependent Calendar parameters
7058206: Provide CalendarData SPI for week params and display field value names
7073852: Support multiple scripts for digits and decimal symbols per locale
7079560: [Fmt-Da] Context dependent month names support in SimpleDateFormat
7171324: getAvailableLocales() of locale sensitive services should return the actual availability of locales
7151414: (cal) Support calendar type identification
7168528: LocaleServiceProvider needs to be aware of Locale extensions
7171372: (cal) locale's default Calendar should be created if unknown calendar is specified
Summary: JEP 127: Improve Locale Data Packaging and Adopt Unicode CLDR Data (part 1 w/o Jigsaw. by Naoto Sato and Masayoshi Okutsu)


  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 
  41 package sun.util.resources;
  42 
  43 import java.util.Enumeration;
  44 import java.util.HashMap;

  45 import java.util.Map;
  46 import java.util.ResourceBundle;
  47 import java.util.Set;
  48 import sun.util.ResourceBundleEnumeration;
  49 
  50 /**
  51  * Subclass of <code>ResourceBundle</code> which mimics
  52  * <code>ListResourceBundle</code>, but provides more hooks
  53  * for specialized subclass behavior. For general description,
  54  * see {@link java.util.ListResourceBundle}.
  55  * <p>
  56  * This class leaves handleGetObject non-final, and
  57  * adds a method createMap which allows subclasses to
  58  * use specialized Map implementations.
  59  */
  60 public abstract class OpenListResourceBundle extends ResourceBundle {
  61     /**
  62      * Sole constructor.  (For invocation by subclass constructors, typically
  63      * implicit.)
  64      */


  76     }
  77 
  78     /**
  79      * Implementation of ResourceBundle.getKeys.
  80      */
  81     public Enumeration<String> getKeys() {
  82         ResourceBundle parent = this.parent;
  83         return new ResourceBundleEnumeration(handleGetKeys(),
  84                 (parent != null) ? parent.getKeys() : null);
  85     }
  86 
  87     /**
  88      * Returns a set of keys provided in this resource bundle
  89      */
  90     public Set<String> handleGetKeys() {
  91         loadLookupTablesIfNecessary();
  92 
  93         return lookup.keySet();
  94     }
  95 


















  96     /**
  97      * Returns the parent bundle
  98      */
  99     public OpenListResourceBundle getParent() {
 100         return (OpenListResourceBundle)parent;
 101     }
 102 
 103     /**
 104      * See ListResourceBundle class description.
 105      */
 106     abstract protected Object[][] getContents();
 107 
 108     /**
 109      * Load lookup tables if they haven't been loaded already.
 110      */
 111     void loadLookupTablesIfNecessary() {
 112         if (lookup == null) {
 113             loadLookup();
 114         }
 115     }
 116 
 117     /**
 118      * We lazily load the lookup hashtable.  This function does the
 119      * loading.
 120      */
 121     private synchronized void loadLookup() {
 122         if (lookup != null) {
 123             return;
 124         }
 125 
 126         Object[][] contents = getContents();
 127         Map<String, Object> temp = createMap(contents.length);
 128         for (int i = 0; i < contents.length; ++i) {
 129             // key must be non-null String, value must be non-null
 130             String key = (String) contents[i][0];
 131             Object value = contents[i][1];
 132             if (key == null || value == null) {
 133                 throw new NullPointerException();
 134             }
 135             temp.put(key, value);
 136         }


 137         lookup = temp;
 138     }


 139 
 140     /**
 141      * Lets subclasses provide specialized Map implementations.
 142      * Default uses HashMap.
 143      */
 144     protected Map<String, Object> createMap(int size) {
 145         return new HashMap<>(size);
 146     }
 147 
 148     private Map<String, Object> lookup = null;

 149 }


  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 
  41 package sun.util.resources;
  42 
  43 import java.util.Enumeration;
  44 import java.util.HashMap;
  45 import java.util.HashSet;
  46 import java.util.Map;
  47 import java.util.ResourceBundle;
  48 import java.util.Set;
  49 import sun.util.ResourceBundleEnumeration;
  50 
  51 /**
  52  * Subclass of <code>ResourceBundle</code> which mimics
  53  * <code>ListResourceBundle</code>, but provides more hooks
  54  * for specialized subclass behavior. For general description,
  55  * see {@link java.util.ListResourceBundle}.
  56  * <p>
  57  * This class leaves handleGetObject non-final, and
  58  * adds a method createMap which allows subclasses to
  59  * use specialized Map implementations.
  60  */
  61 public abstract class OpenListResourceBundle extends ResourceBundle {
  62     /**
  63      * Sole constructor.  (For invocation by subclass constructors, typically
  64      * implicit.)
  65      */


  77     }
  78 
  79     /**
  80      * Implementation of ResourceBundle.getKeys.
  81      */
  82     public Enumeration<String> getKeys() {
  83         ResourceBundle parent = this.parent;
  84         return new ResourceBundleEnumeration(handleGetKeys(),
  85                 (parent != null) ? parent.getKeys() : null);
  86     }
  87 
  88     /**
  89      * Returns a set of keys provided in this resource bundle
  90      */
  91     public Set<String> handleGetKeys() {
  92         loadLookupTablesIfNecessary();
  93 
  94         return lookup.keySet();
  95     }
  96 
  97     @Override
  98     public Set<String> keySet() {
  99         if (keyset != null) {
 100             return keyset;
 101         }
 102         Set<String> ks = new HashSet<>();
 103         ks.addAll(handleGetKeys());
 104         if (parent != null) {
 105             ks.addAll(parent.keySet());
 106         }
 107         synchronized (this) {
 108             if (keyset == null) {
 109                 keyset = ks;
 110             }
 111         }
 112         return keyset;
 113     }
 114 
 115     /**
 116      * Returns the parent bundle
 117      */
 118     public OpenListResourceBundle getParent() {
 119         return (OpenListResourceBundle)parent;
 120     }
 121 
 122     /**
 123      * See ListResourceBundle class description.
 124      */
 125     abstract protected Object[][] getContents();
 126 
 127     /**
 128      * Load lookup tables if they haven't been loaded already.
 129      */
 130     void loadLookupTablesIfNecessary() {
 131         if (lookup == null) {
 132             loadLookup();
 133         }
 134     }
 135 
 136     /**
 137      * We lazily load the lookup hashtable.  This function does the
 138      * loading.
 139      */
 140     private void loadLookup() {




 141         Object[][] contents = getContents();
 142         Map<String, Object> temp = createMap(contents.length);
 143         for (int i = 0; i < contents.length; ++i) {
 144             // key must be non-null String, value must be non-null
 145             String key = (String) contents[i][0];
 146             Object value = contents[i][1];
 147             if (key == null || value == null) {
 148                 throw new NullPointerException();
 149             }
 150             temp.put(key, value);
 151         }
 152         synchronized (this) {
 153             if (lookup == null) {
 154                 lookup = temp;
 155             }
 156         }
 157     }
 158 
 159     /**
 160      * Lets subclasses provide specialized Map implementations.
 161      * Default uses HashMap.
 162      */
 163     protected Map<String, Object> createMap(int size) {
 164         return new HashMap<>(size);
 165     }
 166 
 167     private volatile Map<String, Object> lookup = null;
 168     private volatile Set<String> keyset;
 169 }