ResourceBundle.java 21.7 KB
Newer Older
Tom Tromey committed
1
/* ResourceBundle -- aids in loading resource bundles
2
   Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006
Tom Tromey committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
   Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package java.util;

import gnu.classpath.VMStackWalker;

44 45
import gnu.java.lang.CPStringBuilder;

Tom Tromey committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
import java.io.IOException;
import java.io.InputStream;

/**
 * A resource bundle contains locale-specific data. If you need localized
 * data, you can load a resource bundle that matches the locale with
 * <code>getBundle</code>. Now you can get your object by calling
 * <code>getObject</code> or <code>getString</code> on that bundle.
 *
 * <p>When a bundle is demanded for a specific locale, the ResourceBundle
 * is searched in following order (<i>def. language</i> stands for the
 * two letter ISO language code of the default locale (see
 * <code>Locale.getDefault()</code>).
 *
<pre>baseName_<i>language code</i>_<i>country code</i>_<i>variant</i>
baseName_<i>language code</i>_<i>country code</i>
baseName_<i>language code</i>
baseName_<i>def. language</i>_<i>def. country</i>_<i>def. variant</i>
baseName_<i>def. language</i>_<i>def. country</i>
baseName_<i>def. language</i>
baseName</pre>
 *
 * <p>A bundle is backed up by less specific bundles (omitting variant, country
 * or language). But it is not backed up by the default language locale.
 *
 * <p>If you provide a bundle for a given locale, say
 * <code>Bundle_en_UK_POSIX</code>, you must also provide a bundle for
 * all sub locales, ie. <code>Bundle_en_UK</code>, <code>Bundle_en</code>, and
 * <code>Bundle</code>.
 *
 * <p>When a bundle is searched, we look first for a class with the given
 * name, then for a file with <code>.properties</code> extension in the
 * classpath. The name must be a fully qualified classname (with dots as
 * path separators).
 *
 * <p>(Note: This implementation always backs up the class with a properties
 * file if that is existing, but you shouldn't rely on this, if you want to
 * be compatible to the standard JDK.)
 *
 * @author Jochen Hoenicke
 * @author Eric Blake (ebb9@email.byu.edu)
 * @see Locale
 * @see ListResourceBundle
 * @see PropertyResourceBundle
 * @since 1.1
 * @status updated to 1.4
 */
public abstract class ResourceBundle
{
  /**
96 97
   * Maximum size of our cache of <code>ResourceBundle</code>s keyed by
   * {@link BundleKey} instances.
98
   *
99 100 101 102 103
   * @see BundleKey
   */
  private static final int CACHE_SIZE = 100;

  /**
Tom Tromey committed
104 105 106 107 108 109 110 111 112 113 114 115 116
   * The parent bundle. This is consulted when you call getObject and there
   * is no such resource in the current bundle. This field may be null.
   */
  protected ResourceBundle parent;

  /**
   * The locale of this resource bundle. You can read this with
   * <code>getLocale</code> and it is automatically set in
   * <code>getBundle</code>.
   */
  private Locale locale;

  /**
117 118 119 120 121 122
   * A VM-wide cache of resource bundles already fetched.
   * <p>
   * This {@link Map} is a Least Recently Used (LRU) cache, of the last
   * {@link #CACHE_SIZE} accessed <code>ResourceBundle</code>s keyed by the
   * tuple: default locale, resource-bundle name, resource-bundle locale, and
   * classloader.
123
   *
124
   * @see BundleKey
Tom Tromey committed
125
   */
126 127
  private static Map<BundleKey,Object> bundleCache =
    new LinkedHashMap<BundleKey,Object>(CACHE_SIZE + 1, 0.75F, true)
128
  {
129
    public boolean removeEldestEntry(Map.Entry<BundleKey,Object> entry)
130 131 132 133
    {
      return size() > CACHE_SIZE;
    }
  };
Tom Tromey committed
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

  /**
   * The constructor. It does nothing special.
   */
  public ResourceBundle()
  {
  }

  /**
   * Get a String from this resource bundle. Since most localized Objects
   * are Strings, this method provides a convenient way to get them without
   * casting.
   *
   * @param key the name of the resource
   * @throws MissingResourceException if the resource can't be found
   * @throws NullPointerException if key is null
   * @throws ClassCastException if resource is not a string
   */
  public final String getString(String key)
  {
    return (String) getObject(key);
  }

