Merge "Fix Settings creating too many threads unexpectedly" into qt-qpr1-dev

am: e1c11ca2e7

Change-Id: I09b13092823faa0326a588ac654877e0ad3c7613
This commit is contained in:
Jason Chiu
2019-11-13 09:40:22 -08:00
committed by android-build-merger
2 changed files with 20 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ package com.android.settingslib.utils;
import android.os.Handler;
import android.os.Looper;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
@@ -26,7 +27,7 @@ public class ThreadUtils {
private static volatile Thread sMainThread;
private static volatile Handler sMainThreadHandler;
private static volatile ExecutorService sSingleThreadExecutor;
private static volatile ExecutorService sThreadExecutor;
/**
* Returns true if the current thread is the UI thread.
@@ -64,10 +65,16 @@ public class ThreadUtils {
* @Return A future of the task that can be monitored for updates or cancelled.
*/
public static Future postOnBackgroundThread(Runnable runnable) {
if (sSingleThreadExecutor == null) {
sSingleThreadExecutor = Executors.newSingleThreadExecutor();
}
return sSingleThreadExecutor.submit(runnable);
return getThreadExecutor().submit(runnable);
}
/**
* Posts callable in background using shared background thread pool.
*
* @Return A future of the task that can be monitored for updates or cancelled.
*/
public static Future postOnBackgroundThread(Callable callable) {
return getThreadExecutor().submit(callable);
}
/**
@@ -77,4 +84,11 @@ public class ThreadUtils {
getUiThreadHandler().post(runnable);
}
private static synchronized ExecutorService getThreadExecutor() {
if (sThreadExecutor == null) {
sThreadExecutor = Executors.newFixedThreadPool(
Runtime.getRuntime().availableProcessors());
}
return sThreadExecutor;
}
}

View File

@@ -50,7 +50,7 @@ public class ThreadUtilsTest {
}
@Test
public void testPostOnMainThread_shouldRunOnMainTread() {
public void testPostOnMainThread_shouldRunOnMainThread() {
TestRunnable cr = new TestRunnable();
ShadowLooper.pauseMainLooper();
ThreadUtils.postOnMainThread(cr);