Java Code Examples for java.util.ResourceBundle#getBaseBundleName()

The following examples show how to use java.util.ResourceBundle#getBaseBundleName() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestLoggerBundleSync.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public Exception call() throws Exception {
    try {
        final String name = logger.getResourceBundleName();
        if (!Objects.equals(name, rbName)) {
            throw new RuntimeException("Unexpected rbname for "
                + logger.getName() + ": " + name);
        }
        final ResourceBundle b = logger.getResourceBundle();
        if (!Objects.equals(b == null ? null : b.getBaseBundleName(), rbName)) {
            throw new RuntimeException("Unexpected base name for "
                + logger.getName() + ": " + b.getBaseBundleName());
        }
    } catch(Exception x) {
        return x;
    }
    return null;
}
 
Example 2
Source File: Logger.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Sets a resource bundle on this logger.
 * All messages will be logged using the given resource bundle for its
 * specific {@linkplain ResourceBundle#getLocale locale}.
 * @param bundle The resource bundle that this logger shall use.
 * @throws NullPointerException if the given bundle is {@code null}.
 * @throws IllegalArgumentException if the given bundle doesn't have a
 *         {@linkplain ResourceBundle#getBaseBundleName base name},
 *         or if this logger already has a resource bundle set but
 *         the given bundle has a different base name.
 * @throws SecurityException if a security manager exists,
 *         this logger is not anonymous, and the caller
 *         does not have LoggingPermission("control").
 * @since 1.8
 */
public void setResourceBundle(ResourceBundle bundle) {
    checkPermission();

    // Will throw NPE if bundle is null.
    final String baseName = bundle.getBaseBundleName();

    // bundle must have a name
    if (baseName == null || baseName.isEmpty()) {
        throw new IllegalArgumentException("resource bundle must have a name");
    }

    synchronized (this) {
        LoggerBundle lb = loggerBundle;
        final boolean canReplaceResourceBundle = lb.resourceBundleName == null
                || lb.resourceBundleName.equals(baseName);

        if (!canReplaceResourceBundle) {
            throw new IllegalArgumentException("can't replace resource bundle");
        }


        loggerBundle = LoggerBundle.get(baseName, bundle);
    }
}
 
Example 3
Source File: TestLoggerBundleSync.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public Exception call() throws Exception {
    try {
        final String name = logger.getResourceBundleName();
        if (!Objects.equals(name, rbName)) {
            throw new RuntimeException("Unexpected rbname for "
                + logger.getName() + ": " + name);
        }
        final ResourceBundle b = logger.getResourceBundle();
        if (!Objects.equals(b == null ? null : b.getBaseBundleName(), rbName)) {
            throw new RuntimeException("Unexpected base name for "
                + logger.getName() + ": " + b.getBaseBundleName());
        }
    } catch(Exception x) {
        return x;
    }
    return null;
}
 
Example 4
Source File: TestLoggerBundleSync.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
@Override
public Exception call() throws Exception {
    try {
        final String name = logger.getResourceBundleName();
        if (!Objects.equals(name, rbName)) {
            throw new RuntimeException("Unexpected rbname for "
                + logger.getName() + ": " + name);
        }
        final ResourceBundle b = logger.getResourceBundle();
        if (!Objects.equals(b == null ? null : b.getBaseBundleName(), rbName)) {
            throw new RuntimeException("Unexpected base name for "
                + logger.getName() + ": " + b.getBaseBundleName());
        }
    } catch(Exception x) {
        return x;
    }
    return null;
}
 
Example 5
Source File: TestLoggerBundleSync.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
@Override
public Exception call() throws Exception {
    try {
        final String name = logger.getResourceBundleName();
        if (!Objects.equals(name, rbName)) {
            throw new RuntimeException("Unexpected rbname for "
                + logger.getName() + ": " + name);
        }
        final ResourceBundle b = logger.getResourceBundle();
        if (!Objects.equals(b == null ? null : b.getBaseBundleName(), rbName)) {
            throw new RuntimeException("Unexpected base name for "
                + logger.getName() + ": " + b.getBaseBundleName());
        }
    } catch(Exception x) {
        return x;
    }
    return null;
}
 
Example 6
Source File: TestLoggerBundleSync.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
@Override
public Exception call() throws Exception {
    try {
        final String name = logger.getResourceBundleName();
        if (!Objects.equals(name, rbName)) {
            throw new RuntimeException("Unexpected rbname for "
                + logger.getName() + ": " + name);
        }
        final ResourceBundle b = logger.getResourceBundle();
        if (!Objects.equals(b == null ? null : b.getBaseBundleName(), rbName)) {
            throw new RuntimeException("Unexpected base name for "
                + logger.getName() + ": " + b.getBaseBundleName());
        }
    } catch(Exception x) {
        return x;
    }
    return null;
}
 
Example 7
Source File: Logger.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Sets a resource bundle on this logger.
 * All messages will be logged using the given resource bundle for its
 * specific {@linkplain ResourceBundle#getLocale locale}.
 * @param bundle The resource bundle that this logger shall use.
 * @throws NullPointerException if the given bundle is {@code null}.
 * @throws IllegalArgumentException if the given bundle doesn't have a
 *         {@linkplain ResourceBundle#getBaseBundleName base name},
 *         or if this logger already has a resource bundle set but
 *         the given bundle has a different base name.
 * @throws SecurityException if a security manager exists,
 *         this logger is not anonymous, and the caller
 *         does not have LoggingPermission("control").
 * @since 1.8
 */
public void setResourceBundle(ResourceBundle bundle) {
    checkPermission();

    // Will throw NPE if bundle is null.
    final String baseName = bundle.getBaseBundleName();

    // bundle must have a name
    if (baseName == null || baseName.isEmpty()) {
        throw new IllegalArgumentException("resource bundle must have a name");
    }

    synchronized (this) {
        LoggerBundle lb = loggerBundle;
        final boolean canReplaceResourceBundle = lb.resourceBundleName == null
                || lb.resourceBundleName.equals(baseName);

        if (!canReplaceResourceBundle) {
            throw new IllegalArgumentException("can't replace resource bundle");
        }


        loggerBundle = LoggerBundle.get(baseName, bundle);
    }
}
 
Example 8
Source File: Logger.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Sets a resource bundle on this logger.
 * All messages will be logged using the given resource bundle for its
 * specific {@linkplain ResourceBundle#getLocale locale}.
 * @param bundle The resource bundle that this logger shall use.
 * @throws NullPointerException if the given bundle is {@code null}.
 * @throws IllegalArgumentException if the given bundle doesn't have a
 *         {@linkplain ResourceBundle#getBaseBundleName base name},
 *         or if this logger already has a resource bundle set but
 *         the given bundle has a different base name.
 * @throws SecurityException if a security manager exists,
 *         this logger is not anonymous, and the caller
 *         does not have LoggingPermission("control").
 * @since 1.8
 */
public void setResourceBundle(ResourceBundle bundle) {
    checkPermission();

    // Will throw NPE if bundle is null.
    final String baseName = bundle.getBaseBundleName();

    // bundle must have a name
    if (baseName == null || baseName.isEmpty()) {
        throw new IllegalArgumentException("resource bundle must have a name");
    }

    synchronized (this) {
        LoggerBundle lb = loggerBundle;
        final boolean canReplaceResourceBundle = lb.resourceBundleName == null
                || lb.resourceBundleName.equals(baseName);

        if (!canReplaceResourceBundle) {
            throw new IllegalArgumentException("can't replace resource bundle");
        }


        loggerBundle = LoggerBundle.get(baseName, bundle);
    }
}
 
Example 9
Source File: Logger.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Sets a resource bundle on this logger.
 * All messages will be logged using the given resource bundle for its
 * specific {@linkplain ResourceBundle#getLocale locale}.
 * @param bundle The resource bundle that this logger shall use.
 * @throws NullPointerException if the given bundle is {@code null}.
 * @throws IllegalArgumentException if the given bundle doesn't have a
 *         {@linkplain ResourceBundle#getBaseBundleName base name},
 *         or if this logger already has a resource bundle set but
 *         the given bundle has a different base name.
 * @throws SecurityException if a security manager exists,
 *         this logger is not anonymous, and the caller
 *         does not have LoggingPermission("control").
 * @since 1.8
 */
public void setResourceBundle(ResourceBundle bundle) {
    checkPermission();

    // Will throw NPE if bundle is null.
    final String baseName = bundle.getBaseBundleName();

    // bundle must have a name
    if (baseName == null || baseName.isEmpty()) {
        throw new IllegalArgumentException("resource bundle must have a name");
    }

    synchronized (this) {
        LoggerBundle lb = loggerBundle;
        final boolean canReplaceResourceBundle = lb.resourceBundleName == null
                || lb.resourceBundleName.equals(baseName);

        if (!canReplaceResourceBundle) {
            throw new IllegalArgumentException("can't replace resource bundle");
        }


        loggerBundle = LoggerBundle.get(baseName, bundle);
    }
}
 
Example 10
Source File: TestLoggerBundleSync.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
@Override
public Exception call() throws Exception {
    try {
        final String name = logger.getResourceBundleName();
        if (!Objects.equals(name, rbName)) {
            throw new RuntimeException("Unexpected rbname for "
                + logger.getName() + ": " + name);
        }
        final ResourceBundle b = logger.getResourceBundle();
        if (!Objects.equals(b == null ? null : b.getBaseBundleName(), rbName)) {
            throw new RuntimeException("Unexpected base name for "
                + logger.getName() + ": " + b.getBaseBundleName());
        }
    } catch(Exception x) {
        return x;
    }
    return null;
}
 
Example 11
Source File: TestSetResourceBundle.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 12
Source File: TestLogrbResourceBundle.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 13
Source File: TestSetResourceBundle.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 14
Source File: TestLoggerBundleSync.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void run() {
    try {
        handler.setLevel(Level.FINEST);
        while (goOn) {
            Logger l;
            Logger foo = Logger.getLogger("foo");
            Logger bar = Logger.getLogger("foo.bar");
            for (long i=0; i < nextLong.longValue() + 100 ; i++) {
                if (!goOn) break;
                l = Logger.getLogger("foo.bar.l"+i);
                final ResourceBundle b = l.getResourceBundle();
                final String name = l.getResourceBundleName();
                if (b != null) {
                    if (!name.equals(b.getBaseBundleName())) {
                        throw new RuntimeException("Unexpected bundle name: "
                                +b.getBaseBundleName());
                    }
                }
                Logger ll = Logger.getLogger(l.getName()+".bie.bye");
                ResourceBundle hrb;
                String hrbName;
                if (handler.getLevel() != Level.FINEST) {
                    throw new RuntimeException("Handler level is not finest: "
                            + handler.getLevel());
                }
                final int countBefore = handler.count;
                handler.reset();
                ll.setLevel(Level.FINEST);
                ll.addHandler(handler);
                ll.log(Level.FINE, "dummy {0}", this);
                ll.removeHandler(handler);
                final int countAfter = handler.count;
                if (countBefore == countAfter) {
                    throw new RuntimeException("Handler not called for "
                            + ll.getName() + "("+ countAfter +")");
                }
                hrb = handler.rb;
                hrbName = handler.rbName;
                if (name != null) {
                    // if name is not null, then it implies that it
                    // won't change, since setResourceBundle() cannot
                    // replace a non null name.
                    // Since we never set the resource bundle on 'll',
                    // then ll must inherit its resource bundle [name]
                    // from l - and therefor we should find it in
                    // handler.rb/handler.rbName
                    if (!name.equals(hrbName)) {
                        throw new RuntimeException("Unexpected bundle name: "
                                +hrbName);
                    }
                    // here we know that hrbName is not null so hrb
                    // should not be null either.
                    if (!name.equals(hrb.getBaseBundleName())) {
                        throw new RuntimeException("Unexpected bundle name: "
                                +hrb.getBaseBundleName());
                    }
                }

                // Make sure to refer to 'l' explicitly in order to
                // prevent eager garbage collecting before the end of
                // the test (JDK-8030192)
                if (!ll.getName().startsWith(l.getName())) {
                    throw new RuntimeException("Logger " + ll.getName()
                            + "does not start with expected prefix "
                            + l.getName());
                }

                getRBcount.incrementAndGet();
                if (!goOn) break;
                Thread.sleep(1);
            }
        }
   } catch (Exception x) {
       fail(x);
   }
}
 
Example 15
Source File: TestSetResourceBundle.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 16
Source File: TestLogrbResourceBundle.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 17
Source File: TestLoggerBundleSync.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void run() {
    try {
        handler.setLevel(Level.FINEST);
        while (goOn) {
            Logger l;
            Logger foo = Logger.getLogger("foo");
            Logger bar = Logger.getLogger("foo.bar");
            for (long i=0; i < nextLong.longValue() + 100 ; i++) {
                if (!goOn) break;
                l = Logger.getLogger("foo.bar.l"+i);
                final ResourceBundle b = l.getResourceBundle();
                final String name = l.getResourceBundleName();
                if (b != null) {
                    if (!name.equals(b.getBaseBundleName())) {
                        throw new RuntimeException("Unexpected bundle name: "
                                +b.getBaseBundleName());
                    }
                }
                Logger ll = Logger.getLogger(l.getName()+".bie.bye");
                ResourceBundle hrb;
                String hrbName;
                ll.setLevel(Level.FINEST);
                ll.addHandler(handler);
                ll.fine("dummy");
                ll.removeHandler(handler);
                hrb = handler.rb;
                hrbName = handler.rbName;
                if (name != null) {
                    if (!name.equals(hrbName)) {
                        throw new RuntimeException("Unexpected bundle name: "
                                +hrb.getBaseBundleName());
                    }
                    if (!name.equals(hrb.getBaseBundleName())) {
                        throw new RuntimeException("Unexpected bundle name: "
                                +hrb.getBaseBundleName());
                    }
                }

                getRBcount.incrementAndGet();
                if (!goOn) break;
                Thread.sleep(1);
            }
        }
   } catch (Exception x) {
       fail(x);
   }
}
 
Example 18
Source File: TestSetResourceBundle.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 19
Source File: TestLogrbResourceBundle.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
Example 20
Source File: TestLogrbResourceBundle.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}