blob: dce06f47c0cbfecec9f5cb16587c10061a33ed7f [file] [log] [blame]
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001/*
2 * Copyright (C) 2016 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.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
20import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
Matthew Ng606dd802017-06-05 14:06:32 -070021
22import static com.android.server.wm.AppTransition.TRANSIT_DOCK_TASK_FROM_RECENTS;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080023import static com.android.server.wm.AppTransition.TRANSIT_UNSET;
24import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
25import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
26import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
27import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREENSHOT;
28import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STARTING_WINDOW;
29import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
30import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_VISIBILITY;
31import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080032
Jorim Jaggie2c77f92016-12-29 14:57:22 +010033import android.app.ActivityManager.TaskSnapshot;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080034import android.content.res.CompatibilityInfo;
35import android.content.res.Configuration;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080036import android.graphics.Bitmap;
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -070037import android.graphics.Rect;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080038import android.os.Debug;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080039import android.os.Handler;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080040import android.os.IBinder;
Sudheer Shankac766db02017-06-12 10:37:29 -070041import android.os.Looper;
42import android.os.Message;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080043import android.os.Trace;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080044import android.util.Slog;
Jorim Jaggi42befc62017-06-13 11:54:04 -070045import android.view.DisplayInfo;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080046import android.view.IApplicationToken;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080047import android.view.WindowManagerPolicy.StartingSurface;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080048
Winson Chung30480042017-01-26 10:55:34 -080049import com.android.internal.annotations.VisibleForTesting;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -080050import com.android.server.AttributeCache;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080051/**
52 * Controller for the app window token container. This is created by activity manager to link
53 * activity records to the app window token container they use in window manager.
54 *
55 * Test class: {@link AppWindowContainerControllerTests}
56 */
57public class AppWindowContainerController
58 extends WindowContainerController<AppWindowToken, AppWindowContainerListener> {
59
Jorim Jaggi02886a82016-12-06 09:10:06 -080060 private static final int STARTING_WINDOW_TYPE_NONE = 0;
61 private static final int STARTING_WINDOW_TYPE_SNAPSHOT = 1;
62 private static final int STARTING_WINDOW_TYPE_SPLASH_SCREEN = 2;
63
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080064 private final IApplicationToken mToken;
Jorim Jaggi9bafc712017-01-19 17:28:30 +010065 private final Handler mHandler;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080066
Sudheer Shankac766db02017-06-12 10:37:29 -070067 private final class H extends Handler {
68 public static final int NOTIFY_WINDOWS_DRAWN = 1;
69 public static final int NOTIFY_STARTING_WINDOW_DRAWN = 2;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080070
Sudheer Shankac766db02017-06-12 10:37:29 -070071 public H(Looper looper) {
72 super(looper);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080073 }
Sudheer Shankac766db02017-06-12 10:37:29 -070074
75 @Override
76 public void handleMessage(Message msg) {
77 switch (msg.what) {
78 case NOTIFY_WINDOWS_DRAWN:
79 if (mListener == null) {
80 return;
81 }
82 if (DEBUG_VISIBILITY) Slog.v(TAG_WM, "Reporting drawn in "
83 + AppWindowContainerController.this.mToken);
84 mListener.onWindowsDrawn(msg.getWhen());
85 break;
86 case NOTIFY_STARTING_WINDOW_DRAWN:
87 if (mListener == null) {
88 return;
89 }
90 if (DEBUG_VISIBILITY) Slog.v(TAG_WM, "Reporting drawn in "
91 + AppWindowContainerController.this.mToken);
92 mListener.onStartingWindowDrawn(msg.getWhen());
93 break;
94 default:
95 break;
96 }
97 }
98 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -080099
100 private final Runnable mOnWindowsVisible = () -> {
101 if (mListener == null) {
102 return;
103 }
104 if (DEBUG_VISIBILITY) Slog.v(TAG_WM, "Reporting visible in "
105 + AppWindowContainerController.this.mToken);
106 mListener.onWindowsVisible();
107 };
108
109 private final Runnable mOnWindowsGone = () -> {
110 if (mListener == null) {
111 return;
112 }
113 if (DEBUG_VISIBILITY) Slog.v(TAG_WM, "Reporting gone in "
114 + AppWindowContainerController.this.mToken);
115 mListener.onWindowsGone();
116 };
117
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800118 private final Runnable mAddStartingWindow = () -> {
119 final StartingData startingData;
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100120 final AppWindowToken container;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800121
122 synchronized (mWindowMap) {
Jorim Jaggi73f88202017-01-12 13:54:40 +0100123 if (mContainer == null) {
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200124 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "mContainer was null while trying to"
125 + " add starting window");
Jorim Jaggi73f88202017-01-12 13:54:40 +0100126 return;
127 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800128 startingData = mContainer.startingData;
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100129 container = mContainer;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800130 }
131
132 if (startingData == null) {
133 // Animation has been canceled... do nothing.
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200134 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "startingData was nulled out before handling"
135 + " mAddStartingWindow: " + mContainer);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800136 return;
137 }
138
139 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Add starting "
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100140 + this + ": startingData=" + container.startingData);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800141
Jorim Jaggi02886a82016-12-06 09:10:06 -0800142 StartingSurface surface = null;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800143 try {
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100144 surface = startingData.createStartingSurface(container);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800145 } catch (Exception e) {
146 Slog.w(TAG_WM, "Exception when adding starting window", e);
147 }
Jorim Jaggi02886a82016-12-06 09:10:06 -0800148 if (surface != null) {
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800149 boolean abort = false;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800150 synchronized(mWindowMap) {
Jorim Jaggicfeff742017-05-23 18:00:48 +0200151 // If the window was successfully added, then
152 // we need to remove it.
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100153 if (container.removed || container.startingData == null) {
Jorim Jaggicfeff742017-05-23 18:00:48 +0200154 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
155 "Aborted starting " + container
156 + ": removed=" + container.removed
157 + " startingData=" + container.startingData);
158 container.startingWindow = null;
159 container.startingData = null;
160 abort = true;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800161 } else {
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100162 container.startingSurface = surface;
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800163 }
164 if (DEBUG_STARTING_WINDOW && !abort) Slog.v(TAG_WM,
165 "Added starting " + mContainer
166 + ": startingWindow="
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100167 + container.startingWindow + " startingView="
168 + container.startingSurface);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800169 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800170 if (abort) {
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100171 surface.remove();
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800172 }
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200173 } else if (DEBUG_STARTING_WINDOW) {
174 Slog.v(TAG_WM, "Surface returned was null: " + mContainer);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800175 }
176 };
177
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800178 public AppWindowContainerController(TaskWindowContainerController taskController,
179 IApplicationToken token, AppWindowContainerListener listener, int index,
180 int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int configChanges,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800181 boolean voiceInteraction, boolean launchTaskBehind, boolean alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700182 int targetSdkVersion, int rotationAnimationHint, long inputDispatchingTimeoutNanos,
183 Configuration overrideConfig, Rect bounds) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800184 this(taskController, token, listener, index, requestedOrientation, fullscreen,
185 showForAllUsers,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800186 configChanges, voiceInteraction, launchTaskBehind, alwaysFocusable,
187 targetSdkVersion, rotationAnimationHint, inputDispatchingTimeoutNanos,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700188 WindowManagerService.getInstance(), overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800189 }
190
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800191 public AppWindowContainerController(TaskWindowContainerController taskController,
192 IApplicationToken token, AppWindowContainerListener listener, int index,
193 int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int configChanges,
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800194 boolean voiceInteraction, boolean launchTaskBehind, boolean alwaysFocusable,
195 int targetSdkVersion, int rotationAnimationHint, long inputDispatchingTimeoutNanos,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700196 WindowManagerService service, Configuration overrideConfig, Rect bounds) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800197 super(listener, service);
Sudheer Shankac766db02017-06-12 10:37:29 -0700198 mHandler = new H(service.mH.getLooper());
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800199 mToken = token;
200 synchronized(mWindowMap) {
201 AppWindowToken atoken = mRoot.getAppWindowToken(mToken.asBinder());
202 if (atoken != null) {
203 // TODO: Should this throw an exception instead?
204 Slog.w(TAG_WM, "Attempted to add existing app token: " + mToken);
205 return;
206 }
207
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800208 final Task task = taskController.mContainer;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800209 if (task == null) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800210 throw new IllegalArgumentException("AppWindowContainerController: invalid "
211 + " controller=" + taskController);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800212 }
213
Winson Chung30480042017-01-26 10:55:34 -0800214 atoken = createAppWindow(mService, token, voiceInteraction, task.getDisplayContent(),
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800215 inputDispatchingTimeoutNanos, fullscreen, showForAllUsers, targetSdkVersion,
216 requestedOrientation, rotationAnimationHint, configChanges, launchTaskBehind,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700217 alwaysFocusable, this, overrideConfig, bounds);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800218 if (DEBUG_TOKEN_MOVEMENT || DEBUG_ADD_REMOVE) Slog.v(TAG_WM, "addAppToken: " + atoken
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800219 + " controller=" + taskController + " at " + index);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800220 task.addChild(atoken, index);
221 }
222 }
223
Winson Chung30480042017-01-26 10:55:34 -0800224 @VisibleForTesting
225 AppWindowToken createAppWindow(WindowManagerService service, IApplicationToken token,
226 boolean voiceInteraction, DisplayContent dc, long inputDispatchingTimeoutNanos,
227 boolean fullscreen, boolean showForAllUsers, int targetSdk, int orientation,
228 int rotationAnimationHint, int configChanges, boolean launchTaskBehind,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700229 boolean alwaysFocusable, AppWindowContainerController controller,
230 Configuration overrideConfig, Rect bounds) {
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100231 return new AppWindowToken(service, token, voiceInteraction, dc,
Winson Chung30480042017-01-26 10:55:34 -0800232 inputDispatchingTimeoutNanos, fullscreen, showForAllUsers, targetSdk, orientation,
233 rotationAnimationHint, configChanges, launchTaskBehind, alwaysFocusable,
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700234 controller, overrideConfig, bounds);
Winson Chung30480042017-01-26 10:55:34 -0800235 }
236
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800237 public void removeContainer(int displayId) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800238 synchronized(mWindowMap) {
239 final DisplayContent dc = mRoot.getDisplayContent(displayId);
240 if (dc == null) {
241 Slog.w(TAG_WM, "removeAppToken: Attempted to remove binder token: "
242 + mToken + " from non-existing displayId=" + displayId);
243 return;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800244 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800245 dc.removeAppToken(mToken.asBinder());
246 super.removeContainer();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800247 }
248 }
249
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800250 @Override
251 public void removeContainer() {
252 throw new UnsupportedOperationException("Use removeContainer(displayId) instead.");
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800253 }
254
Winson Chung30480042017-01-26 10:55:34 -0800255 public void reparent(TaskWindowContainerController taskController, int position) {
256 synchronized (mWindowMap) {
257 if (DEBUG_ADD_REMOVE) Slog.i(TAG_WM, "reparent: moving app token=" + mToken
258 + " to task=" + taskController + " at " + position);
259 if (mContainer == null) {
260 if (DEBUG_ADD_REMOVE) Slog.i(TAG_WM,
261 "reparent: could not find app token=" + mToken);
262 return;
263 }
264 final Task task = taskController.mContainer;
265 if (task == null) {
266 throw new IllegalArgumentException("reparent: could not find task="
267 + taskController);
268 }
269 mContainer.reparent(task, position);
270 mContainer.getDisplayContent().layoutAndAssignWindowLayersIfNeeded();
271 }
272 }
273
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800274 public Configuration setOrientation(int requestedOrientation, int displayId,
275 Configuration displayConfig, boolean freezeScreenIfNeeded) {
276 synchronized(mWindowMap) {
277 if (mContainer == null) {
278 Slog.w(TAG_WM,
279 "Attempted to set orientation of non-existing app token: " + mToken);
280 return null;
281 }
282
283 mContainer.setOrientation(requestedOrientation);
284
285 final IBinder binder = freezeScreenIfNeeded ? mToken.asBinder() : null;
286 return mService.updateOrientationFromAppTokens(displayConfig, binder, displayId);
287
288 }
289 }
290
291 public int getOrientation() {
292 synchronized(mWindowMap) {
293 if (mContainer == null) {
294 return SCREEN_ORIENTATION_UNSPECIFIED;
295 }
296
297 return mContainer.getOrientationIgnoreVisibility();
298 }
299 }
300
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700301 // TODO(b/36505427): Maybe move to WindowContainerController so other sub-classes can use it as
302 // a generic way to set override config. Need to untangle current ways the override config is
303 // currently set for tasks and displays before we are doing that though.
304 public void onOverrideConfigurationChanged(Configuration overrideConfiguration, Rect bounds) {
305 synchronized(mWindowMap) {
306 if (mContainer != null) {
307 mContainer.onOverrideConfigurationChanged(overrideConfiguration, bounds);
308 }
309 }
310 }
311
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100312 public void setDisablePreviewScreenshots(boolean disable) {
313 synchronized (mWindowMap) {
314 if (mContainer == null) {
315 Slog.w(TAG_WM, "Attempted to set disable screenshots of non-existing app"
316 + " token: " + mToken);
317 return;
318 }
Jorim Jaggid635a4a2017-05-03 15:21:26 +0200319 mContainer.setDisablePreviewScreenshots(disable);
Jorim Jaggi0fe7ce962017-02-22 16:45:48 +0100320 }
321 }
322
Wale Ogunwale89973222017-04-23 18:39:45 -0700323 public void setVisibility(boolean visible, boolean deferHidingClient) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800324 synchronized(mWindowMap) {
325 if (mContainer == null) {
326 Slog.w(TAG_WM, "Attempted to set visibility of non-existing app token: "
327 + mToken);
328 return;
329 }
330
331 final AppWindowToken wtoken = mContainer;
332
Wale Ogunwale0c20ee32017-05-23 10:34:48 -0700333 // Don't set visibility to false if we were already not visible. This prevents WM from
334 // adding the app to the closing app list which doesn't make sense for something that is
335 // already not visible. However, set visibility to true even if we are already visible.
336 // This makes sure the app is added to the opening apps list so that the right
337 // transition can be selected.
338 // TODO: Probably a good idea to separate the concept of opening/closing apps from the
339 // concept of setting visibility...
340 if (!visible && wtoken.hiddenRequested) {
341
342 if (!deferHidingClient && wtoken.mDeferHidingClient) {
343 // We previously deferred telling the client to hide itself when visibility was
344 // initially set to false. Now we would like it to hide, so go ahead and set it.
345 wtoken.mDeferHidingClient = deferHidingClient;
346 wtoken.setClientHidden(true);
347 }
348 return;
349 }
350
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800351 if (DEBUG_APP_TRANSITIONS || DEBUG_ORIENTATION) Slog.v(TAG_WM, "setAppVisibility("
352 + mToken + ", visible=" + visible + "): " + mService.mAppTransition
353 + " hidden=" + wtoken.hidden + " hiddenRequested="
354 + wtoken.hiddenRequested + " Callers=" + Debug.getCallers(6));
355
356 mService.mOpeningApps.remove(wtoken);
357 mService.mClosingApps.remove(wtoken);
358 wtoken.waitingToShow = false;
359 wtoken.hiddenRequested = !visible;
Wale Ogunwale89973222017-04-23 18:39:45 -0700360 wtoken.mDeferHidingClient = deferHidingClient;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800361
362 if (!visible) {
363 // If the app is dead while it was visible, we kept its dead window on screen.
364 // Now that the app is going invisible, we can remove it. It will be restarted
365 // if made visible again.
366 wtoken.removeDeadWindows();
367 wtoken.setVisibleBeforeClientHidden();
Jorim Jaggi45ca0542017-05-30 16:16:01 -0700368 mService.mUnknownAppVisibilityController.appRemovedOrHidden(wtoken);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800369 } else {
370 if (!mService.mAppTransition.isTransitionSet()
371 && mService.mAppTransition.isReady()) {
372 // Add the app mOpeningApps if transition is unset but ready. This means
373 // we're doing a screen freeze, and the unfreeze will wait for all opening
374 // apps to be ready.
375 mService.mOpeningApps.add(wtoken);
376 }
377 wtoken.startingMoved = false;
378 // If the token is currently hidden (should be the common case), or has been
379 // stopped, then we need to set up to wait for its windows to be ready.
380 if (wtoken.hidden || wtoken.mAppStopped) {
381 wtoken.clearAllDrawn();
382
383 // If the app was already visible, don't reset the waitingToShow state.
384 if (wtoken.hidden) {
385 wtoken.waitingToShow = true;
386 }
387
Wale Ogunwale89973222017-04-23 18:39:45 -0700388 if (wtoken.isClientHidden()) {
389 // In the case where we are making an app visible but holding off for a
390 // transition, we still need to tell the client to make its windows visible
391 // so they get drawn. Otherwise, we will wait on performing the transition
392 // until all windows have been drawn, they never will be, and we are sad.
393 wtoken.setClientHidden(false);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800394 }
395 }
396 wtoken.requestUpdateWallpaperIfNeeded();
397
398 if (DEBUG_ADD_REMOVE) Slog.v(TAG_WM, "No longer Stopped: " + wtoken);
399 wtoken.mAppStopped = false;
400 }
401
402 // If we are preparing an app transition, then delay changing
403 // the visibility of this token until we execute that transition.
Adrian Roose94c15c2017-05-09 13:17:54 -0700404 if (mService.okToAnimate() && mService.mAppTransition.isTransitionSet()) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800405 // A dummy animation is a placeholder animation which informs others that an
406 // animation is going on (in this case an application transition). If the animation
407 // was transferred from another application/animator, no dummy animator should be
408 // created since an animation is already in progress.
409 if (wtoken.mAppAnimator.usingTransferredAnimation
410 && wtoken.mAppAnimator.animation == null) {
411 Slog.wtf(TAG_WM, "Will NOT set dummy animation on: " + wtoken
412 + ", using null transferred animation!");
413 }
414 if (!wtoken.mAppAnimator.usingTransferredAnimation &&
415 (!wtoken.startingDisplayed || mService.mSkipAppTransitionAnimation)) {
416 if (DEBUG_APP_TRANSITIONS) Slog.v(
417 TAG_WM, "Setting dummy animation on: " + wtoken);
418 wtoken.mAppAnimator.setDummyAnimation();
419 }
420 wtoken.inPendingTransaction = true;
421 if (visible) {
422 mService.mOpeningApps.add(wtoken);
423 wtoken.mEnteringAnimation = true;
424 } else {
425 mService.mClosingApps.add(wtoken);
426 wtoken.mEnteringAnimation = false;
427 }
428 if (mService.mAppTransition.getAppTransition()
429 == AppTransition.TRANSIT_TASK_OPEN_BEHIND) {
430 // We're launchingBehind, add the launching activity to mOpeningApps.
431 final WindowState win =
432 mService.getDefaultDisplayContentLocked().findFocusedWindow();
433 if (win != null) {
434 final AppWindowToken focusedToken = win.mAppToken;
435 if (focusedToken != null) {
436 if (DEBUG_APP_TRANSITIONS) Slog.d(TAG_WM, "TRANSIT_TASK_OPEN_BEHIND, "
437 + " adding " + focusedToken + " to mOpeningApps");
438 // Force animation to be loaded.
439 focusedToken.hidden = true;
440 mService.mOpeningApps.add(focusedToken);
441 }
442 }
443 }
444 return;
445 }
446
447 wtoken.setVisibility(null, visible, TRANSIT_UNSET, true, wtoken.mVoiceInteraction);
448 wtoken.updateReportedVisibilityLocked();
449 }
450 }
451
452 /**
453 * Notifies that we launched an app that might be visible or not visible depending on what kind
454 * of Keyguard flags it's going to set on its windows.
455 */
456 public void notifyUnknownVisibilityLaunched() {
457 synchronized(mWindowMap) {
458 if (mContainer != null) {
459 mService.mUnknownAppVisibilityController.notifyLaunched(mContainer);
460 }
461 }
462 }
463
464 public boolean addStartingWindow(String pkg, int theme, CompatibilityInfo compatInfo,
465 CharSequence nonLocalizedLabel, int labelRes, int icon, int logo, int windowFlags,
Jorim Jaggibae01b12017-04-11 16:29:10 -0700466 IBinder transferFrom, boolean newTask, boolean taskSwitch, boolean processRunning,
Jorim Jaggi42befc62017-06-13 11:54:04 -0700467 boolean allowTaskSnapshot, boolean activityCreated, boolean fromRecents) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800468 synchronized(mWindowMap) {
469 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "setAppStartingWindow: token=" + mToken
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200470 + " pkg=" + pkg + " transferFrom=" + transferFrom + " newTask=" + newTask
471 + " taskSwitch=" + taskSwitch + " processRunning=" + processRunning
472 + " allowTaskSnapshot=" + allowTaskSnapshot);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800473
474 if (mContainer == null) {
475 Slog.w(TAG_WM, "Attempted to set icon of non-existing app token: " + mToken);
476 return false;
477 }
478
479 // If the display is frozen, we won't do anything until the actual window is
480 // displayed so there is no reason to put in the starting window.
481 if (!mService.okToDisplay()) {
482 return false;
483 }
484
485 if (mContainer.startingData != null) {
486 return false;
487 }
488
Wale Ogunwale4ba3e832017-04-20 16:45:13 -0700489 final WindowState mainWin = mContainer.findMainWindow();
Jorim Jaggie6b1b3b2017-07-24 16:44:18 +0200490 if (mainWin != null && mainWin.mWinAnimator.getShown()) {
491 // App already has a visible window...why would you want a starting window?
Wale Ogunwale4ba3e832017-04-20 16:45:13 -0700492 return false;
493 }
494
Jorim Jaggi42befc62017-06-13 11:54:04 -0700495 final TaskSnapshot snapshot = mService.mTaskSnapshotController.getSnapshot(
496 mContainer.getTask().mTaskId, mContainer.getTask().mUserId,
497 false /* restoreFromDisk */, false /* reducedResolution */);
Jorim Jaggibae01b12017-04-11 16:29:10 -0700498 final int type = getStartingWindowType(newTask, taskSwitch, processRunning,
Jorim Jaggi42befc62017-06-13 11:54:04 -0700499 allowTaskSnapshot, activityCreated, fromRecents, snapshot);
Jorim Jaggi02886a82016-12-06 09:10:06 -0800500
501 if (type == STARTING_WINDOW_TYPE_SNAPSHOT) {
Jorim Jaggi42befc62017-06-13 11:54:04 -0700502 return createSnapshot(snapshot);
Jorim Jaggi02886a82016-12-06 09:10:06 -0800503 }
504
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800505 // If this is a translucent window, then don't show a starting window -- the current
506 // effect (a full-screen opaque starting window that fades away to the real contents
507 // when it is ready) does not work for this.
508 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Checking theme of starting window: 0x"
509 + Integer.toHexString(theme));
510 if (theme != 0) {
511 AttributeCache.Entry ent = AttributeCache.instance().get(pkg, theme,
512 com.android.internal.R.styleable.Window, mService.mCurrentUserId);
513 if (ent == null) {
514 // Whoops! App doesn't exist. Um. Okay. We'll just pretend like we didn't
515 // see that.
516 return false;
517 }
518 final boolean windowIsTranslucent = ent.array.getBoolean(
519 com.android.internal.R.styleable.Window_windowIsTranslucent, false);
520 final boolean windowIsFloating = ent.array.getBoolean(
521 com.android.internal.R.styleable.Window_windowIsFloating, false);
522 final boolean windowShowWallpaper = ent.array.getBoolean(
523 com.android.internal.R.styleable.Window_windowShowWallpaper, false);
524 final boolean windowDisableStarting = ent.array.getBoolean(
525 com.android.internal.R.styleable.Window_windowDisablePreview, false);
526 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Translucent=" + windowIsTranslucent
527 + " Floating=" + windowIsFloating
528 + " ShowWallpaper=" + windowShowWallpaper);
529 if (windowIsTranslucent) {
530 return false;
531 }
532 if (windowIsFloating || windowDisableStarting) {
533 return false;
534 }
535 if (windowShowWallpaper) {
536 if (mContainer.getDisplayContent().mWallpaperController.getWallpaperTarget()
537 == null) {
538 // If this theme is requesting a wallpaper, and the wallpaper
539 // is not currently visible, then this effectively serves as
540 // an opaque window and our starting window transition animation
541 // can still work. We just need to make sure the starting window
542 // is also showing the wallpaper.
543 windowFlags |= FLAG_SHOW_WALLPAPER;
544 } else {
545 return false;
546 }
547 }
548 }
549
550 if (mContainer.transferStartingWindow(transferFrom)) {
551 return true;
552 }
553
Jorim Jaggi02886a82016-12-06 09:10:06 -0800554 // There is no existing starting window, and we don't want to create a splash screen, so
555 // that's it!
556 if (type != STARTING_WINDOW_TYPE_SPLASH_SCREEN) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800557 return false;
558 }
559
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200560 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Creating SplashScreenStartingData");
Jorim Jaggie09fc6b2017-01-19 15:33:36 +0100561 mContainer.startingData = new SplashScreenStartingData(mService, pkg, theme,
Jorim Jaggi02886a82016-12-06 09:10:06 -0800562 compatInfo, nonLocalizedLabel, labelRes, icon, logo, windowFlags,
563 mContainer.getMergedOverrideConfiguration());
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800564 scheduleAddStartingWindow();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800565 }
566 return true;
567 }
568
Jorim Jaggibae01b12017-04-11 16:29:10 -0700569 private int getStartingWindowType(boolean newTask, boolean taskSwitch, boolean processRunning,
Jorim Jaggi42befc62017-06-13 11:54:04 -0700570 boolean allowTaskSnapshot, boolean activityCreated, boolean fromRecents,
571 TaskSnapshot snapshot) {
Matthew Ng606dd802017-06-05 14:06:32 -0700572 if (mService.mAppTransition.getAppTransition() == TRANSIT_DOCK_TASK_FROM_RECENTS) {
573 // TODO(b/34099271): Remove this statement to add back the starting window and figure
574 // out why it causes flickering, the starting window appears over the thumbnail while
575 // the docked from recents transition occurs
576 return STARTING_WINDOW_TYPE_NONE;
577 } else if (newTask || !processRunning || (taskSwitch && !activityCreated)) {
Jorim Jaggi02886a82016-12-06 09:10:06 -0800578 return STARTING_WINDOW_TYPE_SPLASH_SCREEN;
Jorim Jaggibae01b12017-04-11 16:29:10 -0700579 } else if (taskSwitch && allowTaskSnapshot) {
Jorim Jaggi42befc62017-06-13 11:54:04 -0700580 return snapshot == null ? STARTING_WINDOW_TYPE_NONE
Jorim Jaggi1dda7a62017-06-28 14:40:27 -0400581 : snapshotOrientationSameAsTask(snapshot) || fromRecents
Wale Ogunwaledfb7fb22017-06-23 14:52:40 -0700582 ? STARTING_WINDOW_TYPE_SNAPSHOT : STARTING_WINDOW_TYPE_SPLASH_SCREEN;
Jorim Jaggi02886a82016-12-06 09:10:06 -0800583 } else {
584 return STARTING_WINDOW_TYPE_NONE;
585 }
586 }
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800587
Jorim Jaggi02886a82016-12-06 09:10:06 -0800588 void scheduleAddStartingWindow() {
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800589 // Note: we really want to do sendMessageAtFrontOfQueue() because we
590 // want to process the message ASAP, before any other queued
591 // messages.
592 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Enqueueing ADD_STARTING");
Jorim Jaggied7993b2017-03-28 18:50:01 +0100593 mService.mAnimationHandler.postAtFrontOfQueue(mAddStartingWindow);
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800594 }
595
Jorim Jaggi42befc62017-06-13 11:54:04 -0700596 private boolean createSnapshot(TaskSnapshot snapshot) {
Jorim Jaggi02886a82016-12-06 09:10:06 -0800597 if (snapshot == null) {
598 return false;
599 }
600
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200601 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Creating SnapshotStartingData");
Jorim Jaggi30d64f32017-04-07 16:33:17 +0200602 mContainer.startingData = new SnapshotStartingData(mService, snapshot);
Jorim Jaggi02886a82016-12-06 09:10:06 -0800603 scheduleAddStartingWindow();
604 return true;
605 }
606
Jorim Jaggi1dda7a62017-06-28 14:40:27 -0400607 private boolean snapshotOrientationSameAsTask(TaskSnapshot snapshot) {
Jorim Jaggi42befc62017-06-13 11:54:04 -0700608 if (snapshot == null) {
609 return false;
610 }
Jorim Jaggi1dda7a62017-06-28 14:40:27 -0400611 return mContainer.getTask().getConfiguration().orientation == snapshot.getOrientation();
Jorim Jaggi42befc62017-06-13 11:54:04 -0700612 }
613
Jorim Jaggi19be6052017-08-03 18:33:43 +0200614 public void removeStartingWindow() {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800615 synchronized (mWindowMap) {
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800616 if (mContainer.startingWindow == null) {
617 if (mContainer.startingData != null) {
618 // Starting window has not been added yet, but it is scheduled to be added.
619 // Go ahead and cancel the request.
620 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM,
621 "Clearing startingData for token=" + mContainer);
622 mContainer.startingData = null;
623 }
624 return;
625 }
626
Seigo Nonaka82871bd2017-07-17 20:22:44 -0700627 final StartingSurface surface;
628 if (mContainer.startingData != null) {
629 surface = mContainer.startingSurface;
630 mContainer.startingData = null;
631 mContainer.startingSurface = null;
632 mContainer.startingWindow = null;
633 mContainer.startingDisplayed = false;
Seigo Nonakaeafe7372017-08-16 12:39:49 -0700634 if (surface == null) {
635 if (DEBUG_STARTING_WINDOW) {
636 Slog.v(TAG_WM, "startingWindow was set but startingSurface==null, couldn't "
637 + "remove");
638 }
639 return;
Seigo Nonaka82871bd2017-07-17 20:22:44 -0700640 }
641 } else {
642 if (DEBUG_STARTING_WINDOW) {
643 Slog.v(TAG_WM, "Tried to remove starting window but startingWindow was null:"
644 + mContainer);
645 }
646 return;
647 }
648
Jorim Jaggie4b0f282017-05-17 15:10:29 +0200649 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Schedule remove starting " + mContainer
Seigo Nonaka82871bd2017-07-17 20:22:44 -0700650 + " startingWindow=" + mContainer.startingWindow
651 + " startingView=" + mContainer.startingSurface);
Jorim Jaggia3382192017-07-18 14:33:21 +0200652
653 // Use the same thread to remove the window as we used to add it, as otherwise we end up
654 // with things in the view hierarchy being called from different threads.
Seigo Nonaka82871bd2017-07-17 20:22:44 -0700655 mHandler.post(() -> {
656 if (DEBUG_STARTING_WINDOW) Slog.v(TAG_WM, "Removing startingView=" + surface);
657 try {
658 surface.remove();
659 } catch (Exception e) {
660 Slog.w(TAG_WM, "Exception when removing starting window", e);
661 }
662 });
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800663 }
664 }
665
666 public void pauseKeyDispatching() {
667 synchronized (mWindowMap) {
668 if (mContainer != null) {
669 mService.mInputMonitor.pauseDispatchingLw(mContainer);
670 }
671 }
672 }
673
674 public void resumeKeyDispatching() {
675 synchronized (mWindowMap) {
676 if (mContainer != null) {
677 mService.mInputMonitor.resumeDispatchingLw(mContainer);
678 }
679 }
680 }
681
Jorim Jaggibae01b12017-04-11 16:29:10 -0700682 public void notifyAppResumed(boolean wasStopped) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800683 synchronized(mWindowMap) {
684 if (mContainer == null) {
685 Slog.w(TAG_WM, "Attempted to notify resumed of non-existing app token: " + mToken);
686 return;
687 }
Jorim Jaggibae01b12017-04-11 16:29:10 -0700688 mContainer.notifyAppResumed(wasStopped);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800689 }
690 }
691
692 public void notifyAppStopped() {
693 synchronized(mWindowMap) {
694 if (mContainer == null) {
695 Slog.w(TAG_WM, "Attempted to notify stopped of non-existing app token: "
696 + mToken);
697 return;
698 }
699 mContainer.notifyAppStopped();
700 }
701 }
702
703 public void startFreezingScreen(int configChanges) {
704 synchronized(mWindowMap) {
705 if (configChanges == 0 && mService.okToDisplay()) {
706 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Skipping set freeze of " + mToken);
707 return;
708 }
709
710 if (mContainer == null) {
711 Slog.w(TAG_WM,
712 "Attempted to freeze screen with non-existing app token: " + mContainer);
713 return;
714 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800715 mContainer.startFreezingScreen();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800716 }
717 }
718
719 public void stopFreezingScreen(boolean force) {
720 synchronized(mWindowMap) {
721 if (mContainer == null) {
722 return;
723 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800724 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Clear freezing of " + mToken + ": hidden="
725 + mContainer.hidden + " freezing=" + mContainer.mAppAnimator.freezingScreen);
726 mContainer.stopFreezingScreen(true, force);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800727 }
728 }
729
730 /**
731 * Takes a snapshot of the screen. In landscape mode this grabs the whole screen.
732 * In portrait mode, it grabs the full screenshot.
733 *
734 * @param displayId the Display to take a screenshot of.
735 * @param width the width of the target bitmap
736 * @param height the height of the target bitmap
737 * @param frameScale the scale to apply to the frame, only used when width = -1 and height = -1
738 */
739 public Bitmap screenshotApplications(int displayId, int width, int height, float frameScale) {
740 try {
741 Trace.traceBegin(Trace.TRACE_TAG_WINDOW_MANAGER, "screenshotApplications");
742 final DisplayContent dc;
743 synchronized(mWindowMap) {
744 dc = mRoot.getDisplayContentOrCreate(displayId);
745 if (dc == null) {
746 if (DEBUG_SCREENSHOT) Slog.i(TAG_WM, "Screenshot of " + mToken
747 + ": returning null. No Display for displayId=" + displayId);
748 return null;
749 }
750 }
751 return dc.screenshotApplications(mToken.asBinder(), width, height,
752 false /* includeFullDisplay */, frameScale, Bitmap.Config.RGB_565,
Jorim Jaggi6a7a8592017-01-12 00:44:33 +0100753 false /* wallpaperOnly */, false /* includeDecor */);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800754 } finally {
755 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
756 }
757 }
758
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800759 void reportStartingWindowDrawn() {
Sudheer Shankac766db02017-06-12 10:37:29 -0700760 mHandler.sendMessage(mHandler.obtainMessage(H.NOTIFY_STARTING_WINDOW_DRAWN));
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800761 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800762
763 void reportWindowsDrawn() {
Sudheer Shankac766db02017-06-12 10:37:29 -0700764 mHandler.sendMessage(mHandler.obtainMessage(H.NOTIFY_WINDOWS_DRAWN));
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800765 }
766
767 void reportWindowsVisible() {
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800768 mHandler.post(mOnWindowsVisible);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800769 }
770
771 void reportWindowsGone() {
Jorim Jaggiba41f4b2016-12-14 17:43:07 -0800772 mHandler.post(mOnWindowsGone);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800773 }
774
775 /** Calls directly into activity manager so window manager lock shouldn't held. */
Wale Ogunwale7402ddf2017-03-29 12:58:24 -0700776 boolean keyDispatchingTimedOut(String reason, int windowPid) {
777 return mListener != null && mListener.keyDispatchingTimedOut(reason, windowPid);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800778 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800779
780 @Override
781 public String toString() {
Wale Ogunwale9c64cb62017-04-12 13:39:59 -0700782 return "AppWindowContainerController{"
783 + " token=" + mToken
784 + " mContainer=" + mContainer
785 + " mListener=" + mListener
786 + "}";
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800787 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -0800788}