java.util.ResourceBundle#getBaseBundleName ( )源码实例Demo

下面列出了java.util.ResourceBundle#getBaseBundleName ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: jdk8u_jdk   文件: TestLoggerBundleSync.java
@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;
}
 
源代码2 项目: openjdk-jdk9   文件: TestLoggerBundleSync.java
@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;
}
 
源代码3 项目: jdk8u-jdk   文件: Logger.java
/**
 * 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);
    }
}
 
源代码4 项目: jdk8u-dev-jdk   文件: Logger.java
/**
 * 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);
    }
}
 
源代码5 项目: jdk8u-jdk   文件: Logger.java
/**
 * 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);
    }
}
 
源代码6 项目: TencentKona-8   文件: TestLoggerBundleSync.java
@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;
}
 
源代码7 项目: jdk8u-jdk   文件: TestLoggerBundleSync.java
@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;
}
 
@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;
}
 
源代码9 项目: jdk8u60   文件: TestLoggerBundleSync.java
@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;
}
 
源代码10 项目: openjdk-jdk9   文件: Logger.java
/**
 * 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);
    }
}
 
源代码11 项目: dragonwell8_jdk   文件: TestLogrbResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码12 项目: openjdk-8   文件: TestLoggerBundleSync.java
@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);
   }
}
 
@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);
   }
}
 
源代码14 项目: openjdk-jdk8u   文件: TestSetResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码15 项目: jdk8u-dev-jdk   文件: TestSetResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码16 项目: jdk8u-dev-jdk   文件: TestLogrbResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码17 项目: openjdk-8   文件: TestSetResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码18 项目: jdk8u60   文件: TestLogrbResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码19 项目: openjdk-8-source   文件: TestSetResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}
 
源代码20 项目: openjdk-8-source   文件: TestLogrbResourceBundle.java
static String getBaseName(ResourceBundle bundle) {
    return bundle == null ? null : bundle.getBaseBundleName();
}