blob: 61635920f01702e6f969c59de524fdd7a6f5221a [file] [log] [blame]
Craig Mautner59c00972012-07-30 12:10:24 -07001/*
2 * Copyright (C) 2012 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
Wale Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT;
Wale Ogunwale61911492017-10-11 08:50:50 -070020import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070021import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070022import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070023import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
24import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwalea77e1462016-09-28 10:09:46 -070025import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070026import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
27import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale687b4272017-07-27 02:56:23 -070028import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
29import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
Wale Ogunwale19e452e2016-10-12 12:36:29 -070030import static android.view.Display.DEFAULT_DISPLAY;
31import static android.view.Display.FLAG_PRIVATE;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -070032import static android.view.Surface.ROTATION_0;
33import static android.view.Surface.ROTATION_180;
34import static android.view.Surface.ROTATION_270;
35import static android.view.Surface.ROTATION_90;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070036import static android.view.View.GONE;
Wale Ogunwale10124582016-09-15 20:25:50 -070037import static android.view.WindowManager.DOCKED_BOTTOM;
38import static android.view.WindowManager.DOCKED_INVALID;
39import static android.view.WindowManager.DOCKED_TOP;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -080040import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
41import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
42import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
Wale Ogunwale494009b82016-10-21 09:01:38 -070043import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070044import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070045import static android.view.WindowManager.LayoutParams.NEEDS_MENU_SET_TRUE;
46import static android.view.WindowManager.LayoutParams.NEEDS_MENU_UNSET;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070047import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
Wale Ogunwale494009b82016-10-21 09:01:38 -070048import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070049import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale494009b82016-10-21 09:01:38 -070050import static android.view.WindowManager.LayoutParams.TYPE_BOOT_PROGRESS;
Robert Carrf7a7ca82017-12-06 13:17:07 -080051import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
Wale Ogunwale494009b82016-10-21 09:01:38 -070052import static android.view.WindowManager.LayoutParams.TYPE_DRAWN_APPLICATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070053import static android.view.WindowManager.LayoutParams.TYPE_DREAM;
Wale Ogunwale3a931692016-11-02 16:49:48 -070054import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
55import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
Wale Ogunwale494009b82016-10-21 09:01:38 -070056import static android.view.WindowManager.LayoutParams.TYPE_STATUS_BAR;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070057import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG;
58import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_ERROR;
Svetoslav Ganovaa076532016-08-01 19:16:43 -070059import static android.view.WindowManager.LayoutParams.TYPE_TOAST;
Wale Ogunwaleec731152016-09-08 20:18:57 -070060import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080061import static android.view.WindowManager.TRANSIT_KEYGUARD_UNOCCLUDE;
62
Adrian Roose99bc052017-11-20 17:55:31 +010063import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
64import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_CONFIG;
65import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_LAYOUT;
66import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080067import static com.android.server.wm.DisplayContentProto.ABOVE_APP_WINDOWS;
68import static com.android.server.wm.DisplayContentProto.BELOW_APP_WINDOWS;
69import static com.android.server.wm.DisplayContentProto.DISPLAY_FRAMES;
70import static com.android.server.wm.DisplayContentProto.DISPLAY_INFO;
71import static com.android.server.wm.DisplayContentProto.DOCKED_STACK_DIVIDER_CONTROLLER;
72import static com.android.server.wm.DisplayContentProto.DPI;
73import static com.android.server.wm.DisplayContentProto.ID;
74import static com.android.server.wm.DisplayContentProto.IME_WINDOWS;
75import static com.android.server.wm.DisplayContentProto.PINNED_STACK_CONTROLLER;
76import static com.android.server.wm.DisplayContentProto.ROTATION;
77import static com.android.server.wm.DisplayContentProto.SCREEN_ROTATION_ANIMATION;
78import static com.android.server.wm.DisplayContentProto.STACKS;
Louis Chang7501e332018-08-20 13:08:39 +080079import static com.android.server.wm.DisplayContentProto.SURFACE_SIZE;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080080import static com.android.server.wm.DisplayContentProto.WINDOW_CONTAINER;
Wale Ogunwale1666e312016-12-16 11:27:18 -080081import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -070082import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_BOOT;
Wale Ogunwale10124582016-09-15 20:25:50 -070083import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DISPLAY;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070084import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS;
85import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070086import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT_METHOD;
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -070087import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070088import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
Jorim Jaggife762342016-10-13 14:33:27 +020089import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070090import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREENSHOT;
Wale Ogunwale494009b82016-10-21 09:01:38 -070091import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREEN_ON;
Andrii Kulian839def92016-11-02 10:58:58 -070092import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Wale Ogunwale1666e312016-12-16 11:27:18 -080093import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070094import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070095import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER_LIGHT;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070096import static com.android.server.wm.WindowManagerDebugConfig.SHOW_STACK_CRAWLS;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070097import static com.android.server.wm.WindowManagerDebugConfig.SHOW_TRANSACTIONS;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070098import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080099import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700100import static com.android.server.wm.WindowManagerService.CUSTOM_SCREEN_ROTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700101import static com.android.server.wm.WindowManagerService.H.SEND_NEW_CONFIGURATION;
102import static com.android.server.wm.WindowManagerService.H.UPDATE_DOCKED_STACK_DIVIDER;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700103import static com.android.server.wm.WindowManagerService.H.WINDOW_HIDE_TIMEOUT;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700104import static com.android.server.wm.WindowManagerService.LAYOUT_REPEAT_THRESHOLD;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700105import static com.android.server.wm.WindowManagerService.MAX_ANIMATION_DURATION;
106import static com.android.server.wm.WindowManagerService.SEAMLESS_ROTATION_TIMEOUT_DURATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700107import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700108import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_ACTIVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700109import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_TIMEOUT;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700110import static com.android.server.wm.WindowManagerService.WINDOW_FREEZE_TIMEOUT_DURATION;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700111import static com.android.server.wm.WindowManagerService.dipToPixel;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700112import static com.android.server.wm.WindowManagerService.logSurface;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700113import static com.android.server.wm.WindowState.RESIZE_HANDLE_WIDTH_IN_DP;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700114import static com.android.server.wm.WindowStateAnimator.DRAW_PENDING;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700115import static com.android.server.wm.WindowStateAnimator.READY_TO_SHOW;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700116import static com.android.server.wm.WindowSurfacePlacer.SET_WALLPAPER_MAY_CHANGE;
Riddle Hsua4d6fa22018-08-11 00:50:39 +0800117import static com.android.server.wm.utils.CoordinateTransforms.transformPhysicalToLogicalCoordinates;
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -0700118
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700119import android.annotation.CallSuper;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700120import android.annotation.NonNull;
Dean Harding3e5a1522017-10-06 09:19:01 -0700121import android.content.pm.PackageManager;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700122import android.content.res.CompatibilityInfo;
Andrii Kulian441e4492016-09-29 15:25:00 -0700123import android.content.res.Configuration;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700124import android.graphics.Bitmap;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700125import android.graphics.Matrix;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800126import android.graphics.Rect;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700127import android.graphics.RectF;
Craig Mautner6601b7b2013-04-29 10:29:11 -0700128import android.graphics.Region;
Jorim Jaggid47e7e12016-03-01 09:57:38 +0100129import android.graphics.Region.Op;
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700130import android.hardware.display.DisplayManagerInternal;
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700131import android.os.Debug;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700132import android.os.Handler;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700133import android.os.IBinder;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700134import android.os.RemoteException;
135import android.os.SystemClock;
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100136import android.os.Trace;
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800137import android.util.ArraySet;
Chong Zhang8e89b312015-09-09 15:09:30 -0700138import android.util.DisplayMetrics;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700139import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700140import android.util.proto.ProtoOutputStream;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700141import android.view.Display;
Adrian Roos1cf585052018-01-03 18:43:27 +0100142import android.view.DisplayCutout;
Craig Mautner59c00972012-07-30 12:10:24 -0700143import android.view.DisplayInfo;
Riddle Hsua4d6fa22018-08-11 00:50:39 +0800144import android.view.Gravity;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700145import android.view.InputDevice;
Robert Carrb1579c82017-09-05 14:54:47 -0700146import android.view.MagnificationSpec;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700147import android.view.Surface;
148import android.view.SurfaceControl;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100149import android.view.SurfaceControl.Transaction;
Robert Carrb1579c82017-09-05 14:54:47 -0700150import android.view.SurfaceSession;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700151
Bryce Lee48f4b572017-04-10 10:54:15 -0700152import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -0800153import com.android.internal.util.ToBooleanFunction;
Adrian Roose99bc052017-11-20 17:55:31 +0100154import com.android.server.policy.WindowManagerPolicy;
Adrian Roos2aa0fcd2018-02-19 18:07:49 +0100155import com.android.server.wm.utils.RotationCache;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100156import com.android.server.wm.utils.WmDisplayCutout;
Craig Mautner59c00972012-07-30 12:10:24 -0700157
158import java.io.PrintWriter;
159import java.util.ArrayList;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700160import java.util.Comparator;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700161import java.util.HashMap;
162import java.util.Iterator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700163import java.util.LinkedList;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700164import java.util.List;
Adrian Roos1cf585052018-01-03 18:43:27 +0100165import java.util.Objects;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800166import java.util.function.Consumer;
167import java.util.function.Predicate;
Craig Mautner59c00972012-07-30 12:10:24 -0700168
Craig Mautner59c00972012-07-30 12:10:24 -0700169/**
170 * Utility class for keeping track of the WindowStates and other pertinent contents of a
171 * particular Display.
172 *
173 * IMPORTANT: No method from this class should ever be used without holding
174 * WindowManagerService.mWindowMap.
175 */
Riddle Hsuad256a12018-07-18 16:11:30 +0800176class DisplayContent extends WindowContainer<DisplayContent.DisplayChildWindowContainer>
177 implements WindowManagerPolicy.DisplayContentInfo {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700178 private static final String TAG = TAG_WITH_CLASS_NAME ? "DisplayContent" : TAG_WM;
Craig Mautner59c00972012-07-30 12:10:24 -0700179
180 /** Unique identifier of this stack. */
181 private final int mDisplayId;
182
Wale Ogunwale3a931692016-11-02 16:49:48 -0700183 /** The containers below are the only child containers the display can have. */
184 // Contains all window containers that are related to apps (Activities)
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100185 private final TaskStackContainers mTaskStackContainers = new TaskStackContainers(mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700186 // Contains all non-app window containers that should be displayed above the app containers
187 // (e.g. Status bar)
Robert Carree4d4b92017-11-22 12:21:46 -0800188 private final AboveAppWindowContainers mAboveAppWindowsContainers =
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100189 new AboveAppWindowContainers("mAboveAppWindowsContainers", mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700190 // Contains all non-app window containers that should be displayed below the app containers
191 // (e.g. Wallpaper).
192 private final NonAppWindowContainers mBelowAppWindowsContainers =
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100193 new NonAppWindowContainers("mBelowAppWindowsContainers", mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700194 // Contains all IME window containers. Note that the z-ordering of the IME windows will depend
195 // on the IME target. We mainly have this container grouping so we can keep track of all the IME
Robert Carr9034d962018-01-04 18:27:42 -0800196 // window containers together and move them in-sync if/when needed. We use a subclass of
197 // WindowContainer which is omitted from screen magnification, as the IME is never magnified.
198 private final NonMagnifiableWindowContainers mImeWindowsContainers =
199 new NonMagnifiableWindowContainers("mImeWindowsContainers", mService);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700200
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000201 private WindowState mTmpWindow;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800202 private WindowState mTmpWindow2;
203 private WindowAnimator mTmpWindowAnimator;
204 private boolean mTmpRecoveringMemory;
205 private boolean mUpdateImeTarget;
206 private boolean mTmpInitial;
Bryce Lee27cec322017-03-21 09:41:37 -0700207 private int mMaxUiWidth;
Craig Mautner59c00972012-07-30 12:10:24 -0700208
Wale Ogunwale02319a62016-09-26 15:21:22 -0700209 // Mapping from a token IBinder to a WindowToken object on this display.
210 private final HashMap<IBinder, WindowToken> mTokenMap = new HashMap();
211
Andrii Kuliancd097992017-03-23 18:31:59 -0700212 // Initial display metrics.
Craig Mautner59c00972012-07-30 12:10:24 -0700213 int mInitialDisplayWidth = 0;
214 int mInitialDisplayHeight = 0;
Dianne Hackborndde331c2012-08-03 14:01:57 -0700215 int mInitialDisplayDensity = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700216
Adrian Roos1cf585052018-01-03 18:43:27 +0100217 DisplayCutout mInitialDisplayCutout;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100218 private final RotationCache<DisplayCutout, WmDisplayCutout> mDisplayCutoutCache
Adrian Roos2aa0fcd2018-02-19 18:07:49 +0100219 = new RotationCache<>(this::calculateDisplayCutoutForRotationUncached);
Adrian Roos1cf585052018-01-03 18:43:27 +0100220
Andrii Kuliancd097992017-03-23 18:31:59 -0700221 /**
222 * Overridden display size. Initialized with {@link #mInitialDisplayWidth}
223 * and {@link #mInitialDisplayHeight}, but can be set via shell command "adb shell wm size".
224 * @see WindowManagerService#setForcedDisplaySize(int, int, int)
225 */
Craig Mautner59c00972012-07-30 12:10:24 -0700226 int mBaseDisplayWidth = 0;
227 int mBaseDisplayHeight = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700228 /**
229 * Overridden display density for current user. Initialized with {@link #mInitialDisplayDensity}
230 * but can be set from Settings or via shell command "adb shell wm density".
231 * @see WindowManagerService#setForcedDisplayDensityForUser(int, int, int)
232 */
Dianne Hackborndde331c2012-08-03 14:01:57 -0700233 int mBaseDisplayDensity = 0;
Jeff Brownd46747a2015-04-15 19:02:36 -0700234 boolean mDisplayScalingDisabled;
Craig Mautner2d5618c2012-10-18 13:55:47 -0700235 private final DisplayInfo mDisplayInfo = new DisplayInfo();
236 private final Display mDisplay;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700237 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800238 private final DisplayPolicy mDisplayPolicy;
239 private DisplayRotation mDisplayRotation;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000240 DisplayFrames mDisplayFrames;
241
Andrii Kulian06d07d62017-03-14 11:11:47 -0700242 /**
243 * For default display it contains real metrics, empty for others.
244 * @see WindowManagerService#createWatermarkInTransaction()
245 */
246 final DisplayMetrics mRealDisplayMetrics = new DisplayMetrics();
247 /** @see #computeCompatSmallestWidth(boolean, int, int, int, int) */
248 private final DisplayMetrics mTmpDisplayMetrics = new DisplayMetrics();
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700249
Andrii Kulian06d07d62017-03-14 11:11:47 -0700250 /**
251 * Compat metrics computed based on {@link #mDisplayMetrics}.
252 * @see #updateDisplayAndOrientation(int)
253 */
254 private final DisplayMetrics mCompatDisplayMetrics = new DisplayMetrics();
255
256 /** The desired scaling factor for compatible apps. */
257 float mCompatibleScreenScale;
Craig Mautner59c00972012-07-30 12:10:24 -0700258
Andrii Kulian8ee72852017-03-10 10:36:45 -0800259 /**
260 * Current rotation of the display.
261 * Constants as per {@link android.view.Surface.Rotation}.
262 *
Robert Carrae606b42018-02-15 15:36:23 -0800263 * @see #updateRotationUnchecked()
Andrii Kulian8ee72852017-03-10 10:36:45 -0800264 */
265 private int mRotation = 0;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700266
Andrii Kulian8ee72852017-03-10 10:36:45 -0800267 /**
268 * Last applied orientation of the display.
269 * Constants as per {@link android.content.pm.ActivityInfo.ScreenOrientation}.
270 *
271 * @see WindowManagerService#updateOrientationFromAppTokensLocked(boolean, int)
272 */
273 private int mLastOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700274
Andrii Kulian8ee72852017-03-10 10:36:45 -0800275 /**
276 * Flag indicating that the application is receiving an orientation that has different metrics
277 * than it expected. E.g. Portrait instead of Landscape.
278 *
Robert Carrae606b42018-02-15 15:36:23 -0800279 * @see #updateRotationUnchecked()
Andrii Kulian8ee72852017-03-10 10:36:45 -0800280 */
281 private boolean mAltOrientation = false;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700282
Andrii Kulian8ee72852017-03-10 10:36:45 -0800283 /**
284 * Orientation forced by some window. If there is no visible window that specifies orientation
285 * it is set to {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
286 *
287 * @see NonAppWindowContainers#getOrientation()
288 */
289 private int mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700290
Andrii Kulian8ee72852017-03-10 10:36:45 -0800291 /**
292 * Last orientation forced by the keyguard. It is applied when keyguard is shown and is not
293 * occluded.
294 *
295 * @see NonAppWindowContainers#getOrientation()
296 */
297 private int mLastKeyguardForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
298
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700299 /**
300 * Keep track of wallpaper visibility to notify changes.
301 */
302 private boolean mLastWallpaperVisible = false;
303
Andrii Kulian06d07d62017-03-14 11:11:47 -0700304 private Rect mBaseDisplayRect = new Rect();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700305
Craig Mautner39834192012-09-02 07:47:24 -0700306 // Accessed directly by all users.
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700307 private boolean mLayoutNeeded;
Craig Mautner76a71652012-09-03 23:23:58 -0700308 int pendingLayoutChanges;
Riddle Hsu654a6f92018-07-13 22:59:36 +0800309 int mDeferredRotationPauseCount;
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800310
Andrii Kulian839def92016-11-02 10:58:58 -0700311 // TODO(multi-display): remove some of the usages.
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800312 @VisibleForTesting
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800313 boolean isDefaultDisplay;
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800314
Andrii Kulianf0379de2018-03-14 16:24:07 -0700315 /**
316 * Flag indicating whether WindowManager should override info for this display in
317 * DisplayManager.
318 */
319 boolean mShouldOverrideDisplayConfiguration = true;
Craig Mautner39834192012-09-02 07:47:24 -0700320
Craig Mautnerdc548482014-02-05 13:35:24 -0800321 /** Window tokens that are in the process of exiting, but still on screen for animations. */
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700322 final ArrayList<WindowToken> mExitingTokens = new ArrayList<>();
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800323
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700324 /** Detect user tapping outside of current focused task bounds .*/
325 TaskTapPointerEventListener mTapDetector;
Craig Mautnercf910b02013-04-23 11:23:27 -0700326
Craig Mautner6601b7b2013-04-29 10:29:11 -0700327 /** Detect user tapping outside of current focused stack bounds .*/
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700328 private Region mTouchExcludeRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700329
Craig Mautner6601b7b2013-04-29 10:29:11 -0700330 /** Save allocating when calculating rects */
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800331 private final Rect mTmpRect = new Rect();
332 private final Rect mTmpRect2 = new Rect();
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700333 private final RectF mTmpRectF = new RectF();
334 private final Matrix mTmpMatrix = new Matrix();
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800335 private final Region mTmpRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700336
Bryce Leef3c6a472017-11-14 14:53:06 -0800337 /** Used for handing back size of display */
338 private final Rect mTmpBounds = new Rect();
339
Craig Mautner95da1082014-02-24 17:54:35 -0800340 /** Remove this display when animation on it has completed. */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700341 private boolean mDeferredRemoval;
Craig Mautner1bf2b872014-02-05 15:37:40 -0800342
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700343 final DockedStackDividerController mDividerControllerLocked;
Winson Chung655332c2016-10-31 13:14:28 -0700344 final PinnedStackController mPinnedStackControllerLocked;
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700345
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800346 final ArrayList<WindowState> mTapExcludedWindows = new ArrayList<>();
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800347 /** A collection of windows that provide tap exclude regions inside of them. */
348 final ArraySet<WindowState> mTapExcludeProvidingWindows = new ArraySet<>();
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800349
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000350 private boolean mHaveBootMsg = false;
351 private boolean mHaveApp = false;
352 private boolean mHaveWallpaper = false;
353 private boolean mHaveKeyguard = true;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700354
355 private final LinkedList<AppWindowToken> mTmpUpdateAllDrawn = new LinkedList();
356
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700357 private final TaskForResizePointSearchResult mTmpTaskForResizePointSearchResult =
358 new TaskForResizePointSearchResult();
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000359 private final ApplySurfaceChangesTransactionState mTmpApplySurfaceChangesTransactionState =
360 new ApplySurfaceChangesTransactionState();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700361
Wale Ogunwale601a3f02016-10-17 08:39:39 -0700362 // True if this display is in the process of being removed. Used to determine if the removal of
363 // the display's direct children should be allowed.
364 private boolean mRemovingDisplay = false;
365
Bryce Leed1871262017-06-12 14:12:29 -0700366 // {@code false} if this display is in the processing of being created.
367 private boolean mDisplayReady = false;
368
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800369 WallpaperController mWallpaperController;
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700370
Robert Carrb1579c82017-09-05 14:54:47 -0700371 private final SurfaceSession mSession = new SurfaceSession();
372
373 /**
374 * We organize all top-level Surfaces in to the following layers.
375 * mOverlayLayer contains a few Surfaces which are always on top of others
Robert Carree4d4b92017-11-22 12:21:46 -0800376 * and omitted from Screen-Magnification, for example the strict mode flash or
377 * the magnification overlay itself.
Robert Carrb1579c82017-09-05 14:54:47 -0700378 * {@link #mWindowingLayer} contains everything else.
379 */
380 private SurfaceControl mOverlayLayer;
381
382 /**
383 * See {@link #mOverlayLayer}
384 */
385 private SurfaceControl mWindowingLayer;
386
387 /**
388 * Specifies the size of the surfaces in {@link #mOverlayLayer} and {@link #mWindowingLayer}.
389 * <p>
390 * For these surfaces currently we use a surface based on the larger of width or height so we
391 * don't have to resize when rotating the display.
392 */
393 private int mSurfaceSize;
394
Adrian Roos5251b1d2018-03-23 18:57:43 +0100395 /**
396 * Sequence number for the current layout pass.
397 */
398 int mLayoutSeq = 0;
399
Chavi Weingarten3a748552018-05-14 17:32:42 +0000400 /**
401 * Specifies the count to determine whether to defer updating the IME target until ready.
402 */
403 private int mDeferUpdateImeTargetCount;
404
Jorim Jaggi9af095b2017-12-12 17:18:57 +0100405 /** Temporary float array to retrieve 3x3 matrix values. */
406 private final float[] mTmpFloats = new float[9];
407
Robert Carr24be9ab2018-04-30 17:54:53 -0700408 private MagnificationSpec mMagnificationSpec;
409
Arthur Hung95b38a92018-07-20 18:56:12 +0800410 private InputMonitor mInputMonitor;
411
Jorim Jaggif1292892018-09-10 11:58:13 +0200412 /** Caches the value whether told display manager that we have content. */
413 private boolean mLastHasContent;
414
lumark90120a82018-08-15 00:33:03 +0800415 /**
416 * The input method window for this display.
417 */
418 WindowState mInputMethodWindow;
419
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800420 private final Consumer<WindowState> mUpdateWindowsForAnimator = w -> {
421 WindowStateAnimator winAnimator = w.mWinAnimator;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800422 final AppWindowToken atoken = w.mAppToken;
423 if (winAnimator.mDrawState == READY_TO_SHOW) {
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +0200424 if (atoken == null || atoken.canShowWindows()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800425 if (w.performShowLocked()) {
426 pendingLayoutChanges |= FINISH_LAYOUT_REDO_ANIM;
427 if (DEBUG_LAYOUT_REPEATS) {
428 mService.mWindowPlacerLocked.debugLayoutRepeats(
429 "updateWindowsAndWallpaperLocked 5", pendingLayoutChanges);
430 }
431 }
432 }
433 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800434 };
435
436 private final Consumer<WindowState> mUpdateWallpaperForAnimator = w -> {
437 final WindowStateAnimator winAnimator = w.mWinAnimator;
438 if (winAnimator.mSurfaceController == null || !winAnimator.hasSurface()) {
439 return;
440 }
441
442 final int flags = w.mAttrs.flags;
443
444 // If this window is animating, make a note that we have an animating window and take
445 // care of a request to run a detached wallpaper animation.
Jorim Jaggi5bdccba2018-08-13 16:40:49 +0200446 if (w.isAnimating()) {
Jorim Jaggia5e10572017-11-15 14:36:26 +0100447 final AnimationAdapter anim = w.getAnimation();
448 if (anim != null) {
449 if ((flags & FLAG_SHOW_WALLPAPER) != 0 && anim.getDetachWallpaper()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800450 mTmpWindow = w;
451 }
Jorim Jaggia5e10572017-11-15 14:36:26 +0100452 final int color = anim.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800453 if (color != 0) {
454 final TaskStack stack = w.getStack();
455 if (stack != null) {
456 stack.setAnimationBackground(winAnimator, color);
457 }
458 }
459 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800460 }
461
462 // If this window's app token is running a detached wallpaper animation, make a note so
463 // we can ensure the wallpaper is displayed behind it.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200464 final AppWindowToken atoken = winAnimator.mWin.mAppToken;
465 final AnimationAdapter animation = atoken != null ? atoken.getAnimation() : null;
466 if (animation != null) {
467 if ((flags & FLAG_SHOW_WALLPAPER) != 0 && animation.getDetachWallpaper()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800468 mTmpWindow = w;
469 }
470
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200471 final int color = animation.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800472 if (color != 0) {
473 final TaskStack stack = w.getStack();
474 if (stack != null) {
475 stack.setAnimationBackground(winAnimator, color);
476 }
477 }
478 }
479 };
480
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800481 private final Consumer<WindowState> mScheduleToastTimeout = w -> {
482 final int lostFocusUid = mTmpWindow.mOwnerUid;
483 final Handler handler = mService.mH;
484 if (w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == lostFocusUid) {
485 if (!handler.hasMessages(WINDOW_HIDE_TIMEOUT, w)) {
486 handler.sendMessageDelayed(handler.obtainMessage(WINDOW_HIDE_TIMEOUT, w),
487 w.mAttrs.hideTimeoutMilliseconds);
488 }
489 }
490 };
491
492 private final ToBooleanFunction<WindowState> mFindFocusedWindow = w -> {
493 final AppWindowToken focusedApp = mService.mFocusedApp;
494 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Looking for focus: " + w
495 + ", flags=" + w.mAttrs.flags + ", canReceive=" + w.canReceiveKeys());
496
497 if (!w.canReceiveKeys()) {
498 return false;
499 }
500
501 final AppWindowToken wtoken = w.mAppToken;
502
503 // If this window's application has been removed, just skip it.
504 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
505 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
506 + (wtoken.removed ? "removed" : "sendingToBottom"));
507 return false;
508 }
509
510 if (focusedApp == null) {
511 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp=null"
512 + " using new focus @ " + w);
513 mTmpWindow = w;
514 return true;
515 }
516
517 if (!focusedApp.windowsAreFocusable()) {
518 // Current focused app windows aren't focusable...
519 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp windows not"
520 + " focusable using new focus @ " + w);
521 mTmpWindow = w;
522 return true;
523 }
524
525 // Descend through all of the app tokens and find the first that either matches
526 // win.mAppToken (return win) or mFocusedApp (return null).
527 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
528 if (focusedApp.compareTo(wtoken) > 0) {
529 // App stack below focused app stack. No focus for you!!!
530 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM,
531 "findFocusedWindow: Reached focused app=" + focusedApp);
532 mTmpWindow = null;
533 return true;
534 }
535 }
536
537 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: Found new focus @ " + w);
538 mTmpWindow = w;
539 return true;
540 };
541
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800542 private final Consumer<WindowState> mPerformLayout = w -> {
543 // Don't do layout of a window if it is not visible, or soon won't be visible, to avoid
544 // wasting time and funky changes while a window is animating away.
545 final boolean gone = (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w))
546 || w.isGoneForLayoutLw();
547
548 if (DEBUG_LAYOUT && !w.mLayoutAttached) {
549 Slog.v(TAG, "1ST PASS " + w + ": gone=" + gone + " mHaveFrame=" + w.mHaveFrame
550 + " mLayoutAttached=" + w.mLayoutAttached
551 + " screen changed=" + w.isConfigChanged());
552 final AppWindowToken atoken = w.mAppToken;
553 if (gone) Slog.v(TAG, " GONE: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200554 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800555 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
556 + " parentHidden=" + w.isParentWindowHidden());
557 else Slog.v(TAG, " VIS: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200558 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800559 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
560 + " parentHidden=" + w.isParentWindowHidden());
561 }
562
563 // If this view is GONE, then skip it -- keep the current frame, and let the caller know
564 // so they can ignore it if they want. (We do the normal layout for INVISIBLE windows,
565 // since that means "perform layout as normal, just don't display").
566 if (!gone || !w.mHaveFrame || w.mLayoutNeeded
567 || ((w.isConfigChanged() || w.setReportResizeHints())
568 && !w.isGoneForLayoutLw() &&
569 ((w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
570 (w.mHasSurface && w.mAppToken != null &&
571 w.mAppToken.layoutConfigChanges)))) {
572 if (!w.mLayoutAttached) {
573 if (mTmpInitial) {
574 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
chaviw1454b392018-08-06 09:54:04 -0700575 w.resetContentChanged();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800576 }
577 if (w.mAttrs.type == TYPE_DREAM) {
578 // Don't layout windows behind a dream, so that if it does stuff like hide
579 // the status bar we won't get a bad transition when it goes away.
580 mTmpWindow = w;
581 }
582 w.mLayoutNeeded = false;
583 w.prelayout();
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200584 final boolean firstLayout = !w.isLaidOut();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000585 mService.mPolicy.layoutWindowLw(w, null, mDisplayFrames);
Adrian Roos5251b1d2018-03-23 18:57:43 +0100586 w.mLayoutSeq = mLayoutSeq;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800587
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200588 // If this is the first layout, we need to initialize the last inset values as
589 // otherwise we'd immediately cause an unnecessary resize.
590 if (firstLayout) {
591 w.updateLastInsetValues();
592 }
593
Adrian Roos23df3a32018-03-15 15:41:13 +0100594 if (w.mAppToken != null) {
595 w.mAppToken.layoutLetterbox(w);
596 }
597
chaviw492139a2018-07-16 16:07:35 -0700598 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.getFrameLw()
chaviw553b0212018-07-12 13:37:01 -0700599 + " mContainingFrame=" + w.getContainingFrame()
600 + " mDisplayFrame=" + w.getDisplayFrameLw());
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800601 }
602 }
603 };
604
605 private final Consumer<WindowState> mPerformLayoutAttached = w -> {
606 if (w.mLayoutAttached) {
607 if (DEBUG_LAYOUT) Slog.v(TAG, "2ND PASS " + w + " mHaveFrame=" + w.mHaveFrame
608 + " mViewVisibility=" + w.mViewVisibility
609 + " mRelayoutCalled=" + w.mRelayoutCalled);
610 // If this view is GONE, then skip it -- keep the current frame, and let the caller
611 // know so they can ignore it if they want. (We do the normal layout for INVISIBLE
612 // windows, since that means "perform layout as normal, just don't display").
613 if (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w)) {
614 return;
615 }
616 if ((w.mViewVisibility != GONE && w.mRelayoutCalled) || !w.mHaveFrame
617 || w.mLayoutNeeded) {
618 if (mTmpInitial) {
619 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
chaviw1454b392018-08-06 09:54:04 -0700620 w.resetContentChanged();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800621 }
622 w.mLayoutNeeded = false;
623 w.prelayout();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000624 mService.mPolicy.layoutWindowLw(w, w.getParentWindow(), mDisplayFrames);
Adrian Roos5251b1d2018-03-23 18:57:43 +0100625 w.mLayoutSeq = mLayoutSeq;
chaviw492139a2018-07-16 16:07:35 -0700626 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.getFrameLw()
chaviw553b0212018-07-12 13:37:01 -0700627 + " mContainingFrame=" + w.getContainingFrame()
628 + " mDisplayFrame=" + w.getDisplayFrameLw());
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800629 }
630 } else if (w.mAttrs.type == TYPE_DREAM) {
631 // Don't layout windows behind a dream, so that if it does stuff like hide the
632 // status bar we won't get a bad transition when it goes away.
633 mTmpWindow = mTmpWindow2;
634 }
635 };
636
637 private final Predicate<WindowState> mComputeImeTargetPredicate = w -> {
638 if (DEBUG_INPUT_METHOD && mUpdateImeTarget) Slog.i(TAG_WM, "Checking window @" + w
639 + " fl=0x" + Integer.toHexString(w.mAttrs.flags));
640 return w.canBeImeTarget();
641 };
642
643 private final Consumer<WindowState> mApplyPostLayoutPolicy =
644 w -> mService.mPolicy.applyPostLayoutPolicyLw(w, w.mAttrs, w.getParentWindow(),
645 mService.mInputMethodTarget);
646
647 private final Consumer<WindowState> mApplySurfaceChangesTransaction = w -> {
648 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
649 final boolean obscuredChanged = w.mObscured !=
650 mTmpApplySurfaceChangesTransactionState.obscured;
651 final RootWindowContainer root = mService.mRoot;
652 // Only used if default window
653 final boolean someoneLosingFocus = !mService.mLosingFocus.isEmpty();
654
655 // Update effect.
656 w.mObscured = mTmpApplySurfaceChangesTransactionState.obscured;
657 if (!mTmpApplySurfaceChangesTransactionState.obscured) {
658 final boolean isDisplayed = w.isDisplayedLw();
659
660 if (isDisplayed && w.isObscuringDisplay()) {
661 // This window completely covers everything behind it, so we want to leave all
662 // of them as undimmed (for performance reasons).
663 root.mObscuringWindow = w;
664 mTmpApplySurfaceChangesTransactionState.obscured = true;
665 }
666
667 mTmpApplySurfaceChangesTransactionState.displayHasContent |=
668 root.handleNotObscuredLocked(w,
669 mTmpApplySurfaceChangesTransactionState.obscured,
670 mTmpApplySurfaceChangesTransactionState.syswin);
671
672 if (w.mHasSurface && isDisplayed) {
673 final int type = w.mAttrs.type;
674 if (type == TYPE_SYSTEM_DIALOG || type == TYPE_SYSTEM_ERROR
675 || (w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
676 mTmpApplySurfaceChangesTransactionState.syswin = true;
677 }
678 if (mTmpApplySurfaceChangesTransactionState.preferredRefreshRate == 0
679 && w.mAttrs.preferredRefreshRate != 0) {
680 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate
681 = w.mAttrs.preferredRefreshRate;
682 }
683 if (mTmpApplySurfaceChangesTransactionState.preferredModeId == 0
684 && w.mAttrs.preferredDisplayModeId != 0) {
685 mTmpApplySurfaceChangesTransactionState.preferredModeId
686 = w.mAttrs.preferredDisplayModeId;
687 }
688 }
689 }
690
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800691 if (isDefaultDisplay && obscuredChanged && w.isVisibleLw()
692 && mWallpaperController.isWallpaperTarget(w)) {
693 // This is the wallpaper target and its obscured state changed... make sure the
694 // current wallpaper's visibility has been updated accordingly.
695 mWallpaperController.updateWallpaperVisibility();
696 }
697
chaviw161ea3e2018-01-31 12:01:12 -0800698 w.handleWindowMovedIfNeeded();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800699
700 final WindowStateAnimator winAnimator = w.mWinAnimator;
701
702 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - done placing");
chaviw1454b392018-08-06 09:54:04 -0700703 w.resetContentChanged();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800704
705 // Moved from updateWindowsAndWallpaperLocked().
706 if (w.mHasSurface) {
707 // Take care of the window being ready to display.
708 final boolean committed = winAnimator.commitFinishDrawingLocked();
709 if (isDefaultDisplay && committed) {
710 if (w.mAttrs.type == TYPE_DREAM) {
711 // HACK: When a dream is shown, it may at that point hide the lock screen.
712 // So we need to redo the layout to let the phone window manager make this
713 // happen.
714 pendingLayoutChanges |= FINISH_LAYOUT_REDO_LAYOUT;
715 if (DEBUG_LAYOUT_REPEATS) {
716 surfacePlacer.debugLayoutRepeats(
717 "dream and commitFinishDrawingLocked true",
718 pendingLayoutChanges);
719 }
720 }
721 if ((w.mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
722 if (DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
723 "First draw done in potential wallpaper target " + w);
724 root.mWallpaperMayChange = true;
725 pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
726 if (DEBUG_LAYOUT_REPEATS) {
727 surfacePlacer.debugLayoutRepeats(
728 "wallpaper and commitFinishDrawingLocked true",
729 pendingLayoutChanges);
730 }
731 }
732 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800733 }
734
735 final AppWindowToken atoken = w.mAppToken;
736 if (atoken != null) {
Adrian Roos23df3a32018-03-15 15:41:13 +0100737 atoken.updateLetterboxSurface(w);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800738 final boolean updateAllDrawn = atoken.updateDrawnWindowStates(w);
739 if (updateAllDrawn && !mTmpUpdateAllDrawn.contains(atoken)) {
740 mTmpUpdateAllDrawn.add(atoken);
741 }
742 }
743
744 if (isDefaultDisplay && someoneLosingFocus && w == mService.mCurrentFocus
745 && w.isDisplayedLw()) {
746 mTmpApplySurfaceChangesTransactionState.focusDisplayed = true;
747 }
748
749 w.updateResizingWindowIfNeeded();
750 };
751
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800752 /**
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800753 * Create new {@link DisplayContent} instance, add itself to the root window container and
754 * initialize direct children.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700755 * @param display May not be null.
Craig Mautnerdf88d732014-01-27 09:21:32 -0800756 * @param service You know.
Wale Ogunwale0303c572016-10-20 10:16:29 -0700757 * @param wallpaperController wallpaper windows controller used to adjust the positioning of the
758 * wallpaper windows in the window list.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700759 */
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700760 DisplayContent(Display display, WindowManagerService service,
Bryce Leef19cbe22018-02-02 15:09:21 -0800761 WallpaperController wallpaperController, DisplayWindowController controller) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100762 super(service);
Bryce Leef19cbe22018-02-02 15:09:21 -0800763 setController(controller);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800764 if (service.mRoot.getDisplayContent(display.getDisplayId()) != null) {
765 throw new IllegalArgumentException("Display with ID=" + display.getDisplayId()
766 + " already exists=" + service.mRoot.getDisplayContent(display.getDisplayId())
767 + " new=" + display);
768 }
769
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700770 mDisplay = display;
771 mDisplayId = display.getDisplayId();
Wale Ogunwale0303c572016-10-20 10:16:29 -0700772 mWallpaperController = wallpaperController;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700773 display.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700774 display.getMetrics(mDisplayMetrics);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700775 isDefaultDisplay = mDisplayId == DEFAULT_DISPLAY;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100776 mDisplayFrames = new DisplayFrames(mDisplayId, mDisplayInfo,
777 calculateDisplayCutoutForRotation(mDisplayInfo.rotation));
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -0700778 initializeDisplayBaseInfo();
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800779 mDisplayPolicy = new DisplayPolicy(service);
780 mDisplayRotation = new DisplayRotation(service, this);
781 if (isDefaultDisplay) {
782 // The policy may be invoked right after here, so it requires the necessary default
783 // fields of this display content.
784 mService.mPolicy.setDefaultDisplay(this);
785 }
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800786 mDividerControllerLocked = new DockedStackDividerController(service, this);
Winson Chung655332c2016-10-31 13:14:28 -0700787 mPinnedStackControllerLocked = new PinnedStackController(service, this);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700788
Robert Carr74a66a22018-02-23 12:17:51 -0800789 // We use this as our arbitrary surface size for buffer-less parents
790 // that don't impose cropping on their children. It may need to be larger
791 // than the display size because fullscreen windows can be shifted offscreen
792 // due to surfaceInsets. 2 times the largest display dimension feels like an
793 // appropriately arbitrary number. Eventually we would like to give SurfaceFlinger
794 // layers the ability to match their parent sizes and be able to skip
795 // such arbitrary size settings.
796 mSurfaceSize = Math.max(mBaseDisplayHeight, mBaseDisplayWidth) * 2;
Robert Carrb1579c82017-09-05 14:54:47 -0700797
798 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(mSession)
799 .setSize(mSurfaceSize, mSurfaceSize)
800 .setOpaque(true);
801 mWindowingLayer = b.setName("Display Root").build();
802 mOverlayLayer = b.setName("Display Overlays").build();
803
Robert Carrf59b8dd2017-10-02 18:58:36 -0700804 getPendingTransaction().setLayer(mWindowingLayer, 0)
Robert Carrb1579c82017-09-05 14:54:47 -0700805 .setLayerStack(mWindowingLayer, mDisplayId)
806 .show(mWindowingLayer)
807 .setLayer(mOverlayLayer, 1)
808 .setLayerStack(mOverlayLayer, mDisplayId)
809 .show(mOverlayLayer);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700810 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -0700811
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700812 // These are the only direct children we should ever have and they are permanent.
Wale Ogunwale3a931692016-11-02 16:49:48 -0700813 super.addChild(mBelowAppWindowsContainers, null);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700814 super.addChild(mTaskStackContainers, null);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700815 super.addChild(mAboveAppWindowsContainers, null);
816 super.addChild(mImeWindowsContainers, null);
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800817
818 // Add itself as a child to the root container.
819 mService.mRoot.addChild(this, null);
Bryce Leed1871262017-06-12 14:12:29 -0700820
821 // TODO(b/62541591): evaluate whether this is the best spot to declare the
822 // {@link DisplayContent} ready for use.
823 mDisplayReady = true;
Arthur Hung95b38a92018-07-20 18:56:12 +0800824
Arthur Hung39134b22018-08-14 11:58:28 +0800825 mInputMonitor = new InputMonitor(service, mDisplayId);
Bryce Leed1871262017-06-12 14:12:29 -0700826 }
827
828 boolean isReady() {
829 // The display is ready when the system and the individual display are both ready.
830 return mService.mDisplayReady && mDisplayReady;
Craig Mautner59c00972012-07-30 12:10:24 -0700831 }
832
833 int getDisplayId() {
834 return mDisplayId;
835 }
836
Wale Ogunwale02319a62016-09-26 15:21:22 -0700837 WindowToken getWindowToken(IBinder binder) {
838 return mTokenMap.get(binder);
839 }
840
841 AppWindowToken getAppWindowToken(IBinder binder) {
842 final WindowToken token = getWindowToken(binder);
843 if (token == null) {
844 return null;
845 }
846 return token.asAppWindowToken();
847 }
848
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700849 private void addWindowToken(IBinder binder, WindowToken token) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700850 final DisplayContent dc = mService.mRoot.getWindowTokenDisplay(token);
851 if (dc != null) {
852 // We currently don't support adding a window token to the display if the display
853 // already has the binder mapped to another token. If there is a use case for supporting
854 // this moving forward we will either need to merge the WindowTokens some how or have
855 // the binder map to a list of window tokens.
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700856 throw new IllegalArgumentException("Can't map token=" + token + " to display="
857 + getName() + " already mapped to display=" + dc + " tokens=" + dc.mTokenMap);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700858 }
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700859 if (binder == null) {
860 throw new IllegalArgumentException("Can't map token=" + token + " to display="
861 + getName() + " binder is null");
862 }
863 if (token == null) {
864 throw new IllegalArgumentException("Can't map null token to display="
865 + getName() + " binder=" + binder);
866 }
867
Wale Ogunwale02319a62016-09-26 15:21:22 -0700868 mTokenMap.put(binder, token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700869
870 if (token.asAppWindowToken() == null) {
871 // Add non-app token to container hierarchy on the display. App tokens are added through
872 // the parent container managing them (e.g. Tasks).
Wale Ogunwale3a931692016-11-02 16:49:48 -0700873 switch (token.windowType) {
874 case TYPE_WALLPAPER:
875 mBelowAppWindowsContainers.addChild(token);
876 break;
877 case TYPE_INPUT_METHOD:
878 case TYPE_INPUT_METHOD_DIALOG:
879 mImeWindowsContainers.addChild(token);
880 break;
881 default:
882 mAboveAppWindowsContainers.addChild(token);
883 break;
884 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700885 }
Wale Ogunwale02319a62016-09-26 15:21:22 -0700886 }
887
888 WindowToken removeWindowToken(IBinder binder) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700889 final WindowToken token = mTokenMap.remove(binder);
890 if (token != null && token.asAppWindowToken() == null) {
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800891 token.setExiting();
892 }
893 return token;
894 }
895
896 /** Changes the display the input window token is housed on to this one. */
897 void reParentWindowToken(WindowToken token) {
898 final DisplayContent prevDc = token.getDisplayContent();
899 if (prevDc == this) {
900 return;
901 }
Andrii Kulian6cc1a1d2016-12-27 23:52:59 -0800902 if (prevDc != null && prevDc.mTokenMap.remove(token.token) != null
903 && token.asAppWindowToken() == null) {
904 // Removed the token from the map, but made sure it's not an app token before removing
905 // from parent.
906 token.getParent().removeChild(token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700907 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800908
909 addWindowToken(token.token, token);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700910 }
911
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700912 void removeAppToken(IBinder binder) {
913 final WindowToken token = removeWindowToken(binder);
914 if (token == null) {
915 Slog.w(TAG_WM, "removeAppToken: Attempted to remove non-existing token: " + binder);
916 return;
917 }
918
919 final AppWindowToken appToken = token.asAppWindowToken();
920
921 if (appToken == null) {
922 Slog.w(TAG_WM, "Attempted to remove non-App token: " + binder + " token=" + token);
923 return;
924 }
925
926 appToken.onRemovedFromDisplay();
927 }
928
Riddle Hsuad256a12018-07-18 16:11:30 +0800929 @Override
Riddle Hsu86cb7de2018-08-13 23:29:58 +0800930 DisplayWindowController getController() {
931 return (DisplayWindowController) super.getController();
932 }
933
934 @Override
Riddle Hsuad256a12018-07-18 16:11:30 +0800935 public Display getDisplay() {
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700936 return mDisplay;
937 }
938
Craig Mautner59c00972012-07-30 12:10:24 -0700939 DisplayInfo getDisplayInfo() {
940 return mDisplayInfo;
941 }
942
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700943 DisplayMetrics getDisplayMetrics() {
944 return mDisplayMetrics;
945 }
946
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800947 DisplayPolicy getDisplayPolicy() {
948 return mDisplayPolicy;
949 }
950
Riddle Hsuad256a12018-07-18 16:11:30 +0800951 @Override
952 public DisplayRotation getDisplayRotation() {
953 return mDisplayRotation;
954 }
955
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800956 @VisibleForTesting
957 void setDisplayRotation(DisplayRotation displayRotation) {
958 mDisplayRotation = displayRotation;
959 }
960
Andrii Kulian8ee72852017-03-10 10:36:45 -0800961 int getRotation() {
962 return mRotation;
963 }
964
Andrii Kulianef5ce1c2018-03-20 19:27:24 -0700965 @VisibleForTesting
Andrii Kulian8ee72852017-03-10 10:36:45 -0800966 void setRotation(int newRotation) {
967 mRotation = newRotation;
Riddle Hsuad256a12018-07-18 16:11:30 +0800968 mDisplayRotation.setRotation(newRotation);
Andrii Kulian8ee72852017-03-10 10:36:45 -0800969 }
970
971 int getLastOrientation() {
972 return mLastOrientation;
973 }
974
975 void setLastOrientation(int orientation) {
976 mLastOrientation = orientation;
977 }
978
979 boolean getAltOrientation() {
980 return mAltOrientation;
981 }
982
983 void setAltOrientation(boolean altOrientation) {
984 mAltOrientation = altOrientation;
985 }
986
987 int getLastWindowForcedOrientation() {
988 return mLastWindowForcedOrientation;
989 }
990
Andrii Kulian06d07d62017-03-14 11:11:47 -0700991 /**
Riddle Hsu654a6f92018-07-13 22:59:36 +0800992 * Temporarily pauses rotation changes until resumed.
993 *
994 * This can be used to prevent rotation changes from occurring while the user is
995 * performing certain operations, such as drag and drop.
996 *
997 * This call nests and must be matched by an equal number of calls to
998 * {@link #resumeRotationLocked}.
999 */
1000 void pauseRotationLocked() {
1001 mDeferredRotationPauseCount++;
1002 }
1003
1004 /**
1005 * Resumes normal rotation changes after being paused.
1006 */
1007 void resumeRotationLocked() {
1008 if (mDeferredRotationPauseCount <= 0) {
1009 return;
1010 }
1011
1012 mDeferredRotationPauseCount--;
1013 if (mDeferredRotationPauseCount == 0) {
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001014 updateRotationAndSendNewConfigIfNeeded();
Riddle Hsu654a6f92018-07-13 22:59:36 +08001015 }
1016 }
1017
1018 /**
Riddle Hsuad256a12018-07-18 16:11:30 +08001019 * If this is true we have updated our desired orientation, but not yet changed the real
1020 * orientation our applied our screen rotation animation. For example, because a previous
1021 * screen rotation was in progress.
1022 *
1023 * @return {@code true} if the there is an ongoing rotation change.
1024 */
1025 boolean rotationNeedsUpdate() {
1026 final int lastOrientation = getLastOrientation();
1027 final int oldRotation = getRotation();
1028 final boolean oldAltOrientation = getAltOrientation();
1029
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001030 final int rotation = mDisplayRotation.rotationForOrientation(lastOrientation, oldRotation);
Riddle Hsuad256a12018-07-18 16:11:30 +08001031 final boolean altOrientation = !mDisplayRotation.rotationHasCompatibleMetrics(
1032 lastOrientation, rotation);
1033 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1034 return false;
1035 }
1036 return true;
1037 }
1038
1039 /**
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001040 * Update rotation of the display and send configuration if the rotation is changed.
1041 *
1042 * @return {@code true} if the rotation has been changed and the new config is sent.
1043 */
1044 boolean updateRotationAndSendNewConfigIfNeeded() {
1045 final boolean changed = updateRotationUnchecked(false /* forceUpdate */);
1046 if (changed) {
1047 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, mDisplayId).sendToTarget();
1048 }
1049 return changed;
1050 }
1051
1052 /**
Andrii Kulian06d07d62017-03-14 11:11:47 -07001053 * Update rotation of the display.
1054 *
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001055 * @return {@code true} if the rotation has been changed. In this case YOU MUST CALL
1056 * {@link WindowManagerService#sendNewConfiguration(int)} TO UNFREEZE THE SCREEN.
Andrii Kulian06d07d62017-03-14 11:11:47 -07001057 */
Robert Carrae606b42018-02-15 15:36:23 -08001058 boolean updateRotationUnchecked() {
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001059 return updateRotationUnchecked(false /* forceUpdate */);
1060 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001061
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001062 /**
1063 * Update rotation of the display with an option to force the update.
1064 * @param forceUpdate Force the rotation update. Sometimes in WM we might skip updating
1065 * orientation because we're waiting for some rotation to finish or display
1066 * to unfreeze, which results in configuration of the previously visible
1067 * activity being applied to a newly visible one. Forcing the rotation
1068 * update allows to workaround this issue.
1069 * @return {@code true} if the rotation has been changed. In this case YOU MUST CALL
1070 * {@link WindowManagerService#sendNewConfiguration(int)} TO UNFREEZE THE SCREEN.
1071 */
1072 boolean updateRotationUnchecked(boolean forceUpdate) {
1073 ScreenRotationAnimation screenRotationAnimation;
1074 if (!forceUpdate) {
Riddle Hsu654a6f92018-07-13 22:59:36 +08001075 if (mDeferredRotationPauseCount > 0) {
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001076 // Rotation updates have been paused temporarily. Defer the update until
1077 // updates have been resumed.
1078 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, rotation is paused.");
1079 return false;
1080 }
1081
1082 screenRotationAnimation =
1083 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
1084 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
1085 // Rotation updates cannot be performed while the previous rotation change
1086 // animation is still in progress. Skip this update. We will try updating
1087 // again after the animation is finished and the display is unfrozen.
1088 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, animation in progress.");
1089 return false;
1090 }
1091 if (mService.mDisplayFrozen) {
1092 // Even if the screen rotation animation has finished (e.g. isAnimating
1093 // returns false), there is still some time where we haven't yet unfrozen
1094 // the display. We also need to abort rotation here.
1095 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
1096 "Deferring rotation, still finishing previous rotation");
1097 return false;
1098 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001099 }
1100
1101 if (!mService.mDisplayEnabled) {
1102 // No point choosing a rotation if the display is not enabled.
1103 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, display is not enabled.");
1104 return false;
1105 }
1106
1107 final int oldRotation = mRotation;
1108 final int lastOrientation = mLastOrientation;
1109 final boolean oldAltOrientation = mAltOrientation;
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001110 final int rotation = mDisplayRotation.rotationForOrientation(lastOrientation, oldRotation);
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001111 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Computed rotation=" + rotation + " for display id="
1112 + mDisplayId + " based on lastOrientation=" + lastOrientation
1113 + " and oldRotation=" + oldRotation);
Riddle Hsuad256a12018-07-18 16:11:30 +08001114 boolean mayRotateSeamlessly = mService.mPolicy.shouldRotateSeamlessly(mDisplayRotation,
1115 oldRotation, rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001116
Robert Carr0e007272017-10-02 13:00:55 -07001117 if (mayRotateSeamlessly) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001118 final WindowState seamlessRotated = getWindow((w) -> w.mSeamlesslyRotated);
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001119 if (seamlessRotated != null && !forceUpdate) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001120 // We can't rotate (seamlessly or not) while waiting for the last seamless rotation
1121 // to complete (that is, waiting for windows to redraw). It's tempting to check
1122 // w.mSeamlessRotationCount but that could be incorrect in the case of
1123 // window-removal.
1124 return false;
1125 }
Robert Carr0e007272017-10-02 13:00:55 -07001126
1127 // In the presence of the PINNED stack or System Alert
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001128 // windows we unfortunately can not seamlessly rotate.
Wale Ogunwale61911492017-10-11 08:50:50 -07001129 if (hasPinnedStack()) {
Robert Carr0e007272017-10-02 13:00:55 -07001130 mayRotateSeamlessly = false;
1131 }
1132 for (int i = 0; i < mService.mSessions.size(); i++) {
1133 if (mService.mSessions.valueAt(i).hasAlertWindowSurfaces()) {
1134 mayRotateSeamlessly = false;
1135 break;
1136 }
1137 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001138 }
Robert Carr0e007272017-10-02 13:00:55 -07001139 final boolean rotateSeamlessly = mayRotateSeamlessly;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001140
1141 // TODO: Implement forced rotation changes.
1142 // Set mAltOrientation to indicate that the application is receiving
1143 // an orientation that has different metrics than it expected.
1144 // eg. Portrait instead of Landscape.
1145
Riddle Hsuad256a12018-07-18 16:11:30 +08001146 final boolean altOrientation = !mDisplayRotation.rotationHasCompatibleMetrics(
Andrii Kulian06d07d62017-03-14 11:11:47 -07001147 lastOrientation, rotation);
1148
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001149 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
1150 + " selected orientation " + lastOrientation
Andrii Kulian06d07d62017-03-14 11:11:47 -07001151 + ", got rotation " + rotation + " which has "
1152 + (altOrientation ? "incompatible" : "compatible") + " metrics");
1153
1154 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1155 // No change.
1156 return false;
1157 }
1158
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001159 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
1160 + " rotation changed to " + rotation
Andrii Kulian06d07d62017-03-14 11:11:47 -07001161 + (altOrientation ? " (alt)" : "") + " from " + oldRotation
1162 + (oldAltOrientation ? " (alt)" : "") + ", lastOrientation=" + lastOrientation);
1163
1164 if (DisplayContent.deltaRotation(rotation, oldRotation) != 2) {
1165 mService.mWaitingForConfig = true;
1166 }
1167
Riddle Hsuad256a12018-07-18 16:11:30 +08001168 setRotation(rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001169 mAltOrientation = altOrientation;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001170
1171 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_ACTIVE;
Riddle Hsu654a6f92018-07-13 22:59:36 +08001172 mService.mH.sendNewMessageDelayed(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT,
1173 this, WINDOW_FREEZE_TIMEOUT_DURATION);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001174
1175 setLayoutNeeded();
1176 final int[] anim = new int[2];
Robert Carrf59b8dd2017-10-02 18:58:36 -07001177 mService.mPolicy.selectRotationAnimationLw(anim);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001178
1179 if (!rotateSeamlessly) {
Robert Carrae606b42018-02-15 15:36:23 -08001180 mService.startFreezingDisplayLocked(anim[0], anim[1], this);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001181 // startFreezingDisplayLocked can reset the ScreenRotationAnimation.
1182 screenRotationAnimation = mService.mAnimator.getScreenRotationAnimationLocked(
1183 mDisplayId);
1184 } else {
1185 // The screen rotation animation uses a screenshot to freeze the screen
1186 // while windows resize underneath.
1187 // When we are rotating seamlessly, we allow the elements to transition
1188 // to their rotated state independently and without a freeze required.
1189 screenRotationAnimation = null;
1190
Robert Carrefc75702018-02-16 11:46:16 -08001191 mService.startSeamlessRotation();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001192 }
1193
1194 // We need to update our screen size information to match the new rotation. If the rotation
1195 // has actually changed then this method will return true and, according to the comment at
1196 // the top of the method, the caller is obligated to call computeNewConfigurationLocked().
1197 // By updating the Display info here it will be available to
1198 // #computeScreenConfiguration() later.
1199 updateDisplayAndOrientation(getConfiguration().uiMode);
1200
Robert Carrae606b42018-02-15 15:36:23 -08001201 // NOTE: We disable the rotation in the emulator because
1202 // it doesn't support hardware OpenGL emulation yet.
1203 if (CUSTOM_SCREEN_ROTATION && screenRotationAnimation != null
1204 && screenRotationAnimation.hasScreenshot()) {
1205 if (screenRotationAnimation.setRotation(getPendingTransaction(), rotation,
1206 MAX_ANIMATION_DURATION, mService.getTransitionAnimationScaleLocked(),
1207 mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight)) {
1208 mService.scheduleAnimationLocked();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001209 }
1210 }
1211
Vishnu Nair83537a72018-07-19 21:27:48 -07001212 forAllWindows(w -> {
Vishnu Nairddd80742018-08-21 14:12:46 -07001213 w.seamlesslyRotateIfAllowed(getPendingTransaction(), oldRotation, rotation,
1214 rotateSeamlessly);
Vishnu Nair83537a72018-07-19 21:27:48 -07001215 }, true /* traverseTopToBottom */);
1216
Robert Carrae606b42018-02-15 15:36:23 -08001217 mService.mDisplayManagerInternal.performTraversal(getPendingTransaction());
1218 scheduleAnimation();
1219
Andrii Kulian06d07d62017-03-14 11:11:47 -07001220 forAllWindows(w -> {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001221 if (w.mHasSurface && !rotateSeamlessly) {
1222 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Set mOrientationChanging of " + w);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001223 w.setOrientationChanging(true);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001224 mService.mRoot.mOrientationChangeComplete = false;
1225 w.mLastFreezeDuration = 0;
1226 }
1227 w.mReportOrientationChanged = true;
1228 }, true /* traverseTopToBottom */);
1229
1230 if (rotateSeamlessly) {
Riddle Hsu654a6f92018-07-13 22:59:36 +08001231 mService.mH.sendNewMessageDelayed(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT,
1232 this, SEAMLESS_ROTATION_TIMEOUT_DURATION);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001233 }
1234
1235 for (int i = mService.mRotationWatchers.size() - 1; i >= 0; i--) {
1236 final WindowManagerService.RotationWatcher rotationWatcher
1237 = mService.mRotationWatchers.get(i);
1238 if (rotationWatcher.mDisplayId == mDisplayId) {
1239 try {
1240 rotationWatcher.mWatcher.onRotationChanged(rotation);
1241 } catch (RemoteException e) {
1242 // Ignore
1243 }
1244 }
1245 }
1246
1247 // TODO (multi-display): Magnification is supported only for the default display.
1248 // Announce rotation only if we will not animate as we already have the
1249 // windows in final state. Otherwise, we make this call at the rotation end.
1250 if (screenRotationAnimation == null && mService.mAccessibilityController != null
1251 && isDefaultDisplay) {
1252 mService.mAccessibilityController.onRotationChangedLocked(this);
1253 }
1254
1255 return true;
1256 }
1257
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001258 void configureDisplayPolicy() {
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001259 final int width = mBaseDisplayWidth;
1260 final int height = mBaseDisplayHeight;
1261 final int shortSize;
1262 final int longSize;
1263 if (width > height) {
1264 shortSize = height;
1265 longSize = width;
1266 } else {
1267 shortSize = width;
1268 longSize = height;
1269 }
1270
1271 final int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / mBaseDisplayDensity;
1272 final int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / mBaseDisplayDensity;
1273
1274 mDisplayRotation.configure(width, height, shortSizeDp, longSizeDp);
1275 mDisplayPolicy.configure(width, height, shortSizeDp);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001276
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001277 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo,
1278 calculateDisplayCutoutForRotation(mDisplayInfo.rotation));
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001279 }
1280
Andrii Kulian06d07d62017-03-14 11:11:47 -07001281 /**
1282 * Update {@link #mDisplayInfo} and other internal variables when display is rotated or config
1283 * changed.
1284 * Do not call if {@link WindowManagerService#mDisplayReady} == false.
1285 */
1286 private DisplayInfo updateDisplayAndOrientation(int uiMode) {
1287 // Use the effective "visual" dimensions based on current rotation
1288 final boolean rotated = (mRotation == ROTATION_90 || mRotation == ROTATION_270);
1289 final int realdw = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
1290 final int realdh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
1291 int dw = realdw;
1292 int dh = realdh;
1293
1294 if (mAltOrientation) {
1295 if (realdw > realdh) {
1296 // Turn landscape into portrait.
1297 int maxw = (int)(realdh/1.3f);
1298 if (maxw < realdw) {
1299 dw = maxw;
1300 }
1301 } else {
1302 // Turn portrait into landscape.
1303 int maxh = (int)(realdw/1.3f);
1304 if (maxh < realdh) {
1305 dh = maxh;
1306 }
1307 }
1308 }
1309
1310 // Update application display metrics.
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001311 final WmDisplayCutout wmDisplayCutout = calculateDisplayCutoutForRotation(mRotation);
1312 final DisplayCutout displayCutout = wmDisplayCutout.getDisplayCutout();
1313
Andrii Kulian06d07d62017-03-14 11:11:47 -07001314 final int appWidth = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, mRotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001315 mDisplayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001316 final int appHeight = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, mRotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001317 mDisplayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001318 mDisplayInfo.rotation = mRotation;
1319 mDisplayInfo.logicalWidth = dw;
1320 mDisplayInfo.logicalHeight = dh;
1321 mDisplayInfo.logicalDensityDpi = mBaseDisplayDensity;
1322 mDisplayInfo.appWidth = appWidth;
1323 mDisplayInfo.appHeight = appHeight;
1324 if (isDefaultDisplay) {
1325 mDisplayInfo.getLogicalMetrics(mRealDisplayMetrics,
1326 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO, null);
1327 }
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001328 mDisplayInfo.displayCutout = displayCutout.isEmpty() ? null : displayCutout;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001329 mDisplayInfo.getAppMetrics(mDisplayMetrics);
1330 if (mDisplayScalingDisabled) {
1331 mDisplayInfo.flags |= Display.FLAG_SCALING_DISABLED;
1332 } else {
1333 mDisplayInfo.flags &= ~Display.FLAG_SCALING_DISABLED;
1334 }
1335
Andrii Kulianf0379de2018-03-14 16:24:07 -07001336 // We usually set the override info in DisplayManager so that we get consistent display
1337 // metrics values when displays are changing and don't send out new values until WM is aware
1338 // of them. However, we don't do this for displays that serve as containers for ActivityView
1339 // because we don't want letter-/pillar-boxing during resize.
1340 final DisplayInfo overrideDisplayInfo = mShouldOverrideDisplayConfiguration
1341 ? mDisplayInfo : null;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001342 mService.mDisplayManagerInternal.setDisplayInfoOverrideFromWindowManager(mDisplayId,
Andrii Kulianf0379de2018-03-14 16:24:07 -07001343 overrideDisplayInfo);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001344
1345 mBaseDisplayRect.set(0, 0, dw, dh);
1346
1347 if (isDefaultDisplay) {
1348 mCompatibleScreenScale = CompatibilityInfo.computeCompatibleScaling(mDisplayMetrics,
1349 mCompatDisplayMetrics);
1350 }
Bryce Leef3c6a472017-11-14 14:53:06 -08001351
1352 updateBounds();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001353 return mDisplayInfo;
1354 }
1355
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001356 WmDisplayCutout calculateDisplayCutoutForRotation(int rotation) {
Adrian Roos2aa0fcd2018-02-19 18:07:49 +01001357 return mDisplayCutoutCache.getOrCompute(mInitialDisplayCutout, rotation);
1358 }
1359
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001360 private WmDisplayCutout calculateDisplayCutoutForRotationUncached(
Adrian Roos2aa0fcd2018-02-19 18:07:49 +01001361 DisplayCutout cutout, int rotation) {
Adrian Roos24264212018-02-19 16:26:15 +01001362 if (cutout == null || cutout == DisplayCutout.NO_CUTOUT) {
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001363 return WmDisplayCutout.NO_CUTOUT;
Adrian Roos1cf585052018-01-03 18:43:27 +01001364 }
Adrian Roos11c25582018-02-19 18:06:36 +01001365 if (rotation == ROTATION_0) {
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001366 return WmDisplayCutout.computeSafeInsets(
1367 cutout, mInitialDisplayWidth, mInitialDisplayHeight);
Adrian Roos24264212018-02-19 16:26:15 +01001368 }
Adrian Roosbed538e2018-02-21 17:50:07 +01001369 final boolean rotated = (rotation == ROTATION_90 || rotation == ROTATION_270);
Jorim Jaggi60640512018-06-29 01:14:31 +02001370 final List<Rect> bounds = WmDisplayCutout.computeSafeInsets(
1371 cutout, mInitialDisplayWidth, mInitialDisplayHeight)
1372 .getDisplayCutout().getBoundingRects();
Adrian Roos11c25582018-02-19 18:06:36 +01001373 transformPhysicalToLogicalCoordinates(rotation, mInitialDisplayWidth, mInitialDisplayHeight,
1374 mTmpMatrix);
Jorim Jaggi60640512018-06-29 01:14:31 +02001375 final Region region = Region.obtain();
1376 for (int i = 0; i < bounds.size(); i++) {
1377 final Rect rect = bounds.get(i);
1378 final RectF rectF = new RectF(bounds.get(i));
1379 mTmpMatrix.mapRect(rectF);
1380 rectF.round(rect);
1381 region.op(rect, Op.UNION);
1382 }
1383
1384 return WmDisplayCutout.computeSafeInsets(DisplayCutout.fromBounds(region),
Adrian Roos24264212018-02-19 16:26:15 +01001385 rotated ? mInitialDisplayHeight : mInitialDisplayWidth,
1386 rotated ? mInitialDisplayWidth : mInitialDisplayHeight);
Adrian Roos1cf585052018-01-03 18:43:27 +01001387 }
1388
Andrii Kulian06d07d62017-03-14 11:11:47 -07001389 /**
1390 * Compute display configuration based on display properties and policy settings.
1391 * Do not call if mDisplayReady == false.
1392 */
1393 void computeScreenConfiguration(Configuration config) {
1394 final DisplayInfo displayInfo = updateDisplayAndOrientation(config.uiMode);
1395
1396 final int dw = displayInfo.logicalWidth;
1397 final int dh = displayInfo.logicalHeight;
Wale Ogunwale687b4272017-07-27 02:56:23 -07001398 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE;
Garfield Tane0846042018-07-26 13:42:04 -07001399 config.windowConfiguration.setWindowingMode(getWindowingMode());
Bryce Leec1f2f2a2017-06-22 15:29:42 -07001400
Adrian Roos11c25582018-02-19 18:06:36 +01001401 final float density = mDisplayMetrics.density;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001402 config.screenWidthDp =
1403 (int)(mService.mPolicy.getConfigDisplayWidth(dw, dh, displayInfo.rotation,
Adrian Roos11c25582018-02-19 18:06:36 +01001404 config.uiMode, mDisplayId, displayInfo.displayCutout) / density);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001405 config.screenHeightDp =
1406 (int)(mService.mPolicy.getConfigDisplayHeight(dw, dh, displayInfo.rotation,
Adrian Roos11c25582018-02-19 18:06:36 +01001407 config.uiMode, mDisplayId, displayInfo.displayCutout) / density);
Bryce Lee7566d762017-03-30 09:34:15 -07001408
Adrian Roos11c25582018-02-19 18:06:36 +01001409 mService.mPolicy.getNonDecorInsetsLw(displayInfo.rotation, dw, dh,
1410 displayInfo.displayCutout, mTmpRect);
Bryce Lee7566d762017-03-30 09:34:15 -07001411 final int leftInset = mTmpRect.left;
1412 final int topInset = mTmpRect.top;
1413 // appBounds at the root level should mirror the app screen size.
Wale Ogunwale822e5122017-07-26 06:02:24 -07001414 config.windowConfiguration.setAppBounds(leftInset /* left */, topInset /* top */,
1415 leftInset + displayInfo.appWidth /* right */,
1416 topInset + displayInfo.appHeight /* bottom */);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001417 final boolean rotated = (displayInfo.rotation == Surface.ROTATION_90
1418 || displayInfo.rotation == Surface.ROTATION_270);
1419
1420 computeSizeRangesAndScreenLayout(displayInfo, mDisplayId, rotated, config.uiMode, dw, dh,
Adrian Roos11c25582018-02-19 18:06:36 +01001421 density, config);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001422
1423 config.screenLayout = (config.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK)
1424 | ((displayInfo.flags & Display.FLAG_ROUND) != 0
1425 ? Configuration.SCREENLAYOUT_ROUND_YES
1426 : Configuration.SCREENLAYOUT_ROUND_NO);
1427
1428 config.compatScreenWidthDp = (int)(config.screenWidthDp / mCompatibleScreenScale);
1429 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);
1430 config.compatSmallestScreenWidthDp = computeCompatSmallestWidth(rotated, config.uiMode, dw,
1431 dh, mDisplayId);
1432 config.densityDpi = displayInfo.logicalDensityDpi;
1433
1434 config.colorMode =
Chia-I Wuf739bad2018-05-09 12:36:57 -07001435 ((displayInfo.isHdr() && mService.hasHdrSupport())
Andrii Kulian06d07d62017-03-14 11:11:47 -07001436 ? Configuration.COLOR_MODE_HDR_YES
1437 : Configuration.COLOR_MODE_HDR_NO)
Romain Guye89d0bb2017-06-20 12:23:42 -07001438 | (displayInfo.isWideColorGamut() && mService.hasWideColorGamutSupport()
Andrii Kulian06d07d62017-03-14 11:11:47 -07001439 ? Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_YES
1440 : Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO);
1441
1442 // Update the configuration based on available input devices, lid switch,
1443 // and platform configuration.
1444 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1445 config.keyboard = Configuration.KEYBOARD_NOKEYS;
1446 config.navigation = Configuration.NAVIGATION_NONAV;
1447
1448 int keyboardPresence = 0;
1449 int navigationPresence = 0;
1450 final InputDevice[] devices = mService.mInputManager.getInputDevices();
1451 final int len = devices != null ? devices.length : 0;
1452 for (int i = 0; i < len; i++) {
1453 InputDevice device = devices[i];
1454 if (!device.isVirtual()) {
1455 final int sources = device.getSources();
1456 final int presenceFlag = device.isExternal() ?
1457 WindowManagerPolicy.PRESENCE_EXTERNAL :
1458 WindowManagerPolicy.PRESENCE_INTERNAL;
1459
1460 // TODO(multi-display): Configure on per-display basis.
1461 if (mService.mIsTouchDevice) {
1462 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
1463 InputDevice.SOURCE_TOUCHSCREEN) {
1464 config.touchscreen = Configuration.TOUCHSCREEN_FINGER;
1465 }
1466 } else {
1467 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1468 }
1469
1470 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
1471 config.navigation = Configuration.NAVIGATION_TRACKBALL;
1472 navigationPresence |= presenceFlag;
1473 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
1474 && config.navigation == Configuration.NAVIGATION_NONAV) {
1475 config.navigation = Configuration.NAVIGATION_DPAD;
1476 navigationPresence |= presenceFlag;
1477 }
1478
1479 if (device.getKeyboardType() == InputDevice.KEYBOARD_TYPE_ALPHABETIC) {
1480 config.keyboard = Configuration.KEYBOARD_QWERTY;
1481 keyboardPresence |= presenceFlag;
1482 }
1483 }
1484 }
1485
1486 if (config.navigation == Configuration.NAVIGATION_NONAV && mService.mHasPermanentDpad) {
1487 config.navigation = Configuration.NAVIGATION_DPAD;
1488 navigationPresence |= WindowManagerPolicy.PRESENCE_INTERNAL;
1489 }
1490
1491 // Determine whether a hard keyboard is available and enabled.
1492 // TODO(multi-display): Should the hardware keyboard be tied to a display or to a device?
1493 boolean hardKeyboardAvailable = config.keyboard != Configuration.KEYBOARD_NOKEYS;
1494 if (hardKeyboardAvailable != mService.mHardKeyboardAvailable) {
1495 mService.mHardKeyboardAvailable = hardKeyboardAvailable;
1496 mService.mH.removeMessages(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1497 mService.mH.sendEmptyMessage(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1498 }
1499
1500 // Let the policy update hidden states.
1501 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_NO;
1502 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_NO;
1503 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_NO;
1504 mService.mPolicy.adjustConfigurationLw(config, keyboardPresence, navigationPresence);
1505 }
1506
1507 private int computeCompatSmallestWidth(boolean rotated, int uiMode, int dw, int dh,
1508 int displayId) {
1509 mTmpDisplayMetrics.setTo(mDisplayMetrics);
1510 final DisplayMetrics tmpDm = mTmpDisplayMetrics;
1511 final int unrotDw, unrotDh;
1512 if (rotated) {
1513 unrotDw = dh;
1514 unrotDh = dw;
1515 } else {
1516 unrotDw = dw;
1517 unrotDh = dh;
1518 }
1519 int sw = reduceCompatConfigWidthSize(0, Surface.ROTATION_0, uiMode, tmpDm, unrotDw, unrotDh,
1520 displayId);
1521 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_90, uiMode, tmpDm, unrotDh, unrotDw,
1522 displayId);
1523 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_180, uiMode, tmpDm, unrotDw, unrotDh,
1524 displayId);
1525 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_270, uiMode, tmpDm, unrotDh, unrotDw,
1526 displayId);
1527 return sw;
1528 }
1529
1530 private int reduceCompatConfigWidthSize(int curSize, int rotation, int uiMode,
1531 DisplayMetrics dm, int dw, int dh, int displayId) {
1532 dm.noncompatWidthPixels = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001533 displayId, mDisplayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001534 dm.noncompatHeightPixels = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation,
Adrian Roos11c25582018-02-19 18:06:36 +01001535 uiMode, displayId, mDisplayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001536 float scale = CompatibilityInfo.computeCompatibleScaling(dm, null);
1537 int size = (int)(((dm.noncompatWidthPixels / scale) / dm.density) + .5f);
1538 if (curSize == 0 || size < curSize) {
1539 curSize = size;
1540 }
1541 return curSize;
1542 }
1543
1544 private void computeSizeRangesAndScreenLayout(DisplayInfo displayInfo, int displayId,
1545 boolean rotated, int uiMode, int dw, int dh, float density, Configuration outConfig) {
1546
1547 // We need to determine the smallest width that will occur under normal
1548 // operation. To this, start with the base screen size and compute the
1549 // width under the different possible rotations. We need to un-rotate
1550 // the current screen dimensions before doing this.
1551 int unrotDw, unrotDh;
1552 if (rotated) {
1553 unrotDw = dh;
1554 unrotDh = dw;
1555 } else {
1556 unrotDw = dw;
1557 unrotDh = dh;
1558 }
1559 displayInfo.smallestNominalAppWidth = 1<<30;
1560 displayInfo.smallestNominalAppHeight = 1<<30;
1561 displayInfo.largestNominalAppWidth = 0;
1562 displayInfo.largestNominalAppHeight = 0;
1563 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_0, uiMode, unrotDw,
1564 unrotDh);
1565 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_90, uiMode, unrotDh,
1566 unrotDw);
1567 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_180, uiMode, unrotDw,
1568 unrotDh);
1569 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_270, uiMode, unrotDh,
1570 unrotDw);
1571 int sl = Configuration.resetScreenLayout(outConfig.screenLayout);
1572 sl = reduceConfigLayout(sl, Surface.ROTATION_0, density, unrotDw, unrotDh, uiMode,
1573 displayId);
1574 sl = reduceConfigLayout(sl, Surface.ROTATION_90, density, unrotDh, unrotDw, uiMode,
1575 displayId);
1576 sl = reduceConfigLayout(sl, Surface.ROTATION_180, density, unrotDw, unrotDh, uiMode,
1577 displayId);
1578 sl = reduceConfigLayout(sl, Surface.ROTATION_270, density, unrotDh, unrotDw, uiMode,
1579 displayId);
1580 outConfig.smallestScreenWidthDp = (int)(displayInfo.smallestNominalAppWidth / density);
1581 outConfig.screenLayout = sl;
1582 }
1583
1584 private int reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh,
1585 int uiMode, int displayId) {
1586 // Get the app screen size at this rotation.
Adrian Roos11c25582018-02-19 18:06:36 +01001587 int w = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode, displayId,
1588 mDisplayInfo.displayCutout);
1589 int h = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode, displayId,
1590 mDisplayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001591
1592 // Compute the screen layout size class for this rotation.
1593 int longSize = w;
1594 int shortSize = h;
1595 if (longSize < shortSize) {
1596 int tmp = longSize;
1597 longSize = shortSize;
1598 shortSize = tmp;
1599 }
1600 longSize = (int)(longSize/density);
1601 shortSize = (int)(shortSize/density);
1602 return Configuration.reduceScreenLayout(curLayout, longSize, shortSize);
1603 }
1604
1605 private void adjustDisplaySizeRanges(DisplayInfo displayInfo, int displayId, int rotation,
1606 int uiMode, int dw, int dh) {
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001607 final DisplayCutout displayCutout = calculateDisplayCutoutForRotation(
1608 rotation).getDisplayCutout();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001609 final int width = mService.mPolicy.getConfigDisplayWidth(dw, dh, rotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001610 displayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001611 if (width < displayInfo.smallestNominalAppWidth) {
1612 displayInfo.smallestNominalAppWidth = width;
1613 }
1614 if (width > displayInfo.largestNominalAppWidth) {
1615 displayInfo.largestNominalAppWidth = width;
1616 }
1617 final int height = mService.mPolicy.getConfigDisplayHeight(dw, dh, rotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001618 displayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001619 if (height < displayInfo.smallestNominalAppHeight) {
1620 displayInfo.smallestNominalAppHeight = height;
1621 }
1622 if (height > displayInfo.largestNominalAppHeight) {
1623 displayInfo.largestNominalAppHeight = height;
1624 }
1625 }
1626
Riddle Hsua4d6fa22018-08-11 00:50:39 +08001627 /**
1628 * Apps that use the compact menu panel (as controlled by the panelMenuIsCompact
1629 * theme attribute) on devices that feature a physical options menu key attempt to position
1630 * their menu panel window along the edge of the screen nearest the physical menu key.
1631 * This lowers the travel distance between invoking the menu panel and selecting
1632 * a menu option.
1633 *
1634 * This method helps control where that menu is placed. Its current implementation makes
1635 * assumptions about the menu key and its relationship to the screen based on whether
1636 * the device's natural orientation is portrait (width < height) or landscape.
1637 *
1638 * The menu key is assumed to be located along the bottom edge of natural-portrait
1639 * devices and along the right edge of natural-landscape devices. If these assumptions
1640 * do not hold for the target device, this method should be changed to reflect that.
1641 *
1642 * @return A {@link Gravity} value for placing the options menu window.
1643 */
1644 int getPreferredOptionsPanelGravity() {
1645 final int rotation = getRotation();
1646 if (mInitialDisplayWidth < mInitialDisplayHeight) {
1647 // On devices with a natural orientation of portrait.
1648 switch (rotation) {
1649 default:
1650 case Surface.ROTATION_0:
1651 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1652 case Surface.ROTATION_90:
1653 return Gravity.RIGHT | Gravity.BOTTOM;
1654 case Surface.ROTATION_180:
1655 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1656 case Surface.ROTATION_270:
1657 return Gravity.START | Gravity.BOTTOM;
1658 }
1659 }
1660
1661 // On devices with a natural orientation of landscape.
1662 switch (rotation) {
1663 default:
1664 case Surface.ROTATION_0:
1665 return Gravity.RIGHT | Gravity.BOTTOM;
1666 case Surface.ROTATION_90:
1667 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1668 case Surface.ROTATION_180:
1669 return Gravity.START | Gravity.BOTTOM;
1670 case Surface.ROTATION_270:
1671 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1672 }
1673 }
1674
Jorim Jaggi61f39a72015-10-29 16:54:18 +01001675 DockedStackDividerController getDockedDividerController() {
1676 return mDividerControllerLocked;
1677 }
1678
Winson Chung655332c2016-10-31 13:14:28 -07001679 PinnedStackController getPinnedStackController() {
1680 return mPinnedStackControllerLocked;
1681 }
1682
Jeff Browna506a6e2013-06-04 00:02:38 -07001683 /**
1684 * Returns true if the specified UID has access to this display.
1685 */
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001686 boolean hasAccess(int uid) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001687 return mDisplay.hasAccess(uid);
1688 }
1689
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001690 boolean isPrivate() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001691 return (mDisplay.getFlags() & FLAG_PRIVATE) != 0;
keunyounga446bf02013-06-21 19:07:57 -07001692 }
1693
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001694 TaskStack getHomeStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001695 return mTaskStackContainers.getHomeStack();
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001696 }
1697
Wale Ogunwale61911492017-10-11 08:50:50 -07001698 /**
1699 * @return The primary split-screen stack, but only if it is visible, and {@code null} otherwise.
1700 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001701 TaskStack getSplitScreenPrimaryStack() {
1702 TaskStack stack = mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001703 return (stack != null && stack.isVisible()) ? stack : null;
1704 }
1705
Robert Carr9785cf32018-04-25 15:06:07 -07001706 boolean hasSplitScreenPrimaryStack() {
1707 return getSplitScreenPrimaryStack() != null;
1708 }
1709
Wale Ogunwale61911492017-10-11 08:50:50 -07001710 /**
Matthew Ng64e77cf2017-10-31 14:01:31 -07001711 * Like {@link #getSplitScreenPrimaryStack}, but also returns the stack if it's currently
Wale Ogunwale61911492017-10-11 08:50:50 -07001712 * not visible.
1713 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001714 TaskStack getSplitScreenPrimaryStackIgnoringVisibility() {
1715 return mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001716 }
1717
1718 TaskStack getPinnedStack() {
1719 return mTaskStackContainers.getPinnedStack();
1720 }
1721
1722 private boolean hasPinnedStack() {
1723 return mTaskStackContainers.getPinnedStack() != null;
Chong Zhangd9d35bd2016-08-04 17:55:21 -07001724 }
1725
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001726 /**
1727 * Returns the topmost stack on the display that is compatible with the input windowing mode.
1728 * Null is no compatible stack on the display.
1729 */
Wale Ogunwale30e441d2017-11-09 08:28:45 -08001730 TaskStack getTopStackInWindowingMode(int windowingMode) {
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001731 return getStack(windowingMode, ACTIVITY_TYPE_UNDEFINED);
1732 }
1733
1734 /**
1735 * Returns the topmost stack on the display that is compatible with the input windowing mode and
1736 * activity type. Null is no compatible stack on the display.
1737 */
Wale Ogunwale68278562017-09-23 17:13:55 -07001738 TaskStack getStack(int windowingMode, int activityType) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001739 return mTaskStackContainers.getStack(windowingMode, activityType);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001740 }
1741
Bryce Lee48f4b572017-04-10 10:54:15 -07001742 @VisibleForTesting
Kazuki Takise148d00a2018-05-31 15:32:19 +09001743 WindowList<TaskStack> getStacks() {
1744 return mTaskStackContainers.mChildren;
1745 }
1746
1747 @VisibleForTesting
Wale Ogunwale61911492017-10-11 08:50:50 -07001748 TaskStack getTopStack() {
1749 return mTaskStackContainers.getTopStack();
Bryce Lee48f4b572017-04-10 10:54:15 -07001750 }
1751
Winson Chunge2d72172018-01-25 17:46:20 +00001752 ArrayList<Task> getVisibleTasks() {
1753 return mTaskStackContainers.getVisibleTasks();
1754 }
1755
Wale Ogunwale61911492017-10-11 08:50:50 -07001756 void onStackWindowingModeChanged(TaskStack stack) {
1757 mTaskStackContainers.onStackWindowingModeChanged(stack);
Bryce Lee48f4b572017-04-10 10:54:15 -07001758 }
1759
Andrii Kulian441e4492016-09-29 15:25:00 -07001760 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -07001761 public void onConfigurationChanged(Configuration newParentConfig) {
Andrii Kulian441e4492016-09-29 15:25:00 -07001762 super.onConfigurationChanged(newParentConfig);
1763
Andrii Kulian3a507b52016-09-19 18:14:12 -07001764 // The display size information is heavily dependent on the resources in the current
1765 // configuration, so we need to reconfigure it every time the configuration changes.
1766 // See {@link PhoneWindowManager#setInitialDisplaySize}...sigh...
1767 mService.reconfigureDisplayLocked(this);
1768
Bryce Leef3c6a472017-11-14 14:53:06 -08001769 final DockedStackDividerController dividerController = getDockedDividerController();
1770
1771 if (dividerController != null) {
1772 getDockedDividerController().onConfigurationChanged();
1773 }
1774
1775 final PinnedStackController pinnedStackController = getPinnedStackController();
1776
1777 if (pinnedStackController != null) {
1778 getPinnedStackController().onConfigurationChanged();
1779 }
Andrii Kulian441e4492016-09-29 15:25:00 -07001780 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001781
Andrii Kulian441e4492016-09-29 15:25:00 -07001782 /**
1783 * Callback used to trigger bounds update after configuration change and get ids of stacks whose
1784 * bounds were updated.
1785 */
Bryce Leeaea60d22018-01-31 14:42:15 -08001786 void updateStackBoundsAfterConfigChange(@NonNull List<TaskStack> changedStackList) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001787 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1788 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Andrii Kulian441e4492016-09-29 15:25:00 -07001789 if (stack.updateBoundsAfterConfigChange()) {
Bryce Leeaea60d22018-01-31 14:42:15 -08001790 changedStackList.add(stack);
Andrii Kulian3a507b52016-09-19 18:14:12 -07001791 }
1792 }
Winson Chung32c566f2017-04-11 18:31:21 -07001793
1794 // If there was no pinned stack, we still need to notify the controller of the display info
1795 // update as a result of the config change. We do this here to consolidate the flow between
1796 // changes when there is and is not a stack.
Wale Ogunwale61911492017-10-11 08:50:50 -07001797 if (!hasPinnedStack()) {
Winson Chung32c566f2017-04-11 18:31:21 -07001798 mPinnedStackControllerLocked.onDisplayInfoChanged();
1799 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001800 }
1801
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001802 @Override
1803 boolean fillsParent() {
1804 return true;
1805 }
1806
1807 @Override
1808 boolean isVisible() {
1809 return true;
1810 }
1811
1812 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001813 void onAppTransitionDone() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001814 super.onAppTransitionDone();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001815 mService.mWindowsChanged = true;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001816 }
1817
Robert Carr9785cf32018-04-25 15:06:07 -07001818 /**
1819 * In split-screen mode we process the IME containers above the docked divider
1820 * rather than directly above their target.
1821 */
1822 private boolean skipTraverseChild(WindowContainer child) {
1823 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null
1824 && !hasSplitScreenPrimaryStack()) {
1825 return true;
1826 }
1827 return false;
1828 }
1829
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001830 @Override
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001831 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1832 // Special handling so we can process IME windows with #forAllImeWindows above their IME
1833 // target, or here in order if there isn't an IME target.
1834 if (traverseTopToBottom) {
1835 for (int i = mChildren.size() - 1; i >= 0; --i) {
1836 final DisplayChildWindowContainer child = mChildren.get(i);
Robert Carr9785cf32018-04-25 15:06:07 -07001837 if (skipTraverseChild(child)) {
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001838 continue;
1839 }
Robert Carr9785cf32018-04-25 15:06:07 -07001840
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001841 if (child.forAllWindows(callback, traverseTopToBottom)) {
1842 return true;
1843 }
1844 }
1845 } else {
1846 final int count = mChildren.size();
1847 for (int i = 0; i < count; i++) {
1848 final DisplayChildWindowContainer child = mChildren.get(i);
Robert Carr9785cf32018-04-25 15:06:07 -07001849 if (skipTraverseChild(child)) {
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001850 continue;
1851 }
Robert Carr9785cf32018-04-25 15:06:07 -07001852
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001853 if (child.forAllWindows(callback, traverseTopToBottom)) {
1854 return true;
1855 }
1856 }
1857 }
1858 return false;
1859 }
1860
1861 boolean forAllImeWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1862 return mImeWindowsContainers.forAllWindows(callback, traverseTopToBottom);
1863 }
1864
Wale Ogunwale399c8692017-05-08 14:22:42 -07001865 @Override
1866 int getOrientation() {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001867 final WindowManagerPolicy policy = mService.mPolicy;
1868
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001869 if (mService.mDisplayFrozen) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08001870 if (mLastWindowForcedOrientation != SCREEN_ORIENTATION_UNSPECIFIED) {
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001871 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
1872 + " is frozen, return " + mLastWindowForcedOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001873 // If the display is frozen, some activities may be in the middle of restarting, and
1874 // thus have removed their old window. If the window has the flag to hide the lock
1875 // screen, then the lock screen can re-appear and inflict its own orientation on us.
1876 // Keep the orientation stable until this all settles down.
Andrii Kulian8ee72852017-03-10 10:36:45 -08001877 return mLastWindowForcedOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001878 } else if (policy.isKeyguardLocked()) {
1879 // Use the last orientation the while the display is frozen with the keyguard
1880 // locked. This could be the keyguard forced orientation or from a SHOW_WHEN_LOCKED
1881 // window. We don't want to check the show when locked window directly though as
1882 // things aren't stable while the display is frozen, for example the window could be
1883 // momentarily unavailable due to activity relaunch.
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001884 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
1885 + " is frozen while keyguard locked, return " + mLastOrientation);
Andrii Kulian8ee72852017-03-10 10:36:45 -08001886 return mLastOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001887 }
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001888 } else {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001889 final int orientation = mAboveAppWindowsContainers.getOrientation();
1890 if (orientation != SCREEN_ORIENTATION_UNSET) {
1891 return orientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001892 }
Wale Ogunwale51362492016-09-08 17:49:17 -07001893 }
1894
Wale Ogunwale399c8692017-05-08 14:22:42 -07001895 // Top system windows are not requesting an orientation. Start searching from apps.
1896 return mTaskStackContainers.getOrientation();
Wale Ogunwale51362492016-09-08 17:49:17 -07001897 }
1898
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001899 void updateDisplayInfo() {
Andrii Kuliancd097992017-03-23 18:31:59 -07001900 // Check if display metrics changed and update base values if needed.
1901 updateBaseDisplayMetricsIfNeeded();
1902
Craig Mautner722285e2012-09-07 13:55:58 -07001903 mDisplay.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -07001904 mDisplay.getMetrics(mDisplayMetrics);
Andrii Kuliancd097992017-03-23 18:31:59 -07001905
Wale Ogunwale61911492017-10-11 08:50:50 -07001906 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1907 mTaskStackContainers.getChildAt(i).updateDisplayInfo(null);
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001908 }
Craig Mautner722285e2012-09-07 13:55:58 -07001909 }
1910
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001911 void initializeDisplayBaseInfo() {
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001912 final DisplayManagerInternal displayManagerInternal = mService.mDisplayManagerInternal;
1913 if (displayManagerInternal != null) {
1914 // Bootstrap the default logical display from the display manager.
1915 final DisplayInfo newDisplayInfo = displayManagerInternal.getDisplayInfo(mDisplayId);
1916 if (newDisplayInfo != null) {
1917 mDisplayInfo.copyFrom(newDisplayInfo);
1918 }
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001919 }
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001920
Andrii Kuliancd097992017-03-23 18:31:59 -07001921 updateBaseDisplayMetrics(mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight,
1922 mDisplayInfo.logicalDensityDpi);
1923 mInitialDisplayWidth = mDisplayInfo.logicalWidth;
1924 mInitialDisplayHeight = mDisplayInfo.logicalHeight;
1925 mInitialDisplayDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001926 mInitialDisplayCutout = mDisplayInfo.displayCutout;
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001927 }
1928
Andrii Kuliancd097992017-03-23 18:31:59 -07001929 /**
1930 * If display metrics changed, overrides are not set and it's not just a rotation - update base
1931 * values.
1932 */
1933 private void updateBaseDisplayMetricsIfNeeded() {
1934 // Get real display metrics without overrides from WM.
1935 mService.mDisplayManagerInternal.getNonOverrideDisplayInfo(mDisplayId, mDisplayInfo);
1936 final int orientation = mDisplayInfo.rotation;
1937 final boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
1938 final int newWidth = rotated ? mDisplayInfo.logicalHeight : mDisplayInfo.logicalWidth;
1939 final int newHeight = rotated ? mDisplayInfo.logicalWidth : mDisplayInfo.logicalHeight;
1940 final int newDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001941 final DisplayCutout newCutout = mDisplayInfo.displayCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001942
1943 final boolean displayMetricsChanged = mInitialDisplayWidth != newWidth
1944 || mInitialDisplayHeight != newHeight
Adrian Roos1cf585052018-01-03 18:43:27 +01001945 || mInitialDisplayDensity != mDisplayInfo.logicalDensityDpi
1946 || !Objects.equals(mInitialDisplayCutout, newCutout);
Andrii Kuliancd097992017-03-23 18:31:59 -07001947
1948 if (displayMetricsChanged) {
1949 // Check if display size or density is forced.
1950 final boolean isDisplaySizeForced = mBaseDisplayWidth != mInitialDisplayWidth
1951 || mBaseDisplayHeight != mInitialDisplayHeight;
1952 final boolean isDisplayDensityForced = mBaseDisplayDensity != mInitialDisplayDensity;
1953
1954 // If there is an override set for base values - use it, otherwise use new values.
1955 updateBaseDisplayMetrics(isDisplaySizeForced ? mBaseDisplayWidth : newWidth,
1956 isDisplaySizeForced ? mBaseDisplayHeight : newHeight,
1957 isDisplayDensityForced ? mBaseDisplayDensity : newDensity);
1958
1959 // Real display metrics changed, so we should also update initial values.
1960 mInitialDisplayWidth = newWidth;
1961 mInitialDisplayHeight = newHeight;
1962 mInitialDisplayDensity = newDensity;
Adrian Roos1cf585052018-01-03 18:43:27 +01001963 mInitialDisplayCutout = newCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001964 mService.reconfigureDisplayLocked(this);
1965 }
1966 }
1967
Bryce Lee27cec322017-03-21 09:41:37 -07001968 /** Sets the maximum width the screen resolution can be */
1969 void setMaxUiWidth(int width) {
1970 if (DEBUG_DISPLAY) {
1971 Slog.v(TAG_WM, "Setting max ui width:" + width + " on display:" + getDisplayId());
1972 }
1973
1974 mMaxUiWidth = width;
1975
1976 // Update existing metrics.
1977 updateBaseDisplayMetrics(mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1978 }
1979
1980 /** Update base (override) display metrics. */
1981 void updateBaseDisplayMetrics(int baseWidth, int baseHeight, int baseDensity) {
1982 mBaseDisplayWidth = baseWidth;
1983 mBaseDisplayHeight = baseHeight;
1984 mBaseDisplayDensity = baseDensity;
1985
1986 if (mMaxUiWidth > 0 && mBaseDisplayWidth > mMaxUiWidth) {
1987 mBaseDisplayHeight = (mMaxUiWidth * mBaseDisplayHeight) / mBaseDisplayWidth;
1988 mBaseDisplayDensity = (mMaxUiWidth * mBaseDisplayDensity) / mBaseDisplayWidth;
1989 mBaseDisplayWidth = mMaxUiWidth;
1990
1991 if (DEBUG_DISPLAY) {
1992 Slog.v(TAG_WM, "Applying config restraints:" + mBaseDisplayWidth + "x"
1993 + mBaseDisplayHeight + " at density:" + mBaseDisplayDensity
1994 + " on display:" + getDisplayId());
1995 }
1996 }
1997
1998 mBaseDisplayRect.set(0, 0, mBaseDisplayWidth, mBaseDisplayHeight);
Bryce Leef3c6a472017-11-14 14:53:06 -08001999
2000 updateBounds();
Bryce Lee27cec322017-03-21 09:41:37 -07002001 }
2002
Wale Ogunwaledb506192017-12-08 10:57:32 -08002003 void getStableRect(Rect out) {
2004 out.set(mDisplayFrames.mStable);
Chong Zhangf66db432016-01-13 10:39:51 -08002005 }
2006
Wale Ogunwale61911492017-10-11 08:50:50 -07002007 TaskStack createStack(int stackId, boolean onTop, StackWindowController controller) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002008 if (DEBUG_STACK) Slog.d(TAG_WM, "Create new stackId=" + stackId + " on displayId="
2009 + mDisplayId);
Andrii Kulian839def92016-11-02 10:58:58 -07002010
Wale Ogunwale61911492017-10-11 08:50:50 -07002011 final TaskStack stack = new TaskStack(mService, stackId, controller);
2012 mTaskStackContainers.addStackToDisplay(stack, onTop);
Wale Ogunwale1666e312016-12-16 11:27:18 -08002013 return stack;
Andrii Kulian839def92016-11-02 10:58:58 -07002014 }
2015
Andrii Kulian51c1b672017-04-07 18:39:32 -07002016 void moveStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002017 final DisplayContent prevDc = stack.getDisplayContent();
2018 if (prevDc == null) {
Andrii Kulian839def92016-11-02 10:58:58 -07002019 throw new IllegalStateException("Trying to move stackId=" + stack.mStackId
2020 + " which is not currently attached to any display");
2021 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08002022 if (prevDc.getDisplayId() == mDisplayId) {
Andrii Kulian839def92016-11-02 10:58:58 -07002023 throw new IllegalArgumentException("Trying to move stackId=" + stack.mStackId
2024 + " to its current displayId=" + mDisplayId);
2025 }
2026
Wale Ogunwale61911492017-10-11 08:50:50 -07002027 prevDc.mTaskStackContainers.removeChild(stack);
Andrii Kulian51c1b672017-04-07 18:39:32 -07002028 mTaskStackContainers.addStackToDisplay(stack, onTop);
Craig Mautnerc00204b2013-03-05 15:02:14 -08002029 }
2030
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002031 @Override
2032 protected void addChild(DisplayChildWindowContainer child,
2033 Comparator<DisplayChildWindowContainer> comparator) {
2034 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
2035 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002036
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002037 @Override
2038 protected void addChild(DisplayChildWindowContainer child, int index) {
2039 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
2040 }
2041
2042 @Override
2043 protected void removeChild(DisplayChildWindowContainer child) {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002044 // Only allow removal of direct children from this display if the display is in the process
2045 // of been removed.
2046 if (mRemovingDisplay) {
2047 super.removeChild(child);
2048 return;
2049 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002050 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
Craig Mautnerbdc748af2013-12-02 14:08:25 -08002051 }
2052
Andrii Kuliand2765632016-12-12 22:26:34 -08002053 @Override
2054 void positionChildAt(int position, DisplayChildWindowContainer child, boolean includingParents) {
2055 // Children of the display are statically ordered, so the real intention here is to perform
2056 // the operation on the display and not the static direct children.
2057 getParent().positionChildAt(position, this, includingParents);
2058 }
2059
Riddle Hsu57831b52018-07-27 00:31:48 +08002060 void positionStackAt(int position, TaskStack child, boolean includingParents) {
2061 mTaskStackContainers.positionChildAt(position, child, includingParents);
Winson Chung59a47ded2018-01-25 17:46:06 +00002062 layoutAndAssignWindowLayersIfNeeded();
2063 }
2064
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002065 int taskIdFromPoint(int x, int y) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002066 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2067 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002068 final int taskId = stack.taskIdFromPoint(x, y);
2069 if (taskId != -1) {
2070 return taskId;
Craig Mautner967212c2013-04-13 21:10:58 -07002071 }
2072 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08002073 return -1;
Craig Mautnercf910b02013-04-23 11:23:27 -07002074 }
2075
Chong Zhang8e89b312015-09-09 15:09:30 -07002076 /**
Chong Zhangd8ceb852015-11-11 14:53:41 -08002077 * Find the task whose outside touch area (for resizing) (x, y) falls within.
Chong Zhang9184ec62015-09-24 12:32:21 -07002078 * Returns null if the touch doesn't fall into a resizing area.
Chong Zhang8e89b312015-09-09 15:09:30 -07002079 */
Wale Ogunwale15ead902016-09-02 14:30:11 -07002080 Task findTaskForResizePoint(int x, int y) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002081 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002082 mTmpTaskForResizePointSearchResult.reset();
Wale Ogunwale61911492017-10-11 08:50:50 -07002083 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2084 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002085 if (!stack.getWindowConfiguration().canResizeTask()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002086 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07002087 }
Chong Zhang9184ec62015-09-24 12:32:21 -07002088
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002089 stack.findTaskForResizePoint(x, y, delta, mTmpTaskForResizePointSearchResult);
2090 if (mTmpTaskForResizePointSearchResult.searchDone) {
2091 return mTmpTaskForResizePointSearchResult.taskForResize;
Chong Zhang8e89b312015-09-09 15:09:30 -07002092 }
2093 }
Chong Zhang9184ec62015-09-24 12:32:21 -07002094 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07002095 }
2096
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002097 void setTouchExcludeRegion(Task focusedTask) {
David Stevensee9e2772017-02-09 16:30:27 -08002098 // The provided task is the task on this display with focus, so if WindowManagerService's
2099 // focused app is not on this display, focusedTask will be null.
2100 if (focusedTask == null) {
2101 mTouchExcludeRegion.setEmpty();
2102 } else {
2103 mTouchExcludeRegion.set(mBaseDisplayRect);
2104 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
2105 mTmpRect2.setEmpty();
Wale Ogunwale61911492017-10-11 08:50:50 -07002106 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2107 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002108 stack.setTouchExcludeRegion(focusedTask, delta, mTouchExcludeRegion,
2109 mDisplayFrames.mContent, mTmpRect2);
David Stevensee9e2772017-02-09 16:30:27 -08002110 }
2111 // If we removed the focused task above, add it back and only leave its
2112 // outside touch area in the exclusion. TapDectector is not interested in
2113 // any touch inside the focused task itself.
2114 if (!mTmpRect2.isEmpty()) {
2115 mTouchExcludeRegion.op(mTmpRect2, Region.Op.UNION);
2116 }
Chong Zhangd8ceb852015-11-11 14:53:41 -08002117 }
lumark90120a82018-08-15 00:33:03 +08002118 if (mInputMethodWindow != null && mInputMethodWindow.isVisibleLw()) {
Filip Gruszczynski912d9192015-12-01 16:14:04 -08002119 // If the input method is visible and the user is typing, we don't want these touch
2120 // events to be intercepted and used to change focus. This would likely cause a
2121 // disappearance of the input method.
lumark90120a82018-08-15 00:33:03 +08002122 mInputMethodWindow.getTouchableRegion(mTmpRegion);
2123 if (mInputMethodWindow.getDisplayId() == mDisplayId) {
Andrii Kulian7a31b772017-05-02 13:22:42 -07002124 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
2125 } else {
2126 // IME is on a different display, so we need to update its tap detector.
lumark90120a82018-08-15 00:33:03 +08002127 setTouchExcludeRegion(null /* focusedTask */);
Andrii Kulian7a31b772017-05-02 13:22:42 -07002128 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08002129 }
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08002130 for (int i = mTapExcludedWindows.size() - 1; i >= 0; i--) {
Andrii Kulian4b6599e2018-01-15 17:24:08 -08002131 final WindowState win = mTapExcludedWindows.get(i);
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08002132 win.getTouchableRegion(mTmpRegion);
2133 mTouchExcludeRegion.op(mTmpRegion, Region.Op.UNION);
2134 }
Andrii Kulian4b6599e2018-01-15 17:24:08 -08002135 for (int i = mTapExcludeProvidingWindows.size() - 1; i >= 0; i--) {
2136 final WindowState win = mTapExcludeProvidingWindows.valueAt(i);
2137 win.amendTapExcludeRegion(mTouchExcludeRegion);
2138 }
Andrii Kulian03c403d2016-11-11 11:14:12 -08002139 // TODO(multi-display): Support docked stacks on secondary displays.
Matthew Ng64e77cf2017-10-31 14:01:31 -07002140 if (mDisplayId == DEFAULT_DISPLAY && getSplitScreenPrimaryStack() != null) {
Jorim Jaggid47e7e12016-03-01 09:57:38 +01002141 mDividerControllerLocked.getTouchRegion(mTmpRect);
Jorim Jaggi7f19cb82016-03-25 19:37:44 -07002142 mTmpRegion.set(mTmpRect);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01002143 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
2144 }
Craig Mautner1bef3892015-02-17 15:09:47 -08002145 if (mTapDetector != null) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -07002146 mTapDetector.setTouchExcludeRegion(mTouchExcludeRegion);
Craig Mautner1bef3892015-02-17 15:09:47 -08002147 }
Craig Mautner6601b7b2013-04-29 10:29:11 -07002148 }
2149
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002150 @Override
Wale Ogunwalee05f5012016-09-16 16:27:29 -07002151 void switchUser() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002152 super.switchUser();
2153 mService.mWindowsChanged = true;
Craig Mautner858d8a62013-04-23 17:08:34 -07002154 }
2155
Wale Ogunwaleac2561e2016-11-01 15:43:46 -07002156 private void resetAnimationBackgroundAnimator() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002157 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2158 mTaskStackContainers.getChildAt(stackNdx).resetAnimationBackgroundAnimator();
Craig Mautner05d29032013-05-03 13:40:13 -07002159 }
2160 }
2161
Wale Ogunwale10124582016-09-15 20:25:50 -07002162 @Override
2163 void removeIfPossible() {
2164 if (isAnimating()) {
2165 mDeferredRemoval = true;
2166 return;
Craig Mautner2eb15342013-08-07 13:13:35 -07002167 }
Wale Ogunwale10124582016-09-15 20:25:50 -07002168 removeImmediately();
Craig Mautner2eb15342013-08-07 13:13:35 -07002169 }
2170
Wale Ogunwale10124582016-09-15 20:25:50 -07002171 @Override
2172 void removeImmediately() {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002173 mRemovingDisplay = true;
2174 try {
2175 super.removeImmediately();
2176 if (DEBUG_DISPLAY) Slog.v(TAG_WM, "Removing display=" + this);
Tarandeep Singh7ac8d3a2017-09-05 11:09:39 -07002177 if (mService.canDispatchPointerEvents()) {
2178 if (mTapDetector != null) {
2179 mService.unregisterPointerEventListener(mTapDetector);
2180 }
2181 if (mDisplayId == DEFAULT_DISPLAY && mService.mMousePositionTracker != null) {
2182 mService.unregisterPointerEventListener(mService.mMousePositionTracker);
2183 }
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002184 }
Jorim Jaggia3844032018-01-03 15:54:43 +01002185 mService.mAnimator.removeDisplayLocked(mDisplayId);
Louis Chang207f9112018-07-30 08:58:54 +08002186 mWindowingLayer.release();
2187 mOverlayLayer.release();
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002188 } finally {
2189 mRemovingDisplay = false;
Craig Mautner95da1082014-02-24 17:54:35 -08002190 }
Bryce Leef19cbe22018-02-02 15:09:21 -08002191
Arthur Hung39134b22018-08-14 11:58:28 +08002192 mInputMonitor.onRemoved();
Bryce Leef19cbe22018-02-02 15:09:21 -08002193 mService.onDisplayRemoved(mDisplayId);
Craig Mautner95da1082014-02-24 17:54:35 -08002194 }
2195
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002196 /** Returns true if a removal action is still being deferred. */
Wale Ogunwale10124582016-09-15 20:25:50 -07002197 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002198 boolean checkCompleteDeferredRemoval() {
Wale Ogunwale10124582016-09-15 20:25:50 -07002199 final boolean stillDeferringRemoval = super.checkCompleteDeferredRemoval();
2200
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002201 if (!stillDeferringRemoval && mDeferredRemoval) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002202 removeImmediately();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002203 return false;
Craig Mautner95da1082014-02-24 17:54:35 -08002204 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002205 return true;
Craig Mautner95da1082014-02-24 17:54:35 -08002206 }
2207
Andrii Kulian0214ed92017-05-16 13:44:05 -07002208 /** @return 'true' if removal of this display content is deferred due to active animation. */
2209 boolean isRemovalDeferred() {
2210 return mDeferredRemoval;
2211 }
2212
Wale Ogunwale10124582016-09-15 20:25:50 -07002213 boolean animateForIme(float interpolatedValue, float animationTarget,
2214 float dividerAnimationTarget) {
2215 boolean updated = false;
2216
Wale Ogunwale61911492017-10-11 08:50:50 -07002217 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2218 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002219 if (stack == null || !stack.isAdjustedForIme()) {
2220 continue;
2221 }
2222
2223 if (interpolatedValue >= 1f && animationTarget == 0f && dividerAnimationTarget == 0f) {
2224 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
2225 updated = true;
2226 } else {
2227 mDividerControllerLocked.mLastAnimationProgress =
2228 mDividerControllerLocked.getInterpolatedAnimationValue(interpolatedValue);
2229 mDividerControllerLocked.mLastDividerProgress =
2230 mDividerControllerLocked.getInterpolatedDividerValue(interpolatedValue);
2231 updated |= stack.updateAdjustForIme(
2232 mDividerControllerLocked.mLastAnimationProgress,
2233 mDividerControllerLocked.mLastDividerProgress,
2234 false /* force */);
2235 }
2236 if (interpolatedValue >= 1f) {
2237 stack.endImeAdjustAnimation();
2238 }
2239 }
2240
2241 return updated;
2242 }
2243
2244 boolean clearImeAdjustAnimation() {
2245 boolean changed = false;
Wale Ogunwale61911492017-10-11 08:50:50 -07002246 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2247 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002248 if (stack != null && stack.isAdjustedForIme()) {
2249 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
2250 changed = true;
2251 }
2252 }
2253 return changed;
2254 }
2255
2256 void beginImeAdjustAnimation() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002257 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2258 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002259 if (stack.isVisible() && stack.isAdjustedForIme()) {
2260 stack.beginImeAdjustAnimation();
2261 }
2262 }
2263 }
2264
2265 void adjustForImeIfNeeded() {
lumark90120a82018-08-15 00:33:03 +08002266 final WindowState imeWin = mInputMethodWindow;
Wale Ogunwale10124582016-09-15 20:25:50 -07002267 final boolean imeVisible = imeWin != null && imeWin.isVisibleLw() && imeWin.isDisplayedLw()
2268 && !mDividerControllerLocked.isImeHideRequested();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002269 final boolean dockVisible = isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Wale Ogunwale10124582016-09-15 20:25:50 -07002270 final TaskStack imeTargetStack = mService.getImeFocusStackLocked();
2271 final int imeDockSide = (dockVisible && imeTargetStack != null) ?
2272 imeTargetStack.getDockSide() : DOCKED_INVALID;
2273 final boolean imeOnTop = (imeDockSide == DOCKED_TOP);
2274 final boolean imeOnBottom = (imeDockSide == DOCKED_BOTTOM);
2275 final boolean dockMinimized = mDividerControllerLocked.isMinimizedDock();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002276 final int imeHeight = mDisplayFrames.getInputMethodWindowVisibleHeight();
Wale Ogunwale10124582016-09-15 20:25:50 -07002277 final boolean imeHeightChanged = imeVisible &&
2278 imeHeight != mDividerControllerLocked.getImeHeightAdjustedFor();
2279
2280 // The divider could be adjusted for IME position, or be thinner than usual,
2281 // or both. There are three possible cases:
2282 // - If IME is visible, and focus is on top, divider is not moved for IME but thinner.
2283 // - If IME is visible, and focus is on bottom, divider is moved for IME and thinner.
2284 // - If IME is not visible, divider is not moved and is normal width.
2285
2286 if (imeVisible && dockVisible && (imeOnTop || imeOnBottom) && !dockMinimized) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002287 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2288 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002289 final boolean isDockedOnBottom = stack.getDockSide() == DOCKED_BOTTOM;
Wale Ogunwale68278562017-09-23 17:13:55 -07002290 if (stack.isVisible() && (imeOnBottom || isDockedOnBottom)
2291 && stack.inSplitScreenWindowingMode()) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002292 stack.setAdjustedForIme(imeWin, imeOnBottom && imeHeightChanged);
2293 } else {
2294 stack.resetAdjustedForIme(false);
2295 }
2296 }
2297 mDividerControllerLocked.setAdjustedForIme(
2298 imeOnBottom /*ime*/, true /*divider*/, true /*animate*/, imeWin, imeHeight);
2299 } else {
Wale Ogunwale61911492017-10-11 08:50:50 -07002300 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2301 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002302 stack.resetAdjustedForIme(!dockVisible);
2303 }
2304 mDividerControllerLocked.setAdjustedForIme(
2305 false /*ime*/, false /*divider*/, dockVisible /*animate*/, imeWin, imeHeight);
2306 }
Winson Chung655332c2016-10-31 13:14:28 -07002307 mPinnedStackControllerLocked.setAdjustedForIme(imeVisible, imeHeight);
Wale Ogunwale10124582016-09-15 20:25:50 -07002308 }
2309
2310 void prepareFreezingTaskBounds() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002311 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2312 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale10124582016-09-15 20:25:50 -07002313 stack.prepareFreezingTaskBounds();
2314 }
2315 }
2316
Wale Ogunwale94744212015-09-21 19:01:47 -07002317 void rotateBounds(int oldRotation, int newRotation, Rect bounds) {
Bryce Leef3c6a472017-11-14 14:53:06 -08002318 getBounds(mTmpRect, newRotation);
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002319
2320 // Compute a transform matrix to undo the coordinate space transformation,
2321 // and present the window at the same physical position it previously occupied.
2322 final int deltaRotation = deltaRotation(newRotation, oldRotation);
2323 createRotationMatrix(deltaRotation, mTmpRect.width(), mTmpRect.height(), mTmpMatrix);
2324
2325 mTmpRectF.set(bounds);
2326 mTmpMatrix.mapRect(mTmpRectF);
2327 mTmpRectF.round(bounds);
Wale Ogunwale94744212015-09-21 19:01:47 -07002328 }
2329
Wale Ogunwale4a02d812015-02-12 23:01:38 -08002330 static int deltaRotation(int oldRotation, int newRotation) {
2331 int delta = newRotation - oldRotation;
2332 if (delta < 0) delta += 4;
2333 return delta;
2334 }
2335
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002336 private static void createRotationMatrix(int rotation, float displayWidth, float displayHeight,
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002337 Matrix outMatrix) {
2338 // For rotations without Z-ordering we don't need the target rectangle's position.
2339 createRotationMatrix(rotation, 0 /* rectLeft */, 0 /* rectTop */, displayWidth,
2340 displayHeight, outMatrix);
2341 }
2342
2343 static void createRotationMatrix(int rotation, float rectLeft, float rectTop,
2344 float displayWidth, float displayHeight, Matrix outMatrix) {
2345 switch (rotation) {
2346 case ROTATION_0:
2347 outMatrix.reset();
2348 break;
2349 case ROTATION_270:
2350 outMatrix.setRotate(270, 0, 0);
2351 outMatrix.postTranslate(0, displayHeight);
2352 outMatrix.postTranslate(rectTop, 0);
2353 break;
2354 case ROTATION_180:
2355 outMatrix.reset();
2356 break;
2357 case ROTATION_90:
2358 outMatrix.setRotate(90, 0, 0);
2359 outMatrix.postTranslate(displayWidth, 0);
2360 outMatrix.postTranslate(-rectTop, rectLeft);
2361 break;
2362 }
2363 }
2364
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002365 @CallSuper
2366 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002367 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002368 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002369 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002370 proto.write(ID, mDisplayId);
Wale Ogunwale61911492017-10-11 08:50:50 -07002371 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2372 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002373 stack.writeToProto(proto, STACKS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002374 }
2375 mDividerControllerLocked.writeToProto(proto, DOCKED_STACK_DIVIDER_CONTROLLER);
2376 mPinnedStackControllerLocked.writeToProto(proto, PINNED_STACK_CONTROLLER);
Wale Ogunwale61911492017-10-11 08:50:50 -07002377 for (int i = mAboveAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2378 final WindowToken windowToken = mAboveAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002379 windowToken.writeToProto(proto, ABOVE_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002380 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002381 for (int i = mBelowAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2382 final WindowToken windowToken = mBelowAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002383 windowToken.writeToProto(proto, BELOW_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002384 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002385 for (int i = mImeWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2386 final WindowToken windowToken = mImeWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002387 windowToken.writeToProto(proto, IME_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002388 }
2389 proto.write(DPI, mBaseDisplayDensity);
2390 mDisplayInfo.writeToProto(proto, DISPLAY_INFO);
Steven Timotiusf2d68892017-08-28 17:00:01 -07002391 proto.write(ROTATION, mRotation);
2392 final ScreenRotationAnimation screenRotationAnimation =
2393 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
2394 if (screenRotationAnimation != null) {
2395 screenRotationAnimation.writeToProto(proto, SCREEN_ROTATION_ANIMATION);
2396 }
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002397 mDisplayFrames.writeToProto(proto, DISPLAY_FRAMES);
Louis Chang7501e332018-08-20 13:08:39 +08002398 proto.write(SURFACE_SIZE, mSurfaceSize);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002399 proto.end(token);
2400 }
2401
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002402 @Override
2403 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2404 super.dump(pw, prefix, dumpAll);
Craig Mautnera91f9e22012-09-14 16:22:08 -07002405 pw.print(prefix); pw.print("Display: mDisplayId="); pw.println(mDisplayId);
2406 final String subPrefix = " " + prefix;
2407 pw.print(subPrefix); pw.print("init="); pw.print(mInitialDisplayWidth); pw.print("x");
2408 pw.print(mInitialDisplayHeight); pw.print(" "); pw.print(mInitialDisplayDensity);
2409 pw.print("dpi");
2410 if (mInitialDisplayWidth != mBaseDisplayWidth
2411 || mInitialDisplayHeight != mBaseDisplayHeight
2412 || mInitialDisplayDensity != mBaseDisplayDensity) {
2413 pw.print(" base=");
2414 pw.print(mBaseDisplayWidth); pw.print("x"); pw.print(mBaseDisplayHeight);
2415 pw.print(" "); pw.print(mBaseDisplayDensity); pw.print("dpi");
2416 }
Jeff Brownd46747a2015-04-15 19:02:36 -07002417 if (mDisplayScalingDisabled) {
2418 pw.println(" noscale");
2419 }
Craig Mautnera91f9e22012-09-14 16:22:08 -07002420 pw.print(" cur=");
2421 pw.print(mDisplayInfo.logicalWidth);
2422 pw.print("x"); pw.print(mDisplayInfo.logicalHeight);
2423 pw.print(" app=");
2424 pw.print(mDisplayInfo.appWidth);
2425 pw.print("x"); pw.print(mDisplayInfo.appHeight);
2426 pw.print(" rng="); pw.print(mDisplayInfo.smallestNominalAppWidth);
2427 pw.print("x"); pw.print(mDisplayInfo.smallestNominalAppHeight);
2428 pw.print("-"); pw.print(mDisplayInfo.largestNominalAppWidth);
2429 pw.print("x"); pw.println(mDisplayInfo.largestNominalAppHeight);
David Stevensf833ba92017-03-16 19:00:20 -07002430 pw.print(subPrefix + "deferred=" + mDeferredRemoval
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002431 + " mLayoutNeeded=" + mLayoutNeeded);
David Stevensf833ba92017-03-16 19:00:20 -07002432 pw.println(" mTouchExcludeRegion=" + mTouchExcludeRegion);
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002433
Craig Mautnerdc548482014-02-05 13:35:24 -08002434 pw.println();
Adrian Roos5251b1d2018-03-23 18:57:43 +01002435 pw.print(prefix); pw.print("mLayoutSeq="); pw.println(mLayoutSeq);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002436 pw.print(prefix);
2437 pw.print("mDeferredRotationPauseCount="); pw.println(mDeferredRotationPauseCount);
Adrian Roos5251b1d2018-03-23 18:57:43 +01002438
2439 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002440 pw.println(prefix + "Application tokens in top down Z order:");
Wale Ogunwale61911492017-10-11 08:50:50 -07002441 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2442 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002443 stack.dump(pw, prefix + " ", dumpAll);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002444 }
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002445
Craig Mautnerdc548482014-02-05 13:35:24 -08002446 pw.println();
2447 if (!mExitingTokens.isEmpty()) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002448 pw.println();
2449 pw.println(" Exiting tokens:");
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002450 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002451 final WindowToken token = mExitingTokens.get(i);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002452 pw.print(" Exiting #"); pw.print(i);
2453 pw.print(' '); pw.print(token);
2454 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002455 token.dump(pw, " ", dumpAll);
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002456 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002457 }
Robert Carrf59b8dd2017-10-02 18:58:36 -07002458
Jorim Jaggi31f71702016-05-04 16:43:04 -07002459 pw.println();
Wale Ogunwale61911492017-10-11 08:50:50 -07002460
2461 // Dump stack references
2462 final TaskStack homeStack = getHomeStack();
2463 if (homeStack != null) {
2464 pw.println(prefix + "homeStack=" + homeStack.getName());
2465 }
2466 final TaskStack pinnedStack = getPinnedStack();
2467 if (pinnedStack != null) {
2468 pw.println(prefix + "pinnedStack=" + pinnedStack.getName());
2469 }
Matthew Ng64e77cf2017-10-31 14:01:31 -07002470 final TaskStack splitScreenPrimaryStack = getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07002471 if (splitScreenPrimaryStack != null) {
2472 pw.println(prefix + "splitScreenPrimaryStack=" + splitScreenPrimaryStack.getName());
2473 }
2474
2475 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002476 mDividerControllerLocked.dump(prefix, pw);
Winson Chung655332c2016-10-31 13:14:28 -07002477 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002478 mPinnedStackControllerLocked.dump(prefix, pw);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002479
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002480 pw.println();
2481 mDisplayFrames.dump(prefix, pw);
Arthur Hung95b38a92018-07-20 18:56:12 +08002482 pw.println();
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08002483 mDisplayPolicy.dump(prefix, pw);
2484 pw.println();
Riddle Hsuad256a12018-07-18 16:11:30 +08002485 mDisplayRotation.dump(prefix, pw);
2486 pw.println();
Arthur Hung95b38a92018-07-20 18:56:12 +08002487 mInputMonitor.dump(pw, " ");
Craig Mautner59c00972012-07-30 12:10:24 -07002488 }
Craig Mautnere0a38842013-12-16 16:14:02 -08002489
2490 @Override
2491 public String toString() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002492 return "Display " + mDisplayId + " info=" + mDisplayInfo + " stacks=" + mChildren;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002493 }
2494
2495 String getName() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002496 return "Display " + mDisplayId + " name=\"" + mDisplayInfo.name + "\"";
Craig Mautnere0a38842013-12-16 16:14:02 -08002497 }
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002498
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002499 /** Returns true if the stack in the windowing mode is visible. */
2500 boolean isStackVisible(int windowingMode) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002501 final TaskStack stack = getTopStackInWindowingMode(windowingMode);
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002502 return stack != null && stack.isVisible();
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08002503 }
2504
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002505 /** Find the visible, touch-deliverable window under the given point */
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002506 WindowState getTouchableWinAtPointLocked(float xf, float yf) {
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002507 final int x = (int) xf;
2508 final int y = (int) yf;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002509 final WindowState touchedWin = getWindow(w -> {
2510 final int flags = w.mAttrs.flags;
2511 if (!w.isVisibleLw()) {
2512 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002513 }
2514 if ((flags & FLAG_NOT_TOUCHABLE) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002515 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002516 }
2517
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002518 w.getVisibleBounds(mTmpRect);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002519 if (!mTmpRect.contains(x, y)) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002520 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002521 }
2522
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002523 w.getTouchableRegion(mTmpRegion);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002524
2525 final int touchFlags = flags & (FLAG_NOT_FOCUSABLE | FLAG_NOT_TOUCH_MODAL);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002526 return mTmpRegion.contains(x, y) || touchFlags == 0;
2527 });
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002528
2529 return touchedWin;
2530 }
Jorim Jaggi6626f542016-08-22 13:08:44 -07002531
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002532 boolean canAddToastWindowForUid(int uid) {
2533 // We allow one toast window per UID being shown at a time.
Svet Ganovdaca8ee2017-01-21 17:40:40 -08002534 // Also if the app is focused adding more than one toast at
2535 // a time for better backwards compatibility.
2536 final WindowState focusedWindowForUid = getWindow(w ->
2537 w.mOwnerUid == uid && w.isFocused());
2538 if (focusedWindowForUid != null) {
2539 return true;
2540 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002541 final WindowState win = getWindow(w ->
2542 w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == uid && !w.mPermanentlyHidden
2543 && !w.mWindowRemovalAllowed);
2544 return win == null;
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002545 }
2546
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002547 void scheduleToastWindowsTimeoutIfNeededLocked(WindowState oldFocus, WindowState newFocus) {
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002548 if (oldFocus == null || (newFocus != null && newFocus.mOwnerUid == oldFocus.mOwnerUid)) {
2549 return;
2550 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002551
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002552 // Used to communicate the old focus to the callback method.
2553 mTmpWindow = oldFocus;
2554
2555 forAllWindows(mScheduleToastTimeout, false /* traverseTopToBottom */);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002556 }
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002557
2558 WindowState findFocusedWindow() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002559 mTmpWindow = null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002560
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002561 forAllWindows(mFindFocusedWindow, true /* traverseTopToBottom */);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002562
2563 if (mTmpWindow == null) {
2564 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: No focusable windows.");
2565 return null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002566 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002567 return mTmpWindow;
Wale Ogunwaleec731152016-09-08 20:18:57 -07002568 }
2569
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002570 /** Updates the layer assignment of windows on this display. */
2571 void assignWindowLayers(boolean setLayoutNeeded) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002572 Trace.traceBegin(Trace.TRACE_TAG_WINDOW_MANAGER, "assignWindowLayers");
Robert Carrf59b8dd2017-10-02 18:58:36 -07002573 assignChildLayers(getPendingTransaction());
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002574 if (setLayoutNeeded) {
2575 setLayoutNeeded();
2576 }
Robert Carrb1579c82017-09-05 14:54:47 -07002577
Robert Carrf59b8dd2017-10-02 18:58:36 -07002578 // We accumlate the layer changes in-to "getPendingTransaction()" but we defer
Robert Carrb1579c82017-09-05 14:54:47 -07002579 // the application of this transaction until the animation pass triggers
2580 // prepareSurfaces. This allows us to synchronize Z-ordering changes with
2581 // the hiding and showing of surfaces.
2582 scheduleAnimation();
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002583 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002584 }
2585
Wale Ogunwale1666e312016-12-16 11:27:18 -08002586 // TODO: This should probably be called any time a visual change is made to the hierarchy like
2587 // moving containers or resizing them. Need to investigate the best way to have it automatically
2588 // happen so we don't run into issues with programmers forgetting to do it.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002589 void layoutAndAssignWindowLayersIfNeeded() {
2590 mService.mWindowsChanged = true;
2591 setLayoutNeeded();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002592
2593 if (!mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
2594 false /*updateInputWindows*/)) {
2595 assignWindowLayers(false /* setLayoutNeeded */);
2596 }
2597
Arthur Hung95b38a92018-07-20 18:56:12 +08002598 mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002599 mService.mWindowPlacerLocked.performSurfacePlacement();
Arthur Hung95b38a92018-07-20 18:56:12 +08002600 mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002601 }
2602
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002603 /** Returns true if a leaked surface was destroyed */
2604 boolean destroyLeakedSurfaces() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002605 // Used to indicate that a surface was leaked.
2606 mTmpWindow = null;
2607 forAllWindows(w -> {
2608 final WindowStateAnimator wsa = w.mWinAnimator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002609 if (wsa.mSurfaceController == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002610 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002611 }
2612 if (!mService.mSessions.contains(wsa.mSession)) {
2613 Slog.w(TAG_WM, "LEAKED SURFACE (session doesn't exist): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002614 + w + " surface=" + wsa.mSurfaceController
2615 + " token=" + w.mToken
2616 + " pid=" + w.mSession.mPid
2617 + " uid=" + w.mSession.mUid);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002618 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002619 mService.mForceRemoves.add(w);
2620 mTmpWindow = w;
Wale Ogunwale89973222017-04-23 18:39:45 -07002621 } else if (w.mAppToken != null && w.mAppToken.isClientHidden()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002622 Slog.w(TAG_WM, "LEAKED SURFACE (app token hidden): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002623 + w + " surface=" + wsa.mSurfaceController
Jorim Jaggie7d2b852017-08-28 17:55:15 +02002624 + " token=" + w.mAppToken);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002625 if (SHOW_TRANSACTIONS) logSurface(w, "LEAK DESTROY", false);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002626 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002627 mTmpWindow = w;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002628 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002629 }, false /* traverseTopToBottom */);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002630
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002631 return mTmpWindow != null;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002632 }
2633
2634 /**
lumark90120a82018-08-15 00:33:03 +08002635 * Set input method window for the display.
2636 * @param win Set when window added or Null when destroyed.
2637 */
2638 void setInputMethodWindowLocked(WindowState win) {
2639 mInputMethodWindow = win;
2640 computeImeTarget(true /* updateImeTarget */);
2641 }
2642
2643 /**
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002644 * Determine and return the window that should be the IME target.
2645 * @param updateImeTarget If true the system IME target will be updated to match what we found.
2646 * @return The window that should be used as the IME target or null if there isn't any.
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002647 */
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002648 WindowState computeImeTarget(boolean updateImeTarget) {
lumark90120a82018-08-15 00:33:03 +08002649 if (mInputMethodWindow == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002650 // There isn't an IME so there shouldn't be a target...That was easy!
2651 if (updateImeTarget) {
2652 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from "
2653 + mService.mInputMethodTarget + " to null since mInputMethodWindow is null");
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002654 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002655 }
2656 return null;
2657 }
2658
Chavi Weingarten3a748552018-05-14 17:32:42 +00002659 final WindowState curTarget = mService.mInputMethodTarget;
2660 if (!canUpdateImeTarget()) {
2661 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Defer updating IME target");
2662 return curTarget;
2663 }
2664
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002665 // TODO(multidisplay): Needs some serious rethought when the target and IME are not on the
2666 // same display. Or even when the current IME/target are not on the same screen as the next
2667 // IME/target. For now only look for input windows on the main screen.
Wale Ogunwale8e44f6c2017-03-09 15:25:10 -08002668 mUpdateImeTarget = updateImeTarget;
2669 WindowState target = getWindow(mComputeImeTargetPredicate);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002670
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002671
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002672 // Yet more tricksyness! If this window is a "starting" window, we do actually want
2673 // to be on top of it, but it is not -really- where input will go. So look down below
2674 // for a real window to target...
2675 if (target != null && target.mAttrs.type == TYPE_APPLICATION_STARTING) {
2676 final AppWindowToken token = target.mAppToken;
2677 if (token != null) {
2678 final WindowState betterTarget = token.getImeTargetBelowWindow(target);
2679 if (betterTarget != null) {
2680 target = betterTarget;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002681 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002682 }
2683 }
2684
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002685 if (DEBUG_INPUT_METHOD && updateImeTarget) Slog.v(TAG_WM,
2686 "Proposed new IME target: " + target);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002687
chaviw1c13ad32018-06-12 16:44:23 -07002688 // Now, a special case -- if the last target's window is in the process of exiting, but
2689 // not removed, and the new target is home, keep on the last target to avoid flicker.
2690 // Home is a special case since its above other stacks in the ordering list, but layed
2691 // out below the others.
2692 if (curTarget != null && !curTarget.mRemoved && curTarget.isDisplayedLw()
2693 && curTarget.isClosing() && (target == null || target.isActivityTypeHome())) {
chaviw4ad54912018-05-30 11:05:44 -07002694 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "New target is home while current target is "
Chavi Weingarten3a748552018-05-14 17:32:42 +00002695 + "closing, not changing");
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002696 return curTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002697 }
2698
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002699 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Desired input method target=" + target
2700 + " updateImeTarget=" + updateImeTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002701
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002702 if (target == null) {
2703 if (updateImeTarget) {
2704 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget
2705 + " to null." + (SHOW_STACK_CRAWLS ? " Callers="
2706 + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002707 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002708 }
2709
2710 return null;
2711 }
2712
2713 if (updateImeTarget) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002714 AppWindowToken token = curTarget == null ? null : curTarget.mAppToken;
2715 if (token != null) {
2716
2717 // Now some fun for dealing with window animations that modify the Z order. We need
2718 // to look at all windows below the current target that are in this app, finding the
2719 // highest visible one in layering.
2720 WindowState highestTarget = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002721 if (token.isSelfAnimating()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002722 highestTarget = token.getHighestAnimLayerWindow(curTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002723 }
2724
2725 if (highestTarget != null) {
2726 final AppTransition appTransition = mService.mAppTransition;
2727 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, appTransition + " " + highestTarget
Jorim Jaggi35d328a2018-08-14 17:00:20 +02002728 + " animating=" + highestTarget.isAnimating());
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002729
2730 if (appTransition.isTransitionSet()) {
2731 // If we are currently setting up for an animation, hold everything until we
2732 // can find out what will happen.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002733 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002734 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002735 }
2736 }
2737 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002738
2739 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget + " to "
2740 + target + (SHOW_STACK_CRAWLS ? " Callers=" + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002741 setInputMethodTarget(target, false);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002742 }
2743
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002744 return target;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002745 }
2746
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002747 private void setInputMethodTarget(WindowState target, boolean targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002748 if (target == mService.mInputMethodTarget
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002749 && mService.mInputMethodTargetWaitingAnim == targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002750 return;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002751 }
2752
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002753 mService.mInputMethodTarget = target;
2754 mService.mInputMethodTargetWaitingAnim = targetWaitingAnim;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002755 assignWindowLayers(false /* setLayoutNeeded */);
2756 }
2757
2758 boolean getNeedsMenu(WindowState top, WindowManagerPolicy.WindowState bottom) {
2759 if (top.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2760 return top.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
2761 }
2762
2763 // Used to indicate we have reached the first window in the range we are interested in.
2764 mTmpWindow = null;
2765
2766 // TODO: Figure-out a more efficient way to do this.
2767 final WindowState candidate = getWindow(w -> {
2768 if (w == top) {
2769 // Reached the first window in the range we are interested in.
2770 mTmpWindow = w;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002771 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002772 if (mTmpWindow == null) {
2773 return false;
2774 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002775
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002776 if (w.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2777 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002778 }
2779 // If we reached the bottom of the range of windows we are considering,
2780 // assume no menu is needed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002781 if (w == bottom) {
2782 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002783 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002784 return false;
2785 });
2786
2787 return candidate != null && candidate.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002788 }
2789
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002790 void setLayoutNeeded() {
2791 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "setLayoutNeeded: callers=" + Debug.getCallers(3));
2792 mLayoutNeeded = true;
2793 }
2794
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002795 private void clearLayoutNeeded() {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002796 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "clearLayoutNeeded: callers=" + Debug.getCallers(3));
2797 mLayoutNeeded = false;
2798 }
2799
2800 boolean isLayoutNeeded() {
2801 return mLayoutNeeded;
2802 }
2803
Wale Ogunwale02319a62016-09-26 15:21:22 -07002804 void dumpTokens(PrintWriter pw, boolean dumpAll) {
2805 if (mTokenMap.isEmpty()) {
2806 return;
2807 }
2808 pw.println(" Display #" + mDisplayId);
2809 final Iterator<WindowToken> it = mTokenMap.values().iterator();
2810 while (it.hasNext()) {
2811 final WindowToken token = it.next();
2812 pw.print(" ");
2813 pw.print(token);
2814 if (dumpAll) {
2815 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002816 token.dump(pw, " ", dumpAll);
Wale Ogunwale02319a62016-09-26 15:21:22 -07002817 } else {
2818 pw.println();
2819 }
2820 }
2821 }
2822
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002823 void dumpWindowAnimators(PrintWriter pw, String subPrefix) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002824 final int[] index = new int[1];
2825 forAllWindows(w -> {
2826 final WindowStateAnimator wAnim = w.mWinAnimator;
2827 pw.println(subPrefix + "Window #" + index[0] + ": " + wAnim);
2828 index[0] = index[0] + 1;
2829 }, false /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002830 }
2831
Jorim Jaggife762342016-10-13 14:33:27 +02002832 /**
2833 * Starts the Keyguard exit animation on all windows that don't belong to an app token.
2834 */
2835 void startKeyguardExitOnNonAppWindows(boolean onWallpaper, boolean goingToShade) {
2836 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002837 forAllWindows(w -> {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02002838 if (w.mAppToken == null && policy.canBeHiddenByKeyguardLw(w)
2839 && w.wouldBeVisibleIfPolicyIgnored() && !w.isVisible()) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01002840 w.startAnimation(policy.createHiddenByKeyguardExit(onWallpaper, goingToShade));
Jorim Jaggife762342016-10-13 14:33:27 +02002841 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002842 }, true /* traverseTopToBottom */);
Jorim Jaggife762342016-10-13 14:33:27 +02002843 }
2844
Wale Ogunwale494009b82016-10-21 09:01:38 -07002845 boolean checkWaitingForWindows() {
2846
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002847 mHaveBootMsg = false;
2848 mHaveApp = false;
2849 mHaveWallpaper = false;
2850 mHaveKeyguard = true;
2851
2852 final WindowState visibleWindow = getWindow(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002853 if (w.isVisibleLw() && !w.mObscured && !w.isDrawnLw()) {
2854 return true;
2855 }
2856 if (w.isDrawnLw()) {
2857 if (w.mAttrs.type == TYPE_BOOT_PROGRESS) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002858 mHaveBootMsg = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002859 } else if (w.mAttrs.type == TYPE_APPLICATION
2860 || w.mAttrs.type == TYPE_DRAWN_APPLICATION) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002861 mHaveApp = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002862 } else if (w.mAttrs.type == TYPE_WALLPAPER) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002863 mHaveWallpaper = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002864 } else if (w.mAttrs.type == TYPE_STATUS_BAR) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002865 mHaveKeyguard = mService.mPolicy.isKeyguardDrawnLw();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002866 }
2867 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002868 return false;
2869 });
2870
2871 if (visibleWindow != null) {
2872 // We have a visible window.
2873 return true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002874 }
2875
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002876 // if the wallpaper service is disabled on the device, we're never going to have
2877 // wallpaper, don't bother waiting for it
2878 boolean wallpaperEnabled = mService.mContext.getResources().getBoolean(
2879 com.android.internal.R.bool.config_enableWallpaperService)
Daichi Hironoc1432222018-03-29 13:06:07 +09002880 && mService.mContext.getResources().getBoolean(
2881 com.android.internal.R.bool.config_checkWallpaperAtBoot)
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002882 && !mService.mOnlyCore;
2883
Wale Ogunwale494009b82016-10-21 09:01:38 -07002884 if (DEBUG_SCREEN_ON || DEBUG_BOOT) Slog.i(TAG_WM,
2885 "******** booted=" + mService.mSystemBooted
2886 + " msg=" + mService.mShowingBootMessages
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002887 + " haveBoot=" + mHaveBootMsg + " haveApp=" + mHaveApp
2888 + " haveWall=" + mHaveWallpaper + " wallEnabled=" + wallpaperEnabled
2889 + " haveKeyguard=" + mHaveKeyguard);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002890
2891 // If we are turning on the screen to show the boot message, don't do it until the boot
2892 // message is actually displayed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002893 if (!mService.mSystemBooted && !mHaveBootMsg) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002894 return true;
2895 }
2896
2897 // If we are turning on the screen after the boot is completed normally, don't do so until
2898 // we have the application and wallpaper.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002899 if (mService.mSystemBooted
2900 && ((!mHaveApp && !mHaveKeyguard) || (wallpaperEnabled && !mHaveWallpaper))) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002901 return true;
2902 }
2903
2904 return false;
2905 }
2906
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002907 void updateWindowsForAnimator(WindowAnimator animator) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002908 mTmpWindowAnimator = animator;
2909 forAllWindows(mUpdateWindowsForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002910 }
2911
2912 void updateWallpaperForAnimator(WindowAnimator animator) {
Jorim Jaggi7156b652016-10-25 08:31:58 -07002913 resetAnimationBackgroundAnimator();
2914
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002915 // Used to indicate a detached wallpaper.
2916 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002917 mTmpWindowAnimator = animator;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002918
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002919 forAllWindows(mUpdateWallpaperForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002920
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002921 if (animator.mWindowDetachedWallpaper != mTmpWindow) {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002922 if (DEBUG_WALLPAPER) Slog.v(TAG, "Detached wallpaper changed from "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002923 + animator.mWindowDetachedWallpaper + " to " + mTmpWindow);
2924 animator.mWindowDetachedWallpaper = mTmpWindow;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002925 animator.mBulkUpdateParams |= SET_WALLPAPER_MAY_CHANGE;
2926 }
2927 }
2928
Yohei Yukawa41f89c32018-09-19 14:30:04 -07002929 boolean isInputMethodClientFocus(int uid, int pid) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002930 final WindowState imFocus = computeImeTarget(false /* updateImeTarget */);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002931 if (imFocus == null) {
2932 return false;
2933 }
2934
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002935 if (DEBUG_INPUT_METHOD) {
2936 Slog.i(TAG_WM, "Desired input method target: " + imFocus);
2937 Slog.i(TAG_WM, "Current focus: " + mService.mCurrentFocus);
2938 Slog.i(TAG_WM, "Last focus: " + mService.mLastFocus);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002939 }
2940
Wale Ogunwale494009b82016-10-21 09:01:38 -07002941 if (DEBUG_INPUT_METHOD) {
Yohei Yukawa41f89c32018-09-19 14:30:04 -07002942 Slog.i(TAG_WM, "IM target uid/pid: " + imFocus.mSession.mUid
2943 + "/" + imFocus.mSession.mPid);
2944 Slog.i(TAG_WM, "Requesting client uid/pid: " + uid + "/" + pid);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002945 }
2946
Yohei Yukawa41f89c32018-09-19 14:30:04 -07002947 return imFocus.mSession.mUid == uid && imFocus.mSession.mPid == pid;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002948 }
2949
2950 boolean hasSecureWindowOnScreen() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002951 final WindowState win = getWindow(
2952 w -> w.isOnScreen() && (w.mAttrs.flags & FLAG_SECURE) != 0);
2953 return win != null;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002954 }
2955
2956 void updateSystemUiVisibility(int visibility, int globalDiff) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002957 forAllWindows(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002958 try {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002959 final int curValue = w.mSystemUiVisibility;
2960 final int diff = (curValue ^ visibility) & globalDiff;
2961 final int newValue = (curValue & ~diff) | (visibility & diff);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002962 if (newValue != curValue) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002963 w.mSeq++;
2964 w.mSystemUiVisibility = newValue;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002965 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002966 if (newValue != curValue || w.mAttrs.hasSystemUiListeners) {
2967 w.mClient.dispatchSystemUiVisibilityChanged(w.mSeq,
Wale Ogunwale494009b82016-10-21 09:01:38 -07002968 visibility, newValue, diff);
2969 }
2970 } catch (RemoteException e) {
2971 // so sorry
2972 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002973 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002974 }
2975
2976 void onWindowFreezeTimeout() {
2977 Slog.w(TAG_WM, "Window freeze timeout expired.");
2978 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_TIMEOUT;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002979
2980 forAllWindows(w -> {
Bryce Lee8c3cf382017-07-06 19:47:10 -07002981 if (!w.getOrientationChanging()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002982 return;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002983 }
Robert Carr9c1c3a02017-08-08 12:59:01 -07002984 w.orientationChangeTimedOut();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002985 w.mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
2986 - mService.mDisplayFreezeTime);
2987 Slog.w(TAG_WM, "Force clearing orientation change: " + w);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002988 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002989 mService.mWindowPlacerLocked.performSurfacePlacement();
2990 }
2991
2992 void waitForAllWindowsDrawn() {
2993 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002994 forAllWindows(w -> {
2995 final boolean keyguard = policy.isKeyguardHostWindow(w.mAttrs);
2996 if (w.isVisibleLw() && (w.mAppToken != null || keyguard)) {
2997 w.mWinAnimator.mDrawState = DRAW_PENDING;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002998 // Force add to mResizingWindows.
chaviw9c81e632018-07-31 11:17:52 -07002999 w.resetLastContentInsets();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003000 mService.mWaitingForDrawn.add(w);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003001 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003002 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003003 }
3004
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003005 // TODO: Super crazy long method that should be broken down...
3006 boolean applySurfaceChangesTransaction(boolean recoveringMemory) {
3007
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003008 final int dw = mDisplayInfo.logicalWidth;
3009 final int dh = mDisplayInfo.logicalHeight;
3010 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
3011
3012 mTmpUpdateAllDrawn.clear();
3013
3014 int repeats = 0;
3015 do {
3016 repeats++;
3017 if (repeats > 6) {
3018 Slog.w(TAG, "Animation repeat aborted after too many iterations");
3019 clearLayoutNeeded();
3020 break;
3021 }
3022
3023 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats("On entry to LockedInner",
3024 pendingLayoutChanges);
3025
Andrii Kulian839def92016-11-02 10:58:58 -07003026 // TODO(multi-display): For now adjusting wallpaper only on primary display to avoid
3027 // the wallpaper window jumping across displays.
3028 // Remove check for default display when there will be support for multiple wallpaper
3029 // targets (on different displays).
3030 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_WALLPAPER) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003031 mWallpaperController.adjustWallpaperWindows(this);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003032 }
3033
Riddle Hsu654a6f92018-07-13 22:59:36 +08003034 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_CONFIG) != 0) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003035 if (DEBUG_LAYOUT) Slog.v(TAG, "Computing new config from layout");
Robert Carrae606b42018-02-15 15:36:23 -08003036 if (mService.updateOrientationFromAppTokensLocked(mDisplayId)) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003037 setLayoutNeeded();
Andrii Kulianb17e8692016-11-01 10:37:22 -07003038 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, mDisplayId).sendToTarget();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003039 }
3040 }
3041
3042 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_LAYOUT) != 0) {
3043 setLayoutNeeded();
3044 }
3045
3046 // FIRST LOOP: Perform a layout, if needed.
3047 if (repeats < LAYOUT_REPEAT_THRESHOLD) {
3048 performLayout(repeats == 1, false /* updateInputWindows */);
3049 } else {
3050 Slog.w(TAG, "Layout repeat skipped after too many iterations");
3051 }
3052
3053 // FIRST AND ONE HALF LOOP: Make WindowManagerPolicy think it is animating.
3054 pendingLayoutChanges = 0;
3055
3056 if (isDefaultDisplay) {
3057 mService.mPolicy.beginPostLayoutPolicyLw(dw, dh);
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003058 forAllWindows(mApplyPostLayoutPolicy, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003059 pendingLayoutChanges |= mService.mPolicy.finishPostLayoutPolicyLw();
3060 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats(
3061 "after finishPostLayoutPolicyLw", pendingLayoutChanges);
3062 }
3063 } while (pendingLayoutChanges != 0);
3064
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003065 mTmpApplySurfaceChangesTransactionState.reset();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003066
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003067 mTmpRecoveringMemory = recoveringMemory;
3068 forAllWindows(mApplySurfaceChangesTransaction, true /* traverseTopToBottom */);
Jorim Jaggi6b0f8462018-01-05 17:23:47 +01003069 prepareSurfaces();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003070
Jorim Jaggif1292892018-09-10 11:58:13 +02003071 mLastHasContent = mTmpApplySurfaceChangesTransactionState.displayHasContent;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003072 mService.mDisplayManagerInternal.setDisplayProperties(mDisplayId,
Jorim Jaggif1292892018-09-10 11:58:13 +02003073 mLastHasContent,
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003074 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate,
3075 mTmpApplySurfaceChangesTransactionState.preferredModeId,
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003076 true /* inTraversal, must call performTraversalInTrans... below */);
3077
Lucas Dupin1ead7fc2017-05-24 14:14:44 -07003078 final boolean wallpaperVisible = mWallpaperController.isWallpaperVisible();
3079 if (wallpaperVisible != mLastWallpaperVisible) {
3080 mLastWallpaperVisible = wallpaperVisible;
3081 mService.mWallpaperVisibilityListeners.notifyWallpaperVisibilityChanged(this);
3082 }
3083
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003084 while (!mTmpUpdateAllDrawn.isEmpty()) {
3085 final AppWindowToken atoken = mTmpUpdateAllDrawn.removeLast();
3086 // See if any windows have been drawn, so they (and others associated with them)
3087 // can now be shown.
Matthew Ng498c71d2017-04-18 13:55:45 -07003088 atoken.updateAllDrawn();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003089 }
3090
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003091 return mTmpApplySurfaceChangesTransactionState.focusDisplayed;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003092 }
3093
Bryce Leef3c6a472017-11-14 14:53:06 -08003094 private void updateBounds() {
3095 calculateBounds(mTmpBounds);
3096 setBounds(mTmpBounds);
3097 }
3098
3099 // Determines the current display bounds based on the current state
3100 private void calculateBounds(Rect out) {
3101 // Uses same calculation as in LogicalDisplay#configureDisplayInTransactionLocked.
3102 final int orientation = mDisplayInfo.rotation;
3103 boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
3104 final int physWidth = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
3105 final int physHeight = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
3106 int width = mDisplayInfo.logicalWidth;
3107 int left = (physWidth - width) / 2;
3108 int height = mDisplayInfo.logicalHeight;
3109 int top = (physHeight - height) / 2;
3110 out.set(left, top, left + width, top + height);
3111 }
3112
3113 @Override
3114 public void getBounds(Rect out) {
3115 calculateBounds(out);
3116 }
3117
3118 private void getBounds(Rect out, int orientation) {
3119 getBounds(out);
3120
3121 // Rotate the Rect if needed.
3122 final int currentRotation = mDisplayInfo.rotation;
3123 final int rotationDelta = deltaRotation(currentRotation, orientation);
3124 if (rotationDelta == ROTATION_90 || rotationDelta == ROTATION_270) {
3125 createRotationMatrix(rotationDelta, mBaseDisplayWidth, mBaseDisplayHeight, mTmpMatrix);
3126 mTmpRectF.set(out);
3127 mTmpMatrix.mapRect(mTmpRectF);
3128 mTmpRectF.round(out);
3129 }
3130 }
3131
Louis Chang7501e332018-08-20 13:08:39 +08003132 int getSurfaceSize() {
3133 return mSurfaceSize;
3134 }
3135
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003136 void performLayout(boolean initial, boolean updateInputWindows) {
3137 if (!isLayoutNeeded()) {
3138 return;
3139 }
3140 clearLayoutNeeded();
3141
3142 final int dw = mDisplayInfo.logicalWidth;
3143 final int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003144 if (DEBUG_LAYOUT) {
3145 Slog.v(TAG, "-------------------------------------");
3146 Slog.v(TAG, "performLayout: needed=" + isLayoutNeeded() + " dw=" + dw + " dh=" + dh);
3147 }
3148
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01003149 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo,
3150 calculateDisplayCutoutForRotation(mDisplayInfo.rotation));
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00003151 // TODO: Not sure if we really need to set the rotation here since we are updating from the
3152 // display info above...
3153 mDisplayFrames.mRotation = mRotation;
3154 mService.mPolicy.beginLayoutLw(mDisplayFrames, getConfiguration().uiMode);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003155 if (isDefaultDisplay) {
3156 // Not needed on non-default displays.
3157 mService.mSystemDecorLayer = mService.mPolicy.getSystemDecorLayerLw();
3158 mService.mScreenRect.set(0, 0, dw, dh);
3159 }
3160
Adrian Roos5251b1d2018-03-23 18:57:43 +01003161 int seq = mLayoutSeq + 1;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003162 if (seq < 0) seq = 0;
Adrian Roos5251b1d2018-03-23 18:57:43 +01003163 mLayoutSeq = seq;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003164
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003165 // Used to indicate that we have processed the dream window and all additional windows are
3166 // behind it.
3167 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003168 mTmpInitial = initial;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003169
3170 // First perform layout of any root windows (not attached to another window).
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003171 forAllWindows(mPerformLayout, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003172
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003173 // Used to indicate that we have processed the dream window and all additional attached
3174 // windows are behind it.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003175 mTmpWindow2 = mTmpWindow;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003176 mTmpWindow = null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003177
3178 // Now perform layout of attached windows, which usually depend on the position of the
3179 // window they are attached to. XXX does not deal with windows that are attached to windows
3180 // that are themselves attached.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003181 forAllWindows(mPerformLayoutAttached, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003182
3183 // Window frames may have changed. Tell the input dispatcher about it.
Arthur Hung95b38a92018-07-20 18:56:12 +08003184 mInputMonitor.layoutInputConsumers(dw, dh);
3185 mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003186 if (updateInputWindows) {
Arthur Hung95b38a92018-07-20 18:56:12 +08003187 mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003188 }
3189
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003190 mService.mH.sendEmptyMessage(UPDATE_DOCKED_STACK_DIVIDER);
3191 }
3192
3193 /**
3194 * Takes a snapshot of the display. In landscape mode this grabs the whole screen.
3195 * In portrait mode, it grabs the full screenshot.
3196 *
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003197 * @param config of the output bitmap
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003198 */
chaviw0315a1a2018-03-05 15:28:35 -08003199 Bitmap screenshotDisplayLocked(Bitmap.Config config) {
3200 if (!mService.mPolicy.isScreenOn()) {
3201 if (DEBUG_SCREENSHOT) {
3202 Slog.i(TAG_WM, "Attempted to take screenshot while display was off.");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003203 }
chaviw0315a1a2018-03-05 15:28:35 -08003204 return null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003205 }
chaviwfbe47df2017-11-10 16:14:49 -08003206
chaviw0315a1a2018-03-05 15:28:35 -08003207 int dw = mDisplayInfo.logicalWidth;
3208 int dh = mDisplayInfo.logicalHeight;
chaviwfbe47df2017-11-10 16:14:49 -08003209
chaviw0315a1a2018-03-05 15:28:35 -08003210 if (dw <= 0 || dh <= 0) {
3211 return null;
3212 }
chaviwfbe47df2017-11-10 16:14:49 -08003213
chaviw0315a1a2018-03-05 15:28:35 -08003214 final Rect frame = new Rect(0, 0, dw, dh);
chaviwfbe47df2017-11-10 16:14:49 -08003215
chaviw0315a1a2018-03-05 15:28:35 -08003216 // The screenshot API does not apply the current screen rotation.
3217 int rot = mDisplay.getRotation();
chaviwfbe47df2017-11-10 16:14:49 -08003218
chaviw0315a1a2018-03-05 15:28:35 -08003219 if (rot == ROTATION_90 || rot == ROTATION_270) {
3220 rot = (rot == ROTATION_90) ? ROTATION_270 : ROTATION_90;
3221 }
chaviwfbe47df2017-11-10 16:14:49 -08003222
chaviw0315a1a2018-03-05 15:28:35 -08003223 // SurfaceFlinger is not aware of orientation, so convert our logical
3224 // crop to SurfaceFlinger's portrait orientation.
3225 convertCropForSurfaceFlinger(frame, rot, dw, dh);
3226
3227 final ScreenRotationAnimation screenRotationAnimation =
3228 mService.mAnimator.getScreenRotationAnimationLocked(DEFAULT_DISPLAY);
3229 final boolean inRotation = screenRotationAnimation != null &&
3230 screenRotationAnimation.isAnimating();
3231 if (DEBUG_SCREENSHOT && inRotation) Slog.v(TAG_WM, "Taking screenshot while rotating");
3232
3233 // TODO(b/68392460): We should screenshot Task controls directly
3234 // but it's difficult at the moment as the Task doesn't have the
3235 // correct size set.
chaviw08520a02018-09-10 16:44:56 -07003236 final Bitmap bitmap = SurfaceControl.screenshot(frame, dw, dh, inRotation, rot);
chaviw0315a1a2018-03-05 15:28:35 -08003237 if (bitmap == null) {
3238 Slog.w(TAG_WM, "Failed to take screenshot");
3239 return null;
3240 }
3241
3242 // Create a copy of the screenshot that is immutable and backed in ashmem.
3243 // This greatly reduces the overhead of passing the bitmap between processes.
3244 final Bitmap ret = bitmap.createAshmemBitmap(config);
3245 bitmap.recycle();
3246 return ret;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003247 }
3248
3249 // TODO: Can this use createRotationMatrix()?
3250 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) {
3251 if (rot == Surface.ROTATION_90) {
3252 final int tmp = crop.top;
3253 crop.top = dw - crop.right;
3254 crop.right = crop.bottom;
3255 crop.bottom = dw - crop.left;
3256 crop.left = tmp;
3257 } else if (rot == Surface.ROTATION_180) {
3258 int tmp = crop.top;
3259 crop.top = dh - crop.bottom;
3260 crop.bottom = dh - tmp;
3261 tmp = crop.right;
3262 crop.right = dw - crop.left;
3263 crop.left = dw - tmp;
3264 } else if (rot == Surface.ROTATION_270) {
3265 final int tmp = crop.top;
3266 crop.top = crop.left;
3267 crop.left = dh - crop.bottom;
3268 crop.bottom = crop.right;
3269 crop.right = dh - tmp;
3270 }
3271 }
3272
3273 void onSeamlessRotationTimeout() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003274 // Used to indicate the layout is needed.
3275 mTmpWindow = null;
3276
3277 forAllWindows(w -> {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003278 if (!w.mSeamlesslyRotated) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003279 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003280 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003281 mTmpWindow = w;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003282 w.setDisplayLayoutNeeded();
3283 mService.markForSeamlessRotation(w, false);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003284 }, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003285
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003286 if (mTmpWindow != null) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003287 mService.mWindowPlacerLocked.performSurfacePlacement();
3288 }
3289 }
3290
Wale Ogunwale1666e312016-12-16 11:27:18 -08003291 void setExitingTokensHasVisible(boolean hasVisible) {
3292 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3293 mExitingTokens.get(i).hasVisible = hasVisible;
3294 }
3295
3296 // Initialize state of exiting applications.
3297 mTaskStackContainers.setExitingTokensHasVisible(hasVisible);
3298 }
3299
3300 void removeExistingTokensIfPossible() {
3301 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3302 final WindowToken token = mExitingTokens.get(i);
3303 if (!token.hasVisible) {
3304 mExitingTokens.remove(i);
3305 }
3306 }
3307
3308 // Time to remove any exiting applications?
3309 mTaskStackContainers.removeExistingAppTokensIfPossible();
3310 }
3311
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003312 @Override
3313 void onDescendantOverrideConfigurationChanged() {
3314 setLayoutNeeded();
3315 mService.requestTraversal();
3316 }
3317
David Stevens9440dc82017-03-16 19:00:20 -07003318 boolean okToDisplay() {
3319 if (mDisplayId == DEFAULT_DISPLAY) {
3320 return !mService.mDisplayFrozen
3321 && mService.mDisplayEnabled && mService.mPolicy.isScreenOn();
3322 }
3323 return mDisplayInfo.state == Display.STATE_ON;
3324 }
3325
3326 boolean okToAnimate() {
3327 return okToDisplay() &&
3328 (mDisplayId != DEFAULT_DISPLAY || mService.mPolicy.okToAnimate());
3329 }
3330
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07003331 static final class TaskForResizePointSearchResult {
3332 boolean searchDone;
3333 Task taskForResize;
3334
3335 void reset() {
3336 searchDone = false;
3337 taskForResize = null;
3338 }
3339 }
Robert Carr3b716242016-08-16 16:02:21 -07003340
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003341 private static final class ApplySurfaceChangesTransactionState {
3342 boolean displayHasContent;
3343 boolean obscured;
3344 boolean syswin;
3345 boolean focusDisplayed;
3346 float preferredRefreshRate;
3347 int preferredModeId;
3348
3349 void reset() {
3350 displayHasContent = false;
3351 obscured = false;
3352 syswin = false;
3353 focusDisplayed = false;
3354 preferredRefreshRate = 0;
3355 preferredModeId = 0;
3356 }
3357 }
3358
3359 private static final class ScreenshotApplicationState {
3360 WindowState appWin;
3361 int maxLayer;
3362 int minLayer;
3363 boolean screenshotReady;
3364
3365 void reset(boolean screenshotReady) {
3366 appWin = null;
3367 maxLayer = 0;
3368 minLayer = 0;
3369 this.screenshotReady = screenshotReady;
3370 minLayer = (screenshotReady) ? 0 : Integer.MAX_VALUE;
3371 }
3372 }
3373
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003374 /**
3375 * Base class for any direct child window container of {@link #DisplayContent} need to inherit
3376 * from. This is mainly a pass through class that allows {@link #DisplayContent} to have
3377 * homogeneous children type which is currently required by sub-classes of
3378 * {@link WindowContainer} class.
3379 */
3380 static class DisplayChildWindowContainer<E extends WindowContainer> extends WindowContainer<E> {
3381
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003382 DisplayChildWindowContainer(WindowManagerService service) {
3383 super(service);
3384 }
3385
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003386 @Override
3387 boolean fillsParent() {
3388 return true;
3389 }
3390
3391 @Override
3392 boolean isVisible() {
3393 return true;
Robert Carr3b716242016-08-16 16:02:21 -07003394 }
3395 }
3396
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003397 /**
3398 * Window container class that contains all containers on this display relating to Apps.
3399 * I.e Activities.
3400 */
Wale Ogunwale3a931692016-11-02 16:49:48 -07003401 private final class TaskStackContainers extends DisplayChildWindowContainer<TaskStack> {
Robert Carrb1579c82017-09-05 14:54:47 -07003402 /**
3403 * A control placed at the appropriate level for transitions to occur.
3404 */
chaviw23ee71c2017-12-18 11:29:41 -08003405 SurfaceControl mAppAnimationLayer = null;
Jorim Jaggibe418292018-03-26 16:14:12 +02003406 SurfaceControl mBoostedAppAnimationLayer = null;
Jorim Jaggi391790622018-04-18 15:30:44 +02003407 SurfaceControl mHomeAppAnimationLayer = null;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003408
Robert Carrf7a7ca82017-12-06 13:17:07 -08003409 /**
3410 * Given that the split-screen divider does not have an AppWindowToken, it
3411 * will have to live inside of a "NonAppWindowContainer", in particular
3412 * {@link DisplayContent#mAboveAppWindowsContainers}. However, in visual Z order
3413 * it will need to be interleaved with some of our children, appearing on top of
3414 * both docked stacks but underneath any assistant stacks.
3415 *
3416 * To solve this problem we have this anchor control, which will always exist so
3417 * we can always assign it the correct value in our {@link #assignChildLayers}.
3418 * Likewise since it always exists, {@link AboveAppWindowContainers} can always
3419 * assign the divider a layer relative to it. This way we prevent linking lifecycle
3420 * events between the two containers.
3421 */
3422 SurfaceControl mSplitScreenDividerAnchor = null;
3423
Wale Ogunwale61911492017-10-11 08:50:50 -07003424 // Cached reference to some special stacks we tend to get a lot so we don't need to loop
3425 // through the list to find them.
3426 private TaskStack mHomeStack = null;
3427 private TaskStack mPinnedStack = null;
3428 private TaskStack mSplitScreenPrimaryStack = null;
3429
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003430 TaskStackContainers(WindowManagerService service) {
3431 super(service);
3432 }
3433
Wale Ogunwale61911492017-10-11 08:50:50 -07003434 /**
3435 * Returns the topmost stack on the display that is compatible with the input windowing mode
3436 * and activity type. Null is no compatible stack on the display.
3437 */
3438 TaskStack getStack(int windowingMode, int activityType) {
3439 if (activityType == ACTIVITY_TYPE_HOME) {
3440 return mHomeStack;
3441 }
3442 if (windowingMode == WINDOWING_MODE_PINNED) {
3443 return mPinnedStack;
3444 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3445 return mSplitScreenPrimaryStack;
3446 }
3447 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
3448 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003449 if (activityType == ACTIVITY_TYPE_UNDEFINED
3450 && windowingMode == stack.getWindowingMode()) {
3451 // Passing in undefined type means we want to match the topmost stack with the
3452 // windowing mode.
3453 return stack;
3454 }
Wale Ogunwale61911492017-10-11 08:50:50 -07003455 if (stack.isCompatible(windowingMode, activityType)) {
3456 return stack;
3457 }
3458 }
3459 return null;
3460 }
3461
3462 @VisibleForTesting
3463 TaskStack getTopStack() {
3464 return mTaskStackContainers.getChildCount() > 0
3465 ? mTaskStackContainers.getChildAt(mTaskStackContainers.getChildCount() - 1) : null;
3466 }
3467
3468 TaskStack getHomeStack() {
3469 if (mHomeStack == null && mDisplayId == DEFAULT_DISPLAY) {
3470 Slog.e(TAG_WM, "getHomeStack: Returning null from this=" + this);
3471 }
3472 return mHomeStack;
3473 }
3474
3475 TaskStack getPinnedStack() {
3476 return mPinnedStack;
3477 }
3478
Matthew Ng64e77cf2017-10-31 14:01:31 -07003479 TaskStack getSplitScreenPrimaryStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07003480 return mSplitScreenPrimaryStack;
3481 }
3482
Winson Chunge2d72172018-01-25 17:46:20 +00003483 ArrayList<Task> getVisibleTasks() {
3484 final ArrayList<Task> visibleTasks = new ArrayList<>();
3485 forAllTasks(task -> {
3486 if (task.isVisible()) {
3487 visibleTasks.add(task);
3488 }
3489 });
3490 return visibleTasks;
3491 }
3492
Andrii Kulian839def92016-11-02 10:58:58 -07003493 /**
3494 * Adds the stack to this container.
Wale Ogunwale61911492017-10-11 08:50:50 -07003495 * @see DisplayContent#createStack(int, boolean, StackWindowController)
Andrii Kulian839def92016-11-02 10:58:58 -07003496 */
3497 void addStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale61911492017-10-11 08:50:50 -07003498 addStackReferenceIfNeeded(stack);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003499 addChild(stack, onTop);
3500 stack.onDisplayChanged(DisplayContent.this);
Robert Carr3b716242016-08-16 16:02:21 -07003501 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003502
Wale Ogunwale61911492017-10-11 08:50:50 -07003503 void onStackWindowingModeChanged(TaskStack stack) {
3504 removeStackReferenceIfNeeded(stack);
3505 addStackReferenceIfNeeded(stack);
3506 if (stack == mPinnedStack && getTopStack() != stack) {
3507 // Looks like this stack changed windowing mode to pinned. Move it to the top.
3508 positionChildAt(POSITION_TOP, stack, false /* includingParents */);
3509 }
3510 }
3511
3512 private void addStackReferenceIfNeeded(TaskStack stack) {
3513 if (stack.isActivityTypeHome()) {
3514 if (mHomeStack != null) {
Louis Chang7d0037c2018-08-13 12:42:06 +08003515 throw new IllegalArgumentException("addStackReferenceIfNeeded: home stack="
Wale Ogunwale61911492017-10-11 08:50:50 -07003516 + mHomeStack + " already exist on display=" + this + " stack=" + stack);
Louis Chang7d0037c2018-08-13 12:42:06 +08003517
Wale Ogunwale61911492017-10-11 08:50:50 -07003518 }
Louis Chang7d0037c2018-08-13 12:42:06 +08003519 mHomeStack = stack;
Wale Ogunwale61911492017-10-11 08:50:50 -07003520 }
3521 final int windowingMode = stack.getWindowingMode();
3522 if (windowingMode == WINDOWING_MODE_PINNED) {
3523 if (mPinnedStack != null) {
3524 throw new IllegalArgumentException("addStackReferenceIfNeeded: pinned stack="
3525 + mPinnedStack + " already exist on display=" + this
3526 + " stack=" + stack);
3527 }
3528 mPinnedStack = stack;
3529 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3530 if (mSplitScreenPrimaryStack != null) {
3531 throw new IllegalArgumentException("addStackReferenceIfNeeded:"
3532 + " split-screen-primary" + " stack=" + mSplitScreenPrimaryStack
3533 + " already exist on display=" + this + " stack=" + stack);
3534 }
3535 mSplitScreenPrimaryStack = stack;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003536 mDividerControllerLocked.notifyDockedStackExistsChanged(true);
Wale Ogunwale61911492017-10-11 08:50:50 -07003537 }
3538 }
3539
3540 private void removeStackReferenceIfNeeded(TaskStack stack) {
3541 if (stack == mHomeStack) {
3542 mHomeStack = null;
3543 } else if (stack == mPinnedStack) {
3544 mPinnedStack = null;
3545 } else if (stack == mSplitScreenPrimaryStack) {
3546 mSplitScreenPrimaryStack = null;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003547 // Re-set the split-screen create mode whenever the split-screen stack is removed.
3548 mService.setDockedStackCreateStateLocked(
3549 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
3550 mDividerControllerLocked.notifyDockedStackExistsChanged(false);
Wale Ogunwale61911492017-10-11 08:50:50 -07003551 }
Andrii Kulian839def92016-11-02 10:58:58 -07003552 }
3553
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003554 private void addChild(TaskStack stack, boolean toTop) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003555 final int addIndex = findPositionForStack(toTop ? mChildren.size() : 0, stack,
3556 true /* adding */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003557 addChild(stack, addIndex);
3558 setLayoutNeeded();
3559 }
3560
Wale Ogunwale61911492017-10-11 08:50:50 -07003561 @Override
3562 protected void removeChild(TaskStack stack) {
3563 super.removeChild(stack);
3564 removeStackReferenceIfNeeded(stack);
3565 }
Bryce Lee00d586d2017-07-28 20:48:43 -07003566
3567 @Override
3568 boolean isOnTop() {
3569 // Considered always on top
3570 return true;
3571 }
3572
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003573 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -08003574 void positionChildAt(int position, TaskStack child, boolean includingParents) {
Wale Ogunwale3382ab12017-07-27 08:55:03 -07003575 if (child.getWindowConfiguration().isAlwaysOnTop()
3576 && position != POSITION_TOP) {
Andrii Kuliand2765632016-12-12 22:26:34 -08003577 // This stack is always-on-top, override the default behavior.
3578 Slog.w(TAG_WM, "Ignoring move of always-on-top stack=" + this + " to bottom");
3579
3580 // Moving to its current position, as we must call super but we don't want to
3581 // perform any meaningful action.
3582 final int currentPosition = mChildren.indexOf(child);
3583 super.positionChildAt(currentPosition, child, false /* includingParents */);
3584 return;
3585 }
3586
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003587 final int targetPosition = findPositionForStack(position, child, false /* adding */);
3588 super.positionChildAt(targetPosition, child, includingParents);
3589
Riddle Hsu2f6e1742018-08-23 22:44:36 +08003590 if (includingParents) {
3591 // We still want to move the display of this stack container to top because even the
3592 // target position is adjusted to non-top, the intention of the condition is to have
3593 // higher z-order to gain focus (e.g. moving a task of a fullscreen stack to front
3594 // in a non-top display which is using picture-in-picture mode).
3595 final int topChildPosition = getChildCount() - 1;
3596 if (targetPosition < topChildPosition && position >= topChildPosition) {
3597 getParent().positionChildAt(POSITION_TOP, this /* child */,
3598 true /* includingParents */);
3599 }
3600 }
3601
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003602 setLayoutNeeded();
3603 }
3604
3605 /**
3606 * When stack is added or repositioned, find a proper position for it.
3607 * This will make sure that pinned stack always stays on top.
3608 * @param requestedPosition Position requested by caller.
3609 * @param stack Stack to be added or positioned.
3610 * @param adding Flag indicates whether we're adding a new stack or positioning an existing.
3611 * @return The proper position for the stack.
3612 */
3613 private int findPositionForStack(int requestedPosition, TaskStack stack, boolean adding) {
Kazuki Takise148d00a2018-05-31 15:32:19 +09003614 if (stack.inPinnedWindowingMode()) {
Kazuki Takisef85197b2018-06-18 18:18:36 +09003615 return POSITION_TOP;
Kazuki Takise148d00a2018-05-31 15:32:19 +09003616 }
3617
Kazuki Takisef85197b2018-06-18 18:18:36 +09003618 final int topChildPosition = mChildren.size() - 1;
3619 int belowAlwaysOnTopPosition = POSITION_BOTTOM;
3620 for (int i = topChildPosition; i >= 0; --i) {
3621 if (getStacks().get(i) != stack && !getStacks().get(i).isAlwaysOnTop()) {
3622 belowAlwaysOnTopPosition = i;
3623 break;
3624 }
3625 }
3626
3627 // The max possible position we can insert the stack at.
3628 int maxPosition = POSITION_TOP;
3629 // The min possible position we can insert the stack at.
3630 int minPosition = POSITION_BOTTOM;
3631
3632 if (stack.isAlwaysOnTop()) {
3633 if (hasPinnedStack()) {
3634 // Always-on-top stacks go below the pinned stack.
3635 maxPosition = getStacks().indexOf(mPinnedStack) - 1;
3636 }
3637 // Always-on-top stacks need to be above all other stacks.
3638 minPosition = belowAlwaysOnTopPosition !=
3639 POSITION_BOTTOM ? belowAlwaysOnTopPosition : topChildPosition;
3640 } else {
3641 // Other stacks need to be below the always-on-top stacks.
3642 maxPosition = belowAlwaysOnTopPosition !=
Arthur Hung928d8dc2018-07-18 15:38:05 +08003643 POSITION_BOTTOM ? belowAlwaysOnTopPosition : 0;
Kazuki Takisef85197b2018-06-18 18:18:36 +09003644 }
3645
3646 int targetPosition = requestedPosition;
3647 targetPosition = Math.min(targetPosition, maxPosition);
3648 targetPosition = Math.max(targetPosition, minPosition);
3649
3650 int prevPosition = getStacks().indexOf(stack);
3651 // The positions we calculated above (maxPosition, minPosition) do not take into
3652 // consideration the following edge cases.
3653 // 1) We need to adjust the position depending on the value "adding".
3654 // 2) When we are moving a stack to another position, we also need to adjust the
3655 // position depending on whether the stack is moving to a higher or lower position.
3656 if ((targetPosition != requestedPosition) &&
3657 (adding || targetPosition < prevPosition)) {
Kazuki Takise148d00a2018-05-31 15:32:19 +09003658 targetPosition++;
3659 }
3660
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003661 return targetPosition;
Andrii Kuliand2765632016-12-12 22:26:34 -08003662 }
3663
3664 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003665 boolean forAllWindows(ToBooleanFunction<WindowState> callback,
3666 boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003667 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003668 if (super.forAllWindows(callback, traverseTopToBottom)) {
3669 return true;
3670 }
3671 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3672 return true;
3673 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003674 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003675 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3676 return true;
3677 }
3678 if (super.forAllWindows(callback, traverseTopToBottom)) {
3679 return true;
3680 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003681 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003682 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003683 }
3684
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003685 private boolean forAllExitingAppTokenWindows(ToBooleanFunction<WindowState> callback,
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003686 boolean traverseTopToBottom) {
3687 // For legacy reasons we process the TaskStack.mExitingAppTokens first here before the
3688 // app tokens.
3689 // TODO: Investigate if we need to continue to do this or if we can just process them
3690 // in-order.
3691 if (traverseTopToBottom) {
3692 for (int i = mChildren.size() - 1; i >= 0; --i) {
3693 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3694 for (int j = appTokens.size() - 1; j >= 0; --j) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003695 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3696 traverseTopToBottom)) {
3697 return true;
3698 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003699 }
3700 }
3701 } else {
3702 final int count = mChildren.size();
3703 for (int i = 0; i < count; ++i) {
3704 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3705 final int appTokensCount = appTokens.size();
3706 for (int j = 0; j < appTokensCount; j++) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003707 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3708 traverseTopToBottom)) {
3709 return true;
3710 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003711 }
3712 }
3713 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003714 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003715 }
3716
Wale Ogunwale1666e312016-12-16 11:27:18 -08003717 void setExitingTokensHasVisible(boolean hasVisible) {
3718 for (int i = mChildren.size() - 1; i >= 0; --i) {
3719 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3720 for (int j = appTokens.size() - 1; j >= 0; --j) {
3721 appTokens.get(j).hasVisible = hasVisible;
3722 }
3723 }
3724 }
3725
3726 void removeExistingAppTokensIfPossible() {
3727 for (int i = mChildren.size() - 1; i >= 0; --i) {
3728 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3729 for (int j = appTokens.size() - 1; j >= 0; --j) {
3730 final AppWindowToken token = appTokens.get(j);
3731 if (!token.hasVisible && !mService.mClosingApps.contains(token)
3732 && (!token.mIsExiting || token.isEmpty())) {
3733 // Make sure there is no animation running on this token, so any windows
3734 // associated with it will be removed as soon as their animations are
3735 // complete.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003736 cancelAnimation();
Wale Ogunwale1666e312016-12-16 11:27:18 -08003737 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG,
3738 "performLayout: App token exiting now removed" + token);
3739 token.removeIfPossible();
3740 }
3741 }
3742 }
3743 }
3744
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003745 @Override
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003746 int getOrientation() {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003747 if (isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY)
3748 || isStackVisible(WINDOWING_MODE_FREEFORM)) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003749 // Apps and their containers are not allowed to specify an orientation while the
Wale Ogunwaled0c225c2018-06-15 14:47:46 -07003750 // docked or freeform stack is visible...except for the home stack if the docked
3751 // stack is minimized and it actually set something and the bounds is different from
3752 // the display.
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003753 if (mHomeStack != null && mHomeStack.isVisible()
Wale Ogunwalecf2d6472018-06-14 08:55:42 -07003754 && mDividerControllerLocked.isMinimizedDock()
Wale Ogunwalecf2d6472018-06-14 08:55:42 -07003755 && !(mDividerControllerLocked.isHomeStackResizable()
3756 && mHomeStack.matchParentBounds())) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003757 final int orientation = mHomeStack.getOrientation();
3758 if (orientation != SCREEN_ORIENTATION_UNSET) {
3759 return orientation;
3760 }
3761 }
3762 return SCREEN_ORIENTATION_UNSPECIFIED;
3763 }
3764
3765 final int orientation = super.getOrientation();
Dean Harding3e5a1522017-10-06 09:19:01 -07003766 boolean isCar = mService.mContext.getPackageManager().hasSystemFeature(
3767 PackageManager.FEATURE_AUTOMOTIVE);
3768 if (isCar) {
3769 // In a car, you cannot physically rotate the screen, so it doesn't make sense to
3770 // allow anything but the default orientation.
3771 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07003772 "Forcing UNSPECIFIED orientation in car for display id=" + mDisplayId
3773 + ". Ignoring " + orientation);
Dean Harding3e5a1522017-10-06 09:19:01 -07003774 return SCREEN_ORIENTATION_UNSPECIFIED;
3775 }
3776
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003777 if (orientation != SCREEN_ORIENTATION_UNSET
3778 && orientation != SCREEN_ORIENTATION_BEHIND) {
3779 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07003780 "App is requesting an orientation, return " + orientation
3781 + " for display id=" + mDisplayId);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003782 return orientation;
3783 }
3784
3785 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07003786 "No app is requesting an orientation, return " + mLastOrientation
3787 + " for display id=" + mDisplayId);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003788 // The next app has not been requested to be visible, so we keep the current orientation
3789 // to prevent freezing/unfreezing the display too early.
Andrii Kulian8ee72852017-03-10 10:36:45 -08003790 return mLastOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003791 }
Robert Carrb1579c82017-09-05 14:54:47 -07003792
3793 @Override
3794 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carr2f8aa392018-01-31 14:46:51 -08003795 assignStackOrdering(t);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003796
Robert Carr2f8aa392018-01-31 14:46:51 -08003797 for (int i = 0; i < mChildren.size(); i++) {
3798 final TaskStack s = mChildren.get(i);
3799 s.assignChildLayers(t);
3800 }
3801 }
3802
3803 void assignStackOrdering(SurfaceControl.Transaction t) {
Jorim Jaggibe418292018-03-26 16:14:12 +02003804
Robert Carrf7a7ca82017-12-06 13:17:07 -08003805 final int HOME_STACK_STATE = 0;
3806 final int NORMAL_STACK_STATE = 1;
3807 final int ALWAYS_ON_TOP_STATE = 2;
3808
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003809 int layer = 0;
Robert Carr2f8aa392018-01-31 14:46:51 -08003810 int layerForAnimationLayer = 0;
Jorim Jaggibe418292018-03-26 16:14:12 +02003811 int layerForBoostedAnimationLayer = 0;
Jorim Jaggi391790622018-04-18 15:30:44 +02003812 int layerForHomeAnimationLayer = 0;
Robert Carr2f8aa392018-01-31 14:46:51 -08003813
Robert Carrf7a7ca82017-12-06 13:17:07 -08003814 for (int state = 0; state <= ALWAYS_ON_TOP_STATE; state++) {
3815 for (int i = 0; i < mChildren.size(); i++) {
3816 final TaskStack s = mChildren.get(i);
Robert Carr2f8aa392018-01-31 14:46:51 -08003817 if (state == HOME_STACK_STATE && !s.isActivityTypeHome()) {
3818 continue;
3819 } else if (state == NORMAL_STACK_STATE && (s.isActivityTypeHome()
3820 || s.isAlwaysOnTop())) {
3821 continue;
3822 } else if (state == ALWAYS_ON_TOP_STATE && !s.isAlwaysOnTop()) {
3823 continue;
3824 }
3825 s.assignLayer(t, layer++);
3826 if (s.inSplitScreenWindowingMode() && mSplitScreenDividerAnchor != null) {
3827 t.setLayer(mSplitScreenDividerAnchor, layer++);
3828 }
Winson Chungd41f71d2018-03-16 15:26:07 -07003829 if ((s.isTaskAnimating() || s.isAppAnimating())
3830 && state != ALWAYS_ON_TOP_STATE) {
Robert Carr2f8aa392018-01-31 14:46:51 -08003831 // Ensure the animation layer ends up above the
3832 // highest animating stack and no higher.
3833 layerForAnimationLayer = layer++;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003834 }
Jorim Jaggibe418292018-03-26 16:14:12 +02003835 if (state != ALWAYS_ON_TOP_STATE) {
3836 layerForBoostedAnimationLayer = layer++;
3837 }
Robert Carrf7a7ca82017-12-06 13:17:07 -08003838 }
Jorim Jaggi391790622018-04-18 15:30:44 +02003839 if (state == HOME_STACK_STATE) {
3840 layerForHomeAnimationLayer = layer++;
3841 }
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003842 }
Robert Carr2f8aa392018-01-31 14:46:51 -08003843 if (mAppAnimationLayer != null) {
3844 t.setLayer(mAppAnimationLayer, layerForAnimationLayer);
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003845 }
Jorim Jaggibe418292018-03-26 16:14:12 +02003846 if (mBoostedAppAnimationLayer != null) {
3847 t.setLayer(mBoostedAppAnimationLayer, layerForBoostedAnimationLayer);
3848 }
Jorim Jaggi391790622018-04-18 15:30:44 +02003849 if (mHomeAppAnimationLayer != null) {
3850 t.setLayer(mHomeAppAnimationLayer, layerForHomeAnimationLayer);
3851 }
Robert Carrb1579c82017-09-05 14:54:47 -07003852 }
3853
3854 @Override
Jorim Jaggi391790622018-04-18 15:30:44 +02003855 SurfaceControl getAppAnimationLayer(@AnimationLayer int animationLayer) {
3856 switch (animationLayer) {
3857 case ANIMATION_LAYER_BOOSTED:
3858 return mBoostedAppAnimationLayer;
3859 case ANIMATION_LAYER_HOME:
3860 return mHomeAppAnimationLayer;
3861 case ANIMATION_LAYER_STANDARD:
3862 default:
3863 return mAppAnimationLayer;
3864 }
chaviw23ee71c2017-12-18 11:29:41 -08003865 }
3866
Robert Carrf7a7ca82017-12-06 13:17:07 -08003867 SurfaceControl getSplitScreenDividerAnchor() {
3868 return mSplitScreenDividerAnchor;
3869 }
3870
chaviw23ee71c2017-12-18 11:29:41 -08003871 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07003872 void onParentSet() {
3873 super.onParentSet();
3874 if (getParent() != null) {
chaviw23ee71c2017-12-18 11:29:41 -08003875 mAppAnimationLayer = makeChildSurface(null)
3876 .setName("animationLayer")
3877 .build();
Jorim Jaggibe418292018-03-26 16:14:12 +02003878 mBoostedAppAnimationLayer = makeChildSurface(null)
3879 .setName("boostedAnimationLayer")
3880 .build();
Jorim Jaggi391790622018-04-18 15:30:44 +02003881 mHomeAppAnimationLayer = makeChildSurface(null)
3882 .setName("homeAnimationLayer")
3883 .build();
Robert Carrf7a7ca82017-12-06 13:17:07 -08003884 mSplitScreenDividerAnchor = makeChildSurface(null)
3885 .setName("splitScreenDividerAnchor")
3886 .build();
3887 getPendingTransaction()
3888 .show(mAppAnimationLayer)
Jorim Jaggibe418292018-03-26 16:14:12 +02003889 .show(mBoostedAppAnimationLayer)
Jorim Jaggi391790622018-04-18 15:30:44 +02003890 .show(mHomeAppAnimationLayer)
Robert Carrf7a7ca82017-12-06 13:17:07 -08003891 .show(mSplitScreenDividerAnchor);
chaviw23ee71c2017-12-18 11:29:41 -08003892 scheduleAnimation();
Robert Carrb1579c82017-09-05 14:54:47 -07003893 } else {
chaviw23ee71c2017-12-18 11:29:41 -08003894 mAppAnimationLayer.destroy();
3895 mAppAnimationLayer = null;
Jorim Jaggibe418292018-03-26 16:14:12 +02003896 mBoostedAppAnimationLayer.destroy();
3897 mBoostedAppAnimationLayer = null;
Jorim Jaggi391790622018-04-18 15:30:44 +02003898 mHomeAppAnimationLayer.destroy();
3899 mHomeAppAnimationLayer = null;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003900 mSplitScreenDividerAnchor.destroy();
3901 mSplitScreenDividerAnchor = null;
Robert Carrb1579c82017-09-05 14:54:47 -07003902 }
3903 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003904 }
3905
Robert Carree4d4b92017-11-22 12:21:46 -08003906 private final class AboveAppWindowContainers extends NonAppWindowContainers {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003907 AboveAppWindowContainers(String name, WindowManagerService service) {
3908 super(name, service);
Robert Carree4d4b92017-11-22 12:21:46 -08003909 }
3910
Robert Carrb9506032018-02-13 13:54:00 -08003911 @Override
Vishnu Nair83537a72018-07-19 21:27:48 -07003912 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
3913 final SurfaceControl.Builder builder = super.makeChildSurface(child);
3914 if (child instanceof WindowToken && ((WindowToken) child).mRoundedCornerOverlay) {
3915 // To draw above the ColorFade layer during the screen off transition, the
3916 // rounded corner overlays need to be at the root of the surface hierarchy.
3917 // TODO: move the ColorLayer into the display overlay layer such that this is not
3918 // necessary anymore.
3919 builder.setParent(null);
3920 }
3921 return builder;
3922 }
3923
3924 @Override
Robert Carrb9506032018-02-13 13:54:00 -08003925 void assignChildLayers(SurfaceControl.Transaction t) {
3926 assignChildLayers(t, null /* imeContainer */);
3927 }
3928
Robert Carree4d4b92017-11-22 12:21:46 -08003929 void assignChildLayers(SurfaceControl.Transaction t, WindowContainer imeContainer) {
3930 boolean needAssignIme = imeContainer != null
3931 && imeContainer.getSurfaceControl() != null;
3932 for (int j = 0; j < mChildren.size(); ++j) {
3933 final WindowToken wt = mChildren.get(j);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003934
3935 // See {@link mSplitScreenDividerAnchor}
3936 if (wt.windowType == TYPE_DOCK_DIVIDER) {
3937 wt.assignRelativeLayer(t, mTaskStackContainers.getSplitScreenDividerAnchor(), 1);
3938 continue;
3939 }
Vishnu Nair83537a72018-07-19 21:27:48 -07003940 if (wt.mRoundedCornerOverlay) {
3941 wt.assignLayer(t, WindowManagerPolicy.COLOR_FADE_LAYER + 1);
3942 continue;
3943 }
Robert Carree4d4b92017-11-22 12:21:46 -08003944 wt.assignLayer(t, j);
3945 wt.assignChildLayers(t);
3946
3947 int layer = mService.mPolicy.getWindowLayerFromTypeLw(
3948 wt.windowType, wt.mOwnerCanManageAppTokens);
Robert Carrb8e78fa2017-11-28 13:07:58 -08003949
3950 if (needAssignIme && layer >= mService.mPolicy.getWindowLayerFromTypeLw(
3951 TYPE_INPUT_METHOD_DIALOG, true)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003952 imeContainer.assignRelativeLayer(t, wt.getSurfaceControl(), -1);
Robert Carree4d4b92017-11-22 12:21:46 -08003953 needAssignIme = false;
3954 }
3955 }
3956 if (needAssignIme) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003957 imeContainer.assignRelativeLayer(t, getSurfaceControl(), Integer.MAX_VALUE);
Robert Carree4d4b92017-11-22 12:21:46 -08003958 }
3959 }
3960 }
3961
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003962 /**
3963 * Window container class that contains all containers on this display that are not related to
3964 * Apps. E.g. status bar.
3965 */
Robert Carree4d4b92017-11-22 12:21:46 -08003966 private class NonAppWindowContainers extends DisplayChildWindowContainer<WindowToken> {
Wale Ogunwale3a931692016-11-02 16:49:48 -07003967 /**
3968 * Compares two child window tokens returns -1 if the first is lesser than the second in
3969 * terms of z-order and 1 otherwise.
3970 */
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003971 private final Comparator<WindowToken> mWindowComparator = (token1, token2) ->
Wale Ogunwale3a931692016-11-02 16:49:48 -07003972 // Tokens with higher base layer are z-ordered on-top.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08003973 mService.mPolicy.getWindowLayerFromTypeLw(token1.windowType,
3974 token1.mOwnerCanManageAppTokens)
3975 < mService.mPolicy.getWindowLayerFromTypeLw(token2.windowType,
3976 token2.mOwnerCanManageAppTokens) ? -1 : 1;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003977
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003978 private final Predicate<WindowState> mGetOrientingWindow = w -> {
3979 if (!w.isVisibleLw() || !w.mPolicyVisibilityAfterAnim) {
3980 return false;
3981 }
3982 final int req = w.mAttrs.screenOrientation;
3983 if(req == SCREEN_ORIENTATION_UNSPECIFIED || req == SCREEN_ORIENTATION_BEHIND
3984 || req == SCREEN_ORIENTATION_UNSET) {
3985 return false;
3986 }
3987 return true;
3988 };
3989
Wale Ogunwale3a931692016-11-02 16:49:48 -07003990 private final String mName;
chaviwf29223e2018-01-31 13:23:51 -08003991 private final Dimmer mDimmer = new Dimmer(this);
3992 private final Rect mTmpDimBoundsRect = new Rect();
3993
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003994 NonAppWindowContainers(String name, WindowManagerService service) {
3995 super(service);
Wale Ogunwale3a931692016-11-02 16:49:48 -07003996 mName = name;
3997 }
3998
3999 void addChild(WindowToken token) {
4000 addChild(token, mWindowComparator);
4001 }
4002
4003 @Override
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004004 int getOrientation() {
4005 final WindowManagerPolicy policy = mService.mPolicy;
4006 // Find a window requesting orientation.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08004007 final WindowState win = getWindow(mGetOrientingWindow);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004008
4009 if (win != null) {
4010 final int req = win.mAttrs.screenOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004011 if (policy.isKeyguardHostWindow(win.mAttrs)) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08004012 mLastKeyguardForcedOrientation = req;
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07004013 if (mService.mKeyguardGoingAway) {
4014 // Keyguard can't affect the orientation if it is going away...
4015 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
4016 return SCREEN_ORIENTATION_UNSET;
4017 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004018 }
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07004019 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, win + " forcing orientation to " + req
4020 + " for display id=" + mDisplayId);
Andrii Kulian8ee72852017-03-10 10:36:45 -08004021 return (mLastWindowForcedOrientation = req);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004022 }
4023
Andrii Kulian8ee72852017-03-10 10:36:45 -08004024 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004025
Jorim Jaggi1c530592018-04-06 15:11:47 +02004026 // Only allow force setting the orientation when all unknown visibilities have been
4027 // resolved, as otherwise we just may be starting another occluding activity.
4028 final boolean isUnoccluding =
4029 mService.mAppTransition.getAppTransition() == TRANSIT_KEYGUARD_UNOCCLUDE
4030 && mService.mUnknownAppVisibilityController.allResolved();
4031 if (policy.isKeyguardShowingAndNotOccluded() || isUnoccluding) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08004032 return mLastKeyguardForcedOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004033 }
4034
4035 return SCREEN_ORIENTATION_UNSET;
4036 }
4037
4038 @Override
Wale Ogunwale3a931692016-11-02 16:49:48 -07004039 String getName() {
4040 return mName;
4041 }
chaviwf29223e2018-01-31 13:23:51 -08004042
4043 @Override
4044 Dimmer getDimmer() {
4045 return mDimmer;
4046 }
4047
4048 @Override
4049 void prepareSurfaces() {
4050 mDimmer.resetDimStates();
4051 super.prepareSurfaces();
4052 getBounds(mTmpDimBoundsRect);
4053
4054 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
4055 scheduleAnimation();
4056 }
4057 }
Robert Carr3b716242016-08-16 16:02:21 -07004058 }
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01004059
Robert Carr9034d962018-01-04 18:27:42 -08004060 private class NonMagnifiableWindowContainers extends NonAppWindowContainers {
4061 NonMagnifiableWindowContainers(String name, WindowManagerService service) {
4062 super(name, service);
4063 }
4064
4065 @Override
4066 void applyMagnificationSpec(Transaction t, MagnificationSpec spec) {
4067 }
4068 };
4069
Robert Carrb1579c82017-09-05 14:54:47 -07004070 SurfaceControl.Builder makeSurface(SurfaceSession s) {
4071 return mService.makeSurfaceBuilder(s)
4072 .setParent(mWindowingLayer);
4073 }
4074
4075 @Override
4076 SurfaceSession getSession() {
4077 return mSession;
4078 }
4079
4080 @Override
4081 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07004082 SurfaceSession s = child != null ? child.getSession() : getSession();
4083 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(s);
Robert Carrb1579c82017-09-05 14:54:47 -07004084 b.setSize(mSurfaceSize, mSurfaceSize);
Robert Carrf59b8dd2017-10-02 18:58:36 -07004085
4086 if (child == null) {
4087 return b;
4088 }
4089
Robert Carree4d4b92017-11-22 12:21:46 -08004090 return b.setName(child.getName())
4091 .setParent(mWindowingLayer);
Robert Carrb1579c82017-09-05 14:54:47 -07004092 }
4093
4094 /**
4095 * The makeSurface variants are for use by the window-container
4096 * hierarchy. makeOverlay here is a function for various non windowing
4097 * overlays like the ScreenRotation screenshot, the Strict Mode Flash
4098 * and other potpourii.
4099 */
4100 SurfaceControl.Builder makeOverlay() {
4101 return mService.makeSurfaceBuilder(mSession)
4102 .setParent(mOverlayLayer);
4103 }
4104
Daichi Hironoa1fb9be2017-12-18 17:02:54 +09004105 /**
4106 * Reparents the given surface to mOverlayLayer.
4107 */
4108 void reparentToOverlay(Transaction transaction, SurfaceControl surface) {
4109 transaction.reparent(surface, mOverlayLayer.getHandle());
4110 }
4111
Robert Carrb1579c82017-09-05 14:54:47 -07004112 void applyMagnificationSpec(MagnificationSpec spec) {
Robert Carr24be9ab2018-04-30 17:54:53 -07004113 if (spec.scale != 1.0) {
4114 mMagnificationSpec = spec;
4115 } else {
4116 mMagnificationSpec = null;
4117 }
4118
Robert Carrf59b8dd2017-10-02 18:58:36 -07004119 applyMagnificationSpec(getPendingTransaction(), spec);
4120 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -07004121 }
4122
Robert Carr24be9ab2018-04-30 17:54:53 -07004123 void reapplyMagnificationSpec() {
4124 if (mMagnificationSpec != null) {
4125 applyMagnificationSpec(getPendingTransaction(), mMagnificationSpec);
4126 }
4127 }
4128
Robert Carrb1579c82017-09-05 14:54:47 -07004129 @Override
4130 void onParentSet() {
4131 // Since we are the top of the SurfaceControl hierarchy here
4132 // we create the root surfaces explicitly rather than chaining
4133 // up as the default implementation in onParentSet does. So we
4134 // explicitly do NOT call super here.
4135 }
4136
4137 @Override
4138 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carrb1579c82017-09-05 14:54:47 -07004139
4140 // These are layers as children of "mWindowingLayer"
4141 mBelowAppWindowsContainers.assignLayer(t, 0);
4142 mTaskStackContainers.assignLayer(t, 1);
4143 mAboveAppWindowsContainers.assignLayer(t, 2);
4144
4145 WindowState imeTarget = mService.mInputMethodTarget;
Robert Carree4d4b92017-11-22 12:21:46 -08004146 boolean needAssignIme = true;
Robert Carr1cafdf82017-11-22 13:56:43 -08004147
Robert Carree4d4b92017-11-22 12:21:46 -08004148 // In the case where we have an IME target that is not in split-screen
4149 // mode IME assignment is easy. We just need the IME to go directly above
4150 // the target. This way children of the target will naturally go above the IME
4151 // and everyone is happy.
Robert Carr1cafdf82017-11-22 13:56:43 -08004152 //
Robert Carree4d4b92017-11-22 12:21:46 -08004153 // In the case of split-screen windowing mode, we need to elevate the IME above the
4154 // docked divider while keeping the app itself below the docked divider, so instead
4155 // we use relative layering of the IME targets child windows, and place the
4156 // IME in the non-app layer (see {@link AboveAppWindowContainers#assignChildLayers}).
Robert Carr1cafdf82017-11-22 13:56:43 -08004157 //
Robert Carr234b6332018-03-20 13:38:16 -07004158 // In the case the IME target is animating, the animation Z order may be different
4159 // than the WindowContainer Z order, so it's difficult to be sure we have the correct
4160 // IME target. In this case we just layer the IME over all transitions by placing it in the
4161 // above applications layer.
4162 //
Robert Carree4d4b92017-11-22 12:21:46 -08004163 // In the case where we have no IME target we assign it where it's base layer would
4164 // place it in the AboveAppWindowContainers.
Robert Carr234b6332018-03-20 13:38:16 -07004165 if (imeTarget != null && !(imeTarget.inSplitScreenWindowingMode()
4166 || imeTarget.mToken.isAppAnimating())
Robert Carree4d4b92017-11-22 12:21:46 -08004167 && (imeTarget.getSurfaceControl() != null)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004168 mImeWindowsContainers.assignRelativeLayer(t, imeTarget.getSurfaceControl(),
Robert Carrb1579c82017-09-05 14:54:47 -07004169 // TODO: We need to use an extra level on the app surface to ensure
4170 // this is always above SurfaceView but always below attached window.
4171 1);
Robert Carree4d4b92017-11-22 12:21:46 -08004172 needAssignIme = false;
Robert Carrb1579c82017-09-05 14:54:47 -07004173 }
4174
4175 // Above we have assigned layers to our children, now we ask them to assign
4176 // layers to their children.
4177 mBelowAppWindowsContainers.assignChildLayers(t);
4178 mTaskStackContainers.assignChildLayers(t);
Robert Carree4d4b92017-11-22 12:21:46 -08004179 mAboveAppWindowsContainers.assignChildLayers(t,
4180 needAssignIme == true ? mImeWindowsContainers : null);
Robert Carrb1579c82017-09-05 14:54:47 -07004181 mImeWindowsContainers.assignChildLayers(t);
4182 }
4183
4184 /**
4185 * Here we satisfy an unfortunate special case of the IME in split-screen mode. Imagine
4186 * that the IME target is one of the docked applications. We'd like the docked divider to be
4187 * above both of the applications, and we'd like the IME to be above the docked divider.
4188 * However we need child windows of the applications to be above the IME (Text drag handles).
4189 * This is a non-strictly hierarcical layering and we need to break out of the Z ordering
4190 * somehow. We do this by relatively ordering children of the target to the IME in cooperation
4191 * with {@link #WindowState#assignLayer}
4192 */
4193 void assignRelativeLayerForImeTargetChild(SurfaceControl.Transaction t, WindowContainer child) {
Robert Carrbb5de662018-04-26 13:29:51 -07004194 child.assignRelativeLayer(t, mImeWindowsContainers.getSurfaceControl(), 1);
Robert Carrb1579c82017-09-05 14:54:47 -07004195 }
4196
4197 @Override
Jorim Jaggi9af095b2017-12-12 17:18:57 +01004198 void prepareSurfaces() {
4199 final ScreenRotationAnimation screenRotationAnimation =
4200 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
4201 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
4202 screenRotationAnimation.getEnterTransformation().getMatrix().getValues(mTmpFloats);
4203 mPendingTransaction.setMatrix(mWindowingLayer,
4204 mTmpFloats[Matrix.MSCALE_X], mTmpFloats[Matrix.MSKEW_Y],
4205 mTmpFloats[Matrix.MSKEW_X], mTmpFloats[Matrix.MSCALE_Y]);
4206 mPendingTransaction.setPosition(mWindowingLayer,
4207 mTmpFloats[Matrix.MTRANS_X], mTmpFloats[Matrix.MTRANS_Y]);
4208 mPendingTransaction.setAlpha(mWindowingLayer,
4209 screenRotationAnimation.getEnterTransformation().getAlpha());
4210 }
Chavi Weingartenb736e322018-02-23 00:27:54 +00004211
Jorim Jaggi9af095b2017-12-12 17:18:57 +01004212 super.prepareSurfaces();
4213 }
Robert Carr2f8aa392018-01-31 14:46:51 -08004214
Jorim Jaggibe418292018-03-26 16:14:12 +02004215 void assignStackOrdering() {
4216 mTaskStackContainers.assignStackOrdering(getPendingTransaction());
Robert Carr2f8aa392018-01-31 14:46:51 -08004217 }
Chavi Weingarten3a748552018-05-14 17:32:42 +00004218
4219 /**
4220 * Increment the deferral count to determine whether to update the IME target.
4221 */
4222 void deferUpdateImeTarget() {
4223 mDeferUpdateImeTargetCount++;
4224 }
4225
4226 /**
4227 * Decrement the deferral count to determine whether to update the IME target. If the count
4228 * reaches 0, a new ime target will get computed.
4229 */
4230 void continueUpdateImeTarget() {
4231 if (mDeferUpdateImeTargetCount == 0) {
4232 return;
4233 }
4234
4235 mDeferUpdateImeTargetCount--;
4236 if (mDeferUpdateImeTargetCount == 0) {
4237 computeImeTarget(true /* updateImeTarget */);
4238 }
4239 }
4240
4241 /**
4242 * @return Whether a new IME target should be computed.
4243 */
4244 private boolean canUpdateImeTarget() {
4245 return mDeferUpdateImeTargetCount == 0;
4246 }
Arthur Hung95b38a92018-07-20 18:56:12 +08004247
4248 InputMonitor getInputMonitor() {
4249 return mInputMonitor;
4250 }
Jorim Jaggif1292892018-09-10 11:58:13 +02004251
4252 /**
4253 * @return Cached value whether we told display manager that we have content.
4254 */
4255 boolean getLastHasContent() {
4256 return mLastHasContent;
4257 }
Craig Mautner59c00972012-07-30 12:10:24 -07004258}