blob: c546ac71115161c4dd00639ffcf8d2fc1e760098 [file] [log] [blame]
Craig Mautner59c00972012-07-30 12:10:24 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Wale Ogunwale65ebd952018-04-25 15:41:44 -070019import static android.app.ActivityTaskManager.SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT;
Wale Ogunwale61911492017-10-11 08:50:50 -070020import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070021import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070022import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070023import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
24import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwalea77e1462016-09-28 10:09:46 -070025import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070026import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
27import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale687b4272017-07-27 02:56:23 -070028import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
29import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
Wale Ogunwale19e452e2016-10-12 12:36:29 -070030import static android.view.Display.DEFAULT_DISPLAY;
31import static android.view.Display.FLAG_PRIVATE;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -070032import static android.view.Surface.ROTATION_0;
33import static android.view.Surface.ROTATION_180;
34import static android.view.Surface.ROTATION_270;
35import static android.view.Surface.ROTATION_90;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070036import static android.view.View.GONE;
Jorim Jaggif96c90a2018-09-26 16:55:15 +020037import static android.view.InsetsState.TYPE_IME;
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;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080062import static android.view.WindowManager.TRANSIT_KEYGUARD_UNOCCLUDE;
63
Adrian Roose99bc052017-11-20 17:55:31 +010064import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
65import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_CONFIG;
66import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_LAYOUT;
67import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080068import static com.android.server.wm.DisplayContentProto.ABOVE_APP_WINDOWS;
lumark588a3e82018-07-20 18:53:54 +080069import static com.android.server.wm.DisplayContentProto.APP_TRANSITION;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080070import static com.android.server.wm.DisplayContentProto.BELOW_APP_WINDOWS;
71import static com.android.server.wm.DisplayContentProto.DISPLAY_FRAMES;
72import static com.android.server.wm.DisplayContentProto.DISPLAY_INFO;
73import static com.android.server.wm.DisplayContentProto.DOCKED_STACK_DIVIDER_CONTROLLER;
74import static com.android.server.wm.DisplayContentProto.DPI;
Tiger Huang1e5b10a2018-07-30 20:19:51 +080075import static com.android.server.wm.DisplayContentProto.FOCUSED_APP;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080076import static com.android.server.wm.DisplayContentProto.ID;
77import static com.android.server.wm.DisplayContentProto.IME_WINDOWS;
78import static com.android.server.wm.DisplayContentProto.PINNED_STACK_CONTROLLER;
79import static com.android.server.wm.DisplayContentProto.ROTATION;
80import static com.android.server.wm.DisplayContentProto.SCREEN_ROTATION_ANIMATION;
81import static com.android.server.wm.DisplayContentProto.STACKS;
Louis Chang7501e332018-08-20 13:08:39 +080082import static com.android.server.wm.DisplayContentProto.SURFACE_SIZE;
Riddle Hsua4d6fa22018-08-11 00:50:39 +080083import static com.android.server.wm.DisplayContentProto.WINDOW_CONTAINER;
Wale Ogunwale1666e312016-12-16 11:27:18 -080084import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
lumark588a3e82018-07-20 18:53:54 +080085import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_APP_TRANSITIONS;
Wale Ogunwale494009b82016-10-21 09:01:38 -070086import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_BOOT;
Wale Ogunwale10124582016-09-15 20:25:50 -070087import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DISPLAY;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070088import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS;
89import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070090import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT_METHOD;
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -070091import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070092import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
Jorim Jaggife762342016-10-13 14:33:27 +020093import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070094import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREENSHOT;
Wale Ogunwale494009b82016-10-21 09:01:38 -070095import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREEN_ON;
Andrii Kulian839def92016-11-02 10:58:58 -070096import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Wale Ogunwale1666e312016-12-16 11:27:18 -080097import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070098import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER_LIGHT;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070099import static com.android.server.wm.WindowManagerDebugConfig.SHOW_STACK_CRAWLS;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700100import static com.android.server.wm.WindowManagerDebugConfig.SHOW_TRANSACTIONS;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700101import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800102import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700103import static com.android.server.wm.WindowManagerService.CUSTOM_SCREEN_ROTATION;
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800104import static com.android.server.wm.WindowManagerService.H.REPORT_LOSING_FOCUS;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700105import static com.android.server.wm.WindowManagerService.H.SEND_NEW_CONFIGURATION;
106import static com.android.server.wm.WindowManagerService.H.UPDATE_DOCKED_STACK_DIVIDER;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700107import static com.android.server.wm.WindowManagerService.H.WINDOW_HIDE_TIMEOUT;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700108import static com.android.server.wm.WindowManagerService.LAYOUT_REPEAT_THRESHOLD;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700109import static com.android.server.wm.WindowManagerService.MAX_ANIMATION_DURATION;
110import static com.android.server.wm.WindowManagerService.SEAMLESS_ROTATION_TIMEOUT_DURATION;
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800111import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_PLACING_SURFACES;
112import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_REMOVING_FOCUS;
113import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_ASSIGN_LAYERS;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700114import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700115import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_ACTIVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700116import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_TIMEOUT;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700117import static com.android.server.wm.WindowManagerService.WINDOW_FREEZE_TIMEOUT_DURATION;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700118import static com.android.server.wm.WindowManagerService.dipToPixel;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700119import static com.android.server.wm.WindowManagerService.logSurface;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700120import static com.android.server.wm.WindowState.RESIZE_HANDLE_WIDTH_IN_DP;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700121import static com.android.server.wm.WindowStateAnimator.DRAW_PENDING;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700122import static com.android.server.wm.WindowStateAnimator.READY_TO_SHOW;
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -0700123
lumark588a3e82018-07-20 18:53:54 +0800124import android.animation.AnimationHandler;
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700125import android.annotation.CallSuper;
Riddle Hsuf53da812018-08-15 22:00:27 +0800126import android.annotation.IntDef;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700127import android.annotation.NonNull;
Jorim Jaggif96c90a2018-09-26 16:55:15 +0200128import android.annotation.Nullable;
Dean Harding3e5a1522017-10-06 09:19:01 -0700129import android.content.pm.PackageManager;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700130import android.content.res.CompatibilityInfo;
Andrii Kulian441e4492016-09-29 15:25:00 -0700131import android.content.res.Configuration;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700132import android.graphics.Bitmap;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700133import android.graphics.Matrix;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800134import android.graphics.Rect;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700135import android.graphics.RectF;
Craig Mautner6601b7b2013-04-29 10:29:11 -0700136import android.graphics.Region;
Jorim Jaggid47e7e12016-03-01 09:57:38 +0100137import android.graphics.Region.Op;
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700138import android.hardware.display.DisplayManagerInternal;
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700139import android.os.Debug;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700140import android.os.Handler;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700141import android.os.IBinder;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700142import android.os.RemoteException;
143import android.os.SystemClock;
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100144import android.os.Trace;
Riddle Hsuf53da812018-08-15 22:00:27 +0800145import android.os.UserHandle;
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800146import android.util.ArraySet;
Chong Zhang8e89b312015-09-09 15:09:30 -0700147import android.util.DisplayMetrics;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700148import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700149import android.util.proto.ProtoOutputStream;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700150import android.view.Display;
Adrian Roos1cf585052018-01-03 18:43:27 +0100151import android.view.DisplayCutout;
Craig Mautner59c00972012-07-30 12:10:24 -0700152import android.view.DisplayInfo;
Riddle Hsua4d6fa22018-08-11 00:50:39 +0800153import android.view.Gravity;
Arthur Hungbe5ce212018-09-13 18:41:56 +0800154import android.view.InputChannel;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700155import android.view.InputDevice;
Jorim Jaggif96c90a2018-09-26 16:55:15 +0200156import android.view.InsetsState.InternalInsetType;
Robert Carrb1579c82017-09-05 14:54:47 -0700157import android.view.MagnificationSpec;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700158import android.view.Surface;
159import android.view.SurfaceControl;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100160import android.view.SurfaceControl.Transaction;
Robert Carrb1579c82017-09-05 14:54:47 -0700161import android.view.SurfaceSession;
Tiger Huang7c610aa2018-10-27 00:01:01 +0800162import android.view.View;
lumark588a3e82018-07-20 18:53:54 +0800163import android.view.WindowManager;
Evan Rosky39b6f232018-10-30 18:35:41 -0700164import android.view.WindowManagerPolicyConstants.PointerEventListener;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700165
Bryce Lee48f4b572017-04-10 10:54:15 -0700166import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -0800167import com.android.internal.util.ToBooleanFunction;
Jorim Jaggif96c90a2018-09-26 16:55:15 +0200168import com.android.internal.util.function.TriConsumer;
Adrian Roose99bc052017-11-20 17:55:31 +0100169import com.android.server.policy.WindowManagerPolicy;
Issei Suzuki43190bd2018-08-20 17:28:41 +0200170import com.android.server.wm.utils.DisplayRotationUtil;
Adrian Roos2aa0fcd2018-02-19 18:07:49 +0100171import com.android.server.wm.utils.RotationCache;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100172import com.android.server.wm.utils.WmDisplayCutout;
Craig Mautner59c00972012-07-30 12:10:24 -0700173
174import java.io.PrintWriter;
Riddle Hsuf53da812018-08-15 22:00:27 +0800175import java.lang.annotation.Retention;
176import java.lang.annotation.RetentionPolicy;
Craig Mautner59c00972012-07-30 12:10:24 -0700177import java.util.ArrayList;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700178import java.util.Comparator;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700179import java.util.HashMap;
180import java.util.Iterator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700181import java.util.LinkedList;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700182import java.util.List;
Adrian Roos1cf585052018-01-03 18:43:27 +0100183import java.util.Objects;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800184import java.util.function.Consumer;
185import java.util.function.Predicate;
Craig Mautner59c00972012-07-30 12:10:24 -0700186
Craig Mautner59c00972012-07-30 12:10:24 -0700187/**
188 * Utility class for keeping track of the WindowStates and other pertinent contents of a
189 * particular Display.
Craig Mautner59c00972012-07-30 12:10:24 -0700190 */
Riddle Hsuad256a12018-07-18 16:11:30 +0800191class DisplayContent extends WindowContainer<DisplayContent.DisplayChildWindowContainer>
192 implements WindowManagerPolicy.DisplayContentInfo {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700193 private static final String TAG = TAG_WITH_CLASS_NAME ? "DisplayContent" : TAG_WM;
Craig Mautner59c00972012-07-30 12:10:24 -0700194
Riddle Hsuf53da812018-08-15 22:00:27 +0800195 /** The default scaling mode that scales content automatically. */
196 static final int FORCE_SCALING_MODE_AUTO = 0;
197 /** For {@link #setForcedScalingMode} to apply flag {@link Display#FLAG_SCALING_DISABLED}. */
198 static final int FORCE_SCALING_MODE_DISABLED = 1;
199
200 @IntDef(prefix = { "FORCE_SCALING_MODE_" }, value = {
201 FORCE_SCALING_MODE_AUTO,
202 FORCE_SCALING_MODE_DISABLED
203 })
204 @Retention(RetentionPolicy.SOURCE)
205 @interface ForceScalingMode {}
206
Craig Mautner59c00972012-07-30 12:10:24 -0700207 /** Unique identifier of this stack. */
208 private final int mDisplayId;
209
Wale Ogunwale3a931692016-11-02 16:49:48 -0700210 /** The containers below are the only child containers the display can have. */
211 // Contains all window containers that are related to apps (Activities)
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100212 private final TaskStackContainers mTaskStackContainers = new TaskStackContainers(mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700213 // Contains all non-app window containers that should be displayed above the app containers
214 // (e.g. Status bar)
Robert Carree4d4b92017-11-22 12:21:46 -0800215 private final AboveAppWindowContainers mAboveAppWindowsContainers =
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100216 new AboveAppWindowContainers("mAboveAppWindowsContainers", mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700217 // Contains all non-app window containers that should be displayed below the app containers
218 // (e.g. Wallpaper).
219 private final NonAppWindowContainers mBelowAppWindowsContainers =
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100220 new NonAppWindowContainers("mBelowAppWindowsContainers", mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700221 // Contains all IME window containers. Note that the z-ordering of the IME windows will depend
222 // 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 -0800223 // window containers together and move them in-sync if/when needed. We use a subclass of
224 // WindowContainer which is omitted from screen magnification, as the IME is never magnified.
225 private final NonMagnifiableWindowContainers mImeWindowsContainers =
226 new NonMagnifiableWindowContainers("mImeWindowsContainers", mService);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700227
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000228 private WindowState mTmpWindow;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800229 private WindowState mTmpWindow2;
230 private WindowAnimator mTmpWindowAnimator;
231 private boolean mTmpRecoveringMemory;
232 private boolean mUpdateImeTarget;
233 private boolean mTmpInitial;
Bryce Lee27cec322017-03-21 09:41:37 -0700234 private int mMaxUiWidth;
Craig Mautner59c00972012-07-30 12:10:24 -0700235
lumark588a3e82018-07-20 18:53:54 +0800236 final AppTransition mAppTransition;
237 final AppTransitionController mAppTransitionController;
238 boolean mSkipAppTransitionAnimation = false;
239
240 final ArraySet<AppWindowToken> mOpeningApps = new ArraySet<>();
241 final ArraySet<AppWindowToken> mClosingApps = new ArraySet<>();
242 final UnknownAppVisibilityController mUnknownAppVisibilityController;
243 BoundsAnimationController mBoundsAnimationController;
244
245 /**
246 * List of clients without a transtiton animation that we notify once we are done
247 * transitioning since they won't be notified through the app window animator.
248 */
249 final List<IBinder> mNoAnimationNotifyOnTransitionFinished = new ArrayList<>();
250
Wale Ogunwale02319a62016-09-26 15:21:22 -0700251 // Mapping from a token IBinder to a WindowToken object on this display.
252 private final HashMap<IBinder, WindowToken> mTokenMap = new HashMap();
253
Andrii Kuliancd097992017-03-23 18:31:59 -0700254 // Initial display metrics.
Craig Mautner59c00972012-07-30 12:10:24 -0700255 int mInitialDisplayWidth = 0;
256 int mInitialDisplayHeight = 0;
Dianne Hackborndde331c2012-08-03 14:01:57 -0700257 int mInitialDisplayDensity = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700258
Adrian Roos1cf585052018-01-03 18:43:27 +0100259 DisplayCutout mInitialDisplayCutout;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100260 private final RotationCache<DisplayCutout, WmDisplayCutout> mDisplayCutoutCache
Adrian Roos2aa0fcd2018-02-19 18:07:49 +0100261 = new RotationCache<>(this::calculateDisplayCutoutForRotationUncached);
Adrian Roos1cf585052018-01-03 18:43:27 +0100262
Andrii Kuliancd097992017-03-23 18:31:59 -0700263 /**
264 * Overridden display size. Initialized with {@link #mInitialDisplayWidth}
265 * and {@link #mInitialDisplayHeight}, but can be set via shell command "adb shell wm size".
266 * @see WindowManagerService#setForcedDisplaySize(int, int, int)
267 */
Craig Mautner59c00972012-07-30 12:10:24 -0700268 int mBaseDisplayWidth = 0;
269 int mBaseDisplayHeight = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700270 /**
271 * Overridden display density for current user. Initialized with {@link #mInitialDisplayDensity}
272 * but can be set from Settings or via shell command "adb shell wm density".
273 * @see WindowManagerService#setForcedDisplayDensityForUser(int, int, int)
274 */
Dianne Hackborndde331c2012-08-03 14:01:57 -0700275 int mBaseDisplayDensity = 0;
Riddle Hsuf53da812018-08-15 22:00:27 +0800276
277 /**
278 * Whether to disable display scaling. This can be set via shell command "adb shell wm scaling".
279 * @see WindowManagerService#setForcedDisplayScalingMode(int, int)
280 */
Jeff Brownd46747a2015-04-15 19:02:36 -0700281 boolean mDisplayScalingDisabled;
Craig Mautner2d5618c2012-10-18 13:55:47 -0700282 private final DisplayInfo mDisplayInfo = new DisplayInfo();
283 private final Display mDisplay;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700284 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800285 private final DisplayPolicy mDisplayPolicy;
286 private DisplayRotation mDisplayRotation;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000287 DisplayFrames mDisplayFrames;
288
Andrii Kulian06d07d62017-03-14 11:11:47 -0700289 /**
290 * For default display it contains real metrics, empty for others.
291 * @see WindowManagerService#createWatermarkInTransaction()
292 */
293 final DisplayMetrics mRealDisplayMetrics = new DisplayMetrics();
Tiger Huang7c610aa2018-10-27 00:01:01 +0800294
295 /** @see #computeCompatSmallestWidth(boolean, int, int, int, DisplayCutout) */
Andrii Kulian06d07d62017-03-14 11:11:47 -0700296 private final DisplayMetrics mTmpDisplayMetrics = new DisplayMetrics();
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700297
Andrii Kulian06d07d62017-03-14 11:11:47 -0700298 /**
299 * Compat metrics computed based on {@link #mDisplayMetrics}.
300 * @see #updateDisplayAndOrientation(int)
301 */
302 private final DisplayMetrics mCompatDisplayMetrics = new DisplayMetrics();
303
304 /** The desired scaling factor for compatible apps. */
305 float mCompatibleScreenScale;
Craig Mautner59c00972012-07-30 12:10:24 -0700306
Andrii Kulian8ee72852017-03-10 10:36:45 -0800307 /**
308 * Current rotation of the display.
309 * Constants as per {@link android.view.Surface.Rotation}.
310 *
Robert Carrae606b42018-02-15 15:36:23 -0800311 * @see #updateRotationUnchecked()
Andrii Kulian8ee72852017-03-10 10:36:45 -0800312 */
313 private int mRotation = 0;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700314
Andrii Kulian8ee72852017-03-10 10:36:45 -0800315 /**
316 * Last applied orientation of the display.
317 * Constants as per {@link android.content.pm.ActivityInfo.ScreenOrientation}.
318 *
Riddle Hsu4e611772018-10-31 18:58:28 +0800319 * @see #updateOrientationFromAppTokens()
Andrii Kulian8ee72852017-03-10 10:36:45 -0800320 */
321 private int mLastOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700322
Andrii Kulian8ee72852017-03-10 10:36:45 -0800323 /**
324 * Flag indicating that the application is receiving an orientation that has different metrics
325 * than it expected. E.g. Portrait instead of Landscape.
326 *
Robert Carrae606b42018-02-15 15:36:23 -0800327 * @see #updateRotationUnchecked()
Andrii Kulian8ee72852017-03-10 10:36:45 -0800328 */
329 private boolean mAltOrientation = false;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700330
Andrii Kulian8ee72852017-03-10 10:36:45 -0800331 /**
332 * Orientation forced by some window. If there is no visible window that specifies orientation
333 * it is set to {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
334 *
335 * @see NonAppWindowContainers#getOrientation()
336 */
337 private int mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700338
Andrii Kulian8ee72852017-03-10 10:36:45 -0800339 /**
340 * Last orientation forced by the keyguard. It is applied when keyguard is shown and is not
341 * occluded.
342 *
343 * @see NonAppWindowContainers#getOrientation()
344 */
345 private int mLastKeyguardForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
346
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700347 /**
348 * Keep track of wallpaper visibility to notify changes.
349 */
350 private boolean mLastWallpaperVisible = false;
351
Andrii Kulian06d07d62017-03-14 11:11:47 -0700352 private Rect mBaseDisplayRect = new Rect();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700353
Craig Mautner39834192012-09-02 07:47:24 -0700354 // Accessed directly by all users.
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700355 private boolean mLayoutNeeded;
Craig Mautner76a71652012-09-03 23:23:58 -0700356 int pendingLayoutChanges;
Riddle Hsu654a6f92018-07-13 22:59:36 +0800357 int mDeferredRotationPauseCount;
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800358
Vishnu Nairba183352018-11-21 11:16:49 -0800359 /**
360 * Used to gate application window layout until we have sent the complete configuration.
361 * TODO: There are still scenarios where we may be out of sync with the client. Ideally
362 * we want to replace this flag with a mechanism that will confirm the configuration
363 * applied by the client is the one expected by the system server.
364 */
365 boolean mWaitingForConfig;
366
Andrii Kulian839def92016-11-02 10:58:58 -0700367 // TODO(multi-display): remove some of the usages.
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800368 @VisibleForTesting
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800369 boolean isDefaultDisplay;
Riddle Hsu5ce4bb32018-07-18 16:11:30 +0800370
Andrii Kulianf0379de2018-03-14 16:24:07 -0700371 /**
372 * Flag indicating whether WindowManager should override info for this display in
373 * DisplayManager.
374 */
375 boolean mShouldOverrideDisplayConfiguration = true;
Craig Mautner39834192012-09-02 07:47:24 -0700376
Craig Mautnerdc548482014-02-05 13:35:24 -0800377 /** Window tokens that are in the process of exiting, but still on screen for animations. */
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700378 final ArrayList<WindowToken> mExitingTokens = new ArrayList<>();
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800379
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700380 /** Detect user tapping outside of current focused task bounds .*/
381 TaskTapPointerEventListener mTapDetector;
Craig Mautnercf910b02013-04-23 11:23:27 -0700382
Craig Mautner6601b7b2013-04-29 10:29:11 -0700383 /** Detect user tapping outside of current focused stack bounds .*/
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700384 private Region mTouchExcludeRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700385
Craig Mautner6601b7b2013-04-29 10:29:11 -0700386 /** Save allocating when calculating rects */
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800387 private final Rect mTmpRect = new Rect();
388 private final Rect mTmpRect2 = new Rect();
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700389 private final RectF mTmpRectF = new RectF();
390 private final Matrix mTmpMatrix = new Matrix();
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800391 private final Region mTmpRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700392
Issei Suzuki43190bd2018-08-20 17:28:41 +0200393
Bryce Leef3c6a472017-11-14 14:53:06 -0800394 /** Used for handing back size of display */
395 private final Rect mTmpBounds = new Rect();
396
Craig Mautner95da1082014-02-24 17:54:35 -0800397 /** Remove this display when animation on it has completed. */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700398 private boolean mDeferredRemoval;
Craig Mautner1bf2b872014-02-05 15:37:40 -0800399
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700400 final DockedStackDividerController mDividerControllerLocked;
Winson Chung655332c2016-10-31 13:14:28 -0700401 final PinnedStackController mPinnedStackControllerLocked;
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700402
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800403 final ArrayList<WindowState> mTapExcludedWindows = new ArrayList<>();
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800404 /** A collection of windows that provide tap exclude regions inside of them. */
405 final ArraySet<WindowState> mTapExcludeProvidingWindows = new ArraySet<>();
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800406
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000407 private boolean mHaveBootMsg = false;
408 private boolean mHaveApp = false;
409 private boolean mHaveWallpaper = false;
410 private boolean mHaveKeyguard = true;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700411
412 private final LinkedList<AppWindowToken> mTmpUpdateAllDrawn = new LinkedList();
413
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700414 private final TaskForResizePointSearchResult mTmpTaskForResizePointSearchResult =
415 new TaskForResizePointSearchResult();
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000416 private final ApplySurfaceChangesTransactionState mTmpApplySurfaceChangesTransactionState =
417 new ApplySurfaceChangesTransactionState();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700418
Wale Ogunwale601a3f02016-10-17 08:39:39 -0700419 // True if this display is in the process of being removed. Used to determine if the removal of
420 // the display's direct children should be allowed.
421 private boolean mRemovingDisplay = false;
422
Bryce Leed1871262017-06-12 14:12:29 -0700423 // {@code false} if this display is in the processing of being created.
424 private boolean mDisplayReady = false;
425
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800426 WallpaperController mWallpaperController;
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700427
wilsonshihc32538e2018-11-07 17:27:34 +0800428 boolean mWallpaperMayChange = false;
429
Robert Carrb1579c82017-09-05 14:54:47 -0700430 private final SurfaceSession mSession = new SurfaceSession();
431
432 /**
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800433 * Window that is currently interacting with the user. This window is responsible for receiving
434 * key events and pointer events from the user.
435 */
436 WindowState mCurrentFocus = null;
437
438 /**
439 * The last focused window that we've notified the client that the focus is changed.
440 */
441 WindowState mLastFocus = null;
442
443 /**
444 * Windows that have lost input focus and are waiting for the new focus window to be displayed
445 * before they are told about this.
446 */
447 ArrayList<WindowState> mLosingFocus = new ArrayList<>();
448
449 /**
450 * The foreground app of this display. Windows below this app cannot be the focused window. If
451 * the user taps on the area outside of the task of the focused app, we will notify AM about the
452 * new task the user wants to interact with.
453 */
454 AppWindowToken mFocusedApp = null;
455
456 /** Windows added since {@link #mCurrentFocus} was set to null. Used for ANR blaming. */
457 final ArrayList<WindowState> mWinAddedSinceNullFocus = new ArrayList<>();
458
459 /** Windows removed since {@link #mCurrentFocus} was set to null. Used for ANR blaming. */
460 final ArrayList<WindowState> mWinRemovedSinceNullFocus = new ArrayList<>();
461
462 /**
Robert Carrb1579c82017-09-05 14:54:47 -0700463 * We organize all top-level Surfaces in to the following layers.
464 * mOverlayLayer contains a few Surfaces which are always on top of others
Robert Carree4d4b92017-11-22 12:21:46 -0800465 * and omitted from Screen-Magnification, for example the strict mode flash or
466 * the magnification overlay itself.
Robert Carrb1579c82017-09-05 14:54:47 -0700467 * {@link #mWindowingLayer} contains everything else.
468 */
469 private SurfaceControl mOverlayLayer;
470
471 /**
472 * See {@link #mOverlayLayer}
473 */
474 private SurfaceControl mWindowingLayer;
475
476 /**
477 * Specifies the size of the surfaces in {@link #mOverlayLayer} and {@link #mWindowingLayer}.
478 * <p>
479 * For these surfaces currently we use a surface based on the larger of width or height so we
480 * don't have to resize when rotating the display.
481 */
482 private int mSurfaceSize;
483
Adrian Roos5251b1d2018-03-23 18:57:43 +0100484 /**
485 * Sequence number for the current layout pass.
486 */
487 int mLayoutSeq = 0;
488
Chavi Weingarten3a748552018-05-14 17:32:42 +0000489 /**
490 * Specifies the count to determine whether to defer updating the IME target until ready.
491 */
492 private int mDeferUpdateImeTargetCount;
493
Jorim Jaggi9af095b2017-12-12 17:18:57 +0100494 /** Temporary float array to retrieve 3x3 matrix values. */
495 private final float[] mTmpFloats = new float[9];
496
Robert Carr24be9ab2018-04-30 17:54:53 -0700497 private MagnificationSpec mMagnificationSpec;
498
Arthur Hung95b38a92018-07-20 18:56:12 +0800499 private InputMonitor mInputMonitor;
500
Jorim Jaggif1292892018-09-10 11:58:13 +0200501 /** Caches the value whether told display manager that we have content. */
502 private boolean mLastHasContent;
503
Issei Suzuki43190bd2018-08-20 17:28:41 +0200504 private DisplayRotationUtil mRotationUtil = new DisplayRotationUtil();
505
lumark90120a82018-08-15 00:33:03 +0800506 /**
507 * The input method window for this display.
508 */
509 WindowState mInputMethodWindow;
510
lumarkff0ab692018-11-05 20:32:30 +0800511 /**
512 * This just indicates the window the input method is on top of, not
513 * necessarily the window its input is going to.
514 */
515 WindowState mInputMethodTarget;
516
517 /** If true hold off on modifying the animation layer of mInputMethodTarget */
518 boolean mInputMethodTargetWaitingAnim;
519
Arthur Hungbe5ce212018-09-13 18:41:56 +0800520 private final PointerEventDispatcher mPointerEventDispatcher;
521
Jorim Jaggif96c90a2018-09-26 16:55:15 +0200522 private final InsetsStateController mInsetsStateController;
523
Tiger Huang7c610aa2018-10-27 00:01:01 +0800524 // Last systemUiVisibility we received from status bar.
525 private int mLastStatusBarVisibility = 0;
526 // Last systemUiVisibility we dispatched to windows.
527 private int mLastDispatchedSystemUiVisibility = 0;
528
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800529 private final Consumer<WindowState> mUpdateWindowsForAnimator = w -> {
530 WindowStateAnimator winAnimator = w.mWinAnimator;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800531 final AppWindowToken atoken = w.mAppToken;
532 if (winAnimator.mDrawState == READY_TO_SHOW) {
Jorim Jaggiaf0d6d22018-06-08 15:25:35 +0200533 if (atoken == null || atoken.canShowWindows()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800534 if (w.performShowLocked()) {
535 pendingLayoutChanges |= FINISH_LAYOUT_REDO_ANIM;
536 if (DEBUG_LAYOUT_REPEATS) {
537 mService.mWindowPlacerLocked.debugLayoutRepeats(
538 "updateWindowsAndWallpaperLocked 5", pendingLayoutChanges);
539 }
540 }
541 }
542 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800543 };
544
545 private final Consumer<WindowState> mUpdateWallpaperForAnimator = w -> {
546 final WindowStateAnimator winAnimator = w.mWinAnimator;
547 if (winAnimator.mSurfaceController == null || !winAnimator.hasSurface()) {
548 return;
549 }
550
Jorim Jaggi8f520872018-08-14 17:00:20 +0200551 // If this window is animating, ensure the animation background is set.
552 final AnimationAdapter anim = w.mAppToken != null
553 ? w.mAppToken.getAnimation()
554 : w.getAnimation();
555 if (anim != null) {
556 final int color = anim.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800557 if (color != 0) {
558 final TaskStack stack = w.getStack();
559 if (stack != null) {
560 stack.setAnimationBackground(winAnimator, color);
561 }
562 }
563 }
564 };
565
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800566 private final Consumer<WindowState> mScheduleToastTimeout = w -> {
567 final int lostFocusUid = mTmpWindow.mOwnerUid;
568 final Handler handler = mService.mH;
569 if (w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == lostFocusUid) {
570 if (!handler.hasMessages(WINDOW_HIDE_TIMEOUT, w)) {
571 handler.sendMessageDelayed(handler.obtainMessage(WINDOW_HIDE_TIMEOUT, w),
572 w.mAttrs.hideTimeoutMilliseconds);
573 }
574 }
575 };
576
577 private final ToBooleanFunction<WindowState> mFindFocusedWindow = w -> {
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800578 final AppWindowToken focusedApp = mFocusedApp;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800579 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Looking for focus: " + w
580 + ", flags=" + w.mAttrs.flags + ", canReceive=" + w.canReceiveKeys());
581
582 if (!w.canReceiveKeys()) {
583 return false;
584 }
585
586 final AppWindowToken wtoken = w.mAppToken;
587
588 // If this window's application has been removed, just skip it.
589 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
590 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
591 + (wtoken.removed ? "removed" : "sendingToBottom"));
592 return false;
593 }
594
595 if (focusedApp == null) {
596 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp=null"
597 + " using new focus @ " + w);
598 mTmpWindow = w;
599 return true;
600 }
601
602 if (!focusedApp.windowsAreFocusable()) {
603 // Current focused app windows aren't focusable...
604 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp windows not"
605 + " focusable using new focus @ " + w);
606 mTmpWindow = w;
607 return true;
608 }
609
610 // Descend through all of the app tokens and find the first that either matches
611 // win.mAppToken (return win) or mFocusedApp (return null).
612 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
613 if (focusedApp.compareTo(wtoken) > 0) {
614 // App stack below focused app stack. No focus for you!!!
615 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM,
616 "findFocusedWindow: Reached focused app=" + focusedApp);
617 mTmpWindow = null;
618 return true;
619 }
620 }
621
622 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: Found new focus @ " + w);
623 mTmpWindow = w;
624 return true;
625 };
626
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800627 private final Consumer<WindowState> mPerformLayout = w -> {
628 // Don't do layout of a window if it is not visible, or soon won't be visible, to avoid
629 // wasting time and funky changes while a window is animating away.
630 final boolean gone = (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w))
631 || w.isGoneForLayoutLw();
632
633 if (DEBUG_LAYOUT && !w.mLayoutAttached) {
634 Slog.v(TAG, "1ST PASS " + w + ": gone=" + gone + " mHaveFrame=" + w.mHaveFrame
635 + " mLayoutAttached=" + w.mLayoutAttached
636 + " screen changed=" + w.isConfigChanged());
637 final AppWindowToken atoken = w.mAppToken;
638 if (gone) Slog.v(TAG, " GONE: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200639 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800640 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
641 + " parentHidden=" + w.isParentWindowHidden());
642 else Slog.v(TAG, " VIS: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200643 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800644 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
645 + " parentHidden=" + w.isParentWindowHidden());
646 }
647
648 // If this view is GONE, then skip it -- keep the current frame, and let the caller know
649 // so they can ignore it if they want. (We do the normal layout for INVISIBLE windows,
650 // since that means "perform layout as normal, just don't display").
651 if (!gone || !w.mHaveFrame || w.mLayoutNeeded
652 || ((w.isConfigChanged() || w.setReportResizeHints())
653 && !w.isGoneForLayoutLw() &&
654 ((w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
655 (w.mHasSurface && w.mAppToken != null &&
656 w.mAppToken.layoutConfigChanges)))) {
657 if (!w.mLayoutAttached) {
658 if (mTmpInitial) {
659 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
chaviw1454b392018-08-06 09:54:04 -0700660 w.resetContentChanged();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800661 }
662 if (w.mAttrs.type == TYPE_DREAM) {
663 // Don't layout windows behind a dream, so that if it does stuff like hide
664 // the status bar we won't get a bad transition when it goes away.
665 mTmpWindow = w;
666 }
667 w.mLayoutNeeded = false;
668 w.prelayout();
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200669 final boolean firstLayout = !w.isLaidOut();
Tiger Huang7c610aa2018-10-27 00:01:01 +0800670 getDisplayPolicy().layoutWindowLw(w, null, mDisplayFrames);
Adrian Roos5251b1d2018-03-23 18:57:43 +0100671 w.mLayoutSeq = mLayoutSeq;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800672
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200673 // If this is the first layout, we need to initialize the last inset values as
674 // otherwise we'd immediately cause an unnecessary resize.
675 if (firstLayout) {
676 w.updateLastInsetValues();
677 }
678
Adrian Roos23df3a32018-03-15 15:41:13 +0100679 if (w.mAppToken != null) {
680 w.mAppToken.layoutLetterbox(w);
681 }
682
chaviw492139a2018-07-16 16:07:35 -0700683 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.getFrameLw()
chaviw553b0212018-07-12 13:37:01 -0700684 + " mContainingFrame=" + w.getContainingFrame()
685 + " mDisplayFrame=" + w.getDisplayFrameLw());
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800686 }
687 }
688 };
689
690 private final Consumer<WindowState> mPerformLayoutAttached = w -> {
691 if (w.mLayoutAttached) {
692 if (DEBUG_LAYOUT) Slog.v(TAG, "2ND PASS " + w + " mHaveFrame=" + w.mHaveFrame
693 + " mViewVisibility=" + w.mViewVisibility
694 + " mRelayoutCalled=" + w.mRelayoutCalled);
695 // If this view is GONE, then skip it -- keep the current frame, and let the caller
696 // know so they can ignore it if they want. (We do the normal layout for INVISIBLE
697 // windows, since that means "perform layout as normal, just don't display").
698 if (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w)) {
699 return;
700 }
701 if ((w.mViewVisibility != GONE && w.mRelayoutCalled) || !w.mHaveFrame
702 || w.mLayoutNeeded) {
703 if (mTmpInitial) {
704 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
chaviw1454b392018-08-06 09:54:04 -0700705 w.resetContentChanged();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800706 }
707 w.mLayoutNeeded = false;
708 w.prelayout();
Tiger Huang7c610aa2018-10-27 00:01:01 +0800709 getDisplayPolicy().layoutWindowLw(w, w.getParentWindow(), mDisplayFrames);
Adrian Roos5251b1d2018-03-23 18:57:43 +0100710 w.mLayoutSeq = mLayoutSeq;
chaviw492139a2018-07-16 16:07:35 -0700711 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.getFrameLw()
chaviw553b0212018-07-12 13:37:01 -0700712 + " mContainingFrame=" + w.getContainingFrame()
713 + " mDisplayFrame=" + w.getDisplayFrameLw());
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800714 }
715 } else if (w.mAttrs.type == TYPE_DREAM) {
716 // Don't layout windows behind a dream, so that if it does stuff like hide the
717 // status bar we won't get a bad transition when it goes away.
718 mTmpWindow = mTmpWindow2;
719 }
720 };
721
722 private final Predicate<WindowState> mComputeImeTargetPredicate = w -> {
723 if (DEBUG_INPUT_METHOD && mUpdateImeTarget) Slog.i(TAG_WM, "Checking window @" + w
724 + " fl=0x" + Integer.toHexString(w.mAttrs.flags));
725 return w.canBeImeTarget();
726 };
727
728 private final Consumer<WindowState> mApplyPostLayoutPolicy =
Tiger Huang7c610aa2018-10-27 00:01:01 +0800729 w -> getDisplayPolicy().applyPostLayoutPolicyLw(w, w.mAttrs, w.getParentWindow(),
lumarkff0ab692018-11-05 20:32:30 +0800730 mInputMethodTarget);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800731
732 private final Consumer<WindowState> mApplySurfaceChangesTransaction = w -> {
733 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
734 final boolean obscuredChanged = w.mObscured !=
735 mTmpApplySurfaceChangesTransactionState.obscured;
736 final RootWindowContainer root = mService.mRoot;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800737
738 // Update effect.
739 w.mObscured = mTmpApplySurfaceChangesTransactionState.obscured;
740 if (!mTmpApplySurfaceChangesTransactionState.obscured) {
741 final boolean isDisplayed = w.isDisplayedLw();
742
743 if (isDisplayed && w.isObscuringDisplay()) {
744 // This window completely covers everything behind it, so we want to leave all
745 // of them as undimmed (for performance reasons).
746 root.mObscuringWindow = w;
747 mTmpApplySurfaceChangesTransactionState.obscured = true;
748 }
749
750 mTmpApplySurfaceChangesTransactionState.displayHasContent |=
751 root.handleNotObscuredLocked(w,
752 mTmpApplySurfaceChangesTransactionState.obscured,
753 mTmpApplySurfaceChangesTransactionState.syswin);
754
755 if (w.mHasSurface && isDisplayed) {
756 final int type = w.mAttrs.type;
757 if (type == TYPE_SYSTEM_DIALOG || type == TYPE_SYSTEM_ERROR
758 || (w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
759 mTmpApplySurfaceChangesTransactionState.syswin = true;
760 }
761 if (mTmpApplySurfaceChangesTransactionState.preferredRefreshRate == 0
762 && w.mAttrs.preferredRefreshRate != 0) {
763 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate
764 = w.mAttrs.preferredRefreshRate;
765 }
766 if (mTmpApplySurfaceChangesTransactionState.preferredModeId == 0
767 && w.mAttrs.preferredDisplayModeId != 0) {
768 mTmpApplySurfaceChangesTransactionState.preferredModeId
769 = w.mAttrs.preferredDisplayModeId;
770 }
771 }
772 }
773
wilsonshihc32538e2018-11-07 17:27:34 +0800774 if (obscuredChanged && w.isVisibleLw() && mWallpaperController.isWallpaperTarget(w)) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800775 // This is the wallpaper target and its obscured state changed... make sure the
776 // current wallpaper's visibility has been updated accordingly.
777 mWallpaperController.updateWallpaperVisibility();
778 }
779
chaviw161ea3e2018-01-31 12:01:12 -0800780 w.handleWindowMovedIfNeeded();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800781
782 final WindowStateAnimator winAnimator = w.mWinAnimator;
783
784 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - done placing");
chaviw1454b392018-08-06 09:54:04 -0700785 w.resetContentChanged();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800786
787 // Moved from updateWindowsAndWallpaperLocked().
788 if (w.mHasSurface) {
789 // Take care of the window being ready to display.
790 final boolean committed = winAnimator.commitFinishDrawingLocked();
791 if (isDefaultDisplay && committed) {
792 if (w.mAttrs.type == TYPE_DREAM) {
793 // HACK: When a dream is shown, it may at that point hide the lock screen.
794 // So we need to redo the layout to let the phone window manager make this
795 // happen.
796 pendingLayoutChanges |= FINISH_LAYOUT_REDO_LAYOUT;
797 if (DEBUG_LAYOUT_REPEATS) {
798 surfacePlacer.debugLayoutRepeats(
799 "dream and commitFinishDrawingLocked true",
800 pendingLayoutChanges);
801 }
802 }
803 if ((w.mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
804 if (DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
805 "First draw done in potential wallpaper target " + w);
wilsonshihc32538e2018-11-07 17:27:34 +0800806 mWallpaperMayChange = true;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800807 pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
808 if (DEBUG_LAYOUT_REPEATS) {
809 surfacePlacer.debugLayoutRepeats(
810 "wallpaper and commitFinishDrawingLocked true",
811 pendingLayoutChanges);
812 }
813 }
814 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800815 }
816
817 final AppWindowToken atoken = w.mAppToken;
818 if (atoken != null) {
Adrian Roos23df3a32018-03-15 15:41:13 +0100819 atoken.updateLetterboxSurface(w);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800820 final boolean updateAllDrawn = atoken.updateDrawnWindowStates(w);
821 if (updateAllDrawn && !mTmpUpdateAllDrawn.contains(atoken)) {
822 mTmpUpdateAllDrawn.add(atoken);
823 }
824 }
825
Tiger Huang1e5b10a2018-07-30 20:19:51 +0800826 if (!mLosingFocus.isEmpty() && w.isFocused() && w.isDisplayedLw()) {
827 mService.mH.obtainMessage(REPORT_LOSING_FOCUS, this).sendToTarget();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800828 }
829
830 w.updateResizingWindowIfNeeded();
831 };
832
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800833 /**
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800834 * Create new {@link DisplayContent} instance, add itself to the root window container and
835 * initialize direct children.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700836 * @param display May not be null.
Craig Mautnerdf88d732014-01-27 09:21:32 -0800837 * @param service You know.
wilsonshihc32538e2018-11-07 17:27:34 +0800838 * @param controller The controller for the display container.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700839 */
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700840 DisplayContent(Display display, WindowManagerService service,
wilsonshihc32538e2018-11-07 17:27:34 +0800841 DisplayWindowController controller) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100842 super(service);
Bryce Leef19cbe22018-02-02 15:09:21 -0800843 setController(controller);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800844 if (service.mRoot.getDisplayContent(display.getDisplayId()) != null) {
845 throw new IllegalArgumentException("Display with ID=" + display.getDisplayId()
846 + " already exists=" + service.mRoot.getDisplayContent(display.getDisplayId())
847 + " new=" + display);
848 }
849
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700850 mDisplay = display;
851 mDisplayId = display.getDisplayId();
wilsonshihc32538e2018-11-07 17:27:34 +0800852 mWallpaperController = new WallpaperController(mService, this);
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700853 display.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700854 display.getMetrics(mDisplayMetrics);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700855 isDefaultDisplay = mDisplayId == DEFAULT_DISPLAY;
Adrian Roos6a4fa0e2018-03-05 19:50:16 +0100856 mDisplayFrames = new DisplayFrames(mDisplayId, mDisplayInfo,
857 calculateDisplayCutoutForRotation(mDisplayInfo.rotation));
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -0700858 initializeDisplayBaseInfo();
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700859
lumark588a3e82018-07-20 18:53:54 +0800860 mAppTransition = new AppTransition(service.mContext, service, this);
861 mAppTransition.registerListenerLocked(service.mActivityManagerAppTransitionNotifier);
862 mAppTransitionController = new AppTransitionController(service, this);
863 mUnknownAppVisibilityController = new UnknownAppVisibilityController(service, this);
864
865 AnimationHandler animationHandler = new AnimationHandler();
866 mBoundsAnimationController = new BoundsAnimationController(service.mContext,
867 mAppTransition, SurfaceAnimationThread.getHandler(), animationHandler);
868
Tiger Huang7c610aa2018-10-27 00:01:01 +0800869 if (mService.mInputManager != null) {
870 final InputChannel inputChannel = mService.mInputManager.monitorInput("Display "
871 + mDisplayId, mDisplayId);
872 mPointerEventDispatcher = inputChannel != null
873 ? new PointerEventDispatcher(inputChannel) : null;
874 } else {
875 mPointerEventDispatcher = null;
876 }
877 mDisplayPolicy = new DisplayPolicy(service, this);
878 mDisplayRotation = new DisplayRotation(service, this);
879 if (isDefaultDisplay) {
880 // The policy may be invoked right after here, so it requires the necessary default
881 // fields of this display content.
882 mService.mPolicy.setDefaultDisplay(this);
883 }
884 if (mService.mDisplayReady) {
885 mDisplayPolicy.onConfigurationChanged();
886 }
887 if (mService.mSystemReady) {
888 mDisplayPolicy.systemReady();
889 }
890 mDividerControllerLocked = new DockedStackDividerController(service, this);
891 mPinnedStackControllerLocked = new PinnedStackController(service, this);
892
Robert Carr74a66a22018-02-23 12:17:51 -0800893 // We use this as our arbitrary surface size for buffer-less parents
894 // that don't impose cropping on their children. It may need to be larger
895 // than the display size because fullscreen windows can be shifted offscreen
896 // due to surfaceInsets. 2 times the largest display dimension feels like an
897 // appropriately arbitrary number. Eventually we would like to give SurfaceFlinger
898 // layers the ability to match their parent sizes and be able to skip
899 // such arbitrary size settings.
900 mSurfaceSize = Math.max(mBaseDisplayHeight, mBaseDisplayWidth) * 2;
Robert Carrb1579c82017-09-05 14:54:47 -0700901
902 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(mSession)
903 .setSize(mSurfaceSize, mSurfaceSize)
904 .setOpaque(true);
905 mWindowingLayer = b.setName("Display Root").build();
906 mOverlayLayer = b.setName("Display Overlays").build();
907
Robert Carrf59b8dd2017-10-02 18:58:36 -0700908 getPendingTransaction().setLayer(mWindowingLayer, 0)
Robert Carrb1579c82017-09-05 14:54:47 -0700909 .setLayerStack(mWindowingLayer, mDisplayId)
910 .show(mWindowingLayer)
911 .setLayer(mOverlayLayer, 1)
912 .setLayerStack(mOverlayLayer, mDisplayId)
913 .show(mOverlayLayer);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700914 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -0700915
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700916 // These are the only direct children we should ever have and they are permanent.
Wale Ogunwale3a931692016-11-02 16:49:48 -0700917 super.addChild(mBelowAppWindowsContainers, null);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700918 super.addChild(mTaskStackContainers, null);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700919 super.addChild(mAboveAppWindowsContainers, null);
920 super.addChild(mImeWindowsContainers, null);
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800921
922 // Add itself as a child to the root container.
923 mService.mRoot.addChild(this, null);
Bryce Leed1871262017-06-12 14:12:29 -0700924
925 // TODO(b/62541591): evaluate whether this is the best spot to declare the
926 // {@link DisplayContent} ready for use.
927 mDisplayReady = true;
Arthur Hung95b38a92018-07-20 18:56:12 +0800928
Riddle Hsuf53da812018-08-15 22:00:27 +0800929 mService.mAnimator.addDisplayLocked(mDisplayId);
Arthur Hung39134b22018-08-14 11:58:28 +0800930 mInputMonitor = new InputMonitor(service, mDisplayId);
Jorim Jaggif96c90a2018-09-26 16:55:15 +0200931 mInsetsStateController = new InsetsStateController(this);
Bryce Leed1871262017-06-12 14:12:29 -0700932 }
933
934 boolean isReady() {
935 // The display is ready when the system and the individual display are both ready.
936 return mService.mDisplayReady && mDisplayReady;
Craig Mautner59c00972012-07-30 12:10:24 -0700937 }
938
939 int getDisplayId() {
940 return mDisplayId;
941 }
942
Wale Ogunwale02319a62016-09-26 15:21:22 -0700943 WindowToken getWindowToken(IBinder binder) {
944 return mTokenMap.get(binder);
945 }
946
947 AppWindowToken getAppWindowToken(IBinder binder) {
948 final WindowToken token = getWindowToken(binder);
949 if (token == null) {
950 return null;
951 }
952 return token.asAppWindowToken();
953 }
954
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700955 private void addWindowToken(IBinder binder, WindowToken token) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700956 final DisplayContent dc = mService.mRoot.getWindowTokenDisplay(token);
957 if (dc != null) {
958 // We currently don't support adding a window token to the display if the display
959 // already has the binder mapped to another token. If there is a use case for supporting
960 // this moving forward we will either need to merge the WindowTokens some how or have
961 // the binder map to a list of window tokens.
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700962 throw new IllegalArgumentException("Can't map token=" + token + " to display="
963 + getName() + " already mapped to display=" + dc + " tokens=" + dc.mTokenMap);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700964 }
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700965 if (binder == null) {
966 throw new IllegalArgumentException("Can't map token=" + token + " to display="
967 + getName() + " binder is null");
968 }
969 if (token == null) {
970 throw new IllegalArgumentException("Can't map null token to display="
971 + getName() + " binder=" + binder);
972 }
973
Wale Ogunwale02319a62016-09-26 15:21:22 -0700974 mTokenMap.put(binder, token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700975
976 if (token.asAppWindowToken() == null) {
977 // Add non-app token to container hierarchy on the display. App tokens are added through
978 // the parent container managing them (e.g. Tasks).
Wale Ogunwale3a931692016-11-02 16:49:48 -0700979 switch (token.windowType) {
980 case TYPE_WALLPAPER:
981 mBelowAppWindowsContainers.addChild(token);
982 break;
983 case TYPE_INPUT_METHOD:
984 case TYPE_INPUT_METHOD_DIALOG:
985 mImeWindowsContainers.addChild(token);
986 break;
987 default:
988 mAboveAppWindowsContainers.addChild(token);
989 break;
990 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700991 }
Wale Ogunwale02319a62016-09-26 15:21:22 -0700992 }
993
994 WindowToken removeWindowToken(IBinder binder) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700995 final WindowToken token = mTokenMap.remove(binder);
996 if (token != null && token.asAppWindowToken() == null) {
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800997 token.setExiting();
998 }
999 return token;
1000 }
1001
1002 /** Changes the display the input window token is housed on to this one. */
1003 void reParentWindowToken(WindowToken token) {
1004 final DisplayContent prevDc = token.getDisplayContent();
1005 if (prevDc == this) {
1006 return;
1007 }
Riddle Hsu85bd04b2018-11-17 00:34:36 +08001008 if (prevDc != null) {
1009 if (prevDc.mTokenMap.remove(token.token) != null && token.asAppWindowToken() == null) {
1010 // Removed the token from the map, but made sure it's not an app token before
1011 // removing from parent.
1012 token.getParent().removeChild(token);
1013 }
1014 if (prevDc.mLastFocus == mCurrentFocus) {
1015 // The window has become the focus of this display, so it should not be notified
1016 // that it lost focus from the previous display.
1017 prevDc.mLastFocus = null;
1018 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001019 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -08001020
1021 addWindowToken(token.token, token);
Wale Ogunwale02319a62016-09-26 15:21:22 -07001022 }
1023
Wale Ogunwaleac2561e2016-11-01 15:43:46 -07001024 void removeAppToken(IBinder binder) {
1025 final WindowToken token = removeWindowToken(binder);
1026 if (token == null) {
1027 Slog.w(TAG_WM, "removeAppToken: Attempted to remove non-existing token: " + binder);
1028 return;
1029 }
1030
1031 final AppWindowToken appToken = token.asAppWindowToken();
1032
1033 if (appToken == null) {
1034 Slog.w(TAG_WM, "Attempted to remove non-App token: " + binder + " token=" + token);
1035 return;
1036 }
1037
1038 appToken.onRemovedFromDisplay();
1039 }
1040
Riddle Hsuad256a12018-07-18 16:11:30 +08001041 @Override
Riddle Hsu86cb7de2018-08-13 23:29:58 +08001042 DisplayWindowController getController() {
1043 return (DisplayWindowController) super.getController();
1044 }
1045
1046 @Override
Riddle Hsuad256a12018-07-18 16:11:30 +08001047 public Display getDisplay() {
Craig Mautnerb47bbc32012-08-22 17:41:48 -07001048 return mDisplay;
1049 }
1050
Craig Mautner59c00972012-07-30 12:10:24 -07001051 DisplayInfo getDisplayInfo() {
1052 return mDisplayInfo;
1053 }
1054
Wale Ogunwale231b06e2015-09-16 12:03:09 -07001055 DisplayMetrics getDisplayMetrics() {
1056 return mDisplayMetrics;
1057 }
1058
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001059 DisplayPolicy getDisplayPolicy() {
1060 return mDisplayPolicy;
1061 }
1062
Riddle Hsuad256a12018-07-18 16:11:30 +08001063 @Override
1064 public DisplayRotation getDisplayRotation() {
1065 return mDisplayRotation;
1066 }
1067
Jorim Jaggif96c90a2018-09-26 16:55:15 +02001068 /**
1069 * Marks a window as providing insets for the rest of the windows in the system.
1070 *
1071 * @param type The type of inset this window provides.
1072 * @param win The window.
1073 * @param frameProvider Function to compute the frame, or {@code null} if the just the frame of
1074 * the window should be taken.
1075 */
1076 void setInsetProvider(@InternalInsetType int type, WindowState win,
1077 @Nullable TriConsumer<DisplayFrames, WindowState, Rect> frameProvider) {
1078 mInsetsStateController.getSourceProvider(type).setWindow(win, frameProvider);
1079 }
1080
1081 InsetsStateController getInsetsStateController() {
1082 return mInsetsStateController;
1083 }
1084
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001085 @VisibleForTesting
1086 void setDisplayRotation(DisplayRotation displayRotation) {
1087 mDisplayRotation = displayRotation;
1088 }
1089
Andrii Kulian8ee72852017-03-10 10:36:45 -08001090 int getRotation() {
1091 return mRotation;
1092 }
1093
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001094 @VisibleForTesting
Andrii Kulian8ee72852017-03-10 10:36:45 -08001095 void setRotation(int newRotation) {
1096 mRotation = newRotation;
Riddle Hsuad256a12018-07-18 16:11:30 +08001097 mDisplayRotation.setRotation(newRotation);
Andrii Kulian8ee72852017-03-10 10:36:45 -08001098 }
1099
1100 int getLastOrientation() {
1101 return mLastOrientation;
1102 }
1103
Andrii Kulian8ee72852017-03-10 10:36:45 -08001104 boolean getAltOrientation() {
1105 return mAltOrientation;
1106 }
1107
Andrii Kulian8ee72852017-03-10 10:36:45 -08001108 int getLastWindowForcedOrientation() {
1109 return mLastWindowForcedOrientation;
1110 }
1111
Andrii Kulian06d07d62017-03-14 11:11:47 -07001112 /**
Riddle Hsu654a6f92018-07-13 22:59:36 +08001113 * Temporarily pauses rotation changes until resumed.
1114 *
1115 * This can be used to prevent rotation changes from occurring while the user is
1116 * performing certain operations, such as drag and drop.
1117 *
1118 * This call nests and must be matched by an equal number of calls to
1119 * {@link #resumeRotationLocked}.
1120 */
1121 void pauseRotationLocked() {
1122 mDeferredRotationPauseCount++;
1123 }
1124
1125 /**
1126 * Resumes normal rotation changes after being paused.
1127 */
1128 void resumeRotationLocked() {
1129 if (mDeferredRotationPauseCount <= 0) {
1130 return;
1131 }
1132
1133 mDeferredRotationPauseCount--;
1134 if (mDeferredRotationPauseCount == 0) {
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001135 updateRotationAndSendNewConfigIfNeeded();
Riddle Hsu654a6f92018-07-13 22:59:36 +08001136 }
1137 }
1138
1139 /**
Riddle Hsuad256a12018-07-18 16:11:30 +08001140 * If this is true we have updated our desired orientation, but not yet changed the real
1141 * orientation our applied our screen rotation animation. For example, because a previous
1142 * screen rotation was in progress.
1143 *
1144 * @return {@code true} if the there is an ongoing rotation change.
1145 */
1146 boolean rotationNeedsUpdate() {
1147 final int lastOrientation = getLastOrientation();
1148 final int oldRotation = getRotation();
1149 final boolean oldAltOrientation = getAltOrientation();
1150
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001151 final int rotation = mDisplayRotation.rotationForOrientation(lastOrientation, oldRotation);
Riddle Hsuad256a12018-07-18 16:11:30 +08001152 final boolean altOrientation = !mDisplayRotation.rotationHasCompatibleMetrics(
1153 lastOrientation, rotation);
1154 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1155 return false;
1156 }
1157 return true;
1158 }
1159
Riddle Hsu4e611772018-10-31 18:58:28 +08001160 /** Notify the configuration change of this display. */
1161 void sendNewConfiguration() {
1162 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, this).sendToTarget();
1163 }
1164
1165 /**
1166 * Determine the new desired orientation of this display.
1167 *
1168 * The orientation is computed from non-application windows first. If none of the
1169 * non-application windows specify orientation, the orientation is computed from application
1170 * tokens.
1171 *
1172 * @return {@code true} if the orientation is changed.
1173 */
1174 boolean updateOrientationFromAppTokens() {
1175 return updateOrientationFromAppTokens(false /* forceUpdate */);
1176 }
1177
1178 boolean updateOrientationFromAppTokens(boolean forceUpdate) {
1179 final int req = getOrientation();
1180 if (req != mLastOrientation || forceUpdate) {
1181 mLastOrientation = req;
1182 mDisplayRotation.setCurrentOrientation(req);
1183 return updateRotationUnchecked(forceUpdate);
1184 }
1185 return false;
1186 }
1187
Riddle Hsuad256a12018-07-18 16:11:30 +08001188 /**
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001189 * Update rotation of the display and send configuration if the rotation is changed.
1190 *
1191 * @return {@code true} if the rotation has been changed and the new config is sent.
1192 */
1193 boolean updateRotationAndSendNewConfigIfNeeded() {
1194 final boolean changed = updateRotationUnchecked(false /* forceUpdate */);
1195 if (changed) {
Riddle Hsu4e611772018-10-31 18:58:28 +08001196 sendNewConfiguration();
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001197 }
1198 return changed;
1199 }
1200
1201 /**
Andrii Kulian06d07d62017-03-14 11:11:47 -07001202 * Update rotation of the display.
1203 *
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001204 * @return {@code true} if the rotation has been changed. In this case YOU MUST CALL
1205 * {@link WindowManagerService#sendNewConfiguration(int)} TO UNFREEZE THE SCREEN.
Andrii Kulian06d07d62017-03-14 11:11:47 -07001206 */
Robert Carrae606b42018-02-15 15:36:23 -08001207 boolean updateRotationUnchecked() {
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001208 return updateRotationUnchecked(false /* forceUpdate */);
1209 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001210
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001211 /**
Evan Roskye747c3e2018-10-30 20:06:41 -07001212 * Update rotation of the DisplayContent with an option to force the update. This updates
1213 * the container's perception of rotation and, depending on the top activities, will freeze
1214 * the screen or start seamless rotation. The display itself gets rotated in
1215 * {@link #applyRotationLocked} during {@link WindowManagerService#sendNewConfiguration}.
1216 *
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001217 * @param forceUpdate Force the rotation update. Sometimes in WM we might skip updating
1218 * orientation because we're waiting for some rotation to finish or display
1219 * to unfreeze, which results in configuration of the previously visible
1220 * activity being applied to a newly visible one. Forcing the rotation
1221 * update allows to workaround this issue.
1222 * @return {@code true} if the rotation has been changed. In this case YOU MUST CALL
Evan Roskye747c3e2018-10-30 20:06:41 -07001223 * {@link WindowManagerService#sendNewConfiguration(int)} TO COMPLETE THE ROTATION AND
1224 * UNFREEZE THE SCREEN.
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001225 */
1226 boolean updateRotationUnchecked(boolean forceUpdate) {
1227 ScreenRotationAnimation screenRotationAnimation;
1228 if (!forceUpdate) {
Riddle Hsu654a6f92018-07-13 22:59:36 +08001229 if (mDeferredRotationPauseCount > 0) {
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001230 // Rotation updates have been paused temporarily. Defer the update until
1231 // updates have been resumed.
1232 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, rotation is paused.");
1233 return false;
1234 }
1235
1236 screenRotationAnimation =
1237 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
1238 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
1239 // Rotation updates cannot be performed while the previous rotation change
1240 // animation is still in progress. Skip this update. We will try updating
1241 // again after the animation is finished and the display is unfrozen.
1242 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, animation in progress.");
1243 return false;
1244 }
1245 if (mService.mDisplayFrozen) {
1246 // Even if the screen rotation animation has finished (e.g. isAnimating
1247 // returns false), there is still some time where we haven't yet unfrozen
1248 // the display. We also need to abort rotation here.
1249 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
1250 "Deferring rotation, still finishing previous rotation");
1251 return false;
1252 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001253 }
1254
1255 if (!mService.mDisplayEnabled) {
1256 // No point choosing a rotation if the display is not enabled.
1257 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, display is not enabled.");
1258 return false;
1259 }
1260
1261 final int oldRotation = mRotation;
1262 final int lastOrientation = mLastOrientation;
1263 final boolean oldAltOrientation = mAltOrientation;
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001264 final int rotation = mDisplayRotation.rotationForOrientation(lastOrientation, oldRotation);
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001265 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Computed rotation=" + rotation + " for display id="
1266 + mDisplayId + " based on lastOrientation=" + lastOrientation
1267 + " and oldRotation=" + oldRotation);
Tiger Huang7c610aa2018-10-27 00:01:01 +08001268 boolean mayRotateSeamlessly = mDisplayPolicy.shouldRotateSeamlessly(mDisplayRotation,
Riddle Hsuad256a12018-07-18 16:11:30 +08001269 oldRotation, rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001270
Robert Carr0e007272017-10-02 13:00:55 -07001271 if (mayRotateSeamlessly) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001272 final WindowState seamlessRotated = getWindow((w) -> w.mSeamlesslyRotated);
Andrii Kulian6cdcfe42018-05-23 17:59:43 -07001273 if (seamlessRotated != null && !forceUpdate) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001274 // We can't rotate (seamlessly or not) while waiting for the last seamless rotation
1275 // to complete (that is, waiting for windows to redraw). It's tempting to check
1276 // w.mSeamlessRotationCount but that could be incorrect in the case of
1277 // window-removal.
1278 return false;
1279 }
Robert Carr0e007272017-10-02 13:00:55 -07001280
1281 // In the presence of the PINNED stack or System Alert
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001282 // windows we unfortunately can not seamlessly rotate.
Wale Ogunwale61911492017-10-11 08:50:50 -07001283 if (hasPinnedStack()) {
Robert Carr0e007272017-10-02 13:00:55 -07001284 mayRotateSeamlessly = false;
1285 }
1286 for (int i = 0; i < mService.mSessions.size(); i++) {
1287 if (mService.mSessions.valueAt(i).hasAlertWindowSurfaces()) {
1288 mayRotateSeamlessly = false;
1289 break;
1290 }
1291 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001292 }
Robert Carr0e007272017-10-02 13:00:55 -07001293 final boolean rotateSeamlessly = mayRotateSeamlessly;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001294
1295 // TODO: Implement forced rotation changes.
1296 // Set mAltOrientation to indicate that the application is receiving
1297 // an orientation that has different metrics than it expected.
1298 // eg. Portrait instead of Landscape.
1299
Riddle Hsuad256a12018-07-18 16:11:30 +08001300 final boolean altOrientation = !mDisplayRotation.rotationHasCompatibleMetrics(
Andrii Kulian06d07d62017-03-14 11:11:47 -07001301 lastOrientation, rotation);
1302
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001303 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
1304 + " selected orientation " + lastOrientation
Andrii Kulian06d07d62017-03-14 11:11:47 -07001305 + ", got rotation " + rotation + " which has "
1306 + (altOrientation ? "incompatible" : "compatible") + " metrics");
1307
1308 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1309 // No change.
1310 return false;
1311 }
1312
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07001313 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
1314 + " rotation changed to " + rotation
Andrii Kulian06d07d62017-03-14 11:11:47 -07001315 + (altOrientation ? " (alt)" : "") + " from " + oldRotation
1316 + (oldAltOrientation ? " (alt)" : "") + ", lastOrientation=" + lastOrientation);
1317
1318 if (DisplayContent.deltaRotation(rotation, oldRotation) != 2) {
Vishnu Nairba183352018-11-21 11:16:49 -08001319 mWaitingForConfig = true;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001320 }
1321
Evan Roskye747c3e2018-10-30 20:06:41 -07001322 mRotation = rotation;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001323 mAltOrientation = altOrientation;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001324
1325 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_ACTIVE;
Riddle Hsu654a6f92018-07-13 22:59:36 +08001326 mService.mH.sendNewMessageDelayed(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT,
1327 this, WINDOW_FREEZE_TIMEOUT_DURATION);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001328
1329 setLayoutNeeded();
1330 final int[] anim = new int[2];
Tiger Huang7c610aa2018-10-27 00:01:01 +08001331 mDisplayPolicy.selectRotationAnimationLw(anim);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001332
1333 if (!rotateSeamlessly) {
Robert Carrae606b42018-02-15 15:36:23 -08001334 mService.startFreezingDisplayLocked(anim[0], anim[1], this);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001335 // startFreezingDisplayLocked can reset the ScreenRotationAnimation.
Andrii Kulian06d07d62017-03-14 11:11:47 -07001336 } else {
1337 // The screen rotation animation uses a screenshot to freeze the screen
1338 // while windows resize underneath.
1339 // When we are rotating seamlessly, we allow the elements to transition
1340 // to their rotated state independently and without a freeze required.
Robert Carrefc75702018-02-16 11:46:16 -08001341 mService.startSeamlessRotation();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001342 }
1343
Evan Roskye747c3e2018-10-30 20:06:41 -07001344 return true;
1345 }
1346
1347 /**
1348 * Applies the rotation transaction. This must be called after {@link #updateRotationUnchecked}
1349 * (if it returned {@code true}) to actually finish the rotation.
1350 *
1351 * @param oldRotation the rotation we are coming from.
1352 * @param rotation the rotation to apply.
1353 */
1354 void applyRotationLocked(final int oldRotation, final int rotation) {
1355 mDisplayRotation.setRotation(rotation);
1356 final boolean rotateSeamlessly = mService.isRotatingSeamlessly();
1357 ScreenRotationAnimation screenRotationAnimation = rotateSeamlessly
1358 ? null : mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001359 // We need to update our screen size information to match the new rotation. If the rotation
1360 // has actually changed then this method will return true and, according to the comment at
1361 // the top of the method, the caller is obligated to call computeNewConfigurationLocked().
1362 // By updating the Display info here it will be available to
1363 // #computeScreenConfiguration() later.
1364 updateDisplayAndOrientation(getConfiguration().uiMode);
1365
Robert Carrae606b42018-02-15 15:36:23 -08001366 // NOTE: We disable the rotation in the emulator because
1367 // it doesn't support hardware OpenGL emulation yet.
1368 if (CUSTOM_SCREEN_ROTATION && screenRotationAnimation != null
1369 && screenRotationAnimation.hasScreenshot()) {
1370 if (screenRotationAnimation.setRotation(getPendingTransaction(), rotation,
1371 MAX_ANIMATION_DURATION, mService.getTransitionAnimationScaleLocked(),
1372 mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight)) {
1373 mService.scheduleAnimationLocked();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001374 }
1375 }
1376
Vishnu Nair83537a72018-07-19 21:27:48 -07001377 forAllWindows(w -> {
Vishnu Nairddd80742018-08-21 14:12:46 -07001378 w.seamlesslyRotateIfAllowed(getPendingTransaction(), oldRotation, rotation,
1379 rotateSeamlessly);
Vishnu Nair83537a72018-07-19 21:27:48 -07001380 }, true /* traverseTopToBottom */);
1381
Robert Carrae606b42018-02-15 15:36:23 -08001382 mService.mDisplayManagerInternal.performTraversal(getPendingTransaction());
1383 scheduleAnimation();
1384
Andrii Kulian06d07d62017-03-14 11:11:47 -07001385 forAllWindows(w -> {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001386 if (w.mHasSurface && !rotateSeamlessly) {
1387 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Set mOrientationChanging of " + w);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001388 w.setOrientationChanging(true);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001389 mService.mRoot.mOrientationChangeComplete = false;
1390 w.mLastFreezeDuration = 0;
1391 }
1392 w.mReportOrientationChanged = true;
1393 }, true /* traverseTopToBottom */);
1394
1395 if (rotateSeamlessly) {
Riddle Hsu654a6f92018-07-13 22:59:36 +08001396 mService.mH.sendNewMessageDelayed(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT,
1397 this, SEAMLESS_ROTATION_TIMEOUT_DURATION);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001398 }
1399
1400 for (int i = mService.mRotationWatchers.size() - 1; i >= 0; i--) {
1401 final WindowManagerService.RotationWatcher rotationWatcher
1402 = mService.mRotationWatchers.get(i);
1403 if (rotationWatcher.mDisplayId == mDisplayId) {
1404 try {
1405 rotationWatcher.mWatcher.onRotationChanged(rotation);
1406 } catch (RemoteException e) {
1407 // Ignore
1408 }
1409 }
1410 }
1411
1412 // TODO (multi-display): Magnification is supported only for the default display.
1413 // Announce rotation only if we will not animate as we already have the
1414 // windows in final state. Otherwise, we make this call at the rotation end.
1415 if (screenRotationAnimation == null && mService.mAccessibilityController != null
1416 && isDefaultDisplay) {
1417 mService.mAccessibilityController.onRotationChangedLocked(this);
1418 }
Andrii Kulian06d07d62017-03-14 11:11:47 -07001419 }
1420
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001421 void configureDisplayPolicy() {
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08001422 final int width = mBaseDisplayWidth;
1423 final int height = mBaseDisplayHeight;
1424 final int shortSize;
1425 final int longSize;
1426 if (width > height) {
1427 shortSize = height;
1428 longSize = width;
1429 } else {
1430 shortSize = width;
1431 longSize = height;
1432 }
1433
1434 final int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / mBaseDisplayDensity;
1435 final int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / mBaseDisplayDensity;
1436
1437 mDisplayRotation.configure(width, height, shortSizeDp, longSizeDp);
1438 mDisplayPolicy.configure(width, height, shortSizeDp);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001439
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001440 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo,
1441 calculateDisplayCutoutForRotation(mDisplayInfo.rotation));
Arthur Hungbe5ce212018-09-13 18:41:56 +08001442
1443 // Tap Listeners are supported for:
1444 // 1. All physical displays (multi-display).
1445 // 2. VirtualDisplays on VR, AA (and everything else).
1446 if (mPointerEventDispatcher != null && mTapDetector == null) {
1447 if (DEBUG_DISPLAY) {
1448 Slog.d(TAG,
1449 "Registering PointerEventListener for DisplayId: " + mDisplayId);
1450 }
1451 mTapDetector = new TaskTapPointerEventListener(mService, this);
1452 registerPointerEventListener(mTapDetector);
1453 registerPointerEventListener(mService.mMousePositionTracker);
1454 }
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001455 }
1456
Andrii Kulian06d07d62017-03-14 11:11:47 -07001457 /**
1458 * Update {@link #mDisplayInfo} and other internal variables when display is rotated or config
1459 * changed.
1460 * Do not call if {@link WindowManagerService#mDisplayReady} == false.
1461 */
1462 private DisplayInfo updateDisplayAndOrientation(int uiMode) {
1463 // Use the effective "visual" dimensions based on current rotation
1464 final boolean rotated = (mRotation == ROTATION_90 || mRotation == ROTATION_270);
1465 final int realdw = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
1466 final int realdh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
1467 int dw = realdw;
1468 int dh = realdh;
1469
1470 if (mAltOrientation) {
1471 if (realdw > realdh) {
1472 // Turn landscape into portrait.
1473 int maxw = (int)(realdh/1.3f);
1474 if (maxw < realdw) {
1475 dw = maxw;
1476 }
1477 } else {
1478 // Turn portrait into landscape.
1479 int maxh = (int)(realdw/1.3f);
1480 if (maxh < realdh) {
1481 dh = maxh;
1482 }
1483 }
1484 }
1485
1486 // Update application display metrics.
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001487 final WmDisplayCutout wmDisplayCutout = calculateDisplayCutoutForRotation(mRotation);
1488 final DisplayCutout displayCutout = wmDisplayCutout.getDisplayCutout();
1489
Tiger Huang7c610aa2018-10-27 00:01:01 +08001490 final int appWidth = mDisplayPolicy.getNonDecorDisplayWidth(dw, dh, mRotation, uiMode,
1491 displayCutout);
1492 final int appHeight = mDisplayPolicy.getNonDecorDisplayHeight(dw, dh, mRotation, uiMode,
1493 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001494 mDisplayInfo.rotation = mRotation;
1495 mDisplayInfo.logicalWidth = dw;
1496 mDisplayInfo.logicalHeight = dh;
1497 mDisplayInfo.logicalDensityDpi = mBaseDisplayDensity;
1498 mDisplayInfo.appWidth = appWidth;
1499 mDisplayInfo.appHeight = appHeight;
1500 if (isDefaultDisplay) {
1501 mDisplayInfo.getLogicalMetrics(mRealDisplayMetrics,
1502 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO, null);
1503 }
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001504 mDisplayInfo.displayCutout = displayCutout.isEmpty() ? null : displayCutout;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001505 mDisplayInfo.getAppMetrics(mDisplayMetrics);
1506 if (mDisplayScalingDisabled) {
1507 mDisplayInfo.flags |= Display.FLAG_SCALING_DISABLED;
1508 } else {
1509 mDisplayInfo.flags &= ~Display.FLAG_SCALING_DISABLED;
1510 }
1511
Andrii Kulianf0379de2018-03-14 16:24:07 -07001512 // We usually set the override info in DisplayManager so that we get consistent display
1513 // metrics values when displays are changing and don't send out new values until WM is aware
1514 // of them. However, we don't do this for displays that serve as containers for ActivityView
1515 // because we don't want letter-/pillar-boxing during resize.
1516 final DisplayInfo overrideDisplayInfo = mShouldOverrideDisplayConfiguration
1517 ? mDisplayInfo : null;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001518 mService.mDisplayManagerInternal.setDisplayInfoOverrideFromWindowManager(mDisplayId,
Andrii Kulianf0379de2018-03-14 16:24:07 -07001519 overrideDisplayInfo);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001520
1521 mBaseDisplayRect.set(0, 0, dw, dh);
1522
1523 if (isDefaultDisplay) {
1524 mCompatibleScreenScale = CompatibilityInfo.computeCompatibleScaling(mDisplayMetrics,
1525 mCompatDisplayMetrics);
1526 }
Bryce Leef3c6a472017-11-14 14:53:06 -08001527
Andrii Kulian06d07d62017-03-14 11:11:47 -07001528 return mDisplayInfo;
1529 }
1530
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001531 WmDisplayCutout calculateDisplayCutoutForRotation(int rotation) {
Adrian Roos2aa0fcd2018-02-19 18:07:49 +01001532 return mDisplayCutoutCache.getOrCompute(mInitialDisplayCutout, rotation);
1533 }
1534
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001535 private WmDisplayCutout calculateDisplayCutoutForRotationUncached(
Adrian Roos2aa0fcd2018-02-19 18:07:49 +01001536 DisplayCutout cutout, int rotation) {
Adrian Roos24264212018-02-19 16:26:15 +01001537 if (cutout == null || cutout == DisplayCutout.NO_CUTOUT) {
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001538 return WmDisplayCutout.NO_CUTOUT;
Adrian Roos1cf585052018-01-03 18:43:27 +01001539 }
Adrian Roos11c25582018-02-19 18:06:36 +01001540 if (rotation == ROTATION_0) {
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001541 return WmDisplayCutout.computeSafeInsets(
1542 cutout, mInitialDisplayWidth, mInitialDisplayHeight);
Adrian Roos24264212018-02-19 16:26:15 +01001543 }
Adrian Roosbed538e2018-02-21 17:50:07 +01001544 final boolean rotated = (rotation == ROTATION_90 || rotation == ROTATION_270);
Issei Suzuki43190bd2018-08-20 17:28:41 +02001545 final Rect[] newBounds = mRotationUtil.getRotatedBounds(
1546 WmDisplayCutout.computeSafeInsets(
Jorim Jaggi60640512018-06-29 01:14:31 +02001547 cutout, mInitialDisplayWidth, mInitialDisplayHeight)
Issei Suzuki43190bd2018-08-20 17:28:41 +02001548 .getDisplayCutout().getBoundingRectsAll(),
1549 rotation, mInitialDisplayWidth, mInitialDisplayHeight);
1550 return WmDisplayCutout.computeSafeInsets(DisplayCutout.fromBounds(newBounds),
Adrian Roos24264212018-02-19 16:26:15 +01001551 rotated ? mInitialDisplayHeight : mInitialDisplayWidth,
1552 rotated ? mInitialDisplayWidth : mInitialDisplayHeight);
Adrian Roos1cf585052018-01-03 18:43:27 +01001553 }
1554
Andrii Kulian06d07d62017-03-14 11:11:47 -07001555 /**
1556 * Compute display configuration based on display properties and policy settings.
1557 * Do not call if mDisplayReady == false.
1558 */
1559 void computeScreenConfiguration(Configuration config) {
1560 final DisplayInfo displayInfo = updateDisplayAndOrientation(config.uiMode);
Evan Roskye747c3e2018-10-30 20:06:41 -07001561 calculateBounds(displayInfo, mTmpBounds);
1562 config.windowConfiguration.setBounds(mTmpBounds);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001563
1564 final int dw = displayInfo.logicalWidth;
1565 final int dh = displayInfo.logicalHeight;
Wale Ogunwale687b4272017-07-27 02:56:23 -07001566 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE;
Garfield Tane0846042018-07-26 13:42:04 -07001567 config.windowConfiguration.setWindowingMode(getWindowingMode());
Evan Roskye747c3e2018-10-30 20:06:41 -07001568 config.windowConfiguration.setRotation(displayInfo.rotation);
Bryce Leec1f2f2a2017-06-22 15:29:42 -07001569
Adrian Roos11c25582018-02-19 18:06:36 +01001570 final float density = mDisplayMetrics.density;
Andrii Kulian06d07d62017-03-14 11:11:47 -07001571 config.screenWidthDp =
Tiger Huang7c610aa2018-10-27 00:01:01 +08001572 (int)(mDisplayPolicy.getConfigDisplayWidth(dw, dh, displayInfo.rotation,
1573 config.uiMode, displayInfo.displayCutout) / density);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001574 config.screenHeightDp =
Tiger Huang7c610aa2018-10-27 00:01:01 +08001575 (int)(mDisplayPolicy.getConfigDisplayHeight(dw, dh, displayInfo.rotation,
1576 config.uiMode, displayInfo.displayCutout) / density);
Bryce Lee7566d762017-03-30 09:34:15 -07001577
Tiger Huang7c610aa2018-10-27 00:01:01 +08001578 mDisplayPolicy.getNonDecorInsetsLw(displayInfo.rotation, dw, dh,
Adrian Roos11c25582018-02-19 18:06:36 +01001579 displayInfo.displayCutout, mTmpRect);
Bryce Lee7566d762017-03-30 09:34:15 -07001580 final int leftInset = mTmpRect.left;
1581 final int topInset = mTmpRect.top;
1582 // appBounds at the root level should mirror the app screen size.
Wale Ogunwale822e5122017-07-26 06:02:24 -07001583 config.windowConfiguration.setAppBounds(leftInset /* left */, topInset /* top */,
1584 leftInset + displayInfo.appWidth /* right */,
1585 topInset + displayInfo.appHeight /* bottom */);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001586 final boolean rotated = (displayInfo.rotation == Surface.ROTATION_90
1587 || displayInfo.rotation == Surface.ROTATION_270);
1588
Tiger Huang7c610aa2018-10-27 00:01:01 +08001589 computeSizeRangesAndScreenLayout(displayInfo, rotated, config.uiMode, dw, dh, density,
1590 config);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001591
1592 config.screenLayout = (config.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK)
1593 | ((displayInfo.flags & Display.FLAG_ROUND) != 0
1594 ? Configuration.SCREENLAYOUT_ROUND_YES
1595 : Configuration.SCREENLAYOUT_ROUND_NO);
1596
1597 config.compatScreenWidthDp = (int)(config.screenWidthDp / mCompatibleScreenScale);
1598 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);
1599 config.compatSmallestScreenWidthDp = computeCompatSmallestWidth(rotated, config.uiMode, dw,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001600 dh, displayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001601 config.densityDpi = displayInfo.logicalDensityDpi;
1602
1603 config.colorMode =
Chia-I Wuf739bad2018-05-09 12:36:57 -07001604 ((displayInfo.isHdr() && mService.hasHdrSupport())
Andrii Kulian06d07d62017-03-14 11:11:47 -07001605 ? Configuration.COLOR_MODE_HDR_YES
1606 : Configuration.COLOR_MODE_HDR_NO)
Romain Guye89d0bb2017-06-20 12:23:42 -07001607 | (displayInfo.isWideColorGamut() && mService.hasWideColorGamutSupport()
Andrii Kulian06d07d62017-03-14 11:11:47 -07001608 ? Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_YES
1609 : Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO);
1610
1611 // Update the configuration based on available input devices, lid switch,
1612 // and platform configuration.
1613 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1614 config.keyboard = Configuration.KEYBOARD_NOKEYS;
1615 config.navigation = Configuration.NAVIGATION_NONAV;
1616
1617 int keyboardPresence = 0;
1618 int navigationPresence = 0;
1619 final InputDevice[] devices = mService.mInputManager.getInputDevices();
1620 final int len = devices != null ? devices.length : 0;
1621 for (int i = 0; i < len; i++) {
1622 InputDevice device = devices[i];
1623 if (!device.isVirtual()) {
1624 final int sources = device.getSources();
1625 final int presenceFlag = device.isExternal() ?
1626 WindowManagerPolicy.PRESENCE_EXTERNAL :
1627 WindowManagerPolicy.PRESENCE_INTERNAL;
1628
1629 // TODO(multi-display): Configure on per-display basis.
1630 if (mService.mIsTouchDevice) {
1631 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
1632 InputDevice.SOURCE_TOUCHSCREEN) {
1633 config.touchscreen = Configuration.TOUCHSCREEN_FINGER;
1634 }
1635 } else {
1636 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1637 }
1638
1639 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
1640 config.navigation = Configuration.NAVIGATION_TRACKBALL;
1641 navigationPresence |= presenceFlag;
1642 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
1643 && config.navigation == Configuration.NAVIGATION_NONAV) {
1644 config.navigation = Configuration.NAVIGATION_DPAD;
1645 navigationPresence |= presenceFlag;
1646 }
1647
1648 if (device.getKeyboardType() == InputDevice.KEYBOARD_TYPE_ALPHABETIC) {
1649 config.keyboard = Configuration.KEYBOARD_QWERTY;
1650 keyboardPresence |= presenceFlag;
1651 }
1652 }
1653 }
1654
1655 if (config.navigation == Configuration.NAVIGATION_NONAV && mService.mHasPermanentDpad) {
1656 config.navigation = Configuration.NAVIGATION_DPAD;
1657 navigationPresence |= WindowManagerPolicy.PRESENCE_INTERNAL;
1658 }
1659
1660 // Determine whether a hard keyboard is available and enabled.
1661 // TODO(multi-display): Should the hardware keyboard be tied to a display or to a device?
1662 boolean hardKeyboardAvailable = config.keyboard != Configuration.KEYBOARD_NOKEYS;
1663 if (hardKeyboardAvailable != mService.mHardKeyboardAvailable) {
1664 mService.mHardKeyboardAvailable = hardKeyboardAvailable;
1665 mService.mH.removeMessages(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1666 mService.mH.sendEmptyMessage(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1667 }
1668
Tiger Huang7c610aa2018-10-27 00:01:01 +08001669 mDisplayPolicy.updateConfigurationDependentBehaviors();
1670
Andrii Kulian06d07d62017-03-14 11:11:47 -07001671 // Let the policy update hidden states.
1672 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_NO;
1673 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_NO;
1674 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_NO;
1675 mService.mPolicy.adjustConfigurationLw(config, keyboardPresence, navigationPresence);
1676 }
1677
1678 private int computeCompatSmallestWidth(boolean rotated, int uiMode, int dw, int dh,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001679 DisplayCutout displayCutout) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001680 mTmpDisplayMetrics.setTo(mDisplayMetrics);
1681 final DisplayMetrics tmpDm = mTmpDisplayMetrics;
1682 final int unrotDw, unrotDh;
1683 if (rotated) {
1684 unrotDw = dh;
1685 unrotDh = dw;
1686 } else {
1687 unrotDw = dw;
1688 unrotDh = dh;
1689 }
1690 int sw = reduceCompatConfigWidthSize(0, Surface.ROTATION_0, uiMode, tmpDm, unrotDw, unrotDh,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001691 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001692 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_90, uiMode, tmpDm, unrotDh, unrotDw,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001693 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001694 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_180, uiMode, tmpDm, unrotDw, unrotDh,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001695 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001696 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_270, uiMode, tmpDm, unrotDh, unrotDw,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001697 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001698 return sw;
1699 }
1700
1701 private int reduceCompatConfigWidthSize(int curSize, int rotation, int uiMode,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001702 DisplayMetrics dm, int dw, int dh, DisplayCutout displayCutout) {
1703 dm.noncompatWidthPixels = mDisplayPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode,
1704 displayCutout);
1705 dm.noncompatHeightPixels = mDisplayPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode,
1706 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001707 float scale = CompatibilityInfo.computeCompatibleScaling(dm, null);
1708 int size = (int)(((dm.noncompatWidthPixels / scale) / dm.density) + .5f);
1709 if (curSize == 0 || size < curSize) {
1710 curSize = size;
1711 }
1712 return curSize;
1713 }
1714
Tiger Huang7c610aa2018-10-27 00:01:01 +08001715 private void computeSizeRangesAndScreenLayout(DisplayInfo displayInfo, boolean rotated,
1716 int uiMode, int dw, int dh, float density, Configuration outConfig) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001717
1718 // We need to determine the smallest width that will occur under normal
1719 // operation. To this, start with the base screen size and compute the
1720 // width under the different possible rotations. We need to un-rotate
1721 // the current screen dimensions before doing this.
1722 int unrotDw, unrotDh;
1723 if (rotated) {
1724 unrotDw = dh;
1725 unrotDh = dw;
1726 } else {
1727 unrotDw = dw;
1728 unrotDh = dh;
1729 }
1730 displayInfo.smallestNominalAppWidth = 1<<30;
1731 displayInfo.smallestNominalAppHeight = 1<<30;
1732 displayInfo.largestNominalAppWidth = 0;
1733 displayInfo.largestNominalAppHeight = 0;
Tiger Huang7c610aa2018-10-27 00:01:01 +08001734 adjustDisplaySizeRanges(displayInfo, Surface.ROTATION_0, uiMode, unrotDw, unrotDh);
1735 adjustDisplaySizeRanges(displayInfo, Surface.ROTATION_90, uiMode, unrotDh, unrotDw);
1736 adjustDisplaySizeRanges(displayInfo, Surface.ROTATION_180, uiMode, unrotDw, unrotDh);
1737 adjustDisplaySizeRanges(displayInfo, Surface.ROTATION_270, uiMode, unrotDh, unrotDw);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001738 int sl = Configuration.resetScreenLayout(outConfig.screenLayout);
1739 sl = reduceConfigLayout(sl, Surface.ROTATION_0, density, unrotDw, unrotDh, uiMode,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001740 displayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001741 sl = reduceConfigLayout(sl, Surface.ROTATION_90, density, unrotDh, unrotDw, uiMode,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001742 displayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001743 sl = reduceConfigLayout(sl, Surface.ROTATION_180, density, unrotDw, unrotDh, uiMode,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001744 displayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001745 sl = reduceConfigLayout(sl, Surface.ROTATION_270, density, unrotDh, unrotDw, uiMode,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001746 displayInfo.displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001747 outConfig.smallestScreenWidthDp = (int)(displayInfo.smallestNominalAppWidth / density);
1748 outConfig.screenLayout = sl;
1749 }
1750
1751 private int reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh,
Tiger Huang7c610aa2018-10-27 00:01:01 +08001752 int uiMode, DisplayCutout displayCutout) {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001753 // Get the app screen size at this rotation.
Tiger Huang7c610aa2018-10-27 00:01:01 +08001754 int w = mDisplayPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode, displayCutout);
1755 int h = mDisplayPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode, displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001756
1757 // Compute the screen layout size class for this rotation.
1758 int longSize = w;
1759 int shortSize = h;
1760 if (longSize < shortSize) {
1761 int tmp = longSize;
1762 longSize = shortSize;
1763 shortSize = tmp;
1764 }
1765 longSize = (int)(longSize/density);
1766 shortSize = (int)(shortSize/density);
1767 return Configuration.reduceScreenLayout(curLayout, longSize, shortSize);
1768 }
1769
Tiger Huang7c610aa2018-10-27 00:01:01 +08001770 private void adjustDisplaySizeRanges(DisplayInfo displayInfo, int rotation,
Andrii Kulian06d07d62017-03-14 11:11:47 -07001771 int uiMode, int dw, int dh) {
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01001772 final DisplayCutout displayCutout = calculateDisplayCutoutForRotation(
1773 rotation).getDisplayCutout();
Tiger Huang7c610aa2018-10-27 00:01:01 +08001774 final int width = mDisplayPolicy.getConfigDisplayWidth(dw, dh, rotation, uiMode,
1775 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001776 if (width < displayInfo.smallestNominalAppWidth) {
1777 displayInfo.smallestNominalAppWidth = width;
1778 }
1779 if (width > displayInfo.largestNominalAppWidth) {
1780 displayInfo.largestNominalAppWidth = width;
1781 }
Tiger Huang7c610aa2018-10-27 00:01:01 +08001782 final int height = mDisplayPolicy.getConfigDisplayHeight(dw, dh, rotation, uiMode,
1783 displayCutout);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001784 if (height < displayInfo.smallestNominalAppHeight) {
1785 displayInfo.smallestNominalAppHeight = height;
1786 }
1787 if (height > displayInfo.largestNominalAppHeight) {
1788 displayInfo.largestNominalAppHeight = height;
1789 }
1790 }
1791
Riddle Hsua4d6fa22018-08-11 00:50:39 +08001792 /**
1793 * Apps that use the compact menu panel (as controlled by the panelMenuIsCompact
1794 * theme attribute) on devices that feature a physical options menu key attempt to position
1795 * their menu panel window along the edge of the screen nearest the physical menu key.
1796 * This lowers the travel distance between invoking the menu panel and selecting
1797 * a menu option.
1798 *
1799 * This method helps control where that menu is placed. Its current implementation makes
1800 * assumptions about the menu key and its relationship to the screen based on whether
1801 * the device's natural orientation is portrait (width < height) or landscape.
1802 *
1803 * The menu key is assumed to be located along the bottom edge of natural-portrait
1804 * devices and along the right edge of natural-landscape devices. If these assumptions
1805 * do not hold for the target device, this method should be changed to reflect that.
1806 *
1807 * @return A {@link Gravity} value for placing the options menu window.
1808 */
1809 int getPreferredOptionsPanelGravity() {
1810 final int rotation = getRotation();
1811 if (mInitialDisplayWidth < mInitialDisplayHeight) {
1812 // On devices with a natural orientation of portrait.
1813 switch (rotation) {
1814 default:
1815 case Surface.ROTATION_0:
1816 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1817 case Surface.ROTATION_90:
1818 return Gravity.RIGHT | Gravity.BOTTOM;
1819 case Surface.ROTATION_180:
1820 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1821 case Surface.ROTATION_270:
1822 return Gravity.START | Gravity.BOTTOM;
1823 }
1824 }
1825
1826 // On devices with a natural orientation of landscape.
1827 switch (rotation) {
1828 default:
1829 case Surface.ROTATION_0:
1830 return Gravity.RIGHT | Gravity.BOTTOM;
1831 case Surface.ROTATION_90:
1832 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1833 case Surface.ROTATION_180:
1834 return Gravity.START | Gravity.BOTTOM;
1835 case Surface.ROTATION_270:
1836 return Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
1837 }
1838 }
1839
Jorim Jaggi61f39a72015-10-29 16:54:18 +01001840 DockedStackDividerController getDockedDividerController() {
1841 return mDividerControllerLocked;
1842 }
1843
Winson Chung655332c2016-10-31 13:14:28 -07001844 PinnedStackController getPinnedStackController() {
1845 return mPinnedStackControllerLocked;
1846 }
1847
Jeff Browna506a6e2013-06-04 00:02:38 -07001848 /**
1849 * Returns true if the specified UID has access to this display.
1850 */
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001851 boolean hasAccess(int uid) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001852 return mDisplay.hasAccess(uid);
1853 }
1854
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001855 boolean isPrivate() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001856 return (mDisplay.getFlags() & FLAG_PRIVATE) != 0;
keunyounga446bf02013-06-21 19:07:57 -07001857 }
1858
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001859 TaskStack getHomeStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001860 return mTaskStackContainers.getHomeStack();
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001861 }
1862
Wale Ogunwale61911492017-10-11 08:50:50 -07001863 /**
1864 * @return The primary split-screen stack, but only if it is visible, and {@code null} otherwise.
1865 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001866 TaskStack getSplitScreenPrimaryStack() {
1867 TaskStack stack = mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001868 return (stack != null && stack.isVisible()) ? stack : null;
1869 }
1870
Robert Carr9785cf32018-04-25 15:06:07 -07001871 boolean hasSplitScreenPrimaryStack() {
1872 return getSplitScreenPrimaryStack() != null;
1873 }
1874
Wale Ogunwale61911492017-10-11 08:50:50 -07001875 /**
Matthew Ng64e77cf2017-10-31 14:01:31 -07001876 * Like {@link #getSplitScreenPrimaryStack}, but also returns the stack if it's currently
Wale Ogunwale61911492017-10-11 08:50:50 -07001877 * not visible.
1878 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001879 TaskStack getSplitScreenPrimaryStackIgnoringVisibility() {
1880 return mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001881 }
1882
1883 TaskStack getPinnedStack() {
1884 return mTaskStackContainers.getPinnedStack();
1885 }
1886
1887 private boolean hasPinnedStack() {
1888 return mTaskStackContainers.getPinnedStack() != null;
Chong Zhangd9d35bd2016-08-04 17:55:21 -07001889 }
1890
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001891 /**
1892 * Returns the topmost stack on the display that is compatible with the input windowing mode.
1893 * Null is no compatible stack on the display.
1894 */
Wale Ogunwale30e441d2017-11-09 08:28:45 -08001895 TaskStack getTopStackInWindowingMode(int windowingMode) {
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001896 return getStack(windowingMode, ACTIVITY_TYPE_UNDEFINED);
1897 }
1898
1899 /**
1900 * Returns the topmost stack on the display that is compatible with the input windowing mode and
1901 * activity type. Null is no compatible stack on the display.
1902 */
Wale Ogunwale68278562017-09-23 17:13:55 -07001903 TaskStack getStack(int windowingMode, int activityType) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001904 return mTaskStackContainers.getStack(windowingMode, activityType);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001905 }
1906
Bryce Lee48f4b572017-04-10 10:54:15 -07001907 @VisibleForTesting
Kazuki Takise148d00a2018-05-31 15:32:19 +09001908 WindowList<TaskStack> getStacks() {
1909 return mTaskStackContainers.mChildren;
1910 }
1911
1912 @VisibleForTesting
Wale Ogunwale61911492017-10-11 08:50:50 -07001913 TaskStack getTopStack() {
1914 return mTaskStackContainers.getTopStack();
Bryce Lee48f4b572017-04-10 10:54:15 -07001915 }
1916
Winson Chunge2d72172018-01-25 17:46:20 +00001917 ArrayList<Task> getVisibleTasks() {
1918 return mTaskStackContainers.getVisibleTasks();
1919 }
1920
Wale Ogunwale61911492017-10-11 08:50:50 -07001921 void onStackWindowingModeChanged(TaskStack stack) {
1922 mTaskStackContainers.onStackWindowingModeChanged(stack);
Bryce Lee48f4b572017-04-10 10:54:15 -07001923 }
1924
Andrii Kulian441e4492016-09-29 15:25:00 -07001925 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -07001926 public void onConfigurationChanged(Configuration newParentConfig) {
Andrii Kulian441e4492016-09-29 15:25:00 -07001927 super.onConfigurationChanged(newParentConfig);
Tiger Huang7c610aa2018-10-27 00:01:01 +08001928 if (mDisplayPolicy != null) {
1929 mDisplayPolicy.onConfigurationChanged();
1930 }
Andrii Kulian441e4492016-09-29 15:25:00 -07001931
Evan Roskye747c3e2018-10-30 20:06:41 -07001932 // If there was no pinned stack, we still need to notify the controller of the display info
1933 // update as a result of the config change.
1934 if (mPinnedStackControllerLocked != null && !hasPinnedStack()) {
1935 mPinnedStackControllerLocked.onDisplayInfoChanged(getDisplayInfo());
1936 }
Evan Roskye747c3e2018-10-30 20:06:41 -07001937 }
1938
1939 /**
1940 * Updates the resources used by docked/pinned controllers. This needs to be called at the
1941 * beginning of a configuration update cascade since the metrics from these resources are used
1942 * for bounds calculations. Since ActivityDisplay initiates the configuration update, this
1943 * should be called from there instead of DisplayContent's onConfigurationChanged.
1944 */
1945 void preOnConfigurationChanged() {
Bryce Leef3c6a472017-11-14 14:53:06 -08001946 final DockedStackDividerController dividerController = getDockedDividerController();
1947
1948 if (dividerController != null) {
1949 getDockedDividerController().onConfigurationChanged();
1950 }
1951
1952 final PinnedStackController pinnedStackController = getPinnedStackController();
1953
1954 if (pinnedStackController != null) {
1955 getPinnedStackController().onConfigurationChanged();
1956 }
Andrii Kulian441e4492016-09-29 15:25:00 -07001957 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001958
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001959 @Override
1960 boolean fillsParent() {
1961 return true;
1962 }
1963
1964 @Override
1965 boolean isVisible() {
1966 return true;
1967 }
1968
1969 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001970 void onAppTransitionDone() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001971 super.onAppTransitionDone();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001972 mService.mWindowsChanged = true;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001973 }
1974
Robert Carr9785cf32018-04-25 15:06:07 -07001975 /**
1976 * In split-screen mode we process the IME containers above the docked divider
1977 * rather than directly above their target.
1978 */
1979 private boolean skipTraverseChild(WindowContainer child) {
lumarkff0ab692018-11-05 20:32:30 +08001980 if (child == mImeWindowsContainers && mInputMethodTarget != null
Robert Carr9785cf32018-04-25 15:06:07 -07001981 && !hasSplitScreenPrimaryStack()) {
1982 return true;
1983 }
1984 return false;
1985 }
1986
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001987 @Override
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001988 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1989 // Special handling so we can process IME windows with #forAllImeWindows above their IME
1990 // target, or here in order if there isn't an IME target.
1991 if (traverseTopToBottom) {
1992 for (int i = mChildren.size() - 1; i >= 0; --i) {
1993 final DisplayChildWindowContainer child = mChildren.get(i);
Robert Carr9785cf32018-04-25 15:06:07 -07001994 if (skipTraverseChild(child)) {
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001995 continue;
1996 }
Robert Carr9785cf32018-04-25 15:06:07 -07001997
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001998 if (child.forAllWindows(callback, traverseTopToBottom)) {
1999 return true;
2000 }
2001 }
2002 } else {
2003 final int count = mChildren.size();
2004 for (int i = 0; i < count; i++) {
2005 final DisplayChildWindowContainer child = mChildren.get(i);
Robert Carr9785cf32018-04-25 15:06:07 -07002006 if (skipTraverseChild(child)) {
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08002007 continue;
2008 }
Robert Carr9785cf32018-04-25 15:06:07 -07002009
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08002010 if (child.forAllWindows(callback, traverseTopToBottom)) {
2011 return true;
2012 }
2013 }
2014 }
2015 return false;
2016 }
2017
2018 boolean forAllImeWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
2019 return mImeWindowsContainers.forAllWindows(callback, traverseTopToBottom);
2020 }
2021
Wale Ogunwale399c8692017-05-08 14:22:42 -07002022 @Override
2023 int getOrientation() {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07002024 final WindowManagerPolicy policy = mService.mPolicy;
2025
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07002026 if (mService.mDisplayFrozen) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08002027 if (mLastWindowForcedOrientation != SCREEN_ORIENTATION_UNSPECIFIED) {
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07002028 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
2029 + " is frozen, return " + mLastWindowForcedOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07002030 // If the display is frozen, some activities may be in the middle of restarting, and
2031 // thus have removed their old window. If the window has the flag to hide the lock
2032 // screen, then the lock screen can re-appear and inflict its own orientation on us.
2033 // Keep the orientation stable until this all settles down.
Andrii Kulian8ee72852017-03-10 10:36:45 -08002034 return mLastWindowForcedOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07002035 } else if (policy.isKeyguardLocked()) {
2036 // Use the last orientation the while the display is frozen with the keyguard
2037 // locked. This could be the keyguard forced orientation or from a SHOW_WHEN_LOCKED
2038 // window. We don't want to check the show when locked window directly though as
2039 // things aren't stable while the display is frozen, for example the window could be
2040 // momentarily unavailable due to activity relaunch.
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07002041 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
2042 + " is frozen while keyguard locked, return " + mLastOrientation);
Andrii Kulian8ee72852017-03-10 10:36:45 -08002043 return mLastOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07002044 }
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07002045 } else {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002046 final int orientation = mAboveAppWindowsContainers.getOrientation();
2047 if (orientation != SCREEN_ORIENTATION_UNSET) {
2048 return orientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07002049 }
Wale Ogunwale51362492016-09-08 17:49:17 -07002050 }
2051
Wale Ogunwale399c8692017-05-08 14:22:42 -07002052 // Top system windows are not requesting an orientation. Start searching from apps.
2053 return mTaskStackContainers.getOrientation();
Wale Ogunwale51362492016-09-08 17:49:17 -07002054 }
2055
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002056 void updateDisplayInfo() {
Andrii Kuliancd097992017-03-23 18:31:59 -07002057 // Check if display metrics changed and update base values if needed.
2058 updateBaseDisplayMetricsIfNeeded();
2059
Craig Mautner722285e2012-09-07 13:55:58 -07002060 mDisplay.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -07002061 mDisplay.getMetrics(mDisplayMetrics);
Andrii Kuliancd097992017-03-23 18:31:59 -07002062
Garfield Tan2f145f22018-11-01 15:27:03 -07002063 onDisplayChanged(this);
Craig Mautner722285e2012-09-07 13:55:58 -07002064 }
2065
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07002066 void initializeDisplayBaseInfo() {
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07002067 final DisplayManagerInternal displayManagerInternal = mService.mDisplayManagerInternal;
2068 if (displayManagerInternal != null) {
2069 // Bootstrap the default logical display from the display manager.
2070 final DisplayInfo newDisplayInfo = displayManagerInternal.getDisplayInfo(mDisplayId);
2071 if (newDisplayInfo != null) {
2072 mDisplayInfo.copyFrom(newDisplayInfo);
2073 }
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07002074 }
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07002075
Andrii Kuliancd097992017-03-23 18:31:59 -07002076 updateBaseDisplayMetrics(mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight,
2077 mDisplayInfo.logicalDensityDpi);
2078 mInitialDisplayWidth = mDisplayInfo.logicalWidth;
2079 mInitialDisplayHeight = mDisplayInfo.logicalHeight;
2080 mInitialDisplayDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01002081 mInitialDisplayCutout = mDisplayInfo.displayCutout;
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07002082 }
2083
Andrii Kuliancd097992017-03-23 18:31:59 -07002084 /**
2085 * If display metrics changed, overrides are not set and it's not just a rotation - update base
2086 * values.
2087 */
2088 private void updateBaseDisplayMetricsIfNeeded() {
2089 // Get real display metrics without overrides from WM.
2090 mService.mDisplayManagerInternal.getNonOverrideDisplayInfo(mDisplayId, mDisplayInfo);
2091 final int orientation = mDisplayInfo.rotation;
2092 final boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
2093 final int newWidth = rotated ? mDisplayInfo.logicalHeight : mDisplayInfo.logicalWidth;
2094 final int newHeight = rotated ? mDisplayInfo.logicalWidth : mDisplayInfo.logicalHeight;
2095 final int newDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01002096 final DisplayCutout newCutout = mDisplayInfo.displayCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07002097
2098 final boolean displayMetricsChanged = mInitialDisplayWidth != newWidth
2099 || mInitialDisplayHeight != newHeight
Adrian Roos1cf585052018-01-03 18:43:27 +01002100 || mInitialDisplayDensity != mDisplayInfo.logicalDensityDpi
2101 || !Objects.equals(mInitialDisplayCutout, newCutout);
Andrii Kuliancd097992017-03-23 18:31:59 -07002102
2103 if (displayMetricsChanged) {
2104 // Check if display size or density is forced.
2105 final boolean isDisplaySizeForced = mBaseDisplayWidth != mInitialDisplayWidth
2106 || mBaseDisplayHeight != mInitialDisplayHeight;
2107 final boolean isDisplayDensityForced = mBaseDisplayDensity != mInitialDisplayDensity;
2108
2109 // If there is an override set for base values - use it, otherwise use new values.
2110 updateBaseDisplayMetrics(isDisplaySizeForced ? mBaseDisplayWidth : newWidth,
2111 isDisplaySizeForced ? mBaseDisplayHeight : newHeight,
2112 isDisplayDensityForced ? mBaseDisplayDensity : newDensity);
2113
2114 // Real display metrics changed, so we should also update initial values.
2115 mInitialDisplayWidth = newWidth;
2116 mInitialDisplayHeight = newHeight;
2117 mInitialDisplayDensity = newDensity;
Adrian Roos1cf585052018-01-03 18:43:27 +01002118 mInitialDisplayCutout = newCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07002119 mService.reconfigureDisplayLocked(this);
2120 }
2121 }
2122
Bryce Lee27cec322017-03-21 09:41:37 -07002123 /** Sets the maximum width the screen resolution can be */
2124 void setMaxUiWidth(int width) {
2125 if (DEBUG_DISPLAY) {
2126 Slog.v(TAG_WM, "Setting max ui width:" + width + " on display:" + getDisplayId());
2127 }
2128
2129 mMaxUiWidth = width;
2130
2131 // Update existing metrics.
2132 updateBaseDisplayMetrics(mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
2133 }
2134
2135 /** Update base (override) display metrics. */
2136 void updateBaseDisplayMetrics(int baseWidth, int baseHeight, int baseDensity) {
2137 mBaseDisplayWidth = baseWidth;
2138 mBaseDisplayHeight = baseHeight;
2139 mBaseDisplayDensity = baseDensity;
2140
2141 if (mMaxUiWidth > 0 && mBaseDisplayWidth > mMaxUiWidth) {
2142 mBaseDisplayHeight = (mMaxUiWidth * mBaseDisplayHeight) / mBaseDisplayWidth;
2143 mBaseDisplayDensity = (mMaxUiWidth * mBaseDisplayDensity) / mBaseDisplayWidth;
2144 mBaseDisplayWidth = mMaxUiWidth;
2145
2146 if (DEBUG_DISPLAY) {
2147 Slog.v(TAG_WM, "Applying config restraints:" + mBaseDisplayWidth + "x"
2148 + mBaseDisplayHeight + " at density:" + mBaseDisplayDensity
2149 + " on display:" + getDisplayId());
2150 }
2151 }
2152
2153 mBaseDisplayRect.set(0, 0, mBaseDisplayWidth, mBaseDisplayHeight);
Bryce Leef3c6a472017-11-14 14:53:06 -08002154
2155 updateBounds();
Bryce Lee27cec322017-03-21 09:41:37 -07002156 }
2157
Riddle Hsuf53da812018-08-15 22:00:27 +08002158 /**
2159 * Forces this display to use the specified density.
2160 *
2161 * @param density The density in DPI to use. If the value equals to initial density, the setting
2162 * will be cleared.
2163 * @param userId The target user to apply. Only meaningful when this is default display. If the
2164 * user id is {@link UserHandle#USER_CURRENT}, it means to apply current settings
2165 * so only need to configure display.
2166 */
2167 void setForcedDensity(int density, int userId) {
2168 final boolean clear = density == mInitialDisplayDensity;
2169 final boolean updateCurrent = userId == UserHandle.USER_CURRENT;
2170 if (mService.mCurrentUserId == userId || updateCurrent) {
2171 mBaseDisplayDensity = density;
2172 mService.reconfigureDisplayLocked(this);
2173 }
2174 if (updateCurrent) {
2175 // We are applying existing settings so no need to save it again.
2176 return;
2177 }
2178
2179 if (density == mInitialDisplayDensity) {
2180 density = 0;
2181 }
Chilun8753ad32018-10-09 15:56:45 +08002182 mService.mDisplayWindowSettings.setForcedDensity(this, density, userId);
Riddle Hsuf53da812018-08-15 22:00:27 +08002183 }
2184
2185 /** @param mode {@link #FORCE_SCALING_MODE_AUTO} or {@link #FORCE_SCALING_MODE_DISABLED}. */
2186 void setForcedScalingMode(@ForceScalingMode int mode) {
2187 if (mode != FORCE_SCALING_MODE_DISABLED) {
2188 mode = FORCE_SCALING_MODE_AUTO;
2189 }
2190
2191 mDisplayScalingDisabled = (mode != FORCE_SCALING_MODE_AUTO);
2192 Slog.i(TAG_WM, "Using display scaling mode: " + (mDisplayScalingDisabled ? "off" : "auto"));
2193 mService.reconfigureDisplayLocked(this);
2194
Chilun8753ad32018-10-09 15:56:45 +08002195 mService.mDisplayWindowSettings.setForcedScalingMode(this, mode);
Riddle Hsuf53da812018-08-15 22:00:27 +08002196 }
2197
2198 /** If the given width and height equal to initial size, the setting will be cleared. */
2199 void setForcedSize(int width, int height) {
2200 final boolean clear = mInitialDisplayWidth == width && mInitialDisplayHeight == height;
2201 if (!clear) {
2202 // Set some sort of reasonable bounds on the size of the display that we will try
2203 // to emulate.
2204 final int minSize = 200;
2205 final int maxScale = 2;
2206 width = Math.min(Math.max(width, minSize), mInitialDisplayWidth * maxScale);
2207 height = Math.min(Math.max(height, minSize), mInitialDisplayHeight * maxScale);
2208 }
2209
2210 Slog.i(TAG_WM, "Using new display size: " + width + "x" + height);
2211 updateBaseDisplayMetrics(width, height, mBaseDisplayDensity);
2212 mService.reconfigureDisplayLocked(this);
2213
2214 if (clear) {
2215 width = height = 0;
2216 }
Chilun8753ad32018-10-09 15:56:45 +08002217 mService.mDisplayWindowSettings.setForcedSize(this, width, height);
Riddle Hsuf53da812018-08-15 22:00:27 +08002218 }
2219
Wale Ogunwaledb506192017-12-08 10:57:32 -08002220 void getStableRect(Rect out) {
2221 out.set(mDisplayFrames.mStable);
Chong Zhangf66db432016-01-13 10:39:51 -08002222 }
2223
Wale Ogunwale61911492017-10-11 08:50:50 -07002224 TaskStack createStack(int stackId, boolean onTop, StackWindowController controller) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002225 if (DEBUG_STACK) Slog.d(TAG_WM, "Create new stackId=" + stackId + " on displayId="
2226 + mDisplayId);
Andrii Kulian839def92016-11-02 10:58:58 -07002227
Wale Ogunwale61911492017-10-11 08:50:50 -07002228 final TaskStack stack = new TaskStack(mService, stackId, controller);
2229 mTaskStackContainers.addStackToDisplay(stack, onTop);
Wale Ogunwale1666e312016-12-16 11:27:18 -08002230 return stack;
Andrii Kulian839def92016-11-02 10:58:58 -07002231 }
2232
Andrii Kulian51c1b672017-04-07 18:39:32 -07002233 void moveStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08002234 final DisplayContent prevDc = stack.getDisplayContent();
2235 if (prevDc == null) {
Andrii Kulian839def92016-11-02 10:58:58 -07002236 throw new IllegalStateException("Trying to move stackId=" + stack.mStackId
2237 + " which is not currently attached to any display");
2238 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08002239 if (prevDc.getDisplayId() == mDisplayId) {
Andrii Kulian839def92016-11-02 10:58:58 -07002240 throw new IllegalArgumentException("Trying to move stackId=" + stack.mStackId
2241 + " to its current displayId=" + mDisplayId);
2242 }
2243
lumark588a3e82018-07-20 18:53:54 +08002244 // Clean up all pending transitions when stack reparent to another display.
2245 stack.forAllAppWindows(AppWindowToken::removeFromPendingTransition);
2246
Wale Ogunwale61911492017-10-11 08:50:50 -07002247 prevDc.mTaskStackContainers.removeChild(stack);
Andrii Kulian51c1b672017-04-07 18:39:32 -07002248 mTaskStackContainers.addStackToDisplay(stack, onTop);
Craig Mautnerc00204b2013-03-05 15:02:14 -08002249 }
2250
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002251 @Override
2252 protected void addChild(DisplayChildWindowContainer child,
2253 Comparator<DisplayChildWindowContainer> comparator) {
2254 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
2255 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002256
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002257 @Override
2258 protected void addChild(DisplayChildWindowContainer child, int index) {
2259 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
2260 }
2261
2262 @Override
2263 protected void removeChild(DisplayChildWindowContainer child) {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002264 // Only allow removal of direct children from this display if the display is in the process
2265 // of been removed.
2266 if (mRemovingDisplay) {
2267 super.removeChild(child);
2268 return;
2269 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002270 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
Craig Mautnerbdc748af2013-12-02 14:08:25 -08002271 }
2272
Andrii Kuliand2765632016-12-12 22:26:34 -08002273 @Override
2274 void positionChildAt(int position, DisplayChildWindowContainer child, boolean includingParents) {
2275 // Children of the display are statically ordered, so the real intention here is to perform
2276 // the operation on the display and not the static direct children.
2277 getParent().positionChildAt(position, this, includingParents);
2278 }
2279
Riddle Hsu57831b52018-07-27 00:31:48 +08002280 void positionStackAt(int position, TaskStack child, boolean includingParents) {
2281 mTaskStackContainers.positionChildAt(position, child, includingParents);
Winson Chung59a47ded2018-01-25 17:46:06 +00002282 layoutAndAssignWindowLayersIfNeeded();
2283 }
2284
Garfield Tan4f71c5a2018-10-10 10:12:02 -07002285 /**
2286 * Used to obtain task ID when user taps on coordinate (x, y) in this display, and outside
2287 * current task in focus.
2288 *
2289 * This returns the task ID of the foremost task at (x, y) if the task is not home. Otherwise it
2290 * returns -1.
2291 *
2292 * @param x horizontal coordinate of the tap position
2293 * @param y vertical coordinate of the tap position
2294 * @return the task ID if a non-home task is found; -1 if not
2295 */
2296 int taskForTapOutside(int x, int y) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002297 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2298 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Garfield Tanf2e0a9e2018-10-16 09:42:02 -07002299 if (stack.isActivityTypeHome() && !stack.inMultiWindowMode()) {
Garfield Tan4f71c5a2018-10-10 10:12:02 -07002300 // We skip not only home stack, but also everything behind home because user can't
Garfield Tanf2e0a9e2018-10-16 09:42:02 -07002301 // see them when home stack is isn't in multi-window mode.
Garfield Tan4f71c5a2018-10-10 10:12:02 -07002302 break;
2303 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002304 final int taskId = stack.taskIdFromPoint(x, y);
2305 if (taskId != -1) {
2306 return taskId;
Craig Mautner967212c2013-04-13 21:10:58 -07002307 }
2308 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08002309 return -1;
Craig Mautnercf910b02013-04-23 11:23:27 -07002310 }
2311
Chong Zhang8e89b312015-09-09 15:09:30 -07002312 /**
Chong Zhangd8ceb852015-11-11 14:53:41 -08002313 * Find the task whose outside touch area (for resizing) (x, y) falls within.
Chong Zhang9184ec62015-09-24 12:32:21 -07002314 * Returns null if the touch doesn't fall into a resizing area.
Chong Zhang8e89b312015-09-09 15:09:30 -07002315 */
Wale Ogunwale15ead902016-09-02 14:30:11 -07002316 Task findTaskForResizePoint(int x, int y) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002317 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002318 mTmpTaskForResizePointSearchResult.reset();
Wale Ogunwale61911492017-10-11 08:50:50 -07002319 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2320 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002321 if (!stack.getWindowConfiguration().canResizeTask()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002322 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07002323 }
Chong Zhang9184ec62015-09-24 12:32:21 -07002324
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002325 stack.findTaskForResizePoint(x, y, delta, mTmpTaskForResizePointSearchResult);
2326 if (mTmpTaskForResizePointSearchResult.searchDone) {
2327 return mTmpTaskForResizePointSearchResult.taskForResize;
Chong Zhang8e89b312015-09-09 15:09:30 -07002328 }
2329 }
Chong Zhang9184ec62015-09-24 12:32:21 -07002330 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07002331 }
2332
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002333 void updateTouchExcludeRegion() {
2334 final Task focusedTask = (mFocusedApp != null ? mFocusedApp.getTask() : null);
David Stevensee9e2772017-02-09 16:30:27 -08002335 if (focusedTask == null) {
2336 mTouchExcludeRegion.setEmpty();
2337 } else {
2338 mTouchExcludeRegion.set(mBaseDisplayRect);
2339 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
2340 mTmpRect2.setEmpty();
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002341 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0;
2342 --stackNdx) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002343 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002344 stack.setTouchExcludeRegion(focusedTask, delta, mTouchExcludeRegion,
2345 mDisplayFrames.mContent, mTmpRect2);
David Stevensee9e2772017-02-09 16:30:27 -08002346 }
2347 // If we removed the focused task above, add it back and only leave its
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002348 // outside touch area in the exclusion. TapDetector is not interested in
David Stevensee9e2772017-02-09 16:30:27 -08002349 // any touch inside the focused task itself.
2350 if (!mTmpRect2.isEmpty()) {
2351 mTouchExcludeRegion.op(mTmpRect2, Region.Op.UNION);
2352 }
Chong Zhangd8ceb852015-11-11 14:53:41 -08002353 }
lumark90120a82018-08-15 00:33:03 +08002354 if (mInputMethodWindow != null && mInputMethodWindow.isVisibleLw()) {
Filip Gruszczynski912d9192015-12-01 16:14:04 -08002355 // If the input method is visible and the user is typing, we don't want these touch
2356 // events to be intercepted and used to change focus. This would likely cause a
2357 // disappearance of the input method.
lumark90120a82018-08-15 00:33:03 +08002358 mInputMethodWindow.getTouchableRegion(mTmpRegion);
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002359 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
Filip Gruszczynski912d9192015-12-01 16:14:04 -08002360 }
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08002361 for (int i = mTapExcludedWindows.size() - 1; i >= 0; i--) {
Andrii Kulian4b6599e2018-01-15 17:24:08 -08002362 final WindowState win = mTapExcludedWindows.get(i);
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08002363 win.getTouchableRegion(mTmpRegion);
2364 mTouchExcludeRegion.op(mTmpRegion, Region.Op.UNION);
2365 }
Andrii Kulian4b6599e2018-01-15 17:24:08 -08002366 for (int i = mTapExcludeProvidingWindows.size() - 1; i >= 0; i--) {
2367 final WindowState win = mTapExcludeProvidingWindows.valueAt(i);
2368 win.amendTapExcludeRegion(mTouchExcludeRegion);
2369 }
Andrii Kulian03c403d2016-11-11 11:14:12 -08002370 // TODO(multi-display): Support docked stacks on secondary displays.
Matthew Ng64e77cf2017-10-31 14:01:31 -07002371 if (mDisplayId == DEFAULT_DISPLAY && getSplitScreenPrimaryStack() != null) {
Jorim Jaggid47e7e12016-03-01 09:57:38 +01002372 mDividerControllerLocked.getTouchRegion(mTmpRect);
Jorim Jaggi7f19cb82016-03-25 19:37:44 -07002373 mTmpRegion.set(mTmpRect);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01002374 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
2375 }
Craig Mautner1bef3892015-02-17 15:09:47 -08002376 if (mTapDetector != null) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -07002377 mTapDetector.setTouchExcludeRegion(mTouchExcludeRegion);
Craig Mautner1bef3892015-02-17 15:09:47 -08002378 }
Craig Mautner6601b7b2013-04-29 10:29:11 -07002379 }
2380
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002381 @Override
Wale Ogunwalee05f5012016-09-16 16:27:29 -07002382 void switchUser() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002383 super.switchUser();
2384 mService.mWindowsChanged = true;
Craig Mautner858d8a62013-04-23 17:08:34 -07002385 }
2386
Wale Ogunwaleac2561e2016-11-01 15:43:46 -07002387 private void resetAnimationBackgroundAnimator() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002388 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2389 mTaskStackContainers.getChildAt(stackNdx).resetAnimationBackgroundAnimator();
Craig Mautner05d29032013-05-03 13:40:13 -07002390 }
2391 }
2392
Wale Ogunwale10124582016-09-15 20:25:50 -07002393 @Override
2394 void removeIfPossible() {
2395 if (isAnimating()) {
2396 mDeferredRemoval = true;
2397 return;
Craig Mautner2eb15342013-08-07 13:13:35 -07002398 }
Wale Ogunwale10124582016-09-15 20:25:50 -07002399 removeImmediately();
Craig Mautner2eb15342013-08-07 13:13:35 -07002400 }
2401
Wale Ogunwale10124582016-09-15 20:25:50 -07002402 @Override
2403 void removeImmediately() {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002404 mRemovingDisplay = true;
2405 try {
lumark588a3e82018-07-20 18:53:54 +08002406 // Clear all transitions & screen frozen states when removing display.
2407 mOpeningApps.clear();
2408 mClosingApps.clear();
2409 mUnknownAppVisibilityController.clear();
2410 mAppTransition.removeAppTransitionTimeoutCallbacks();
2411 handleAnimatingStoppedAndTransition();
2412 mService.stopFreezingDisplayLocked();
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002413 super.removeImmediately();
2414 if (DEBUG_DISPLAY) Slog.v(TAG_WM, "Removing display=" + this);
Arthur Hungbe5ce212018-09-13 18:41:56 +08002415 if (mPointerEventDispatcher != null && mTapDetector != null) {
2416 unregisterPointerEventListener(mTapDetector);
2417 unregisterPointerEventListener(mService.mMousePositionTracker);
2418 mTapDetector = null;
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002419 }
Jorim Jaggia3844032018-01-03 15:54:43 +01002420 mService.mAnimator.removeDisplayLocked(mDisplayId);
Louis Chang207f9112018-07-30 08:58:54 +08002421 mWindowingLayer.release();
2422 mOverlayLayer.release();
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002423 } finally {
Riddle Hsu4e611772018-10-31 18:58:28 +08002424 mDisplayReady = false;
Wale Ogunwale601a3f02016-10-17 08:39:39 -07002425 mRemovingDisplay = false;
Craig Mautner95da1082014-02-24 17:54:35 -08002426 }
Tiger Huang7c610aa2018-10-27 00:01:01 +08002427 mDisplayPolicy.onDisplayRemoved();
Arthur Hung39134b22018-08-14 11:58:28 +08002428 mInputMonitor.onRemoved();
Riddle Hsuf53da812018-08-15 22:00:27 +08002429 mService.mWindowPlacerLocked.requestTraversal();
Craig Mautner95da1082014-02-24 17:54:35 -08002430 }
2431
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002432 /** Returns true if a removal action is still being deferred. */
Wale Ogunwale10124582016-09-15 20:25:50 -07002433 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002434 boolean checkCompleteDeferredRemoval() {
Wale Ogunwale10124582016-09-15 20:25:50 -07002435 final boolean stillDeferringRemoval = super.checkCompleteDeferredRemoval();
2436
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002437 if (!stillDeferringRemoval && mDeferredRemoval) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002438 removeImmediately();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002439 return false;
Craig Mautner95da1082014-02-24 17:54:35 -08002440 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07002441 return true;
Craig Mautner95da1082014-02-24 17:54:35 -08002442 }
2443
Andrii Kulian0214ed92017-05-16 13:44:05 -07002444 /** @return 'true' if removal of this display content is deferred due to active animation. */
2445 boolean isRemovalDeferred() {
2446 return mDeferredRemoval;
2447 }
2448
Wale Ogunwale10124582016-09-15 20:25:50 -07002449 boolean animateForIme(float interpolatedValue, float animationTarget,
2450 float dividerAnimationTarget) {
2451 boolean updated = false;
2452
Wale Ogunwale61911492017-10-11 08:50:50 -07002453 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2454 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002455 if (stack == null || !stack.isAdjustedForIme()) {
2456 continue;
2457 }
2458
2459 if (interpolatedValue >= 1f && animationTarget == 0f && dividerAnimationTarget == 0f) {
2460 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
2461 updated = true;
2462 } else {
2463 mDividerControllerLocked.mLastAnimationProgress =
2464 mDividerControllerLocked.getInterpolatedAnimationValue(interpolatedValue);
2465 mDividerControllerLocked.mLastDividerProgress =
2466 mDividerControllerLocked.getInterpolatedDividerValue(interpolatedValue);
2467 updated |= stack.updateAdjustForIme(
2468 mDividerControllerLocked.mLastAnimationProgress,
2469 mDividerControllerLocked.mLastDividerProgress,
2470 false /* force */);
2471 }
2472 if (interpolatedValue >= 1f) {
2473 stack.endImeAdjustAnimation();
2474 }
2475 }
2476
2477 return updated;
2478 }
2479
2480 boolean clearImeAdjustAnimation() {
2481 boolean changed = false;
Wale Ogunwale61911492017-10-11 08:50:50 -07002482 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2483 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002484 if (stack != null && stack.isAdjustedForIme()) {
2485 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
2486 changed = true;
2487 }
2488 }
2489 return changed;
2490 }
2491
2492 void beginImeAdjustAnimation() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002493 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2494 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002495 if (stack.isVisible() && stack.isAdjustedForIme()) {
2496 stack.beginImeAdjustAnimation();
2497 }
2498 }
2499 }
2500
2501 void adjustForImeIfNeeded() {
lumark90120a82018-08-15 00:33:03 +08002502 final WindowState imeWin = mInputMethodWindow;
Wale Ogunwale10124582016-09-15 20:25:50 -07002503 final boolean imeVisible = imeWin != null && imeWin.isVisibleLw() && imeWin.isDisplayedLw()
2504 && !mDividerControllerLocked.isImeHideRequested();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002505 final boolean dockVisible = isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Wale Ogunwale10124582016-09-15 20:25:50 -07002506 final TaskStack imeTargetStack = mService.getImeFocusStackLocked();
2507 final int imeDockSide = (dockVisible && imeTargetStack != null) ?
2508 imeTargetStack.getDockSide() : DOCKED_INVALID;
2509 final boolean imeOnTop = (imeDockSide == DOCKED_TOP);
2510 final boolean imeOnBottom = (imeDockSide == DOCKED_BOTTOM);
2511 final boolean dockMinimized = mDividerControllerLocked.isMinimizedDock();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002512 final int imeHeight = mDisplayFrames.getInputMethodWindowVisibleHeight();
Wale Ogunwale10124582016-09-15 20:25:50 -07002513 final boolean imeHeightChanged = imeVisible &&
2514 imeHeight != mDividerControllerLocked.getImeHeightAdjustedFor();
2515
2516 // The divider could be adjusted for IME position, or be thinner than usual,
2517 // or both. There are three possible cases:
2518 // - If IME is visible, and focus is on top, divider is not moved for IME but thinner.
2519 // - If IME is visible, and focus is on bottom, divider is moved for IME and thinner.
2520 // - If IME is not visible, divider is not moved and is normal width.
2521
2522 if (imeVisible && dockVisible && (imeOnTop || imeOnBottom) && !dockMinimized) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002523 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2524 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002525 final boolean isDockedOnBottom = stack.getDockSide() == DOCKED_BOTTOM;
Wale Ogunwale68278562017-09-23 17:13:55 -07002526 if (stack.isVisible() && (imeOnBottom || isDockedOnBottom)
2527 && stack.inSplitScreenWindowingMode()) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002528 stack.setAdjustedForIme(imeWin, imeOnBottom && imeHeightChanged);
2529 } else {
2530 stack.resetAdjustedForIme(false);
2531 }
2532 }
2533 mDividerControllerLocked.setAdjustedForIme(
2534 imeOnBottom /*ime*/, true /*divider*/, true /*animate*/, imeWin, imeHeight);
2535 } else {
Wale Ogunwale61911492017-10-11 08:50:50 -07002536 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2537 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002538 stack.resetAdjustedForIme(!dockVisible);
2539 }
2540 mDividerControllerLocked.setAdjustedForIme(
2541 false /*ime*/, false /*divider*/, dockVisible /*animate*/, imeWin, imeHeight);
2542 }
Winson Chung655332c2016-10-31 13:14:28 -07002543 mPinnedStackControllerLocked.setAdjustedForIme(imeVisible, imeHeight);
Wale Ogunwale10124582016-09-15 20:25:50 -07002544 }
2545
2546 void prepareFreezingTaskBounds() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002547 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2548 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale10124582016-09-15 20:25:50 -07002549 stack.prepareFreezingTaskBounds();
2550 }
2551 }
2552
Wale Ogunwale94744212015-09-21 19:01:47 -07002553 void rotateBounds(int oldRotation, int newRotation, Rect bounds) {
Bryce Leef3c6a472017-11-14 14:53:06 -08002554 getBounds(mTmpRect, newRotation);
Evan Rosky39b6f232018-10-30 18:35:41 -07002555 rotateBounds(mTmpRect, oldRotation, newRotation, bounds);
2556 }
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002557
Evan Rosky39b6f232018-10-30 18:35:41 -07002558 void rotateBounds(Rect parentBounds, int oldRotation, int newRotation, Rect bounds) {
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002559 // Compute a transform matrix to undo the coordinate space transformation,
2560 // and present the window at the same physical position it previously occupied.
2561 final int deltaRotation = deltaRotation(newRotation, oldRotation);
Evan Rosky39b6f232018-10-30 18:35:41 -07002562 createRotationMatrix(
2563 deltaRotation, parentBounds.width(), parentBounds.height(), mTmpMatrix);
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002564
2565 mTmpRectF.set(bounds);
2566 mTmpMatrix.mapRect(mTmpRectF);
2567 mTmpRectF.round(bounds);
Wale Ogunwale94744212015-09-21 19:01:47 -07002568 }
2569
Wale Ogunwale4a02d812015-02-12 23:01:38 -08002570 static int deltaRotation(int oldRotation, int newRotation) {
2571 int delta = newRotation - oldRotation;
2572 if (delta < 0) delta += 4;
2573 return delta;
2574 }
2575
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002576 private static void createRotationMatrix(int rotation, float displayWidth, float displayHeight,
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002577 Matrix outMatrix) {
2578 // For rotations without Z-ordering we don't need the target rectangle's position.
2579 createRotationMatrix(rotation, 0 /* rectLeft */, 0 /* rectTop */, displayWidth,
2580 displayHeight, outMatrix);
2581 }
2582
2583 static void createRotationMatrix(int rotation, float rectLeft, float rectTop,
2584 float displayWidth, float displayHeight, Matrix outMatrix) {
2585 switch (rotation) {
2586 case ROTATION_0:
2587 outMatrix.reset();
2588 break;
2589 case ROTATION_270:
2590 outMatrix.setRotate(270, 0, 0);
2591 outMatrix.postTranslate(0, displayHeight);
2592 outMatrix.postTranslate(rectTop, 0);
2593 break;
2594 case ROTATION_180:
2595 outMatrix.reset();
2596 break;
2597 case ROTATION_90:
2598 outMatrix.setRotate(90, 0, 0);
2599 outMatrix.postTranslate(displayWidth, 0);
2600 outMatrix.postTranslate(-rectTop, rectLeft);
2601 break;
2602 }
2603 }
2604
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002605 @CallSuper
2606 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002607 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002608 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002609 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002610 proto.write(ID, mDisplayId);
Wale Ogunwale61911492017-10-11 08:50:50 -07002611 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2612 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002613 stack.writeToProto(proto, STACKS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002614 }
2615 mDividerControllerLocked.writeToProto(proto, DOCKED_STACK_DIVIDER_CONTROLLER);
2616 mPinnedStackControllerLocked.writeToProto(proto, PINNED_STACK_CONTROLLER);
Wale Ogunwale61911492017-10-11 08:50:50 -07002617 for (int i = mAboveAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2618 final WindowToken windowToken = mAboveAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002619 windowToken.writeToProto(proto, ABOVE_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002620 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002621 for (int i = mBelowAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2622 final WindowToken windowToken = mBelowAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002623 windowToken.writeToProto(proto, BELOW_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002624 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002625 for (int i = mImeWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2626 final WindowToken windowToken = mImeWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002627 windowToken.writeToProto(proto, IME_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002628 }
2629 proto.write(DPI, mBaseDisplayDensity);
2630 mDisplayInfo.writeToProto(proto, DISPLAY_INFO);
Steven Timotiusf2d68892017-08-28 17:00:01 -07002631 proto.write(ROTATION, mRotation);
2632 final ScreenRotationAnimation screenRotationAnimation =
2633 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
2634 if (screenRotationAnimation != null) {
2635 screenRotationAnimation.writeToProto(proto, SCREEN_ROTATION_ANIMATION);
2636 }
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002637 mDisplayFrames.writeToProto(proto, DISPLAY_FRAMES);
lumark588a3e82018-07-20 18:53:54 +08002638 mAppTransition.writeToProto(proto, APP_TRANSITION);
Louis Chang7501e332018-08-20 13:08:39 +08002639 proto.write(SURFACE_SIZE, mSurfaceSize);
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002640 if (mFocusedApp != null) {
2641 mFocusedApp.writeNameToProto(proto, FOCUSED_APP);
2642 }
Steven Timotiusaf03df62017-07-18 16:56:43 -07002643 proto.end(token);
2644 }
2645
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002646 @Override
2647 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2648 super.dump(pw, prefix, dumpAll);
Craig Mautnera91f9e22012-09-14 16:22:08 -07002649 pw.print(prefix); pw.print("Display: mDisplayId="); pw.println(mDisplayId);
2650 final String subPrefix = " " + prefix;
2651 pw.print(subPrefix); pw.print("init="); pw.print(mInitialDisplayWidth); pw.print("x");
2652 pw.print(mInitialDisplayHeight); pw.print(" "); pw.print(mInitialDisplayDensity);
2653 pw.print("dpi");
2654 if (mInitialDisplayWidth != mBaseDisplayWidth
2655 || mInitialDisplayHeight != mBaseDisplayHeight
2656 || mInitialDisplayDensity != mBaseDisplayDensity) {
2657 pw.print(" base=");
2658 pw.print(mBaseDisplayWidth); pw.print("x"); pw.print(mBaseDisplayHeight);
2659 pw.print(" "); pw.print(mBaseDisplayDensity); pw.print("dpi");
2660 }
Jeff Brownd46747a2015-04-15 19:02:36 -07002661 if (mDisplayScalingDisabled) {
2662 pw.println(" noscale");
2663 }
Craig Mautnera91f9e22012-09-14 16:22:08 -07002664 pw.print(" cur=");
2665 pw.print(mDisplayInfo.logicalWidth);
2666 pw.print("x"); pw.print(mDisplayInfo.logicalHeight);
2667 pw.print(" app=");
2668 pw.print(mDisplayInfo.appWidth);
2669 pw.print("x"); pw.print(mDisplayInfo.appHeight);
2670 pw.print(" rng="); pw.print(mDisplayInfo.smallestNominalAppWidth);
2671 pw.print("x"); pw.print(mDisplayInfo.smallestNominalAppHeight);
2672 pw.print("-"); pw.print(mDisplayInfo.largestNominalAppWidth);
2673 pw.print("x"); pw.println(mDisplayInfo.largestNominalAppHeight);
David Stevensf833ba92017-03-16 19:00:20 -07002674 pw.print(subPrefix + "deferred=" + mDeferredRemoval
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002675 + " mLayoutNeeded=" + mLayoutNeeded);
David Stevensf833ba92017-03-16 19:00:20 -07002676 pw.println(" mTouchExcludeRegion=" + mTouchExcludeRegion);
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002677
Craig Mautnerdc548482014-02-05 13:35:24 -08002678 pw.println();
Adrian Roos5251b1d2018-03-23 18:57:43 +01002679 pw.print(prefix); pw.print("mLayoutSeq="); pw.println(mLayoutSeq);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002680 pw.print(prefix);
2681 pw.print("mDeferredRotationPauseCount="); pw.println(mDeferredRotationPauseCount);
Adrian Roos5251b1d2018-03-23 18:57:43 +01002682
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002683 pw.print(" mCurrentFocus="); pw.println(mCurrentFocus);
2684 if (mLastFocus != mCurrentFocus) {
2685 pw.print(" mLastFocus="); pw.println(mLastFocus);
2686 }
2687 if (mLosingFocus.size() > 0) {
2688 pw.println();
2689 pw.println(" Windows losing focus:");
2690 for (int i = mLosingFocus.size() - 1; i >= 0; i--) {
2691 final WindowState w = mLosingFocus.get(i);
2692 pw.print(" Losing #"); pw.print(i); pw.print(' ');
2693 pw.print(w);
2694 if (dumpAll) {
2695 pw.println(":");
2696 w.dump(pw, " ", true);
2697 } else {
2698 pw.println();
2699 }
2700 }
2701 }
2702 pw.print(" mFocusedApp="); pw.println(mFocusedApp);
Tiger Huang7c610aa2018-10-27 00:01:01 +08002703 if (mLastStatusBarVisibility != 0) {
2704 pw.print(" mLastStatusBarVisibility=0x");
2705 pw.println(Integer.toHexString(mLastStatusBarVisibility));
2706 }
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002707
Adrian Roos5251b1d2018-03-23 18:57:43 +01002708 pw.println();
wilsonshihc32538e2018-11-07 17:27:34 +08002709 mWallpaperController.dump(pw, " ");
2710
2711 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002712 pw.println(prefix + "Application tokens in top down Z order:");
Wale Ogunwale61911492017-10-11 08:50:50 -07002713 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2714 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002715 stack.dump(pw, prefix + " ", dumpAll);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002716 }
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002717
Craig Mautnerdc548482014-02-05 13:35:24 -08002718 pw.println();
2719 if (!mExitingTokens.isEmpty()) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002720 pw.println();
2721 pw.println(" Exiting tokens:");
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002722 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002723 final WindowToken token = mExitingTokens.get(i);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002724 pw.print(" Exiting #"); pw.print(i);
2725 pw.print(' '); pw.print(token);
2726 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002727 token.dump(pw, " ", dumpAll);
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002728 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002729 }
Robert Carrf59b8dd2017-10-02 18:58:36 -07002730
Jorim Jaggi31f71702016-05-04 16:43:04 -07002731 pw.println();
Wale Ogunwale61911492017-10-11 08:50:50 -07002732
2733 // Dump stack references
2734 final TaskStack homeStack = getHomeStack();
2735 if (homeStack != null) {
2736 pw.println(prefix + "homeStack=" + homeStack.getName());
2737 }
2738 final TaskStack pinnedStack = getPinnedStack();
2739 if (pinnedStack != null) {
2740 pw.println(prefix + "pinnedStack=" + pinnedStack.getName());
2741 }
Matthew Ng64e77cf2017-10-31 14:01:31 -07002742 final TaskStack splitScreenPrimaryStack = getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07002743 if (splitScreenPrimaryStack != null) {
2744 pw.println(prefix + "splitScreenPrimaryStack=" + splitScreenPrimaryStack.getName());
2745 }
2746
2747 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002748 mDividerControllerLocked.dump(prefix, pw);
Winson Chung655332c2016-10-31 13:14:28 -07002749 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002750 mPinnedStackControllerLocked.dump(prefix, pw);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002751
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002752 pw.println();
2753 mDisplayFrames.dump(prefix, pw);
Arthur Hung95b38a92018-07-20 18:56:12 +08002754 pw.println();
Riddle Hsu5ce4bb32018-07-18 16:11:30 +08002755 mDisplayPolicy.dump(prefix, pw);
2756 pw.println();
Riddle Hsuad256a12018-07-18 16:11:30 +08002757 mDisplayRotation.dump(prefix, pw);
2758 pw.println();
Arthur Hung95b38a92018-07-20 18:56:12 +08002759 mInputMonitor.dump(pw, " ");
Jorim Jaggif96c90a2018-09-26 16:55:15 +02002760 pw.println();
2761 mInsetsStateController.dump(prefix, pw);
Craig Mautner59c00972012-07-30 12:10:24 -07002762 }
Craig Mautnere0a38842013-12-16 16:14:02 -08002763
2764 @Override
2765 public String toString() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002766 return "Display " + mDisplayId + " info=" + mDisplayInfo + " stacks=" + mChildren;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002767 }
2768
2769 String getName() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002770 return "Display " + mDisplayId + " name=\"" + mDisplayInfo.name + "\"";
Craig Mautnere0a38842013-12-16 16:14:02 -08002771 }
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002772
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002773 /** Returns true if the stack in the windowing mode is visible. */
2774 boolean isStackVisible(int windowingMode) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002775 final TaskStack stack = getTopStackInWindowingMode(windowingMode);
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002776 return stack != null && stack.isVisible();
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08002777 }
2778
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002779 /** Find the visible, touch-deliverable window under the given point */
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002780 WindowState getTouchableWinAtPointLocked(float xf, float yf) {
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002781 final int x = (int) xf;
2782 final int y = (int) yf;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002783 final WindowState touchedWin = getWindow(w -> {
2784 final int flags = w.mAttrs.flags;
2785 if (!w.isVisibleLw()) {
2786 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002787 }
2788 if ((flags & FLAG_NOT_TOUCHABLE) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002789 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002790 }
2791
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002792 w.getVisibleBounds(mTmpRect);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002793 if (!mTmpRect.contains(x, y)) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002794 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002795 }
2796
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002797 w.getTouchableRegion(mTmpRegion);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002798
2799 final int touchFlags = flags & (FLAG_NOT_FOCUSABLE | FLAG_NOT_TOUCH_MODAL);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002800 return mTmpRegion.contains(x, y) || touchFlags == 0;
2801 });
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002802
2803 return touchedWin;
2804 }
Jorim Jaggi6626f542016-08-22 13:08:44 -07002805
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002806 boolean canAddToastWindowForUid(int uid) {
2807 // We allow one toast window per UID being shown at a time.
Svet Ganovdaca8ee2017-01-21 17:40:40 -08002808 // Also if the app is focused adding more than one toast at
2809 // a time for better backwards compatibility.
2810 final WindowState focusedWindowForUid = getWindow(w ->
2811 w.mOwnerUid == uid && w.isFocused());
2812 if (focusedWindowForUid != null) {
2813 return true;
2814 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002815 final WindowState win = getWindow(w ->
2816 w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == uid && !w.mPermanentlyHidden
2817 && !w.mWindowRemovalAllowed);
2818 return win == null;
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002819 }
2820
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002821 void scheduleToastWindowsTimeoutIfNeededLocked(WindowState oldFocus, WindowState newFocus) {
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002822 if (oldFocus == null || (newFocus != null && newFocus.mOwnerUid == oldFocus.mOwnerUid)) {
2823 return;
2824 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002825
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002826 // Used to communicate the old focus to the callback method.
2827 mTmpWindow = oldFocus;
2828
2829 forAllWindows(mScheduleToastTimeout, false /* traverseTopToBottom */);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002830 }
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002831
2832 WindowState findFocusedWindow() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002833 mTmpWindow = null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002834
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002835 forAllWindows(mFindFocusedWindow, true /* traverseTopToBottom */);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002836
2837 if (mTmpWindow == null) {
2838 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: No focusable windows.");
2839 return null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002840 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002841 return mTmpWindow;
Wale Ogunwaleec731152016-09-08 20:18:57 -07002842 }
2843
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002844
2845 /**
2846 * Update the focused window and make some adjustments if the focus has changed.
2847 *
2848 * @param mode Indicates the situation we are in. Possible modes are:
2849 * {@link WindowManagerService#UPDATE_FOCUS_NORMAL},
2850 * {@link WindowManagerService#UPDATE_FOCUS_PLACING_SURFACES},
2851 * {@link WindowManagerService#UPDATE_FOCUS_WILL_PLACE_SURFACES},
2852 * {@link WindowManagerService#UPDATE_FOCUS_REMOVING_FOCUS}
2853 * @param updateInputWindows Whether to sync the window information to the input module.
2854 * @return {@code true} if the focused window has changed.
2855 */
2856 boolean updateFocusedWindowLocked(int mode, boolean updateInputWindows, boolean focusFound) {
2857 final WindowState newFocus = findFocusedWindow();
2858 if (mCurrentFocus == newFocus) {
2859 return false;
2860 }
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002861 boolean imWindowChanged = false;
2862 // TODO (b/111080190): Multi-Session IME
2863 if (!focusFound) {
2864 final WindowState imWindow = mInputMethodWindow;
2865 if (imWindow != null) {
lumarkff0ab692018-11-05 20:32:30 +08002866 final WindowState prevTarget = mInputMethodTarget;
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002867
2868 final WindowState newTarget = computeImeTarget(true /* updateImeTarget*/);
2869 imWindowChanged = prevTarget != newTarget;
2870
2871 if (mode != UPDATE_FOCUS_WILL_ASSIGN_LAYERS
2872 && mode != UPDATE_FOCUS_WILL_PLACE_SURFACES) {
2873 assignWindowLayers(false /* setLayoutNeeded */);
2874 }
2875 }
2876 }
2877
2878 if (imWindowChanged) {
2879 mService.mWindowsChanged = true;
2880 setLayoutNeeded();
2881 }
2882
2883 if (DEBUG_FOCUS_LIGHT || mService.localLOGV) Slog.v(TAG_WM, "Changing focus from "
2884 + mCurrentFocus + " to " + newFocus + " displayId=" + getDisplayId()
2885 + " Callers=" + Debug.getCallers(4));
2886 final WindowState oldFocus = mCurrentFocus;
2887 mCurrentFocus = newFocus;
2888 mLosingFocus.remove(newFocus);
2889
2890 if (newFocus != null) {
2891 mWinAddedSinceNullFocus.clear();
2892 mWinRemovedSinceNullFocus.clear();
2893
2894 if (newFocus.canReceiveKeys()) {
2895 // Displaying a window implicitly causes dispatching to be unpaused.
2896 // This is to protect against bugs if someone pauses dispatching but
2897 // forgets to resume.
2898 newFocus.mToken.paused = false;
2899 }
2900 }
2901
Tiger Huang7c610aa2018-10-27 00:01:01 +08002902 int focusChanged = getDisplayPolicy().focusChangedLw(oldFocus, newFocus);
Tiger Huang1e5b10a2018-07-30 20:19:51 +08002903
2904 if (imWindowChanged && oldFocus != mInputMethodWindow) {
2905 // Focus of the input method window changed. Perform layout if needed.
2906 if (mode == UPDATE_FOCUS_PLACING_SURFACES) {
2907 performLayout(true /*initial*/, updateInputWindows);
2908 focusChanged &= ~FINISH_LAYOUT_REDO_LAYOUT;
2909 } else if (mode == UPDATE_FOCUS_WILL_PLACE_SURFACES) {
2910 // Client will do the layout, but we need to assign layers
2911 // for handleNewWindowLocked() below.
2912 assignWindowLayers(false /* setLayoutNeeded */);
2913 }
2914 }
2915
2916 if ((focusChanged & FINISH_LAYOUT_REDO_LAYOUT) != 0) {
2917 // The change in focus caused us to need to do a layout. Okay.
2918 setLayoutNeeded();
2919 if (mode == UPDATE_FOCUS_PLACING_SURFACES) {
2920 performLayout(true /*initial*/, updateInputWindows);
2921 } else if (mode == UPDATE_FOCUS_REMOVING_FOCUS) {
2922 mService.mRoot.performSurfacePlacement(false);
2923 }
2924 }
2925
2926 if (mode != UPDATE_FOCUS_WILL_ASSIGN_LAYERS) {
2927 // If we defer assigning layers, then the caller is responsible for doing this part.
2928 getInputMonitor().setInputFocusLw(newFocus, updateInputWindows);
2929 }
2930
2931 adjustForImeIfNeeded();
2932
2933 // We may need to schedule some toast windows to be removed. The toasts for an app that
2934 // does not have input focus are removed within a timeout to prevent apps to redress
2935 // other apps' UI.
2936 scheduleToastWindowsTimeoutIfNeededLocked(oldFocus, newFocus);
2937
2938 if (mode == UPDATE_FOCUS_PLACING_SURFACES) {
2939 pendingLayoutChanges |= FINISH_LAYOUT_REDO_ANIM;
2940 }
2941 return true;
2942 }
2943
2944 /**
2945 * Set the new focused app to this display.
2946 *
2947 * @param newFocus the new focused AppWindowToken.
2948 * @return true if the focused app is changed.
2949 */
2950 boolean setFocusedApp(AppWindowToken newFocus) {
2951 if (newFocus != null) {
2952 final DisplayContent appDisplay = newFocus.getDisplayContent();
2953 if (appDisplay != this) {
2954 throw new IllegalStateException(newFocus + " is not on " + getName()
2955 + " but " + ((appDisplay != null) ? appDisplay.getName() : "none"));
2956 }
2957 }
2958 if (mFocusedApp == newFocus) {
2959 return false;
2960 }
2961 mFocusedApp = newFocus;
2962 getInputMonitor().setFocusedAppLw(newFocus);
2963 updateTouchExcludeRegion();
2964 return true;
2965 }
2966
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002967 /** Updates the layer assignment of windows on this display. */
2968 void assignWindowLayers(boolean setLayoutNeeded) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002969 Trace.traceBegin(Trace.TRACE_TAG_WINDOW_MANAGER, "assignWindowLayers");
Robert Carrf59b8dd2017-10-02 18:58:36 -07002970 assignChildLayers(getPendingTransaction());
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002971 if (setLayoutNeeded) {
2972 setLayoutNeeded();
2973 }
Robert Carrb1579c82017-09-05 14:54:47 -07002974
Robert Carrf59b8dd2017-10-02 18:58:36 -07002975 // We accumlate the layer changes in-to "getPendingTransaction()" but we defer
Robert Carrb1579c82017-09-05 14:54:47 -07002976 // the application of this transaction until the animation pass triggers
2977 // prepareSurfaces. This allows us to synchronize Z-ordering changes with
2978 // the hiding and showing of surfaces.
2979 scheduleAnimation();
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002980 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002981 }
2982
Wale Ogunwale1666e312016-12-16 11:27:18 -08002983 // TODO: This should probably be called any time a visual change is made to the hierarchy like
2984 // moving containers or resizing them. Need to investigate the best way to have it automatically
2985 // happen so we don't run into issues with programmers forgetting to do it.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002986 void layoutAndAssignWindowLayersIfNeeded() {
2987 mService.mWindowsChanged = true;
2988 setLayoutNeeded();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002989
2990 if (!mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
2991 false /*updateInputWindows*/)) {
2992 assignWindowLayers(false /* setLayoutNeeded */);
2993 }
2994
Arthur Hung95b38a92018-07-20 18:56:12 +08002995 mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002996 mService.mWindowPlacerLocked.performSurfacePlacement();
Arthur Hung95b38a92018-07-20 18:56:12 +08002997 mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002998 }
2999
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003000 /** Returns true if a leaked surface was destroyed */
3001 boolean destroyLeakedSurfaces() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003002 // Used to indicate that a surface was leaked.
3003 mTmpWindow = null;
3004 forAllWindows(w -> {
3005 final WindowStateAnimator wsa = w.mWinAnimator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003006 if (wsa.mSurfaceController == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003007 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003008 }
3009 if (!mService.mSessions.contains(wsa.mSession)) {
3010 Slog.w(TAG_WM, "LEAKED SURFACE (session doesn't exist): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003011 + w + " surface=" + wsa.mSurfaceController
3012 + " token=" + w.mToken
3013 + " pid=" + w.mSession.mPid
3014 + " uid=" + w.mSession.mUid);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003015 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003016 mService.mForceRemoves.add(w);
3017 mTmpWindow = w;
Wale Ogunwale89973222017-04-23 18:39:45 -07003018 } else if (w.mAppToken != null && w.mAppToken.isClientHidden()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003019 Slog.w(TAG_WM, "LEAKED SURFACE (app token hidden): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003020 + w + " surface=" + wsa.mSurfaceController
Jorim Jaggie7d2b852017-08-28 17:55:15 +02003021 + " token=" + w.mAppToken);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003022 if (SHOW_TRANSACTIONS) logSurface(w, "LEAK DESTROY", false);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003023 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003024 mTmpWindow = w;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003025 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003026 }, false /* traverseTopToBottom */);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003027
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003028 return mTmpWindow != null;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003029 }
3030
3031 /**
lumark90120a82018-08-15 00:33:03 +08003032 * Set input method window for the display.
3033 * @param win Set when window added or Null when destroyed.
3034 */
3035 void setInputMethodWindowLocked(WindowState win) {
3036 mInputMethodWindow = win;
lumark70865a82018-09-17 16:56:26 +08003037 // Update display configuration for IME process.
3038 if (mInputMethodWindow != null) {
3039 final int imePid = mInputMethodWindow.mSession.mPid;
3040 mService.mAtmInternal.onImeWindowSetOnDisplay(imePid,
3041 mInputMethodWindow.getDisplayId());
3042 }
lumark90120a82018-08-15 00:33:03 +08003043 computeImeTarget(true /* updateImeTarget */);
Jorim Jaggif96c90a2018-09-26 16:55:15 +02003044 mInsetsStateController.getSourceProvider(TYPE_IME).setWindow(win,
3045 null /* frameProvider */);
lumark90120a82018-08-15 00:33:03 +08003046 }
3047
3048 /**
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003049 * Determine and return the window that should be the IME target.
3050 * @param updateImeTarget If true the system IME target will be updated to match what we found.
3051 * @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 +00003052 */
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003053 WindowState computeImeTarget(boolean updateImeTarget) {
lumark90120a82018-08-15 00:33:03 +08003054 if (mInputMethodWindow == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003055 // There isn't an IME so there shouldn't be a target...That was easy!
3056 if (updateImeTarget) {
3057 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from "
lumarkff0ab692018-11-05 20:32:30 +08003058 + mInputMethodTarget + " to null since mInputMethodWindow is null");
3059 setInputMethodTarget(null, mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003060 }
3061 return null;
3062 }
3063
lumarkff0ab692018-11-05 20:32:30 +08003064 final WindowState curTarget = mInputMethodTarget;
Chavi Weingarten3a748552018-05-14 17:32:42 +00003065 if (!canUpdateImeTarget()) {
3066 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Defer updating IME target");
3067 return curTarget;
3068 }
3069
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003070 // TODO(multidisplay): Needs some serious rethought when the target and IME are not on the
3071 // same display. Or even when the current IME/target are not on the same screen as the next
3072 // IME/target. For now only look for input windows on the main screen.
Wale Ogunwale8e44f6c2017-03-09 15:25:10 -08003073 mUpdateImeTarget = updateImeTarget;
3074 WindowState target = getWindow(mComputeImeTargetPredicate);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003075
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003076
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003077 // Yet more tricksyness! If this window is a "starting" window, we do actually want
3078 // to be on top of it, but it is not -really- where input will go. So look down below
3079 // for a real window to target...
3080 if (target != null && target.mAttrs.type == TYPE_APPLICATION_STARTING) {
3081 final AppWindowToken token = target.mAppToken;
3082 if (token != null) {
3083 final WindowState betterTarget = token.getImeTargetBelowWindow(target);
3084 if (betterTarget != null) {
3085 target = betterTarget;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003086 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003087 }
3088 }
3089
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003090 if (DEBUG_INPUT_METHOD && updateImeTarget) Slog.v(TAG_WM,
lumarkff0ab692018-11-05 20:32:30 +08003091 "Proposed new IME target: " + target + " for display: " + getDisplayId());
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003092
chaviw1c13ad32018-06-12 16:44:23 -07003093 // Now, a special case -- if the last target's window is in the process of exiting, but
3094 // not removed, and the new target is home, keep on the last target to avoid flicker.
3095 // Home is a special case since its above other stacks in the ordering list, but layed
3096 // out below the others.
3097 if (curTarget != null && !curTarget.mRemoved && curTarget.isDisplayedLw()
3098 && curTarget.isClosing() && (target == null || target.isActivityTypeHome())) {
chaviw4ad54912018-05-30 11:05:44 -07003099 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "New target is home while current target is "
Chavi Weingarten3a748552018-05-14 17:32:42 +00003100 + "closing, not changing");
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003101 return curTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003102 }
3103
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003104 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Desired input method target=" + target
3105 + " updateImeTarget=" + updateImeTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003106
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003107 if (target == null) {
3108 if (updateImeTarget) {
3109 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget
3110 + " to null." + (SHOW_STACK_CRAWLS ? " Callers="
3111 + Debug.getCallers(4) : ""));
lumarkff0ab692018-11-05 20:32:30 +08003112 setInputMethodTarget(null, mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003113 }
3114
3115 return null;
3116 }
3117
3118 if (updateImeTarget) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003119 AppWindowToken token = curTarget == null ? null : curTarget.mAppToken;
3120 if (token != null) {
3121
3122 // Now some fun for dealing with window animations that modify the Z order. We need
3123 // to look at all windows below the current target that are in this app, finding the
3124 // highest visible one in layering.
3125 WindowState highestTarget = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003126 if (token.isSelfAnimating()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003127 highestTarget = token.getHighestAnimLayerWindow(curTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003128 }
3129
3130 if (highestTarget != null) {
lumark588a3e82018-07-20 18:53:54 +08003131 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, mAppTransition + " " + highestTarget
Jorim Jaggi35d328a2018-08-14 17:00:20 +02003132 + " animating=" + highestTarget.isAnimating());
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003133
lumark588a3e82018-07-20 18:53:54 +08003134 if (mAppTransition.isTransitionSet()) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003135 // If we are currently setting up for an animation, hold everything until we
3136 // can find out what will happen.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00003137 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003138 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003139 }
3140 }
3141 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003142
3143 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget + " to "
3144 + target + (SHOW_STACK_CRAWLS ? " Callers=" + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00003145 setInputMethodTarget(target, false);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003146 }
3147
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003148 return target;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003149 }
3150
lumarkff0ab692018-11-05 20:32:30 +08003151 /**
3152 * Calling {@link #computeImeTarget(boolean)} to update the input method target window in
3153 * the candidate app window token if needed.
3154 */
3155 void computeImeTargetIfNeeded(AppWindowToken candidate) {
3156 if (mInputMethodTarget != null && mInputMethodTarget.mAppToken == candidate) {
3157 computeImeTarget(true /* updateImeTarget */);
3158 }
3159 }
3160
Jorim Jaggib0fc8172017-11-23 17:04:08 +00003161 private void setInputMethodTarget(WindowState target, boolean targetWaitingAnim) {
lumarkff0ab692018-11-05 20:32:30 +08003162 if (target == mInputMethodTarget && mInputMethodTargetWaitingAnim == targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003163 return;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003164 }
3165
lumarkff0ab692018-11-05 20:32:30 +08003166 mInputMethodTarget = target;
3167 mInputMethodTargetWaitingAnim = targetWaitingAnim;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003168 assignWindowLayers(false /* setLayoutNeeded */);
3169 }
3170
3171 boolean getNeedsMenu(WindowState top, WindowManagerPolicy.WindowState bottom) {
3172 if (top.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
3173 return top.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
3174 }
3175
3176 // Used to indicate we have reached the first window in the range we are interested in.
3177 mTmpWindow = null;
3178
3179 // TODO: Figure-out a more efficient way to do this.
3180 final WindowState candidate = getWindow(w -> {
3181 if (w == top) {
3182 // Reached the first window in the range we are interested in.
3183 mTmpWindow = w;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003184 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003185 if (mTmpWindow == null) {
3186 return false;
3187 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003188
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003189 if (w.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
3190 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003191 }
3192 // If we reached the bottom of the range of windows we are considering,
3193 // assume no menu is needed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003194 if (w == bottom) {
3195 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003196 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003197 return false;
3198 });
3199
3200 return candidate != null && candidate.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07003201 }
3202
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07003203 void setLayoutNeeded() {
3204 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "setLayoutNeeded: callers=" + Debug.getCallers(3));
3205 mLayoutNeeded = true;
3206 }
3207
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003208 private void clearLayoutNeeded() {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07003209 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "clearLayoutNeeded: callers=" + Debug.getCallers(3));
3210 mLayoutNeeded = false;
3211 }
3212
3213 boolean isLayoutNeeded() {
3214 return mLayoutNeeded;
3215 }
3216
Wale Ogunwale02319a62016-09-26 15:21:22 -07003217 void dumpTokens(PrintWriter pw, boolean dumpAll) {
3218 if (mTokenMap.isEmpty()) {
3219 return;
3220 }
3221 pw.println(" Display #" + mDisplayId);
3222 final Iterator<WindowToken> it = mTokenMap.values().iterator();
3223 while (it.hasNext()) {
3224 final WindowToken token = it.next();
3225 pw.print(" ");
3226 pw.print(token);
3227 if (dumpAll) {
3228 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003229 token.dump(pw, " ", dumpAll);
Wale Ogunwale02319a62016-09-26 15:21:22 -07003230 } else {
3231 pw.println();
3232 }
3233 }
lumark588a3e82018-07-20 18:53:54 +08003234
3235 if (!mOpeningApps.isEmpty() || !mClosingApps.isEmpty()) {
3236 pw.println();
3237 if (mOpeningApps.size() > 0) {
3238 pw.print(" mOpeningApps="); pw.println(mOpeningApps);
3239 }
3240 if (mClosingApps.size() > 0) {
3241 pw.print(" mClosingApps="); pw.println(mClosingApps);
3242 }
3243 }
3244
3245 mUnknownAppVisibilityController.dump(pw, " ");
Wale Ogunwale02319a62016-09-26 15:21:22 -07003246 }
3247
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07003248 void dumpWindowAnimators(PrintWriter pw, String subPrefix) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003249 final int[] index = new int[1];
3250 forAllWindows(w -> {
3251 final WindowStateAnimator wAnim = w.mWinAnimator;
3252 pw.println(subPrefix + "Window #" + index[0] + ": " + wAnim);
3253 index[0] = index[0] + 1;
3254 }, false /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07003255 }
3256
Jorim Jaggife762342016-10-13 14:33:27 +02003257 /**
3258 * Starts the Keyguard exit animation on all windows that don't belong to an app token.
3259 */
3260 void startKeyguardExitOnNonAppWindows(boolean onWallpaper, boolean goingToShade) {
3261 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003262 forAllWindows(w -> {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02003263 if (w.mAppToken == null && policy.canBeHiddenByKeyguardLw(w)
3264 && w.wouldBeVisibleIfPolicyIgnored() && !w.isVisible()) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01003265 w.startAnimation(policy.createHiddenByKeyguardExit(onWallpaper, goingToShade));
Jorim Jaggife762342016-10-13 14:33:27 +02003266 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003267 }, true /* traverseTopToBottom */);
Jorim Jaggife762342016-10-13 14:33:27 +02003268 }
3269
Wale Ogunwale494009b82016-10-21 09:01:38 -07003270 boolean checkWaitingForWindows() {
3271
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003272 mHaveBootMsg = false;
3273 mHaveApp = false;
3274 mHaveWallpaper = false;
3275 mHaveKeyguard = true;
3276
3277 final WindowState visibleWindow = getWindow(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07003278 if (w.isVisibleLw() && !w.mObscured && !w.isDrawnLw()) {
3279 return true;
3280 }
3281 if (w.isDrawnLw()) {
3282 if (w.mAttrs.type == TYPE_BOOT_PROGRESS) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003283 mHaveBootMsg = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003284 } else if (w.mAttrs.type == TYPE_APPLICATION
3285 || w.mAttrs.type == TYPE_DRAWN_APPLICATION) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003286 mHaveApp = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003287 } else if (w.mAttrs.type == TYPE_WALLPAPER) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003288 mHaveWallpaper = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003289 } else if (w.mAttrs.type == TYPE_STATUS_BAR) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003290 mHaveKeyguard = mService.mPolicy.isKeyguardDrawnLw();
Wale Ogunwale494009b82016-10-21 09:01:38 -07003291 }
3292 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003293 return false;
3294 });
3295
3296 if (visibleWindow != null) {
3297 // We have a visible window.
3298 return true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003299 }
3300
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003301 // if the wallpaper service is disabled on the device, we're never going to have
3302 // wallpaper, don't bother waiting for it
3303 boolean wallpaperEnabled = mService.mContext.getResources().getBoolean(
3304 com.android.internal.R.bool.config_enableWallpaperService)
Daichi Hironoc1432222018-03-29 13:06:07 +09003305 && mService.mContext.getResources().getBoolean(
3306 com.android.internal.R.bool.config_checkWallpaperAtBoot)
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003307 && !mService.mOnlyCore;
3308
Wale Ogunwale494009b82016-10-21 09:01:38 -07003309 if (DEBUG_SCREEN_ON || DEBUG_BOOT) Slog.i(TAG_WM,
3310 "******** booted=" + mService.mSystemBooted
3311 + " msg=" + mService.mShowingBootMessages
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003312 + " haveBoot=" + mHaveBootMsg + " haveApp=" + mHaveApp
3313 + " haveWall=" + mHaveWallpaper + " wallEnabled=" + wallpaperEnabled
3314 + " haveKeyguard=" + mHaveKeyguard);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003315
3316 // If we are turning on the screen to show the boot message, don't do it until the boot
3317 // message is actually displayed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003318 if (!mService.mSystemBooted && !mHaveBootMsg) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07003319 return true;
3320 }
3321
3322 // If we are turning on the screen after the boot is completed normally, don't do so until
3323 // we have the application and wallpaper.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003324 if (mService.mSystemBooted
3325 && ((!mHaveApp && !mHaveKeyguard) || (wallpaperEnabled && !mHaveWallpaper))) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07003326 return true;
3327 }
3328
3329 return false;
3330 }
3331
Jorim Jaggi8f520872018-08-14 17:00:20 +02003332 void updateWindowsForAnimator() {
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003333 forAllWindows(mUpdateWindowsForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07003334 }
3335
Jorim Jaggi8f520872018-08-14 17:00:20 +02003336 /**
3337 * Updates the {@link TaskStack#setAnimationBackground} for all windows.
3338 */
3339 void updateBackgroundForAnimator() {
Jorim Jaggi7156b652016-10-25 08:31:58 -07003340 resetAnimationBackgroundAnimator();
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003341 forAllWindows(mUpdateWallpaperForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07003342 }
3343
Yohei Yukawa41f89c32018-09-19 14:30:04 -07003344 boolean isInputMethodClientFocus(int uid, int pid) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003345 final WindowState imFocus = computeImeTarget(false /* updateImeTarget */);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003346 if (imFocus == null) {
3347 return false;
3348 }
3349
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003350 if (DEBUG_INPUT_METHOD) {
3351 Slog.i(TAG_WM, "Desired input method target: " + imFocus);
Tiger Huang1e5b10a2018-07-30 20:19:51 +08003352 Slog.i(TAG_WM, "Current focus: " + mCurrentFocus + " displayId=" + mDisplayId);
3353 Slog.i(TAG_WM, "Last focus: " + mLastFocus + " displayId=" + mDisplayId);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00003354 }
3355
Wale Ogunwale494009b82016-10-21 09:01:38 -07003356 if (DEBUG_INPUT_METHOD) {
Yohei Yukawa41f89c32018-09-19 14:30:04 -07003357 Slog.i(TAG_WM, "IM target uid/pid: " + imFocus.mSession.mUid
3358 + "/" + imFocus.mSession.mPid);
3359 Slog.i(TAG_WM, "Requesting client uid/pid: " + uid + "/" + pid);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003360 }
3361
Yohei Yukawa41f89c32018-09-19 14:30:04 -07003362 return imFocus.mSession.mUid == uid && imFocus.mSession.mPid == pid;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003363 }
3364
3365 boolean hasSecureWindowOnScreen() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003366 final WindowState win = getWindow(
3367 w -> w.isOnScreen() && (w.mAttrs.flags & FLAG_SECURE) != 0);
3368 return win != null;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003369 }
3370
Tiger Huang7c610aa2018-10-27 00:01:01 +08003371 void statusBarVisibilityChanged(int visibility) {
3372 mLastStatusBarVisibility = visibility;
3373 visibility = getDisplayPolicy().adjustSystemUiVisibilityLw(visibility);
3374 updateStatusBarVisibilityLocked(visibility);
3375 }
3376
3377 private boolean updateStatusBarVisibilityLocked(int visibility) {
3378 if (mLastDispatchedSystemUiVisibility == visibility) {
3379 return false;
3380 }
3381 final int globalDiff = (visibility ^ mLastDispatchedSystemUiVisibility)
3382 // We are only interested in differences of one of the
3383 // clearable flags...
3384 & View.SYSTEM_UI_CLEARABLE_FLAGS
3385 // ...if it has actually been cleared.
3386 & ~visibility;
3387
3388 mLastDispatchedSystemUiVisibility = visibility;
3389 if (isDefaultDisplay) {
3390 mService.mInputManager.setSystemUiVisibility(visibility);
3391 }
3392 updateSystemUiVisibility(visibility, globalDiff);
3393 return true;
3394 }
3395
Wale Ogunwale494009b82016-10-21 09:01:38 -07003396 void updateSystemUiVisibility(int visibility, int globalDiff) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003397 forAllWindows(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07003398 try {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003399 final int curValue = w.mSystemUiVisibility;
3400 final int diff = (curValue ^ visibility) & globalDiff;
3401 final int newValue = (curValue & ~diff) | (visibility & diff);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003402 if (newValue != curValue) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003403 w.mSeq++;
3404 w.mSystemUiVisibility = newValue;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003405 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003406 if (newValue != curValue || w.mAttrs.hasSystemUiListeners) {
3407 w.mClient.dispatchSystemUiVisibilityChanged(w.mSeq,
Wale Ogunwale494009b82016-10-21 09:01:38 -07003408 visibility, newValue, diff);
3409 }
3410 } catch (RemoteException e) {
3411 // so sorry
3412 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003413 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003414 }
3415
Tiger Huang7c610aa2018-10-27 00:01:01 +08003416 void reevaluateStatusBarVisibility() {
3417 int visibility = getDisplayPolicy().adjustSystemUiVisibilityLw(mLastStatusBarVisibility);
3418 if (updateStatusBarVisibilityLocked(visibility)) {
3419 mService.mWindowPlacerLocked.requestTraversal();
3420 }
3421 }
3422
Wale Ogunwale494009b82016-10-21 09:01:38 -07003423 void onWindowFreezeTimeout() {
3424 Slog.w(TAG_WM, "Window freeze timeout expired.");
3425 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_TIMEOUT;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003426
3427 forAllWindows(w -> {
Bryce Lee8c3cf382017-07-06 19:47:10 -07003428 if (!w.getOrientationChanging()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003429 return;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003430 }
Robert Carr9c1c3a02017-08-08 12:59:01 -07003431 w.orientationChangeTimedOut();
Wale Ogunwale494009b82016-10-21 09:01:38 -07003432 w.mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
3433 - mService.mDisplayFreezeTime);
3434 Slog.w(TAG_WM, "Force clearing orientation change: " + w);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003435 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003436 mService.mWindowPlacerLocked.performSurfacePlacement();
3437 }
3438
3439 void waitForAllWindowsDrawn() {
3440 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003441 forAllWindows(w -> {
3442 final boolean keyguard = policy.isKeyguardHostWindow(w.mAttrs);
3443 if (w.isVisibleLw() && (w.mAppToken != null || keyguard)) {
3444 w.mWinAnimator.mDrawState = DRAW_PENDING;
Wale Ogunwale494009b82016-10-21 09:01:38 -07003445 // Force add to mResizingWindows.
chaviw9c81e632018-07-31 11:17:52 -07003446 w.resetLastContentInsets();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003447 mService.mWaitingForDrawn.add(w);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003448 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003449 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07003450 }
3451
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003452 // TODO: Super crazy long method that should be broken down...
Tiger Huang1e5b10a2018-07-30 20:19:51 +08003453 void applySurfaceChangesTransaction(boolean recoveringMemory) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003454 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
3455
3456 mTmpUpdateAllDrawn.clear();
3457
3458 int repeats = 0;
3459 do {
3460 repeats++;
3461 if (repeats > 6) {
3462 Slog.w(TAG, "Animation repeat aborted after too many iterations");
3463 clearLayoutNeeded();
3464 break;
3465 }
3466
3467 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats("On entry to LockedInner",
3468 pendingLayoutChanges);
3469
wilsonshihc32538e2018-11-07 17:27:34 +08003470 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_WALLPAPER) != 0) {
3471 mWallpaperController.adjustWallpaperWindows();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003472 }
3473
Riddle Hsu654a6f92018-07-13 22:59:36 +08003474 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_CONFIG) != 0) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003475 if (DEBUG_LAYOUT) Slog.v(TAG, "Computing new config from layout");
Riddle Hsu4e611772018-10-31 18:58:28 +08003476 if (updateOrientationFromAppTokens()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003477 setLayoutNeeded();
Riddle Hsu4e611772018-10-31 18:58:28 +08003478 sendNewConfiguration();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003479 }
3480 }
3481
3482 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_LAYOUT) != 0) {
3483 setLayoutNeeded();
3484 }
3485
3486 // FIRST LOOP: Perform a layout, if needed.
3487 if (repeats < LAYOUT_REPEAT_THRESHOLD) {
3488 performLayout(repeats == 1, false /* updateInputWindows */);
3489 } else {
3490 Slog.w(TAG, "Layout repeat skipped after too many iterations");
3491 }
3492
3493 // FIRST AND ONE HALF LOOP: Make WindowManagerPolicy think it is animating.
3494 pendingLayoutChanges = 0;
3495
Tiger Huang7c610aa2018-10-27 00:01:01 +08003496 mDisplayPolicy.beginPostLayoutPolicyLw();
3497 forAllWindows(mApplyPostLayoutPolicy, true /* traverseTopToBottom */);
3498 pendingLayoutChanges |= mDisplayPolicy.finishPostLayoutPolicyLw();
3499 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats(
3500 "after finishPostLayoutPolicyLw", pendingLayoutChanges);
Jorim Jaggif96c90a2018-09-26 16:55:15 +02003501 mInsetsStateController.onPostLayout();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003502 } while (pendingLayoutChanges != 0);
3503
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003504 mTmpApplySurfaceChangesTransactionState.reset();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003505
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003506 mTmpRecoveringMemory = recoveringMemory;
3507 forAllWindows(mApplySurfaceChangesTransaction, true /* traverseTopToBottom */);
Jorim Jaggi6b0f8462018-01-05 17:23:47 +01003508 prepareSurfaces();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003509
Jorim Jaggif1292892018-09-10 11:58:13 +02003510 mLastHasContent = mTmpApplySurfaceChangesTransactionState.displayHasContent;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003511 mService.mDisplayManagerInternal.setDisplayProperties(mDisplayId,
Jorim Jaggif1292892018-09-10 11:58:13 +02003512 mLastHasContent,
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003513 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate,
3514 mTmpApplySurfaceChangesTransactionState.preferredModeId,
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003515 true /* inTraversal, must call performTraversalInTrans... below */);
3516
Lucas Dupin1ead7fc2017-05-24 14:14:44 -07003517 final boolean wallpaperVisible = mWallpaperController.isWallpaperVisible();
3518 if (wallpaperVisible != mLastWallpaperVisible) {
3519 mLastWallpaperVisible = wallpaperVisible;
3520 mService.mWallpaperVisibilityListeners.notifyWallpaperVisibilityChanged(this);
3521 }
3522
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003523 while (!mTmpUpdateAllDrawn.isEmpty()) {
3524 final AppWindowToken atoken = mTmpUpdateAllDrawn.removeLast();
3525 // See if any windows have been drawn, so they (and others associated with them)
3526 // can now be shown.
Matthew Ng498c71d2017-04-18 13:55:45 -07003527 atoken.updateAllDrawn();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003528 }
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003529 }
3530
Bryce Leef3c6a472017-11-14 14:53:06 -08003531 private void updateBounds() {
Evan Rosky39b6f232018-10-30 18:35:41 -07003532 calculateBounds(mDisplayInfo, mTmpBounds);
Bryce Leef3c6a472017-11-14 14:53:06 -08003533 setBounds(mTmpBounds);
3534 }
3535
3536 // Determines the current display bounds based on the current state
Evan Rosky39b6f232018-10-30 18:35:41 -07003537 private void calculateBounds(DisplayInfo displayInfo, Rect out) {
Bryce Leef3c6a472017-11-14 14:53:06 -08003538 // Uses same calculation as in LogicalDisplay#configureDisplayInTransactionLocked.
Evan Rosky39b6f232018-10-30 18:35:41 -07003539 final int rotation = displayInfo.rotation;
3540 boolean rotated = (rotation == ROTATION_90 || rotation == ROTATION_270);
Bryce Leef3c6a472017-11-14 14:53:06 -08003541 final int physWidth = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
3542 final int physHeight = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
Evan Rosky39b6f232018-10-30 18:35:41 -07003543 int width = displayInfo.logicalWidth;
Bryce Leef3c6a472017-11-14 14:53:06 -08003544 int left = (physWidth - width) / 2;
Evan Rosky39b6f232018-10-30 18:35:41 -07003545 int height = displayInfo.logicalHeight;
Bryce Leef3c6a472017-11-14 14:53:06 -08003546 int top = (physHeight - height) / 2;
3547 out.set(left, top, left + width, top + height);
3548 }
3549
3550 @Override
3551 public void getBounds(Rect out) {
Evan Rosky39b6f232018-10-30 18:35:41 -07003552 calculateBounds(mDisplayInfo, out);
Bryce Leef3c6a472017-11-14 14:53:06 -08003553 }
3554
3555 private void getBounds(Rect out, int orientation) {
3556 getBounds(out);
3557
3558 // Rotate the Rect if needed.
3559 final int currentRotation = mDisplayInfo.rotation;
3560 final int rotationDelta = deltaRotation(currentRotation, orientation);
3561 if (rotationDelta == ROTATION_90 || rotationDelta == ROTATION_270) {
3562 createRotationMatrix(rotationDelta, mBaseDisplayWidth, mBaseDisplayHeight, mTmpMatrix);
3563 mTmpRectF.set(out);
3564 mTmpMatrix.mapRect(mTmpRectF);
3565 mTmpRectF.round(out);
3566 }
3567 }
3568
Louis Chang7501e332018-08-20 13:08:39 +08003569 int getSurfaceSize() {
3570 return mSurfaceSize;
3571 }
3572
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003573 void performLayout(boolean initial, boolean updateInputWindows) {
3574 if (!isLayoutNeeded()) {
3575 return;
3576 }
3577 clearLayoutNeeded();
3578
3579 final int dw = mDisplayInfo.logicalWidth;
3580 final int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003581 if (DEBUG_LAYOUT) {
3582 Slog.v(TAG, "-------------------------------------");
3583 Slog.v(TAG, "performLayout: needed=" + isLayoutNeeded() + " dw=" + dw + " dh=" + dh);
3584 }
3585
Adrian Roos6a4fa0e2018-03-05 19:50:16 +01003586 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo,
3587 calculateDisplayCutoutForRotation(mDisplayInfo.rotation));
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00003588 // TODO: Not sure if we really need to set the rotation here since we are updating from the
3589 // display info above...
3590 mDisplayFrames.mRotation = mRotation;
Tiger Huang7c610aa2018-10-27 00:01:01 +08003591 mDisplayPolicy.beginLayoutLw(mDisplayFrames, getConfiguration().uiMode);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003592
Adrian Roos5251b1d2018-03-23 18:57:43 +01003593 int seq = mLayoutSeq + 1;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003594 if (seq < 0) seq = 0;
Adrian Roos5251b1d2018-03-23 18:57:43 +01003595 mLayoutSeq = seq;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003596
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003597 // Used to indicate that we have processed the dream window and all additional windows are
3598 // behind it.
3599 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003600 mTmpInitial = initial;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003601
3602 // First perform layout of any root windows (not attached to another window).
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003603 forAllWindows(mPerformLayout, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003604
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003605 // Used to indicate that we have processed the dream window and all additional attached
3606 // windows are behind it.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003607 mTmpWindow2 = mTmpWindow;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003608 mTmpWindow = null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003609
3610 // Now perform layout of attached windows, which usually depend on the position of the
3611 // window they are attached to. XXX does not deal with windows that are attached to windows
3612 // that are themselves attached.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003613 forAllWindows(mPerformLayoutAttached, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003614
3615 // Window frames may have changed. Tell the input dispatcher about it.
Arthur Hung95b38a92018-07-20 18:56:12 +08003616 mInputMonitor.layoutInputConsumers(dw, dh);
3617 mInputMonitor.setUpdateInputWindowsNeededLw();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003618 if (updateInputWindows) {
Arthur Hung95b38a92018-07-20 18:56:12 +08003619 mInputMonitor.updateInputWindowsLw(false /*force*/);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003620 }
3621
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003622 mService.mH.sendEmptyMessage(UPDATE_DOCKED_STACK_DIVIDER);
3623 }
3624
3625 /**
3626 * Takes a snapshot of the display. In landscape mode this grabs the whole screen.
3627 * In portrait mode, it grabs the full screenshot.
3628 *
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003629 * @param config of the output bitmap
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003630 */
chaviw0315a1a2018-03-05 15:28:35 -08003631 Bitmap screenshotDisplayLocked(Bitmap.Config config) {
3632 if (!mService.mPolicy.isScreenOn()) {
3633 if (DEBUG_SCREENSHOT) {
3634 Slog.i(TAG_WM, "Attempted to take screenshot while display was off.");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003635 }
chaviw0315a1a2018-03-05 15:28:35 -08003636 return null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003637 }
chaviwfbe47df2017-11-10 16:14:49 -08003638
chaviw0315a1a2018-03-05 15:28:35 -08003639 int dw = mDisplayInfo.logicalWidth;
3640 int dh = mDisplayInfo.logicalHeight;
chaviwfbe47df2017-11-10 16:14:49 -08003641
chaviw0315a1a2018-03-05 15:28:35 -08003642 if (dw <= 0 || dh <= 0) {
3643 return null;
3644 }
chaviwfbe47df2017-11-10 16:14:49 -08003645
chaviw0315a1a2018-03-05 15:28:35 -08003646 final Rect frame = new Rect(0, 0, dw, dh);
chaviwfbe47df2017-11-10 16:14:49 -08003647
chaviw0315a1a2018-03-05 15:28:35 -08003648 // The screenshot API does not apply the current screen rotation.
3649 int rot = mDisplay.getRotation();
chaviwfbe47df2017-11-10 16:14:49 -08003650
chaviw0315a1a2018-03-05 15:28:35 -08003651 if (rot == ROTATION_90 || rot == ROTATION_270) {
3652 rot = (rot == ROTATION_90) ? ROTATION_270 : ROTATION_90;
3653 }
chaviwfbe47df2017-11-10 16:14:49 -08003654
chaviw0315a1a2018-03-05 15:28:35 -08003655 // SurfaceFlinger is not aware of orientation, so convert our logical
3656 // crop to SurfaceFlinger's portrait orientation.
3657 convertCropForSurfaceFlinger(frame, rot, dw, dh);
3658
3659 final ScreenRotationAnimation screenRotationAnimation =
3660 mService.mAnimator.getScreenRotationAnimationLocked(DEFAULT_DISPLAY);
3661 final boolean inRotation = screenRotationAnimation != null &&
3662 screenRotationAnimation.isAnimating();
3663 if (DEBUG_SCREENSHOT && inRotation) Slog.v(TAG_WM, "Taking screenshot while rotating");
3664
3665 // TODO(b/68392460): We should screenshot Task controls directly
3666 // but it's difficult at the moment as the Task doesn't have the
3667 // correct size set.
chaviw08520a02018-09-10 16:44:56 -07003668 final Bitmap bitmap = SurfaceControl.screenshot(frame, dw, dh, inRotation, rot);
chaviw0315a1a2018-03-05 15:28:35 -08003669 if (bitmap == null) {
3670 Slog.w(TAG_WM, "Failed to take screenshot");
3671 return null;
3672 }
3673
3674 // Create a copy of the screenshot that is immutable and backed in ashmem.
3675 // This greatly reduces the overhead of passing the bitmap between processes.
3676 final Bitmap ret = bitmap.createAshmemBitmap(config);
3677 bitmap.recycle();
3678 return ret;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003679 }
3680
3681 // TODO: Can this use createRotationMatrix()?
3682 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) {
3683 if (rot == Surface.ROTATION_90) {
3684 final int tmp = crop.top;
3685 crop.top = dw - crop.right;
3686 crop.right = crop.bottom;
3687 crop.bottom = dw - crop.left;
3688 crop.left = tmp;
3689 } else if (rot == Surface.ROTATION_180) {
3690 int tmp = crop.top;
3691 crop.top = dh - crop.bottom;
3692 crop.bottom = dh - tmp;
3693 tmp = crop.right;
3694 crop.right = dw - crop.left;
3695 crop.left = dw - tmp;
3696 } else if (rot == Surface.ROTATION_270) {
3697 final int tmp = crop.top;
3698 crop.top = crop.left;
3699 crop.left = dh - crop.bottom;
3700 crop.bottom = crop.right;
3701 crop.right = dh - tmp;
3702 }
3703 }
3704
3705 void onSeamlessRotationTimeout() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003706 // Used to indicate the layout is needed.
3707 mTmpWindow = null;
3708
3709 forAllWindows(w -> {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003710 if (!w.mSeamlesslyRotated) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003711 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003712 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003713 mTmpWindow = w;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003714 w.setDisplayLayoutNeeded();
Vishnu Nairba183352018-11-21 11:16:49 -08003715 w.finishSeamlessRotation(true /* timeout */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003716 mService.markForSeamlessRotation(w, false);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003717 }, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003718
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003719 if (mTmpWindow != null) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003720 mService.mWindowPlacerLocked.performSurfacePlacement();
3721 }
3722 }
3723
Wale Ogunwale1666e312016-12-16 11:27:18 -08003724 void setExitingTokensHasVisible(boolean hasVisible) {
3725 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3726 mExitingTokens.get(i).hasVisible = hasVisible;
3727 }
3728
3729 // Initialize state of exiting applications.
3730 mTaskStackContainers.setExitingTokensHasVisible(hasVisible);
3731 }
3732
3733 void removeExistingTokensIfPossible() {
3734 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3735 final WindowToken token = mExitingTokens.get(i);
3736 if (!token.hasVisible) {
3737 mExitingTokens.remove(i);
3738 }
3739 }
3740
3741 // Time to remove any exiting applications?
3742 mTaskStackContainers.removeExistingAppTokensIfPossible();
3743 }
3744
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003745 @Override
3746 void onDescendantOverrideConfigurationChanged() {
3747 setLayoutNeeded();
3748 mService.requestTraversal();
3749 }
3750
David Stevens9440dc82017-03-16 19:00:20 -07003751 boolean okToDisplay() {
3752 if (mDisplayId == DEFAULT_DISPLAY) {
3753 return !mService.mDisplayFrozen
3754 && mService.mDisplayEnabled && mService.mPolicy.isScreenOn();
3755 }
3756 return mDisplayInfo.state == Display.STATE_ON;
3757 }
3758
3759 boolean okToAnimate() {
3760 return okToDisplay() &&
3761 (mDisplayId != DEFAULT_DISPLAY || mService.mPolicy.okToAnimate());
3762 }
3763
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07003764 static final class TaskForResizePointSearchResult {
3765 boolean searchDone;
3766 Task taskForResize;
3767
3768 void reset() {
3769 searchDone = false;
3770 taskForResize = null;
3771 }
3772 }
Robert Carr3b716242016-08-16 16:02:21 -07003773
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003774 private static final class ApplySurfaceChangesTransactionState {
3775 boolean displayHasContent;
3776 boolean obscured;
3777 boolean syswin;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003778 float preferredRefreshRate;
3779 int preferredModeId;
3780
3781 void reset() {
3782 displayHasContent = false;
3783 obscured = false;
3784 syswin = false;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003785 preferredRefreshRate = 0;
3786 preferredModeId = 0;
3787 }
3788 }
3789
3790 private static final class ScreenshotApplicationState {
3791 WindowState appWin;
3792 int maxLayer;
3793 int minLayer;
3794 boolean screenshotReady;
3795
3796 void reset(boolean screenshotReady) {
3797 appWin = null;
3798 maxLayer = 0;
3799 minLayer = 0;
3800 this.screenshotReady = screenshotReady;
3801 minLayer = (screenshotReady) ? 0 : Integer.MAX_VALUE;
3802 }
3803 }
3804
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003805 /**
3806 * Base class for any direct child window container of {@link #DisplayContent} need to inherit
3807 * from. This is mainly a pass through class that allows {@link #DisplayContent} to have
3808 * homogeneous children type which is currently required by sub-classes of
3809 * {@link WindowContainer} class.
3810 */
3811 static class DisplayChildWindowContainer<E extends WindowContainer> extends WindowContainer<E> {
3812
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003813 DisplayChildWindowContainer(WindowManagerService service) {
3814 super(service);
3815 }
3816
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003817 @Override
3818 boolean fillsParent() {
3819 return true;
3820 }
3821
3822 @Override
3823 boolean isVisible() {
3824 return true;
Robert Carr3b716242016-08-16 16:02:21 -07003825 }
3826 }
3827
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003828 /**
3829 * Window container class that contains all containers on this display relating to Apps.
3830 * I.e Activities.
3831 */
Wale Ogunwale3a931692016-11-02 16:49:48 -07003832 private final class TaskStackContainers extends DisplayChildWindowContainer<TaskStack> {
Robert Carrb1579c82017-09-05 14:54:47 -07003833 /**
3834 * A control placed at the appropriate level for transitions to occur.
3835 */
chaviw23ee71c2017-12-18 11:29:41 -08003836 SurfaceControl mAppAnimationLayer = null;
Jorim Jaggibe418292018-03-26 16:14:12 +02003837 SurfaceControl mBoostedAppAnimationLayer = null;
Jorim Jaggi391790622018-04-18 15:30:44 +02003838 SurfaceControl mHomeAppAnimationLayer = null;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003839
Robert Carrf7a7ca82017-12-06 13:17:07 -08003840 /**
3841 * Given that the split-screen divider does not have an AppWindowToken, it
3842 * will have to live inside of a "NonAppWindowContainer", in particular
3843 * {@link DisplayContent#mAboveAppWindowsContainers}. However, in visual Z order
3844 * it will need to be interleaved with some of our children, appearing on top of
3845 * both docked stacks but underneath any assistant stacks.
3846 *
3847 * To solve this problem we have this anchor control, which will always exist so
3848 * we can always assign it the correct value in our {@link #assignChildLayers}.
3849 * Likewise since it always exists, {@link AboveAppWindowContainers} can always
3850 * assign the divider a layer relative to it. This way we prevent linking lifecycle
3851 * events between the two containers.
3852 */
3853 SurfaceControl mSplitScreenDividerAnchor = null;
3854
Wale Ogunwale61911492017-10-11 08:50:50 -07003855 // Cached reference to some special stacks we tend to get a lot so we don't need to loop
3856 // through the list to find them.
3857 private TaskStack mHomeStack = null;
3858 private TaskStack mPinnedStack = null;
3859 private TaskStack mSplitScreenPrimaryStack = null;
3860
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003861 TaskStackContainers(WindowManagerService service) {
3862 super(service);
3863 }
3864
Wale Ogunwale61911492017-10-11 08:50:50 -07003865 /**
3866 * Returns the topmost stack on the display that is compatible with the input windowing mode
3867 * and activity type. Null is no compatible stack on the display.
3868 */
3869 TaskStack getStack(int windowingMode, int activityType) {
3870 if (activityType == ACTIVITY_TYPE_HOME) {
3871 return mHomeStack;
3872 }
3873 if (windowingMode == WINDOWING_MODE_PINNED) {
3874 return mPinnedStack;
3875 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3876 return mSplitScreenPrimaryStack;
3877 }
3878 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
3879 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003880 if (activityType == ACTIVITY_TYPE_UNDEFINED
3881 && windowingMode == stack.getWindowingMode()) {
3882 // Passing in undefined type means we want to match the topmost stack with the
3883 // windowing mode.
3884 return stack;
3885 }
Wale Ogunwale61911492017-10-11 08:50:50 -07003886 if (stack.isCompatible(windowingMode, activityType)) {
3887 return stack;
3888 }
3889 }
3890 return null;
3891 }
3892
3893 @VisibleForTesting
3894 TaskStack getTopStack() {
3895 return mTaskStackContainers.getChildCount() > 0
3896 ? mTaskStackContainers.getChildAt(mTaskStackContainers.getChildCount() - 1) : null;
3897 }
3898
3899 TaskStack getHomeStack() {
3900 if (mHomeStack == null && mDisplayId == DEFAULT_DISPLAY) {
3901 Slog.e(TAG_WM, "getHomeStack: Returning null from this=" + this);
3902 }
3903 return mHomeStack;
3904 }
3905
3906 TaskStack getPinnedStack() {
3907 return mPinnedStack;
3908 }
3909
Matthew Ng64e77cf2017-10-31 14:01:31 -07003910 TaskStack getSplitScreenPrimaryStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07003911 return mSplitScreenPrimaryStack;
3912 }
3913
Winson Chunge2d72172018-01-25 17:46:20 +00003914 ArrayList<Task> getVisibleTasks() {
3915 final ArrayList<Task> visibleTasks = new ArrayList<>();
3916 forAllTasks(task -> {
3917 if (task.isVisible()) {
3918 visibleTasks.add(task);
3919 }
3920 });
3921 return visibleTasks;
3922 }
3923
Andrii Kulian839def92016-11-02 10:58:58 -07003924 /**
3925 * Adds the stack to this container.
Wale Ogunwale61911492017-10-11 08:50:50 -07003926 * @see DisplayContent#createStack(int, boolean, StackWindowController)
Andrii Kulian839def92016-11-02 10:58:58 -07003927 */
3928 void addStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale61911492017-10-11 08:50:50 -07003929 addStackReferenceIfNeeded(stack);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003930 addChild(stack, onTop);
3931 stack.onDisplayChanged(DisplayContent.this);
Robert Carr3b716242016-08-16 16:02:21 -07003932 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003933
Wale Ogunwale61911492017-10-11 08:50:50 -07003934 void onStackWindowingModeChanged(TaskStack stack) {
3935 removeStackReferenceIfNeeded(stack);
3936 addStackReferenceIfNeeded(stack);
3937 if (stack == mPinnedStack && getTopStack() != stack) {
3938 // Looks like this stack changed windowing mode to pinned. Move it to the top.
3939 positionChildAt(POSITION_TOP, stack, false /* includingParents */);
3940 }
3941 }
3942
3943 private void addStackReferenceIfNeeded(TaskStack stack) {
3944 if (stack.isActivityTypeHome()) {
3945 if (mHomeStack != null) {
Louis Chang7d0037c2018-08-13 12:42:06 +08003946 throw new IllegalArgumentException("addStackReferenceIfNeeded: home stack="
Wale Ogunwale61911492017-10-11 08:50:50 -07003947 + mHomeStack + " already exist on display=" + this + " stack=" + stack);
Louis Chang7d0037c2018-08-13 12:42:06 +08003948
Wale Ogunwale61911492017-10-11 08:50:50 -07003949 }
Louis Chang7d0037c2018-08-13 12:42:06 +08003950 mHomeStack = stack;
Wale Ogunwale61911492017-10-11 08:50:50 -07003951 }
3952 final int windowingMode = stack.getWindowingMode();
3953 if (windowingMode == WINDOWING_MODE_PINNED) {
3954 if (mPinnedStack != null) {
3955 throw new IllegalArgumentException("addStackReferenceIfNeeded: pinned stack="
3956 + mPinnedStack + " already exist on display=" + this
3957 + " stack=" + stack);
3958 }
3959 mPinnedStack = stack;
3960 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3961 if (mSplitScreenPrimaryStack != null) {
3962 throw new IllegalArgumentException("addStackReferenceIfNeeded:"
3963 + " split-screen-primary" + " stack=" + mSplitScreenPrimaryStack
3964 + " already exist on display=" + this + " stack=" + stack);
3965 }
3966 mSplitScreenPrimaryStack = stack;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003967 mDividerControllerLocked.notifyDockedStackExistsChanged(true);
Wale Ogunwale61911492017-10-11 08:50:50 -07003968 }
3969 }
3970
3971 private void removeStackReferenceIfNeeded(TaskStack stack) {
3972 if (stack == mHomeStack) {
3973 mHomeStack = null;
3974 } else if (stack == mPinnedStack) {
3975 mPinnedStack = null;
3976 } else if (stack == mSplitScreenPrimaryStack) {
3977 mSplitScreenPrimaryStack = null;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003978 // Re-set the split-screen create mode whenever the split-screen stack is removed.
3979 mService.setDockedStackCreateStateLocked(
3980 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
3981 mDividerControllerLocked.notifyDockedStackExistsChanged(false);
Wale Ogunwale61911492017-10-11 08:50:50 -07003982 }
Andrii Kulian839def92016-11-02 10:58:58 -07003983 }
3984
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003985 private void addChild(TaskStack stack, boolean toTop) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003986 final int addIndex = findPositionForStack(toTop ? mChildren.size() : 0, stack,
3987 true /* adding */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003988 addChild(stack, addIndex);
3989 setLayoutNeeded();
3990 }
3991
Wale Ogunwale61911492017-10-11 08:50:50 -07003992 @Override
3993 protected void removeChild(TaskStack stack) {
3994 super.removeChild(stack);
3995 removeStackReferenceIfNeeded(stack);
3996 }
Bryce Lee00d586d2017-07-28 20:48:43 -07003997
3998 @Override
3999 boolean isOnTop() {
4000 // Considered always on top
4001 return true;
4002 }
4003
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004004 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -08004005 void positionChildAt(int position, TaskStack child, boolean includingParents) {
Wale Ogunwale3382ab12017-07-27 08:55:03 -07004006 if (child.getWindowConfiguration().isAlwaysOnTop()
4007 && position != POSITION_TOP) {
Andrii Kuliand2765632016-12-12 22:26:34 -08004008 // This stack is always-on-top, override the default behavior.
4009 Slog.w(TAG_WM, "Ignoring move of always-on-top stack=" + this + " to bottom");
4010
4011 // Moving to its current position, as we must call super but we don't want to
4012 // perform any meaningful action.
4013 final int currentPosition = mChildren.indexOf(child);
4014 super.positionChildAt(currentPosition, child, false /* includingParents */);
4015 return;
4016 }
4017
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08004018 final int targetPosition = findPositionForStack(position, child, false /* adding */);
4019 super.positionChildAt(targetPosition, child, includingParents);
4020
Riddle Hsu2f6e1742018-08-23 22:44:36 +08004021 if (includingParents) {
4022 // We still want to move the display of this stack container to top because even the
4023 // target position is adjusted to non-top, the intention of the condition is to have
4024 // higher z-order to gain focus (e.g. moving a task of a fullscreen stack to front
4025 // in a non-top display which is using picture-in-picture mode).
4026 final int topChildPosition = getChildCount() - 1;
4027 if (targetPosition < topChildPosition && position >= topChildPosition) {
4028 getParent().positionChildAt(POSITION_TOP, this /* child */,
4029 true /* includingParents */);
4030 }
4031 }
4032
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08004033 setLayoutNeeded();
4034 }
4035
4036 /**
4037 * When stack is added or repositioned, find a proper position for it.
4038 * This will make sure that pinned stack always stays on top.
4039 * @param requestedPosition Position requested by caller.
4040 * @param stack Stack to be added or positioned.
4041 * @param adding Flag indicates whether we're adding a new stack or positioning an existing.
4042 * @return The proper position for the stack.
4043 */
4044 private int findPositionForStack(int requestedPosition, TaskStack stack, boolean adding) {
Kazuki Takise148d00a2018-05-31 15:32:19 +09004045 if (stack.inPinnedWindowingMode()) {
Kazuki Takisef85197b2018-06-18 18:18:36 +09004046 return POSITION_TOP;
Kazuki Takise148d00a2018-05-31 15:32:19 +09004047 }
4048
Kazuki Takisef85197b2018-06-18 18:18:36 +09004049 final int topChildPosition = mChildren.size() - 1;
4050 int belowAlwaysOnTopPosition = POSITION_BOTTOM;
4051 for (int i = topChildPosition; i >= 0; --i) {
4052 if (getStacks().get(i) != stack && !getStacks().get(i).isAlwaysOnTop()) {
4053 belowAlwaysOnTopPosition = i;
4054 break;
4055 }
4056 }
4057
4058 // The max possible position we can insert the stack at.
4059 int maxPosition = POSITION_TOP;
4060 // The min possible position we can insert the stack at.
4061 int minPosition = POSITION_BOTTOM;
4062
4063 if (stack.isAlwaysOnTop()) {
4064 if (hasPinnedStack()) {
4065 // Always-on-top stacks go below the pinned stack.
4066 maxPosition = getStacks().indexOf(mPinnedStack) - 1;
4067 }
4068 // Always-on-top stacks need to be above all other stacks.
4069 minPosition = belowAlwaysOnTopPosition !=
4070 POSITION_BOTTOM ? belowAlwaysOnTopPosition : topChildPosition;
4071 } else {
4072 // Other stacks need to be below the always-on-top stacks.
4073 maxPosition = belowAlwaysOnTopPosition !=
Arthur Hung928d8dc2018-07-18 15:38:05 +08004074 POSITION_BOTTOM ? belowAlwaysOnTopPosition : 0;
Kazuki Takisef85197b2018-06-18 18:18:36 +09004075 }
4076
4077 int targetPosition = requestedPosition;
4078 targetPosition = Math.min(targetPosition, maxPosition);
4079 targetPosition = Math.max(targetPosition, minPosition);
4080
4081 int prevPosition = getStacks().indexOf(stack);
4082 // The positions we calculated above (maxPosition, minPosition) do not take into
4083 // consideration the following edge cases.
4084 // 1) We need to adjust the position depending on the value "adding".
4085 // 2) When we are moving a stack to another position, we also need to adjust the
4086 // position depending on whether the stack is moving to a higher or lower position.
4087 if ((targetPosition != requestedPosition) &&
4088 (adding || targetPosition < prevPosition)) {
Kazuki Takise148d00a2018-05-31 15:32:19 +09004089 targetPosition++;
4090 }
4091
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08004092 return targetPosition;
Andrii Kuliand2765632016-12-12 22:26:34 -08004093 }
4094
4095 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004096 boolean forAllWindows(ToBooleanFunction<WindowState> callback,
4097 boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004098 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004099 if (super.forAllWindows(callback, traverseTopToBottom)) {
4100 return true;
4101 }
4102 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
4103 return true;
4104 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004105 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004106 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
4107 return true;
4108 }
4109 if (super.forAllWindows(callback, traverseTopToBottom)) {
4110 return true;
4111 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004112 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004113 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004114 }
4115
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004116 private boolean forAllExitingAppTokenWindows(ToBooleanFunction<WindowState> callback,
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004117 boolean traverseTopToBottom) {
4118 // For legacy reasons we process the TaskStack.mExitingAppTokens first here before the
4119 // app tokens.
4120 // TODO: Investigate if we need to continue to do this or if we can just process them
4121 // in-order.
4122 if (traverseTopToBottom) {
4123 for (int i = mChildren.size() - 1; i >= 0; --i) {
4124 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
4125 for (int j = appTokens.size() - 1; j >= 0; --j) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004126 if (appTokens.get(j).forAllWindowsUnchecked(callback,
4127 traverseTopToBottom)) {
4128 return true;
4129 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004130 }
4131 }
4132 } else {
4133 final int count = mChildren.size();
4134 for (int i = 0; i < count; ++i) {
4135 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
4136 final int appTokensCount = appTokens.size();
4137 for (int j = 0; j < appTokensCount; j++) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004138 if (appTokens.get(j).forAllWindowsUnchecked(callback,
4139 traverseTopToBottom)) {
4140 return true;
4141 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004142 }
4143 }
4144 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08004145 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004146 }
4147
Wale Ogunwale1666e312016-12-16 11:27:18 -08004148 void setExitingTokensHasVisible(boolean hasVisible) {
4149 for (int i = mChildren.size() - 1; i >= 0; --i) {
4150 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
4151 for (int j = appTokens.size() - 1; j >= 0; --j) {
4152 appTokens.get(j).hasVisible = hasVisible;
4153 }
4154 }
4155 }
4156
4157 void removeExistingAppTokensIfPossible() {
4158 for (int i = mChildren.size() - 1; i >= 0; --i) {
4159 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
4160 for (int j = appTokens.size() - 1; j >= 0; --j) {
4161 final AppWindowToken token = appTokens.get(j);
lumark588a3e82018-07-20 18:53:54 +08004162 if (!token.hasVisible && !mClosingApps.contains(token)
Wale Ogunwale1666e312016-12-16 11:27:18 -08004163 && (!token.mIsExiting || token.isEmpty())) {
4164 // Make sure there is no animation running on this token, so any windows
4165 // associated with it will be removed as soon as their animations are
4166 // complete.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02004167 cancelAnimation();
Wale Ogunwale1666e312016-12-16 11:27:18 -08004168 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG,
4169 "performLayout: App token exiting now removed" + token);
4170 token.removeIfPossible();
4171 }
4172 }
4173 }
4174 }
4175
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07004176 @Override
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004177 int getOrientation() {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07004178 if (isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY)
4179 || isStackVisible(WINDOWING_MODE_FREEFORM)) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004180 // Apps and their containers are not allowed to specify an orientation while the
Wale Ogunwaled0c225c2018-06-15 14:47:46 -07004181 // docked or freeform stack is visible...except for the home stack if the docked
4182 // stack is minimized and it actually set something and the bounds is different from
4183 // the display.
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004184 if (mHomeStack != null && mHomeStack.isVisible()
Wale Ogunwalecf2d6472018-06-14 08:55:42 -07004185 && mDividerControllerLocked.isMinimizedDock()
Wale Ogunwalecf2d6472018-06-14 08:55:42 -07004186 && !(mDividerControllerLocked.isHomeStackResizable()
4187 && mHomeStack.matchParentBounds())) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004188 final int orientation = mHomeStack.getOrientation();
4189 if (orientation != SCREEN_ORIENTATION_UNSET) {
4190 return orientation;
4191 }
4192 }
4193 return SCREEN_ORIENTATION_UNSPECIFIED;
4194 }
4195
4196 final int orientation = super.getOrientation();
Dean Harding3e5a1522017-10-06 09:19:01 -07004197 boolean isCar = mService.mContext.getPackageManager().hasSystemFeature(
4198 PackageManager.FEATURE_AUTOMOTIVE);
4199 if (isCar) {
4200 // In a car, you cannot physically rotate the screen, so it doesn't make sense to
4201 // allow anything but the default orientation.
4202 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07004203 "Forcing UNSPECIFIED orientation in car for display id=" + mDisplayId
4204 + ". Ignoring " + orientation);
Dean Harding3e5a1522017-10-06 09:19:01 -07004205 return SCREEN_ORIENTATION_UNSPECIFIED;
4206 }
4207
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004208 if (orientation != SCREEN_ORIENTATION_UNSET
4209 && orientation != SCREEN_ORIENTATION_BEHIND) {
4210 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07004211 "App is requesting an orientation, return " + orientation
4212 + " for display id=" + mDisplayId);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004213 return orientation;
4214 }
4215
4216 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07004217 "No app is requesting an orientation, return " + mLastOrientation
4218 + " for display id=" + mDisplayId);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004219 // The next app has not been requested to be visible, so we keep the current orientation
4220 // to prevent freezing/unfreezing the display too early.
Andrii Kulian8ee72852017-03-10 10:36:45 -08004221 return mLastOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07004222 }
Robert Carrb1579c82017-09-05 14:54:47 -07004223
4224 @Override
4225 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carr2f8aa392018-01-31 14:46:51 -08004226 assignStackOrdering(t);
Robert Carrf7a7ca82017-12-06 13:17:07 -08004227
Robert Carr2f8aa392018-01-31 14:46:51 -08004228 for (int i = 0; i < mChildren.size(); i++) {
4229 final TaskStack s = mChildren.get(i);
4230 s.assignChildLayers(t);
4231 }
4232 }
4233
4234 void assignStackOrdering(SurfaceControl.Transaction t) {
Jorim Jaggibe418292018-03-26 16:14:12 +02004235
Robert Carrf7a7ca82017-12-06 13:17:07 -08004236 final int HOME_STACK_STATE = 0;
4237 final int NORMAL_STACK_STATE = 1;
4238 final int ALWAYS_ON_TOP_STATE = 2;
4239
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004240 int layer = 0;
Robert Carr2f8aa392018-01-31 14:46:51 -08004241 int layerForAnimationLayer = 0;
Jorim Jaggibe418292018-03-26 16:14:12 +02004242 int layerForBoostedAnimationLayer = 0;
Jorim Jaggi391790622018-04-18 15:30:44 +02004243 int layerForHomeAnimationLayer = 0;
Robert Carr2f8aa392018-01-31 14:46:51 -08004244
Robert Carrf7a7ca82017-12-06 13:17:07 -08004245 for (int state = 0; state <= ALWAYS_ON_TOP_STATE; state++) {
4246 for (int i = 0; i < mChildren.size(); i++) {
4247 final TaskStack s = mChildren.get(i);
Robert Carr2f8aa392018-01-31 14:46:51 -08004248 if (state == HOME_STACK_STATE && !s.isActivityTypeHome()) {
4249 continue;
4250 } else if (state == NORMAL_STACK_STATE && (s.isActivityTypeHome()
4251 || s.isAlwaysOnTop())) {
4252 continue;
4253 } else if (state == ALWAYS_ON_TOP_STATE && !s.isAlwaysOnTop()) {
4254 continue;
4255 }
4256 s.assignLayer(t, layer++);
4257 if (s.inSplitScreenWindowingMode() && mSplitScreenDividerAnchor != null) {
4258 t.setLayer(mSplitScreenDividerAnchor, layer++);
4259 }
Winson Chungd41f71d2018-03-16 15:26:07 -07004260 if ((s.isTaskAnimating() || s.isAppAnimating())
4261 && state != ALWAYS_ON_TOP_STATE) {
Robert Carr2f8aa392018-01-31 14:46:51 -08004262 // Ensure the animation layer ends up above the
4263 // highest animating stack and no higher.
4264 layerForAnimationLayer = layer++;
Robert Carrf7a7ca82017-12-06 13:17:07 -08004265 }
Jorim Jaggibe418292018-03-26 16:14:12 +02004266 if (state != ALWAYS_ON_TOP_STATE) {
4267 layerForBoostedAnimationLayer = layer++;
4268 }
Robert Carrf7a7ca82017-12-06 13:17:07 -08004269 }
Jorim Jaggi391790622018-04-18 15:30:44 +02004270 if (state == HOME_STACK_STATE) {
4271 layerForHomeAnimationLayer = layer++;
4272 }
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004273 }
Robert Carr2f8aa392018-01-31 14:46:51 -08004274 if (mAppAnimationLayer != null) {
4275 t.setLayer(mAppAnimationLayer, layerForAnimationLayer);
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004276 }
Jorim Jaggibe418292018-03-26 16:14:12 +02004277 if (mBoostedAppAnimationLayer != null) {
4278 t.setLayer(mBoostedAppAnimationLayer, layerForBoostedAnimationLayer);
4279 }
Jorim Jaggi391790622018-04-18 15:30:44 +02004280 if (mHomeAppAnimationLayer != null) {
4281 t.setLayer(mHomeAppAnimationLayer, layerForHomeAnimationLayer);
4282 }
Robert Carrb1579c82017-09-05 14:54:47 -07004283 }
4284
4285 @Override
Jorim Jaggi391790622018-04-18 15:30:44 +02004286 SurfaceControl getAppAnimationLayer(@AnimationLayer int animationLayer) {
4287 switch (animationLayer) {
4288 case ANIMATION_LAYER_BOOSTED:
4289 return mBoostedAppAnimationLayer;
4290 case ANIMATION_LAYER_HOME:
4291 return mHomeAppAnimationLayer;
4292 case ANIMATION_LAYER_STANDARD:
4293 default:
4294 return mAppAnimationLayer;
4295 }
chaviw23ee71c2017-12-18 11:29:41 -08004296 }
4297
Robert Carrf7a7ca82017-12-06 13:17:07 -08004298 SurfaceControl getSplitScreenDividerAnchor() {
4299 return mSplitScreenDividerAnchor;
4300 }
4301
chaviw23ee71c2017-12-18 11:29:41 -08004302 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07004303 void onParentSet() {
4304 super.onParentSet();
4305 if (getParent() != null) {
chaviw23ee71c2017-12-18 11:29:41 -08004306 mAppAnimationLayer = makeChildSurface(null)
4307 .setName("animationLayer")
4308 .build();
Jorim Jaggibe418292018-03-26 16:14:12 +02004309 mBoostedAppAnimationLayer = makeChildSurface(null)
4310 .setName("boostedAnimationLayer")
4311 .build();
Jorim Jaggi391790622018-04-18 15:30:44 +02004312 mHomeAppAnimationLayer = makeChildSurface(null)
4313 .setName("homeAnimationLayer")
4314 .build();
Robert Carrf7a7ca82017-12-06 13:17:07 -08004315 mSplitScreenDividerAnchor = makeChildSurface(null)
4316 .setName("splitScreenDividerAnchor")
4317 .build();
4318 getPendingTransaction()
4319 .show(mAppAnimationLayer)
Jorim Jaggibe418292018-03-26 16:14:12 +02004320 .show(mBoostedAppAnimationLayer)
Jorim Jaggi391790622018-04-18 15:30:44 +02004321 .show(mHomeAppAnimationLayer)
Robert Carrf7a7ca82017-12-06 13:17:07 -08004322 .show(mSplitScreenDividerAnchor);
chaviw23ee71c2017-12-18 11:29:41 -08004323 scheduleAnimation();
Robert Carrb1579c82017-09-05 14:54:47 -07004324 } else {
chaviw23ee71c2017-12-18 11:29:41 -08004325 mAppAnimationLayer.destroy();
4326 mAppAnimationLayer = null;
Jorim Jaggibe418292018-03-26 16:14:12 +02004327 mBoostedAppAnimationLayer.destroy();
4328 mBoostedAppAnimationLayer = null;
Jorim Jaggi391790622018-04-18 15:30:44 +02004329 mHomeAppAnimationLayer.destroy();
4330 mHomeAppAnimationLayer = null;
Robert Carrf7a7ca82017-12-06 13:17:07 -08004331 mSplitScreenDividerAnchor.destroy();
4332 mSplitScreenDividerAnchor = null;
Robert Carrb1579c82017-09-05 14:54:47 -07004333 }
4334 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07004335 }
4336
Robert Carree4d4b92017-11-22 12:21:46 -08004337 private final class AboveAppWindowContainers extends NonAppWindowContainers {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004338 AboveAppWindowContainers(String name, WindowManagerService service) {
4339 super(name, service);
Robert Carree4d4b92017-11-22 12:21:46 -08004340 }
4341
Robert Carrb9506032018-02-13 13:54:00 -08004342 @Override
Vishnu Nair83537a72018-07-19 21:27:48 -07004343 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
4344 final SurfaceControl.Builder builder = super.makeChildSurface(child);
4345 if (child instanceof WindowToken && ((WindowToken) child).mRoundedCornerOverlay) {
4346 // To draw above the ColorFade layer during the screen off transition, the
4347 // rounded corner overlays need to be at the root of the surface hierarchy.
4348 // TODO: move the ColorLayer into the display overlay layer such that this is not
4349 // necessary anymore.
4350 builder.setParent(null);
4351 }
4352 return builder;
4353 }
4354
4355 @Override
Robert Carrb9506032018-02-13 13:54:00 -08004356 void assignChildLayers(SurfaceControl.Transaction t) {
4357 assignChildLayers(t, null /* imeContainer */);
4358 }
4359
Robert Carree4d4b92017-11-22 12:21:46 -08004360 void assignChildLayers(SurfaceControl.Transaction t, WindowContainer imeContainer) {
4361 boolean needAssignIme = imeContainer != null
4362 && imeContainer.getSurfaceControl() != null;
4363 for (int j = 0; j < mChildren.size(); ++j) {
4364 final WindowToken wt = mChildren.get(j);
Robert Carrf7a7ca82017-12-06 13:17:07 -08004365
4366 // See {@link mSplitScreenDividerAnchor}
4367 if (wt.windowType == TYPE_DOCK_DIVIDER) {
4368 wt.assignRelativeLayer(t, mTaskStackContainers.getSplitScreenDividerAnchor(), 1);
4369 continue;
4370 }
Vishnu Nair83537a72018-07-19 21:27:48 -07004371 if (wt.mRoundedCornerOverlay) {
4372 wt.assignLayer(t, WindowManagerPolicy.COLOR_FADE_LAYER + 1);
4373 continue;
4374 }
Robert Carree4d4b92017-11-22 12:21:46 -08004375 wt.assignLayer(t, j);
4376 wt.assignChildLayers(t);
4377
4378 int layer = mService.mPolicy.getWindowLayerFromTypeLw(
4379 wt.windowType, wt.mOwnerCanManageAppTokens);
Robert Carrb8e78fa2017-11-28 13:07:58 -08004380
4381 if (needAssignIme && layer >= mService.mPolicy.getWindowLayerFromTypeLw(
4382 TYPE_INPUT_METHOD_DIALOG, true)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004383 imeContainer.assignRelativeLayer(t, wt.getSurfaceControl(), -1);
Robert Carree4d4b92017-11-22 12:21:46 -08004384 needAssignIme = false;
4385 }
4386 }
4387 if (needAssignIme) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004388 imeContainer.assignRelativeLayer(t, getSurfaceControl(), Integer.MAX_VALUE);
Robert Carree4d4b92017-11-22 12:21:46 -08004389 }
4390 }
4391 }
4392
Wale Ogunwale19e452e2016-10-12 12:36:29 -07004393 /**
4394 * Window container class that contains all containers on this display that are not related to
4395 * Apps. E.g. status bar.
4396 */
Robert Carree4d4b92017-11-22 12:21:46 -08004397 private class NonAppWindowContainers extends DisplayChildWindowContainer<WindowToken> {
Wale Ogunwale3a931692016-11-02 16:49:48 -07004398 /**
4399 * Compares two child window tokens returns -1 if the first is lesser than the second in
4400 * terms of z-order and 1 otherwise.
4401 */
Wale Ogunwale1e129a42016-11-21 13:03:47 -08004402 private final Comparator<WindowToken> mWindowComparator = (token1, token2) ->
Wale Ogunwale3a931692016-11-02 16:49:48 -07004403 // Tokens with higher base layer are z-ordered on-top.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08004404 mService.mPolicy.getWindowLayerFromTypeLw(token1.windowType,
4405 token1.mOwnerCanManageAppTokens)
4406 < mService.mPolicy.getWindowLayerFromTypeLw(token2.windowType,
4407 token2.mOwnerCanManageAppTokens) ? -1 : 1;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07004408
Wale Ogunwale1e129a42016-11-21 13:03:47 -08004409 private final Predicate<WindowState> mGetOrientingWindow = w -> {
4410 if (!w.isVisibleLw() || !w.mPolicyVisibilityAfterAnim) {
4411 return false;
4412 }
4413 final int req = w.mAttrs.screenOrientation;
4414 if(req == SCREEN_ORIENTATION_UNSPECIFIED || req == SCREEN_ORIENTATION_BEHIND
4415 || req == SCREEN_ORIENTATION_UNSET) {
4416 return false;
4417 }
4418 return true;
4419 };
4420
Wale Ogunwale3a931692016-11-02 16:49:48 -07004421 private final String mName;
chaviwf29223e2018-01-31 13:23:51 -08004422 private final Dimmer mDimmer = new Dimmer(this);
4423 private final Rect mTmpDimBoundsRect = new Rect();
4424
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004425 NonAppWindowContainers(String name, WindowManagerService service) {
4426 super(service);
Wale Ogunwale3a931692016-11-02 16:49:48 -07004427 mName = name;
4428 }
4429
4430 void addChild(WindowToken token) {
4431 addChild(token, mWindowComparator);
4432 }
4433
4434 @Override
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004435 int getOrientation() {
4436 final WindowManagerPolicy policy = mService.mPolicy;
4437 // Find a window requesting orientation.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08004438 final WindowState win = getWindow(mGetOrientingWindow);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004439
4440 if (win != null) {
4441 final int req = win.mAttrs.screenOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004442 if (policy.isKeyguardHostWindow(win.mAttrs)) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08004443 mLastKeyguardForcedOrientation = req;
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07004444 if (mService.mKeyguardGoingAway) {
4445 // Keyguard can't affect the orientation if it is going away...
4446 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
4447 return SCREEN_ORIENTATION_UNSET;
4448 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004449 }
Andrii Kulianef5ce1c2018-03-20 19:27:24 -07004450 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, win + " forcing orientation to " + req
4451 + " for display id=" + mDisplayId);
Andrii Kulian8ee72852017-03-10 10:36:45 -08004452 return (mLastWindowForcedOrientation = req);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004453 }
4454
Andrii Kulian8ee72852017-03-10 10:36:45 -08004455 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004456
Jorim Jaggi1c530592018-04-06 15:11:47 +02004457 // Only allow force setting the orientation when all unknown visibilities have been
4458 // resolved, as otherwise we just may be starting another occluding activity.
4459 final boolean isUnoccluding =
lumark588a3e82018-07-20 18:53:54 +08004460 mAppTransition.getAppTransition() == TRANSIT_KEYGUARD_UNOCCLUDE
4461 && mUnknownAppVisibilityController.allResolved();
Jorim Jaggi1c530592018-04-06 15:11:47 +02004462 if (policy.isKeyguardShowingAndNotOccluded() || isUnoccluding) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08004463 return mLastKeyguardForcedOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00004464 }
4465
4466 return SCREEN_ORIENTATION_UNSET;
4467 }
4468
4469 @Override
Wale Ogunwale3a931692016-11-02 16:49:48 -07004470 String getName() {
4471 return mName;
4472 }
chaviwf29223e2018-01-31 13:23:51 -08004473
4474 @Override
4475 Dimmer getDimmer() {
4476 return mDimmer;
4477 }
4478
4479 @Override
4480 void prepareSurfaces() {
4481 mDimmer.resetDimStates();
4482 super.prepareSurfaces();
4483 getBounds(mTmpDimBoundsRect);
4484
4485 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
4486 scheduleAnimation();
4487 }
4488 }
Robert Carr3b716242016-08-16 16:02:21 -07004489 }
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01004490
Robert Carr9034d962018-01-04 18:27:42 -08004491 private class NonMagnifiableWindowContainers extends NonAppWindowContainers {
4492 NonMagnifiableWindowContainers(String name, WindowManagerService service) {
4493 super(name, service);
4494 }
4495
4496 @Override
4497 void applyMagnificationSpec(Transaction t, MagnificationSpec spec) {
4498 }
4499 };
4500
Robert Carrb1579c82017-09-05 14:54:47 -07004501 SurfaceControl.Builder makeSurface(SurfaceSession s) {
4502 return mService.makeSurfaceBuilder(s)
4503 .setParent(mWindowingLayer);
4504 }
4505
4506 @Override
4507 SurfaceSession getSession() {
4508 return mSession;
4509 }
4510
4511 @Override
4512 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07004513 SurfaceSession s = child != null ? child.getSession() : getSession();
4514 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(s);
Robert Carrb1579c82017-09-05 14:54:47 -07004515 b.setSize(mSurfaceSize, mSurfaceSize);
Robert Carrf59b8dd2017-10-02 18:58:36 -07004516
4517 if (child == null) {
4518 return b;
4519 }
4520
Robert Carree4d4b92017-11-22 12:21:46 -08004521 return b.setName(child.getName())
4522 .setParent(mWindowingLayer);
Robert Carrb1579c82017-09-05 14:54:47 -07004523 }
4524
4525 /**
4526 * The makeSurface variants are for use by the window-container
4527 * hierarchy. makeOverlay here is a function for various non windowing
4528 * overlays like the ScreenRotation screenshot, the Strict Mode Flash
4529 * and other potpourii.
4530 */
4531 SurfaceControl.Builder makeOverlay() {
4532 return mService.makeSurfaceBuilder(mSession)
4533 .setParent(mOverlayLayer);
4534 }
4535
Daichi Hironoa1fb9be2017-12-18 17:02:54 +09004536 /**
4537 * Reparents the given surface to mOverlayLayer.
4538 */
4539 void reparentToOverlay(Transaction transaction, SurfaceControl surface) {
4540 transaction.reparent(surface, mOverlayLayer.getHandle());
4541 }
4542
Robert Carrb1579c82017-09-05 14:54:47 -07004543 void applyMagnificationSpec(MagnificationSpec spec) {
Robert Carr24be9ab2018-04-30 17:54:53 -07004544 if (spec.scale != 1.0) {
4545 mMagnificationSpec = spec;
4546 } else {
4547 mMagnificationSpec = null;
4548 }
4549
Robert Carrf59b8dd2017-10-02 18:58:36 -07004550 applyMagnificationSpec(getPendingTransaction(), spec);
4551 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -07004552 }
4553
Robert Carr24be9ab2018-04-30 17:54:53 -07004554 void reapplyMagnificationSpec() {
4555 if (mMagnificationSpec != null) {
4556 applyMagnificationSpec(getPendingTransaction(), mMagnificationSpec);
4557 }
4558 }
4559
Robert Carrb1579c82017-09-05 14:54:47 -07004560 @Override
4561 void onParentSet() {
4562 // Since we are the top of the SurfaceControl hierarchy here
4563 // we create the root surfaces explicitly rather than chaining
4564 // up as the default implementation in onParentSet does. So we
4565 // explicitly do NOT call super here.
4566 }
4567
4568 @Override
4569 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carrb1579c82017-09-05 14:54:47 -07004570
4571 // These are layers as children of "mWindowingLayer"
4572 mBelowAppWindowsContainers.assignLayer(t, 0);
4573 mTaskStackContainers.assignLayer(t, 1);
4574 mAboveAppWindowsContainers.assignLayer(t, 2);
4575
lumarkff0ab692018-11-05 20:32:30 +08004576 final WindowState imeTarget = mInputMethodTarget;
Robert Carree4d4b92017-11-22 12:21:46 -08004577 boolean needAssignIme = true;
Robert Carr1cafdf82017-11-22 13:56:43 -08004578
Robert Carree4d4b92017-11-22 12:21:46 -08004579 // In the case where we have an IME target that is not in split-screen
4580 // mode IME assignment is easy. We just need the IME to go directly above
4581 // the target. This way children of the target will naturally go above the IME
4582 // and everyone is happy.
Robert Carr1cafdf82017-11-22 13:56:43 -08004583 //
Robert Carree4d4b92017-11-22 12:21:46 -08004584 // In the case of split-screen windowing mode, we need to elevate the IME above the
4585 // docked divider while keeping the app itself below the docked divider, so instead
4586 // we use relative layering of the IME targets child windows, and place the
4587 // IME in the non-app layer (see {@link AboveAppWindowContainers#assignChildLayers}).
Robert Carr1cafdf82017-11-22 13:56:43 -08004588 //
Robert Carr234b6332018-03-20 13:38:16 -07004589 // In the case the IME target is animating, the animation Z order may be different
4590 // than the WindowContainer Z order, so it's difficult to be sure we have the correct
4591 // IME target. In this case we just layer the IME over all transitions by placing it in the
4592 // above applications layer.
4593 //
Robert Carree4d4b92017-11-22 12:21:46 -08004594 // In the case where we have no IME target we assign it where it's base layer would
4595 // place it in the AboveAppWindowContainers.
Robert Carr234b6332018-03-20 13:38:16 -07004596 if (imeTarget != null && !(imeTarget.inSplitScreenWindowingMode()
4597 || imeTarget.mToken.isAppAnimating())
Robert Carree4d4b92017-11-22 12:21:46 -08004598 && (imeTarget.getSurfaceControl() != null)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01004599 mImeWindowsContainers.assignRelativeLayer(t, imeTarget.getSurfaceControl(),
Robert Carrb1579c82017-09-05 14:54:47 -07004600 // TODO: We need to use an extra level on the app surface to ensure
4601 // this is always above SurfaceView but always below attached window.
4602 1);
Robert Carree4d4b92017-11-22 12:21:46 -08004603 needAssignIme = false;
Robert Carrb1579c82017-09-05 14:54:47 -07004604 }
4605
4606 // Above we have assigned layers to our children, now we ask them to assign
4607 // layers to their children.
4608 mBelowAppWindowsContainers.assignChildLayers(t);
4609 mTaskStackContainers.assignChildLayers(t);
Robert Carree4d4b92017-11-22 12:21:46 -08004610 mAboveAppWindowsContainers.assignChildLayers(t,
4611 needAssignIme == true ? mImeWindowsContainers : null);
Robert Carrb1579c82017-09-05 14:54:47 -07004612 mImeWindowsContainers.assignChildLayers(t);
4613 }
4614
4615 /**
4616 * Here we satisfy an unfortunate special case of the IME in split-screen mode. Imagine
4617 * that the IME target is one of the docked applications. We'd like the docked divider to be
4618 * above both of the applications, and we'd like the IME to be above the docked divider.
4619 * However we need child windows of the applications to be above the IME (Text drag handles).
4620 * This is a non-strictly hierarcical layering and we need to break out of the Z ordering
4621 * somehow. We do this by relatively ordering children of the target to the IME in cooperation
Tiger Huang7c610aa2018-10-27 00:01:01 +08004622 * with {@link WindowState#assignLayer}
Robert Carrb1579c82017-09-05 14:54:47 -07004623 */
4624 void assignRelativeLayerForImeTargetChild(SurfaceControl.Transaction t, WindowContainer child) {
Robert Carrbb5de662018-04-26 13:29:51 -07004625 child.assignRelativeLayer(t, mImeWindowsContainers.getSurfaceControl(), 1);
Robert Carrb1579c82017-09-05 14:54:47 -07004626 }
4627
4628 @Override
Jorim Jaggi9af095b2017-12-12 17:18:57 +01004629 void prepareSurfaces() {
4630 final ScreenRotationAnimation screenRotationAnimation =
4631 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
4632 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
4633 screenRotationAnimation.getEnterTransformation().getMatrix().getValues(mTmpFloats);
4634 mPendingTransaction.setMatrix(mWindowingLayer,
4635 mTmpFloats[Matrix.MSCALE_X], mTmpFloats[Matrix.MSKEW_Y],
4636 mTmpFloats[Matrix.MSKEW_X], mTmpFloats[Matrix.MSCALE_Y]);
4637 mPendingTransaction.setPosition(mWindowingLayer,
4638 mTmpFloats[Matrix.MTRANS_X], mTmpFloats[Matrix.MTRANS_Y]);
4639 mPendingTransaction.setAlpha(mWindowingLayer,
4640 screenRotationAnimation.getEnterTransformation().getAlpha());
4641 }
Chavi Weingartenb736e322018-02-23 00:27:54 +00004642
Jorim Jaggi9af095b2017-12-12 17:18:57 +01004643 super.prepareSurfaces();
4644 }
Robert Carr2f8aa392018-01-31 14:46:51 -08004645
Jorim Jaggibe418292018-03-26 16:14:12 +02004646 void assignStackOrdering() {
4647 mTaskStackContainers.assignStackOrdering(getPendingTransaction());
Robert Carr2f8aa392018-01-31 14:46:51 -08004648 }
Chavi Weingarten3a748552018-05-14 17:32:42 +00004649
4650 /**
4651 * Increment the deferral count to determine whether to update the IME target.
4652 */
4653 void deferUpdateImeTarget() {
4654 mDeferUpdateImeTargetCount++;
4655 }
4656
4657 /**
4658 * Decrement the deferral count to determine whether to update the IME target. If the count
4659 * reaches 0, a new ime target will get computed.
4660 */
4661 void continueUpdateImeTarget() {
4662 if (mDeferUpdateImeTargetCount == 0) {
4663 return;
4664 }
4665
4666 mDeferUpdateImeTargetCount--;
4667 if (mDeferUpdateImeTargetCount == 0) {
4668 computeImeTarget(true /* updateImeTarget */);
4669 }
4670 }
4671
4672 /**
4673 * @return Whether a new IME target should be computed.
4674 */
4675 private boolean canUpdateImeTarget() {
4676 return mDeferUpdateImeTargetCount == 0;
4677 }
Arthur Hung95b38a92018-07-20 18:56:12 +08004678
4679 InputMonitor getInputMonitor() {
4680 return mInputMonitor;
4681 }
Jorim Jaggif1292892018-09-10 11:58:13 +02004682
4683 /**
4684 * @return Cached value whether we told display manager that we have content.
4685 */
4686 boolean getLastHasContent() {
4687 return mLastHasContent;
4688 }
Arthur Hungbe5ce212018-09-13 18:41:56 +08004689
4690 void registerPointerEventListener(@NonNull PointerEventListener listener) {
4691 if (mPointerEventDispatcher != null) {
4692 mPointerEventDispatcher.registerInputEventListener(listener);
4693 }
4694 }
4695
4696 void unregisterPointerEventListener(@NonNull PointerEventListener listener) {
4697 if (mPointerEventDispatcher != null) {
4698 mPointerEventDispatcher.unregisterInputEventListener(listener);
4699 }
4700 }
lumark588a3e82018-07-20 18:53:54 +08004701
4702 void prepareAppTransition(@WindowManager.TransitionType int transit,
4703 boolean alwaysKeepCurrent, @WindowManager.TransitionFlags int flags,
4704 boolean forceOverride) {
4705 final boolean prepared = mAppTransition.prepareAppTransitionLocked(
4706 transit, alwaysKeepCurrent, flags, forceOverride);
4707 if (prepared && okToAnimate()) {
4708 mSkipAppTransitionAnimation = false;
4709 }
4710 }
4711
4712 void executeAppTransition() {
4713 if (mAppTransition.isTransitionSet()) {
4714 if (DEBUG_APP_TRANSITIONS) {
4715 Slog.w(TAG_WM, "Execute app transition: " + mAppTransition + ", displayId: "
4716 + mDisplayId + " Callers=" + Debug.getCallers(5));
4717 }
4718 mAppTransition.setReady();
4719 mService.mWindowPlacerLocked.requestTraversal();
4720 }
4721 }
4722
4723 /**
4724 * Update pendingLayoutChanges after app transition has finished.
4725 */
4726 void handleAnimatingStoppedAndTransition() {
4727 int changes = 0;
4728
4729 mAppTransition.setIdle();
4730
4731 for (int i = mNoAnimationNotifyOnTransitionFinished.size() - 1; i >= 0; i--) {
4732 final IBinder token = mNoAnimationNotifyOnTransitionFinished.get(i);
4733 mAppTransition.notifyAppTransitionFinishedLocked(token);
4734 }
4735 mNoAnimationNotifyOnTransitionFinished.clear();
4736
4737 mWallpaperController.hideDeferredWallpapersIfNeeded();
4738
4739 onAppTransitionDone();
4740
4741 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4742 if (DEBUG_WALLPAPER_LIGHT) {
4743 Slog.v(TAG_WM, "Wallpaper layer changed: assigning layers + relayout");
4744 }
4745 computeImeTarget(true /* updateImeTarget */);
wilsonshihc32538e2018-11-07 17:27:34 +08004746 mWallpaperMayChange = true;
lumark588a3e82018-07-20 18:53:54 +08004747 // Since the window list has been rebuilt, focus might have to be recomputed since the
4748 // actual order of windows might have changed again.
4749 mService.mFocusMayChange = true;
4750
4751 pendingLayoutChanges |= changes;
4752 }
Andrii Kulian15cfb422018-11-07 13:38:49 -08004753
4754 /**
4755 * @see Display#FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS
4756 */
4757 boolean supportsSystemDecorations() {
4758 // TODO(b/114338689): Read the setting from DisplaySettings.
4759 return mDisplay.supportsSystemDecorations()
4760 // TODO (b/111363427): Remove this and set the new FLAG_SHOULD_SHOW_LAUNCHER flag
4761 // (b/114338689) whenever vr 2d display id is set.
4762 || mDisplayId == mService.mVr2dDisplayId
4763 || mService.mForceDesktopModeOnExternalDisplays;
4764 }
Craig Mautner59c00972012-07-30 12:10:24 -07004765}