Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Improve] Optimize ResourceBundle & add unit test. #2297

Merged
merged 12 commits into from
Jul 19, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,18 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.net.URLConnection;
import java.nio.charset.StandardCharsets;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.Locale;
import java.util.PropertyResourceBundle;
import java.util.ResourceBundle;
import lombok.extern.slf4j.Slf4j;

/**
* i18n resource bundle control
*/
@Slf4j

public class ResourceBundleUtf8Control extends ResourceBundle.Control {

private static final String JAVA_CLASS = "java.class";
Expand All @@ -55,62 +52,61 @@ public ResourceBundle newBundle(String baseName, Locale locale, String format, C
// If the class isn't a ResourceBundle subclass, throw a
// ClassCastException.
if (ResourceBundle.class.isAssignableFrom(bundleClass)) {
bundle = bundleClass.newInstance();
bundle = bundleClass.getDeclaredConstructor().newInstance();
} else {
throw new ClassCastException(bundleClass.getName()
+ " cannot be cast to ResourceBundle");
}
} catch (ClassNotFoundException ignored) {}
} else if (JAVA_PROPERTIES.equals(format)) {
final String resourceName = toResourceName0(bundleName, "properties");
catch (InvocationTargetException | NoSuchMethodException e) {
throw new RuntimeException(e);
}
} else if (JAVA_PROPERTIES.equals(format)) {
final String resourceName = toResourceName0(bundleName);
if (resourceName == null) {
return null;
}
final ClassLoader classLoader = loader;
final boolean reloadFlag = reload;
InputStream stream;
try {
stream = AccessController.doPrivileged(
(PrivilegedExceptionAction<InputStream>) () -> {
InputStream is = null;
if (reloadFlag) {
URL url = classLoader.getResource(resourceName);
if (url != null) {
URLConnection connection = url.openConnection();
if (connection != null) {
// Disable caches to get fresh data for
// reloading.
connection.setUseCaches(false);
is = connection.getInputStream();
}
}
} else {
is = classLoader.getResourceAsStream(resourceName);
}
return is;
});
} catch (PrivilegedActionException e) {
throw (IOException) e.getException();
}
if (stream != null) {
try {
bundle = new PropertyResourceBundle(new InputStreamReader(stream, StandardCharsets.UTF_8));
} finally {
stream.close();
}
InputStream stream = getResourceInputStream(loader, resourceName, reload);

if (stream != null) {
try (stream) {
bundle = new PropertyResourceBundle(new InputStreamReader(stream, StandardCharsets.UTF_8));
}
}
} else {
throw new IllegalArgumentException("unknown format: " + format);
}
return bundle;
}

private String toResourceName0(String bundleName, String suffix) {
private String toResourceName0(String bundleName) {
// application protocol check
if (bundleName.contains(SPILT)) {
return null;
} else {
return toResourceName(bundleName, suffix);
return toResourceName(bundleName, "properties");
}
}

private InputStream getResourceInputStream(ClassLoader classLoader, String resourceName, boolean reloadFlag) throws IOException {

InputStream is = null;

if (reloadFlag) {
URL url = classLoader.getResource(resourceName);
if (url != null) {
URLConnection connection = url.openConnection();
if (connection != null) {
// Disable caches to get fresh data for reloading.
connection.setUseCaches(false);
is = connection.getInputStream();
}
}
} else {
is = classLoader.getResourceAsStream(resourceName);
}

return is;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,59 @@

package org.apache.hertzbeat.common.support;

import java.io.IOException;
import java.util.Locale;
import java.util.ResourceBundle;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;

/**
* Test case for {@link ResourceBundleUtf8Control}
*/
class ResourceBundleUtf8ControlTest {

@Test
void newBundle() {
}
}
@Test
void testNewBundleWithPropertiesFormat() throws IllegalAccessException, InstantiationException, IOException {

ResourceBundle.Control control = new ResourceBundleUtf8Control();
ClassLoader loader = getClass().getClassLoader();
String baseName = "msg";

ResourceBundle bundle = control.newBundle(baseName, Locale.ENGLISH, "java.properties", loader, false);
assertNotNull(bundle);
assertEquals("Hello, World!", bundle.getString("hello"));

bundle = control.newBundle(baseName, Locale.ROOT, "java.properties", loader, false);
assertNotNull(bundle);
assertEquals("你好", bundle.getString("hello"));
}

@Test
void testNewBundleWithClassFormat() throws IllegalAccessException, InstantiationException, IOException {

ResourceBundle.Control control = new ResourceBundleUtf8Control();
ClassLoader loader = getClass().getClassLoader();
String baseName = "dummyClassBundle";

ResourceBundle bundle = control.newBundle(baseName, Locale.ENGLISH, "java.class", loader, false);
//because not have an actual class, bundle should be null
assertNull(bundle);
}

@Test
void testReloading() throws IllegalAccessException, InstantiationException, IOException {
ResourceBundle.Control control = new ResourceBundleUtf8Control();
ClassLoader loader = getClass().getClassLoader();
String baseName = "msg";

// Test with reload flag
ResourceBundle bundle = control.newBundle(baseName, Locale.ENGLISH, "java.properties", loader, true);
assertNotNull(bundle);
assertEquals("Hello, World!", bundle.getString("hello"));
}

}
1 change: 1 addition & 0 deletions common/src/test/resources/msg.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hello=你好
1 change: 1 addition & 0 deletions common/src/test/resources/msg_en.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hello=Hello, World!
Loading