  /**
   * Get an array of Strings from this resource bundle. This method
   * provides a convenient way to get it without casting.
   *
   * @param key the name of the resource
   * @throws MissingResourceException if the resource can't be found
   * @throws NullPointerException if key is null
   * @throws ClassCastException if resource is not a string
   */
  public final String[] getStringArray(String key)
  {
    return (String[]) getObject(key);
  }

  /**
   * Get an object from this resource bundle. This will call
   * <code>handleGetObject</code> for this resource and all of its parents,
   * until it finds a non-null resource.
   *
   * @param key the name of the resource
   * @throws MissingResourceException if the resource can't be found
   * @throws NullPointerException if key is null
   */
  public final Object getObject(String key)
  {
    for (ResourceBundle bundle = this; bundle != null; bundle = bundle.parent)
      {
        Object o = bundle.handleGetObject(key);
        if (o != null)
          return o;
      }

    String className = getClass().getName();
    throw new MissingResourceException("Key '" + key
191 192
                                       + "'not found in Bundle: "
                                       + className, className, key);
Tom Tromey committed
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
  }

  /**
   * Return the actual locale of this bundle. You can use it after calling
   * getBundle, to know if the bundle for the desired locale was loaded or
   * if the fall back was used.
   *
   * @return the bundle's locale
   */
  public Locale getLocale()
  {
    return locale;
  }

  /**
   * Set the parent of this bundle. The parent is consulted when you call
   * getObject and there is no such resource in the current bundle.
   *
   * @param parent the parent of this bundle
   */
  protected void setParent(ResourceBundle parent)
  {
    this.parent = parent;
  }

  /**
   * Get the appropriate ResourceBundle for the default locale. This is like
   * calling <code>getBundle(baseName, Locale.getDefault(),
   * getClass().getClassLoader()</code>, except that any security check of
   * getClassLoader won't fail.
   *
   * @param baseName the name of the ResourceBundle
   * @return the desired resource bundle
   * @throws MissingResourceException if the resource bundle can't be found
   * @throws NullPointerException if baseName is null
   */
  public static ResourceBundle getBundle(String baseName)
  {
    ClassLoader cl = VMStackWalker.getCallingClassLoader();
    if (cl == null)
      cl = ClassLoader.getSystemClassLoader();
    return getBundle(baseName, Locale.getDefault(), cl);
  }

  /**
   * Get the appropriate ResourceBundle for the given locale. This is like
   * calling <code>getBundle(baseName, locale,
   * getClass().getClassLoader()</code>, except that any security check of
   * getClassLoader won't fail.
   *
   * @param baseName the name of the ResourceBundle
   * @param locale A locale
   * @return the desired resource bundle
   * @throws MissingResourceException if the resource bundle can't be found
   * @throws NullPointerException if baseName or locale is null
   */
  public static ResourceBundle getBundle(String baseName, Locale locale)
  {
    ClassLoader cl = VMStackWalker.getCallingClassLoader();
    if (cl == null)
      cl = ClassLoader.getSystemClassLoader();
    return getBundle(baseName, locale, cl);
  }

  /** Cache key for the ResourceBundle cache.  Resource bundles are keyed
      by the combination of bundle name, locale, and class loader. */
  private static class BundleKey
  {
261
    Locale defaultLocale;
Tom Tromey committed
262 263 264 265 266 267 268
    String baseName;
    Locale locale;
    ClassLoader classLoader;
    int hashcode;

    BundleKey() {}

269
    BundleKey(Locale dl, String s, Locale l, ClassLoader cl)
Tom Tromey committed
270
    {
271
      set(dl, s, l, cl);
Tom Tromey committed
272
    }
273

274
    void set(Locale dl, String s, Locale l, ClassLoader cl)
Tom Tromey committed
275
    {
276
      defaultLocale = dl;
Tom Tromey committed
277 278 279
      baseName = s;
      locale = l;
      classLoader = cl;
280 281
      hashcode = defaultLocale.hashCode() ^ baseName.hashCode()
          ^ locale.hashCode() ^ classLoader.hashCode();
Tom Tromey committed
282
    }
283

Tom Tromey committed
284 285 286 287
    public int hashCode()
    {
      return hashcode;
    }
288

Tom Tromey committed
289 290 291 292 293
    public boolean equals(Object o)
    {
      if (! (o instanceof BundleKey))
        return false;
      BundleKey key = (BundleKey) o;
294 295 296 297 298
      return hashcode == key.hashcode
          && defaultLocale.equals(key.defaultLocale)
          && baseName.equals(key.baseName)
          && locale.equals(key.locale)
          && classLoader.equals(key.classLoader);
299
    }
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314

