提交 d5cc3e61 编写于 作者: N naoto

7027061: Testcase failure: java/util/Locale/Bug6989440.java -...

7027061: Testcase failure: java/util/Locale/Bug6989440.java - java.util.ConcurrentModificationException
Reviewed-by: dholmes, chegar
上级 c8cca293
...@@ -40,6 +40,7 @@ import java.util.ResourceBundle.Control; ...@@ -40,6 +40,7 @@ import java.util.ResourceBundle.Control;
import java.util.ServiceLoader; import java.util.ServiceLoader;
import java.util.Set; import java.util.Set;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.spi.LocaleServiceProvider; import java.util.spi.LocaleServiceProvider;
import sun.util.logging.PlatformLogger; import sun.util.logging.PlatformLogger;
...@@ -57,8 +58,8 @@ public final class LocaleServiceProviderPool { ...@@ -57,8 +58,8 @@ public final class LocaleServiceProviderPool {
* A Map that holds singleton instances of this class. Each instance holds a * A Map that holds singleton instances of this class. Each instance holds a
* set of provider implementations of a particular locale sensitive service. * set of provider implementations of a particular locale sensitive service.
*/ */
private static Map<Class, LocaleServiceProviderPool> poolOfPools = private static ConcurrentMap<Class, LocaleServiceProviderPool> poolOfPools =
new ConcurrentHashMap<Class, LocaleServiceProviderPool>(); new ConcurrentHashMap<>();
/** /**
* A Set containing locale service providers that implement the * A Set containing locale service providers that implement the
...@@ -109,7 +110,7 @@ public final class LocaleServiceProviderPool { ...@@ -109,7 +110,7 @@ public final class LocaleServiceProviderPool {
if (pool == null) { if (pool == null) {
LocaleServiceProviderPool newPool = LocaleServiceProviderPool newPool =
new LocaleServiceProviderPool(providerClass); new LocaleServiceProviderPool(providerClass);
pool = poolOfPools.put(providerClass, newPool); pool = poolOfPools.putIfAbsent(providerClass, newPool);
if (pool == null) { if (pool == null) {
pool = newPool; pool = newPool;
} }
...@@ -257,10 +258,11 @@ public final class LocaleServiceProviderPool { ...@@ -257,10 +258,11 @@ public final class LocaleServiceProviderPool {
synchronized (LocaleServiceProviderPool.class) { synchronized (LocaleServiceProviderPool.class) {
if (availableJRELocales == null) { if (availableJRELocales == null) {
Locale[] allLocales = LocaleData.getAvailableLocales(); Locale[] allLocales = LocaleData.getAvailableLocales();
availableJRELocales = new ArrayList<Locale>(allLocales.length); List<Locale> tmpList = new ArrayList<>(allLocales.length);
for (Locale locale : allLocales) { for (Locale locale : allLocales) {
availableJRELocales.add(getLookupLocale(locale)); tmpList.add(getLookupLocale(locale));
} }
availableJRELocales = tmpList;
} }
} }
} }
......
...@@ -37,26 +37,49 @@ import java.util.spi.TimeZoneNameProvider; ...@@ -37,26 +37,49 @@ import java.util.spi.TimeZoneNameProvider;
import sun.util.LocaleServiceProviderPool; import sun.util.LocaleServiceProviderPool;
public class Bug6989440 { public class Bug6989440 {
public static void main(String[] args) { static volatile boolean failed; // false
TestThread t1 = new TestThread(LocaleNameProvider.class); static final int THREADS = 50;
TestThread t2 = new TestThread(TimeZoneNameProvider.class);
TestThread t3 = new TestThread(DateFormatProvider.class); public static void main(String[] args) throws Exception {
Thread[] threads = new Thread[THREADS];
t1.start(); for (int i=0; i<threads.length; i++)
t2.start(); threads[i] = new TestThread();
t3.start(); for (int i=0; i<threads.length; i++)
threads[i].start();
for (int i=0; i<threads.length; i++)
threads[i].join();
if (failed)
throw new RuntimeException("Failed: check output");
} }
static class TestThread extends Thread { static class TestThread extends Thread {
private Class<? extends LocaleServiceProvider> cls; private Class<? extends LocaleServiceProvider> cls;
private static int count;
public TestThread(Class<? extends LocaleServiceProvider> providerClass) { public TestThread(Class<? extends LocaleServiceProvider> providerClass) {
cls = providerClass; cls = providerClass;
} }
public TestThread() {
int which = count++ % 3;
switch (which) {
case 0 : cls = LocaleNameProvider.class; break;
case 1 : cls = TimeZoneNameProvider.class; break;
case 2 : cls = DateFormatProvider.class; break;
default : throw new AssertionError("Should not reach here");
}
}
public void run() { public void run() {
try {
LocaleServiceProviderPool pool = LocaleServiceProviderPool.getPool(cls); LocaleServiceProviderPool pool = LocaleServiceProviderPool.getPool(cls);
pool.getAvailableLocales(); pool.getAvailableLocales();
} catch (Exception e) {
System.out.println(e);
e.printStackTrace();
failed = true;
}
} }
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册