blob: d7a58d99a4d69d7fc67eb9488a4bfac0fb85f96a [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
383 /**
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
Jorim Jaggi6b0f8462018-01-05 17:23:47 +0100665 w.handleWindowMovedIfNeeded(mPendingTransaction);
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,
Robert Carrb1579c82017-09-05 14:54:47 -0700728 WallpaperController wallpaperController) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100729 super(service);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800730 if (service.mRoot.getDisplayContent(display.getDisplayId()) != null) {
731 throw new IllegalArgumentException("Display with ID=" + display.getDisplayId()
732 + " already exists=" + service.mRoot.getDisplayContent(display.getDisplayId())
733 + " new=" + display);
734 }
735
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700736 mDisplay = display;
737 mDisplayId = display.getDisplayId();
Wale Ogunwale0303c572016-10-20 10:16:29 -0700738 mWallpaperController = wallpaperController;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700739 display.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700740 display.getMetrics(mDisplayMetrics);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700741 isDefaultDisplay = mDisplayId == DEFAULT_DISPLAY;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000742 mDisplayFrames = new DisplayFrames(mDisplayId, mDisplayInfo);
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -0700743 initializeDisplayBaseInfo();
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800744 mDividerControllerLocked = new DockedStackDividerController(service, this);
Winson Chung655332c2016-10-31 13:14:28 -0700745 mPinnedStackControllerLocked = new PinnedStackController(service, this);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700746
Robert Carrb1579c82017-09-05 14:54:47 -0700747 mSurfaceSize = Math.max(mBaseDisplayHeight, mBaseDisplayWidth);
748
749 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(mSession)
750 .setSize(mSurfaceSize, mSurfaceSize)
751 .setOpaque(true);
752 mWindowingLayer = b.setName("Display Root").build();
753 mOverlayLayer = b.setName("Display Overlays").build();
754
Robert Carrf59b8dd2017-10-02 18:58:36 -0700755 getPendingTransaction().setLayer(mWindowingLayer, 0)
Robert Carrb1579c82017-09-05 14:54:47 -0700756 .setLayerStack(mWindowingLayer, mDisplayId)
757 .show(mWindowingLayer)
758 .setLayer(mOverlayLayer, 1)
759 .setLayerStack(mOverlayLayer, mDisplayId)
760 .show(mOverlayLayer);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700761 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -0700762
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700763 // These are the only direct children we should ever have and they are permanent.
Wale Ogunwale3a931692016-11-02 16:49:48 -0700764 super.addChild(mBelowAppWindowsContainers, null);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700765 super.addChild(mTaskStackContainers, null);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700766 super.addChild(mAboveAppWindowsContainers, null);
767 super.addChild(mImeWindowsContainers, null);
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800768
769 // Add itself as a child to the root container.
770 mService.mRoot.addChild(this, null);
Bryce Leed1871262017-06-12 14:12:29 -0700771
772 // TODO(b/62541591): evaluate whether this is the best spot to declare the
773 // {@link DisplayContent} ready for use.
774 mDisplayReady = true;
775 }
776
777 boolean isReady() {
778 // The display is ready when the system and the individual display are both ready.
779 return mService.mDisplayReady && mDisplayReady;
Craig Mautner59c00972012-07-30 12:10:24 -0700780 }
781
782 int getDisplayId() {
783 return mDisplayId;
784 }
785
Wale Ogunwale02319a62016-09-26 15:21:22 -0700786 WindowToken getWindowToken(IBinder binder) {
787 return mTokenMap.get(binder);
788 }
789
790 AppWindowToken getAppWindowToken(IBinder binder) {
791 final WindowToken token = getWindowToken(binder);
792 if (token == null) {
793 return null;
794 }
795 return token.asAppWindowToken();
796 }
797
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700798 private void addWindowToken(IBinder binder, WindowToken token) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700799 final DisplayContent dc = mService.mRoot.getWindowTokenDisplay(token);
800 if (dc != null) {
801 // We currently don't support adding a window token to the display if the display
802 // already has the binder mapped to another token. If there is a use case for supporting
803 // this moving forward we will either need to merge the WindowTokens some how or have
804 // the binder map to a list of window tokens.
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700805 throw new IllegalArgumentException("Can't map token=" + token + " to display="
806 + getName() + " already mapped to display=" + dc + " tokens=" + dc.mTokenMap);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700807 }
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700808 if (binder == null) {
809 throw new IllegalArgumentException("Can't map token=" + token + " to display="
810 + getName() + " binder is null");
811 }
812 if (token == null) {
813 throw new IllegalArgumentException("Can't map null token to display="
814 + getName() + " binder=" + binder);
815 }
816
Wale Ogunwale02319a62016-09-26 15:21:22 -0700817 mTokenMap.put(binder, token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700818
819 if (token.asAppWindowToken() == null) {
820 // Add non-app token to container hierarchy on the display. App tokens are added through
821 // the parent container managing them (e.g. Tasks).
Wale Ogunwale3a931692016-11-02 16:49:48 -0700822 switch (token.windowType) {
823 case TYPE_WALLPAPER:
824 mBelowAppWindowsContainers.addChild(token);
825 break;
826 case TYPE_INPUT_METHOD:
827 case TYPE_INPUT_METHOD_DIALOG:
828 mImeWindowsContainers.addChild(token);
829 break;
830 default:
831 mAboveAppWindowsContainers.addChild(token);
832 break;
833 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700834 }
Wale Ogunwale02319a62016-09-26 15:21:22 -0700835 }
836
837 WindowToken removeWindowToken(IBinder binder) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700838 final WindowToken token = mTokenMap.remove(binder);
839 if (token != null && token.asAppWindowToken() == null) {
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800840 token.setExiting();
841 }
842 return token;
843 }
844
845 /** Changes the display the input window token is housed on to this one. */
846 void reParentWindowToken(WindowToken token) {
847 final DisplayContent prevDc = token.getDisplayContent();
848 if (prevDc == this) {
849 return;
850 }
Andrii Kulian6cc1a1d2016-12-27 23:52:59 -0800851 if (prevDc != null && prevDc.mTokenMap.remove(token.token) != null
852 && token.asAppWindowToken() == null) {
853 // Removed the token from the map, but made sure it's not an app token before removing
854 // from parent.
855 token.getParent().removeChild(token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700856 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800857
858 addWindowToken(token.token, token);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700859 }
860
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700861 void removeAppToken(IBinder binder) {
862 final WindowToken token = removeWindowToken(binder);
863 if (token == null) {
864 Slog.w(TAG_WM, "removeAppToken: Attempted to remove non-existing token: " + binder);
865 return;
866 }
867
868 final AppWindowToken appToken = token.asAppWindowToken();
869
870 if (appToken == null) {
871 Slog.w(TAG_WM, "Attempted to remove non-App token: " + binder + " token=" + token);
872 return;
873 }
874
875 appToken.onRemovedFromDisplay();
876 }
877
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700878 Display getDisplay() {
879 return mDisplay;
880 }
881
Craig Mautner59c00972012-07-30 12:10:24 -0700882 DisplayInfo getDisplayInfo() {
883 return mDisplayInfo;
884 }
885
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700886 DisplayMetrics getDisplayMetrics() {
887 return mDisplayMetrics;
888 }
889
Andrii Kulian8ee72852017-03-10 10:36:45 -0800890 int getRotation() {
891 return mRotation;
892 }
893
894 void setRotation(int newRotation) {
895 mRotation = newRotation;
896 }
897
898 int getLastOrientation() {
899 return mLastOrientation;
900 }
901
902 void setLastOrientation(int orientation) {
903 mLastOrientation = orientation;
904 }
905
906 boolean getAltOrientation() {
907 return mAltOrientation;
908 }
909
910 void setAltOrientation(boolean altOrientation) {
911 mAltOrientation = altOrientation;
912 }
913
914 int getLastWindowForcedOrientation() {
915 return mLastWindowForcedOrientation;
916 }
917
Andrii Kulian06d07d62017-03-14 11:11:47 -0700918 /**
919 * Update rotation of the display.
920 *
921 * Returns true if the rotation has been changed. In this case YOU MUST CALL
922 * {@link WindowManagerService#sendNewConfiguration(int)} TO UNFREEZE THE SCREEN.
923 */
924 boolean updateRotationUnchecked(boolean inTransaction) {
925 if (mService.mDeferredRotationPauseCount > 0) {
926 // Rotation updates have been paused temporarily. Defer the update until
927 // updates have been resumed.
928 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, rotation is paused.");
929 return false;
930 }
931
932 ScreenRotationAnimation screenRotationAnimation =
933 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
934 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
935 // Rotation updates cannot be performed while the previous rotation change
936 // animation is still in progress. Skip this update. We will try updating
937 // again after the animation is finished and the display is unfrozen.
938 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, animation in progress.");
939 return false;
940 }
941 if (mService.mDisplayFrozen) {
942 // Even if the screen rotation animation has finished (e.g. isAnimating
943 // returns false), there is still some time where we haven't yet unfrozen
944 // the display. We also need to abort rotation here.
945 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
946 "Deferring rotation, still finishing previous rotation");
947 return false;
948 }
949
950 if (!mService.mDisplayEnabled) {
951 // No point choosing a rotation if the display is not enabled.
952 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, display is not enabled.");
953 return false;
954 }
955
956 final int oldRotation = mRotation;
957 final int lastOrientation = mLastOrientation;
958 final boolean oldAltOrientation = mAltOrientation;
959 int rotation = mService.mPolicy.rotationForOrientationLw(lastOrientation, oldRotation);
Robert Carr0e007272017-10-02 13:00:55 -0700960 boolean mayRotateSeamlessly = mService.mPolicy.shouldRotateSeamlessly(oldRotation,
Robert Carr897215d2017-03-29 12:25:50 -0700961 rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -0700962
Robert Carr0e007272017-10-02 13:00:55 -0700963 if (mayRotateSeamlessly) {
Andrii Kulian06d07d62017-03-14 11:11:47 -0700964 final WindowState seamlessRotated = getWindow((w) -> w.mSeamlesslyRotated);
965 if (seamlessRotated != null) {
966 // We can't rotate (seamlessly or not) while waiting for the last seamless rotation
967 // to complete (that is, waiting for windows to redraw). It's tempting to check
968 // w.mSeamlessRotationCount but that could be incorrect in the case of
969 // window-removal.
970 return false;
971 }
Robert Carr0e007272017-10-02 13:00:55 -0700972
973 // In the presence of the PINNED stack or System Alert
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700974 // windows we unfortunately can not seamlessly rotate.
Wale Ogunwale61911492017-10-11 08:50:50 -0700975 if (hasPinnedStack()) {
Robert Carr0e007272017-10-02 13:00:55 -0700976 mayRotateSeamlessly = false;
977 }
978 for (int i = 0; i < mService.mSessions.size(); i++) {
979 if (mService.mSessions.valueAt(i).hasAlertWindowSurfaces()) {
980 mayRotateSeamlessly = false;
981 break;
982 }
983 }
Andrii Kulian06d07d62017-03-14 11:11:47 -0700984 }
Robert Carr0e007272017-10-02 13:00:55 -0700985 final boolean rotateSeamlessly = mayRotateSeamlessly;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700986
987 // TODO: Implement forced rotation changes.
988 // Set mAltOrientation to indicate that the application is receiving
989 // an orientation that has different metrics than it expected.
990 // eg. Portrait instead of Landscape.
991
992 final boolean altOrientation = !mService.mPolicy.rotationHasCompatibleMetricsLw(
993 lastOrientation, rotation);
994
995 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Selected orientation " + lastOrientation
996 + ", got rotation " + rotation + " which has "
997 + (altOrientation ? "incompatible" : "compatible") + " metrics");
998
999 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1000 // No change.
1001 return false;
1002 }
1003
1004 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Rotation changed to " + rotation
1005 + (altOrientation ? " (alt)" : "") + " from " + oldRotation
1006 + (oldAltOrientation ? " (alt)" : "") + ", lastOrientation=" + lastOrientation);
1007
1008 if (DisplayContent.deltaRotation(rotation, oldRotation) != 2) {
1009 mService.mWaitingForConfig = true;
1010 }
1011
1012 mRotation = rotation;
1013 mAltOrientation = altOrientation;
1014 if (isDefaultDisplay) {
1015 mService.mPolicy.setRotationLw(rotation);
1016 }
1017
1018 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_ACTIVE;
1019 mService.mH.removeMessages(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT);
1020 mService.mH.sendEmptyMessageDelayed(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT,
1021 WINDOW_FREEZE_TIMEOUT_DURATION);
1022
1023 setLayoutNeeded();
1024 final int[] anim = new int[2];
Robert Carrf59b8dd2017-10-02 18:58:36 -07001025 mService.mPolicy.selectRotationAnimationLw(anim);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001026
1027 if (!rotateSeamlessly) {
Bryce Lee8f853582017-06-05 17:25:59 -07001028 mService.startFreezingDisplayLocked(inTransaction, anim[0], anim[1], this);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001029 // startFreezingDisplayLocked can reset the ScreenRotationAnimation.
1030 screenRotationAnimation = mService.mAnimator.getScreenRotationAnimationLocked(
1031 mDisplayId);
1032 } else {
1033 // The screen rotation animation uses a screenshot to freeze the screen
1034 // while windows resize underneath.
1035 // When we are rotating seamlessly, we allow the elements to transition
1036 // to their rotated state independently and without a freeze required.
1037 screenRotationAnimation = null;
1038
1039 // We have to reset this in case a window was removed before it
1040 // finished seamless rotation.
1041 mService.mSeamlessRotationCount = 0;
1042 }
1043
1044 // We need to update our screen size information to match the new rotation. If the rotation
1045 // has actually changed then this method will return true and, according to the comment at
1046 // the top of the method, the caller is obligated to call computeNewConfigurationLocked().
1047 // By updating the Display info here it will be available to
1048 // #computeScreenConfiguration() later.
1049 updateDisplayAndOrientation(getConfiguration().uiMode);
1050
1051 if (!inTransaction) {
1052 if (SHOW_TRANSACTIONS) {
1053 Slog.i(TAG_WM, ">>> OPEN TRANSACTION setRotationUnchecked");
1054 }
1055 mService.openSurfaceTransaction();
1056 }
1057 try {
1058 // NOTE: We disable the rotation in the emulator because
1059 // it doesn't support hardware OpenGL emulation yet.
1060 if (CUSTOM_SCREEN_ROTATION && screenRotationAnimation != null
1061 && screenRotationAnimation.hasScreenshot()) {
Robert Carrb1579c82017-09-05 14:54:47 -07001062 if (screenRotationAnimation.setRotationInTransaction(rotation,
Andrii Kulian06d07d62017-03-14 11:11:47 -07001063 MAX_ANIMATION_DURATION, mService.getTransitionAnimationScaleLocked(),
1064 mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight)) {
1065 mService.scheduleAnimationLocked();
1066 }
1067 }
1068
1069 if (rotateSeamlessly) {
1070 forAllWindows(w -> {
1071 w.mWinAnimator.seamlesslyRotateWindow(oldRotation, rotation);
1072 }, true /* traverseTopToBottom */);
1073 }
1074
1075 mService.mDisplayManagerInternal.performTraversalInTransactionFromWindowManager();
1076 } finally {
1077 if (!inTransaction) {
Adrian Roos111aff92017-09-27 18:11:46 +02001078 mService.closeSurfaceTransaction("setRotationUnchecked");
Andrii Kulian06d07d62017-03-14 11:11:47 -07001079 if (SHOW_LIGHT_TRANSACTIONS) {
1080 Slog.i(TAG_WM, "<<< CLOSE TRANSACTION setRotationUnchecked");
1081 }
1082 }
1083 }
1084
1085 forAllWindows(w -> {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001086 if (w.mHasSurface && !rotateSeamlessly) {
1087 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Set mOrientationChanging of " + w);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001088 w.setOrientationChanging(true);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001089 mService.mRoot.mOrientationChangeComplete = false;
1090 w.mLastFreezeDuration = 0;
1091 }
1092 w.mReportOrientationChanged = true;
1093 }, true /* traverseTopToBottom */);
1094
1095 if (rotateSeamlessly) {
1096 mService.mH.removeMessages(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT);
1097 mService.mH.sendEmptyMessageDelayed(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT,
1098 SEAMLESS_ROTATION_TIMEOUT_DURATION);
1099 }
1100
1101 for (int i = mService.mRotationWatchers.size() - 1; i >= 0; i--) {
1102 final WindowManagerService.RotationWatcher rotationWatcher
1103 = mService.mRotationWatchers.get(i);
1104 if (rotationWatcher.mDisplayId == mDisplayId) {
1105 try {
1106 rotationWatcher.mWatcher.onRotationChanged(rotation);
1107 } catch (RemoteException e) {
1108 // Ignore
1109 }
1110 }
1111 }
1112
1113 // TODO (multi-display): Magnification is supported only for the default display.
1114 // Announce rotation only if we will not animate as we already have the
1115 // windows in final state. Otherwise, we make this call at the rotation end.
1116 if (screenRotationAnimation == null && mService.mAccessibilityController != null
1117 && isDefaultDisplay) {
1118 mService.mAccessibilityController.onRotationChangedLocked(this);
1119 }
1120
1121 return true;
1122 }
1123
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001124 void configureDisplayPolicy() {
1125 mService.mPolicy.setInitialDisplaySize(getDisplay(),
1126 mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1127
1128 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo);
1129 }
1130
Andrii Kulian06d07d62017-03-14 11:11:47 -07001131 /**
1132 * Update {@link #mDisplayInfo} and other internal variables when display is rotated or config
1133 * changed.
1134 * Do not call if {@link WindowManagerService#mDisplayReady} == false.
1135 */
1136 private DisplayInfo updateDisplayAndOrientation(int uiMode) {
1137 // Use the effective "visual" dimensions based on current rotation
1138 final boolean rotated = (mRotation == ROTATION_90 || mRotation == ROTATION_270);
1139 final int realdw = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
1140 final int realdh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
1141 int dw = realdw;
1142 int dh = realdh;
1143
1144 if (mAltOrientation) {
1145 if (realdw > realdh) {
1146 // Turn landscape into portrait.
1147 int maxw = (int)(realdh/1.3f);
1148 if (maxw < realdw) {
1149 dw = maxw;
1150 }
1151 } else {
1152 // Turn portrait into landscape.
1153 int maxh = (int)(realdw/1.3f);
1154 if (maxh < realdh) {
1155 dh = maxh;
1156 }
1157 }
1158 }
1159
1160 // Update application display metrics.
1161 final int appWidth = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, mRotation, uiMode,
1162 mDisplayId);
1163 final int appHeight = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, mRotation, uiMode,
1164 mDisplayId);
1165 mDisplayInfo.rotation = mRotation;
1166 mDisplayInfo.logicalWidth = dw;
1167 mDisplayInfo.logicalHeight = dh;
1168 mDisplayInfo.logicalDensityDpi = mBaseDisplayDensity;
1169 mDisplayInfo.appWidth = appWidth;
1170 mDisplayInfo.appHeight = appHeight;
1171 if (isDefaultDisplay) {
1172 mDisplayInfo.getLogicalMetrics(mRealDisplayMetrics,
1173 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO, null);
1174 }
Adrian Roos1cf585052018-01-03 18:43:27 +01001175 mDisplayInfo.displayCutout = calculateDisplayCutoutForCurrentRotation();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001176 mDisplayInfo.getAppMetrics(mDisplayMetrics);
1177 if (mDisplayScalingDisabled) {
1178 mDisplayInfo.flags |= Display.FLAG_SCALING_DISABLED;
1179 } else {
1180 mDisplayInfo.flags &= ~Display.FLAG_SCALING_DISABLED;
1181 }
1182
1183 mService.mDisplayManagerInternal.setDisplayInfoOverrideFromWindowManager(mDisplayId,
1184 mDisplayInfo);
1185
1186 mBaseDisplayRect.set(0, 0, dw, dh);
1187
1188 if (isDefaultDisplay) {
1189 mCompatibleScreenScale = CompatibilityInfo.computeCompatibleScaling(mDisplayMetrics,
1190 mCompatDisplayMetrics);
1191 }
Bryce Leef3c6a472017-11-14 14:53:06 -08001192
1193 updateBounds();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001194 return mDisplayInfo;
1195 }
1196
Adrian Roos1cf585052018-01-03 18:43:27 +01001197 DisplayCutout calculateDisplayCutoutForCurrentRotation() {
1198 final DisplayCutout cutout = mInitialDisplayCutout;
1199 if (cutout == null || cutout == DisplayCutout.NO_CUTOUT || mRotation == ROTATION_0) {
1200 return cutout;
1201 }
1202 final Path bounds = cutout.getBounds().getBoundaryPath();
1203 transformPhysicalToLogicalCoordinates(mRotation, mInitialDisplayWidth,
1204 mInitialDisplayHeight, mTmpMatrix);
1205 bounds.transform(mTmpMatrix);
1206 return DisplayCutout.fromBounds(bounds);
1207 }
1208
Andrii Kulian06d07d62017-03-14 11:11:47 -07001209 /**
1210 * Compute display configuration based on display properties and policy settings.
1211 * Do not call if mDisplayReady == false.
1212 */
1213 void computeScreenConfiguration(Configuration config) {
1214 final DisplayInfo displayInfo = updateDisplayAndOrientation(config.uiMode);
1215
1216 final int dw = displayInfo.logicalWidth;
1217 final int dh = displayInfo.logicalHeight;
Wale Ogunwale687b4272017-07-27 02:56:23 -07001218 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE;
1219 // TODO: Probably best to set this based on some setting in the display content object,
1220 // so the display can be configured for things like fullscreen.
1221 config.windowConfiguration.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Bryce Leec1f2f2a2017-06-22 15:29:42 -07001222
Andrii Kulian06d07d62017-03-14 11:11:47 -07001223 config.screenWidthDp =
1224 (int)(mService.mPolicy.getConfigDisplayWidth(dw, dh, displayInfo.rotation,
1225 config.uiMode, mDisplayId) / mDisplayMetrics.density);
1226 config.screenHeightDp =
1227 (int)(mService.mPolicy.getConfigDisplayHeight(dw, dh, displayInfo.rotation,
1228 config.uiMode, mDisplayId) / mDisplayMetrics.density);
Bryce Lee7566d762017-03-30 09:34:15 -07001229
1230 mService.mPolicy.getNonDecorInsetsLw(displayInfo.rotation, dw, dh, mTmpRect);
1231 final int leftInset = mTmpRect.left;
1232 final int topInset = mTmpRect.top;
1233 // appBounds at the root level should mirror the app screen size.
Wale Ogunwale822e5122017-07-26 06:02:24 -07001234 config.windowConfiguration.setAppBounds(leftInset /* left */, topInset /* top */,
1235 leftInset + displayInfo.appWidth /* right */,
1236 topInset + displayInfo.appHeight /* bottom */);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001237 final boolean rotated = (displayInfo.rotation == Surface.ROTATION_90
1238 || displayInfo.rotation == Surface.ROTATION_270);
1239
1240 computeSizeRangesAndScreenLayout(displayInfo, mDisplayId, rotated, config.uiMode, dw, dh,
1241 mDisplayMetrics.density, config);
1242
1243 config.screenLayout = (config.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK)
1244 | ((displayInfo.flags & Display.FLAG_ROUND) != 0
1245 ? Configuration.SCREENLAYOUT_ROUND_YES
1246 : Configuration.SCREENLAYOUT_ROUND_NO);
1247
1248 config.compatScreenWidthDp = (int)(config.screenWidthDp / mCompatibleScreenScale);
1249 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);
1250 config.compatSmallestScreenWidthDp = computeCompatSmallestWidth(rotated, config.uiMode, dw,
1251 dh, mDisplayId);
1252 config.densityDpi = displayInfo.logicalDensityDpi;
1253
1254 config.colorMode =
1255 (displayInfo.isHdr()
1256 ? Configuration.COLOR_MODE_HDR_YES
1257 : Configuration.COLOR_MODE_HDR_NO)
Romain Guye89d0bb2017-06-20 12:23:42 -07001258 | (displayInfo.isWideColorGamut() && mService.hasWideColorGamutSupport()
Andrii Kulian06d07d62017-03-14 11:11:47 -07001259 ? Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_YES
1260 : Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO);
1261
1262 // Update the configuration based on available input devices, lid switch,
1263 // and platform configuration.
1264 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1265 config.keyboard = Configuration.KEYBOARD_NOKEYS;
1266 config.navigation = Configuration.NAVIGATION_NONAV;
1267
1268 int keyboardPresence = 0;
1269 int navigationPresence = 0;
1270 final InputDevice[] devices = mService.mInputManager.getInputDevices();
1271 final int len = devices != null ? devices.length : 0;
1272 for (int i = 0; i < len; i++) {
1273 InputDevice device = devices[i];
1274 if (!device.isVirtual()) {
1275 final int sources = device.getSources();
1276 final int presenceFlag = device.isExternal() ?
1277 WindowManagerPolicy.PRESENCE_EXTERNAL :
1278 WindowManagerPolicy.PRESENCE_INTERNAL;
1279
1280 // TODO(multi-display): Configure on per-display basis.
1281 if (mService.mIsTouchDevice) {
1282 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
1283 InputDevice.SOURCE_TOUCHSCREEN) {
1284 config.touchscreen = Configuration.TOUCHSCREEN_FINGER;
1285 }
1286 } else {
1287 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1288 }
1289
1290 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
1291 config.navigation = Configuration.NAVIGATION_TRACKBALL;
1292 navigationPresence |= presenceFlag;
1293 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
1294 && config.navigation == Configuration.NAVIGATION_NONAV) {
1295 config.navigation = Configuration.NAVIGATION_DPAD;
1296 navigationPresence |= presenceFlag;
1297 }
1298
1299 if (device.getKeyboardType() == InputDevice.KEYBOARD_TYPE_ALPHABETIC) {
1300 config.keyboard = Configuration.KEYBOARD_QWERTY;
1301 keyboardPresence |= presenceFlag;
1302 }
1303 }
1304 }
1305
1306 if (config.navigation == Configuration.NAVIGATION_NONAV && mService.mHasPermanentDpad) {
1307 config.navigation = Configuration.NAVIGATION_DPAD;
1308 navigationPresence |= WindowManagerPolicy.PRESENCE_INTERNAL;
1309 }
1310
1311 // Determine whether a hard keyboard is available and enabled.
1312 // TODO(multi-display): Should the hardware keyboard be tied to a display or to a device?
1313 boolean hardKeyboardAvailable = config.keyboard != Configuration.KEYBOARD_NOKEYS;
1314 if (hardKeyboardAvailable != mService.mHardKeyboardAvailable) {
1315 mService.mHardKeyboardAvailable = hardKeyboardAvailable;
1316 mService.mH.removeMessages(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1317 mService.mH.sendEmptyMessage(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1318 }
1319
1320 // Let the policy update hidden states.
1321 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_NO;
1322 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_NO;
1323 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_NO;
1324 mService.mPolicy.adjustConfigurationLw(config, keyboardPresence, navigationPresence);
1325 }
1326
1327 private int computeCompatSmallestWidth(boolean rotated, int uiMode, int dw, int dh,
1328 int displayId) {
1329 mTmpDisplayMetrics.setTo(mDisplayMetrics);
1330 final DisplayMetrics tmpDm = mTmpDisplayMetrics;
1331 final int unrotDw, unrotDh;
1332 if (rotated) {
1333 unrotDw = dh;
1334 unrotDh = dw;
1335 } else {
1336 unrotDw = dw;
1337 unrotDh = dh;
1338 }
1339 int sw = reduceCompatConfigWidthSize(0, Surface.ROTATION_0, uiMode, tmpDm, unrotDw, unrotDh,
1340 displayId);
1341 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_90, uiMode, tmpDm, unrotDh, unrotDw,
1342 displayId);
1343 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_180, uiMode, tmpDm, unrotDw, unrotDh,
1344 displayId);
1345 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_270, uiMode, tmpDm, unrotDh, unrotDw,
1346 displayId);
1347 return sw;
1348 }
1349
1350 private int reduceCompatConfigWidthSize(int curSize, int rotation, int uiMode,
1351 DisplayMetrics dm, int dw, int dh, int displayId) {
1352 dm.noncompatWidthPixels = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode,
1353 displayId);
1354 dm.noncompatHeightPixels = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation,
1355 uiMode, displayId);
1356 float scale = CompatibilityInfo.computeCompatibleScaling(dm, null);
1357 int size = (int)(((dm.noncompatWidthPixels / scale) / dm.density) + .5f);
1358 if (curSize == 0 || size < curSize) {
1359 curSize = size;
1360 }
1361 return curSize;
1362 }
1363
1364 private void computeSizeRangesAndScreenLayout(DisplayInfo displayInfo, int displayId,
1365 boolean rotated, int uiMode, int dw, int dh, float density, Configuration outConfig) {
1366
1367 // We need to determine the smallest width that will occur under normal
1368 // operation. To this, start with the base screen size and compute the
1369 // width under the different possible rotations. We need to un-rotate
1370 // the current screen dimensions before doing this.
1371 int unrotDw, unrotDh;
1372 if (rotated) {
1373 unrotDw = dh;
1374 unrotDh = dw;
1375 } else {
1376 unrotDw = dw;
1377 unrotDh = dh;
1378 }
1379 displayInfo.smallestNominalAppWidth = 1<<30;
1380 displayInfo.smallestNominalAppHeight = 1<<30;
1381 displayInfo.largestNominalAppWidth = 0;
1382 displayInfo.largestNominalAppHeight = 0;
1383 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_0, uiMode, unrotDw,
1384 unrotDh);
1385 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_90, uiMode, unrotDh,
1386 unrotDw);
1387 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_180, uiMode, unrotDw,
1388 unrotDh);
1389 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_270, uiMode, unrotDh,
1390 unrotDw);
1391 int sl = Configuration.resetScreenLayout(outConfig.screenLayout);
1392 sl = reduceConfigLayout(sl, Surface.ROTATION_0, density, unrotDw, unrotDh, uiMode,
1393 displayId);
1394 sl = reduceConfigLayout(sl, Surface.ROTATION_90, density, unrotDh, unrotDw, uiMode,
1395 displayId);
1396 sl = reduceConfigLayout(sl, Surface.ROTATION_180, density, unrotDw, unrotDh, uiMode,
1397 displayId);
1398 sl = reduceConfigLayout(sl, Surface.ROTATION_270, density, unrotDh, unrotDw, uiMode,
1399 displayId);
1400 outConfig.smallestScreenWidthDp = (int)(displayInfo.smallestNominalAppWidth / density);
1401 outConfig.screenLayout = sl;
1402 }
1403
1404 private int reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh,
1405 int uiMode, int displayId) {
1406 // Get the app screen size at this rotation.
1407 int w = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode, displayId);
1408 int h = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode, displayId);
1409
1410 // Compute the screen layout size class for this rotation.
1411 int longSize = w;
1412 int shortSize = h;
1413 if (longSize < shortSize) {
1414 int tmp = longSize;
1415 longSize = shortSize;
1416 shortSize = tmp;
1417 }
1418 longSize = (int)(longSize/density);
1419 shortSize = (int)(shortSize/density);
1420 return Configuration.reduceScreenLayout(curLayout, longSize, shortSize);
1421 }
1422
1423 private void adjustDisplaySizeRanges(DisplayInfo displayInfo, int displayId, int rotation,
1424 int uiMode, int dw, int dh) {
1425 final int width = mService.mPolicy.getConfigDisplayWidth(dw, dh, rotation, uiMode,
1426 displayId);
1427 if (width < displayInfo.smallestNominalAppWidth) {
1428 displayInfo.smallestNominalAppWidth = width;
1429 }
1430 if (width > displayInfo.largestNominalAppWidth) {
1431 displayInfo.largestNominalAppWidth = width;
1432 }
1433 final int height = mService.mPolicy.getConfigDisplayHeight(dw, dh, rotation, uiMode,
1434 displayId);
1435 if (height < displayInfo.smallestNominalAppHeight) {
1436 displayInfo.smallestNominalAppHeight = height;
1437 }
1438 if (height > displayInfo.largestNominalAppHeight) {
1439 displayInfo.largestNominalAppHeight = height;
1440 }
1441 }
1442
Jorim Jaggi61f39a72015-10-29 16:54:18 +01001443 DockedStackDividerController getDockedDividerController() {
1444 return mDividerControllerLocked;
1445 }
1446
Winson Chung655332c2016-10-31 13:14:28 -07001447 PinnedStackController getPinnedStackController() {
1448 return mPinnedStackControllerLocked;
1449 }
1450
Jeff Browna506a6e2013-06-04 00:02:38 -07001451 /**
1452 * Returns true if the specified UID has access to this display.
1453 */
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001454 boolean hasAccess(int uid) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001455 return mDisplay.hasAccess(uid);
1456 }
1457
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001458 boolean isPrivate() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001459 return (mDisplay.getFlags() & FLAG_PRIVATE) != 0;
keunyounga446bf02013-06-21 19:07:57 -07001460 }
1461
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001462 TaskStack getHomeStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001463 return mTaskStackContainers.getHomeStack();
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001464 }
1465
Wale Ogunwale61911492017-10-11 08:50:50 -07001466 /**
1467 * @return The primary split-screen stack, but only if it is visible, and {@code null} otherwise.
1468 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001469 TaskStack getSplitScreenPrimaryStack() {
1470 TaskStack stack = mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001471 return (stack != null && stack.isVisible()) ? stack : null;
1472 }
1473
1474 /**
Matthew Ng64e77cf2017-10-31 14:01:31 -07001475 * Like {@link #getSplitScreenPrimaryStack}, but also returns the stack if it's currently
Wale Ogunwale61911492017-10-11 08:50:50 -07001476 * not visible.
1477 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001478 TaskStack getSplitScreenPrimaryStackIgnoringVisibility() {
1479 return mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001480 }
1481
1482 TaskStack getPinnedStack() {
1483 return mTaskStackContainers.getPinnedStack();
1484 }
1485
1486 private boolean hasPinnedStack() {
1487 return mTaskStackContainers.getPinnedStack() != null;
Chong Zhangd9d35bd2016-08-04 17:55:21 -07001488 }
1489
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001490 /**
1491 * Returns the topmost stack on the display that is compatible with the input windowing mode.
1492 * Null is no compatible stack on the display.
1493 */
Wale Ogunwale30e441d2017-11-09 08:28:45 -08001494 TaskStack getTopStackInWindowingMode(int windowingMode) {
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001495 return getStack(windowingMode, ACTIVITY_TYPE_UNDEFINED);
1496 }
1497
1498 /**
1499 * Returns the topmost stack on the display that is compatible with the input windowing mode and
1500 * activity type. Null is no compatible stack on the display.
1501 */
Wale Ogunwale68278562017-09-23 17:13:55 -07001502 TaskStack getStack(int windowingMode, int activityType) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001503 return mTaskStackContainers.getStack(windowingMode, activityType);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001504 }
1505
Bryce Lee48f4b572017-04-10 10:54:15 -07001506 @VisibleForTesting
Wale Ogunwale61911492017-10-11 08:50:50 -07001507 TaskStack getTopStack() {
1508 return mTaskStackContainers.getTopStack();
Bryce Lee48f4b572017-04-10 10:54:15 -07001509 }
1510
Wale Ogunwale61911492017-10-11 08:50:50 -07001511 void onStackWindowingModeChanged(TaskStack stack) {
1512 mTaskStackContainers.onStackWindowingModeChanged(stack);
Bryce Lee48f4b572017-04-10 10:54:15 -07001513 }
1514
Andrii Kulian441e4492016-09-29 15:25:00 -07001515 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -07001516 public void onConfigurationChanged(Configuration newParentConfig) {
Andrii Kulian441e4492016-09-29 15:25:00 -07001517 super.onConfigurationChanged(newParentConfig);
1518
Andrii Kulian3a507b52016-09-19 18:14:12 -07001519 // The display size information is heavily dependent on the resources in the current
1520 // configuration, so we need to reconfigure it every time the configuration changes.
1521 // See {@link PhoneWindowManager#setInitialDisplaySize}...sigh...
1522 mService.reconfigureDisplayLocked(this);
1523
Bryce Leef3c6a472017-11-14 14:53:06 -08001524 final DockedStackDividerController dividerController = getDockedDividerController();
1525
1526 if (dividerController != null) {
1527 getDockedDividerController().onConfigurationChanged();
1528 }
1529
1530 final PinnedStackController pinnedStackController = getPinnedStackController();
1531
1532 if (pinnedStackController != null) {
1533 getPinnedStackController().onConfigurationChanged();
1534 }
Andrii Kulian441e4492016-09-29 15:25:00 -07001535 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001536
Andrii Kulian441e4492016-09-29 15:25:00 -07001537 /**
1538 * Callback used to trigger bounds update after configuration change and get ids of stacks whose
1539 * bounds were updated.
1540 */
1541 void updateStackBoundsAfterConfigChange(@NonNull List<Integer> changedStackList) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001542 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1543 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Andrii Kulian441e4492016-09-29 15:25:00 -07001544 if (stack.updateBoundsAfterConfigChange()) {
Andrii Kulian3a507b52016-09-19 18:14:12 -07001545 changedStackList.add(stack.mStackId);
1546 }
1547 }
Winson Chung32c566f2017-04-11 18:31:21 -07001548
1549 // If there was no pinned stack, we still need to notify the controller of the display info
1550 // update as a result of the config change. We do this here to consolidate the flow between
1551 // changes when there is and is not a stack.
Wale Ogunwale61911492017-10-11 08:50:50 -07001552 if (!hasPinnedStack()) {
Winson Chung32c566f2017-04-11 18:31:21 -07001553 mPinnedStackControllerLocked.onDisplayInfoChanged();
1554 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001555 }
1556
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001557 @Override
1558 boolean fillsParent() {
1559 return true;
1560 }
1561
1562 @Override
1563 boolean isVisible() {
1564 return true;
1565 }
1566
1567 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001568 void onAppTransitionDone() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001569 super.onAppTransitionDone();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001570 mService.mWindowsChanged = true;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001571 }
1572
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001573 @Override
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001574 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1575 // Special handling so we can process IME windows with #forAllImeWindows above their IME
1576 // target, or here in order if there isn't an IME target.
1577 if (traverseTopToBottom) {
1578 for (int i = mChildren.size() - 1; i >= 0; --i) {
1579 final DisplayChildWindowContainer child = mChildren.get(i);
1580 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null) {
1581 // In this case the Ime windows will be processed above their target so we skip
1582 // here.
1583 continue;
1584 }
1585 if (child.forAllWindows(callback, traverseTopToBottom)) {
1586 return true;
1587 }
1588 }
1589 } else {
1590 final int count = mChildren.size();
1591 for (int i = 0; i < count; i++) {
1592 final DisplayChildWindowContainer child = mChildren.get(i);
1593 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null) {
1594 // In this case the Ime windows will be processed above their target so we skip
1595 // here.
1596 continue;
1597 }
1598 if (child.forAllWindows(callback, traverseTopToBottom)) {
1599 return true;
1600 }
1601 }
1602 }
1603 return false;
1604 }
1605
1606 boolean forAllImeWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1607 return mImeWindowsContainers.forAllWindows(callback, traverseTopToBottom);
1608 }
1609
Wale Ogunwale399c8692017-05-08 14:22:42 -07001610 @Override
1611 int getOrientation() {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001612 final WindowManagerPolicy policy = mService.mPolicy;
1613
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001614 if (mService.mDisplayFrozen) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08001615 if (mLastWindowForcedOrientation != SCREEN_ORIENTATION_UNSPECIFIED) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001616 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulian8ee72852017-03-10 10:36:45 -08001617 "Display is frozen, return " + mLastWindowForcedOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001618 // If the display is frozen, some activities may be in the middle of restarting, and
1619 // thus have removed their old window. If the window has the flag to hide the lock
1620 // screen, then the lock screen can re-appear and inflict its own orientation on us.
1621 // Keep the orientation stable until this all settles down.
Andrii Kulian8ee72852017-03-10 10:36:45 -08001622 return mLastWindowForcedOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001623 } else if (policy.isKeyguardLocked()) {
1624 // Use the last orientation the while the display is frozen with the keyguard
1625 // locked. This could be the keyguard forced orientation or from a SHOW_WHEN_LOCKED
1626 // window. We don't want to check the show when locked window directly though as
1627 // things aren't stable while the display is frozen, for example the window could be
1628 // momentarily unavailable due to activity relaunch.
1629 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display is frozen while keyguard locked, "
Andrii Kulian8ee72852017-03-10 10:36:45 -08001630 + "return " + mLastOrientation);
1631 return mLastOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001632 }
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001633 } else {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001634 final int orientation = mAboveAppWindowsContainers.getOrientation();
1635 if (orientation != SCREEN_ORIENTATION_UNSET) {
1636 return orientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001637 }
Wale Ogunwale51362492016-09-08 17:49:17 -07001638 }
1639
Wale Ogunwale399c8692017-05-08 14:22:42 -07001640 // Top system windows are not requesting an orientation. Start searching from apps.
1641 return mTaskStackContainers.getOrientation();
Wale Ogunwale51362492016-09-08 17:49:17 -07001642 }
1643
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001644 void updateDisplayInfo() {
Andrii Kuliancd097992017-03-23 18:31:59 -07001645 // Check if display metrics changed and update base values if needed.
1646 updateBaseDisplayMetricsIfNeeded();
1647
Craig Mautner722285e2012-09-07 13:55:58 -07001648 mDisplay.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -07001649 mDisplay.getMetrics(mDisplayMetrics);
Andrii Kuliancd097992017-03-23 18:31:59 -07001650
Wale Ogunwale61911492017-10-11 08:50:50 -07001651 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1652 mTaskStackContainers.getChildAt(i).updateDisplayInfo(null);
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001653 }
Craig Mautner722285e2012-09-07 13:55:58 -07001654 }
1655
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001656 void initializeDisplayBaseInfo() {
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001657 final DisplayManagerInternal displayManagerInternal = mService.mDisplayManagerInternal;
1658 if (displayManagerInternal != null) {
1659 // Bootstrap the default logical display from the display manager.
1660 final DisplayInfo newDisplayInfo = displayManagerInternal.getDisplayInfo(mDisplayId);
1661 if (newDisplayInfo != null) {
1662 mDisplayInfo.copyFrom(newDisplayInfo);
1663 }
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001664 }
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001665
Andrii Kuliancd097992017-03-23 18:31:59 -07001666 updateBaseDisplayMetrics(mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight,
1667 mDisplayInfo.logicalDensityDpi);
1668 mInitialDisplayWidth = mDisplayInfo.logicalWidth;
1669 mInitialDisplayHeight = mDisplayInfo.logicalHeight;
1670 mInitialDisplayDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001671 mInitialDisplayCutout = mDisplayInfo.displayCutout;
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001672 }
1673
Andrii Kuliancd097992017-03-23 18:31:59 -07001674 /**
1675 * If display metrics changed, overrides are not set and it's not just a rotation - update base
1676 * values.
1677 */
1678 private void updateBaseDisplayMetricsIfNeeded() {
1679 // Get real display metrics without overrides from WM.
1680 mService.mDisplayManagerInternal.getNonOverrideDisplayInfo(mDisplayId, mDisplayInfo);
1681 final int orientation = mDisplayInfo.rotation;
1682 final boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
1683 final int newWidth = rotated ? mDisplayInfo.logicalHeight : mDisplayInfo.logicalWidth;
1684 final int newHeight = rotated ? mDisplayInfo.logicalWidth : mDisplayInfo.logicalHeight;
1685 final int newDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001686 final DisplayCutout newCutout = mDisplayInfo.displayCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001687
1688 final boolean displayMetricsChanged = mInitialDisplayWidth != newWidth
1689 || mInitialDisplayHeight != newHeight
Adrian Roos1cf585052018-01-03 18:43:27 +01001690 || mInitialDisplayDensity != mDisplayInfo.logicalDensityDpi
1691 || !Objects.equals(mInitialDisplayCutout, newCutout);
Andrii Kuliancd097992017-03-23 18:31:59 -07001692
1693 if (displayMetricsChanged) {
1694 // Check if display size or density is forced.
1695 final boolean isDisplaySizeForced = mBaseDisplayWidth != mInitialDisplayWidth
1696 || mBaseDisplayHeight != mInitialDisplayHeight;
1697 final boolean isDisplayDensityForced = mBaseDisplayDensity != mInitialDisplayDensity;
1698
1699 // If there is an override set for base values - use it, otherwise use new values.
1700 updateBaseDisplayMetrics(isDisplaySizeForced ? mBaseDisplayWidth : newWidth,
1701 isDisplaySizeForced ? mBaseDisplayHeight : newHeight,
1702 isDisplayDensityForced ? mBaseDisplayDensity : newDensity);
1703
1704 // Real display metrics changed, so we should also update initial values.
1705 mInitialDisplayWidth = newWidth;
1706 mInitialDisplayHeight = newHeight;
1707 mInitialDisplayDensity = newDensity;
Adrian Roos1cf585052018-01-03 18:43:27 +01001708 mInitialDisplayCutout = newCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001709 mService.reconfigureDisplayLocked(this);
1710 }
1711 }
1712
Bryce Lee27cec322017-03-21 09:41:37 -07001713 /** Sets the maximum width the screen resolution can be */
1714 void setMaxUiWidth(int width) {
1715 if (DEBUG_DISPLAY) {
1716 Slog.v(TAG_WM, "Setting max ui width:" + width + " on display:" + getDisplayId());
1717 }
1718
1719 mMaxUiWidth = width;
1720
1721 // Update existing metrics.
1722 updateBaseDisplayMetrics(mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1723 }
1724
1725 /** Update base (override) display metrics. */
1726 void updateBaseDisplayMetrics(int baseWidth, int baseHeight, int baseDensity) {
1727 mBaseDisplayWidth = baseWidth;
1728 mBaseDisplayHeight = baseHeight;
1729 mBaseDisplayDensity = baseDensity;
1730
1731 if (mMaxUiWidth > 0 && mBaseDisplayWidth > mMaxUiWidth) {
1732 mBaseDisplayHeight = (mMaxUiWidth * mBaseDisplayHeight) / mBaseDisplayWidth;
1733 mBaseDisplayDensity = (mMaxUiWidth * mBaseDisplayDensity) / mBaseDisplayWidth;
1734 mBaseDisplayWidth = mMaxUiWidth;
1735
1736 if (DEBUG_DISPLAY) {
1737 Slog.v(TAG_WM, "Applying config restraints:" + mBaseDisplayWidth + "x"
1738 + mBaseDisplayHeight + " at density:" + mBaseDisplayDensity
1739 + " on display:" + getDisplayId());
1740 }
1741 }
1742
1743 mBaseDisplayRect.set(0, 0, mBaseDisplayWidth, mBaseDisplayHeight);
Bryce Leef3c6a472017-11-14 14:53:06 -08001744
1745 updateBounds();
Bryce Lee27cec322017-03-21 09:41:37 -07001746 }
1747
Wale Ogunwaledb506192017-12-08 10:57:32 -08001748 void getStableRect(Rect out) {
1749 out.set(mDisplayFrames.mStable);
Chong Zhangf66db432016-01-13 10:39:51 -08001750 }
1751
Wale Ogunwale61911492017-10-11 08:50:50 -07001752 TaskStack createStack(int stackId, boolean onTop, StackWindowController controller) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08001753 if (DEBUG_STACK) Slog.d(TAG_WM, "Create new stackId=" + stackId + " on displayId="
1754 + mDisplayId);
Andrii Kulian839def92016-11-02 10:58:58 -07001755
Wale Ogunwale61911492017-10-11 08:50:50 -07001756 final TaskStack stack = new TaskStack(mService, stackId, controller);
1757 mTaskStackContainers.addStackToDisplay(stack, onTop);
Wale Ogunwale1666e312016-12-16 11:27:18 -08001758 return stack;
Andrii Kulian839def92016-11-02 10:58:58 -07001759 }
1760
Andrii Kulian51c1b672017-04-07 18:39:32 -07001761 void moveStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08001762 final DisplayContent prevDc = stack.getDisplayContent();
1763 if (prevDc == null) {
Andrii Kulian839def92016-11-02 10:58:58 -07001764 throw new IllegalStateException("Trying to move stackId=" + stack.mStackId
1765 + " which is not currently attached to any display");
1766 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08001767 if (prevDc.getDisplayId() == mDisplayId) {
Andrii Kulian839def92016-11-02 10:58:58 -07001768 throw new IllegalArgumentException("Trying to move stackId=" + stack.mStackId
1769 + " to its current displayId=" + mDisplayId);
1770 }
1771
Wale Ogunwale61911492017-10-11 08:50:50 -07001772 prevDc.mTaskStackContainers.removeChild(stack);
Andrii Kulian51c1b672017-04-07 18:39:32 -07001773 mTaskStackContainers.addStackToDisplay(stack, onTop);
Craig Mautnerc00204b2013-03-05 15:02:14 -08001774 }
1775
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001776 @Override
1777 protected void addChild(DisplayChildWindowContainer child,
1778 Comparator<DisplayChildWindowContainer> comparator) {
1779 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
1780 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001781
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001782 @Override
1783 protected void addChild(DisplayChildWindowContainer child, int index) {
1784 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
1785 }
1786
1787 @Override
1788 protected void removeChild(DisplayChildWindowContainer child) {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001789 // Only allow removal of direct children from this display if the display is in the process
1790 // of been removed.
1791 if (mRemovingDisplay) {
1792 super.removeChild(child);
1793 return;
1794 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001795 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001796 }
1797
Andrii Kuliand2765632016-12-12 22:26:34 -08001798 @Override
1799 void positionChildAt(int position, DisplayChildWindowContainer child, boolean includingParents) {
1800 // Children of the display are statically ordered, so the real intention here is to perform
1801 // the operation on the display and not the static direct children.
1802 getParent().positionChildAt(position, this, includingParents);
1803 }
1804
Winson Chung59a47ded2018-01-25 17:46:06 +00001805 void positionStackAt(int position, TaskStack child) {
1806 mTaskStackContainers.positionChildAt(position, child, false /* includingParents */);
1807 layoutAndAssignWindowLayersIfNeeded();
1808 }
1809
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001810 int taskIdFromPoint(int x, int y) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001811 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1812 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001813 final int taskId = stack.taskIdFromPoint(x, y);
1814 if (taskId != -1) {
1815 return taskId;
Craig Mautner967212c2013-04-13 21:10:58 -07001816 }
1817 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001818 return -1;
Craig Mautnercf910b02013-04-23 11:23:27 -07001819 }
1820
Chong Zhang8e89b312015-09-09 15:09:30 -07001821 /**
Chong Zhangd8ceb852015-11-11 14:53:41 -08001822 * Find the task whose outside touch area (for resizing) (x, y) falls within.
Chong Zhang9184ec62015-09-24 12:32:21 -07001823 * Returns null if the touch doesn't fall into a resizing area.
Chong Zhang8e89b312015-09-09 15:09:30 -07001824 */
Wale Ogunwale15ead902016-09-02 14:30:11 -07001825 Task findTaskForResizePoint(int x, int y) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001826 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001827 mTmpTaskForResizePointSearchResult.reset();
Wale Ogunwale61911492017-10-11 08:50:50 -07001828 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1829 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001830 if (!stack.getWindowConfiguration().canResizeTask()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001831 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07001832 }
Chong Zhang9184ec62015-09-24 12:32:21 -07001833
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001834 stack.findTaskForResizePoint(x, y, delta, mTmpTaskForResizePointSearchResult);
1835 if (mTmpTaskForResizePointSearchResult.searchDone) {
1836 return mTmpTaskForResizePointSearchResult.taskForResize;
Chong Zhang8e89b312015-09-09 15:09:30 -07001837 }
1838 }
Chong Zhang9184ec62015-09-24 12:32:21 -07001839 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07001840 }
1841
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001842 void setTouchExcludeRegion(Task focusedTask) {
David Stevensee9e2772017-02-09 16:30:27 -08001843 // The provided task is the task on this display with focus, so if WindowManagerService's
1844 // focused app is not on this display, focusedTask will be null.
1845 if (focusedTask == null) {
1846 mTouchExcludeRegion.setEmpty();
1847 } else {
1848 mTouchExcludeRegion.set(mBaseDisplayRect);
1849 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
1850 mTmpRect2.setEmpty();
Wale Ogunwale61911492017-10-11 08:50:50 -07001851 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1852 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001853 stack.setTouchExcludeRegion(focusedTask, delta, mTouchExcludeRegion,
1854 mDisplayFrames.mContent, mTmpRect2);
David Stevensee9e2772017-02-09 16:30:27 -08001855 }
1856 // If we removed the focused task above, add it back and only leave its
1857 // outside touch area in the exclusion. TapDectector is not interested in
1858 // any touch inside the focused task itself.
1859 if (!mTmpRect2.isEmpty()) {
1860 mTouchExcludeRegion.op(mTmpRect2, Region.Op.UNION);
1861 }
Chong Zhangd8ceb852015-11-11 14:53:41 -08001862 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08001863 final WindowState inputMethod = mService.mInputMethodWindow;
1864 if (inputMethod != null && inputMethod.isVisibleLw()) {
1865 // If the input method is visible and the user is typing, we don't want these touch
1866 // events to be intercepted and used to change focus. This would likely cause a
1867 // disappearance of the input method.
1868 inputMethod.getTouchableRegion(mTmpRegion);
Andrii Kulian7a31b772017-05-02 13:22:42 -07001869 if (inputMethod.getDisplayId() == mDisplayId) {
1870 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
1871 } else {
1872 // IME is on a different display, so we need to update its tap detector.
1873 // TODO(multidisplay): Remove when IME will always appear on same display.
1874 inputMethod.getDisplayContent().setTouchExcludeRegion(null /* focusedTask */);
1875 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08001876 }
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08001877 for (int i = mTapExcludedWindows.size() - 1; i >= 0; i--) {
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001878 final WindowState win = mTapExcludedWindows.get(i);
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08001879 win.getTouchableRegion(mTmpRegion);
1880 mTouchExcludeRegion.op(mTmpRegion, Region.Op.UNION);
1881 }
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001882 for (int i = mTapExcludeProvidingWindows.size() - 1; i >= 0; i--) {
1883 final WindowState win = mTapExcludeProvidingWindows.valueAt(i);
1884 win.amendTapExcludeRegion(mTouchExcludeRegion);
1885 }
Andrii Kulian03c403d2016-11-11 11:14:12 -08001886 // TODO(multi-display): Support docked stacks on secondary displays.
Matthew Ng64e77cf2017-10-31 14:01:31 -07001887 if (mDisplayId == DEFAULT_DISPLAY && getSplitScreenPrimaryStack() != null) {
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001888 mDividerControllerLocked.getTouchRegion(mTmpRect);
Jorim Jaggi7f19cb82016-03-25 19:37:44 -07001889 mTmpRegion.set(mTmpRect);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001890 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
1891 }
Craig Mautner1bef3892015-02-17 15:09:47 -08001892 if (mTapDetector != null) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -07001893 mTapDetector.setTouchExcludeRegion(mTouchExcludeRegion);
Craig Mautner1bef3892015-02-17 15:09:47 -08001894 }
Craig Mautner6601b7b2013-04-29 10:29:11 -07001895 }
1896
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001897 @Override
Wale Ogunwalee05f5012016-09-16 16:27:29 -07001898 void switchUser() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001899 super.switchUser();
1900 mService.mWindowsChanged = true;
Craig Mautner858d8a62013-04-23 17:08:34 -07001901 }
1902
Wale Ogunwaleac2561e2016-11-01 15:43:46 -07001903 private void resetAnimationBackgroundAnimator() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001904 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1905 mTaskStackContainers.getChildAt(stackNdx).resetAnimationBackgroundAnimator();
Craig Mautner05d29032013-05-03 13:40:13 -07001906 }
1907 }
1908
Wale Ogunwale10124582016-09-15 20:25:50 -07001909 @Override
1910 void removeIfPossible() {
1911 if (isAnimating()) {
1912 mDeferredRemoval = true;
1913 return;
Craig Mautner2eb15342013-08-07 13:13:35 -07001914 }
Wale Ogunwale10124582016-09-15 20:25:50 -07001915 removeImmediately();
Craig Mautner2eb15342013-08-07 13:13:35 -07001916 }
1917
Wale Ogunwale10124582016-09-15 20:25:50 -07001918 @Override
1919 void removeImmediately() {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001920 mRemovingDisplay = true;
1921 try {
1922 super.removeImmediately();
1923 if (DEBUG_DISPLAY) Slog.v(TAG_WM, "Removing display=" + this);
Tarandeep Singh7ac8d3a2017-09-05 11:09:39 -07001924 if (mService.canDispatchPointerEvents()) {
1925 if (mTapDetector != null) {
1926 mService.unregisterPointerEventListener(mTapDetector);
1927 }
1928 if (mDisplayId == DEFAULT_DISPLAY && mService.mMousePositionTracker != null) {
1929 mService.unregisterPointerEventListener(mService.mMousePositionTracker);
1930 }
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001931 }
Jorim Jaggia3844032018-01-03 15:54:43 +01001932 mService.mAnimator.removeDisplayLocked(mDisplayId);
1933
Robert Carrb1579c82017-09-05 14:54:47 -07001934 // The pending transaction won't be applied so we should
1935 // just clean up any surfaces pending destruction.
1936 onPendingTransactionApplied();
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001937 } finally {
1938 mRemovingDisplay = false;
Craig Mautner95da1082014-02-24 17:54:35 -08001939 }
Craig Mautner95da1082014-02-24 17:54:35 -08001940 }
1941
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001942 /** Returns true if a removal action is still being deferred. */
Wale Ogunwale10124582016-09-15 20:25:50 -07001943 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001944 boolean checkCompleteDeferredRemoval() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001945 final boolean stillDeferringRemoval = super.checkCompleteDeferredRemoval();
1946
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001947 if (!stillDeferringRemoval && mDeferredRemoval) {
Wale Ogunwale10124582016-09-15 20:25:50 -07001948 removeImmediately();
Craig Mautner95da1082014-02-24 17:54:35 -08001949 mService.onDisplayRemoved(mDisplayId);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001950 return false;
Craig Mautner95da1082014-02-24 17:54:35 -08001951 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001952 return true;
Craig Mautner95da1082014-02-24 17:54:35 -08001953 }
1954
Andrii Kulian0214ed92017-05-16 13:44:05 -07001955 /** @return 'true' if removal of this display content is deferred due to active animation. */
1956 boolean isRemovalDeferred() {
1957 return mDeferredRemoval;
1958 }
1959
Wale Ogunwale10124582016-09-15 20:25:50 -07001960 boolean animateForIme(float interpolatedValue, float animationTarget,
1961 float dividerAnimationTarget) {
1962 boolean updated = false;
1963
Wale Ogunwale61911492017-10-11 08:50:50 -07001964 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1965 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07001966 if (stack == null || !stack.isAdjustedForIme()) {
1967 continue;
1968 }
1969
1970 if (interpolatedValue >= 1f && animationTarget == 0f && dividerAnimationTarget == 0f) {
1971 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
1972 updated = true;
1973 } else {
1974 mDividerControllerLocked.mLastAnimationProgress =
1975 mDividerControllerLocked.getInterpolatedAnimationValue(interpolatedValue);
1976 mDividerControllerLocked.mLastDividerProgress =
1977 mDividerControllerLocked.getInterpolatedDividerValue(interpolatedValue);
1978 updated |= stack.updateAdjustForIme(
1979 mDividerControllerLocked.mLastAnimationProgress,
1980 mDividerControllerLocked.mLastDividerProgress,
1981 false /* force */);
1982 }
1983 if (interpolatedValue >= 1f) {
1984 stack.endImeAdjustAnimation();
1985 }
1986 }
1987
1988 return updated;
1989 }
1990
1991 boolean clearImeAdjustAnimation() {
1992 boolean changed = false;
Wale Ogunwale61911492017-10-11 08:50:50 -07001993 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1994 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07001995 if (stack != null && stack.isAdjustedForIme()) {
1996 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
1997 changed = true;
1998 }
1999 }
2000 return changed;
2001 }
2002
2003 void beginImeAdjustAnimation() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002004 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2005 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002006 if (stack.isVisible() && stack.isAdjustedForIme()) {
2007 stack.beginImeAdjustAnimation();
2008 }
2009 }
2010 }
2011
2012 void adjustForImeIfNeeded() {
2013 final WindowState imeWin = mService.mInputMethodWindow;
2014 final boolean imeVisible = imeWin != null && imeWin.isVisibleLw() && imeWin.isDisplayedLw()
2015 && !mDividerControllerLocked.isImeHideRequested();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002016 final boolean dockVisible = isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Wale Ogunwale10124582016-09-15 20:25:50 -07002017 final TaskStack imeTargetStack = mService.getImeFocusStackLocked();
2018 final int imeDockSide = (dockVisible && imeTargetStack != null) ?
2019 imeTargetStack.getDockSide() : DOCKED_INVALID;
2020 final boolean imeOnTop = (imeDockSide == DOCKED_TOP);
2021 final boolean imeOnBottom = (imeDockSide == DOCKED_BOTTOM);
2022 final boolean dockMinimized = mDividerControllerLocked.isMinimizedDock();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002023 final int imeHeight = mDisplayFrames.getInputMethodWindowVisibleHeight();
Wale Ogunwale10124582016-09-15 20:25:50 -07002024 final boolean imeHeightChanged = imeVisible &&
2025 imeHeight != mDividerControllerLocked.getImeHeightAdjustedFor();
2026
2027 // The divider could be adjusted for IME position, or be thinner than usual,
2028 // or both. There are three possible cases:
2029 // - If IME is visible, and focus is on top, divider is not moved for IME but thinner.
2030 // - If IME is visible, and focus is on bottom, divider is moved for IME and thinner.
2031 // - If IME is not visible, divider is not moved and is normal width.
2032
2033 if (imeVisible && dockVisible && (imeOnTop || imeOnBottom) && !dockMinimized) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002034 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2035 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002036 final boolean isDockedOnBottom = stack.getDockSide() == DOCKED_BOTTOM;
Wale Ogunwale68278562017-09-23 17:13:55 -07002037 if (stack.isVisible() && (imeOnBottom || isDockedOnBottom)
2038 && stack.inSplitScreenWindowingMode()) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002039 stack.setAdjustedForIme(imeWin, imeOnBottom && imeHeightChanged);
2040 } else {
2041 stack.resetAdjustedForIme(false);
2042 }
2043 }
2044 mDividerControllerLocked.setAdjustedForIme(
2045 imeOnBottom /*ime*/, true /*divider*/, true /*animate*/, imeWin, imeHeight);
2046 } else {
Wale Ogunwale61911492017-10-11 08:50:50 -07002047 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2048 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002049 stack.resetAdjustedForIme(!dockVisible);
2050 }
2051 mDividerControllerLocked.setAdjustedForIme(
2052 false /*ime*/, false /*divider*/, dockVisible /*animate*/, imeWin, imeHeight);
2053 }
Winson Chung655332c2016-10-31 13:14:28 -07002054 mPinnedStackControllerLocked.setAdjustedForIme(imeVisible, imeHeight);
Wale Ogunwale10124582016-09-15 20:25:50 -07002055 }
2056
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002057 /**
2058 * If a window that has an animation specifying a colored background and the current wallpaper
2059 * is visible, then the color goes *below* the wallpaper so we don't cause the wallpaper to
2060 * suddenly disappear.
2061 */
2062 int getLayerForAnimationBackground(WindowStateAnimator winAnimator) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002063 final WindowState visibleWallpaper = mBelowAppWindowsContainers.getWindow(
2064 w -> w.mIsWallpaper && w.isVisibleNow());
2065
2066 if (visibleWallpaper != null) {
2067 return visibleWallpaper.mWinAnimator.mAnimLayer;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002068 }
2069 return winAnimator.mAnimLayer;
2070 }
2071
Wale Ogunwale10124582016-09-15 20:25:50 -07002072 void prepareFreezingTaskBounds() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002073 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2074 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale10124582016-09-15 20:25:50 -07002075 stack.prepareFreezingTaskBounds();
2076 }
2077 }
2078
Wale Ogunwale94744212015-09-21 19:01:47 -07002079 void rotateBounds(int oldRotation, int newRotation, Rect bounds) {
Bryce Leef3c6a472017-11-14 14:53:06 -08002080 getBounds(mTmpRect, newRotation);
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002081
2082 // Compute a transform matrix to undo the coordinate space transformation,
2083 // and present the window at the same physical position it previously occupied.
2084 final int deltaRotation = deltaRotation(newRotation, oldRotation);
2085 createRotationMatrix(deltaRotation, mTmpRect.width(), mTmpRect.height(), mTmpMatrix);
2086
2087 mTmpRectF.set(bounds);
2088 mTmpMatrix.mapRect(mTmpRectF);
2089 mTmpRectF.round(bounds);
Wale Ogunwale94744212015-09-21 19:01:47 -07002090 }
2091
Wale Ogunwale4a02d812015-02-12 23:01:38 -08002092 static int deltaRotation(int oldRotation, int newRotation) {
2093 int delta = newRotation - oldRotation;
2094 if (delta < 0) delta += 4;
2095 return delta;
2096 }
2097
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002098 private static void createRotationMatrix(int rotation, float displayWidth, float displayHeight,
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002099 Matrix outMatrix) {
2100 // For rotations without Z-ordering we don't need the target rectangle's position.
2101 createRotationMatrix(rotation, 0 /* rectLeft */, 0 /* rectTop */, displayWidth,
2102 displayHeight, outMatrix);
2103 }
2104
2105 static void createRotationMatrix(int rotation, float rectLeft, float rectTop,
2106 float displayWidth, float displayHeight, Matrix outMatrix) {
2107 switch (rotation) {
2108 case ROTATION_0:
2109 outMatrix.reset();
2110 break;
2111 case ROTATION_270:
2112 outMatrix.setRotate(270, 0, 0);
2113 outMatrix.postTranslate(0, displayHeight);
2114 outMatrix.postTranslate(rectTop, 0);
2115 break;
2116 case ROTATION_180:
2117 outMatrix.reset();
2118 break;
2119 case ROTATION_90:
2120 outMatrix.setRotate(90, 0, 0);
2121 outMatrix.postTranslate(displayWidth, 0);
2122 outMatrix.postTranslate(-rectTop, rectLeft);
2123 break;
2124 }
2125 }
2126
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002127 @CallSuper
2128 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002129 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002130 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002131 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002132 proto.write(ID, mDisplayId);
Wale Ogunwale61911492017-10-11 08:50:50 -07002133 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2134 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002135 stack.writeToProto(proto, STACKS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002136 }
2137 mDividerControllerLocked.writeToProto(proto, DOCKED_STACK_DIVIDER_CONTROLLER);
2138 mPinnedStackControllerLocked.writeToProto(proto, PINNED_STACK_CONTROLLER);
Wale Ogunwale61911492017-10-11 08:50:50 -07002139 for (int i = mAboveAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2140 final WindowToken windowToken = mAboveAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002141 windowToken.writeToProto(proto, ABOVE_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002142 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002143 for (int i = mBelowAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2144 final WindowToken windowToken = mBelowAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002145 windowToken.writeToProto(proto, BELOW_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002146 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002147 for (int i = mImeWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2148 final WindowToken windowToken = mImeWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002149 windowToken.writeToProto(proto, IME_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002150 }
2151 proto.write(DPI, mBaseDisplayDensity);
2152 mDisplayInfo.writeToProto(proto, DISPLAY_INFO);
Steven Timotiusf2d68892017-08-28 17:00:01 -07002153 proto.write(ROTATION, mRotation);
2154 final ScreenRotationAnimation screenRotationAnimation =
2155 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
2156 if (screenRotationAnimation != null) {
2157 screenRotationAnimation.writeToProto(proto, SCREEN_ROTATION_ANIMATION);
2158 }
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002159 mDisplayFrames.writeToProto(proto, DISPLAY_FRAMES);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002160 proto.end(token);
2161 }
2162
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002163 @Override
2164 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2165 super.dump(pw, prefix, dumpAll);
Craig Mautnera91f9e22012-09-14 16:22:08 -07002166 pw.print(prefix); pw.print("Display: mDisplayId="); pw.println(mDisplayId);
2167 final String subPrefix = " " + prefix;
2168 pw.print(subPrefix); pw.print("init="); pw.print(mInitialDisplayWidth); pw.print("x");
2169 pw.print(mInitialDisplayHeight); pw.print(" "); pw.print(mInitialDisplayDensity);
2170 pw.print("dpi");
2171 if (mInitialDisplayWidth != mBaseDisplayWidth
2172 || mInitialDisplayHeight != mBaseDisplayHeight
2173 || mInitialDisplayDensity != mBaseDisplayDensity) {
2174 pw.print(" base=");
2175 pw.print(mBaseDisplayWidth); pw.print("x"); pw.print(mBaseDisplayHeight);
2176 pw.print(" "); pw.print(mBaseDisplayDensity); pw.print("dpi");
2177 }
Jeff Brownd46747a2015-04-15 19:02:36 -07002178 if (mDisplayScalingDisabled) {
2179 pw.println(" noscale");
2180 }
Craig Mautnera91f9e22012-09-14 16:22:08 -07002181 pw.print(" cur=");
2182 pw.print(mDisplayInfo.logicalWidth);
2183 pw.print("x"); pw.print(mDisplayInfo.logicalHeight);
2184 pw.print(" app=");
2185 pw.print(mDisplayInfo.appWidth);
2186 pw.print("x"); pw.print(mDisplayInfo.appHeight);
2187 pw.print(" rng="); pw.print(mDisplayInfo.smallestNominalAppWidth);
2188 pw.print("x"); pw.print(mDisplayInfo.smallestNominalAppHeight);
2189 pw.print("-"); pw.print(mDisplayInfo.largestNominalAppWidth);
2190 pw.print("x"); pw.println(mDisplayInfo.largestNominalAppHeight);
David Stevensf833ba92017-03-16 19:00:20 -07002191 pw.print(subPrefix + "deferred=" + mDeferredRemoval
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002192 + " mLayoutNeeded=" + mLayoutNeeded);
David Stevensf833ba92017-03-16 19:00:20 -07002193 pw.println(" mTouchExcludeRegion=" + mTouchExcludeRegion);
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002194
Craig Mautnerdc548482014-02-05 13:35:24 -08002195 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002196 pw.println(prefix + "Application tokens in top down Z order:");
Wale Ogunwale61911492017-10-11 08:50:50 -07002197 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2198 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002199 stack.dump(pw, prefix + " ", dumpAll);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002200 }
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002201
Craig Mautnerdc548482014-02-05 13:35:24 -08002202 pw.println();
2203 if (!mExitingTokens.isEmpty()) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002204 pw.println();
2205 pw.println(" Exiting tokens:");
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002206 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002207 final WindowToken token = mExitingTokens.get(i);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002208 pw.print(" Exiting #"); pw.print(i);
2209 pw.print(' '); pw.print(token);
2210 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002211 token.dump(pw, " ", dumpAll);
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002212 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002213 }
Robert Carrf59b8dd2017-10-02 18:58:36 -07002214
Jorim Jaggi31f71702016-05-04 16:43:04 -07002215 pw.println();
Wale Ogunwale61911492017-10-11 08:50:50 -07002216
2217 // Dump stack references
2218 final TaskStack homeStack = getHomeStack();
2219 if (homeStack != null) {
2220 pw.println(prefix + "homeStack=" + homeStack.getName());
2221 }
2222 final TaskStack pinnedStack = getPinnedStack();
2223 if (pinnedStack != null) {
2224 pw.println(prefix + "pinnedStack=" + pinnedStack.getName());
2225 }
Matthew Ng64e77cf2017-10-31 14:01:31 -07002226 final TaskStack splitScreenPrimaryStack = getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07002227 if (splitScreenPrimaryStack != null) {
2228 pw.println(prefix + "splitScreenPrimaryStack=" + splitScreenPrimaryStack.getName());
2229 }
2230
2231 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002232 mDividerControllerLocked.dump(prefix, pw);
Winson Chung655332c2016-10-31 13:14:28 -07002233 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002234 mPinnedStackControllerLocked.dump(prefix, pw);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002235
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002236 pw.println();
2237 mDisplayFrames.dump(prefix, pw);
Craig Mautner59c00972012-07-30 12:10:24 -07002238 }
Craig Mautnere0a38842013-12-16 16:14:02 -08002239
2240 @Override
2241 public String toString() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002242 return "Display " + mDisplayId + " info=" + mDisplayInfo + " stacks=" + mChildren;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002243 }
2244
2245 String getName() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002246 return "Display " + mDisplayId + " name=\"" + mDisplayInfo.name + "\"";
Craig Mautnere0a38842013-12-16 16:14:02 -08002247 }
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002248
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002249 /** Returns true if the stack in the windowing mode is visible. */
2250 boolean isStackVisible(int windowingMode) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002251 final TaskStack stack = getTopStackInWindowingMode(windowingMode);
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002252 return stack != null && stack.isVisible();
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08002253 }
2254
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002255 /** Find the visible, touch-deliverable window under the given point */
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002256 WindowState getTouchableWinAtPointLocked(float xf, float yf) {
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002257 final int x = (int) xf;
2258 final int y = (int) yf;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002259 final WindowState touchedWin = getWindow(w -> {
2260 final int flags = w.mAttrs.flags;
2261 if (!w.isVisibleLw()) {
2262 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002263 }
2264 if ((flags & FLAG_NOT_TOUCHABLE) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002265 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002266 }
2267
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002268 w.getVisibleBounds(mTmpRect);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002269 if (!mTmpRect.contains(x, y)) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002270 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002271 }
2272
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002273 w.getTouchableRegion(mTmpRegion);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002274
2275 final int touchFlags = flags & (FLAG_NOT_FOCUSABLE | FLAG_NOT_TOUCH_MODAL);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002276 return mTmpRegion.contains(x, y) || touchFlags == 0;
2277 });
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002278
2279 return touchedWin;
2280 }
Jorim Jaggi6626f542016-08-22 13:08:44 -07002281
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002282 boolean canAddToastWindowForUid(int uid) {
2283 // We allow one toast window per UID being shown at a time.
Svet Ganovdaca8ee2017-01-21 17:40:40 -08002284 // Also if the app is focused adding more than one toast at
2285 // a time for better backwards compatibility.
2286 final WindowState focusedWindowForUid = getWindow(w ->
2287 w.mOwnerUid == uid && w.isFocused());
2288 if (focusedWindowForUid != null) {
2289 return true;
2290 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002291 final WindowState win = getWindow(w ->
2292 w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == uid && !w.mPermanentlyHidden
2293 && !w.mWindowRemovalAllowed);
2294 return win == null;
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002295 }
2296
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002297 void scheduleToastWindowsTimeoutIfNeededLocked(WindowState oldFocus, WindowState newFocus) {
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002298 if (oldFocus == null || (newFocus != null && newFocus.mOwnerUid == oldFocus.mOwnerUid)) {
2299 return;
2300 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002301
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002302 // Used to communicate the old focus to the callback method.
2303 mTmpWindow = oldFocus;
2304
2305 forAllWindows(mScheduleToastTimeout, false /* traverseTopToBottom */);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002306 }
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002307
2308 WindowState findFocusedWindow() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002309 mTmpWindow = null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002310
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002311 forAllWindows(mFindFocusedWindow, true /* traverseTopToBottom */);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002312
2313 if (mTmpWindow == null) {
2314 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: No focusable windows.");
2315 return null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002316 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002317 return mTmpWindow;
Wale Ogunwaleec731152016-09-08 20:18:57 -07002318 }
2319
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002320 /** Updates the layer assignment of windows on this display. */
2321 void assignWindowLayers(boolean setLayoutNeeded) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002322 Trace.traceBegin(Trace.TRACE_TAG_WINDOW_MANAGER, "assignWindowLayers");
Robert Carrf59b8dd2017-10-02 18:58:36 -07002323 assignChildLayers(getPendingTransaction());
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002324 if (setLayoutNeeded) {
2325 setLayoutNeeded();
2326 }
Robert Carrb1579c82017-09-05 14:54:47 -07002327
Robert Carrf59b8dd2017-10-02 18:58:36 -07002328 // We accumlate the layer changes in-to "getPendingTransaction()" but we defer
Robert Carrb1579c82017-09-05 14:54:47 -07002329 // the application of this transaction until the animation pass triggers
2330 // prepareSurfaces. This allows us to synchronize Z-ordering changes with
2331 // the hiding and showing of surfaces.
2332 scheduleAnimation();
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002333 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002334 }
2335
Wale Ogunwale1666e312016-12-16 11:27:18 -08002336 // TODO: This should probably be called any time a visual change is made to the hierarchy like
2337 // moving containers or resizing them. Need to investigate the best way to have it automatically
2338 // happen so we don't run into issues with programmers forgetting to do it.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002339 void layoutAndAssignWindowLayersIfNeeded() {
2340 mService.mWindowsChanged = true;
2341 setLayoutNeeded();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002342
2343 if (!mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
2344 false /*updateInputWindows*/)) {
2345 assignWindowLayers(false /* setLayoutNeeded */);
2346 }
2347
2348 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
2349 mService.mWindowPlacerLocked.performSurfacePlacement();
2350 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2351 }
2352
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002353 /** Returns true if a leaked surface was destroyed */
2354 boolean destroyLeakedSurfaces() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002355 // Used to indicate that a surface was leaked.
2356 mTmpWindow = null;
2357 forAllWindows(w -> {
2358 final WindowStateAnimator wsa = w.mWinAnimator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002359 if (wsa.mSurfaceController == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002360 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002361 }
2362 if (!mService.mSessions.contains(wsa.mSession)) {
2363 Slog.w(TAG_WM, "LEAKED SURFACE (session doesn't exist): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002364 + w + " surface=" + wsa.mSurfaceController
2365 + " token=" + w.mToken
2366 + " pid=" + w.mSession.mPid
2367 + " uid=" + w.mSession.mUid);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002368 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002369 mService.mForceRemoves.add(w);
2370 mTmpWindow = w;
Wale Ogunwale89973222017-04-23 18:39:45 -07002371 } else if (w.mAppToken != null && w.mAppToken.isClientHidden()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002372 Slog.w(TAG_WM, "LEAKED SURFACE (app token hidden): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002373 + w + " surface=" + wsa.mSurfaceController
Jorim Jaggie7d2b852017-08-28 17:55:15 +02002374 + " token=" + w.mAppToken);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002375 if (SHOW_TRANSACTIONS) logSurface(w, "LEAK DESTROY", false);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002376 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002377 mTmpWindow = w;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002378 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002379 }, false /* traverseTopToBottom */);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002380
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002381 return mTmpWindow != null;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002382 }
2383
2384 /**
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002385 * Determine and return the window that should be the IME target.
2386 * @param updateImeTarget If true the system IME target will be updated to match what we found.
2387 * @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 +00002388 */
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002389 WindowState computeImeTarget(boolean updateImeTarget) {
2390 if (mService.mInputMethodWindow == null) {
2391 // There isn't an IME so there shouldn't be a target...That was easy!
2392 if (updateImeTarget) {
2393 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from "
2394 + mService.mInputMethodTarget + " to null since mInputMethodWindow is null");
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002395 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002396 }
2397 return null;
2398 }
2399
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002400 // TODO(multidisplay): Needs some serious rethought when the target and IME are not on the
2401 // same display. Or even when the current IME/target are not on the same screen as the next
2402 // IME/target. For now only look for input windows on the main screen.
Wale Ogunwale8e44f6c2017-03-09 15:25:10 -08002403 mUpdateImeTarget = updateImeTarget;
2404 WindowState target = getWindow(mComputeImeTargetPredicate);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002405
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002406
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002407 // Yet more tricksyness! If this window is a "starting" window, we do actually want
2408 // to be on top of it, but it is not -really- where input will go. So look down below
2409 // for a real window to target...
2410 if (target != null && target.mAttrs.type == TYPE_APPLICATION_STARTING) {
2411 final AppWindowToken token = target.mAppToken;
2412 if (token != null) {
2413 final WindowState betterTarget = token.getImeTargetBelowWindow(target);
2414 if (betterTarget != null) {
2415 target = betterTarget;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002416 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002417 }
2418 }
2419
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002420 if (DEBUG_INPUT_METHOD && updateImeTarget) Slog.v(TAG_WM,
2421 "Proposed new IME target: " + target);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002422
2423 // Now, a special case -- if the last target's window is in the process of exiting, and is
2424 // above the new target, keep on the last target to avoid flicker. Consider for example a
2425 // Dialog with the IME shown: when the Dialog is dismissed, we want to keep the IME above it
2426 // until it is completely gone so it doesn't drop behind the dialog or its full-screen
2427 // scrim.
2428 final WindowState curTarget = mService.mInputMethodTarget;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002429 if (curTarget != null && curTarget.isDisplayedLw() && curTarget.isClosing()
2430 && (target == null
2431 || curTarget.mWinAnimator.mAnimLayer > target.mWinAnimator.mAnimLayer)) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002432 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Current target higher, not changing");
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002433 return curTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002434 }
2435
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002436 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Desired input method target=" + target
2437 + " updateImeTarget=" + updateImeTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002438
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002439 if (target == null) {
2440 if (updateImeTarget) {
2441 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget
2442 + " to null." + (SHOW_STACK_CRAWLS ? " Callers="
2443 + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002444 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002445 }
2446
2447 return null;
2448 }
2449
2450 if (updateImeTarget) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002451 AppWindowToken token = curTarget == null ? null : curTarget.mAppToken;
2452 if (token != null) {
2453
2454 // Now some fun for dealing with window animations that modify the Z order. We need
2455 // to look at all windows below the current target that are in this app, finding the
2456 // highest visible one in layering.
2457 WindowState highestTarget = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002458 if (token.isSelfAnimating()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002459 highestTarget = token.getHighestAnimLayerWindow(curTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002460 }
2461
2462 if (highestTarget != null) {
2463 final AppTransition appTransition = mService.mAppTransition;
2464 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, appTransition + " " + highestTarget
2465 + " animating=" + highestTarget.mWinAnimator.isAnimationSet()
2466 + " layer=" + highestTarget.mWinAnimator.mAnimLayer
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002467 + " new layer=" + target.mWinAnimator.mAnimLayer);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002468
2469 if (appTransition.isTransitionSet()) {
2470 // If we are currently setting up for an animation, hold everything until we
2471 // can find out what will happen.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002472 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002473 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002474 } else if (highestTarget.mWinAnimator.isAnimationSet() &&
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002475 highestTarget.mWinAnimator.mAnimLayer > target.mWinAnimator.mAnimLayer) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002476 // If the window we are currently targeting is involved with an animation,
2477 // and it is on top of the next target we will be over, then hold off on
2478 // moving until that is done.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002479 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002480 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002481 }
2482 }
2483 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002484
2485 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget + " to "
2486 + target + (SHOW_STACK_CRAWLS ? " Callers=" + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002487 setInputMethodTarget(target, false);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002488 }
2489
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002490 return target;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002491 }
2492
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002493 private void setInputMethodTarget(WindowState target, boolean targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002494 if (target == mService.mInputMethodTarget
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002495 && mService.mInputMethodTargetWaitingAnim == targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002496 return;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002497 }
2498
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002499 mService.mInputMethodTarget = target;
2500 mService.mInputMethodTargetWaitingAnim = targetWaitingAnim;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002501 assignWindowLayers(false /* setLayoutNeeded */);
2502 }
2503
2504 boolean getNeedsMenu(WindowState top, WindowManagerPolicy.WindowState bottom) {
2505 if (top.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2506 return top.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
2507 }
2508
2509 // Used to indicate we have reached the first window in the range we are interested in.
2510 mTmpWindow = null;
2511
2512 // TODO: Figure-out a more efficient way to do this.
2513 final WindowState candidate = getWindow(w -> {
2514 if (w == top) {
2515 // Reached the first window in the range we are interested in.
2516 mTmpWindow = w;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002517 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002518 if (mTmpWindow == null) {
2519 return false;
2520 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002521
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002522 if (w.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2523 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002524 }
2525 // If we reached the bottom of the range of windows we are considering,
2526 // assume no menu is needed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002527 if (w == bottom) {
2528 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002529 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002530 return false;
2531 });
2532
2533 return candidate != null && candidate.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002534 }
2535
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002536 void setLayoutNeeded() {
2537 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "setLayoutNeeded: callers=" + Debug.getCallers(3));
2538 mLayoutNeeded = true;
2539 }
2540
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002541 private void clearLayoutNeeded() {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002542 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "clearLayoutNeeded: callers=" + Debug.getCallers(3));
2543 mLayoutNeeded = false;
2544 }
2545
2546 boolean isLayoutNeeded() {
2547 return mLayoutNeeded;
2548 }
2549
Wale Ogunwale02319a62016-09-26 15:21:22 -07002550 void dumpTokens(PrintWriter pw, boolean dumpAll) {
2551 if (mTokenMap.isEmpty()) {
2552 return;
2553 }
2554 pw.println(" Display #" + mDisplayId);
2555 final Iterator<WindowToken> it = mTokenMap.values().iterator();
2556 while (it.hasNext()) {
2557 final WindowToken token = it.next();
2558 pw.print(" ");
2559 pw.print(token);
2560 if (dumpAll) {
2561 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002562 token.dump(pw, " ", dumpAll);
Wale Ogunwale02319a62016-09-26 15:21:22 -07002563 } else {
2564 pw.println();
2565 }
2566 }
2567 }
2568
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002569 void dumpWindowAnimators(PrintWriter pw, String subPrefix) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002570 final int[] index = new int[1];
2571 forAllWindows(w -> {
2572 final WindowStateAnimator wAnim = w.mWinAnimator;
2573 pw.println(subPrefix + "Window #" + index[0] + ": " + wAnim);
2574 index[0] = index[0] + 1;
2575 }, false /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002576 }
2577
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002578 void enableSurfaceTrace(FileDescriptor fd) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002579 forAllWindows(w -> {
2580 w.mWinAnimator.enableSurfaceTrace(fd);
2581 }, true /* traverseTopToBottom */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002582 }
2583
2584 void disableSurfaceTrace() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002585 forAllWindows(w -> {
2586 w.mWinAnimator.disableSurfaceTrace();
2587 }, true /* traverseTopToBottom */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002588 }
2589
Jorim Jaggife762342016-10-13 14:33:27 +02002590 /**
2591 * Starts the Keyguard exit animation on all windows that don't belong to an app token.
2592 */
2593 void startKeyguardExitOnNonAppWindows(boolean onWallpaper, boolean goingToShade) {
2594 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002595 forAllWindows(w -> {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02002596 if (w.mAppToken == null && policy.canBeHiddenByKeyguardLw(w)
2597 && w.wouldBeVisibleIfPolicyIgnored() && !w.isVisible()) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01002598 w.startAnimation(policy.createHiddenByKeyguardExit(onWallpaper, goingToShade));
Jorim Jaggife762342016-10-13 14:33:27 +02002599 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002600 }, true /* traverseTopToBottom */);
Jorim Jaggife762342016-10-13 14:33:27 +02002601 }
2602
Wale Ogunwale494009b82016-10-21 09:01:38 -07002603 boolean checkWaitingForWindows() {
2604
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002605 mHaveBootMsg = false;
2606 mHaveApp = false;
2607 mHaveWallpaper = false;
2608 mHaveKeyguard = true;
2609
2610 final WindowState visibleWindow = getWindow(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002611 if (w.isVisibleLw() && !w.mObscured && !w.isDrawnLw()) {
2612 return true;
2613 }
2614 if (w.isDrawnLw()) {
2615 if (w.mAttrs.type == TYPE_BOOT_PROGRESS) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002616 mHaveBootMsg = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002617 } else if (w.mAttrs.type == TYPE_APPLICATION
2618 || w.mAttrs.type == TYPE_DRAWN_APPLICATION) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002619 mHaveApp = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002620 } else if (w.mAttrs.type == TYPE_WALLPAPER) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002621 mHaveWallpaper = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002622 } else if (w.mAttrs.type == TYPE_STATUS_BAR) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002623 mHaveKeyguard = mService.mPolicy.isKeyguardDrawnLw();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002624 }
2625 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002626 return false;
2627 });
2628
2629 if (visibleWindow != null) {
2630 // We have a visible window.
2631 return true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002632 }
2633
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002634 // if the wallpaper service is disabled on the device, we're never going to have
2635 // wallpaper, don't bother waiting for it
2636 boolean wallpaperEnabled = mService.mContext.getResources().getBoolean(
2637 com.android.internal.R.bool.config_enableWallpaperService)
2638 && !mService.mOnlyCore;
2639
Wale Ogunwale494009b82016-10-21 09:01:38 -07002640 if (DEBUG_SCREEN_ON || DEBUG_BOOT) Slog.i(TAG_WM,
2641 "******** booted=" + mService.mSystemBooted
2642 + " msg=" + mService.mShowingBootMessages
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002643 + " haveBoot=" + mHaveBootMsg + " haveApp=" + mHaveApp
2644 + " haveWall=" + mHaveWallpaper + " wallEnabled=" + wallpaperEnabled
2645 + " haveKeyguard=" + mHaveKeyguard);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002646
2647 // If we are turning on the screen to show the boot message, don't do it until the boot
2648 // message is actually displayed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002649 if (!mService.mSystemBooted && !mHaveBootMsg) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002650 return true;
2651 }
2652
2653 // If we are turning on the screen after the boot is completed normally, don't do so until
2654 // we have the application and wallpaper.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002655 if (mService.mSystemBooted
2656 && ((!mHaveApp && !mHaveKeyguard) || (wallpaperEnabled && !mHaveWallpaper))) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002657 return true;
2658 }
2659
2660 return false;
2661 }
2662
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002663 void updateWindowsForAnimator(WindowAnimator animator) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002664 mTmpWindowAnimator = animator;
2665 forAllWindows(mUpdateWindowsForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002666 }
2667
2668 void updateWallpaperForAnimator(WindowAnimator animator) {
Jorim Jaggi7156b652016-10-25 08:31:58 -07002669 resetAnimationBackgroundAnimator();
2670
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002671 // Used to indicate a detached wallpaper.
2672 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002673 mTmpWindowAnimator = animator;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002674
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002675 forAllWindows(mUpdateWallpaperForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002676
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002677 if (animator.mWindowDetachedWallpaper != mTmpWindow) {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002678 if (DEBUG_WALLPAPER) Slog.v(TAG, "Detached wallpaper changed from "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002679 + animator.mWindowDetachedWallpaper + " to " + mTmpWindow);
2680 animator.mWindowDetachedWallpaper = mTmpWindow;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002681 animator.mBulkUpdateParams |= SET_WALLPAPER_MAY_CHANGE;
2682 }
2683 }
2684
Wale Ogunwale494009b82016-10-21 09:01:38 -07002685 boolean inputMethodClientHasFocus(IInputMethodClient client) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002686 final WindowState imFocus = computeImeTarget(false /* updateImeTarget */);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002687 if (imFocus == null) {
2688 return false;
2689 }
2690
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002691 if (DEBUG_INPUT_METHOD) {
2692 Slog.i(TAG_WM, "Desired input method target: " + imFocus);
2693 Slog.i(TAG_WM, "Current focus: " + mService.mCurrentFocus);
2694 Slog.i(TAG_WM, "Last focus: " + mService.mLastFocus);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002695 }
2696
Wale Ogunwale494009b82016-10-21 09:01:38 -07002697 final IInputMethodClient imeClient = imFocus.mSession.mClient;
2698
2699 if (DEBUG_INPUT_METHOD) {
2700 Slog.i(TAG_WM, "IM target client: " + imeClient);
2701 if (imeClient != null) {
2702 Slog.i(TAG_WM, "IM target client binder: " + imeClient.asBinder());
2703 Slog.i(TAG_WM, "Requesting client binder: " + client.asBinder());
2704 }
2705 }
2706
2707 return imeClient != null && imeClient.asBinder() == client.asBinder();
2708 }
2709
2710 boolean hasSecureWindowOnScreen() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002711 final WindowState win = getWindow(
2712 w -> w.isOnScreen() && (w.mAttrs.flags & FLAG_SECURE) != 0);
2713 return win != null;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002714 }
2715
2716 void updateSystemUiVisibility(int visibility, int globalDiff) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002717 forAllWindows(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002718 try {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002719 final int curValue = w.mSystemUiVisibility;
2720 final int diff = (curValue ^ visibility) & globalDiff;
2721 final int newValue = (curValue & ~diff) | (visibility & diff);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002722 if (newValue != curValue) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002723 w.mSeq++;
2724 w.mSystemUiVisibility = newValue;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002725 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002726 if (newValue != curValue || w.mAttrs.hasSystemUiListeners) {
2727 w.mClient.dispatchSystemUiVisibilityChanged(w.mSeq,
Wale Ogunwale494009b82016-10-21 09:01:38 -07002728 visibility, newValue, diff);
2729 }
2730 } catch (RemoteException e) {
2731 // so sorry
2732 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002733 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002734 }
2735
2736 void onWindowFreezeTimeout() {
2737 Slog.w(TAG_WM, "Window freeze timeout expired.");
2738 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_TIMEOUT;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002739
2740 forAllWindows(w -> {
Bryce Lee8c3cf382017-07-06 19:47:10 -07002741 if (!w.getOrientationChanging()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002742 return;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002743 }
Robert Carr9c1c3a02017-08-08 12:59:01 -07002744 w.orientationChangeTimedOut();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002745 w.mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
2746 - mService.mDisplayFreezeTime);
2747 Slog.w(TAG_WM, "Force clearing orientation change: " + w);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002748 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002749 mService.mWindowPlacerLocked.performSurfacePlacement();
2750 }
2751
2752 void waitForAllWindowsDrawn() {
2753 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002754 forAllWindows(w -> {
2755 final boolean keyguard = policy.isKeyguardHostWindow(w.mAttrs);
2756 if (w.isVisibleLw() && (w.mAppToken != null || keyguard)) {
2757 w.mWinAnimator.mDrawState = DRAW_PENDING;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002758 // Force add to mResizingWindows.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002759 w.mLastContentInsets.set(-1, -1, -1, -1);
2760 mService.mWaitingForDrawn.add(w);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002761 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002762 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002763 }
2764
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002765 // TODO: Super crazy long method that should be broken down...
2766 boolean applySurfaceChangesTransaction(boolean recoveringMemory) {
2767
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002768 final int dw = mDisplayInfo.logicalWidth;
2769 final int dh = mDisplayInfo.logicalHeight;
2770 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
2771
2772 mTmpUpdateAllDrawn.clear();
2773
2774 int repeats = 0;
2775 do {
2776 repeats++;
2777 if (repeats > 6) {
2778 Slog.w(TAG, "Animation repeat aborted after too many iterations");
2779 clearLayoutNeeded();
2780 break;
2781 }
2782
2783 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats("On entry to LockedInner",
2784 pendingLayoutChanges);
2785
Andrii Kulian839def92016-11-02 10:58:58 -07002786 // TODO(multi-display): For now adjusting wallpaper only on primary display to avoid
2787 // the wallpaper window jumping across displays.
2788 // Remove check for default display when there will be support for multiple wallpaper
2789 // targets (on different displays).
2790 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_WALLPAPER) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002791 mWallpaperController.adjustWallpaperWindows(this);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002792 }
2793
2794 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_CONFIG) != 0) {
2795 if (DEBUG_LAYOUT) Slog.v(TAG, "Computing new config from layout");
2796 if (mService.updateOrientationFromAppTokensLocked(true, mDisplayId)) {
2797 setLayoutNeeded();
Andrii Kulianb17e8692016-11-01 10:37:22 -07002798 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, mDisplayId).sendToTarget();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002799 }
2800 }
2801
2802 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_LAYOUT) != 0) {
2803 setLayoutNeeded();
2804 }
2805
2806 // FIRST LOOP: Perform a layout, if needed.
2807 if (repeats < LAYOUT_REPEAT_THRESHOLD) {
2808 performLayout(repeats == 1, false /* updateInputWindows */);
2809 } else {
2810 Slog.w(TAG, "Layout repeat skipped after too many iterations");
2811 }
2812
2813 // FIRST AND ONE HALF LOOP: Make WindowManagerPolicy think it is animating.
2814 pendingLayoutChanges = 0;
2815
2816 if (isDefaultDisplay) {
2817 mService.mPolicy.beginPostLayoutPolicyLw(dw, dh);
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002818 forAllWindows(mApplyPostLayoutPolicy, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002819 pendingLayoutChanges |= mService.mPolicy.finishPostLayoutPolicyLw();
2820 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats(
2821 "after finishPostLayoutPolicyLw", pendingLayoutChanges);
2822 }
2823 } while (pendingLayoutChanges != 0);
2824
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002825 mTmpApplySurfaceChangesTransactionState.reset();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002826
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002827 mTmpRecoveringMemory = recoveringMemory;
2828 forAllWindows(mApplySurfaceChangesTransaction, true /* traverseTopToBottom */);
Jorim Jaggi6b0f8462018-01-05 17:23:47 +01002829 prepareSurfaces();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002830
2831 mService.mDisplayManagerInternal.setDisplayProperties(mDisplayId,
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002832 mTmpApplySurfaceChangesTransactionState.displayHasContent,
2833 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate,
2834 mTmpApplySurfaceChangesTransactionState.preferredModeId,
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002835 true /* inTraversal, must call performTraversalInTrans... below */);
2836
Lucas Dupin1ead7fc2017-05-24 14:14:44 -07002837 final boolean wallpaperVisible = mWallpaperController.isWallpaperVisible();
2838 if (wallpaperVisible != mLastWallpaperVisible) {
2839 mLastWallpaperVisible = wallpaperVisible;
2840 mService.mWallpaperVisibilityListeners.notifyWallpaperVisibilityChanged(this);
2841 }
2842
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002843 while (!mTmpUpdateAllDrawn.isEmpty()) {
2844 final AppWindowToken atoken = mTmpUpdateAllDrawn.removeLast();
2845 // See if any windows have been drawn, so they (and others associated with them)
2846 // can now be shown.
Matthew Ng498c71d2017-04-18 13:55:45 -07002847 atoken.updateAllDrawn();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002848 }
2849
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002850 return mTmpApplySurfaceChangesTransactionState.focusDisplayed;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002851 }
2852
Bryce Leef3c6a472017-11-14 14:53:06 -08002853 private void updateBounds() {
2854 calculateBounds(mTmpBounds);
2855 setBounds(mTmpBounds);
2856 }
2857
2858 // Determines the current display bounds based on the current state
2859 private void calculateBounds(Rect out) {
2860 // Uses same calculation as in LogicalDisplay#configureDisplayInTransactionLocked.
2861 final int orientation = mDisplayInfo.rotation;
2862 boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
2863 final int physWidth = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
2864 final int physHeight = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
2865 int width = mDisplayInfo.logicalWidth;
2866 int left = (physWidth - width) / 2;
2867 int height = mDisplayInfo.logicalHeight;
2868 int top = (physHeight - height) / 2;
2869 out.set(left, top, left + width, top + height);
2870 }
2871
2872 @Override
2873 public void getBounds(Rect out) {
2874 calculateBounds(out);
2875 }
2876
2877 private void getBounds(Rect out, int orientation) {
2878 getBounds(out);
2879
2880 // Rotate the Rect if needed.
2881 final int currentRotation = mDisplayInfo.rotation;
2882 final int rotationDelta = deltaRotation(currentRotation, orientation);
2883 if (rotationDelta == ROTATION_90 || rotationDelta == ROTATION_270) {
2884 createRotationMatrix(rotationDelta, mBaseDisplayWidth, mBaseDisplayHeight, mTmpMatrix);
2885 mTmpRectF.set(out);
2886 mTmpMatrix.mapRect(mTmpRectF);
2887 mTmpRectF.round(out);
2888 }
2889 }
2890
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002891 void performLayout(boolean initial, boolean updateInputWindows) {
2892 if (!isLayoutNeeded()) {
2893 return;
2894 }
2895 clearLayoutNeeded();
2896
2897 final int dw = mDisplayInfo.logicalWidth;
2898 final int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002899 if (DEBUG_LAYOUT) {
2900 Slog.v(TAG, "-------------------------------------");
2901 Slog.v(TAG, "performLayout: needed=" + isLayoutNeeded() + " dw=" + dw + " dh=" + dh);
2902 }
2903
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002904 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo);
2905 // TODO: Not sure if we really need to set the rotation here since we are updating from the
2906 // display info above...
2907 mDisplayFrames.mRotation = mRotation;
2908 mService.mPolicy.beginLayoutLw(mDisplayFrames, getConfiguration().uiMode);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002909 if (isDefaultDisplay) {
2910 // Not needed on non-default displays.
2911 mService.mSystemDecorLayer = mService.mPolicy.getSystemDecorLayerLw();
2912 mService.mScreenRect.set(0, 0, dw, dh);
2913 }
2914
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002915 int seq = mService.mLayoutSeq + 1;
2916 if (seq < 0) seq = 0;
2917 mService.mLayoutSeq = seq;
2918
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002919 // Used to indicate that we have processed the dream window and all additional windows are
2920 // behind it.
2921 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002922 mTmpInitial = initial;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002923
2924 // First perform layout of any root windows (not attached to another window).
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002925 forAllWindows(mPerformLayout, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002926
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002927 // Used to indicate that we have processed the dream window and all additional attached
2928 // windows are behind it.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002929 mTmpWindow2 = mTmpWindow;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002930 mTmpWindow = null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002931
2932 // Now perform layout of attached windows, which usually depend on the position of the
2933 // window they are attached to. XXX does not deal with windows that are attached to windows
2934 // that are themselves attached.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002935 forAllWindows(mPerformLayoutAttached, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002936
2937 // Window frames may have changed. Tell the input dispatcher about it.
2938 mService.mInputMonitor.layoutInputConsumers(dw, dh);
2939 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
2940 if (updateInputWindows) {
2941 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2942 }
2943
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002944 mService.mH.sendEmptyMessage(UPDATE_DOCKED_STACK_DIVIDER);
2945 }
2946
2947 /**
2948 * Takes a snapshot of the display. In landscape mode this grabs the whole screen.
2949 * In portrait mode, it grabs the full screenshot.
2950 *
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002951 * @param config of the output bitmap
2952 * @param wallpaperOnly true if only the wallpaper layer should be included in the screenshot
2953 */
chaviwfbe47df2017-11-10 16:14:49 -08002954 Bitmap screenshotDisplay(Bitmap.Config config, boolean wallpaperOnly) {
2955 synchronized (mService.mWindowMap) {
Jorim Jaggi51304d72017-05-17 17:25:32 +02002956 if (!mService.mPolicy.isScreenOn()) {
chaviwfbe47df2017-11-10 16:14:49 -08002957 if (DEBUG_SCREENSHOT) {
2958 Slog.i(TAG_WM, "Attempted to take screenshot while display was off.");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002959 }
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002960 return null;
2961 }
2962
chaviwfbe47df2017-11-10 16:14:49 -08002963 if (wallpaperOnly && !shouldScreenshotWallpaper()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002964 return null;
2965 }
2966
chaviwfbe47df2017-11-10 16:14:49 -08002967 int dw = mDisplayInfo.logicalWidth;
2968 int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002969
chaviwfbe47df2017-11-10 16:14:49 -08002970 if (dw <= 0 || dh <= 0) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002971 return null;
2972 }
2973
chaviwfbe47df2017-11-10 16:14:49 -08002974 final Rect frame = new Rect(0, 0, dw, dh);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002975
2976 // The screenshot API does not apply the current screen rotation.
2977 int rot = mDisplay.getRotation();
2978
2979 if (rot == ROTATION_90 || rot == ROTATION_270) {
2980 rot = (rot == ROTATION_90) ? ROTATION_270 : ROTATION_90;
2981 }
2982
chaviwfbe47df2017-11-10 16:14:49 -08002983 // SurfaceFlinger is not aware of orientation, so convert our logical
2984 // crop to SurfaceFlinger's portrait orientation.
2985 convertCropForSurfaceFlinger(frame, rot, dw, dh);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002986
2987 final ScreenRotationAnimation screenRotationAnimation =
2988 mService.mAnimator.getScreenRotationAnimationLocked(DEFAULT_DISPLAY);
2989 final boolean inRotation = screenRotationAnimation != null &&
2990 screenRotationAnimation.isAnimating();
chaviwfbe47df2017-11-10 16:14:49 -08002991 if (DEBUG_SCREENSHOT && inRotation) Slog.v(TAG_WM, "Taking screenshot while rotating");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002992
Robert Carrb1579c82017-09-05 14:54:47 -07002993 // TODO(b/68392460): We should screenshot Task controls directly
2994 // but it's difficult at the moment as the Task doesn't have the
2995 // correct size set.
chaviwfbe47df2017-11-10 16:14:49 -08002996 final Bitmap bitmap = SurfaceControl.screenshot(frame, dw, dh, 0, 1, inRotation, rot);
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01002997 if (bitmap == null) {
Robert Carrb1579c82017-09-05 14:54:47 -07002998 Slog.w(TAG_WM, "Failed to take screenshot");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002999 return null;
3000 }
chaviwfbe47df2017-11-10 16:14:49 -08003001
3002 // Create a copy of the screenshot that is immutable and backed in ashmem.
3003 // This greatly reduces the overhead of passing the bitmap between processes.
3004 final Bitmap ret = bitmap.createAshmemBitmap(config);
3005 bitmap.recycle();
3006 return ret;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003007 }
chaviwfbe47df2017-11-10 16:14:49 -08003008 }
3009
3010 private boolean shouldScreenshotWallpaper() {
3011 MutableBoolean screenshotReady = new MutableBoolean(false);
3012
3013 forAllWindows(w -> {
3014 if (!w.mIsWallpaper) {
3015 return false;
3016 }
3017
3018 // Found the wallpaper window
3019 final WindowStateAnimator winAnim = w.mWinAnimator;
3020
3021 if (winAnim.getShown() && winAnim.mLastAlpha > 0f) {
3022 screenshotReady.value = true;
3023 }
3024
3025 return true;
3026 }, true /* traverseTopToBottom */);
3027
3028 return screenshotReady.value;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003029 }
3030
3031 // TODO: Can this use createRotationMatrix()?
3032 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) {
3033 if (rot == Surface.ROTATION_90) {
3034 final int tmp = crop.top;
3035 crop.top = dw - crop.right;
3036 crop.right = crop.bottom;
3037 crop.bottom = dw - crop.left;
3038 crop.left = tmp;
3039 } else if (rot == Surface.ROTATION_180) {
3040 int tmp = crop.top;
3041 crop.top = dh - crop.bottom;
3042 crop.bottom = dh - tmp;
3043 tmp = crop.right;
3044 crop.right = dw - crop.left;
3045 crop.left = dw - tmp;
3046 } else if (rot == Surface.ROTATION_270) {
3047 final int tmp = crop.top;
3048 crop.top = crop.left;
3049 crop.left = dh - crop.bottom;
3050 crop.bottom = crop.right;
3051 crop.right = dh - tmp;
3052 }
3053 }
3054
3055 void onSeamlessRotationTimeout() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003056 // Used to indicate the layout is needed.
3057 mTmpWindow = null;
3058
3059 forAllWindows(w -> {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003060 if (!w.mSeamlesslyRotated) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003061 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003062 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003063 mTmpWindow = w;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003064 w.setDisplayLayoutNeeded();
3065 mService.markForSeamlessRotation(w, false);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003066 }, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003067
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003068 if (mTmpWindow != null) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003069 mService.mWindowPlacerLocked.performSurfacePlacement();
3070 }
3071 }
3072
Wale Ogunwale1666e312016-12-16 11:27:18 -08003073 void setExitingTokensHasVisible(boolean hasVisible) {
3074 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3075 mExitingTokens.get(i).hasVisible = hasVisible;
3076 }
3077
3078 // Initialize state of exiting applications.
3079 mTaskStackContainers.setExitingTokensHasVisible(hasVisible);
3080 }
3081
3082 void removeExistingTokensIfPossible() {
3083 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3084 final WindowToken token = mExitingTokens.get(i);
3085 if (!token.hasVisible) {
3086 mExitingTokens.remove(i);
3087 }
3088 }
3089
3090 // Time to remove any exiting applications?
3091 mTaskStackContainers.removeExistingAppTokensIfPossible();
3092 }
3093
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003094 @Override
3095 void onDescendantOverrideConfigurationChanged() {
3096 setLayoutNeeded();
3097 mService.requestTraversal();
3098 }
3099
David Stevens9440dc82017-03-16 19:00:20 -07003100 boolean okToDisplay() {
3101 if (mDisplayId == DEFAULT_DISPLAY) {
3102 return !mService.mDisplayFrozen
3103 && mService.mDisplayEnabled && mService.mPolicy.isScreenOn();
3104 }
3105 return mDisplayInfo.state == Display.STATE_ON;
3106 }
3107
3108 boolean okToAnimate() {
3109 return okToDisplay() &&
3110 (mDisplayId != DEFAULT_DISPLAY || mService.mPolicy.okToAnimate());
3111 }
3112
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07003113 static final class TaskForResizePointSearchResult {
3114 boolean searchDone;
3115 Task taskForResize;
3116
3117 void reset() {
3118 searchDone = false;
3119 taskForResize = null;
3120 }
3121 }
Robert Carr3b716242016-08-16 16:02:21 -07003122
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003123 private static final class ApplySurfaceChangesTransactionState {
3124 boolean displayHasContent;
3125 boolean obscured;
3126 boolean syswin;
3127 boolean focusDisplayed;
3128 float preferredRefreshRate;
3129 int preferredModeId;
3130
3131 void reset() {
3132 displayHasContent = false;
3133 obscured = false;
3134 syswin = false;
3135 focusDisplayed = false;
3136 preferredRefreshRate = 0;
3137 preferredModeId = 0;
3138 }
3139 }
3140
3141 private static final class ScreenshotApplicationState {
3142 WindowState appWin;
3143 int maxLayer;
3144 int minLayer;
3145 boolean screenshotReady;
3146
3147 void reset(boolean screenshotReady) {
3148 appWin = null;
3149 maxLayer = 0;
3150 minLayer = 0;
3151 this.screenshotReady = screenshotReady;
3152 minLayer = (screenshotReady) ? 0 : Integer.MAX_VALUE;
3153 }
3154 }
3155
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003156 /**
3157 * Base class for any direct child window container of {@link #DisplayContent} need to inherit
3158 * from. This is mainly a pass through class that allows {@link #DisplayContent} to have
3159 * homogeneous children type which is currently required by sub-classes of
3160 * {@link WindowContainer} class.
3161 */
3162 static class DisplayChildWindowContainer<E extends WindowContainer> extends WindowContainer<E> {
3163
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003164 DisplayChildWindowContainer(WindowManagerService service) {
3165 super(service);
3166 }
3167
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003168 @Override
3169 boolean fillsParent() {
3170 return true;
3171 }
3172
3173 @Override
3174 boolean isVisible() {
3175 return true;
Robert Carr3b716242016-08-16 16:02:21 -07003176 }
3177 }
3178
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003179 /**
3180 * Window container class that contains all containers on this display relating to Apps.
3181 * I.e Activities.
3182 */
Wale Ogunwale3a931692016-11-02 16:49:48 -07003183 private final class TaskStackContainers extends DisplayChildWindowContainer<TaskStack> {
Robert Carrb1579c82017-09-05 14:54:47 -07003184 /**
3185 * A control placed at the appropriate level for transitions to occur.
3186 */
chaviw23ee71c2017-12-18 11:29:41 -08003187 SurfaceControl mAppAnimationLayer = null;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003188
Robert Carrf7a7ca82017-12-06 13:17:07 -08003189 /**
3190 * Given that the split-screen divider does not have an AppWindowToken, it
3191 * will have to live inside of a "NonAppWindowContainer", in particular
3192 * {@link DisplayContent#mAboveAppWindowsContainers}. However, in visual Z order
3193 * it will need to be interleaved with some of our children, appearing on top of
3194 * both docked stacks but underneath any assistant stacks.
3195 *
3196 * To solve this problem we have this anchor control, which will always exist so
3197 * we can always assign it the correct value in our {@link #assignChildLayers}.
3198 * Likewise since it always exists, {@link AboveAppWindowContainers} can always
3199 * assign the divider a layer relative to it. This way we prevent linking lifecycle
3200 * events between the two containers.
3201 */
3202 SurfaceControl mSplitScreenDividerAnchor = null;
3203
Wale Ogunwale61911492017-10-11 08:50:50 -07003204 // Cached reference to some special stacks we tend to get a lot so we don't need to loop
3205 // through the list to find them.
3206 private TaskStack mHomeStack = null;
3207 private TaskStack mPinnedStack = null;
3208 private TaskStack mSplitScreenPrimaryStack = null;
3209
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003210 TaskStackContainers(WindowManagerService service) {
3211 super(service);
3212 }
3213
Wale Ogunwale61911492017-10-11 08:50:50 -07003214 /**
3215 * Returns the topmost stack on the display that is compatible with the input windowing mode
3216 * and activity type. Null is no compatible stack on the display.
3217 */
3218 TaskStack getStack(int windowingMode, int activityType) {
3219 if (activityType == ACTIVITY_TYPE_HOME) {
3220 return mHomeStack;
3221 }
3222 if (windowingMode == WINDOWING_MODE_PINNED) {
3223 return mPinnedStack;
3224 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3225 return mSplitScreenPrimaryStack;
3226 }
3227 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
3228 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003229 if (activityType == ACTIVITY_TYPE_UNDEFINED
3230 && windowingMode == stack.getWindowingMode()) {
3231 // Passing in undefined type means we want to match the topmost stack with the
3232 // windowing mode.
3233 return stack;
3234 }
Wale Ogunwale61911492017-10-11 08:50:50 -07003235 if (stack.isCompatible(windowingMode, activityType)) {
3236 return stack;
3237 }
3238 }
3239 return null;
3240 }
3241
3242 @VisibleForTesting
3243 TaskStack getTopStack() {
3244 return mTaskStackContainers.getChildCount() > 0
3245 ? mTaskStackContainers.getChildAt(mTaskStackContainers.getChildCount() - 1) : null;
3246 }
3247
3248 TaskStack getHomeStack() {
3249 if (mHomeStack == null && mDisplayId == DEFAULT_DISPLAY) {
3250 Slog.e(TAG_WM, "getHomeStack: Returning null from this=" + this);
3251 }
3252 return mHomeStack;
3253 }
3254
3255 TaskStack getPinnedStack() {
3256 return mPinnedStack;
3257 }
3258
Matthew Ng64e77cf2017-10-31 14:01:31 -07003259 TaskStack getSplitScreenPrimaryStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07003260 return mSplitScreenPrimaryStack;
3261 }
3262
Andrii Kulian839def92016-11-02 10:58:58 -07003263 /**
3264 * Adds the stack to this container.
Wale Ogunwale61911492017-10-11 08:50:50 -07003265 * @see DisplayContent#createStack(int, boolean, StackWindowController)
Andrii Kulian839def92016-11-02 10:58:58 -07003266 */
3267 void addStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale61911492017-10-11 08:50:50 -07003268 addStackReferenceIfNeeded(stack);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003269 addChild(stack, onTop);
3270 stack.onDisplayChanged(DisplayContent.this);
Robert Carr3b716242016-08-16 16:02:21 -07003271 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003272
Wale Ogunwale61911492017-10-11 08:50:50 -07003273 void onStackWindowingModeChanged(TaskStack stack) {
3274 removeStackReferenceIfNeeded(stack);
3275 addStackReferenceIfNeeded(stack);
3276 if (stack == mPinnedStack && getTopStack() != stack) {
3277 // Looks like this stack changed windowing mode to pinned. Move it to the top.
3278 positionChildAt(POSITION_TOP, stack, false /* includingParents */);
3279 }
3280 }
3281
3282 private void addStackReferenceIfNeeded(TaskStack stack) {
3283 if (stack.isActivityTypeHome()) {
3284 if (mHomeStack != null) {
3285 throw new IllegalArgumentException("addStackReferenceIfNeeded: home stack="
3286 + mHomeStack + " already exist on display=" + this + " stack=" + stack);
3287 }
3288 mHomeStack = stack;
3289 }
3290 final int windowingMode = stack.getWindowingMode();
3291 if (windowingMode == WINDOWING_MODE_PINNED) {
3292 if (mPinnedStack != null) {
3293 throw new IllegalArgumentException("addStackReferenceIfNeeded: pinned stack="
3294 + mPinnedStack + " already exist on display=" + this
3295 + " stack=" + stack);
3296 }
3297 mPinnedStack = stack;
3298 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3299 if (mSplitScreenPrimaryStack != null) {
3300 throw new IllegalArgumentException("addStackReferenceIfNeeded:"
3301 + " split-screen-primary" + " stack=" + mSplitScreenPrimaryStack
3302 + " already exist on display=" + this + " stack=" + stack);
3303 }
3304 mSplitScreenPrimaryStack = stack;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003305 mDividerControllerLocked.notifyDockedStackExistsChanged(true);
Wale Ogunwale61911492017-10-11 08:50:50 -07003306 }
3307 }
3308
3309 private void removeStackReferenceIfNeeded(TaskStack stack) {
3310 if (stack == mHomeStack) {
3311 mHomeStack = null;
3312 } else if (stack == mPinnedStack) {
3313 mPinnedStack = null;
3314 } else if (stack == mSplitScreenPrimaryStack) {
3315 mSplitScreenPrimaryStack = null;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003316 // Re-set the split-screen create mode whenever the split-screen stack is removed.
3317 mService.setDockedStackCreateStateLocked(
3318 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
3319 mDividerControllerLocked.notifyDockedStackExistsChanged(false);
Wale Ogunwale61911492017-10-11 08:50:50 -07003320 }
Andrii Kulian839def92016-11-02 10:58:58 -07003321 }
3322
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003323 private void addChild(TaskStack stack, boolean toTop) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003324 final int addIndex = findPositionForStack(toTop ? mChildren.size() : 0, stack,
3325 true /* adding */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003326 addChild(stack, addIndex);
3327 setLayoutNeeded();
3328 }
3329
Wale Ogunwale61911492017-10-11 08:50:50 -07003330 @Override
3331 protected void removeChild(TaskStack stack) {
3332 super.removeChild(stack);
3333 removeStackReferenceIfNeeded(stack);
3334 }
Bryce Lee00d586d2017-07-28 20:48:43 -07003335
3336 @Override
3337 boolean isOnTop() {
3338 // Considered always on top
3339 return true;
3340 }
3341
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003342 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -08003343 void positionChildAt(int position, TaskStack child, boolean includingParents) {
Wale Ogunwale3382ab12017-07-27 08:55:03 -07003344 if (child.getWindowConfiguration().isAlwaysOnTop()
3345 && position != POSITION_TOP) {
Andrii Kuliand2765632016-12-12 22:26:34 -08003346 // This stack is always-on-top, override the default behavior.
3347 Slog.w(TAG_WM, "Ignoring move of always-on-top stack=" + this + " to bottom");
3348
3349 // Moving to its current position, as we must call super but we don't want to
3350 // perform any meaningful action.
3351 final int currentPosition = mChildren.indexOf(child);
3352 super.positionChildAt(currentPosition, child, false /* includingParents */);
3353 return;
3354 }
3355
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003356 final int targetPosition = findPositionForStack(position, child, false /* adding */);
3357 super.positionChildAt(targetPosition, child, includingParents);
3358
3359 setLayoutNeeded();
3360 }
3361
3362 /**
3363 * When stack is added or repositioned, find a proper position for it.
3364 * This will make sure that pinned stack always stays on top.
3365 * @param requestedPosition Position requested by caller.
3366 * @param stack Stack to be added or positioned.
3367 * @param adding Flag indicates whether we're adding a new stack or positioning an existing.
3368 * @return The proper position for the stack.
3369 */
3370 private int findPositionForStack(int requestedPosition, TaskStack stack, boolean adding) {
3371 final int topChildPosition = mChildren.size() - 1;
3372 boolean toTop = requestedPosition == POSITION_TOP;
3373 toTop |= adding ? requestedPosition >= topChildPosition + 1
3374 : requestedPosition >= topChildPosition;
3375 int targetPosition = requestedPosition;
3376
Wale Ogunwale61911492017-10-11 08:50:50 -07003377 if (toTop && stack.getWindowingMode() != WINDOWING_MODE_PINNED && hasPinnedStack()) {
Bryce Lee48f4b572017-04-10 10:54:15 -07003378 // The pinned stack is always the top most stack (always-on-top) when it is present.
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003379 TaskStack topStack = mChildren.get(topChildPosition);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07003380 if (topStack.getWindowingMode() != WINDOWING_MODE_PINNED) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003381 throw new IllegalStateException("Pinned stack isn't top stack??? " + mChildren);
3382 }
3383
3384 // So, stack is moved just below the pinned stack.
3385 // When we're adding a new stack the target is the current pinned stack position.
3386 // When we're positioning an existing stack the target is the position below pinned
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08003387 // stack, because WindowContainer#positionAt() first removes element and then adds
3388 // it to specified place.
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003389 targetPosition = adding ? topChildPosition : topChildPosition - 1;
3390 }
3391
3392 return targetPosition;
Andrii Kuliand2765632016-12-12 22:26:34 -08003393 }
3394
3395 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003396 boolean forAllWindows(ToBooleanFunction<WindowState> callback,
3397 boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003398 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003399 if (super.forAllWindows(callback, traverseTopToBottom)) {
3400 return true;
3401 }
3402 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3403 return true;
3404 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003405 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003406 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3407 return true;
3408 }
3409 if (super.forAllWindows(callback, traverseTopToBottom)) {
3410 return true;
3411 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003412 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003413 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003414 }
3415
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003416 private boolean forAllExitingAppTokenWindows(ToBooleanFunction<WindowState> callback,
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003417 boolean traverseTopToBottom) {
3418 // For legacy reasons we process the TaskStack.mExitingAppTokens first here before the
3419 // app tokens.
3420 // TODO: Investigate if we need to continue to do this or if we can just process them
3421 // in-order.
3422 if (traverseTopToBottom) {
3423 for (int i = mChildren.size() - 1; i >= 0; --i) {
3424 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3425 for (int j = appTokens.size() - 1; j >= 0; --j) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003426 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3427 traverseTopToBottom)) {
3428 return true;
3429 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003430 }
3431 }
3432 } else {
3433 final int count = mChildren.size();
3434 for (int i = 0; i < count; ++i) {
3435 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3436 final int appTokensCount = appTokens.size();
3437 for (int j = 0; j < appTokensCount; j++) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003438 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3439 traverseTopToBottom)) {
3440 return true;
3441 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003442 }
3443 }
3444 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003445 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003446 }
3447
Wale Ogunwale1666e312016-12-16 11:27:18 -08003448 void setExitingTokensHasVisible(boolean hasVisible) {
3449 for (int i = mChildren.size() - 1; i >= 0; --i) {
3450 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3451 for (int j = appTokens.size() - 1; j >= 0; --j) {
3452 appTokens.get(j).hasVisible = hasVisible;
3453 }
3454 }
3455 }
3456
3457 void removeExistingAppTokensIfPossible() {
3458 for (int i = mChildren.size() - 1; i >= 0; --i) {
3459 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3460 for (int j = appTokens.size() - 1; j >= 0; --j) {
3461 final AppWindowToken token = appTokens.get(j);
3462 if (!token.hasVisible && !mService.mClosingApps.contains(token)
3463 && (!token.mIsExiting || token.isEmpty())) {
3464 // Make sure there is no animation running on this token, so any windows
3465 // associated with it will be removed as soon as their animations are
3466 // complete.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003467 cancelAnimation();
Wale Ogunwale1666e312016-12-16 11:27:18 -08003468 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG,
3469 "performLayout: App token exiting now removed" + token);
3470 token.removeIfPossible();
3471 }
3472 }
3473 }
3474 }
3475
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003476 @Override
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003477 int getOrientation() {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003478 if (isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY)
3479 || isStackVisible(WINDOWING_MODE_FREEFORM)) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003480 // Apps and their containers are not allowed to specify an orientation while the
3481 // docked or freeform stack is visible...except for the home stack/task if the
3482 // docked stack is minimized and it actually set something.
3483 if (mHomeStack != null && mHomeStack.isVisible()
3484 && mDividerControllerLocked.isMinimizedDock()) {
3485 final int orientation = mHomeStack.getOrientation();
3486 if (orientation != SCREEN_ORIENTATION_UNSET) {
3487 return orientation;
3488 }
3489 }
3490 return SCREEN_ORIENTATION_UNSPECIFIED;
3491 }
3492
3493 final int orientation = super.getOrientation();
Dean Harding3e5a1522017-10-06 09:19:01 -07003494 boolean isCar = mService.mContext.getPackageManager().hasSystemFeature(
3495 PackageManager.FEATURE_AUTOMOTIVE);
3496 if (isCar) {
3497 // In a car, you cannot physically rotate the screen, so it doesn't make sense to
3498 // allow anything but the default orientation.
3499 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
3500 "Forcing UNSPECIFIED orientation in car. Ignoring " + orientation);
3501 return SCREEN_ORIENTATION_UNSPECIFIED;
3502 }
3503
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003504 if (orientation != SCREEN_ORIENTATION_UNSET
3505 && orientation != SCREEN_ORIENTATION_BEHIND) {
3506 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
3507 "App is requesting an orientation, return " + orientation);
3508 return orientation;
3509 }
3510
3511 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulian8ee72852017-03-10 10:36:45 -08003512 "No app is requesting an orientation, return " + mLastOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003513 // The next app has not been requested to be visible, so we keep the current orientation
3514 // to prevent freezing/unfreezing the display too early.
Andrii Kulian8ee72852017-03-10 10:36:45 -08003515 return mLastOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003516 }
Robert Carrb1579c82017-09-05 14:54:47 -07003517
3518 @Override
3519 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carrf7a7ca82017-12-06 13:17:07 -08003520
3521 final int HOME_STACK_STATE = 0;
3522 final int NORMAL_STACK_STATE = 1;
3523 final int ALWAYS_ON_TOP_STATE = 2;
3524
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003525 int layer = 0;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003526 for (int state = 0; state <= ALWAYS_ON_TOP_STATE; state++) {
3527 for (int i = 0; i < mChildren.size(); i++) {
3528 final TaskStack s = mChildren.get(i);
3529 if (state == HOME_STACK_STATE && s.isActivityTypeHome()) {
3530 s.assignLayer(t, layer++);
3531 } else if (state == NORMAL_STACK_STATE && !s.isActivityTypeHome()
3532 && !s.isAlwaysOnTop()) {
3533 s.assignLayer(t, layer++);
3534 if (s.inSplitScreenWindowingMode() && mSplitScreenDividerAnchor != null) {
3535 t.setLayer(mSplitScreenDividerAnchor, layer++);
3536 }
3537 } else if (state == ALWAYS_ON_TOP_STATE && s.isAlwaysOnTop()) {
3538 s.assignLayer(t, layer++);
3539 }
3540 }
3541 // The appropriate place for App-Transitions to occur is right
3542 // above all other animations but still below things in the Picture-and-Picture
3543 // windowing mode.
3544 if (state == NORMAL_STACK_STATE && mAppAnimationLayer != null) {
3545 t.setLayer(mAppAnimationLayer, layer++);
Robert Carrb1579c82017-09-05 14:54:47 -07003546 }
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003547 }
3548 for (int i = 0; i < mChildren.size(); i++) {
3549 final TaskStack s = mChildren.get(i);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003550 s.assignChildLayers(t);
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003551 }
3552
Robert Carrb1579c82017-09-05 14:54:47 -07003553 }
3554
3555 @Override
chaviw23ee71c2017-12-18 11:29:41 -08003556 SurfaceControl getAppAnimationLayer() {
3557 return mAppAnimationLayer;
3558 }
3559
Robert Carrf7a7ca82017-12-06 13:17:07 -08003560 SurfaceControl getSplitScreenDividerAnchor() {
3561 return mSplitScreenDividerAnchor;
3562 }
3563
chaviw23ee71c2017-12-18 11:29:41 -08003564 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07003565 void onParentSet() {
3566 super.onParentSet();
3567 if (getParent() != null) {
chaviw23ee71c2017-12-18 11:29:41 -08003568 mAppAnimationLayer = makeChildSurface(null)
3569 .setName("animationLayer")
3570 .build();
Robert Carrf7a7ca82017-12-06 13:17:07 -08003571 mSplitScreenDividerAnchor = makeChildSurface(null)
3572 .setName("splitScreenDividerAnchor")
3573 .build();
3574 getPendingTransaction()
3575 .show(mAppAnimationLayer)
3576 .show(mSplitScreenDividerAnchor);
chaviw23ee71c2017-12-18 11:29:41 -08003577 scheduleAnimation();
Robert Carrb1579c82017-09-05 14:54:47 -07003578 } else {
chaviw23ee71c2017-12-18 11:29:41 -08003579 mAppAnimationLayer.destroy();
3580 mAppAnimationLayer = null;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003581 mSplitScreenDividerAnchor.destroy();
3582 mSplitScreenDividerAnchor = null;
Robert Carrb1579c82017-09-05 14:54:47 -07003583 }
3584 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003585 }
3586
Robert Carree4d4b92017-11-22 12:21:46 -08003587 private final class AboveAppWindowContainers extends NonAppWindowContainers {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003588 AboveAppWindowContainers(String name, WindowManagerService service) {
3589 super(name, service);
Robert Carree4d4b92017-11-22 12:21:46 -08003590 }
3591
3592 void assignChildLayers(SurfaceControl.Transaction t, WindowContainer imeContainer) {
3593 boolean needAssignIme = imeContainer != null
3594 && imeContainer.getSurfaceControl() != null;
3595 for (int j = 0; j < mChildren.size(); ++j) {
3596 final WindowToken wt = mChildren.get(j);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003597
3598 // See {@link mSplitScreenDividerAnchor}
3599 if (wt.windowType == TYPE_DOCK_DIVIDER) {
3600 wt.assignRelativeLayer(t, mTaskStackContainers.getSplitScreenDividerAnchor(), 1);
3601 continue;
3602 }
Robert Carree4d4b92017-11-22 12:21:46 -08003603 wt.assignLayer(t, j);
3604 wt.assignChildLayers(t);
3605
3606 int layer = mService.mPolicy.getWindowLayerFromTypeLw(
3607 wt.windowType, wt.mOwnerCanManageAppTokens);
Robert Carrb8e78fa2017-11-28 13:07:58 -08003608
3609 if (needAssignIme && layer >= mService.mPolicy.getWindowLayerFromTypeLw(
3610 TYPE_INPUT_METHOD_DIALOG, true)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003611 imeContainer.assignRelativeLayer(t, wt.getSurfaceControl(), -1);
Robert Carree4d4b92017-11-22 12:21:46 -08003612 needAssignIme = false;
3613 }
3614 }
3615 if (needAssignIme) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003616 imeContainer.assignRelativeLayer(t, getSurfaceControl(), Integer.MAX_VALUE);
Robert Carree4d4b92017-11-22 12:21:46 -08003617 }
3618 }
3619 }
3620
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003621 /**
3622 * Window container class that contains all containers on this display that are not related to
3623 * Apps. E.g. status bar.
3624 */
Robert Carree4d4b92017-11-22 12:21:46 -08003625 private class NonAppWindowContainers extends DisplayChildWindowContainer<WindowToken> {
Wale Ogunwale3a931692016-11-02 16:49:48 -07003626 /**
3627 * Compares two child window tokens returns -1 if the first is lesser than the second in
3628 * terms of z-order and 1 otherwise.
3629 */
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003630 private final Comparator<WindowToken> mWindowComparator = (token1, token2) ->
Wale Ogunwale3a931692016-11-02 16:49:48 -07003631 // Tokens with higher base layer are z-ordered on-top.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08003632 mService.mPolicy.getWindowLayerFromTypeLw(token1.windowType,
3633 token1.mOwnerCanManageAppTokens)
3634 < mService.mPolicy.getWindowLayerFromTypeLw(token2.windowType,
3635 token2.mOwnerCanManageAppTokens) ? -1 : 1;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003636
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003637 private final Predicate<WindowState> mGetOrientingWindow = w -> {
3638 if (!w.isVisibleLw() || !w.mPolicyVisibilityAfterAnim) {
3639 return false;
3640 }
3641 final int req = w.mAttrs.screenOrientation;
3642 if(req == SCREEN_ORIENTATION_UNSPECIFIED || req == SCREEN_ORIENTATION_BEHIND
3643 || req == SCREEN_ORIENTATION_UNSET) {
3644 return false;
3645 }
3646 return true;
3647 };
3648
Wale Ogunwale3a931692016-11-02 16:49:48 -07003649 private final String mName;
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003650 NonAppWindowContainers(String name, WindowManagerService service) {
3651 super(service);
Wale Ogunwale3a931692016-11-02 16:49:48 -07003652 mName = name;
3653 }
3654
3655 void addChild(WindowToken token) {
3656 addChild(token, mWindowComparator);
3657 }
3658
3659 @Override
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003660 int getOrientation() {
3661 final WindowManagerPolicy policy = mService.mPolicy;
3662 // Find a window requesting orientation.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003663 final WindowState win = getWindow(mGetOrientingWindow);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003664
3665 if (win != null) {
3666 final int req = win.mAttrs.screenOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003667 if (policy.isKeyguardHostWindow(win.mAttrs)) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08003668 mLastKeyguardForcedOrientation = req;
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003669 if (mService.mKeyguardGoingAway) {
3670 // Keyguard can't affect the orientation if it is going away...
3671 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
3672 return SCREEN_ORIENTATION_UNSET;
3673 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003674 }
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003675 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, win + " forcing orientation to " + req);
Andrii Kulian8ee72852017-03-10 10:36:45 -08003676 return (mLastWindowForcedOrientation = req);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003677 }
3678
Andrii Kulian8ee72852017-03-10 10:36:45 -08003679 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003680
Jorim Jaggi75520d52017-08-24 17:23:19 +02003681 if (policy.isKeyguardShowingAndNotOccluded()
3682 || mService.mAppTransition.getAppTransition() == TRANSIT_KEYGUARD_UNOCCLUDE) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08003683 return mLastKeyguardForcedOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003684 }
3685
3686 return SCREEN_ORIENTATION_UNSET;
3687 }
3688
3689 @Override
Wale Ogunwale3a931692016-11-02 16:49:48 -07003690 String getName() {
3691 return mName;
3692 }
Robert Carr3b716242016-08-16 16:02:21 -07003693 }
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01003694
Robert Carr9034d962018-01-04 18:27:42 -08003695 private class NonMagnifiableWindowContainers extends NonAppWindowContainers {
3696 NonMagnifiableWindowContainers(String name, WindowManagerService service) {
3697 super(name, service);
3698 }
3699
3700 @Override
3701 void applyMagnificationSpec(Transaction t, MagnificationSpec spec) {
3702 }
3703 };
3704
Robert Carrb1579c82017-09-05 14:54:47 -07003705 SurfaceControl.Builder makeSurface(SurfaceSession s) {
3706 return mService.makeSurfaceBuilder(s)
3707 .setParent(mWindowingLayer);
3708 }
3709
3710 @Override
3711 SurfaceSession getSession() {
3712 return mSession;
3713 }
3714
3715 @Override
3716 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07003717 SurfaceSession s = child != null ? child.getSession() : getSession();
3718 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(s);
Robert Carrb1579c82017-09-05 14:54:47 -07003719 b.setSize(mSurfaceSize, mSurfaceSize);
Robert Carrf59b8dd2017-10-02 18:58:36 -07003720
3721 if (child == null) {
3722 return b;
3723 }
3724
Robert Carree4d4b92017-11-22 12:21:46 -08003725 return b.setName(child.getName())
3726 .setParent(mWindowingLayer);
Robert Carrb1579c82017-09-05 14:54:47 -07003727 }
3728
3729 /**
3730 * The makeSurface variants are for use by the window-container
3731 * hierarchy. makeOverlay here is a function for various non windowing
3732 * overlays like the ScreenRotation screenshot, the Strict Mode Flash
3733 * and other potpourii.
3734 */
3735 SurfaceControl.Builder makeOverlay() {
3736 return mService.makeSurfaceBuilder(mSession)
3737 .setParent(mOverlayLayer);
3738 }
3739
Daichi Hironoa1fb9be2017-12-18 17:02:54 +09003740 /**
3741 * Reparents the given surface to mOverlayLayer.
3742 */
3743 void reparentToOverlay(Transaction transaction, SurfaceControl surface) {
3744 transaction.reparent(surface, mOverlayLayer.getHandle());
3745 }
3746
Robert Carrb1579c82017-09-05 14:54:47 -07003747 void applyMagnificationSpec(MagnificationSpec spec) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07003748 applyMagnificationSpec(getPendingTransaction(), spec);
3749 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -07003750 }
3751
3752 @Override
3753 void onParentSet() {
3754 // Since we are the top of the SurfaceControl hierarchy here
3755 // we create the root surfaces explicitly rather than chaining
3756 // up as the default implementation in onParentSet does. So we
3757 // explicitly do NOT call super here.
3758 }
3759
3760 @Override
3761 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carrb1579c82017-09-05 14:54:47 -07003762
3763 // These are layers as children of "mWindowingLayer"
3764 mBelowAppWindowsContainers.assignLayer(t, 0);
3765 mTaskStackContainers.assignLayer(t, 1);
3766 mAboveAppWindowsContainers.assignLayer(t, 2);
3767
3768 WindowState imeTarget = mService.mInputMethodTarget;
Robert Carree4d4b92017-11-22 12:21:46 -08003769 boolean needAssignIme = true;
Robert Carr1cafdf82017-11-22 13:56:43 -08003770
Robert Carree4d4b92017-11-22 12:21:46 -08003771 // In the case where we have an IME target that is not in split-screen
3772 // mode IME assignment is easy. We just need the IME to go directly above
3773 // the target. This way children of the target will naturally go above the IME
3774 // and everyone is happy.
Robert Carr1cafdf82017-11-22 13:56:43 -08003775 //
Robert Carree4d4b92017-11-22 12:21:46 -08003776 // In the case of split-screen windowing mode, we need to elevate the IME above the
3777 // docked divider while keeping the app itself below the docked divider, so instead
3778 // we use relative layering of the IME targets child windows, and place the
3779 // IME in the non-app layer (see {@link AboveAppWindowContainers#assignChildLayers}).
Robert Carr1cafdf82017-11-22 13:56:43 -08003780 //
Robert Carree4d4b92017-11-22 12:21:46 -08003781 // In the case where we have no IME target we assign it where it's base layer would
3782 // place it in the AboveAppWindowContainers.
3783 if (imeTarget != null && !imeTarget.inSplitScreenWindowingMode()
3784 && (imeTarget.getSurfaceControl() != null)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003785 mImeWindowsContainers.assignRelativeLayer(t, imeTarget.getSurfaceControl(),
Robert Carrb1579c82017-09-05 14:54:47 -07003786 // TODO: We need to use an extra level on the app surface to ensure
3787 // this is always above SurfaceView but always below attached window.
3788 1);
Robert Carree4d4b92017-11-22 12:21:46 -08003789 needAssignIme = false;
Robert Carrb1579c82017-09-05 14:54:47 -07003790 }
3791
3792 // Above we have assigned layers to our children, now we ask them to assign
3793 // layers to their children.
3794 mBelowAppWindowsContainers.assignChildLayers(t);
3795 mTaskStackContainers.assignChildLayers(t);
Robert Carree4d4b92017-11-22 12:21:46 -08003796 mAboveAppWindowsContainers.assignChildLayers(t,
3797 needAssignIme == true ? mImeWindowsContainers : null);
Robert Carrb1579c82017-09-05 14:54:47 -07003798 mImeWindowsContainers.assignChildLayers(t);
3799 }
3800
3801 /**
3802 * Here we satisfy an unfortunate special case of the IME in split-screen mode. Imagine
3803 * that the IME target is one of the docked applications. We'd like the docked divider to be
3804 * above both of the applications, and we'd like the IME to be above the docked divider.
3805 * However we need child windows of the applications to be above the IME (Text drag handles).
3806 * This is a non-strictly hierarcical layering and we need to break out of the Z ordering
3807 * somehow. We do this by relatively ordering children of the target to the IME in cooperation
3808 * with {@link #WindowState#assignLayer}
3809 */
3810 void assignRelativeLayerForImeTargetChild(SurfaceControl.Transaction t, WindowContainer child) {
3811 t.setRelativeLayer(child.getSurfaceControl(), mImeWindowsContainers.getSurfaceControl(), 1);
3812 }
3813
3814 @Override
Jorim Jaggia5e10572017-11-15 14:36:26 +01003815 public void destroyAfterPendingTransaction(SurfaceControl surface) {
Robert Carrb1579c82017-09-05 14:54:47 -07003816 mPendingDestroyingSurfaces.add(surface);
3817 }
3818
3819 /**
3820 * Destroys any surfaces that have been put into the pending list with
Jorim Jaggia5e10572017-11-15 14:36:26 +01003821 * {@link #destroyAfterPendingTransaction}.
Robert Carrb1579c82017-09-05 14:54:47 -07003822 */
3823 void onPendingTransactionApplied() {
3824 for (int i = mPendingDestroyingSurfaces.size() - 1; i >= 0; i--) {
3825 mPendingDestroyingSurfaces.get(i).destroy();
3826 }
3827 mPendingDestroyingSurfaces.clear();
3828 }
Jorim Jaggi9af095b2017-12-12 17:18:57 +01003829
3830 @Override
3831 void prepareSurfaces() {
3832 final ScreenRotationAnimation screenRotationAnimation =
3833 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
3834 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
3835 screenRotationAnimation.getEnterTransformation().getMatrix().getValues(mTmpFloats);
3836 mPendingTransaction.setMatrix(mWindowingLayer,
3837 mTmpFloats[Matrix.MSCALE_X], mTmpFloats[Matrix.MSKEW_Y],
3838 mTmpFloats[Matrix.MSKEW_X], mTmpFloats[Matrix.MSCALE_Y]);
3839 mPendingTransaction.setPosition(mWindowingLayer,
3840 mTmpFloats[Matrix.MTRANS_X], mTmpFloats[Matrix.MTRANS_Y]);
3841 mPendingTransaction.setAlpha(mWindowingLayer,
3842 screenRotationAnimation.getEnterTransformation().getAlpha());
3843 }
3844 super.prepareSurfaces();
3845 }
Craig Mautner59c00972012-07-30 12:10:24 -07003846}