    public String toString()
    {
      CPStringBuilder builder = new CPStringBuilder(getClass().getName());
      builder.append("[defaultLocale=");
      builder.append(defaultLocale);
      builder.append(",baseName=");
      builder.append(baseName);
      builder.append(",locale=");
      builder.append(locale);
      builder.append(",classLoader=");
      builder.append(classLoader);
      builder.append("]");
      return builder.toString();
    }
Tom Tromey committed
315
  }
316

Tom Tromey committed
317 318
  /** A cache lookup key. This avoids having to a new one for every
   *  getBundle() call. */
319
  private static final BundleKey lookupKey = new BundleKey();
320

Tom Tromey committed
321
  /** Singleton cache entry to represent previous failed lookups. */
322
  private static final Object nullEntry = new Object();
Tom Tromey committed
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385

  /**
   * Get the appropriate ResourceBundle for the given locale. The following
   * strategy is used:
   *
   * <p>A sequence of candidate bundle names are generated, and tested in
   * this order, where the suffix 1 means the string from the specified
   * locale, and the suffix 2 means the string from the default locale:</p>
   *
   * <ul>
   * <li>baseName + "_" + language1 + "_" + country1 + "_" + variant1</li>
   * <li>baseName + "_" + language1 + "_" + country1</li>
   * <li>baseName + "_" + language1</li>
   * <li>baseName + "_" + language2 + "_" + country2 + "_" + variant2</li>
   * <li>baseName + "_" + language2 + "_" + country2</li>
   * <li>baseName + "_" + language2</li>
   * <li>baseName</li>
   * </ul>
   *
   * <p>In the sequence, entries with an empty string are ignored. Next,
   * <code>getBundle</code> tries to instantiate the resource bundle:</p>
   *
   * <ul>
   * <li>First, an attempt is made to load a class in the specified classloader
   * which is a subclass of ResourceBundle, and which has a public constructor
   * with no arguments, via reflection.</li>
   * <li>Next, a search is made for a property resource file, by replacing
   * '.' with '/' and appending ".properties", and using
   * ClassLoader.getResource(). If a file is found, then a
   * PropertyResourceBundle is created from the file's contents.</li>
   * </ul>
   * If no resource bundle was found, a MissingResourceException is thrown.
   *
   * <p>Next, the parent chain is implemented. The remaining candidate names
   * in the above sequence are tested in a similar manner, and if any results
   * in a resource bundle, it is assigned as the parent of the first bundle
   * using the <code>setParent</code> method (unless the first bundle already
   * has a parent).</p>
   *
   * <p>For example, suppose the following class and property files are
   * provided: MyResources.class, MyResources_fr_CH.properties,
   * MyResources_fr_CH.class, MyResources_fr.properties,
   * MyResources_en.properties, and MyResources_es_ES.class. The contents of
   * all files are valid (that is, public non-abstract subclasses of
   * ResourceBundle with public nullary constructors for the ".class" files,
   * syntactically correct ".properties" files). The default locale is
   * Locale("en", "UK").</p>
   *
   * <p>Calling getBundle with the shown locale argument values instantiates
   * resource bundles from the following sources:</p>
   *
   * <ul>
   * <li>Locale("fr", "CH"): result MyResources_fr_CH.class, parent
   *   MyResources_fr.properties, parent MyResources.class</li>
   * <li>Locale("fr", "FR"): result MyResources_fr.properties, parent
   *   MyResources.class</li>
   * <li>Locale("de", "DE"): result MyResources_en.properties, parent
   *   MyResources.class</li>
   * <li>Locale("en", "US"): result MyResources_en.properties, parent
   *   MyResources.class</li>
   * <li>Locale("es", "ES"): result MyResources_es_ES.class, parent
   *   MyResources.class</li>
   * </ul>
386
   *
Tom Tromey committed
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
   * <p>The file MyResources_fr_CH.properties is never used because it is hidden
   * by MyResources_fr_CH.class.</p>
   *
   * @param baseName the name of the ResourceBundle
   * @param locale A locale
   * @param classLoader a ClassLoader
   * @return the desired resource bundle
   * @throws MissingResourceException if the resource bundle can't be found
   * @throws NullPointerException if any argument is null
   * @since 1.2
   */
  // This method is synchronized so that the cache is properly
  // handled.
  public static synchronized ResourceBundle getBundle
    (String baseName, Locale locale, ClassLoader classLoader)
  {
    Locale defaultLocale = Locale.getDefault();
    // This will throw NullPointerException if any arguments are null.
405
    lookupKey.set(defaultLocale, baseName, locale, classLoader);
Tom Tromey committed
406 407
    Object obj = bundleCache.get(lookupKey);
    if (obj instanceof ResourceBundle)
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
      return (ResourceBundle) obj;

    if (obj == nullEntry)
      throw new MissingResourceException("Bundle " + baseName
                                         + " not found for locale " + locale
                                         + " by classloader " + classLoader,
                                         baseName, "");
    // First, look for a bundle for the specified locale. We don't want
    // the base bundle this time.
    boolean wantBase = locale.equals(defaultLocale);
    ResourceBundle bundle = tryBundle(baseName, locale, classLoader, wantBase);
    // Try the default locale if neccessary.
    if (bundle == null && ! wantBase)
      bundle = tryBundle(baseName, defaultLocale, classLoader, true);

    BundleKey key = new BundleKey(defaultLocale, baseName, locale, classLoader);
    if (bundle == null)
Tom Tromey committed
425
      {
426 427 428 429 430 431
        // Cache the fact that this lookup has previously failed.
        bundleCache.put(key, nullEntry);
        throw new MissingResourceException("Bundle " + baseName
                                           + " not found for locale " + locale
                                           + " by classloader " + classLoader,
                                           baseName, "");
Tom Tromey committed
432
      }
433 434 435
    // Cache the result and return it.
    bundleCache.put(key, bundle);
    return bundle;
Tom Tromey committed
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
  }

