blob: bd53420eb953749c6fc143c04132d89a4d45eb6c [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 Ogunwale30e441d2017-11-09 08:28:45 -080019import static android.app.ActivityManager.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 Ogunwale687b4272017-07-27 02:56:23 -070023import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070024import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
25import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwalea77e1462016-09-28 10:09:46 -070026import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070027import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
28import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale687b4272017-07-27 02:56:23 -070029import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
30import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
Wale Ogunwale19e452e2016-10-12 12:36:29 -070031import static android.view.Display.DEFAULT_DISPLAY;
32import static android.view.Display.FLAG_PRIVATE;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -070033import static android.view.Surface.ROTATION_0;
34import static android.view.Surface.ROTATION_180;
35import static android.view.Surface.ROTATION_270;
36import static android.view.Surface.ROTATION_90;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070037import static android.view.View.GONE;
Wale Ogunwale10124582016-09-15 20:25:50 -070038import static android.view.WindowManager.DOCKED_BOTTOM;
39import static android.view.WindowManager.DOCKED_INVALID;
40import static android.view.WindowManager.DOCKED_TOP;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -080041import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
42import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
43import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
Wale Ogunwale494009b82016-10-21 09:01:38 -070044import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070045import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070046import static android.view.WindowManager.LayoutParams.NEEDS_MENU_SET_TRUE;
47import static android.view.WindowManager.LayoutParams.NEEDS_MENU_UNSET;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070048import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
Wale Ogunwale494009b82016-10-21 09:01:38 -070049import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070050import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale494009b82016-10-21 09:01:38 -070051import static android.view.WindowManager.LayoutParams.TYPE_BOOT_PROGRESS;
Robert Carrf7a7ca82017-12-06 13:17:07 -080052import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
Wale Ogunwale494009b82016-10-21 09:01:38 -070053import static android.view.WindowManager.LayoutParams.TYPE_DRAWN_APPLICATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070054import static android.view.WindowManager.LayoutParams.TYPE_DREAM;
Wale Ogunwale3a931692016-11-02 16:49:48 -070055import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
56import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
Wale Ogunwale494009b82016-10-21 09:01:38 -070057import static android.view.WindowManager.LayoutParams.TYPE_STATUS_BAR;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070058import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG;
59import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_ERROR;
Svetoslav Ganovaa076532016-08-01 19:16:43 -070060import static android.view.WindowManager.LayoutParams.TYPE_TOAST;
Wale Ogunwaleec731152016-09-08 20:18:57 -070061import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Adrian Roose99bc052017-11-20 17:55:31 +010062import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
63import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_CONFIG;
64import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_LAYOUT;
65import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Adrian Roos1cf585052018-01-03 18:43:27 +010066import static com.android.server.wm.utils.CoordinateTransforms.transformPhysicalToLogicalCoordinates;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010067import static android.view.WindowManager.TRANSIT_KEYGUARD_UNOCCLUDE;
Wale Ogunwale1666e312016-12-16 11:27:18 -080068import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -070069import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_BOOT;
Wale Ogunwale10124582016-09-15 20:25:50 -070070import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DISPLAY;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070071import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS;
72import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070073import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT_METHOD;
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -070074import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070075import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
Jorim Jaggife762342016-10-13 14:33:27 +020076import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070077import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREENSHOT;
Wale Ogunwale494009b82016-10-21 09:01:38 -070078import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREEN_ON;
Andrii Kulian839def92016-11-02 10:58:58 -070079import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Wale Ogunwale1666e312016-12-16 11:27:18 -080080import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070081import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070082import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER_LIGHT;
Andrii Kulian06d07d62017-03-14 11:11:47 -070083import static com.android.server.wm.WindowManagerDebugConfig.SHOW_LIGHT_TRANSACTIONS;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070084import static com.android.server.wm.WindowManagerDebugConfig.SHOW_STACK_CRAWLS;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070085import static com.android.server.wm.WindowManagerDebugConfig.SHOW_TRANSACTIONS;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070086import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080087import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Andrii Kulian06d07d62017-03-14 11:11:47 -070088import static com.android.server.wm.WindowManagerService.CUSTOM_SCREEN_ROTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070089import static com.android.server.wm.WindowManagerService.H.SEND_NEW_CONFIGURATION;
90import static com.android.server.wm.WindowManagerService.H.UPDATE_DOCKED_STACK_DIVIDER;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -070091import static com.android.server.wm.WindowManagerService.H.WINDOW_HIDE_TIMEOUT;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070092import static com.android.server.wm.WindowManagerService.LAYOUT_REPEAT_THRESHOLD;
Andrii Kulian06d07d62017-03-14 11:11:47 -070093import static com.android.server.wm.WindowManagerService.MAX_ANIMATION_DURATION;
94import static com.android.server.wm.WindowManagerService.SEAMLESS_ROTATION_TIMEOUT_DURATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070095import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Andrii Kulian06d07d62017-03-14 11:11:47 -070096import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_ACTIVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -070097import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_TIMEOUT;
Andrii Kulian06d07d62017-03-14 11:11:47 -070098import static com.android.server.wm.WindowManagerService.WINDOW_FREEZE_TIMEOUT_DURATION;
Wale Ogunwale19e452e2016-10-12 12:36:29 -070099import static com.android.server.wm.WindowManagerService.dipToPixel;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700100import static com.android.server.wm.WindowManagerService.logSurface;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700101import static com.android.server.wm.WindowState.RESIZE_HANDLE_WIDTH_IN_DP;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700102import static com.android.server.wm.WindowStateAnimator.DRAW_PENDING;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700103import static com.android.server.wm.WindowStateAnimator.READY_TO_SHOW;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700104import static com.android.server.wm.WindowSurfacePlacer.SET_WALLPAPER_MAY_CHANGE;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700105import static com.android.server.wm.proto.DisplayProto.ABOVE_APP_WINDOWS;
106import static com.android.server.wm.proto.DisplayProto.BELOW_APP_WINDOWS;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000107import static com.android.server.wm.proto.DisplayProto.DISPLAY_FRAMES;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700108import static com.android.server.wm.proto.DisplayProto.DISPLAY_INFO;
109import static com.android.server.wm.proto.DisplayProto.DOCKED_STACK_DIVIDER_CONTROLLER;
110import static com.android.server.wm.proto.DisplayProto.DPI;
111import static com.android.server.wm.proto.DisplayProto.ID;
112import static com.android.server.wm.proto.DisplayProto.IME_WINDOWS;
113import static com.android.server.wm.proto.DisplayProto.PINNED_STACK_CONTROLLER;
Steven Timotiusf2d68892017-08-28 17:00:01 -0700114import static com.android.server.wm.proto.DisplayProto.ROTATION;
115import static com.android.server.wm.proto.DisplayProto.SCREEN_ROTATION_ANIMATION;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700116import static com.android.server.wm.proto.DisplayProto.STACKS;
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700117import static com.android.server.wm.proto.DisplayProto.WINDOW_CONTAINER;
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;
Adrian Roos1cf585052018-01-03 18:43:27 +0100126import android.graphics.Path;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800127import android.graphics.Rect;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700128import android.graphics.RectF;
Craig Mautner6601b7b2013-04-29 10:29:11 -0700129import android.graphics.Region;
Jorim Jaggid47e7e12016-03-01 09:57:38 +0100130import android.graphics.Region.Op;
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700131import android.hardware.display.DisplayManagerInternal;
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700132import android.os.Debug;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700133import android.os.Handler;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700134import android.os.IBinder;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700135import android.os.RemoteException;
136import android.os.SystemClock;
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100137import android.os.Trace;
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800138import android.util.ArraySet;
Chong Zhang8e89b312015-09-09 15:09:30 -0700139import android.util.DisplayMetrics;
Jorim Jaggi02886a82016-12-06 09:10:06 -0800140import android.util.MutableBoolean;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700141import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700142import android.util.proto.ProtoOutputStream;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700143import android.view.Display;
Adrian Roos1cf585052018-01-03 18:43:27 +0100144import android.view.DisplayCutout;
Craig Mautner59c00972012-07-30 12:10:24 -0700145import android.view.DisplayInfo;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700146import android.view.InputDevice;
Robert Carrb1579c82017-09-05 14:54:47 -0700147import android.view.MagnificationSpec;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700148import android.view.Surface;
149import android.view.SurfaceControl;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100150import android.view.SurfaceControl.Transaction;
Robert Carrb1579c82017-09-05 14:54:47 -0700151import android.view.SurfaceSession;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700152
Bryce Lee48f4b572017-04-10 10:54:15 -0700153import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -0800154import com.android.internal.util.ToBooleanFunction;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700155import com.android.internal.view.IInputMethodClient;
Adrian Roose99bc052017-11-20 17:55:31 +0100156import com.android.server.policy.WindowManagerPolicy;
Craig Mautner59c00972012-07-30 12:10:24 -0700157
Robert Carr3b716242016-08-16 16:02:21 -0700158import java.io.FileDescriptor;
Craig Mautner59c00972012-07-30 12:10:24 -0700159import java.io.PrintWriter;
160import java.util.ArrayList;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700161import java.util.Comparator;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700162import java.util.HashMap;
163import java.util.Iterator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700164import java.util.LinkedList;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700165import java.util.List;
Adrian Roos1cf585052018-01-03 18:43:27 +0100166import java.util.Objects;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800167import java.util.function.Consumer;
168import java.util.function.Predicate;
Craig Mautner59c00972012-07-30 12:10:24 -0700169
Craig Mautner59c00972012-07-30 12:10:24 -0700170/**
171 * Utility class for keeping track of the WindowStates and other pertinent contents of a
172 * particular Display.
173 *
174 * IMPORTANT: No method from this class should ever be used without holding
175 * WindowManagerService.mWindowMap.
176 */
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700177class DisplayContent extends WindowContainer<DisplayContent.DisplayChildWindowContainer> {
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;
218 DisplayCutout mDisplayCutoutOverride;
219
Andrii Kuliancd097992017-03-23 18:31:59 -0700220 /**
221 * Overridden display size. Initialized with {@link #mInitialDisplayWidth}
222 * and {@link #mInitialDisplayHeight}, but can be set via shell command "adb shell wm size".
223 * @see WindowManagerService#setForcedDisplaySize(int, int, int)
224 */
Craig Mautner59c00972012-07-30 12:10:24 -0700225 int mBaseDisplayWidth = 0;
226 int mBaseDisplayHeight = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700227 /**
228 * Overridden display density for current user. Initialized with {@link #mInitialDisplayDensity}
229 * but can be set from Settings or via shell command "adb shell wm density".
230 * @see WindowManagerService#setForcedDisplayDensityForUser(int, int, int)
231 */
Dianne Hackborndde331c2012-08-03 14:01:57 -0700232 int mBaseDisplayDensity = 0;
Jeff Brownd46747a2015-04-15 19:02:36 -0700233 boolean mDisplayScalingDisabled;
Craig Mautner2d5618c2012-10-18 13:55:47 -0700234 private final DisplayInfo mDisplayInfo = new DisplayInfo();
235 private final Display mDisplay;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700236 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000237 DisplayFrames mDisplayFrames;
238
Andrii Kulian06d07d62017-03-14 11:11:47 -0700239 /**
240 * For default display it contains real metrics, empty for others.
241 * @see WindowManagerService#createWatermarkInTransaction()
242 */
243 final DisplayMetrics mRealDisplayMetrics = new DisplayMetrics();
244 /** @see #computeCompatSmallestWidth(boolean, int, int, int, int) */
245 private final DisplayMetrics mTmpDisplayMetrics = new DisplayMetrics();
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700246
Andrii Kulian06d07d62017-03-14 11:11:47 -0700247 /**
248 * Compat metrics computed based on {@link #mDisplayMetrics}.
249 * @see #updateDisplayAndOrientation(int)
250 */
251 private final DisplayMetrics mCompatDisplayMetrics = new DisplayMetrics();
252
253 /** The desired scaling factor for compatible apps. */
254 float mCompatibleScreenScale;
Craig Mautner59c00972012-07-30 12:10:24 -0700255
Andrii Kulian8ee72852017-03-10 10:36:45 -0800256 /**
257 * Current rotation of the display.
258 * Constants as per {@link android.view.Surface.Rotation}.
259 *
Andrii Kulian06d07d62017-03-14 11:11:47 -0700260 * @see #updateRotationUnchecked(boolean)
Andrii Kulian8ee72852017-03-10 10:36:45 -0800261 */
262 private int mRotation = 0;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700263
Andrii Kulian8ee72852017-03-10 10:36:45 -0800264 /**
265 * Last applied orientation of the display.
266 * Constants as per {@link android.content.pm.ActivityInfo.ScreenOrientation}.
267 *
268 * @see WindowManagerService#updateOrientationFromAppTokensLocked(boolean, int)
269 */
270 private int mLastOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700271
Andrii Kulian8ee72852017-03-10 10:36:45 -0800272 /**
273 * Flag indicating that the application is receiving an orientation that has different metrics
274 * than it expected. E.g. Portrait instead of Landscape.
275 *
Andrii Kulian06d07d62017-03-14 11:11:47 -0700276 * @see #updateRotationUnchecked(boolean)
Andrii Kulian8ee72852017-03-10 10:36:45 -0800277 */
278 private boolean mAltOrientation = false;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700279
Andrii Kulian8ee72852017-03-10 10:36:45 -0800280 /**
281 * Orientation forced by some window. If there is no visible window that specifies orientation
282 * it is set to {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
283 *
284 * @see NonAppWindowContainers#getOrientation()
285 */
286 private int mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700287
Andrii Kulian8ee72852017-03-10 10:36:45 -0800288 /**
289 * Last orientation forced by the keyguard. It is applied when keyguard is shown and is not
290 * occluded.
291 *
292 * @see NonAppWindowContainers#getOrientation()
293 */
294 private int mLastKeyguardForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
295
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700296 /**
297 * Keep track of wallpaper visibility to notify changes.
298 */
299 private boolean mLastWallpaperVisible = false;
300
Andrii Kulian06d07d62017-03-14 11:11:47 -0700301 private Rect mBaseDisplayRect = new Rect();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700302
Craig Mautner39834192012-09-02 07:47:24 -0700303 // Accessed directly by all users.
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700304 private boolean mLayoutNeeded;
Craig Mautner76a71652012-09-03 23:23:58 -0700305 int pendingLayoutChanges;
Andrii Kulian839def92016-11-02 10:58:58 -0700306 // TODO(multi-display): remove some of the usages.
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800307 boolean isDefaultDisplay;
Craig Mautner39834192012-09-02 07:47:24 -0700308
Craig Mautnerdc548482014-02-05 13:35:24 -0800309 /** Window tokens that are in the process of exiting, but still on screen for animations. */
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700310 final ArrayList<WindowToken> mExitingTokens = new ArrayList<>();
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800311
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700312 /** Detect user tapping outside of current focused task bounds .*/
313 TaskTapPointerEventListener mTapDetector;
Craig Mautnercf910b02013-04-23 11:23:27 -0700314
Craig Mautner6601b7b2013-04-29 10:29:11 -0700315 /** Detect user tapping outside of current focused stack bounds .*/
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700316 private Region mTouchExcludeRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700317
Craig Mautner6601b7b2013-04-29 10:29:11 -0700318 /** Save allocating when calculating rects */
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800319 private final Rect mTmpRect = new Rect();
320 private final Rect mTmpRect2 = new Rect();
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700321 private final RectF mTmpRectF = new RectF();
322 private final Matrix mTmpMatrix = new Matrix();
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800323 private final Region mTmpRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700324
Bryce Leef3c6a472017-11-14 14:53:06 -0800325 /** Used for handing back size of display */
326 private final Rect mTmpBounds = new Rect();
327
Craig Mautner95da1082014-02-24 17:54:35 -0800328 /** Remove this display when animation on it has completed. */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700329 private boolean mDeferredRemoval;
Craig Mautner1bf2b872014-02-05 15:37:40 -0800330
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700331 final DockedStackDividerController mDividerControllerLocked;
Winson Chung655332c2016-10-31 13:14:28 -0700332 final PinnedStackController mPinnedStackControllerLocked;
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700333
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800334 final ArrayList<WindowState> mTapExcludedWindows = new ArrayList<>();
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800335 /** A collection of windows that provide tap exclude regions inside of them. */
336 final ArraySet<WindowState> mTapExcludeProvidingWindows = new ArraySet<>();
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800337
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000338 private boolean mHaveBootMsg = false;
339 private boolean mHaveApp = false;
340 private boolean mHaveWallpaper = false;
341 private boolean mHaveKeyguard = true;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700342
343 private final LinkedList<AppWindowToken> mTmpUpdateAllDrawn = new LinkedList();
344
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700345 private final TaskForResizePointSearchResult mTmpTaskForResizePointSearchResult =
346 new TaskForResizePointSearchResult();
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000347 private final ApplySurfaceChangesTransactionState mTmpApplySurfaceChangesTransactionState =
348 new ApplySurfaceChangesTransactionState();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700349
Wale Ogunwale601a3f02016-10-17 08:39:39 -0700350 // True if this display is in the process of being removed. Used to determine if the removal of
351 // the display's direct children should be allowed.
352 private boolean mRemovingDisplay = false;
353
Bryce Leed1871262017-06-12 14:12:29 -0700354 // {@code false} if this display is in the processing of being created.
355 private boolean mDisplayReady = false;
356
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800357 WallpaperController mWallpaperController;
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700358
Robert Carrb1579c82017-09-05 14:54:47 -0700359 private final SurfaceSession mSession = new SurfaceSession();
360
361 /**
362 * We organize all top-level Surfaces in to the following layers.
363 * mOverlayLayer contains a few Surfaces which are always on top of others
Robert Carree4d4b92017-11-22 12:21:46 -0800364 * and omitted from Screen-Magnification, for example the strict mode flash or
365 * the magnification overlay itself.
Robert Carrb1579c82017-09-05 14:54:47 -0700366 * {@link #mWindowingLayer} contains everything else.
367 */
368 private SurfaceControl mOverlayLayer;
369
370 /**
371 * See {@link #mOverlayLayer}
372 */
373 private SurfaceControl mWindowingLayer;
374
375 /**
376 * Specifies the size of the surfaces in {@link #mOverlayLayer} and {@link #mWindowingLayer}.
377 * <p>
378 * For these surfaces currently we use a surface based on the larger of width or height so we
379 * don't have to resize when rotating the display.
380 */
381 private int mSurfaceSize;
382
Chavi Weingarten38804382018-02-15 21:00:15 +0000383 /**
384 * A list of surfaces to be destroyed after {@link #mPendingTransaction} is applied.
385 */
386 private final ArrayList<SurfaceControl> mPendingDestroyingSurfaces = new ArrayList<>();
387
Jorim Jaggi9af095b2017-12-12 17:18:57 +0100388 /** Temporary float array to retrieve 3x3 matrix values. */
389 private final float[] mTmpFloats = new float[9];
390
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800391 private final Consumer<WindowState> mUpdateWindowsForAnimator = w -> {
392 WindowStateAnimator winAnimator = w.mWinAnimator;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800393 final AppWindowToken atoken = w.mAppToken;
394 if (winAnimator.mDrawState == READY_TO_SHOW) {
395 if (atoken == null || atoken.allDrawn) {
396 if (w.performShowLocked()) {
397 pendingLayoutChanges |= FINISH_LAYOUT_REDO_ANIM;
398 if (DEBUG_LAYOUT_REPEATS) {
399 mService.mWindowPlacerLocked.debugLayoutRepeats(
400 "updateWindowsAndWallpaperLocked 5", pendingLayoutChanges);
401 }
402 }
403 }
404 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800405 };
406
407 private final Consumer<WindowState> mUpdateWallpaperForAnimator = w -> {
408 final WindowStateAnimator winAnimator = w.mWinAnimator;
409 if (winAnimator.mSurfaceController == null || !winAnimator.hasSurface()) {
410 return;
411 }
412
413 final int flags = w.mAttrs.flags;
414
415 // If this window is animating, make a note that we have an animating window and take
416 // care of a request to run a detached wallpaper animation.
Jorim Jaggia5e10572017-11-15 14:36:26 +0100417 if (winAnimator.isAnimationSet()) {
418 final AnimationAdapter anim = w.getAnimation();
419 if (anim != null) {
420 if ((flags & FLAG_SHOW_WALLPAPER) != 0 && anim.getDetachWallpaper()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800421 mTmpWindow = w;
422 }
Jorim Jaggia5e10572017-11-15 14:36:26 +0100423 final int color = anim.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800424 if (color != 0) {
425 final TaskStack stack = w.getStack();
426 if (stack != null) {
427 stack.setAnimationBackground(winAnimator, color);
428 }
429 }
430 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800431 }
432
433 // If this window's app token is running a detached wallpaper animation, make a note so
434 // we can ensure the wallpaper is displayed behind it.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200435 final AppWindowToken atoken = winAnimator.mWin.mAppToken;
436 final AnimationAdapter animation = atoken != null ? atoken.getAnimation() : null;
437 if (animation != null) {
438 if ((flags & FLAG_SHOW_WALLPAPER) != 0 && animation.getDetachWallpaper()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800439 mTmpWindow = w;
440 }
441
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200442 final int color = animation.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800443 if (color != 0) {
444 final TaskStack stack = w.getStack();
445 if (stack != null) {
446 stack.setAnimationBackground(winAnimator, color);
447 }
448 }
449 }
450 };
451
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800452 private final Consumer<WindowState> mScheduleToastTimeout = w -> {
453 final int lostFocusUid = mTmpWindow.mOwnerUid;
454 final Handler handler = mService.mH;
455 if (w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == lostFocusUid) {
456 if (!handler.hasMessages(WINDOW_HIDE_TIMEOUT, w)) {
457 handler.sendMessageDelayed(handler.obtainMessage(WINDOW_HIDE_TIMEOUT, w),
458 w.mAttrs.hideTimeoutMilliseconds);
459 }
460 }
461 };
462
463 private final ToBooleanFunction<WindowState> mFindFocusedWindow = w -> {
464 final AppWindowToken focusedApp = mService.mFocusedApp;
465 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Looking for focus: " + w
466 + ", flags=" + w.mAttrs.flags + ", canReceive=" + w.canReceiveKeys());
467
468 if (!w.canReceiveKeys()) {
469 return false;
470 }
471
472 final AppWindowToken wtoken = w.mAppToken;
473
474 // If this window's application has been removed, just skip it.
475 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
476 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
477 + (wtoken.removed ? "removed" : "sendingToBottom"));
478 return false;
479 }
480
481 if (focusedApp == null) {
482 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp=null"
483 + " using new focus @ " + w);
484 mTmpWindow = w;
485 return true;
486 }
487
488 if (!focusedApp.windowsAreFocusable()) {
489 // Current focused app windows aren't focusable...
490 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp windows not"
491 + " focusable using new focus @ " + w);
492 mTmpWindow = w;
493 return true;
494 }
495
496 // Descend through all of the app tokens and find the first that either matches
497 // win.mAppToken (return win) or mFocusedApp (return null).
498 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
499 if (focusedApp.compareTo(wtoken) > 0) {
500 // App stack below focused app stack. No focus for you!!!
501 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM,
502 "findFocusedWindow: Reached focused app=" + focusedApp);
503 mTmpWindow = null;
504 return true;
505 }
506 }
507
508 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: Found new focus @ " + w);
509 mTmpWindow = w;
510 return true;
511 };
512
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800513 private final Consumer<WindowState> mPerformLayout = w -> {
514 // Don't do layout of a window if it is not visible, or soon won't be visible, to avoid
515 // wasting time and funky changes while a window is animating away.
516 final boolean gone = (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w))
517 || w.isGoneForLayoutLw();
518
519 if (DEBUG_LAYOUT && !w.mLayoutAttached) {
520 Slog.v(TAG, "1ST PASS " + w + ": gone=" + gone + " mHaveFrame=" + w.mHaveFrame
521 + " mLayoutAttached=" + w.mLayoutAttached
522 + " screen changed=" + w.isConfigChanged());
523 final AppWindowToken atoken = w.mAppToken;
524 if (gone) Slog.v(TAG, " GONE: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200525 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800526 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
527 + " parentHidden=" + w.isParentWindowHidden());
528 else Slog.v(TAG, " VIS: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200529 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800530 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
531 + " parentHidden=" + w.isParentWindowHidden());
532 }
533
534 // If this view is GONE, then skip it -- keep the current frame, and let the caller know
535 // so they can ignore it if they want. (We do the normal layout for INVISIBLE windows,
536 // since that means "perform layout as normal, just don't display").
537 if (!gone || !w.mHaveFrame || w.mLayoutNeeded
538 || ((w.isConfigChanged() || w.setReportResizeHints())
539 && !w.isGoneForLayoutLw() &&
540 ((w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
541 (w.mHasSurface && w.mAppToken != null &&
542 w.mAppToken.layoutConfigChanges)))) {
543 if (!w.mLayoutAttached) {
544 if (mTmpInitial) {
545 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
546 w.mContentChanged = false;
547 }
548 if (w.mAttrs.type == TYPE_DREAM) {
549 // Don't layout windows behind a dream, so that if it does stuff like hide
550 // the status bar we won't get a bad transition when it goes away.
551 mTmpWindow = w;
552 }
553 w.mLayoutNeeded = false;
554 w.prelayout();
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200555 final boolean firstLayout = !w.isLaidOut();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000556 mService.mPolicy.layoutWindowLw(w, null, mDisplayFrames);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800557 w.mLayoutSeq = mService.mLayoutSeq;
558
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200559 // If this is the first layout, we need to initialize the last inset values as
560 // otherwise we'd immediately cause an unnecessary resize.
561 if (firstLayout) {
562 w.updateLastInsetValues();
563 }
564
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800565 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.mFrame
566 + " mContainingFrame=" + w.mContainingFrame
567 + " mDisplayFrame=" + w.mDisplayFrame);
568 }
569 }
570 };
571
572 private final Consumer<WindowState> mPerformLayoutAttached = w -> {
573 if (w.mLayoutAttached) {
574 if (DEBUG_LAYOUT) Slog.v(TAG, "2ND PASS " + w + " mHaveFrame=" + w.mHaveFrame
575 + " mViewVisibility=" + w.mViewVisibility
576 + " mRelayoutCalled=" + w.mRelayoutCalled);
577 // If this view is GONE, then skip it -- keep the current frame, and let the caller
578 // know so they can ignore it if they want. (We do the normal layout for INVISIBLE
579 // windows, since that means "perform layout as normal, just don't display").
580 if (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w)) {
581 return;
582 }
583 if ((w.mViewVisibility != GONE && w.mRelayoutCalled) || !w.mHaveFrame
584 || w.mLayoutNeeded) {
585 if (mTmpInitial) {
586 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
587 w.mContentChanged = false;
588 }
589 w.mLayoutNeeded = false;
590 w.prelayout();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000591 mService.mPolicy.layoutWindowLw(w, w.getParentWindow(), mDisplayFrames);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800592 w.mLayoutSeq = mService.mLayoutSeq;
593 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.mFrame
594 + " mContainingFrame=" + w.mContainingFrame
595 + " mDisplayFrame=" + w.mDisplayFrame);
596 }
597 } else if (w.mAttrs.type == TYPE_DREAM) {
598 // Don't layout windows behind a dream, so that if it does stuff like hide the
599 // status bar we won't get a bad transition when it goes away.
600 mTmpWindow = mTmpWindow2;
601 }
602 };
603
604 private final Predicate<WindowState> mComputeImeTargetPredicate = w -> {
605 if (DEBUG_INPUT_METHOD && mUpdateImeTarget) Slog.i(TAG_WM, "Checking window @" + w
606 + " fl=0x" + Integer.toHexString(w.mAttrs.flags));
607 return w.canBeImeTarget();
608 };
609
610 private final Consumer<WindowState> mApplyPostLayoutPolicy =
611 w -> mService.mPolicy.applyPostLayoutPolicyLw(w, w.mAttrs, w.getParentWindow(),
612 mService.mInputMethodTarget);
613
614 private final Consumer<WindowState> mApplySurfaceChangesTransaction = w -> {
615 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
616 final boolean obscuredChanged = w.mObscured !=
617 mTmpApplySurfaceChangesTransactionState.obscured;
618 final RootWindowContainer root = mService.mRoot;
619 // Only used if default window
620 final boolean someoneLosingFocus = !mService.mLosingFocus.isEmpty();
621
622 // Update effect.
623 w.mObscured = mTmpApplySurfaceChangesTransactionState.obscured;
624 if (!mTmpApplySurfaceChangesTransactionState.obscured) {
625 final boolean isDisplayed = w.isDisplayedLw();
626
627 if (isDisplayed && w.isObscuringDisplay()) {
628 // This window completely covers everything behind it, so we want to leave all
629 // of them as undimmed (for performance reasons).
630 root.mObscuringWindow = w;
631 mTmpApplySurfaceChangesTransactionState.obscured = true;
632 }
633
634 mTmpApplySurfaceChangesTransactionState.displayHasContent |=
635 root.handleNotObscuredLocked(w,
636 mTmpApplySurfaceChangesTransactionState.obscured,
637 mTmpApplySurfaceChangesTransactionState.syswin);
638
639 if (w.mHasSurface && isDisplayed) {
640 final int type = w.mAttrs.type;
641 if (type == TYPE_SYSTEM_DIALOG || type == TYPE_SYSTEM_ERROR
642 || (w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
643 mTmpApplySurfaceChangesTransactionState.syswin = true;
644 }
645 if (mTmpApplySurfaceChangesTransactionState.preferredRefreshRate == 0
646 && w.mAttrs.preferredRefreshRate != 0) {
647 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate
648 = w.mAttrs.preferredRefreshRate;
649 }
650 if (mTmpApplySurfaceChangesTransactionState.preferredModeId == 0
651 && w.mAttrs.preferredDisplayModeId != 0) {
652 mTmpApplySurfaceChangesTransactionState.preferredModeId
653 = w.mAttrs.preferredDisplayModeId;
654 }
655 }
656 }
657
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800658 if (isDefaultDisplay && obscuredChanged && w.isVisibleLw()
659 && mWallpaperController.isWallpaperTarget(w)) {
660 // This is the wallpaper target and its obscured state changed... make sure the
661 // current wallpaper's visibility has been updated accordingly.
662 mWallpaperController.updateWallpaperVisibility();
663 }
664
chaviw161ea3e2018-01-31 12:01:12 -0800665 w.handleWindowMovedIfNeeded();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800666
667 final WindowStateAnimator winAnimator = w.mWinAnimator;
668
669 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - done placing");
670 w.mContentChanged = false;
671
672 // Moved from updateWindowsAndWallpaperLocked().
673 if (w.mHasSurface) {
674 // Take care of the window being ready to display.
675 final boolean committed = winAnimator.commitFinishDrawingLocked();
676 if (isDefaultDisplay && committed) {
677 if (w.mAttrs.type == TYPE_DREAM) {
678 // HACK: When a dream is shown, it may at that point hide the lock screen.
679 // So we need to redo the layout to let the phone window manager make this
680 // happen.
681 pendingLayoutChanges |= FINISH_LAYOUT_REDO_LAYOUT;
682 if (DEBUG_LAYOUT_REPEATS) {
683 surfacePlacer.debugLayoutRepeats(
684 "dream and commitFinishDrawingLocked true",
685 pendingLayoutChanges);
686 }
687 }
688 if ((w.mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
689 if (DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
690 "First draw done in potential wallpaper target " + w);
691 root.mWallpaperMayChange = true;
692 pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
693 if (DEBUG_LAYOUT_REPEATS) {
694 surfacePlacer.debugLayoutRepeats(
695 "wallpaper and commitFinishDrawingLocked true",
696 pendingLayoutChanges);
697 }
698 }
699 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800700 }
701
702 final AppWindowToken atoken = w.mAppToken;
703 if (atoken != null) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100704 atoken.updateLetterbox(w);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800705 final boolean updateAllDrawn = atoken.updateDrawnWindowStates(w);
706 if (updateAllDrawn && !mTmpUpdateAllDrawn.contains(atoken)) {
707 mTmpUpdateAllDrawn.add(atoken);
708 }
709 }
710
711 if (isDefaultDisplay && someoneLosingFocus && w == mService.mCurrentFocus
712 && w.isDisplayedLw()) {
713 mTmpApplySurfaceChangesTransactionState.focusDisplayed = true;
714 }
715
716 w.updateResizingWindowIfNeeded();
717 };
718
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800719 /**
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800720 * Create new {@link DisplayContent} instance, add itself to the root window container and
721 * initialize direct children.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700722 * @param display May not be null.
Craig Mautnerdf88d732014-01-27 09:21:32 -0800723 * @param service You know.
Wale Ogunwale0303c572016-10-20 10:16:29 -0700724 * @param wallpaperController wallpaper windows controller used to adjust the positioning of the
725 * wallpaper windows in the window list.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700726 */
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700727 DisplayContent(Display display, WindowManagerService service,
Bryce Leef19cbe22018-02-02 15:09:21 -0800728 WallpaperController wallpaperController, DisplayWindowController controller) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100729 super(service);
Bryce Leef19cbe22018-02-02 15:09:21 -0800730 setController(controller);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800731 if (service.mRoot.getDisplayContent(display.getDisplayId()) != null) {
732 throw new IllegalArgumentException("Display with ID=" + display.getDisplayId()
733 + " already exists=" + service.mRoot.getDisplayContent(display.getDisplayId())
734 + " new=" + display);
735 }
736
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700737 mDisplay = display;
738 mDisplayId = display.getDisplayId();
Wale Ogunwale0303c572016-10-20 10:16:29 -0700739 mWallpaperController = wallpaperController;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700740 display.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700741 display.getMetrics(mDisplayMetrics);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700742 isDefaultDisplay = mDisplayId == DEFAULT_DISPLAY;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000743 mDisplayFrames = new DisplayFrames(mDisplayId, mDisplayInfo);
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -0700744 initializeDisplayBaseInfo();
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800745 mDividerControllerLocked = new DockedStackDividerController(service, this);
Winson Chung655332c2016-10-31 13:14:28 -0700746 mPinnedStackControllerLocked = new PinnedStackController(service, this);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700747
Robert Carrb1579c82017-09-05 14:54:47 -0700748 mSurfaceSize = Math.max(mBaseDisplayHeight, mBaseDisplayWidth);
749
750 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(mSession)
751 .setSize(mSurfaceSize, mSurfaceSize)
752 .setOpaque(true);
753 mWindowingLayer = b.setName("Display Root").build();
754 mOverlayLayer = b.setName("Display Overlays").build();
755
Robert Carrf59b8dd2017-10-02 18:58:36 -0700756 getPendingTransaction().setLayer(mWindowingLayer, 0)
Robert Carrb1579c82017-09-05 14:54:47 -0700757 .setLayerStack(mWindowingLayer, mDisplayId)
758 .show(mWindowingLayer)
759 .setLayer(mOverlayLayer, 1)
760 .setLayerStack(mOverlayLayer, mDisplayId)
761 .show(mOverlayLayer);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700762 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -0700763
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700764 // These are the only direct children we should ever have and they are permanent.
Wale Ogunwale3a931692016-11-02 16:49:48 -0700765 super.addChild(mBelowAppWindowsContainers, null);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700766 super.addChild(mTaskStackContainers, null);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700767 super.addChild(mAboveAppWindowsContainers, null);
768 super.addChild(mImeWindowsContainers, null);
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800769
770 // Add itself as a child to the root container.
771 mService.mRoot.addChild(this, null);
Bryce Leed1871262017-06-12 14:12:29 -0700772
773 // TODO(b/62541591): evaluate whether this is the best spot to declare the
774 // {@link DisplayContent} ready for use.
775 mDisplayReady = true;
776 }
777
778 boolean isReady() {
779 // The display is ready when the system and the individual display are both ready.
780 return mService.mDisplayReady && mDisplayReady;
Craig Mautner59c00972012-07-30 12:10:24 -0700781 }
782
783 int getDisplayId() {
784 return mDisplayId;
785 }
786
Wale Ogunwale02319a62016-09-26 15:21:22 -0700787 WindowToken getWindowToken(IBinder binder) {
788 return mTokenMap.get(binder);
789 }
790
791 AppWindowToken getAppWindowToken(IBinder binder) {
792 final WindowToken token = getWindowToken(binder);
793 if (token == null) {
794 return null;
795 }
796 return token.asAppWindowToken();
797 }
798
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700799 private void addWindowToken(IBinder binder, WindowToken token) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700800 final DisplayContent dc = mService.mRoot.getWindowTokenDisplay(token);
801 if (dc != null) {
802 // We currently don't support adding a window token to the display if the display
803 // already has the binder mapped to another token. If there is a use case for supporting
804 // this moving forward we will either need to merge the WindowTokens some how or have
805 // the binder map to a list of window tokens.
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700806 throw new IllegalArgumentException("Can't map token=" + token + " to display="
807 + getName() + " already mapped to display=" + dc + " tokens=" + dc.mTokenMap);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700808 }
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700809 if (binder == null) {
810 throw new IllegalArgumentException("Can't map token=" + token + " to display="
811 + getName() + " binder is null");
812 }
813 if (token == null) {
814 throw new IllegalArgumentException("Can't map null token to display="
815 + getName() + " binder=" + binder);
816 }
817
Wale Ogunwale02319a62016-09-26 15:21:22 -0700818 mTokenMap.put(binder, token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700819
820 if (token.asAppWindowToken() == null) {
821 // Add non-app token to container hierarchy on the display. App tokens are added through
822 // the parent container managing them (e.g. Tasks).
Wale Ogunwale3a931692016-11-02 16:49:48 -0700823 switch (token.windowType) {
824 case TYPE_WALLPAPER:
825 mBelowAppWindowsContainers.addChild(token);
826 break;
827 case TYPE_INPUT_METHOD:
828 case TYPE_INPUT_METHOD_DIALOG:
829 mImeWindowsContainers.addChild(token);
830 break;
831 default:
832 mAboveAppWindowsContainers.addChild(token);
833 break;
834 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700835 }
Wale Ogunwale02319a62016-09-26 15:21:22 -0700836 }
837
838 WindowToken removeWindowToken(IBinder binder) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700839 final WindowToken token = mTokenMap.remove(binder);
840 if (token != null && token.asAppWindowToken() == null) {
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800841 token.setExiting();
842 }
843 return token;
844 }
845
846 /** Changes the display the input window token is housed on to this one. */
847 void reParentWindowToken(WindowToken token) {
848 final DisplayContent prevDc = token.getDisplayContent();
849 if (prevDc == this) {
850 return;
851 }
Andrii Kulian6cc1a1d2016-12-27 23:52:59 -0800852 if (prevDc != null && prevDc.mTokenMap.remove(token.token) != null
853 && token.asAppWindowToken() == null) {
854 // Removed the token from the map, but made sure it's not an app token before removing
855 // from parent.
856 token.getParent().removeChild(token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700857 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800858
859 addWindowToken(token.token, token);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700860 }
861
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700862 void removeAppToken(IBinder binder) {
863 final WindowToken token = removeWindowToken(binder);
864 if (token == null) {
865 Slog.w(TAG_WM, "removeAppToken: Attempted to remove non-existing token: " + binder);
866 return;
867 }
868
869 final AppWindowToken appToken = token.asAppWindowToken();
870
871 if (appToken == null) {
872 Slog.w(TAG_WM, "Attempted to remove non-App token: " + binder + " token=" + token);
873 return;
874 }
875
876 appToken.onRemovedFromDisplay();
877 }
878
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700879 Display getDisplay() {
880 return mDisplay;
881 }
882
Craig Mautner59c00972012-07-30 12:10:24 -0700883 DisplayInfo getDisplayInfo() {
884 return mDisplayInfo;
885 }
886
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700887 DisplayMetrics getDisplayMetrics() {
888 return mDisplayMetrics;
889 }
890
Andrii Kulian8ee72852017-03-10 10:36:45 -0800891 int getRotation() {
892 return mRotation;
893 }
894
895 void setRotation(int newRotation) {
896 mRotation = newRotation;
897 }
898
899 int getLastOrientation() {
900 return mLastOrientation;
901 }
902
903 void setLastOrientation(int orientation) {
904 mLastOrientation = orientation;
905 }
906
907 boolean getAltOrientation() {
908 return mAltOrientation;
909 }
910
911 void setAltOrientation(boolean altOrientation) {
912 mAltOrientation = altOrientation;
913 }
914
915 int getLastWindowForcedOrientation() {
916 return mLastWindowForcedOrientation;
917 }
918
Andrii Kulian06d07d62017-03-14 11:11:47 -0700919 /**
920 * Update rotation of the display.
921 *
922 * Returns true if the rotation has been changed. In this case YOU MUST CALL
923 * {@link WindowManagerService#sendNewConfiguration(int)} TO UNFREEZE THE SCREEN.
924 */
925 boolean updateRotationUnchecked(boolean inTransaction) {
926 if (mService.mDeferredRotationPauseCount > 0) {
927 // Rotation updates have been paused temporarily. Defer the update until
928 // updates have been resumed.
929 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, rotation is paused.");
930 return false;
931 }
932
933 ScreenRotationAnimation screenRotationAnimation =
934 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
935 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
936 // Rotation updates cannot be performed while the previous rotation change
937 // animation is still in progress. Skip this update. We will try updating
938 // again after the animation is finished and the display is unfrozen.
939 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, animation in progress.");
940 return false;
941 }
942 if (mService.mDisplayFrozen) {
943 // Even if the screen rotation animation has finished (e.g. isAnimating
944 // returns false), there is still some time where we haven't yet unfrozen
945 // the display. We also need to abort rotation here.
946 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
947 "Deferring rotation, still finishing previous rotation");
948 return false;
949 }
950
951 if (!mService.mDisplayEnabled) {
952 // No point choosing a rotation if the display is not enabled.
953 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, display is not enabled.");
954 return false;
955 }
956
957 final int oldRotation = mRotation;
958 final int lastOrientation = mLastOrientation;
959 final boolean oldAltOrientation = mAltOrientation;
960 int rotation = mService.mPolicy.rotationForOrientationLw(lastOrientation, oldRotation);
Robert Carr0e007272017-10-02 13:00:55 -0700961 boolean mayRotateSeamlessly = mService.mPolicy.shouldRotateSeamlessly(oldRotation,
Robert Carr897215d2017-03-29 12:25:50 -0700962 rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -0700963
Robert Carr0e007272017-10-02 13:00:55 -0700964 if (mayRotateSeamlessly) {
Andrii Kulian06d07d62017-03-14 11:11:47 -0700965 final WindowState seamlessRotated = getWindow((w) -> w.mSeamlesslyRotated);
966 if (seamlessRotated != null) {
967 // We can't rotate (seamlessly or not) while waiting for the last seamless rotation
968 // to complete (that is, waiting for windows to redraw). It's tempting to check
969 // w.mSeamlessRotationCount but that could be incorrect in the case of
970 // window-removal.
971 return false;
972 }
Robert Carr0e007272017-10-02 13:00:55 -0700973
974 // In the presence of the PINNED stack or System Alert
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700975 // windows we unfortunately can not seamlessly rotate.
Wale Ogunwale61911492017-10-11 08:50:50 -0700976 if (hasPinnedStack()) {
Robert Carr0e007272017-10-02 13:00:55 -0700977 mayRotateSeamlessly = false;
978 }
979 for (int i = 0; i < mService.mSessions.size(); i++) {
980 if (mService.mSessions.valueAt(i).hasAlertWindowSurfaces()) {
981 mayRotateSeamlessly = false;
982 break;
983 }
984 }
Andrii Kulian06d07d62017-03-14 11:11:47 -0700985 }
Robert Carr0e007272017-10-02 13:00:55 -0700986 final boolean rotateSeamlessly = mayRotateSeamlessly;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700987
988 // TODO: Implement forced rotation changes.
989 // Set mAltOrientation to indicate that the application is receiving
990 // an orientation that has different metrics than it expected.
991 // eg. Portrait instead of Landscape.
992
993 final boolean altOrientation = !mService.mPolicy.rotationHasCompatibleMetricsLw(
994 lastOrientation, rotation);
995
996 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Selected orientation " + lastOrientation
997 + ", got rotation " + rotation + " which has "
998 + (altOrientation ? "incompatible" : "compatible") + " metrics");
999
1000 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1001 // No change.
1002 return false;
1003 }
1004
1005 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Rotation changed to " + rotation
1006 + (altOrientation ? " (alt)" : "") + " from " + oldRotation
1007 + (oldAltOrientation ? " (alt)" : "") + ", lastOrientation=" + lastOrientation);
1008
1009 if (DisplayContent.deltaRotation(rotation, oldRotation) != 2) {
1010 mService.mWaitingForConfig = true;
1011 }
1012
1013 mRotation = rotation;
1014 mAltOrientation = altOrientation;
1015 if (isDefaultDisplay) {
1016 mService.mPolicy.setRotationLw(rotation);
1017 }
1018
1019 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_ACTIVE;
1020 mService.mH.removeMessages(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT);
1021 mService.mH.sendEmptyMessageDelayed(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT,
1022 WINDOW_FREEZE_TIMEOUT_DURATION);
1023
1024 setLayoutNeeded();
1025 final int[] anim = new int[2];
Robert Carrf59b8dd2017-10-02 18:58:36 -07001026 mService.mPolicy.selectRotationAnimationLw(anim);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001027
1028 if (!rotateSeamlessly) {
Bryce Lee8f853582017-06-05 17:25:59 -07001029 mService.startFreezingDisplayLocked(inTransaction, anim[0], anim[1], this);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001030 // startFreezingDisplayLocked can reset the ScreenRotationAnimation.
1031 screenRotationAnimation = mService.mAnimator.getScreenRotationAnimationLocked(
1032 mDisplayId);
1033 } else {
1034 // The screen rotation animation uses a screenshot to freeze the screen
1035 // while windows resize underneath.
1036 // When we are rotating seamlessly, we allow the elements to transition
1037 // to their rotated state independently and without a freeze required.
1038 screenRotationAnimation = null;
1039
1040 // We have to reset this in case a window was removed before it
1041 // finished seamless rotation.
1042 mService.mSeamlessRotationCount = 0;
1043 }
1044
1045 // We need to update our screen size information to match the new rotation. If the rotation
1046 // has actually changed then this method will return true and, according to the comment at
1047 // the top of the method, the caller is obligated to call computeNewConfigurationLocked().
1048 // By updating the Display info here it will be available to
1049 // #computeScreenConfiguration() later.
1050 updateDisplayAndOrientation(getConfiguration().uiMode);
1051
1052 if (!inTransaction) {
1053 if (SHOW_TRANSACTIONS) {
1054 Slog.i(TAG_WM, ">>> OPEN TRANSACTION setRotationUnchecked");
1055 }
1056 mService.openSurfaceTransaction();
1057 }
1058 try {
1059 // NOTE: We disable the rotation in the emulator because
1060 // it doesn't support hardware OpenGL emulation yet.
1061 if (CUSTOM_SCREEN_ROTATION && screenRotationAnimation != null
1062 && screenRotationAnimation.hasScreenshot()) {
Robert Carrb1579c82017-09-05 14:54:47 -07001063 if (screenRotationAnimation.setRotationInTransaction(rotation,
Andrii Kulian06d07d62017-03-14 11:11:47 -07001064 MAX_ANIMATION_DURATION, mService.getTransitionAnimationScaleLocked(),
1065 mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight)) {
1066 mService.scheduleAnimationLocked();
1067 }
1068 }
1069
1070 if (rotateSeamlessly) {
1071 forAllWindows(w -> {
1072 w.mWinAnimator.seamlesslyRotateWindow(oldRotation, rotation);
1073 }, true /* traverseTopToBottom */);
1074 }
1075
1076 mService.mDisplayManagerInternal.performTraversalInTransactionFromWindowManager();
1077 } finally {
1078 if (!inTransaction) {
Adrian Roos111aff92017-09-27 18:11:46 +02001079 mService.closeSurfaceTransaction("setRotationUnchecked");
Andrii Kulian06d07d62017-03-14 11:11:47 -07001080 if (SHOW_LIGHT_TRANSACTIONS) {
1081 Slog.i(TAG_WM, "<<< CLOSE TRANSACTION setRotationUnchecked");
1082 }
1083 }
1084 }
1085
1086 forAllWindows(w -> {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001087 if (w.mHasSurface && !rotateSeamlessly) {
1088 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Set mOrientationChanging of " + w);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001089 w.setOrientationChanging(true);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001090 mService.mRoot.mOrientationChangeComplete = false;
1091 w.mLastFreezeDuration = 0;
1092 }
1093 w.mReportOrientationChanged = true;
1094 }, true /* traverseTopToBottom */);
1095
1096 if (rotateSeamlessly) {
1097 mService.mH.removeMessages(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT);
1098 mService.mH.sendEmptyMessageDelayed(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT,
1099 SEAMLESS_ROTATION_TIMEOUT_DURATION);
1100 }
1101
1102 for (int i = mService.mRotationWatchers.size() - 1; i >= 0; i--) {
1103 final WindowManagerService.RotationWatcher rotationWatcher
1104 = mService.mRotationWatchers.get(i);
1105 if (rotationWatcher.mDisplayId == mDisplayId) {
1106 try {
1107 rotationWatcher.mWatcher.onRotationChanged(rotation);
1108 } catch (RemoteException e) {
1109 // Ignore
1110 }
1111 }
1112 }
1113
1114 // TODO (multi-display): Magnification is supported only for the default display.
1115 // Announce rotation only if we will not animate as we already have the
1116 // windows in final state. Otherwise, we make this call at the rotation end.
1117 if (screenRotationAnimation == null && mService.mAccessibilityController != null
1118 && isDefaultDisplay) {
1119 mService.mAccessibilityController.onRotationChangedLocked(this);
1120 }
1121
1122 return true;
1123 }
1124
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001125 void configureDisplayPolicy() {
1126 mService.mPolicy.setInitialDisplaySize(getDisplay(),
1127 mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1128
1129 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo);
1130 }
1131
Andrii Kulian06d07d62017-03-14 11:11:47 -07001132 /**
1133 * Update {@link #mDisplayInfo} and other internal variables when display is rotated or config
1134 * changed.
1135 * Do not call if {@link WindowManagerService#mDisplayReady} == false.
1136 */
1137 private DisplayInfo updateDisplayAndOrientation(int uiMode) {
1138 // Use the effective "visual" dimensions based on current rotation
1139 final boolean rotated = (mRotation == ROTATION_90 || mRotation == ROTATION_270);
1140 final int realdw = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
1141 final int realdh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
1142 int dw = realdw;
1143 int dh = realdh;
1144
1145 if (mAltOrientation) {
1146 if (realdw > realdh) {
1147 // Turn landscape into portrait.
1148 int maxw = (int)(realdh/1.3f);
1149 if (maxw < realdw) {
1150 dw = maxw;
1151 }
1152 } else {
1153 // Turn portrait into landscape.
1154 int maxh = (int)(realdw/1.3f);
1155 if (maxh < realdh) {
1156 dh = maxh;
1157 }
1158 }
1159 }
1160
1161 // Update application display metrics.
Adrian Roos11c25582018-02-19 18:06:36 +01001162 final DisplayCutout displayCutout = calculateDisplayCutoutForRotation(
1163 mRotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001164 final int appWidth = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, mRotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001165 mDisplayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001166 final int appHeight = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, mRotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001167 mDisplayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001168 mDisplayInfo.rotation = mRotation;
1169 mDisplayInfo.logicalWidth = dw;
1170 mDisplayInfo.logicalHeight = dh;
1171 mDisplayInfo.logicalDensityDpi = mBaseDisplayDensity;
1172 mDisplayInfo.appWidth = appWidth;
1173 mDisplayInfo.appHeight = appHeight;
1174 if (isDefaultDisplay) {
1175 mDisplayInfo.getLogicalMetrics(mRealDisplayMetrics,
1176 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO, null);
1177 }
Adrian Roos11c25582018-02-19 18:06:36 +01001178 mDisplayInfo.displayCutout = displayCutout;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001179 mDisplayInfo.getAppMetrics(mDisplayMetrics);
1180 if (mDisplayScalingDisabled) {
1181 mDisplayInfo.flags |= Display.FLAG_SCALING_DISABLED;
1182 } else {
1183 mDisplayInfo.flags &= ~Display.FLAG_SCALING_DISABLED;
1184 }
1185
1186 mService.mDisplayManagerInternal.setDisplayInfoOverrideFromWindowManager(mDisplayId,
1187 mDisplayInfo);
1188
1189 mBaseDisplayRect.set(0, 0, dw, dh);
1190
1191 if (isDefaultDisplay) {
1192 mCompatibleScreenScale = CompatibilityInfo.computeCompatibleScaling(mDisplayMetrics,
1193 mCompatDisplayMetrics);
1194 }
Bryce Leef3c6a472017-11-14 14:53:06 -08001195
1196 updateBounds();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001197 return mDisplayInfo;
1198 }
1199
Adrian Roos11c25582018-02-19 18:06:36 +01001200 DisplayCutout calculateDisplayCutoutForRotation(int rotation) {
Adrian Roos1cf585052018-01-03 18:43:27 +01001201 final DisplayCutout cutout = mInitialDisplayCutout;
Adrian Roos24264212018-02-19 16:26:15 +01001202 if (cutout == null || cutout == DisplayCutout.NO_CUTOUT) {
Adrian Roos1cf585052018-01-03 18:43:27 +01001203 return cutout;
1204 }
Adrian Roos11c25582018-02-19 18:06:36 +01001205 if (rotation == ROTATION_0) {
Adrian Roos24264212018-02-19 16:26:15 +01001206 return cutout.computeSafeInsets(mInitialDisplayWidth, mInitialDisplayHeight);
1207 }
Adrian Roosbed538e2018-02-21 17:50:07 +01001208 final boolean rotated = (rotation == ROTATION_90 || rotation == ROTATION_270);
Adrian Roos1cf585052018-01-03 18:43:27 +01001209 final Path bounds = cutout.getBounds().getBoundaryPath();
Adrian Roos11c25582018-02-19 18:06:36 +01001210 transformPhysicalToLogicalCoordinates(rotation, mInitialDisplayWidth, mInitialDisplayHeight,
1211 mTmpMatrix);
Adrian Roos1cf585052018-01-03 18:43:27 +01001212 bounds.transform(mTmpMatrix);
Adrian Roos24264212018-02-19 16:26:15 +01001213 return DisplayCutout.fromBounds(bounds).computeSafeInsets(
1214 rotated ? mInitialDisplayHeight : mInitialDisplayWidth,
1215 rotated ? mInitialDisplayWidth : mInitialDisplayHeight);
Adrian Roos1cf585052018-01-03 18:43:27 +01001216 }
1217
Andrii Kulian06d07d62017-03-14 11:11:47 -07001218 /**
1219 * Compute display configuration based on display properties and policy settings.
1220 * Do not call if mDisplayReady == false.
1221 */
1222 void computeScreenConfiguration(Configuration config) {
1223 final DisplayInfo displayInfo = updateDisplayAndOrientation(config.uiMode);
1224
1225 final int dw = displayInfo.logicalWidth;
1226 final int dh = displayInfo.logicalHeight;
Wale Ogunwale687b4272017-07-27 02:56:23 -07001227 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE;
1228 // TODO: Probably best to set this based on some setting in the display content object,
1229 // so the display can be configured for things like fullscreen.
1230 config.windowConfiguration.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Bryce Leec1f2f2a2017-06-22 15:29:42 -07001231
Adrian Roos11c25582018-02-19 18:06:36 +01001232 final float density = mDisplayMetrics.density;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001233 config.screenWidthDp =
1234 (int)(mService.mPolicy.getConfigDisplayWidth(dw, dh, displayInfo.rotation,
Adrian Roos11c25582018-02-19 18:06:36 +01001235 config.uiMode, mDisplayId, displayInfo.displayCutout) / density);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001236 config.screenHeightDp =
1237 (int)(mService.mPolicy.getConfigDisplayHeight(dw, dh, displayInfo.rotation,
Adrian Roos11c25582018-02-19 18:06:36 +01001238 config.uiMode, mDisplayId, displayInfo.displayCutout) / density);
Bryce Lee7566d762017-03-30 09:34:15 -07001239
Adrian Roos11c25582018-02-19 18:06:36 +01001240 mService.mPolicy.getNonDecorInsetsLw(displayInfo.rotation, dw, dh,
1241 displayInfo.displayCutout, mTmpRect);
Bryce Lee7566d762017-03-30 09:34:15 -07001242 final int leftInset = mTmpRect.left;
1243 final int topInset = mTmpRect.top;
1244 // appBounds at the root level should mirror the app screen size.
Wale Ogunwale822e5122017-07-26 06:02:24 -07001245 config.windowConfiguration.setAppBounds(leftInset /* left */, topInset /* top */,
1246 leftInset + displayInfo.appWidth /* right */,
1247 topInset + displayInfo.appHeight /* bottom */);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001248 final boolean rotated = (displayInfo.rotation == Surface.ROTATION_90
1249 || displayInfo.rotation == Surface.ROTATION_270);
1250
1251 computeSizeRangesAndScreenLayout(displayInfo, mDisplayId, rotated, config.uiMode, dw, dh,
Adrian Roos11c25582018-02-19 18:06:36 +01001252 density, config);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001253
1254 config.screenLayout = (config.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK)
1255 | ((displayInfo.flags & Display.FLAG_ROUND) != 0
1256 ? Configuration.SCREENLAYOUT_ROUND_YES
1257 : Configuration.SCREENLAYOUT_ROUND_NO);
1258
1259 config.compatScreenWidthDp = (int)(config.screenWidthDp / mCompatibleScreenScale);
1260 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);
1261 config.compatSmallestScreenWidthDp = computeCompatSmallestWidth(rotated, config.uiMode, dw,
1262 dh, mDisplayId);
1263 config.densityDpi = displayInfo.logicalDensityDpi;
1264
1265 config.colorMode =
1266 (displayInfo.isHdr()
1267 ? Configuration.COLOR_MODE_HDR_YES
1268 : Configuration.COLOR_MODE_HDR_NO)
Romain Guye89d0bb2017-06-20 12:23:42 -07001269 | (displayInfo.isWideColorGamut() && mService.hasWideColorGamutSupport()
Andrii Kulian06d07d62017-03-14 11:11:47 -07001270 ? Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_YES
1271 : Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO);
1272
1273 // Update the configuration based on available input devices, lid switch,
1274 // and platform configuration.
1275 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1276 config.keyboard = Configuration.KEYBOARD_NOKEYS;
1277 config.navigation = Configuration.NAVIGATION_NONAV;
1278
1279 int keyboardPresence = 0;
1280 int navigationPresence = 0;
1281 final InputDevice[] devices = mService.mInputManager.getInputDevices();
1282 final int len = devices != null ? devices.length : 0;
1283 for (int i = 0; i < len; i++) {
1284 InputDevice device = devices[i];
1285 if (!device.isVirtual()) {
1286 final int sources = device.getSources();
1287 final int presenceFlag = device.isExternal() ?
1288 WindowManagerPolicy.PRESENCE_EXTERNAL :
1289 WindowManagerPolicy.PRESENCE_INTERNAL;
1290
1291 // TODO(multi-display): Configure on per-display basis.
1292 if (mService.mIsTouchDevice) {
1293 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
1294 InputDevice.SOURCE_TOUCHSCREEN) {
1295 config.touchscreen = Configuration.TOUCHSCREEN_FINGER;
1296 }
1297 } else {
1298 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1299 }
1300
1301 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
1302 config.navigation = Configuration.NAVIGATION_TRACKBALL;
1303 navigationPresence |= presenceFlag;
1304 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
1305 && config.navigation == Configuration.NAVIGATION_NONAV) {
1306 config.navigation = Configuration.NAVIGATION_DPAD;
1307 navigationPresence |= presenceFlag;
1308 }
1309
1310 if (device.getKeyboardType() == InputDevice.KEYBOARD_TYPE_ALPHABETIC) {
1311 config.keyboard = Configuration.KEYBOARD_QWERTY;
1312 keyboardPresence |= presenceFlag;
1313 }
1314 }
1315 }
1316
1317 if (config.navigation == Configuration.NAVIGATION_NONAV && mService.mHasPermanentDpad) {
1318 config.navigation = Configuration.NAVIGATION_DPAD;
1319 navigationPresence |= WindowManagerPolicy.PRESENCE_INTERNAL;
1320 }
1321
1322 // Determine whether a hard keyboard is available and enabled.
1323 // TODO(multi-display): Should the hardware keyboard be tied to a display or to a device?
1324 boolean hardKeyboardAvailable = config.keyboard != Configuration.KEYBOARD_NOKEYS;
1325 if (hardKeyboardAvailable != mService.mHardKeyboardAvailable) {
1326 mService.mHardKeyboardAvailable = hardKeyboardAvailable;
1327 mService.mH.removeMessages(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1328 mService.mH.sendEmptyMessage(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1329 }
1330
1331 // Let the policy update hidden states.
1332 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_NO;
1333 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_NO;
1334 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_NO;
1335 mService.mPolicy.adjustConfigurationLw(config, keyboardPresence, navigationPresence);
1336 }
1337
1338 private int computeCompatSmallestWidth(boolean rotated, int uiMode, int dw, int dh,
1339 int displayId) {
1340 mTmpDisplayMetrics.setTo(mDisplayMetrics);
1341 final DisplayMetrics tmpDm = mTmpDisplayMetrics;
1342 final int unrotDw, unrotDh;
1343 if (rotated) {
1344 unrotDw = dh;
1345 unrotDh = dw;
1346 } else {
1347 unrotDw = dw;
1348 unrotDh = dh;
1349 }
1350 int sw = reduceCompatConfigWidthSize(0, Surface.ROTATION_0, uiMode, tmpDm, unrotDw, unrotDh,
1351 displayId);
1352 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_90, uiMode, tmpDm, unrotDh, unrotDw,
1353 displayId);
1354 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_180, uiMode, tmpDm, unrotDw, unrotDh,
1355 displayId);
1356 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_270, uiMode, tmpDm, unrotDh, unrotDw,
1357 displayId);
1358 return sw;
1359 }
1360
1361 private int reduceCompatConfigWidthSize(int curSize, int rotation, int uiMode,
1362 DisplayMetrics dm, int dw, int dh, int displayId) {
1363 dm.noncompatWidthPixels = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001364 displayId, mDisplayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001365 dm.noncompatHeightPixels = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation,
Adrian Roos11c25582018-02-19 18:06:36 +01001366 uiMode, displayId, mDisplayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001367 float scale = CompatibilityInfo.computeCompatibleScaling(dm, null);
1368 int size = (int)(((dm.noncompatWidthPixels / scale) / dm.density) + .5f);
1369 if (curSize == 0 || size < curSize) {
1370 curSize = size;
1371 }
1372 return curSize;
1373 }
1374
1375 private void computeSizeRangesAndScreenLayout(DisplayInfo displayInfo, int displayId,
1376 boolean rotated, int uiMode, int dw, int dh, float density, Configuration outConfig) {
1377
1378 // We need to determine the smallest width that will occur under normal
1379 // operation. To this, start with the base screen size and compute the
1380 // width under the different possible rotations. We need to un-rotate
1381 // the current screen dimensions before doing this.
1382 int unrotDw, unrotDh;
1383 if (rotated) {
1384 unrotDw = dh;
1385 unrotDh = dw;
1386 } else {
1387 unrotDw = dw;
1388 unrotDh = dh;
1389 }
1390 displayInfo.smallestNominalAppWidth = 1<<30;
1391 displayInfo.smallestNominalAppHeight = 1<<30;
1392 displayInfo.largestNominalAppWidth = 0;
1393 displayInfo.largestNominalAppHeight = 0;
1394 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_0, uiMode, unrotDw,
1395 unrotDh);
1396 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_90, uiMode, unrotDh,
1397 unrotDw);
1398 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_180, uiMode, unrotDw,
1399 unrotDh);
1400 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_270, uiMode, unrotDh,
1401 unrotDw);
1402 int sl = Configuration.resetScreenLayout(outConfig.screenLayout);
1403 sl = reduceConfigLayout(sl, Surface.ROTATION_0, density, unrotDw, unrotDh, uiMode,
1404 displayId);
1405 sl = reduceConfigLayout(sl, Surface.ROTATION_90, density, unrotDh, unrotDw, uiMode,
1406 displayId);
1407 sl = reduceConfigLayout(sl, Surface.ROTATION_180, density, unrotDw, unrotDh, uiMode,
1408 displayId);
1409 sl = reduceConfigLayout(sl, Surface.ROTATION_270, density, unrotDh, unrotDw, uiMode,
1410 displayId);
1411 outConfig.smallestScreenWidthDp = (int)(displayInfo.smallestNominalAppWidth / density);
1412 outConfig.screenLayout = sl;
1413 }
1414
1415 private int reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh,
1416 int uiMode, int displayId) {
1417 // Get the app screen size at this rotation.
Adrian Roos11c25582018-02-19 18:06:36 +01001418 int w = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode, displayId,
1419 mDisplayInfo.displayCutout);
1420 int h = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode, displayId,
1421 mDisplayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001422
1423 // Compute the screen layout size class for this rotation.
1424 int longSize = w;
1425 int shortSize = h;
1426 if (longSize < shortSize) {
1427 int tmp = longSize;
1428 longSize = shortSize;
1429 shortSize = tmp;
1430 }
1431 longSize = (int)(longSize/density);
1432 shortSize = (int)(shortSize/density);
1433 return Configuration.reduceScreenLayout(curLayout, longSize, shortSize);
1434 }
1435
1436 private void adjustDisplaySizeRanges(DisplayInfo displayInfo, int displayId, int rotation,
1437 int uiMode, int dw, int dh) {
Adrian Roos11c25582018-02-19 18:06:36 +01001438 final DisplayCutout displayCutout = calculateDisplayCutoutForRotation(rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001439 final int width = mService.mPolicy.getConfigDisplayWidth(dw, dh, rotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001440 displayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001441 if (width < displayInfo.smallestNominalAppWidth) {
1442 displayInfo.smallestNominalAppWidth = width;
1443 }
1444 if (width > displayInfo.largestNominalAppWidth) {
1445 displayInfo.largestNominalAppWidth = width;
1446 }
1447 final int height = mService.mPolicy.getConfigDisplayHeight(dw, dh, rotation, uiMode,
Adrian Roos11c25582018-02-19 18:06:36 +01001448 displayId, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001449 if (height < displayInfo.smallestNominalAppHeight) {
1450 displayInfo.smallestNominalAppHeight = height;
1451 }
1452 if (height > displayInfo.largestNominalAppHeight) {
1453 displayInfo.largestNominalAppHeight = height;
1454 }
1455 }
1456
Jorim Jaggi61f39a72015-10-29 16:54:18 +01001457 DockedStackDividerController getDockedDividerController() {
1458 return mDividerControllerLocked;
1459 }
1460
Winson Chung655332c2016-10-31 13:14:28 -07001461 PinnedStackController getPinnedStackController() {
1462 return mPinnedStackControllerLocked;
1463 }
1464
Jeff Browna506a6e2013-06-04 00:02:38 -07001465 /**
1466 * Returns true if the specified UID has access to this display.
1467 */
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001468 boolean hasAccess(int uid) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001469 return mDisplay.hasAccess(uid);
1470 }
1471
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001472 boolean isPrivate() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001473 return (mDisplay.getFlags() & FLAG_PRIVATE) != 0;
keunyounga446bf02013-06-21 19:07:57 -07001474 }
1475
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001476 TaskStack getHomeStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001477 return mTaskStackContainers.getHomeStack();
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001478 }
1479
Wale Ogunwale61911492017-10-11 08:50:50 -07001480 /**
1481 * @return The primary split-screen stack, but only if it is visible, and {@code null} otherwise.
1482 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001483 TaskStack getSplitScreenPrimaryStack() {
1484 TaskStack stack = mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001485 return (stack != null && stack.isVisible()) ? stack : null;
1486 }
1487
1488 /**
Matthew Ng64e77cf2017-10-31 14:01:31 -07001489 * Like {@link #getSplitScreenPrimaryStack}, but also returns the stack if it's currently
Wale Ogunwale61911492017-10-11 08:50:50 -07001490 * not visible.
1491 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001492 TaskStack getSplitScreenPrimaryStackIgnoringVisibility() {
1493 return mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001494 }
1495
1496 TaskStack getPinnedStack() {
1497 return mTaskStackContainers.getPinnedStack();
1498 }
1499
1500 private boolean hasPinnedStack() {
1501 return mTaskStackContainers.getPinnedStack() != null;
Chong Zhangd9d35bd2016-08-04 17:55:21 -07001502 }
1503
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001504 /**
1505 * Returns the topmost stack on the display that is compatible with the input windowing mode.
1506 * Null is no compatible stack on the display.
1507 */
Wale Ogunwale30e441d2017-11-09 08:28:45 -08001508 TaskStack getTopStackInWindowingMode(int windowingMode) {
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001509 return getStack(windowingMode, ACTIVITY_TYPE_UNDEFINED);
1510 }
1511
1512 /**
1513 * Returns the topmost stack on the display that is compatible with the input windowing mode and
1514 * activity type. Null is no compatible stack on the display.
1515 */
Wale Ogunwale68278562017-09-23 17:13:55 -07001516 TaskStack getStack(int windowingMode, int activityType) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001517 return mTaskStackContainers.getStack(windowingMode, activityType);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001518 }
1519
Bryce Lee48f4b572017-04-10 10:54:15 -07001520 @VisibleForTesting
Wale Ogunwale61911492017-10-11 08:50:50 -07001521 TaskStack getTopStack() {
1522 return mTaskStackContainers.getTopStack();
Bryce Lee48f4b572017-04-10 10:54:15 -07001523 }
1524
Winson Chunge2d72172018-01-25 17:46:20 +00001525 ArrayList<Task> getVisibleTasks() {
1526 return mTaskStackContainers.getVisibleTasks();
1527 }
1528
Wale Ogunwale61911492017-10-11 08:50:50 -07001529 void onStackWindowingModeChanged(TaskStack stack) {
1530 mTaskStackContainers.onStackWindowingModeChanged(stack);
Bryce Lee48f4b572017-04-10 10:54:15 -07001531 }
1532
Andrii Kulian441e4492016-09-29 15:25:00 -07001533 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -07001534 public void onConfigurationChanged(Configuration newParentConfig) {
Andrii Kulian441e4492016-09-29 15:25:00 -07001535 super.onConfigurationChanged(newParentConfig);
1536
Andrii Kulian3a507b52016-09-19 18:14:12 -07001537 // The display size information is heavily dependent on the resources in the current
1538 // configuration, so we need to reconfigure it every time the configuration changes.
1539 // See {@link PhoneWindowManager#setInitialDisplaySize}...sigh...
1540 mService.reconfigureDisplayLocked(this);
1541
Bryce Leef3c6a472017-11-14 14:53:06 -08001542 final DockedStackDividerController dividerController = getDockedDividerController();
1543
1544 if (dividerController != null) {
1545 getDockedDividerController().onConfigurationChanged();
1546 }
1547
1548 final PinnedStackController pinnedStackController = getPinnedStackController();
1549
1550 if (pinnedStackController != null) {
1551 getPinnedStackController().onConfigurationChanged();
1552 }
Andrii Kulian441e4492016-09-29 15:25:00 -07001553 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001554
Andrii Kulian441e4492016-09-29 15:25:00 -07001555 /**
1556 * Callback used to trigger bounds update after configuration change and get ids of stacks whose
1557 * bounds were updated.
1558 */
Bryce Leeaea60d22018-01-31 14:42:15 -08001559 void updateStackBoundsAfterConfigChange(@NonNull List<TaskStack> changedStackList) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001560 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1561 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Andrii Kulian441e4492016-09-29 15:25:00 -07001562 if (stack.updateBoundsAfterConfigChange()) {
Bryce Leeaea60d22018-01-31 14:42:15 -08001563 changedStackList.add(stack);
Andrii Kulian3a507b52016-09-19 18:14:12 -07001564 }
1565 }
Winson Chung32c566f2017-04-11 18:31:21 -07001566
1567 // If there was no pinned stack, we still need to notify the controller of the display info
1568 // update as a result of the config change. We do this here to consolidate the flow between
1569 // changes when there is and is not a stack.
Wale Ogunwale61911492017-10-11 08:50:50 -07001570 if (!hasPinnedStack()) {
Winson Chung32c566f2017-04-11 18:31:21 -07001571 mPinnedStackControllerLocked.onDisplayInfoChanged();
1572 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001573 }
1574
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001575 @Override
1576 boolean fillsParent() {
1577 return true;
1578 }
1579
1580 @Override
1581 boolean isVisible() {
1582 return true;
1583 }
1584
1585 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001586 void onAppTransitionDone() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001587 super.onAppTransitionDone();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001588 mService.mWindowsChanged = true;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001589 }
1590
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001591 @Override
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001592 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1593 // Special handling so we can process IME windows with #forAllImeWindows above their IME
1594 // target, or here in order if there isn't an IME target.
1595 if (traverseTopToBottom) {
1596 for (int i = mChildren.size() - 1; i >= 0; --i) {
1597 final DisplayChildWindowContainer child = mChildren.get(i);
1598 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null) {
1599 // In this case the Ime windows will be processed above their target so we skip
1600 // here.
1601 continue;
1602 }
1603 if (child.forAllWindows(callback, traverseTopToBottom)) {
1604 return true;
1605 }
1606 }
1607 } else {
1608 final int count = mChildren.size();
1609 for (int i = 0; i < count; i++) {
1610 final DisplayChildWindowContainer child = mChildren.get(i);
1611 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null) {
1612 // In this case the Ime windows will be processed above their target so we skip
1613 // here.
1614 continue;
1615 }
1616 if (child.forAllWindows(callback, traverseTopToBottom)) {
1617 return true;
1618 }
1619 }
1620 }
1621 return false;
1622 }
1623
1624 boolean forAllImeWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1625 return mImeWindowsContainers.forAllWindows(callback, traverseTopToBottom);
1626 }
1627
Wale Ogunwale399c8692017-05-08 14:22:42 -07001628 @Override
1629 int getOrientation() {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001630 final WindowManagerPolicy policy = mService.mPolicy;
1631
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001632 if (mService.mDisplayFrozen) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08001633 if (mLastWindowForcedOrientation != SCREEN_ORIENTATION_UNSPECIFIED) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001634 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulian8ee72852017-03-10 10:36:45 -08001635 "Display is frozen, return " + mLastWindowForcedOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001636 // If the display is frozen, some activities may be in the middle of restarting, and
1637 // thus have removed their old window. If the window has the flag to hide the lock
1638 // screen, then the lock screen can re-appear and inflict its own orientation on us.
1639 // Keep the orientation stable until this all settles down.
Andrii Kulian8ee72852017-03-10 10:36:45 -08001640 return mLastWindowForcedOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001641 } else if (policy.isKeyguardLocked()) {
1642 // Use the last orientation the while the display is frozen with the keyguard
1643 // locked. This could be the keyguard forced orientation or from a SHOW_WHEN_LOCKED
1644 // window. We don't want to check the show when locked window directly though as
1645 // things aren't stable while the display is frozen, for example the window could be
1646 // momentarily unavailable due to activity relaunch.
1647 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display is frozen while keyguard locked, "
Andrii Kulian8ee72852017-03-10 10:36:45 -08001648 + "return " + mLastOrientation);
1649 return mLastOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001650 }
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001651 } else {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001652 final int orientation = mAboveAppWindowsContainers.getOrientation();
1653 if (orientation != SCREEN_ORIENTATION_UNSET) {
1654 return orientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001655 }
Wale Ogunwale51362492016-09-08 17:49:17 -07001656 }
1657
Wale Ogunwale399c8692017-05-08 14:22:42 -07001658 // Top system windows are not requesting an orientation. Start searching from apps.
1659 return mTaskStackContainers.getOrientation();
Wale Ogunwale51362492016-09-08 17:49:17 -07001660 }
1661
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001662 void updateDisplayInfo() {
Andrii Kuliancd097992017-03-23 18:31:59 -07001663 // Check if display metrics changed and update base values if needed.
1664 updateBaseDisplayMetricsIfNeeded();
1665
Craig Mautner722285e2012-09-07 13:55:58 -07001666 mDisplay.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -07001667 mDisplay.getMetrics(mDisplayMetrics);
Andrii Kuliancd097992017-03-23 18:31:59 -07001668
Wale Ogunwale61911492017-10-11 08:50:50 -07001669 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1670 mTaskStackContainers.getChildAt(i).updateDisplayInfo(null);
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001671 }
Craig Mautner722285e2012-09-07 13:55:58 -07001672 }
1673
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001674 void initializeDisplayBaseInfo() {
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001675 final DisplayManagerInternal displayManagerInternal = mService.mDisplayManagerInternal;
1676 if (displayManagerInternal != null) {
1677 // Bootstrap the default logical display from the display manager.
1678 final DisplayInfo newDisplayInfo = displayManagerInternal.getDisplayInfo(mDisplayId);
1679 if (newDisplayInfo != null) {
1680 mDisplayInfo.copyFrom(newDisplayInfo);
1681 }
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001682 }
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001683
Andrii Kuliancd097992017-03-23 18:31:59 -07001684 updateBaseDisplayMetrics(mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight,
1685 mDisplayInfo.logicalDensityDpi);
1686 mInitialDisplayWidth = mDisplayInfo.logicalWidth;
1687 mInitialDisplayHeight = mDisplayInfo.logicalHeight;
1688 mInitialDisplayDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001689 mInitialDisplayCutout = mDisplayInfo.displayCutout;
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001690 }
1691
Andrii Kuliancd097992017-03-23 18:31:59 -07001692 /**
1693 * If display metrics changed, overrides are not set and it's not just a rotation - update base
1694 * values.
1695 */
1696 private void updateBaseDisplayMetricsIfNeeded() {
1697 // Get real display metrics without overrides from WM.
1698 mService.mDisplayManagerInternal.getNonOverrideDisplayInfo(mDisplayId, mDisplayInfo);
1699 final int orientation = mDisplayInfo.rotation;
1700 final boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
1701 final int newWidth = rotated ? mDisplayInfo.logicalHeight : mDisplayInfo.logicalWidth;
1702 final int newHeight = rotated ? mDisplayInfo.logicalWidth : mDisplayInfo.logicalHeight;
1703 final int newDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001704 final DisplayCutout newCutout = mDisplayInfo.displayCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001705
1706 final boolean displayMetricsChanged = mInitialDisplayWidth != newWidth
1707 || mInitialDisplayHeight != newHeight
Adrian Roos1cf585052018-01-03 18:43:27 +01001708 || mInitialDisplayDensity != mDisplayInfo.logicalDensityDpi
1709 || !Objects.equals(mInitialDisplayCutout, newCutout);
Andrii Kuliancd097992017-03-23 18:31:59 -07001710
1711 if (displayMetricsChanged) {
1712 // Check if display size or density is forced.
1713 final boolean isDisplaySizeForced = mBaseDisplayWidth != mInitialDisplayWidth
1714 || mBaseDisplayHeight != mInitialDisplayHeight;
1715 final boolean isDisplayDensityForced = mBaseDisplayDensity != mInitialDisplayDensity;
1716
1717 // If there is an override set for base values - use it, otherwise use new values.
1718 updateBaseDisplayMetrics(isDisplaySizeForced ? mBaseDisplayWidth : newWidth,
1719 isDisplaySizeForced ? mBaseDisplayHeight : newHeight,
1720 isDisplayDensityForced ? mBaseDisplayDensity : newDensity);
1721
1722 // Real display metrics changed, so we should also update initial values.
1723 mInitialDisplayWidth = newWidth;
1724 mInitialDisplayHeight = newHeight;
1725 mInitialDisplayDensity = newDensity;
Adrian Roos1cf585052018-01-03 18:43:27 +01001726 mInitialDisplayCutout = newCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001727 mService.reconfigureDisplayLocked(this);
1728 }
1729 }
1730
Bryce Lee27cec322017-03-21 09:41:37 -07001731 /** Sets the maximum width the screen resolution can be */
1732 void setMaxUiWidth(int width) {
1733 if (DEBUG_DISPLAY) {
1734 Slog.v(TAG_WM, "Setting max ui width:" + width + " on display:" + getDisplayId());
1735 }
1736
1737 mMaxUiWidth = width;
1738
1739 // Update existing metrics.
1740 updateBaseDisplayMetrics(mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1741 }
1742
1743 /** Update base (override) display metrics. */
1744 void updateBaseDisplayMetrics(int baseWidth, int baseHeight, int baseDensity) {
1745 mBaseDisplayWidth = baseWidth;
1746 mBaseDisplayHeight = baseHeight;
1747 mBaseDisplayDensity = baseDensity;
1748
1749 if (mMaxUiWidth > 0 && mBaseDisplayWidth > mMaxUiWidth) {
1750 mBaseDisplayHeight = (mMaxUiWidth * mBaseDisplayHeight) / mBaseDisplayWidth;
1751 mBaseDisplayDensity = (mMaxUiWidth * mBaseDisplayDensity) / mBaseDisplayWidth;
1752 mBaseDisplayWidth = mMaxUiWidth;
1753
1754 if (DEBUG_DISPLAY) {
1755 Slog.v(TAG_WM, "Applying config restraints:" + mBaseDisplayWidth + "x"
1756 + mBaseDisplayHeight + " at density:" + mBaseDisplayDensity
1757 + " on display:" + getDisplayId());
1758 }
1759 }
1760
1761 mBaseDisplayRect.set(0, 0, mBaseDisplayWidth, mBaseDisplayHeight);
Bryce Leef3c6a472017-11-14 14:53:06 -08001762
1763 updateBounds();
Bryce Lee27cec322017-03-21 09:41:37 -07001764 }
1765
Wale Ogunwaledb506192017-12-08 10:57:32 -08001766 void getStableRect(Rect out) {
1767 out.set(mDisplayFrames.mStable);
Chong Zhangf66db432016-01-13 10:39:51 -08001768 }
1769
Wale Ogunwale61911492017-10-11 08:50:50 -07001770 TaskStack createStack(int stackId, boolean onTop, StackWindowController controller) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08001771 if (DEBUG_STACK) Slog.d(TAG_WM, "Create new stackId=" + stackId + " on displayId="
1772 + mDisplayId);
Andrii Kulian839def92016-11-02 10:58:58 -07001773
Wale Ogunwale61911492017-10-11 08:50:50 -07001774 final TaskStack stack = new TaskStack(mService, stackId, controller);
1775 mTaskStackContainers.addStackToDisplay(stack, onTop);
Wale Ogunwale1666e312016-12-16 11:27:18 -08001776 return stack;
Andrii Kulian839def92016-11-02 10:58:58 -07001777 }
1778
Andrii Kulian51c1b672017-04-07 18:39:32 -07001779 void moveStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08001780 final DisplayContent prevDc = stack.getDisplayContent();
1781 if (prevDc == null) {
Andrii Kulian839def92016-11-02 10:58:58 -07001782 throw new IllegalStateException("Trying to move stackId=" + stack.mStackId
1783 + " which is not currently attached to any display");
1784 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08001785 if (prevDc.getDisplayId() == mDisplayId) {
Andrii Kulian839def92016-11-02 10:58:58 -07001786 throw new IllegalArgumentException("Trying to move stackId=" + stack.mStackId
1787 + " to its current displayId=" + mDisplayId);
1788 }
1789
Wale Ogunwale61911492017-10-11 08:50:50 -07001790 prevDc.mTaskStackContainers.removeChild(stack);
Andrii Kulian51c1b672017-04-07 18:39:32 -07001791 mTaskStackContainers.addStackToDisplay(stack, onTop);
Craig Mautnerc00204b2013-03-05 15:02:14 -08001792 }
1793
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001794 @Override
1795 protected void addChild(DisplayChildWindowContainer child,
1796 Comparator<DisplayChildWindowContainer> comparator) {
1797 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
1798 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001799
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001800 @Override
1801 protected void addChild(DisplayChildWindowContainer child, int index) {
1802 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
1803 }
1804
1805 @Override
1806 protected void removeChild(DisplayChildWindowContainer child) {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001807 // Only allow removal of direct children from this display if the display is in the process
1808 // of been removed.
1809 if (mRemovingDisplay) {
1810 super.removeChild(child);
1811 return;
1812 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001813 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001814 }
1815
Andrii Kuliand2765632016-12-12 22:26:34 -08001816 @Override
1817 void positionChildAt(int position, DisplayChildWindowContainer child, boolean includingParents) {
1818 // Children of the display are statically ordered, so the real intention here is to perform
1819 // the operation on the display and not the static direct children.
1820 getParent().positionChildAt(position, this, includingParents);
1821 }
1822
Winson Chung59a47ded2018-01-25 17:46:06 +00001823 void positionStackAt(int position, TaskStack child) {
1824 mTaskStackContainers.positionChildAt(position, child, false /* includingParents */);
1825 layoutAndAssignWindowLayersIfNeeded();
1826 }
1827
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001828 int taskIdFromPoint(int x, int y) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001829 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1830 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001831 final int taskId = stack.taskIdFromPoint(x, y);
1832 if (taskId != -1) {
1833 return taskId;
Craig Mautner967212c2013-04-13 21:10:58 -07001834 }
1835 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001836 return -1;
Craig Mautnercf910b02013-04-23 11:23:27 -07001837 }
1838
Chong Zhang8e89b312015-09-09 15:09:30 -07001839 /**
Chong Zhangd8ceb852015-11-11 14:53:41 -08001840 * Find the task whose outside touch area (for resizing) (x, y) falls within.
Chong Zhang9184ec62015-09-24 12:32:21 -07001841 * Returns null if the touch doesn't fall into a resizing area.
Chong Zhang8e89b312015-09-09 15:09:30 -07001842 */
Wale Ogunwale15ead902016-09-02 14:30:11 -07001843 Task findTaskForResizePoint(int x, int y) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001844 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001845 mTmpTaskForResizePointSearchResult.reset();
Wale Ogunwale61911492017-10-11 08:50:50 -07001846 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1847 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001848 if (!stack.getWindowConfiguration().canResizeTask()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001849 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07001850 }
Chong Zhang9184ec62015-09-24 12:32:21 -07001851
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001852 stack.findTaskForResizePoint(x, y, delta, mTmpTaskForResizePointSearchResult);
1853 if (mTmpTaskForResizePointSearchResult.searchDone) {
1854 return mTmpTaskForResizePointSearchResult.taskForResize;
Chong Zhang8e89b312015-09-09 15:09:30 -07001855 }
1856 }
Chong Zhang9184ec62015-09-24 12:32:21 -07001857 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07001858 }
1859
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001860 void setTouchExcludeRegion(Task focusedTask) {
David Stevensee9e2772017-02-09 16:30:27 -08001861 // The provided task is the task on this display with focus, so if WindowManagerService's
1862 // focused app is not on this display, focusedTask will be null.
1863 if (focusedTask == null) {
1864 mTouchExcludeRegion.setEmpty();
1865 } else {
1866 mTouchExcludeRegion.set(mBaseDisplayRect);
1867 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
1868 mTmpRect2.setEmpty();
Wale Ogunwale61911492017-10-11 08:50:50 -07001869 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1870 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001871 stack.setTouchExcludeRegion(focusedTask, delta, mTouchExcludeRegion,
1872 mDisplayFrames.mContent, mTmpRect2);
David Stevensee9e2772017-02-09 16:30:27 -08001873 }
1874 // If we removed the focused task above, add it back and only leave its
1875 // outside touch area in the exclusion. TapDectector is not interested in
1876 // any touch inside the focused task itself.
1877 if (!mTmpRect2.isEmpty()) {
1878 mTouchExcludeRegion.op(mTmpRect2, Region.Op.UNION);
1879 }
Chong Zhangd8ceb852015-11-11 14:53:41 -08001880 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08001881 final WindowState inputMethod = mService.mInputMethodWindow;
1882 if (inputMethod != null && inputMethod.isVisibleLw()) {
1883 // If the input method is visible and the user is typing, we don't want these touch
1884 // events to be intercepted and used to change focus. This would likely cause a
1885 // disappearance of the input method.
1886 inputMethod.getTouchableRegion(mTmpRegion);
Andrii Kulian7a31b772017-05-02 13:22:42 -07001887 if (inputMethod.getDisplayId() == mDisplayId) {
1888 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
1889 } else {
1890 // IME is on a different display, so we need to update its tap detector.
1891 // TODO(multidisplay): Remove when IME will always appear on same display.
1892 inputMethod.getDisplayContent().setTouchExcludeRegion(null /* focusedTask */);
1893 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08001894 }
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08001895 for (int i = mTapExcludedWindows.size() - 1; i >= 0; i--) {
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001896 final WindowState win = mTapExcludedWindows.get(i);
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08001897 win.getTouchableRegion(mTmpRegion);
1898 mTouchExcludeRegion.op(mTmpRegion, Region.Op.UNION);
1899 }
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001900 for (int i = mTapExcludeProvidingWindows.size() - 1; i >= 0; i--) {
1901 final WindowState win = mTapExcludeProvidingWindows.valueAt(i);
1902 win.amendTapExcludeRegion(mTouchExcludeRegion);
1903 }
Andrii Kulian03c403d2016-11-11 11:14:12 -08001904 // TODO(multi-display): Support docked stacks on secondary displays.
Matthew Ng64e77cf2017-10-31 14:01:31 -07001905 if (mDisplayId == DEFAULT_DISPLAY && getSplitScreenPrimaryStack() != null) {
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001906 mDividerControllerLocked.getTouchRegion(mTmpRect);
Jorim Jaggi7f19cb82016-03-25 19:37:44 -07001907 mTmpRegion.set(mTmpRect);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001908 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
1909 }
Craig Mautner1bef3892015-02-17 15:09:47 -08001910 if (mTapDetector != null) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -07001911 mTapDetector.setTouchExcludeRegion(mTouchExcludeRegion);
Craig Mautner1bef3892015-02-17 15:09:47 -08001912 }
Craig Mautner6601b7b2013-04-29 10:29:11 -07001913 }
1914
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001915 @Override
Wale Ogunwalee05f5012016-09-16 16:27:29 -07001916 void switchUser() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001917 super.switchUser();
1918 mService.mWindowsChanged = true;
Craig Mautner858d8a62013-04-23 17:08:34 -07001919 }
1920
Wale Ogunwaleac2561e2016-11-01 15:43:46 -07001921 private void resetAnimationBackgroundAnimator() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001922 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1923 mTaskStackContainers.getChildAt(stackNdx).resetAnimationBackgroundAnimator();
Craig Mautner05d29032013-05-03 13:40:13 -07001924 }
1925 }
1926
Wale Ogunwale10124582016-09-15 20:25:50 -07001927 @Override
1928 void removeIfPossible() {
1929 if (isAnimating()) {
1930 mDeferredRemoval = true;
1931 return;
Craig Mautner2eb15342013-08-07 13:13:35 -07001932 }
Wale Ogunwale10124582016-09-15 20:25:50 -07001933 removeImmediately();
Craig Mautner2eb15342013-08-07 13:13:35 -07001934 }
1935
Wale Ogunwale10124582016-09-15 20:25:50 -07001936 @Override
1937 void removeImmediately() {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001938 mRemovingDisplay = true;
1939 try {
1940 super.removeImmediately();
1941 if (DEBUG_DISPLAY) Slog.v(TAG_WM, "Removing display=" + this);
Tarandeep Singh7ac8d3a2017-09-05 11:09:39 -07001942 if (mService.canDispatchPointerEvents()) {
1943 if (mTapDetector != null) {
1944 mService.unregisterPointerEventListener(mTapDetector);
1945 }
1946 if (mDisplayId == DEFAULT_DISPLAY && mService.mMousePositionTracker != null) {
1947 mService.unregisterPointerEventListener(mService.mMousePositionTracker);
1948 }
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001949 }
Jorim Jaggia3844032018-01-03 15:54:43 +01001950 mService.mAnimator.removeDisplayLocked(mDisplayId);
Chavi Weingarten38804382018-02-15 21:00:15 +00001951
1952 // The pending transaction won't be applied so we should
1953 // just clean up any surfaces pending destruction.
1954 onPendingTransactionApplied();
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001955 } finally {
1956 mRemovingDisplay = false;
Craig Mautner95da1082014-02-24 17:54:35 -08001957 }
Bryce Leef19cbe22018-02-02 15:09:21 -08001958
1959 mService.onDisplayRemoved(mDisplayId);
Craig Mautner95da1082014-02-24 17:54:35 -08001960 }
1961
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001962 /** Returns true if a removal action is still being deferred. */
Wale Ogunwale10124582016-09-15 20:25:50 -07001963 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001964 boolean checkCompleteDeferredRemoval() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001965 final boolean stillDeferringRemoval = super.checkCompleteDeferredRemoval();
1966
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001967 if (!stillDeferringRemoval && mDeferredRemoval) {
Wale Ogunwale10124582016-09-15 20:25:50 -07001968 removeImmediately();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001969 return false;
Craig Mautner95da1082014-02-24 17:54:35 -08001970 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001971 return true;
Craig Mautner95da1082014-02-24 17:54:35 -08001972 }
1973
Andrii Kulian0214ed92017-05-16 13:44:05 -07001974 /** @return 'true' if removal of this display content is deferred due to active animation. */
1975 boolean isRemovalDeferred() {
1976 return mDeferredRemoval;
1977 }
1978
Wale Ogunwale10124582016-09-15 20:25:50 -07001979 boolean animateForIme(float interpolatedValue, float animationTarget,
1980 float dividerAnimationTarget) {
1981 boolean updated = false;
1982
Wale Ogunwale61911492017-10-11 08:50:50 -07001983 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1984 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07001985 if (stack == null || !stack.isAdjustedForIme()) {
1986 continue;
1987 }
1988
1989 if (interpolatedValue >= 1f && animationTarget == 0f && dividerAnimationTarget == 0f) {
1990 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
1991 updated = true;
1992 } else {
1993 mDividerControllerLocked.mLastAnimationProgress =
1994 mDividerControllerLocked.getInterpolatedAnimationValue(interpolatedValue);
1995 mDividerControllerLocked.mLastDividerProgress =
1996 mDividerControllerLocked.getInterpolatedDividerValue(interpolatedValue);
1997 updated |= stack.updateAdjustForIme(
1998 mDividerControllerLocked.mLastAnimationProgress,
1999 mDividerControllerLocked.mLastDividerProgress,
2000 false /* force */);
2001 }
2002 if (interpolatedValue >= 1f) {
2003 stack.endImeAdjustAnimation();
2004 }
2005 }
2006
2007 return updated;
2008 }
2009
2010 boolean clearImeAdjustAnimation() {
2011 boolean changed = false;
Wale Ogunwale61911492017-10-11 08:50:50 -07002012 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2013 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002014 if (stack != null && stack.isAdjustedForIme()) {
2015 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
2016 changed = true;
2017 }
2018 }
2019 return changed;
2020 }
2021
2022 void beginImeAdjustAnimation() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002023 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2024 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002025 if (stack.isVisible() && stack.isAdjustedForIme()) {
2026 stack.beginImeAdjustAnimation();
2027 }
2028 }
2029 }
2030
2031 void adjustForImeIfNeeded() {
2032 final WindowState imeWin = mService.mInputMethodWindow;
2033 final boolean imeVisible = imeWin != null && imeWin.isVisibleLw() && imeWin.isDisplayedLw()
2034 && !mDividerControllerLocked.isImeHideRequested();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002035 final boolean dockVisible = isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Wale Ogunwale10124582016-09-15 20:25:50 -07002036 final TaskStack imeTargetStack = mService.getImeFocusStackLocked();
2037 final int imeDockSide = (dockVisible && imeTargetStack != null) ?
2038 imeTargetStack.getDockSide() : DOCKED_INVALID;
2039 final boolean imeOnTop = (imeDockSide == DOCKED_TOP);
2040 final boolean imeOnBottom = (imeDockSide == DOCKED_BOTTOM);
2041 final boolean dockMinimized = mDividerControllerLocked.isMinimizedDock();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002042 final int imeHeight = mDisplayFrames.getInputMethodWindowVisibleHeight();
Wale Ogunwale10124582016-09-15 20:25:50 -07002043 final boolean imeHeightChanged = imeVisible &&
2044 imeHeight != mDividerControllerLocked.getImeHeightAdjustedFor();
2045
2046 // The divider could be adjusted for IME position, or be thinner than usual,
2047 // or both. There are three possible cases:
2048 // - If IME is visible, and focus is on top, divider is not moved for IME but thinner.
2049 // - If IME is visible, and focus is on bottom, divider is moved for IME and thinner.
2050 // - If IME is not visible, divider is not moved and is normal width.
2051
2052 if (imeVisible && dockVisible && (imeOnTop || imeOnBottom) && !dockMinimized) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002053 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2054 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002055 final boolean isDockedOnBottom = stack.getDockSide() == DOCKED_BOTTOM;
Wale Ogunwale68278562017-09-23 17:13:55 -07002056 if (stack.isVisible() && (imeOnBottom || isDockedOnBottom)
2057 && stack.inSplitScreenWindowingMode()) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002058 stack.setAdjustedForIme(imeWin, imeOnBottom && imeHeightChanged);
2059 } else {
2060 stack.resetAdjustedForIme(false);
2061 }
2062 }
2063 mDividerControllerLocked.setAdjustedForIme(
2064 imeOnBottom /*ime*/, true /*divider*/, true /*animate*/, imeWin, imeHeight);
2065 } else {
Wale Ogunwale61911492017-10-11 08:50:50 -07002066 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2067 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002068 stack.resetAdjustedForIme(!dockVisible);
2069 }
2070 mDividerControllerLocked.setAdjustedForIme(
2071 false /*ime*/, false /*divider*/, dockVisible /*animate*/, imeWin, imeHeight);
2072 }
Winson Chung655332c2016-10-31 13:14:28 -07002073 mPinnedStackControllerLocked.setAdjustedForIme(imeVisible, imeHeight);
Wale Ogunwale10124582016-09-15 20:25:50 -07002074 }
2075
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002076 /**
2077 * If a window that has an animation specifying a colored background and the current wallpaper
2078 * is visible, then the color goes *below* the wallpaper so we don't cause the wallpaper to
2079 * suddenly disappear.
2080 */
2081 int getLayerForAnimationBackground(WindowStateAnimator winAnimator) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002082 final WindowState visibleWallpaper = mBelowAppWindowsContainers.getWindow(
2083 w -> w.mIsWallpaper && w.isVisibleNow());
2084
2085 if (visibleWallpaper != null) {
2086 return visibleWallpaper.mWinAnimator.mAnimLayer;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002087 }
2088 return winAnimator.mAnimLayer;
2089 }
2090
Wale Ogunwale10124582016-09-15 20:25:50 -07002091 void prepareFreezingTaskBounds() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002092 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2093 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale10124582016-09-15 20:25:50 -07002094 stack.prepareFreezingTaskBounds();
2095 }
2096 }
2097
Wale Ogunwale94744212015-09-21 19:01:47 -07002098 void rotateBounds(int oldRotation, int newRotation, Rect bounds) {
Bryce Leef3c6a472017-11-14 14:53:06 -08002099 getBounds(mTmpRect, newRotation);
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002100
2101 // Compute a transform matrix to undo the coordinate space transformation,
2102 // and present the window at the same physical position it previously occupied.
2103 final int deltaRotation = deltaRotation(newRotation, oldRotation);
2104 createRotationMatrix(deltaRotation, mTmpRect.width(), mTmpRect.height(), mTmpMatrix);
2105
2106 mTmpRectF.set(bounds);
2107 mTmpMatrix.mapRect(mTmpRectF);
2108 mTmpRectF.round(bounds);
Wale Ogunwale94744212015-09-21 19:01:47 -07002109 }
2110
Wale Ogunwale4a02d812015-02-12 23:01:38 -08002111 static int deltaRotation(int oldRotation, int newRotation) {
2112 int delta = newRotation - oldRotation;
2113 if (delta < 0) delta += 4;
2114 return delta;
2115 }
2116
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002117 private static void createRotationMatrix(int rotation, float displayWidth, float displayHeight,
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002118 Matrix outMatrix) {
2119 // For rotations without Z-ordering we don't need the target rectangle's position.
2120 createRotationMatrix(rotation, 0 /* rectLeft */, 0 /* rectTop */, displayWidth,
2121 displayHeight, outMatrix);
2122 }
2123
2124 static void createRotationMatrix(int rotation, float rectLeft, float rectTop,
2125 float displayWidth, float displayHeight, Matrix outMatrix) {
2126 switch (rotation) {
2127 case ROTATION_0:
2128 outMatrix.reset();
2129 break;
2130 case ROTATION_270:
2131 outMatrix.setRotate(270, 0, 0);
2132 outMatrix.postTranslate(0, displayHeight);
2133 outMatrix.postTranslate(rectTop, 0);
2134 break;
2135 case ROTATION_180:
2136 outMatrix.reset();
2137 break;
2138 case ROTATION_90:
2139 outMatrix.setRotate(90, 0, 0);
2140 outMatrix.postTranslate(displayWidth, 0);
2141 outMatrix.postTranslate(-rectTop, rectLeft);
2142 break;
2143 }
2144 }
2145
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002146 @CallSuper
2147 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002148 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002149 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002150 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002151 proto.write(ID, mDisplayId);
Wale Ogunwale61911492017-10-11 08:50:50 -07002152 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2153 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002154 stack.writeToProto(proto, STACKS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002155 }
2156 mDividerControllerLocked.writeToProto(proto, DOCKED_STACK_DIVIDER_CONTROLLER);
2157 mPinnedStackControllerLocked.writeToProto(proto, PINNED_STACK_CONTROLLER);
Wale Ogunwale61911492017-10-11 08:50:50 -07002158 for (int i = mAboveAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2159 final WindowToken windowToken = mAboveAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002160 windowToken.writeToProto(proto, ABOVE_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002161 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002162 for (int i = mBelowAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2163 final WindowToken windowToken = mBelowAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002164 windowToken.writeToProto(proto, BELOW_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002165 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002166 for (int i = mImeWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2167 final WindowToken windowToken = mImeWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002168 windowToken.writeToProto(proto, IME_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002169 }
2170 proto.write(DPI, mBaseDisplayDensity);
2171 mDisplayInfo.writeToProto(proto, DISPLAY_INFO);
Steven Timotiusf2d68892017-08-28 17:00:01 -07002172 proto.write(ROTATION, mRotation);
2173 final ScreenRotationAnimation screenRotationAnimation =
2174 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
2175 if (screenRotationAnimation != null) {
2176 screenRotationAnimation.writeToProto(proto, SCREEN_ROTATION_ANIMATION);
2177 }
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002178 mDisplayFrames.writeToProto(proto, DISPLAY_FRAMES);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002179 proto.end(token);
2180 }
2181
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002182 @Override
2183 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2184 super.dump(pw, prefix, dumpAll);
Craig Mautnera91f9e22012-09-14 16:22:08 -07002185 pw.print(prefix); pw.print("Display: mDisplayId="); pw.println(mDisplayId);
2186 final String subPrefix = " " + prefix;
2187 pw.print(subPrefix); pw.print("init="); pw.print(mInitialDisplayWidth); pw.print("x");
2188 pw.print(mInitialDisplayHeight); pw.print(" "); pw.print(mInitialDisplayDensity);
2189 pw.print("dpi");
2190 if (mInitialDisplayWidth != mBaseDisplayWidth
2191 || mInitialDisplayHeight != mBaseDisplayHeight
2192 || mInitialDisplayDensity != mBaseDisplayDensity) {
2193 pw.print(" base=");
2194 pw.print(mBaseDisplayWidth); pw.print("x"); pw.print(mBaseDisplayHeight);
2195 pw.print(" "); pw.print(mBaseDisplayDensity); pw.print("dpi");
2196 }
Jeff Brownd46747a2015-04-15 19:02:36 -07002197 if (mDisplayScalingDisabled) {
2198 pw.println(" noscale");
2199 }
Craig Mautnera91f9e22012-09-14 16:22:08 -07002200 pw.print(" cur=");
2201 pw.print(mDisplayInfo.logicalWidth);
2202 pw.print("x"); pw.print(mDisplayInfo.logicalHeight);
2203 pw.print(" app=");
2204 pw.print(mDisplayInfo.appWidth);
2205 pw.print("x"); pw.print(mDisplayInfo.appHeight);
2206 pw.print(" rng="); pw.print(mDisplayInfo.smallestNominalAppWidth);
2207 pw.print("x"); pw.print(mDisplayInfo.smallestNominalAppHeight);
2208 pw.print("-"); pw.print(mDisplayInfo.largestNominalAppWidth);
2209 pw.print("x"); pw.println(mDisplayInfo.largestNominalAppHeight);
David Stevensf833ba92017-03-16 19:00:20 -07002210 pw.print(subPrefix + "deferred=" + mDeferredRemoval
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002211 + " mLayoutNeeded=" + mLayoutNeeded);
David Stevensf833ba92017-03-16 19:00:20 -07002212 pw.println(" mTouchExcludeRegion=" + mTouchExcludeRegion);
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002213
Craig Mautnerdc548482014-02-05 13:35:24 -08002214 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002215 pw.println(prefix + "Application tokens in top down Z order:");
Wale Ogunwale61911492017-10-11 08:50:50 -07002216 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2217 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002218 stack.dump(pw, prefix + " ", dumpAll);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002219 }
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002220
Craig Mautnerdc548482014-02-05 13:35:24 -08002221 pw.println();
2222 if (!mExitingTokens.isEmpty()) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002223 pw.println();
2224 pw.println(" Exiting tokens:");
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002225 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002226 final WindowToken token = mExitingTokens.get(i);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002227 pw.print(" Exiting #"); pw.print(i);
2228 pw.print(' '); pw.print(token);
2229 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002230 token.dump(pw, " ", dumpAll);
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002231 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002232 }
Robert Carrf59b8dd2017-10-02 18:58:36 -07002233
Jorim Jaggi31f71702016-05-04 16:43:04 -07002234 pw.println();
Wale Ogunwale61911492017-10-11 08:50:50 -07002235
2236 // Dump stack references
2237 final TaskStack homeStack = getHomeStack();
2238 if (homeStack != null) {
2239 pw.println(prefix + "homeStack=" + homeStack.getName());
2240 }
2241 final TaskStack pinnedStack = getPinnedStack();
2242 if (pinnedStack != null) {
2243 pw.println(prefix + "pinnedStack=" + pinnedStack.getName());
2244 }
Matthew Ng64e77cf2017-10-31 14:01:31 -07002245 final TaskStack splitScreenPrimaryStack = getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07002246 if (splitScreenPrimaryStack != null) {
2247 pw.println(prefix + "splitScreenPrimaryStack=" + splitScreenPrimaryStack.getName());
2248 }
2249
2250 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002251 mDividerControllerLocked.dump(prefix, pw);
Winson Chung655332c2016-10-31 13:14:28 -07002252 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002253 mPinnedStackControllerLocked.dump(prefix, pw);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002254
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002255 pw.println();
2256 mDisplayFrames.dump(prefix, pw);
Craig Mautner59c00972012-07-30 12:10:24 -07002257 }
Craig Mautnere0a38842013-12-16 16:14:02 -08002258
2259 @Override
2260 public String toString() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002261 return "Display " + mDisplayId + " info=" + mDisplayInfo + " stacks=" + mChildren;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002262 }
2263
2264 String getName() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002265 return "Display " + mDisplayId + " name=\"" + mDisplayInfo.name + "\"";
Craig Mautnere0a38842013-12-16 16:14:02 -08002266 }
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002267
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002268 /** Returns true if the stack in the windowing mode is visible. */
2269 boolean isStackVisible(int windowingMode) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002270 final TaskStack stack = getTopStackInWindowingMode(windowingMode);
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002271 return stack != null && stack.isVisible();
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08002272 }
2273
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002274 /** Find the visible, touch-deliverable window under the given point */
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002275 WindowState getTouchableWinAtPointLocked(float xf, float yf) {
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002276 final int x = (int) xf;
2277 final int y = (int) yf;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002278 final WindowState touchedWin = getWindow(w -> {
2279 final int flags = w.mAttrs.flags;
2280 if (!w.isVisibleLw()) {
2281 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002282 }
2283 if ((flags & FLAG_NOT_TOUCHABLE) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002284 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002285 }
2286
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002287 w.getVisibleBounds(mTmpRect);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002288 if (!mTmpRect.contains(x, y)) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002289 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002290 }
2291
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002292 w.getTouchableRegion(mTmpRegion);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002293
2294 final int touchFlags = flags & (FLAG_NOT_FOCUSABLE | FLAG_NOT_TOUCH_MODAL);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002295 return mTmpRegion.contains(x, y) || touchFlags == 0;
2296 });
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002297
2298 return touchedWin;
2299 }
Jorim Jaggi6626f542016-08-22 13:08:44 -07002300
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002301 boolean canAddToastWindowForUid(int uid) {
2302 // We allow one toast window per UID being shown at a time.
Svet Ganovdaca8ee2017-01-21 17:40:40 -08002303 // Also if the app is focused adding more than one toast at
2304 // a time for better backwards compatibility.
2305 final WindowState focusedWindowForUid = getWindow(w ->
2306 w.mOwnerUid == uid && w.isFocused());
2307 if (focusedWindowForUid != null) {
2308 return true;
2309 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002310 final WindowState win = getWindow(w ->
2311 w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == uid && !w.mPermanentlyHidden
2312 && !w.mWindowRemovalAllowed);
2313 return win == null;
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002314 }
2315
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002316 void scheduleToastWindowsTimeoutIfNeededLocked(WindowState oldFocus, WindowState newFocus) {
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002317 if (oldFocus == null || (newFocus != null && newFocus.mOwnerUid == oldFocus.mOwnerUid)) {
2318 return;
2319 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002320
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002321 // Used to communicate the old focus to the callback method.
2322 mTmpWindow = oldFocus;
2323
2324 forAllWindows(mScheduleToastTimeout, false /* traverseTopToBottom */);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002325 }
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002326
2327 WindowState findFocusedWindow() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002328 mTmpWindow = null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002329
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002330 forAllWindows(mFindFocusedWindow, true /* traverseTopToBottom */);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002331
2332 if (mTmpWindow == null) {
2333 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: No focusable windows.");
2334 return null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002335 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002336 return mTmpWindow;
Wale Ogunwaleec731152016-09-08 20:18:57 -07002337 }
2338
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002339 /** Updates the layer assignment of windows on this display. */
2340 void assignWindowLayers(boolean setLayoutNeeded) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002341 Trace.traceBegin(Trace.TRACE_TAG_WINDOW_MANAGER, "assignWindowLayers");
Robert Carrf59b8dd2017-10-02 18:58:36 -07002342 assignChildLayers(getPendingTransaction());
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002343 if (setLayoutNeeded) {
2344 setLayoutNeeded();
2345 }
Robert Carrb1579c82017-09-05 14:54:47 -07002346
Robert Carrf59b8dd2017-10-02 18:58:36 -07002347 // We accumlate the layer changes in-to "getPendingTransaction()" but we defer
Robert Carrb1579c82017-09-05 14:54:47 -07002348 // the application of this transaction until the animation pass triggers
2349 // prepareSurfaces. This allows us to synchronize Z-ordering changes with
2350 // the hiding and showing of surfaces.
2351 scheduleAnimation();
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002352 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002353 }
2354
Wale Ogunwale1666e312016-12-16 11:27:18 -08002355 // TODO: This should probably be called any time a visual change is made to the hierarchy like
2356 // moving containers or resizing them. Need to investigate the best way to have it automatically
2357 // happen so we don't run into issues with programmers forgetting to do it.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002358 void layoutAndAssignWindowLayersIfNeeded() {
2359 mService.mWindowsChanged = true;
2360 setLayoutNeeded();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002361
2362 if (!mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
2363 false /*updateInputWindows*/)) {
2364 assignWindowLayers(false /* setLayoutNeeded */);
2365 }
2366
2367 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
2368 mService.mWindowPlacerLocked.performSurfacePlacement();
2369 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2370 }
2371
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002372 /** Returns true if a leaked surface was destroyed */
2373 boolean destroyLeakedSurfaces() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002374 // Used to indicate that a surface was leaked.
2375 mTmpWindow = null;
2376 forAllWindows(w -> {
2377 final WindowStateAnimator wsa = w.mWinAnimator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002378 if (wsa.mSurfaceController == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002379 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002380 }
2381 if (!mService.mSessions.contains(wsa.mSession)) {
2382 Slog.w(TAG_WM, "LEAKED SURFACE (session doesn't exist): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002383 + w + " surface=" + wsa.mSurfaceController
2384 + " token=" + w.mToken
2385 + " pid=" + w.mSession.mPid
2386 + " uid=" + w.mSession.mUid);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002387 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002388 mService.mForceRemoves.add(w);
2389 mTmpWindow = w;
Wale Ogunwale89973222017-04-23 18:39:45 -07002390 } else if (w.mAppToken != null && w.mAppToken.isClientHidden()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002391 Slog.w(TAG_WM, "LEAKED SURFACE (app token hidden): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002392 + w + " surface=" + wsa.mSurfaceController
Jorim Jaggie7d2b852017-08-28 17:55:15 +02002393 + " token=" + w.mAppToken);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002394 if (SHOW_TRANSACTIONS) logSurface(w, "LEAK DESTROY", false);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002395 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002396 mTmpWindow = w;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002397 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002398 }, false /* traverseTopToBottom */);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002399
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002400 return mTmpWindow != null;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002401 }
2402
2403 /**
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002404 * Determine and return the window that should be the IME target.
2405 * @param updateImeTarget If true the system IME target will be updated to match what we found.
2406 * @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 +00002407 */
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002408 WindowState computeImeTarget(boolean updateImeTarget) {
2409 if (mService.mInputMethodWindow == null) {
2410 // There isn't an IME so there shouldn't be a target...That was easy!
2411 if (updateImeTarget) {
2412 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from "
2413 + mService.mInputMethodTarget + " to null since mInputMethodWindow is null");
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002414 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002415 }
2416 return null;
2417 }
2418
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002419 // TODO(multidisplay): Needs some serious rethought when the target and IME are not on the
2420 // same display. Or even when the current IME/target are not on the same screen as the next
2421 // IME/target. For now only look for input windows on the main screen.
Wale Ogunwale8e44f6c2017-03-09 15:25:10 -08002422 mUpdateImeTarget = updateImeTarget;
2423 WindowState target = getWindow(mComputeImeTargetPredicate);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002424
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002425
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002426 // Yet more tricksyness! If this window is a "starting" window, we do actually want
2427 // to be on top of it, but it is not -really- where input will go. So look down below
2428 // for a real window to target...
2429 if (target != null && target.mAttrs.type == TYPE_APPLICATION_STARTING) {
2430 final AppWindowToken token = target.mAppToken;
2431 if (token != null) {
2432 final WindowState betterTarget = token.getImeTargetBelowWindow(target);
2433 if (betterTarget != null) {
2434 target = betterTarget;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002435 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002436 }
2437 }
2438
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002439 if (DEBUG_INPUT_METHOD && updateImeTarget) Slog.v(TAG_WM,
2440 "Proposed new IME target: " + target);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002441
2442 // Now, a special case -- if the last target's window is in the process of exiting, and is
2443 // above the new target, keep on the last target to avoid flicker. Consider for example a
2444 // Dialog with the IME shown: when the Dialog is dismissed, we want to keep the IME above it
2445 // until it is completely gone so it doesn't drop behind the dialog or its full-screen
2446 // scrim.
2447 final WindowState curTarget = mService.mInputMethodTarget;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002448 if (curTarget != null && curTarget.isDisplayedLw() && curTarget.isClosing()
2449 && (target == null
2450 || curTarget.mWinAnimator.mAnimLayer > target.mWinAnimator.mAnimLayer)) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002451 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Current target higher, not changing");
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002452 return curTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002453 }
2454
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002455 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Desired input method target=" + target
2456 + " updateImeTarget=" + updateImeTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002457
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002458 if (target == null) {
2459 if (updateImeTarget) {
2460 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget
2461 + " to null." + (SHOW_STACK_CRAWLS ? " Callers="
2462 + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002463 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002464 }
2465
2466 return null;
2467 }
2468
2469 if (updateImeTarget) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002470 AppWindowToken token = curTarget == null ? null : curTarget.mAppToken;
2471 if (token != null) {
2472
2473 // Now some fun for dealing with window animations that modify the Z order. We need
2474 // to look at all windows below the current target that are in this app, finding the
2475 // highest visible one in layering.
2476 WindowState highestTarget = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002477 if (token.isSelfAnimating()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002478 highestTarget = token.getHighestAnimLayerWindow(curTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002479 }
2480
2481 if (highestTarget != null) {
2482 final AppTransition appTransition = mService.mAppTransition;
2483 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, appTransition + " " + highestTarget
2484 + " animating=" + highestTarget.mWinAnimator.isAnimationSet()
2485 + " layer=" + highestTarget.mWinAnimator.mAnimLayer
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002486 + " new layer=" + target.mWinAnimator.mAnimLayer);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002487
2488 if (appTransition.isTransitionSet()) {
2489 // If we are currently setting up for an animation, hold everything until we
2490 // can find out what will happen.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002491 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002492 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002493 } else if (highestTarget.mWinAnimator.isAnimationSet() &&
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002494 highestTarget.mWinAnimator.mAnimLayer > target.mWinAnimator.mAnimLayer) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002495 // If the window we are currently targeting is involved with an animation,
2496 // and it is on top of the next target we will be over, then hold off on
2497 // moving until that is done.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002498 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002499 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002500 }
2501 }
2502 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002503
2504 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget + " to "
2505 + target + (SHOW_STACK_CRAWLS ? " Callers=" + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002506 setInputMethodTarget(target, false);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002507 }
2508
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002509 return target;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002510 }
2511
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002512 private void setInputMethodTarget(WindowState target, boolean targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002513 if (target == mService.mInputMethodTarget
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002514 && mService.mInputMethodTargetWaitingAnim == targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002515 return;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002516 }
2517
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002518 mService.mInputMethodTarget = target;
2519 mService.mInputMethodTargetWaitingAnim = targetWaitingAnim;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002520 assignWindowLayers(false /* setLayoutNeeded */);
2521 }
2522
2523 boolean getNeedsMenu(WindowState top, WindowManagerPolicy.WindowState bottom) {
2524 if (top.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2525 return top.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
2526 }
2527
2528 // Used to indicate we have reached the first window in the range we are interested in.
2529 mTmpWindow = null;
2530
2531 // TODO: Figure-out a more efficient way to do this.
2532 final WindowState candidate = getWindow(w -> {
2533 if (w == top) {
2534 // Reached the first window in the range we are interested in.
2535 mTmpWindow = w;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002536 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002537 if (mTmpWindow == null) {
2538 return false;
2539 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002540
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002541 if (w.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2542 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002543 }
2544 // If we reached the bottom of the range of windows we are considering,
2545 // assume no menu is needed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002546 if (w == bottom) {
2547 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002548 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002549 return false;
2550 });
2551
2552 return candidate != null && candidate.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002553 }
2554
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002555 void setLayoutNeeded() {
2556 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "setLayoutNeeded: callers=" + Debug.getCallers(3));
2557 mLayoutNeeded = true;
2558 }
2559
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002560 private void clearLayoutNeeded() {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002561 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "clearLayoutNeeded: callers=" + Debug.getCallers(3));
2562 mLayoutNeeded = false;
2563 }
2564
2565 boolean isLayoutNeeded() {
2566 return mLayoutNeeded;
2567 }
2568
Wale Ogunwale02319a62016-09-26 15:21:22 -07002569 void dumpTokens(PrintWriter pw, boolean dumpAll) {
2570 if (mTokenMap.isEmpty()) {
2571 return;
2572 }
2573 pw.println(" Display #" + mDisplayId);
2574 final Iterator<WindowToken> it = mTokenMap.values().iterator();
2575 while (it.hasNext()) {
2576 final WindowToken token = it.next();
2577 pw.print(" ");
2578 pw.print(token);
2579 if (dumpAll) {
2580 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002581 token.dump(pw, " ", dumpAll);
Wale Ogunwale02319a62016-09-26 15:21:22 -07002582 } else {
2583 pw.println();
2584 }
2585 }
2586 }
2587
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002588 void dumpWindowAnimators(PrintWriter pw, String subPrefix) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002589 final int[] index = new int[1];
2590 forAllWindows(w -> {
2591 final WindowStateAnimator wAnim = w.mWinAnimator;
2592 pw.println(subPrefix + "Window #" + index[0] + ": " + wAnim);
2593 index[0] = index[0] + 1;
2594 }, false /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002595 }
2596
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002597 void enableSurfaceTrace(FileDescriptor fd) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002598 forAllWindows(w -> {
2599 w.mWinAnimator.enableSurfaceTrace(fd);
2600 }, true /* traverseTopToBottom */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002601 }
2602
2603 void disableSurfaceTrace() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002604 forAllWindows(w -> {
2605 w.mWinAnimator.disableSurfaceTrace();
2606 }, true /* traverseTopToBottom */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002607 }
2608
Jorim Jaggife762342016-10-13 14:33:27 +02002609 /**
2610 * Starts the Keyguard exit animation on all windows that don't belong to an app token.
2611 */
2612 void startKeyguardExitOnNonAppWindows(boolean onWallpaper, boolean goingToShade) {
2613 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002614 forAllWindows(w -> {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02002615 if (w.mAppToken == null && policy.canBeHiddenByKeyguardLw(w)
2616 && w.wouldBeVisibleIfPolicyIgnored() && !w.isVisible()) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01002617 w.startAnimation(policy.createHiddenByKeyguardExit(onWallpaper, goingToShade));
Jorim Jaggife762342016-10-13 14:33:27 +02002618 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002619 }, true /* traverseTopToBottom */);
Jorim Jaggife762342016-10-13 14:33:27 +02002620 }
2621
Wale Ogunwale494009b82016-10-21 09:01:38 -07002622 boolean checkWaitingForWindows() {
2623
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002624 mHaveBootMsg = false;
2625 mHaveApp = false;
2626 mHaveWallpaper = false;
2627 mHaveKeyguard = true;
2628
2629 final WindowState visibleWindow = getWindow(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002630 if (w.isVisibleLw() && !w.mObscured && !w.isDrawnLw()) {
2631 return true;
2632 }
2633 if (w.isDrawnLw()) {
2634 if (w.mAttrs.type == TYPE_BOOT_PROGRESS) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002635 mHaveBootMsg = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002636 } else if (w.mAttrs.type == TYPE_APPLICATION
2637 || w.mAttrs.type == TYPE_DRAWN_APPLICATION) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002638 mHaveApp = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002639 } else if (w.mAttrs.type == TYPE_WALLPAPER) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002640 mHaveWallpaper = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002641 } else if (w.mAttrs.type == TYPE_STATUS_BAR) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002642 mHaveKeyguard = mService.mPolicy.isKeyguardDrawnLw();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002643 }
2644 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002645 return false;
2646 });
2647
2648 if (visibleWindow != null) {
2649 // We have a visible window.
2650 return true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002651 }
2652
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002653 // if the wallpaper service is disabled on the device, we're never going to have
2654 // wallpaper, don't bother waiting for it
2655 boolean wallpaperEnabled = mService.mContext.getResources().getBoolean(
2656 com.android.internal.R.bool.config_enableWallpaperService)
2657 && !mService.mOnlyCore;
2658
Wale Ogunwale494009b82016-10-21 09:01:38 -07002659 if (DEBUG_SCREEN_ON || DEBUG_BOOT) Slog.i(TAG_WM,
2660 "******** booted=" + mService.mSystemBooted
2661 + " msg=" + mService.mShowingBootMessages
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002662 + " haveBoot=" + mHaveBootMsg + " haveApp=" + mHaveApp
2663 + " haveWall=" + mHaveWallpaper + " wallEnabled=" + wallpaperEnabled
2664 + " haveKeyguard=" + mHaveKeyguard);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002665
2666 // If we are turning on the screen to show the boot message, don't do it until the boot
2667 // message is actually displayed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002668 if (!mService.mSystemBooted && !mHaveBootMsg) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002669 return true;
2670 }
2671
2672 // If we are turning on the screen after the boot is completed normally, don't do so until
2673 // we have the application and wallpaper.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002674 if (mService.mSystemBooted
2675 && ((!mHaveApp && !mHaveKeyguard) || (wallpaperEnabled && !mHaveWallpaper))) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002676 return true;
2677 }
2678
2679 return false;
2680 }
2681
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002682 void updateWindowsForAnimator(WindowAnimator animator) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002683 mTmpWindowAnimator = animator;
2684 forAllWindows(mUpdateWindowsForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002685 }
2686
2687 void updateWallpaperForAnimator(WindowAnimator animator) {
Jorim Jaggi7156b652016-10-25 08:31:58 -07002688 resetAnimationBackgroundAnimator();
2689
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002690 // Used to indicate a detached wallpaper.
2691 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002692 mTmpWindowAnimator = animator;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002693
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002694 forAllWindows(mUpdateWallpaperForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002695
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002696 if (animator.mWindowDetachedWallpaper != mTmpWindow) {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002697 if (DEBUG_WALLPAPER) Slog.v(TAG, "Detached wallpaper changed from "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002698 + animator.mWindowDetachedWallpaper + " to " + mTmpWindow);
2699 animator.mWindowDetachedWallpaper = mTmpWindow;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002700 animator.mBulkUpdateParams |= SET_WALLPAPER_MAY_CHANGE;
2701 }
2702 }
2703
Wale Ogunwale494009b82016-10-21 09:01:38 -07002704 boolean inputMethodClientHasFocus(IInputMethodClient client) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002705 final WindowState imFocus = computeImeTarget(false /* updateImeTarget */);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002706 if (imFocus == null) {
2707 return false;
2708 }
2709
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002710 if (DEBUG_INPUT_METHOD) {
2711 Slog.i(TAG_WM, "Desired input method target: " + imFocus);
2712 Slog.i(TAG_WM, "Current focus: " + mService.mCurrentFocus);
2713 Slog.i(TAG_WM, "Last focus: " + mService.mLastFocus);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002714 }
2715
Wale Ogunwale494009b82016-10-21 09:01:38 -07002716 final IInputMethodClient imeClient = imFocus.mSession.mClient;
2717
2718 if (DEBUG_INPUT_METHOD) {
2719 Slog.i(TAG_WM, "IM target client: " + imeClient);
2720 if (imeClient != null) {
2721 Slog.i(TAG_WM, "IM target client binder: " + imeClient.asBinder());
2722 Slog.i(TAG_WM, "Requesting client binder: " + client.asBinder());
2723 }
2724 }
2725
2726 return imeClient != null && imeClient.asBinder() == client.asBinder();
2727 }
2728
2729 boolean hasSecureWindowOnScreen() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002730 final WindowState win = getWindow(
2731 w -> w.isOnScreen() && (w.mAttrs.flags & FLAG_SECURE) != 0);
2732 return win != null;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002733 }
2734
2735 void updateSystemUiVisibility(int visibility, int globalDiff) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002736 forAllWindows(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002737 try {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002738 final int curValue = w.mSystemUiVisibility;
2739 final int diff = (curValue ^ visibility) & globalDiff;
2740 final int newValue = (curValue & ~diff) | (visibility & diff);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002741 if (newValue != curValue) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002742 w.mSeq++;
2743 w.mSystemUiVisibility = newValue;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002744 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002745 if (newValue != curValue || w.mAttrs.hasSystemUiListeners) {
2746 w.mClient.dispatchSystemUiVisibilityChanged(w.mSeq,
Wale Ogunwale494009b82016-10-21 09:01:38 -07002747 visibility, newValue, diff);
2748 }
2749 } catch (RemoteException e) {
2750 // so sorry
2751 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002752 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002753 }
2754
2755 void onWindowFreezeTimeout() {
2756 Slog.w(TAG_WM, "Window freeze timeout expired.");
2757 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_TIMEOUT;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002758
2759 forAllWindows(w -> {
Bryce Lee8c3cf382017-07-06 19:47:10 -07002760 if (!w.getOrientationChanging()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002761 return;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002762 }
Robert Carr9c1c3a02017-08-08 12:59:01 -07002763 w.orientationChangeTimedOut();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002764 w.mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
2765 - mService.mDisplayFreezeTime);
2766 Slog.w(TAG_WM, "Force clearing orientation change: " + w);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002767 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002768 mService.mWindowPlacerLocked.performSurfacePlacement();
2769 }
2770
2771 void waitForAllWindowsDrawn() {
2772 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002773 forAllWindows(w -> {
2774 final boolean keyguard = policy.isKeyguardHostWindow(w.mAttrs);
2775 if (w.isVisibleLw() && (w.mAppToken != null || keyguard)) {
2776 w.mWinAnimator.mDrawState = DRAW_PENDING;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002777 // Force add to mResizingWindows.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002778 w.mLastContentInsets.set(-1, -1, -1, -1);
2779 mService.mWaitingForDrawn.add(w);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002780 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002781 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002782 }
2783
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002784 // TODO: Super crazy long method that should be broken down...
2785 boolean applySurfaceChangesTransaction(boolean recoveringMemory) {
2786
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002787 final int dw = mDisplayInfo.logicalWidth;
2788 final int dh = mDisplayInfo.logicalHeight;
2789 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
2790
2791 mTmpUpdateAllDrawn.clear();
2792
2793 int repeats = 0;
2794 do {
2795 repeats++;
2796 if (repeats > 6) {
2797 Slog.w(TAG, "Animation repeat aborted after too many iterations");
2798 clearLayoutNeeded();
2799 break;
2800 }
2801
2802 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats("On entry to LockedInner",
2803 pendingLayoutChanges);
2804
Andrii Kulian839def92016-11-02 10:58:58 -07002805 // TODO(multi-display): For now adjusting wallpaper only on primary display to avoid
2806 // the wallpaper window jumping across displays.
2807 // Remove check for default display when there will be support for multiple wallpaper
2808 // targets (on different displays).
2809 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_WALLPAPER) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002810 mWallpaperController.adjustWallpaperWindows(this);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002811 }
2812
2813 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_CONFIG) != 0) {
2814 if (DEBUG_LAYOUT) Slog.v(TAG, "Computing new config from layout");
2815 if (mService.updateOrientationFromAppTokensLocked(true, mDisplayId)) {
2816 setLayoutNeeded();
Andrii Kulianb17e8692016-11-01 10:37:22 -07002817 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, mDisplayId).sendToTarget();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002818 }
2819 }
2820
2821 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_LAYOUT) != 0) {
2822 setLayoutNeeded();
2823 }
2824
2825 // FIRST LOOP: Perform a layout, if needed.
2826 if (repeats < LAYOUT_REPEAT_THRESHOLD) {
2827 performLayout(repeats == 1, false /* updateInputWindows */);
2828 } else {
2829 Slog.w(TAG, "Layout repeat skipped after too many iterations");
2830 }
2831
2832 // FIRST AND ONE HALF LOOP: Make WindowManagerPolicy think it is animating.
2833 pendingLayoutChanges = 0;
2834
2835 if (isDefaultDisplay) {
2836 mService.mPolicy.beginPostLayoutPolicyLw(dw, dh);
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002837 forAllWindows(mApplyPostLayoutPolicy, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002838 pendingLayoutChanges |= mService.mPolicy.finishPostLayoutPolicyLw();
2839 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats(
2840 "after finishPostLayoutPolicyLw", pendingLayoutChanges);
2841 }
2842 } while (pendingLayoutChanges != 0);
2843
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002844 mTmpApplySurfaceChangesTransactionState.reset();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002845
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002846 mTmpRecoveringMemory = recoveringMemory;
2847 forAllWindows(mApplySurfaceChangesTransaction, true /* traverseTopToBottom */);
Jorim Jaggi6b0f8462018-01-05 17:23:47 +01002848 prepareSurfaces();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002849
2850 mService.mDisplayManagerInternal.setDisplayProperties(mDisplayId,
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002851 mTmpApplySurfaceChangesTransactionState.displayHasContent,
2852 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate,
2853 mTmpApplySurfaceChangesTransactionState.preferredModeId,
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002854 true /* inTraversal, must call performTraversalInTrans... below */);
2855
Lucas Dupin1ead7fc2017-05-24 14:14:44 -07002856 final boolean wallpaperVisible = mWallpaperController.isWallpaperVisible();
2857 if (wallpaperVisible != mLastWallpaperVisible) {
2858 mLastWallpaperVisible = wallpaperVisible;
2859 mService.mWallpaperVisibilityListeners.notifyWallpaperVisibilityChanged(this);
2860 }
2861
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002862 while (!mTmpUpdateAllDrawn.isEmpty()) {
2863 final AppWindowToken atoken = mTmpUpdateAllDrawn.removeLast();
2864 // See if any windows have been drawn, so they (and others associated with them)
2865 // can now be shown.
Matthew Ng498c71d2017-04-18 13:55:45 -07002866 atoken.updateAllDrawn();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002867 }
2868
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002869 return mTmpApplySurfaceChangesTransactionState.focusDisplayed;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002870 }
2871
Bryce Leef3c6a472017-11-14 14:53:06 -08002872 private void updateBounds() {
2873 calculateBounds(mTmpBounds);
2874 setBounds(mTmpBounds);
2875 }
2876
2877 // Determines the current display bounds based on the current state
2878 private void calculateBounds(Rect out) {
2879 // Uses same calculation as in LogicalDisplay#configureDisplayInTransactionLocked.
2880 final int orientation = mDisplayInfo.rotation;
2881 boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
2882 final int physWidth = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
2883 final int physHeight = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
2884 int width = mDisplayInfo.logicalWidth;
2885 int left = (physWidth - width) / 2;
2886 int height = mDisplayInfo.logicalHeight;
2887 int top = (physHeight - height) / 2;
2888 out.set(left, top, left + width, top + height);
2889 }
2890
2891 @Override
2892 public void getBounds(Rect out) {
2893 calculateBounds(out);
2894 }
2895
2896 private void getBounds(Rect out, int orientation) {
2897 getBounds(out);
2898
2899 // Rotate the Rect if needed.
2900 final int currentRotation = mDisplayInfo.rotation;
2901 final int rotationDelta = deltaRotation(currentRotation, orientation);
2902 if (rotationDelta == ROTATION_90 || rotationDelta == ROTATION_270) {
2903 createRotationMatrix(rotationDelta, mBaseDisplayWidth, mBaseDisplayHeight, mTmpMatrix);
2904 mTmpRectF.set(out);
2905 mTmpMatrix.mapRect(mTmpRectF);
2906 mTmpRectF.round(out);
2907 }
2908 }
2909
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002910 void performLayout(boolean initial, boolean updateInputWindows) {
2911 if (!isLayoutNeeded()) {
2912 return;
2913 }
2914 clearLayoutNeeded();
2915
2916 final int dw = mDisplayInfo.logicalWidth;
2917 final int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002918 if (DEBUG_LAYOUT) {
2919 Slog.v(TAG, "-------------------------------------");
2920 Slog.v(TAG, "performLayout: needed=" + isLayoutNeeded() + " dw=" + dw + " dh=" + dh);
2921 }
2922
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002923 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo);
2924 // TODO: Not sure if we really need to set the rotation here since we are updating from the
2925 // display info above...
2926 mDisplayFrames.mRotation = mRotation;
2927 mService.mPolicy.beginLayoutLw(mDisplayFrames, getConfiguration().uiMode);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002928 if (isDefaultDisplay) {
2929 // Not needed on non-default displays.
2930 mService.mSystemDecorLayer = mService.mPolicy.getSystemDecorLayerLw();
2931 mService.mScreenRect.set(0, 0, dw, dh);
2932 }
2933
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002934 int seq = mService.mLayoutSeq + 1;
2935 if (seq < 0) seq = 0;
2936 mService.mLayoutSeq = seq;
2937
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002938 // Used to indicate that we have processed the dream window and all additional windows are
2939 // behind it.
2940 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002941 mTmpInitial = initial;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002942
2943 // First perform layout of any root windows (not attached to another window).
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002944 forAllWindows(mPerformLayout, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002945
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002946 // Used to indicate that we have processed the dream window and all additional attached
2947 // windows are behind it.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002948 mTmpWindow2 = mTmpWindow;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002949 mTmpWindow = null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002950
2951 // Now perform layout of attached windows, which usually depend on the position of the
2952 // window they are attached to. XXX does not deal with windows that are attached to windows
2953 // that are themselves attached.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002954 forAllWindows(mPerformLayoutAttached, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002955
2956 // Window frames may have changed. Tell the input dispatcher about it.
2957 mService.mInputMonitor.layoutInputConsumers(dw, dh);
2958 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
2959 if (updateInputWindows) {
2960 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2961 }
2962
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002963 mService.mH.sendEmptyMessage(UPDATE_DOCKED_STACK_DIVIDER);
2964 }
2965
2966 /**
2967 * Takes a snapshot of the display. In landscape mode this grabs the whole screen.
2968 * In portrait mode, it grabs the full screenshot.
2969 *
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002970 * @param config of the output bitmap
2971 * @param wallpaperOnly true if only the wallpaper layer should be included in the screenshot
2972 */
chaviwfbe47df2017-11-10 16:14:49 -08002973 Bitmap screenshotDisplay(Bitmap.Config config, boolean wallpaperOnly) {
2974 synchronized (mService.mWindowMap) {
Jorim Jaggi51304d72017-05-17 17:25:32 +02002975 if (!mService.mPolicy.isScreenOn()) {
chaviwfbe47df2017-11-10 16:14:49 -08002976 if (DEBUG_SCREENSHOT) {
2977 Slog.i(TAG_WM, "Attempted to take screenshot while display was off.");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002978 }
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002979 return null;
2980 }
2981
chaviwfbe47df2017-11-10 16:14:49 -08002982 if (wallpaperOnly && !shouldScreenshotWallpaper()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002983 return null;
2984 }
2985
chaviwfbe47df2017-11-10 16:14:49 -08002986 int dw = mDisplayInfo.logicalWidth;
2987 int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002988
chaviwfbe47df2017-11-10 16:14:49 -08002989 if (dw <= 0 || dh <= 0) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002990 return null;
2991 }
2992
chaviwfbe47df2017-11-10 16:14:49 -08002993 final Rect frame = new Rect(0, 0, dw, dh);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002994
2995 // The screenshot API does not apply the current screen rotation.
2996 int rot = mDisplay.getRotation();
2997
2998 if (rot == ROTATION_90 || rot == ROTATION_270) {
2999 rot = (rot == ROTATION_90) ? ROTATION_270 : ROTATION_90;
3000 }
3001
chaviwfbe47df2017-11-10 16:14:49 -08003002 // SurfaceFlinger is not aware of orientation, so convert our logical
3003 // crop to SurfaceFlinger's portrait orientation.
3004 convertCropForSurfaceFlinger(frame, rot, dw, dh);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003005
3006 final ScreenRotationAnimation screenRotationAnimation =
3007 mService.mAnimator.getScreenRotationAnimationLocked(DEFAULT_DISPLAY);
3008 final boolean inRotation = screenRotationAnimation != null &&
3009 screenRotationAnimation.isAnimating();
chaviwfbe47df2017-11-10 16:14:49 -08003010 if (DEBUG_SCREENSHOT && inRotation) Slog.v(TAG_WM, "Taking screenshot while rotating");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003011
Robert Carrb1579c82017-09-05 14:54:47 -07003012 // TODO(b/68392460): We should screenshot Task controls directly
3013 // but it's difficult at the moment as the Task doesn't have the
3014 // correct size set.
chaviwfbe47df2017-11-10 16:14:49 -08003015 final Bitmap bitmap = SurfaceControl.screenshot(frame, dw, dh, 0, 1, inRotation, rot);
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01003016 if (bitmap == null) {
Robert Carrb1579c82017-09-05 14:54:47 -07003017 Slog.w(TAG_WM, "Failed to take screenshot");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003018 return null;
3019 }
chaviwfbe47df2017-11-10 16:14:49 -08003020
3021 // Create a copy of the screenshot that is immutable and backed in ashmem.
3022 // This greatly reduces the overhead of passing the bitmap between processes.
3023 final Bitmap ret = bitmap.createAshmemBitmap(config);
3024 bitmap.recycle();
3025 return ret;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003026 }
chaviwfbe47df2017-11-10 16:14:49 -08003027 }
3028
3029 private boolean shouldScreenshotWallpaper() {
3030 MutableBoolean screenshotReady = new MutableBoolean(false);
3031
3032 forAllWindows(w -> {
3033 if (!w.mIsWallpaper) {
3034 return false;
3035 }
3036
3037 // Found the wallpaper window
3038 final WindowStateAnimator winAnim = w.mWinAnimator;
3039
3040 if (winAnim.getShown() && winAnim.mLastAlpha > 0f) {
3041 screenshotReady.value = true;
3042 }
3043
3044 return true;
3045 }, true /* traverseTopToBottom */);
3046
3047 return screenshotReady.value;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003048 }
3049
3050 // TODO: Can this use createRotationMatrix()?
3051 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) {
3052 if (rot == Surface.ROTATION_90) {
3053 final int tmp = crop.top;
3054 crop.top = dw - crop.right;
3055 crop.right = crop.bottom;
3056 crop.bottom = dw - crop.left;
3057 crop.left = tmp;
3058 } else if (rot == Surface.ROTATION_180) {
3059 int tmp = crop.top;
3060 crop.top = dh - crop.bottom;
3061 crop.bottom = dh - tmp;
3062 tmp = crop.right;
3063 crop.right = dw - crop.left;
3064 crop.left = dw - tmp;
3065 } else if (rot == Surface.ROTATION_270) {
3066 final int tmp = crop.top;
3067 crop.top = crop.left;
3068 crop.left = dh - crop.bottom;
3069 crop.bottom = crop.right;
3070 crop.right = dh - tmp;
3071 }
3072 }
3073
3074 void onSeamlessRotationTimeout() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003075 // Used to indicate the layout is needed.
3076 mTmpWindow = null;
3077
3078 forAllWindows(w -> {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003079 if (!w.mSeamlesslyRotated) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003080 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003081 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003082 mTmpWindow = w;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003083 w.setDisplayLayoutNeeded();
3084 mService.markForSeamlessRotation(w, false);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003085 }, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003086
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003087 if (mTmpWindow != null) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003088 mService.mWindowPlacerLocked.performSurfacePlacement();
3089 }
3090 }
3091
Wale Ogunwale1666e312016-12-16 11:27:18 -08003092 void setExitingTokensHasVisible(boolean hasVisible) {
3093 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3094 mExitingTokens.get(i).hasVisible = hasVisible;
3095 }
3096
3097 // Initialize state of exiting applications.
3098 mTaskStackContainers.setExitingTokensHasVisible(hasVisible);
3099 }
3100
3101 void removeExistingTokensIfPossible() {
3102 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3103 final WindowToken token = mExitingTokens.get(i);
3104 if (!token.hasVisible) {
3105 mExitingTokens.remove(i);
3106 }
3107 }
3108
3109 // Time to remove any exiting applications?
3110 mTaskStackContainers.removeExistingAppTokensIfPossible();
3111 }
3112
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003113 @Override
3114 void onDescendantOverrideConfigurationChanged() {
3115 setLayoutNeeded();
3116 mService.requestTraversal();
3117 }
3118
David Stevens9440dc82017-03-16 19:00:20 -07003119 boolean okToDisplay() {
3120 if (mDisplayId == DEFAULT_DISPLAY) {
3121 return !mService.mDisplayFrozen
3122 && mService.mDisplayEnabled && mService.mPolicy.isScreenOn();
3123 }
3124 return mDisplayInfo.state == Display.STATE_ON;
3125 }
3126
3127 boolean okToAnimate() {
3128 return okToDisplay() &&
3129 (mDisplayId != DEFAULT_DISPLAY || mService.mPolicy.okToAnimate());
3130 }
3131
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07003132 static final class TaskForResizePointSearchResult {
3133 boolean searchDone;
3134 Task taskForResize;
3135
3136 void reset() {
3137 searchDone = false;
3138 taskForResize = null;
3139 }
3140 }
Robert Carr3b716242016-08-16 16:02:21 -07003141
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003142 private static final class ApplySurfaceChangesTransactionState {
3143 boolean displayHasContent;
3144 boolean obscured;
3145 boolean syswin;
3146 boolean focusDisplayed;
3147 float preferredRefreshRate;
3148 int preferredModeId;
3149
3150 void reset() {
3151 displayHasContent = false;
3152 obscured = false;
3153 syswin = false;
3154 focusDisplayed = false;
3155 preferredRefreshRate = 0;
3156 preferredModeId = 0;
3157 }
3158 }
3159
3160 private static final class ScreenshotApplicationState {
3161 WindowState appWin;
3162 int maxLayer;
3163 int minLayer;
3164 boolean screenshotReady;
3165
3166 void reset(boolean screenshotReady) {
3167 appWin = null;
3168 maxLayer = 0;
3169 minLayer = 0;
3170 this.screenshotReady = screenshotReady;
3171 minLayer = (screenshotReady) ? 0 : Integer.MAX_VALUE;
3172 }
3173 }
3174
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003175 /**
3176 * Base class for any direct child window container of {@link #DisplayContent} need to inherit
3177 * from. This is mainly a pass through class that allows {@link #DisplayContent} to have
3178 * homogeneous children type which is currently required by sub-classes of
3179 * {@link WindowContainer} class.
3180 */
3181 static class DisplayChildWindowContainer<E extends WindowContainer> extends WindowContainer<E> {
3182
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003183 DisplayChildWindowContainer(WindowManagerService service) {
3184 super(service);
3185 }
3186
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003187 @Override
3188 boolean fillsParent() {
3189 return true;
3190 }
3191
3192 @Override
3193 boolean isVisible() {
3194 return true;
Robert Carr3b716242016-08-16 16:02:21 -07003195 }
3196 }
3197
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003198 /**
3199 * Window container class that contains all containers on this display relating to Apps.
3200 * I.e Activities.
3201 */
Wale Ogunwale3a931692016-11-02 16:49:48 -07003202 private final class TaskStackContainers extends DisplayChildWindowContainer<TaskStack> {
Robert Carrb1579c82017-09-05 14:54:47 -07003203 /**
3204 * A control placed at the appropriate level for transitions to occur.
3205 */
chaviw23ee71c2017-12-18 11:29:41 -08003206 SurfaceControl mAppAnimationLayer = null;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003207
Robert Carrf7a7ca82017-12-06 13:17:07 -08003208 /**
3209 * Given that the split-screen divider does not have an AppWindowToken, it
3210 * will have to live inside of a "NonAppWindowContainer", in particular
3211 * {@link DisplayContent#mAboveAppWindowsContainers}. However, in visual Z order
3212 * it will need to be interleaved with some of our children, appearing on top of
3213 * both docked stacks but underneath any assistant stacks.
3214 *
3215 * To solve this problem we have this anchor control, which will always exist so
3216 * we can always assign it the correct value in our {@link #assignChildLayers}.
3217 * Likewise since it always exists, {@link AboveAppWindowContainers} can always
3218 * assign the divider a layer relative to it. This way we prevent linking lifecycle
3219 * events between the two containers.
3220 */
3221 SurfaceControl mSplitScreenDividerAnchor = null;
3222
Wale Ogunwale61911492017-10-11 08:50:50 -07003223 // Cached reference to some special stacks we tend to get a lot so we don't need to loop
3224 // through the list to find them.
3225 private TaskStack mHomeStack = null;
3226 private TaskStack mPinnedStack = null;
3227 private TaskStack mSplitScreenPrimaryStack = null;
3228
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003229 TaskStackContainers(WindowManagerService service) {
3230 super(service);
3231 }
3232
Wale Ogunwale61911492017-10-11 08:50:50 -07003233 /**
3234 * Returns the topmost stack on the display that is compatible with the input windowing mode
3235 * and activity type. Null is no compatible stack on the display.
3236 */
3237 TaskStack getStack(int windowingMode, int activityType) {
3238 if (activityType == ACTIVITY_TYPE_HOME) {
3239 return mHomeStack;
3240 }
3241 if (windowingMode == WINDOWING_MODE_PINNED) {
3242 return mPinnedStack;
3243 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3244 return mSplitScreenPrimaryStack;
3245 }
3246 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
3247 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003248 if (activityType == ACTIVITY_TYPE_UNDEFINED
3249 && windowingMode == stack.getWindowingMode()) {
3250 // Passing in undefined type means we want to match the topmost stack with the
3251 // windowing mode.
3252 return stack;
3253 }
Wale Ogunwale61911492017-10-11 08:50:50 -07003254 if (stack.isCompatible(windowingMode, activityType)) {
3255 return stack;
3256 }
3257 }
3258 return null;
3259 }
3260
3261 @VisibleForTesting
3262 TaskStack getTopStack() {
3263 return mTaskStackContainers.getChildCount() > 0
3264 ? mTaskStackContainers.getChildAt(mTaskStackContainers.getChildCount() - 1) : null;
3265 }
3266
3267 TaskStack getHomeStack() {
3268 if (mHomeStack == null && mDisplayId == DEFAULT_DISPLAY) {
3269 Slog.e(TAG_WM, "getHomeStack: Returning null from this=" + this);
3270 }
3271 return mHomeStack;
3272 }
3273
3274 TaskStack getPinnedStack() {
3275 return mPinnedStack;
3276 }
3277
Matthew Ng64e77cf2017-10-31 14:01:31 -07003278 TaskStack getSplitScreenPrimaryStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07003279 return mSplitScreenPrimaryStack;
3280 }
3281
Winson Chunge2d72172018-01-25 17:46:20 +00003282 ArrayList<Task> getVisibleTasks() {
3283 final ArrayList<Task> visibleTasks = new ArrayList<>();
3284 forAllTasks(task -> {
3285 if (task.isVisible()) {
3286 visibleTasks.add(task);
3287 }
3288 });
3289 return visibleTasks;
3290 }
3291
Andrii Kulian839def92016-11-02 10:58:58 -07003292 /**
3293 * Adds the stack to this container.
Wale Ogunwale61911492017-10-11 08:50:50 -07003294 * @see DisplayContent#createStack(int, boolean, StackWindowController)
Andrii Kulian839def92016-11-02 10:58:58 -07003295 */
3296 void addStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale61911492017-10-11 08:50:50 -07003297 addStackReferenceIfNeeded(stack);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003298 addChild(stack, onTop);
3299 stack.onDisplayChanged(DisplayContent.this);
Robert Carr3b716242016-08-16 16:02:21 -07003300 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003301
Wale Ogunwale61911492017-10-11 08:50:50 -07003302 void onStackWindowingModeChanged(TaskStack stack) {
3303 removeStackReferenceIfNeeded(stack);
3304 addStackReferenceIfNeeded(stack);
3305 if (stack == mPinnedStack && getTopStack() != stack) {
3306 // Looks like this stack changed windowing mode to pinned. Move it to the top.
3307 positionChildAt(POSITION_TOP, stack, false /* includingParents */);
3308 }
3309 }
3310
3311 private void addStackReferenceIfNeeded(TaskStack stack) {
3312 if (stack.isActivityTypeHome()) {
3313 if (mHomeStack != null) {
3314 throw new IllegalArgumentException("addStackReferenceIfNeeded: home stack="
3315 + mHomeStack + " already exist on display=" + this + " stack=" + stack);
3316 }
3317 mHomeStack = stack;
3318 }
3319 final int windowingMode = stack.getWindowingMode();
3320 if (windowingMode == WINDOWING_MODE_PINNED) {
3321 if (mPinnedStack != null) {
3322 throw new IllegalArgumentException("addStackReferenceIfNeeded: pinned stack="
3323 + mPinnedStack + " already exist on display=" + this
3324 + " stack=" + stack);
3325 }
3326 mPinnedStack = stack;
3327 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3328 if (mSplitScreenPrimaryStack != null) {
3329 throw new IllegalArgumentException("addStackReferenceIfNeeded:"
3330 + " split-screen-primary" + " stack=" + mSplitScreenPrimaryStack
3331 + " already exist on display=" + this + " stack=" + stack);
3332 }
3333 mSplitScreenPrimaryStack = stack;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003334 mDividerControllerLocked.notifyDockedStackExistsChanged(true);
Wale Ogunwale61911492017-10-11 08:50:50 -07003335 }
3336 }
3337
3338 private void removeStackReferenceIfNeeded(TaskStack stack) {
3339 if (stack == mHomeStack) {
3340 mHomeStack = null;
3341 } else if (stack == mPinnedStack) {
3342 mPinnedStack = null;
3343 } else if (stack == mSplitScreenPrimaryStack) {
3344 mSplitScreenPrimaryStack = null;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003345 // Re-set the split-screen create mode whenever the split-screen stack is removed.
3346 mService.setDockedStackCreateStateLocked(
3347 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
3348 mDividerControllerLocked.notifyDockedStackExistsChanged(false);
Wale Ogunwale61911492017-10-11 08:50:50 -07003349 }
Andrii Kulian839def92016-11-02 10:58:58 -07003350 }
3351
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003352 private void addChild(TaskStack stack, boolean toTop) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003353 final int addIndex = findPositionForStack(toTop ? mChildren.size() : 0, stack,
3354 true /* adding */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003355 addChild(stack, addIndex);
3356 setLayoutNeeded();
3357 }
3358
Wale Ogunwale61911492017-10-11 08:50:50 -07003359 @Override
3360 protected void removeChild(TaskStack stack) {
3361 super.removeChild(stack);
3362 removeStackReferenceIfNeeded(stack);
3363 }
Bryce Lee00d586d2017-07-28 20:48:43 -07003364
3365 @Override
3366 boolean isOnTop() {
3367 // Considered always on top
3368 return true;
3369 }
3370
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003371 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -08003372 void positionChildAt(int position, TaskStack child, boolean includingParents) {
Wale Ogunwale3382ab12017-07-27 08:55:03 -07003373 if (child.getWindowConfiguration().isAlwaysOnTop()
3374 && position != POSITION_TOP) {
Andrii Kuliand2765632016-12-12 22:26:34 -08003375 // This stack is always-on-top, override the default behavior.
3376 Slog.w(TAG_WM, "Ignoring move of always-on-top stack=" + this + " to bottom");
3377
3378 // Moving to its current position, as we must call super but we don't want to
3379 // perform any meaningful action.
3380 final int currentPosition = mChildren.indexOf(child);
3381 super.positionChildAt(currentPosition, child, false /* includingParents */);
3382 return;
3383 }
3384
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003385 final int targetPosition = findPositionForStack(position, child, false /* adding */);
3386 super.positionChildAt(targetPosition, child, includingParents);
3387
3388 setLayoutNeeded();
3389 }
3390
3391 /**
3392 * When stack is added or repositioned, find a proper position for it.
3393 * This will make sure that pinned stack always stays on top.
3394 * @param requestedPosition Position requested by caller.
3395 * @param stack Stack to be added or positioned.
3396 * @param adding Flag indicates whether we're adding a new stack or positioning an existing.
3397 * @return The proper position for the stack.
3398 */
3399 private int findPositionForStack(int requestedPosition, TaskStack stack, boolean adding) {
3400 final int topChildPosition = mChildren.size() - 1;
3401 boolean toTop = requestedPosition == POSITION_TOP;
3402 toTop |= adding ? requestedPosition >= topChildPosition + 1
3403 : requestedPosition >= topChildPosition;
3404 int targetPosition = requestedPosition;
3405
Wale Ogunwale61911492017-10-11 08:50:50 -07003406 if (toTop && stack.getWindowingMode() != WINDOWING_MODE_PINNED && hasPinnedStack()) {
Bryce Lee48f4b572017-04-10 10:54:15 -07003407 // The pinned stack is always the top most stack (always-on-top) when it is present.
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003408 TaskStack topStack = mChildren.get(topChildPosition);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07003409 if (topStack.getWindowingMode() != WINDOWING_MODE_PINNED) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003410 throw new IllegalStateException("Pinned stack isn't top stack??? " + mChildren);
3411 }
3412
3413 // So, stack is moved just below the pinned stack.
3414 // When we're adding a new stack the target is the current pinned stack position.
3415 // When we're positioning an existing stack the target is the position below pinned
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08003416 // stack, because WindowContainer#positionAt() first removes element and then adds
3417 // it to specified place.
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003418 targetPosition = adding ? topChildPosition : topChildPosition - 1;
3419 }
3420
3421 return targetPosition;
Andrii Kuliand2765632016-12-12 22:26:34 -08003422 }
3423
3424 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003425 boolean forAllWindows(ToBooleanFunction<WindowState> callback,
3426 boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003427 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003428 if (super.forAllWindows(callback, traverseTopToBottom)) {
3429 return true;
3430 }
3431 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3432 return true;
3433 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003434 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003435 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3436 return true;
3437 }
3438 if (super.forAllWindows(callback, traverseTopToBottom)) {
3439 return true;
3440 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003441 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003442 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003443 }
3444
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003445 private boolean forAllExitingAppTokenWindows(ToBooleanFunction<WindowState> callback,
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003446 boolean traverseTopToBottom) {
3447 // For legacy reasons we process the TaskStack.mExitingAppTokens first here before the
3448 // app tokens.
3449 // TODO: Investigate if we need to continue to do this or if we can just process them
3450 // in-order.
3451 if (traverseTopToBottom) {
3452 for (int i = mChildren.size() - 1; i >= 0; --i) {
3453 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3454 for (int j = appTokens.size() - 1; j >= 0; --j) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003455 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3456 traverseTopToBottom)) {
3457 return true;
3458 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003459 }
3460 }
3461 } else {
3462 final int count = mChildren.size();
3463 for (int i = 0; i < count; ++i) {
3464 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3465 final int appTokensCount = appTokens.size();
3466 for (int j = 0; j < appTokensCount; j++) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003467 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3468 traverseTopToBottom)) {
3469 return true;
3470 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003471 }
3472 }
3473 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003474 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003475 }
3476
Wale Ogunwale1666e312016-12-16 11:27:18 -08003477 void setExitingTokensHasVisible(boolean hasVisible) {
3478 for (int i = mChildren.size() - 1; i >= 0; --i) {
3479 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3480 for (int j = appTokens.size() - 1; j >= 0; --j) {
3481 appTokens.get(j).hasVisible = hasVisible;
3482 }
3483 }
3484 }
3485
3486 void removeExistingAppTokensIfPossible() {
3487 for (int i = mChildren.size() - 1; i >= 0; --i) {
3488 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3489 for (int j = appTokens.size() - 1; j >= 0; --j) {
3490 final AppWindowToken token = appTokens.get(j);
3491 if (!token.hasVisible && !mService.mClosingApps.contains(token)
3492 && (!token.mIsExiting || token.isEmpty())) {
3493 // Make sure there is no animation running on this token, so any windows
3494 // associated with it will be removed as soon as their animations are
3495 // complete.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003496 cancelAnimation();
Wale Ogunwale1666e312016-12-16 11:27:18 -08003497 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG,
3498 "performLayout: App token exiting now removed" + token);
3499 token.removeIfPossible();
3500 }
3501 }
3502 }
3503 }
3504
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003505 @Override
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003506 int getOrientation() {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003507 if (isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY)
3508 || isStackVisible(WINDOWING_MODE_FREEFORM)) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003509 // Apps and their containers are not allowed to specify an orientation while the
3510 // docked or freeform stack is visible...except for the home stack/task if the
3511 // docked stack is minimized and it actually set something.
3512 if (mHomeStack != null && mHomeStack.isVisible()
3513 && mDividerControllerLocked.isMinimizedDock()) {
3514 final int orientation = mHomeStack.getOrientation();
3515 if (orientation != SCREEN_ORIENTATION_UNSET) {
3516 return orientation;
3517 }
3518 }
3519 return SCREEN_ORIENTATION_UNSPECIFIED;
3520 }
3521
3522 final int orientation = super.getOrientation();
Dean Harding3e5a1522017-10-06 09:19:01 -07003523 boolean isCar = mService.mContext.getPackageManager().hasSystemFeature(
3524 PackageManager.FEATURE_AUTOMOTIVE);
3525 if (isCar) {
3526 // In a car, you cannot physically rotate the screen, so it doesn't make sense to
3527 // allow anything but the default orientation.
3528 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
3529 "Forcing UNSPECIFIED orientation in car. Ignoring " + orientation);
3530 return SCREEN_ORIENTATION_UNSPECIFIED;
3531 }
3532
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003533 if (orientation != SCREEN_ORIENTATION_UNSET
3534 && orientation != SCREEN_ORIENTATION_BEHIND) {
3535 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
3536 "App is requesting an orientation, return " + orientation);
3537 return orientation;
3538 }
3539
3540 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulian8ee72852017-03-10 10:36:45 -08003541 "No app is requesting an orientation, return " + mLastOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003542 // The next app has not been requested to be visible, so we keep the current orientation
3543 // to prevent freezing/unfreezing the display too early.
Andrii Kulian8ee72852017-03-10 10:36:45 -08003544 return mLastOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003545 }
Robert Carrb1579c82017-09-05 14:54:47 -07003546
3547 @Override
3548 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carr2f8aa392018-01-31 14:46:51 -08003549 assignStackOrdering(t);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003550
Robert Carr2f8aa392018-01-31 14:46:51 -08003551 for (int i = 0; i < mChildren.size(); i++) {
3552 final TaskStack s = mChildren.get(i);
3553 s.assignChildLayers(t);
3554 }
3555 }
3556
3557 void assignStackOrdering(SurfaceControl.Transaction t) {
Robert Carrf7a7ca82017-12-06 13:17:07 -08003558 final int HOME_STACK_STATE = 0;
3559 final int NORMAL_STACK_STATE = 1;
3560 final int ALWAYS_ON_TOP_STATE = 2;
3561
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003562 int layer = 0;
Robert Carr2f8aa392018-01-31 14:46:51 -08003563 int layerForAnimationLayer = 0;
3564
Robert Carrf7a7ca82017-12-06 13:17:07 -08003565 for (int state = 0; state <= ALWAYS_ON_TOP_STATE; state++) {
3566 for (int i = 0; i < mChildren.size(); i++) {
3567 final TaskStack s = mChildren.get(i);
Robert Carr2f8aa392018-01-31 14:46:51 -08003568 if (state == HOME_STACK_STATE && !s.isActivityTypeHome()) {
3569 continue;
3570 } else if (state == NORMAL_STACK_STATE && (s.isActivityTypeHome()
3571 || s.isAlwaysOnTop())) {
3572 continue;
3573 } else if (state == ALWAYS_ON_TOP_STATE && !s.isAlwaysOnTop()) {
3574 continue;
3575 }
3576 s.assignLayer(t, layer++);
3577 if (s.inSplitScreenWindowingMode() && mSplitScreenDividerAnchor != null) {
3578 t.setLayer(mSplitScreenDividerAnchor, layer++);
3579 }
3580 if (s.isSelfOrChildAnimating()) {
3581 // Ensure the animation layer ends up above the
3582 // highest animating stack and no higher.
3583 layerForAnimationLayer = layer++;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003584 }
3585 }
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003586 }
Robert Carr2f8aa392018-01-31 14:46:51 -08003587 if (mAppAnimationLayer != null) {
3588 t.setLayer(mAppAnimationLayer, layerForAnimationLayer);
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003589 }
Robert Carrb1579c82017-09-05 14:54:47 -07003590 }
3591
3592 @Override
chaviw23ee71c2017-12-18 11:29:41 -08003593 SurfaceControl getAppAnimationLayer() {
3594 return mAppAnimationLayer;
3595 }
3596
Robert Carrf7a7ca82017-12-06 13:17:07 -08003597 SurfaceControl getSplitScreenDividerAnchor() {
3598 return mSplitScreenDividerAnchor;
3599 }
3600
chaviw23ee71c2017-12-18 11:29:41 -08003601 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07003602 void onParentSet() {
3603 super.onParentSet();
3604 if (getParent() != null) {
chaviw23ee71c2017-12-18 11:29:41 -08003605 mAppAnimationLayer = makeChildSurface(null)
3606 .setName("animationLayer")
3607 .build();
Robert Carrf7a7ca82017-12-06 13:17:07 -08003608 mSplitScreenDividerAnchor = makeChildSurface(null)
3609 .setName("splitScreenDividerAnchor")
3610 .build();
3611 getPendingTransaction()
3612 .show(mAppAnimationLayer)
3613 .show(mSplitScreenDividerAnchor);
chaviw23ee71c2017-12-18 11:29:41 -08003614 scheduleAnimation();
Robert Carrb1579c82017-09-05 14:54:47 -07003615 } else {
chaviw23ee71c2017-12-18 11:29:41 -08003616 mAppAnimationLayer.destroy();
3617 mAppAnimationLayer = null;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003618 mSplitScreenDividerAnchor.destroy();
3619 mSplitScreenDividerAnchor = null;
Robert Carrb1579c82017-09-05 14:54:47 -07003620 }
3621 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003622 }
3623
Robert Carree4d4b92017-11-22 12:21:46 -08003624 private final class AboveAppWindowContainers extends NonAppWindowContainers {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003625 AboveAppWindowContainers(String name, WindowManagerService service) {
3626 super(name, service);
Robert Carree4d4b92017-11-22 12:21:46 -08003627 }
3628
3629 void assignChildLayers(SurfaceControl.Transaction t, WindowContainer imeContainer) {
3630 boolean needAssignIme = imeContainer != null
3631 && imeContainer.getSurfaceControl() != null;
3632 for (int j = 0; j < mChildren.size(); ++j) {
3633 final WindowToken wt = mChildren.get(j);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003634
3635 // See {@link mSplitScreenDividerAnchor}
3636 if (wt.windowType == TYPE_DOCK_DIVIDER) {
3637 wt.assignRelativeLayer(t, mTaskStackContainers.getSplitScreenDividerAnchor(), 1);
3638 continue;
3639 }
Robert Carree4d4b92017-11-22 12:21:46 -08003640 wt.assignLayer(t, j);
3641 wt.assignChildLayers(t);
3642
3643 int layer = mService.mPolicy.getWindowLayerFromTypeLw(
3644 wt.windowType, wt.mOwnerCanManageAppTokens);
Robert Carrb8e78fa2017-11-28 13:07:58 -08003645
3646 if (needAssignIme && layer >= mService.mPolicy.getWindowLayerFromTypeLw(
3647 TYPE_INPUT_METHOD_DIALOG, true)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003648 imeContainer.assignRelativeLayer(t, wt.getSurfaceControl(), -1);
Robert Carree4d4b92017-11-22 12:21:46 -08003649 needAssignIme = false;
3650 }
3651 }
3652 if (needAssignIme) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003653 imeContainer.assignRelativeLayer(t, getSurfaceControl(), Integer.MAX_VALUE);
Robert Carree4d4b92017-11-22 12:21:46 -08003654 }
3655 }
3656 }
3657
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003658 /**
3659 * Window container class that contains all containers on this display that are not related to
3660 * Apps. E.g. status bar.
3661 */
Robert Carree4d4b92017-11-22 12:21:46 -08003662 private class NonAppWindowContainers extends DisplayChildWindowContainer<WindowToken> {
Wale Ogunwale3a931692016-11-02 16:49:48 -07003663 /**
3664 * Compares two child window tokens returns -1 if the first is lesser than the second in
3665 * terms of z-order and 1 otherwise.
3666 */
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003667 private final Comparator<WindowToken> mWindowComparator = (token1, token2) ->
Wale Ogunwale3a931692016-11-02 16:49:48 -07003668 // Tokens with higher base layer are z-ordered on-top.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08003669 mService.mPolicy.getWindowLayerFromTypeLw(token1.windowType,
3670 token1.mOwnerCanManageAppTokens)
3671 < mService.mPolicy.getWindowLayerFromTypeLw(token2.windowType,
3672 token2.mOwnerCanManageAppTokens) ? -1 : 1;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003673
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003674 private final Predicate<WindowState> mGetOrientingWindow = w -> {
3675 if (!w.isVisibleLw() || !w.mPolicyVisibilityAfterAnim) {
3676 return false;
3677 }
3678 final int req = w.mAttrs.screenOrientation;
3679 if(req == SCREEN_ORIENTATION_UNSPECIFIED || req == SCREEN_ORIENTATION_BEHIND
3680 || req == SCREEN_ORIENTATION_UNSET) {
3681 return false;
3682 }
3683 return true;
3684 };
3685
Wale Ogunwale3a931692016-11-02 16:49:48 -07003686 private final String mName;
chaviwf29223e2018-01-31 13:23:51 -08003687 private final Dimmer mDimmer = new Dimmer(this);
3688 private final Rect mTmpDimBoundsRect = new Rect();
3689
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003690 NonAppWindowContainers(String name, WindowManagerService service) {
3691 super(service);
Wale Ogunwale3a931692016-11-02 16:49:48 -07003692 mName = name;
3693 }
3694
3695 void addChild(WindowToken token) {
3696 addChild(token, mWindowComparator);
3697 }
3698
3699 @Override
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003700 int getOrientation() {
3701 final WindowManagerPolicy policy = mService.mPolicy;
3702 // Find a window requesting orientation.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003703 final WindowState win = getWindow(mGetOrientingWindow);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003704
3705 if (win != null) {
3706 final int req = win.mAttrs.screenOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003707 if (policy.isKeyguardHostWindow(win.mAttrs)) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08003708 mLastKeyguardForcedOrientation = req;
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003709 if (mService.mKeyguardGoingAway) {
3710 // Keyguard can't affect the orientation if it is going away...
3711 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
3712 return SCREEN_ORIENTATION_UNSET;
3713 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003714 }
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003715 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, win + " forcing orientation to " + req);
Andrii Kulian8ee72852017-03-10 10:36:45 -08003716 return (mLastWindowForcedOrientation = req);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003717 }
3718
Andrii Kulian8ee72852017-03-10 10:36:45 -08003719 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003720
Jorim Jaggi75520d52017-08-24 17:23:19 +02003721 if (policy.isKeyguardShowingAndNotOccluded()
3722 || mService.mAppTransition.getAppTransition() == TRANSIT_KEYGUARD_UNOCCLUDE) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08003723 return mLastKeyguardForcedOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003724 }
3725
3726 return SCREEN_ORIENTATION_UNSET;
3727 }
3728
3729 @Override
Wale Ogunwale3a931692016-11-02 16:49:48 -07003730 String getName() {
3731 return mName;
3732 }
chaviwf29223e2018-01-31 13:23:51 -08003733
3734 @Override
3735 Dimmer getDimmer() {
3736 return mDimmer;
3737 }
3738
3739 @Override
3740 void prepareSurfaces() {
3741 mDimmer.resetDimStates();
3742 super.prepareSurfaces();
3743 getBounds(mTmpDimBoundsRect);
3744
3745 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
3746 scheduleAnimation();
3747 }
3748 }
Robert Carr3b716242016-08-16 16:02:21 -07003749 }
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01003750
Robert Carr9034d962018-01-04 18:27:42 -08003751 private class NonMagnifiableWindowContainers extends NonAppWindowContainers {
3752 NonMagnifiableWindowContainers(String name, WindowManagerService service) {
3753 super(name, service);
3754 }
3755
3756 @Override
3757 void applyMagnificationSpec(Transaction t, MagnificationSpec spec) {
3758 }
3759 };
3760
Robert Carrb1579c82017-09-05 14:54:47 -07003761 SurfaceControl.Builder makeSurface(SurfaceSession s) {
3762 return mService.makeSurfaceBuilder(s)
3763 .setParent(mWindowingLayer);
3764 }
3765
3766 @Override
3767 SurfaceSession getSession() {
3768 return mSession;
3769 }
3770
3771 @Override
3772 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07003773 SurfaceSession s = child != null ? child.getSession() : getSession();
3774 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(s);
Robert Carrb1579c82017-09-05 14:54:47 -07003775 b.setSize(mSurfaceSize, mSurfaceSize);
Robert Carrf59b8dd2017-10-02 18:58:36 -07003776
3777 if (child == null) {
3778 return b;
3779 }
3780
Robert Carree4d4b92017-11-22 12:21:46 -08003781 return b.setName(child.getName())
3782 .setParent(mWindowingLayer);
Robert Carrb1579c82017-09-05 14:54:47 -07003783 }
3784
3785 /**
3786 * The makeSurface variants are for use by the window-container
3787 * hierarchy. makeOverlay here is a function for various non windowing
3788 * overlays like the ScreenRotation screenshot, the Strict Mode Flash
3789 * and other potpourii.
3790 */
3791 SurfaceControl.Builder makeOverlay() {
3792 return mService.makeSurfaceBuilder(mSession)
3793 .setParent(mOverlayLayer);
3794 }
3795
Daichi Hironoa1fb9be2017-12-18 17:02:54 +09003796 /**
3797 * Reparents the given surface to mOverlayLayer.
3798 */
3799 void reparentToOverlay(Transaction transaction, SurfaceControl surface) {
3800 transaction.reparent(surface, mOverlayLayer.getHandle());
3801 }
3802
Robert Carrb1579c82017-09-05 14:54:47 -07003803 void applyMagnificationSpec(MagnificationSpec spec) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07003804 applyMagnificationSpec(getPendingTransaction(), spec);
3805 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -07003806 }
3807
3808 @Override
3809 void onParentSet() {
3810 // Since we are the top of the SurfaceControl hierarchy here
3811 // we create the root surfaces explicitly rather than chaining
3812 // up as the default implementation in onParentSet does. So we
3813 // explicitly do NOT call super here.
3814 }
3815
3816 @Override
3817 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carrb1579c82017-09-05 14:54:47 -07003818
3819 // These are layers as children of "mWindowingLayer"
3820 mBelowAppWindowsContainers.assignLayer(t, 0);
3821 mTaskStackContainers.assignLayer(t, 1);
3822 mAboveAppWindowsContainers.assignLayer(t, 2);
3823
3824 WindowState imeTarget = mService.mInputMethodTarget;
Robert Carree4d4b92017-11-22 12:21:46 -08003825 boolean needAssignIme = true;
Robert Carr1cafdf82017-11-22 13:56:43 -08003826
Robert Carree4d4b92017-11-22 12:21:46 -08003827 // In the case where we have an IME target that is not in split-screen
3828 // mode IME assignment is easy. We just need the IME to go directly above
3829 // the target. This way children of the target will naturally go above the IME
3830 // and everyone is happy.
Robert Carr1cafdf82017-11-22 13:56:43 -08003831 //
Robert Carree4d4b92017-11-22 12:21:46 -08003832 // In the case of split-screen windowing mode, we need to elevate the IME above the
3833 // docked divider while keeping the app itself below the docked divider, so instead
3834 // we use relative layering of the IME targets child windows, and place the
3835 // IME in the non-app layer (see {@link AboveAppWindowContainers#assignChildLayers}).
Robert Carr1cafdf82017-11-22 13:56:43 -08003836 //
Robert Carree4d4b92017-11-22 12:21:46 -08003837 // In the case where we have no IME target we assign it where it's base layer would
3838 // place it in the AboveAppWindowContainers.
3839 if (imeTarget != null && !imeTarget.inSplitScreenWindowingMode()
3840 && (imeTarget.getSurfaceControl() != null)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003841 mImeWindowsContainers.assignRelativeLayer(t, imeTarget.getSurfaceControl(),
Robert Carrb1579c82017-09-05 14:54:47 -07003842 // TODO: We need to use an extra level on the app surface to ensure
3843 // this is always above SurfaceView but always below attached window.
3844 1);
Robert Carree4d4b92017-11-22 12:21:46 -08003845 needAssignIme = false;
Robert Carrb1579c82017-09-05 14:54:47 -07003846 }
3847
3848 // Above we have assigned layers to our children, now we ask them to assign
3849 // layers to their children.
3850 mBelowAppWindowsContainers.assignChildLayers(t);
3851 mTaskStackContainers.assignChildLayers(t);
Robert Carree4d4b92017-11-22 12:21:46 -08003852 mAboveAppWindowsContainers.assignChildLayers(t,
3853 needAssignIme == true ? mImeWindowsContainers : null);
Robert Carrb1579c82017-09-05 14:54:47 -07003854 mImeWindowsContainers.assignChildLayers(t);
3855 }
3856
3857 /**
3858 * Here we satisfy an unfortunate special case of the IME in split-screen mode. Imagine
3859 * that the IME target is one of the docked applications. We'd like the docked divider to be
3860 * above both of the applications, and we'd like the IME to be above the docked divider.
3861 * However we need child windows of the applications to be above the IME (Text drag handles).
3862 * This is a non-strictly hierarcical layering and we need to break out of the Z ordering
3863 * somehow. We do this by relatively ordering children of the target to the IME in cooperation
3864 * with {@link #WindowState#assignLayer}
3865 */
3866 void assignRelativeLayerForImeTargetChild(SurfaceControl.Transaction t, WindowContainer child) {
3867 t.setRelativeLayer(child.getSurfaceControl(), mImeWindowsContainers.getSurfaceControl(), 1);
3868 }
3869
3870 @Override
Chavi Weingarten38804382018-02-15 21:00:15 +00003871 public void destroyAfterPendingTransaction(SurfaceControl surface) {
3872 mPendingDestroyingSurfaces.add(surface);
3873 }
3874
3875 /**
3876 * Destroys any surfaces that have been put into the pending list with
3877 * {@link #destroyAfterPendingTransaction}.
3878 */
3879 void onPendingTransactionApplied() {
3880 for (int i = mPendingDestroyingSurfaces.size() - 1; i >= 0; i--) {
3881 mPendingDestroyingSurfaces.get(i).destroy();
3882 }
3883 mPendingDestroyingSurfaces.clear();
3884 }
3885
3886 @Override
Jorim Jaggi9af095b2017-12-12 17:18:57 +01003887 void prepareSurfaces() {
3888 final ScreenRotationAnimation screenRotationAnimation =
3889 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
3890 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
3891 screenRotationAnimation.getEnterTransformation().getMatrix().getValues(mTmpFloats);
3892 mPendingTransaction.setMatrix(mWindowingLayer,
3893 mTmpFloats[Matrix.MSCALE_X], mTmpFloats[Matrix.MSKEW_Y],
3894 mTmpFloats[Matrix.MSKEW_X], mTmpFloats[Matrix.MSCALE_Y]);
3895 mPendingTransaction.setPosition(mWindowingLayer,
3896 mTmpFloats[Matrix.MTRANS_X], mTmpFloats[Matrix.MTRANS_Y]);
3897 mPendingTransaction.setAlpha(mWindowingLayer,
3898 screenRotationAnimation.getEnterTransformation().getAlpha());
3899 }
3900 super.prepareSurfaces();
3901 }
Robert Carr2f8aa392018-01-31 14:46:51 -08003902
3903 void assignStackOrdering(SurfaceControl.Transaction t) {
3904 mTaskStackContainers.assignStackOrdering(t);
3905 }
Craig Mautner59c00972012-07-30 12:10:24 -07003906}