blob: e98014bdea3e9579f5c1647b47b3310e634effec [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 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.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
20
Jeff Brown4532e612012-04-05 14:27:12 -070021import com.android.server.input.InputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080022import com.android.server.wm.WindowManagerService.H;
23
24import android.content.pm.ActivityInfo;
25import android.os.Message;
26import android.os.RemoteException;
27import android.util.Slog;
28import android.view.IApplicationToken;
29import android.view.View;
30import android.view.WindowManager;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080031
32import java.io.PrintWriter;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -080033import java.util.ArrayList;
34
35class AppTokenList extends ArrayList<AppWindowToken> {
36}
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080037
38/**
39 * Version of WindowToken that is specifically for a particular application (or
40 * really activity) that is displaying windows.
41 */
Craig Mautnere32c3072012-03-12 15:25:35 -070042class AppWindowToken extends WindowToken {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080043 // Non-null only for application tokens.
44 final IApplicationToken appToken;
45
46 // All of the windows and child windows that are included in this
47 // application token. Note this list is NOT sorted!
Craig Mautner96868332012-12-04 14:29:11 -080048 final WindowList allAppWindows = new WindowList();
Craig Mautner59431632012-04-04 11:56:44 -070049 final AppWindowAnimator mAppAnimator;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080050
Craig Mautnerd09cc4b2012-04-04 10:23:31 -070051 final WindowAnimator mAnimator;
52
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080053 int groupId = -1;
54 boolean appFullscreen;
55 int requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Craig Mautner4c5eb222013-11-18 12:59:05 -080056 boolean layoutConfigChanges;
Craig Mautner5962b122012-10-05 14:45:52 -070057 boolean showWhenLocked;
Craig Mautnera2c77052012-03-26 12:14:43 -070058
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080059 // The input dispatching timeout for this application token in nanoseconds.
60 long inputDispatchingTimeoutNanos;
61
62 // These are used for determining when all windows associated with
63 // an activity have been drawn, so they can be made visible together
64 // at the same time.
Craig Mautner764983d2012-03-22 11:37:36 -070065 // initialize so that it doesn't match mTransactionSequence which is an int.
66 long lastTransactionSequence = Long.MIN_VALUE;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080067 int numInterestingWindows;
68 int numDrawnWindows;
69 boolean inPendingTransaction;
70 boolean allDrawn;
Craig Mautner7636dfb2012-11-16 15:24:11 -080071 // Set to true when this app creates a surface while in the middle of an animation. In that
72 // case do not clear allDrawn until the animation completes.
73 boolean deferClearAllDrawn;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080074
75 // Is this token going to be hidden in a little while? If so, it
76 // won't be taken into account for setting the screen orientation.
77 boolean willBeHidden;
78
79 // Is this window's surface needed? This is almost like hidden, except
80 // it will sometimes be true a little earlier: when the token has
81 // been shown, but is still waiting for its app transition to execute
82 // before making its windows shown.
83 boolean hiddenRequested;
84
85 // Have we told the window clients to hide themselves?
86 boolean clientHidden;
87
88 // Last visibility state we reported to the app token.
89 boolean reportedVisible;
90
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -070091 // Last drawn state we reported to the app token.
92 boolean reportedDrawn;
93
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080094 // Set to true when the token has been removed from the window mgr.
95 boolean removed;
96
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080097 // Information about an application starting window if displayed.
98 StartingData startingData;
99 WindowState startingWindow;
100 View startingView;
101 boolean startingDisplayed;
102 boolean startingMoved;
103 boolean firstWindowDrawn;
104
105 // Input application handle used by the input dispatcher.
Jeff Brown9302c872011-07-13 22:51:29 -0700106 final InputApplicationHandle mInputApplicationHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800107
108 AppWindowToken(WindowManagerService _service, IApplicationToken _token) {
109 super(_service, _token.asBinder(),
110 WindowManager.LayoutParams.TYPE_APPLICATION, true);
111 appWindowToken = this;
112 appToken = _token;
113 mInputApplicationHandle = new InputApplicationHandle(this);
Craig Mautnerd09cc4b2012-04-04 10:23:31 -0700114 mAnimator = service.mAnimator;
Craig Mautner322e4032012-07-13 13:35:20 -0700115 mAppAnimator = new AppWindowAnimator(this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800116 }
117
118 void sendAppVisibilityToClients() {
119 final int N = allAppWindows.size();
120 for (int i=0; i<N; i++) {
121 WindowState win = allAppWindows.get(i);
122 if (win == startingWindow && clientHidden) {
123 // Don't hide the starting window.
124 continue;
125 }
126 try {
127 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG,
128 "Setting visibility of " + win + ": " + (!clientHidden));
129 win.mClient.dispatchAppVisibility(!clientHidden);
130 } catch (RemoteException e) {
131 }
132 }
133 }
134
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800135 void updateReportedVisibilityLocked() {
136 if (appToken == null) {
137 return;
138 }
139
140 int numInteresting = 0;
141 int numVisible = 0;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700142 int numDrawn = 0;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800143 boolean nowGone = true;
144
Craig Mautnerc8bc97e2012-04-02 12:54:54 -0700145 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG,
146 "Update reported visibility: " + this);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800147 final int N = allAppWindows.size();
148 for (int i=0; i<N; i++) {
149 WindowState win = allAppWindows.get(i);
150 if (win == startingWindow || win.mAppFreezing
151 || win.mViewVisibility != View.VISIBLE
152 || win.mAttrs.type == TYPE_APPLICATION_STARTING
153 || win.mDestroying) {
154 continue;
155 }
156 if (WindowManagerService.DEBUG_VISIBILITY) {
157 Slog.v(WindowManagerService.TAG, "Win " + win + ": isDrawn="
158 + win.isDrawnLw()
Craig Mautnera2c77052012-03-26 12:14:43 -0700159 + ", isAnimating=" + win.mWinAnimator.isAnimating());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800160 if (!win.isDrawnLw()) {
Mathias Agopian29479eb2013-02-14 14:36:04 -0800161 Slog.v(WindowManagerService.TAG, "Not displayed: s=" + win.mWinAnimator.mSurfaceControl
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800162 + " pv=" + win.mPolicyVisibility
Craig Mautner749a7bb2012-04-02 13:49:53 -0700163 + " mDrawState=" + win.mWinAnimator.mDrawState
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800164 + " ah=" + win.mAttachedHidden
165 + " th="
166 + (win.mAppToken != null
167 ? win.mAppToken.hiddenRequested : false)
Craig Mautnera2c77052012-03-26 12:14:43 -0700168 + " a=" + win.mWinAnimator.mAnimating);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800169 }
170 }
171 numInteresting++;
172 if (win.isDrawnLw()) {
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700173 numDrawn++;
Craig Mautnera2c77052012-03-26 12:14:43 -0700174 if (!win.mWinAnimator.isAnimating()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800175 numVisible++;
176 }
177 nowGone = false;
Craig Mautnera2c77052012-03-26 12:14:43 -0700178 } else if (win.mWinAnimator.isAnimating()) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800179 nowGone = false;
180 }
181 }
182
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700183 boolean nowDrawn = numInteresting > 0 && numDrawn >= numInteresting;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700185 if (!nowGone) {
186 // If the app is not yet gone, then it can only become visible/drawn.
187 if (!nowDrawn) {
188 nowDrawn = reportedDrawn;
189 }
190 if (!nowVisible) {
191 nowVisible = reportedVisible;
192 }
193 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800194 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG, "VIS " + this + ": interesting="
195 + numInteresting + " visible=" + numVisible);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700196 if (nowDrawn != reportedDrawn) {
197 if (nowDrawn) {
198 Message m = service.mH.obtainMessage(
199 H.REPORT_APPLICATION_TOKEN_DRAWN, this);
200 service.mH.sendMessage(m);
201 }
202 reportedDrawn = nowDrawn;
203 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800204 if (nowVisible != reportedVisible) {
205 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(
206 WindowManagerService.TAG, "Visibility changed in " + this
207 + ": vis=" + nowVisible);
208 reportedVisible = nowVisible;
209 Message m = service.mH.obtainMessage(
210 H.REPORT_APPLICATION_TOKEN_WINDOWS,
211 nowVisible ? 1 : 0,
212 nowGone ? 1 : 0,
213 this);
214 service.mH.sendMessage(m);
215 }
216 }
217
218 WindowState findMainWindow() {
219 int j = windows.size();
220 while (j > 0) {
221 j--;
222 WindowState win = windows.get(j);
223 if (win.mAttrs.type == WindowManager.LayoutParams.TYPE_BASE_APPLICATION
224 || win.mAttrs.type == WindowManager.LayoutParams.TYPE_APPLICATION_STARTING) {
225 return win;
226 }
227 }
228 return null;
229 }
230
Craig Mautner72669d12012-12-18 17:23:54 -0800231 boolean isVisible() {
232 final int N = allAppWindows.size();
Craig Mautner72669d12012-12-18 17:23:54 -0800233 for (int i=0; i<N; i++) {
234 WindowState win = allAppWindows.get(i);
235 if (!win.mAppFreezing
236 && (win.mViewVisibility == View.VISIBLE ||
237 (win.mWinAnimator.isAnimating() &&
238 !service.mAppTransition.isTransitionSet()))
239 && !win.mDestroying && win.isDrawnLw()) {
240 return true;
241 }
242 }
243 return false;
244 }
245
Craig Mautnerdbb79912012-03-01 18:59:14 -0800246 @Override
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800247 void dump(PrintWriter pw, String prefix) {
248 super.dump(pw, prefix);
249 if (appToken != null) {
250 pw.print(prefix); pw.println("app=true");
251 }
252 if (allAppWindows.size() > 0) {
253 pw.print(prefix); pw.print("allAppWindows="); pw.println(allAppWindows);
254 }
255 pw.print(prefix); pw.print("groupId="); pw.print(groupId);
256 pw.print(" appFullscreen="); pw.print(appFullscreen);
257 pw.print(" requestedOrientation="); pw.println(requestedOrientation);
258 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
259 pw.print(" clientHidden="); pw.print(clientHidden);
260 pw.print(" willBeHidden="); pw.print(willBeHidden);
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700261 pw.print(" reportedDrawn="); pw.print(reportedDrawn);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800262 pw.print(" reportedVisible="); pw.println(reportedVisible);
Craig Mautner59431632012-04-04 11:56:44 -0700263 if (paused) {
264 pw.print(prefix); pw.print("paused="); pw.println(paused);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800265 }
266 if (numInterestingWindows != 0 || numDrawnWindows != 0
Craig Mautner6fbda632012-07-03 09:26:39 -0700267 || allDrawn || mAppAnimator.allDrawn) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800268 pw.print(prefix); pw.print("numInterestingWindows=");
269 pw.print(numInterestingWindows);
270 pw.print(" numDrawnWindows="); pw.print(numDrawnWindows);
271 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
Craig Mautner6fbda632012-07-03 09:26:39 -0700272 pw.print(" allDrawn="); pw.print(allDrawn);
273 pw.print(" (animator="); pw.print(mAppAnimator.allDrawn);
274 pw.println(")");
275 }
276 if (inPendingTransaction) {
277 pw.print(prefix); pw.print("inPendingTransaction=");
278 pw.println(inPendingTransaction);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800279 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800280 if (startingData != null || removed || firstWindowDrawn) {
281 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
282 pw.print(" removed="); pw.print(removed);
283 pw.print(" firstWindowDrawn="); pw.println(firstWindowDrawn);
284 }
285 if (startingWindow != null || startingView != null
286 || startingDisplayed || startingMoved) {
287 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
288 pw.print(" startingView="); pw.print(startingView);
289 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
290 pw.print(" startingMoved"); pw.println(startingMoved);
291 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800292 }
293
294 @Override
295 public String toString() {
296 if (stringName == null) {
297 StringBuilder sb = new StringBuilder();
298 sb.append("AppWindowToken{");
299 sb.append(Integer.toHexString(System.identityHashCode(this)));
300 sb.append(" token="); sb.append(token); sb.append('}');
301 stringName = sb.toString();
302 }
303 return stringName;
304 }
Jeff Browne9bdb312012-04-05 15:30:10 -0700305}