  /**
   * Override this method to provide the resource for a keys. This gets
   * called by <code>getObject</code>. If you don't have a resource
   * for the given key, you should return null instead throwing a
   * MissingResourceException. You don't have to ask the parent, getObject()
   * already does this; nor should you throw a MissingResourceException.
   *
   * @param key the key of the resource
   * @return the resource for the key, or null if not in bundle
   * @throws NullPointerException if key is null
   */
  protected abstract Object handleGetObject(String key);

  /**
   * This method should return all keys for which a resource exists; you
   * should include the enumeration of any parent's keys, after filtering out
   * duplicates.
   *
   * @return an enumeration of the keys
   */
458
  public abstract Enumeration<String> getKeys();
Tom Tromey committed
459 460 461 462 463 464 465 466 467 468 469 470 471 472

  /**
   * Tries to load a class or a property file with the specified name.
   *
   * @param localizedName the name
   * @param classloader the classloader
   * @return the resource bundle if it was loaded, otherwise the backup
   */
  private static ResourceBundle tryBundle(String localizedName,
                                          ClassLoader classloader)
  {
    ResourceBundle bundle = null;
    try
      {
473
        Class<?> rbClass;
Tom Tromey committed
474 475 476 477
        if (classloader == null)
          rbClass = Class.forName(localizedName);
        else
          rbClass = classloader.loadClass(localizedName);
478 479 480 481 482 483 484 485
        // Note that we do the check up front instead of catching
        // ClassCastException.  The reason for this is that some crazy
        // programs (Eclipse) have classes that do not extend
        // ResourceBundle but that have the same name as a property
        // bundle; in fact Eclipse relies on ResourceBundle not
        // instantiating these classes.
        if (ResourceBundle.class.isAssignableFrom(rbClass))
          bundle = (ResourceBundle) rbClass.newInstance();
Tom Tromey committed
486
      }
487
    catch (Exception ex) {}
Tom Tromey committed
488 489 490

    if (bundle == null)
      {
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
        try
          {
            InputStream is;
            String resourceName
              = localizedName.replace('.', '/') + ".properties";
            if (classloader == null)
              is = ClassLoader.getSystemResourceAsStream(resourceName);
            else
              is = classloader.getResourceAsStream(resourceName);
            if (is != null)
              bundle = new PropertyResourceBundle(is);
          }
        catch (IOException ex)
          {
            MissingResourceException mre = new MissingResourceException
              ("Failed to load bundle: " + localizedName, localizedName, "");
            mre.initCause(ex);
            throw mre;
          }
Tom Tromey committed
510 511 512 513 514 515
      }

    return bundle;
  }

