You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
1.9 KiB
101 lines
1.9 KiB
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import android.support.annotation.UiThread;
|
|
import android.support.annotation.WorkerThread;
|
|
|
|
class ThreadDeadlock {
|
|
Object lockA;
|
|
|
|
// methods cannot run in parallel because both are on UI thread, thus no deadlock
|
|
|
|
@UiThread
|
|
public synchronized void noParallelismAOk() {
|
|
synchronized (lockA) {
|
|
}
|
|
}
|
|
|
|
@UiThread
|
|
public void noParallelismBOk() {
|
|
synchronized (lockA) {
|
|
synchronized (this) {
|
|
}
|
|
}
|
|
}
|
|
|
|
Object lockB;
|
|
|
|
// deadlock, one method on UI thread, one on Worker thread
|
|
|
|
@UiThread
|
|
public synchronized void annotatedUiThreadBad() {
|
|
synchronized (lockB) {
|
|
}
|
|
}
|
|
|
|
@WorkerThread
|
|
public void annotatedWorkerThreadBad() {
|
|
synchronized (lockB) {
|
|
synchronized (this) {
|
|
}
|
|
}
|
|
}
|
|
|
|
Object lockC;
|
|
|
|
// deadlock as above, but here assertions are used to determine thread status
|
|
|
|
public synchronized void assertOnUIThreadBad() {
|
|
OurThreadUtils.assertOnUiThread();
|
|
synchronized (lockC) {
|
|
}
|
|
}
|
|
|
|
public void assertOnBackgroundThreadBad() {
|
|
OurThreadUtils.assertOnBackgroundThread();
|
|
synchronized (lockC) {
|
|
synchronized (this) {
|
|
}
|
|
}
|
|
}
|
|
|
|
Object lockD;
|
|
|
|
// deadlock as above, though less certain because the only hint of concurrency is that
|
|
// methods take locks
|
|
|
|
public synchronized void notAnnotatedBadA() {
|
|
synchronized (lockD) {
|
|
}
|
|
}
|
|
|
|
public void notAnnotatedBBad() {
|
|
synchronized (lockD) {
|
|
synchronized (this) {
|
|
}
|
|
}
|
|
}
|
|
|
|
Object lockE, lockF, lockG;
|
|
|
|
public void sequentialEandGOk() {
|
|
synchronized (lockE) {
|
|
synchronized (lockF) {
|
|
}
|
|
}
|
|
synchronized (lockG) {
|
|
}
|
|
}
|
|
|
|
public void nestedGthenEOk() {
|
|
synchronized (lockG) {
|
|
synchronized (lockE) {
|
|
}
|
|
}
|
|
}
|
|
}
|