blob: dd89b3b29b9dc3e28d2fd60982fcfa34c15229c1 [file] [log] [blame]
Jorim Jaggi245281c2017-06-07 14:33:04 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.server.wm;
18
19import static android.os.Process.THREAD_PRIORITY_DISPLAY;
20import static android.os.Process.myTid;
21import static android.os.Process.setThreadPriority;
22
23import static com.android.server.LockGuard.INDEX_WINDOW;
24import static com.android.server.am.ActivityManagerService.TOP_APP_PRIORITY_BOOST;
25
Winson Chung1ec3e262017-06-09 12:01:20 -070026import com.android.internal.annotations.GuardedBy;
Jorim Jaggi245281c2017-06-07 14:33:04 -070027import com.android.server.AnimationThread;
28import com.android.server.ThreadPriorityBooster;
29
30/**
31 * Window manager version of {@link ThreadPriorityBooster} that boosts even more during app
32 * transitions.
33 */
34class WindowManagerThreadPriorityBooster extends ThreadPriorityBooster {
35
Winson Chung1ec3e262017-06-09 12:01:20 -070036 private final Object mLock = new Object();
37
38 private final int mAnimationThreadId;
Jorim Jaggib0fc8172017-11-23 17:04:08 +000039 private final int mSurfaceAnimationThreadId;
Winson Chung1ec3e262017-06-09 12:01:20 -070040
41 @GuardedBy("mLock")
Jorim Jaggi245281c2017-06-07 14:33:04 -070042 private boolean mAppTransitionRunning;
Winson Chung1ec3e262017-06-09 12:01:20 -070043 @GuardedBy("mLock")
44 private boolean mBoundsAnimationRunning;
Jorim Jaggi245281c2017-06-07 14:33:04 -070045
46 WindowManagerThreadPriorityBooster() {
47 super(THREAD_PRIORITY_DISPLAY, INDEX_WINDOW);
Winson Chung1ec3e262017-06-09 12:01:20 -070048 mAnimationThreadId = AnimationThread.get().getThreadId();
Jorim Jaggib0fc8172017-11-23 17:04:08 +000049 mSurfaceAnimationThreadId = SurfaceAnimationThread.get().getThreadId();
Jorim Jaggi245281c2017-06-07 14:33:04 -070050 }
51
52 @Override
53 public void boost() {
54
Jorim Jaggib0fc8172017-11-23 17:04:08 +000055 // Do not boost the animation threads. As the animation threads are changing priorities,
Jorim Jaggi245281c2017-06-07 14:33:04 -070056 // boosting it might mess up the priority because we reset it the the previous priority.
Jorim Jaggib0fc8172017-11-23 17:04:08 +000057 final int myTid = myTid();
58 if (myTid == mAnimationThreadId || myTid == mSurfaceAnimationThreadId) {
Jorim Jaggi245281c2017-06-07 14:33:04 -070059 return;
60 }
61 super.boost();
62 }
63
64 @Override
65 public void reset() {
66
67 // See comment in boost().
Jorim Jaggib0fc8172017-11-23 17:04:08 +000068 final int myTid = myTid();
69 if (myTid == mAnimationThreadId || myTid == mSurfaceAnimationThreadId) {
Jorim Jaggi245281c2017-06-07 14:33:04 -070070 return;
71 }
72 super.reset();
73 }
74
75 void setAppTransitionRunning(boolean running) {
Winson Chung1ec3e262017-06-09 12:01:20 -070076 synchronized (mLock) {
77 if (mAppTransitionRunning != running) {
78 mAppTransitionRunning = running;
79 updatePriorityLocked();
80 }
Jorim Jaggi245281c2017-06-07 14:33:04 -070081 }
Jorim Jaggi245281c2017-06-07 14:33:04 -070082 }
83
Winson Chung1ec3e262017-06-09 12:01:20 -070084 void setBoundsAnimationRunning(boolean running) {
85 synchronized (mLock) {
86 if (mBoundsAnimationRunning != running) {
87 mBoundsAnimationRunning = running;
88 updatePriorityLocked();
89 }
90 }
91 }
92
93 @GuardedBy("mLock")
94 private void updatePriorityLocked() {
95 int priority = (mAppTransitionRunning || mBoundsAnimationRunning)
96 ? TOP_APP_PRIORITY_BOOST : THREAD_PRIORITY_DISPLAY;
97 setBoostToPriority(priority);
98 setThreadPriority(mAnimationThreadId, priority);
Jorim Jaggib0fc8172017-11-23 17:04:08 +000099 setThreadPriority(mSurfaceAnimationThreadId, priority);
Jorim Jaggi245281c2017-06-07 14:33:04 -0700100 }
101}