  /**
516
   * Tries to load the bundle for a given locale, also loads the backup
Tom Tromey committed
517 518 519 520
   * locales with the same language.
   *
   * @param baseName the raw bundle name, without locale qualifiers
   * @param locale the locale
521
   * @param classLoader the classloader
Tom Tromey committed
522 523 524 525 526
   * @param wantBase whether a resource bundle made only from the base name
   *        (with no locale information attached) should be returned.
   * @return the resource bundle if it was loaded, otherwise the backup
   */
  private static ResourceBundle tryBundle(String baseName, Locale locale,
527 528
                                          ClassLoader classLoader,
                                          boolean wantBase)
Tom Tromey committed
529 530 531 532
  {
    String language = locale.getLanguage();
    String country = locale.getCountry();
    String variant = locale.getVariant();
533

Tom Tromey committed
534 535
    int baseLen = baseName.length();

536
    // Build up a CPStringBuilder containing the complete bundle name, fully
Tom Tromey committed
537
    // qualified by locale.
538
    CPStringBuilder sb = new CPStringBuilder(baseLen + variant.length() + 7);
Tom Tromey committed
539 540

    sb.append(baseName);
541

Tom Tromey committed
542 543
    if (language.length() > 0)
      {
544 545 546 547 548 549 550 551 552 553 554 555 556 557
        sb.append('_');
        sb.append(language);

        if (country.length() > 0)
          {
            sb.append('_');
            sb.append(country);

            if (variant.length() > 0)
              {
                sb.append('_');
                sb.append(variant);
              }
          }
Tom Tromey committed
558 559 560 561 562 563 564
      }

    // Now try to load bundles, starting with the most specialized name.
    // Build up the parent chain as we go.
    String bundleName = sb.toString();
    ResourceBundle first = null; // The most specialized bundle.
    ResourceBundle last = null; // The least specialized bundle.
565

Tom Tromey committed
566 567 568
    while (true)
      {
        ResourceBundle foundBundle = tryBundle(bundleName, classLoader);
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
        if (foundBundle != null)
          {
            if (first == null)
              first = foundBundle;
            if (last != null)
              last.parent = foundBundle;
            foundBundle.locale = locale;
            last = foundBundle;
          }
        int idx = bundleName.lastIndexOf('_');
        // Try the non-localized base name only if we already have a
        // localized child bundle, or wantBase is true.
        if (idx > baseLen || (idx == baseLen && (first != null || wantBase)))
          bundleName = bundleName.substring(0, idx);
        else
          break;
Tom Tromey committed
585
      }
586

Tom Tromey committed
587 588
    return first;
  }
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613

  /**
   * Remove all resources from the cache that were loaded
   * using the class loader of the calling class.
   *
   * @since 1.6
   */
  public static final void clearCache()
  {
    clearCache(VMStackWalker.getCallingClassLoader());
  }

  /**
   * Remove all resources from the cache that were loaded
   * using the specified class loader.
   *
   * @param loader the loader used for the bundles that will be removed.
   * @throws NullPointerException if {@code loader} is {@code null}.
   * @since 1.6
   */
  public static final void clearCache(ClassLoader loader)
  {
    if (loader == null)
      throw new NullPointerException("The loader can not be null.");
    synchronized (ResourceBundle.class)
614 615 616 617 618 619 620 621
      {
        Iterator<BundleKey> iter = bundleCache.keySet().iterator();
        while (iter.hasNext())
          {
            BundleKey key = iter.next();
            if (key.classLoader == loader)
              iter.remove();
          }
622 623 624
      }
  }

Tom Tromey committed
625
}