mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
170 lines
5.3 KiB
Java
170 lines
5.3 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.util;
|
|
|
|
import android.os.Handler;
|
|
import android.os.MessageQueue;
|
|
import android.util.Log;
|
|
|
|
import java.util.Map;
|
|
|
|
public final class ThreadUtils {
|
|
private static final String LOGTAG = "ThreadUtils";
|
|
|
|
private static Thread sUiThread;
|
|
private static Thread sBackgroundThread;
|
|
|
|
private static Handler sUiHandler;
|
|
|
|
// Referenced directly from GeckoAppShell in highly performance-sensitive code (The extra
|
|
// function call of the getter was harming performance. (Bug 897123))
|
|
// Once Bug 709230 is resolved we should reconsider this as ProGuard should be able to optimise
|
|
// this out at compile time.
|
|
public static Handler sGeckoHandler;
|
|
public static MessageQueue sGeckoQueue;
|
|
public static Thread sGeckoThread;
|
|
|
|
// Delayed Runnable that resets the Gecko thread priority.
|
|
private static final Runnable sPriorityResetRunnable = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
resetGeckoPriority();
|
|
}
|
|
};
|
|
|
|
private static boolean sIsGeckoPriorityReduced;
|
|
|
|
@SuppressWarnings("serial")
|
|
public static class UiThreadBlockedException extends RuntimeException {
|
|
public UiThreadBlockedException() {
|
|
super();
|
|
}
|
|
|
|
public UiThreadBlockedException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
public UiThreadBlockedException(String msg, Throwable e) {
|
|
super(msg, e);
|
|
}
|
|
|
|
public UiThreadBlockedException(Throwable e) {
|
|
super(e);
|
|
}
|
|
}
|
|
|
|
public static void dumpAllStackTraces() {
|
|
Log.w(LOGTAG, "Dumping ALL the threads!");
|
|
Map<Thread, StackTraceElement[]> allStacks = Thread.getAllStackTraces();
|
|
for (Thread t : allStacks.keySet()) {
|
|
Log.w(LOGTAG, t.toString());
|
|
for (StackTraceElement ste : allStacks.get(t)) {
|
|
Log.w(LOGTAG, ste.toString());
|
|
}
|
|
Log.w(LOGTAG, "----");
|
|
}
|
|
}
|
|
|
|
public static void setUiThread(Thread thread, Handler handler) {
|
|
sUiThread = thread;
|
|
sUiHandler = handler;
|
|
}
|
|
|
|
public static void setBackgroundThread(Thread thread) {
|
|
sBackgroundThread = thread;
|
|
}
|
|
|
|
public static Thread getUiThread() {
|
|
return sUiThread;
|
|
}
|
|
|
|
public static Handler getUiHandler() {
|
|
return sUiHandler;
|
|
}
|
|
|
|
public static void postToUiThread(Runnable runnable) {
|
|
sUiHandler.post(runnable);
|
|
}
|
|
|
|
public static Thread getBackgroundThread() {
|
|
return sBackgroundThread;
|
|
}
|
|
|
|
public static Handler getBackgroundHandler() {
|
|
return GeckoBackgroundThread.getHandler();
|
|
}
|
|
|
|
public static void postToBackgroundThread(Runnable runnable) {
|
|
GeckoBackgroundThread.post(runnable);
|
|
}
|
|
|
|
public static void assertOnUiThread() {
|
|
assertOnThread(getUiThread());
|
|
}
|
|
|
|
public static void assertOnGeckoThread() {
|
|
assertOnThread(sGeckoThread);
|
|
}
|
|
|
|
public static void assertOnBackgroundThread() {
|
|
assertOnThread(getBackgroundThread());
|
|
}
|
|
|
|
public static void assertOnThread(Thread expectedThread) {
|
|
Thread currentThread = Thread.currentThread();
|
|
long currentThreadId = currentThread.getId();
|
|
long expectedThreadId = expectedThread.getId();
|
|
|
|
if (currentThreadId != expectedThreadId) {
|
|
throw new IllegalThreadStateException("Expected thread " + expectedThreadId + " (\""
|
|
+ expectedThread.getName()
|
|
+ "\"), but running on thread " + currentThreadId
|
|
+ " (\"" + currentThread.getName() + ")");
|
|
}
|
|
}
|
|
|
|
public static boolean isOnUiThread() {
|
|
return isOnThread(getUiThread());
|
|
}
|
|
|
|
public static boolean isOnBackgroundThread() {
|
|
return isOnThread(sBackgroundThread);
|
|
}
|
|
|
|
public static boolean isOnThread(Thread thread) {
|
|
return (Thread.currentThread().getId() == thread.getId());
|
|
}
|
|
|
|
/**
|
|
* Reduces the priority of the Gecko thread, allowing other operations
|
|
* (such as those related to the UI and database) to take precedence.
|
|
*
|
|
* Note that there are no guards in place to prevent multiple calls
|
|
* to this method from conflicting with each other.
|
|
*
|
|
* @param timeout Timeout in ms after which the priority will be reset
|
|
*/
|
|
public static void reduceGeckoPriority(long timeout) {
|
|
if (!sIsGeckoPriorityReduced) {
|
|
sIsGeckoPriorityReduced = true;
|
|
sGeckoThread.setPriority(Thread.MIN_PRIORITY);
|
|
getUiHandler().postDelayed(sPriorityResetRunnable, timeout);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Resets the priority of a thread whose priority has been reduced
|
|
* by reduceGeckoPriority.
|
|
*/
|
|
public static void resetGeckoPriority() {
|
|
if (sIsGeckoPriorityReduced) {
|
|
sIsGeckoPriorityReduced = false;
|
|
sGeckoThread.setPriority(Thread.NORM_PRIORITY);
|
|
getUiHandler().removeCallbacks(sPriorityResetRunnable);
|
|
}
|
|
}
|
|
}
|