blob: 6eeebbac2c522617cd05b9ec3e7e72b4dd5616ef [file] [log] [blame]
Craig Mautner59c00972012-07-30 12:10:24 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
Wale Ogunwale30e441d2017-11-09 08:28:45 -080019import static android.app.ActivityManager.SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT;
Wale Ogunwale61911492017-10-11 08:50:50 -070020import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070021import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070022import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Wale Ogunwale687b4272017-07-27 02:56:23 -070023import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwaleb62139d2017-09-20 15:37:35 -070024import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
25import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwalea77e1462016-09-28 10:09:46 -070026import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_BEHIND;
Wale Ogunwale51362492016-09-08 17:49:17 -070027import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSET;
28import static android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale687b4272017-07-27 02:56:23 -070029import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
30import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
Wale Ogunwale19e452e2016-10-12 12:36:29 -070031import static android.view.Display.DEFAULT_DISPLAY;
32import static android.view.Display.FLAG_PRIVATE;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -070033import static android.view.Surface.ROTATION_0;
34import static android.view.Surface.ROTATION_180;
35import static android.view.Surface.ROTATION_270;
36import static android.view.Surface.ROTATION_90;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070037import static android.view.View.GONE;
Wale Ogunwale10124582016-09-15 20:25:50 -070038import static android.view.WindowManager.DOCKED_BOTTOM;
39import static android.view.WindowManager.DOCKED_INVALID;
40import static android.view.WindowManager.DOCKED_TOP;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -080041import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
42import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
43import static android.view.WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL;
Wale Ogunwale494009b82016-10-21 09:01:38 -070044import static android.view.WindowManager.LayoutParams.FLAG_SECURE;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070045import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070046import static android.view.WindowManager.LayoutParams.NEEDS_MENU_SET_TRUE;
47import static android.view.WindowManager.LayoutParams.NEEDS_MENU_UNSET;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070048import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
Wale Ogunwale494009b82016-10-21 09:01:38 -070049import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070050import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
Wale Ogunwale494009b82016-10-21 09:01:38 -070051import static android.view.WindowManager.LayoutParams.TYPE_BOOT_PROGRESS;
Robert Carrf7a7ca82017-12-06 13:17:07 -080052import static android.view.WindowManager.LayoutParams.TYPE_DOCK_DIVIDER;
Wale Ogunwale494009b82016-10-21 09:01:38 -070053import static android.view.WindowManager.LayoutParams.TYPE_DRAWN_APPLICATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070054import static android.view.WindowManager.LayoutParams.TYPE_DREAM;
Wale Ogunwale3a931692016-11-02 16:49:48 -070055import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
56import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
Wale Ogunwale494009b82016-10-21 09:01:38 -070057import static android.view.WindowManager.LayoutParams.TYPE_STATUS_BAR;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070058import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG;
59import static android.view.WindowManager.LayoutParams.TYPE_SYSTEM_ERROR;
Svetoslav Ganovaa076532016-08-01 19:16:43 -070060import static android.view.WindowManager.LayoutParams.TYPE_TOAST;
Wale Ogunwaleec731152016-09-08 20:18:57 -070061import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
Adrian Roose99bc052017-11-20 17:55:31 +010062import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
63import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_CONFIG;
64import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_LAYOUT;
65import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
Adrian Roos1cf585052018-01-03 18:43:27 +010066import static com.android.server.wm.utils.CoordinateTransforms.transformPhysicalToLogicalCoordinates;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010067import static android.view.WindowManager.TRANSIT_KEYGUARD_UNOCCLUDE;
Wale Ogunwale1666e312016-12-16 11:27:18 -080068import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ADD_REMOVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -070069import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_BOOT;
Wale Ogunwale10124582016-09-15 20:25:50 -070070import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DISPLAY;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -070071import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS;
72import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_FOCUS_LIGHT;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070073import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_INPUT_METHOD;
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -070074import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070075import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_LAYOUT_REPEATS;
Jorim Jaggife762342016-10-13 14:33:27 +020076import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_ORIENTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070077import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREENSHOT;
Wale Ogunwale494009b82016-10-21 09:01:38 -070078import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_SCREEN_ON;
Andrii Kulian839def92016-11-02 10:58:58 -070079import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_STACK;
Wale Ogunwale1666e312016-12-16 11:27:18 -080080import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TOKEN_MOVEMENT;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070081import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070082import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_WALLPAPER_LIGHT;
Andrii Kulian06d07d62017-03-14 11:11:47 -070083import static com.android.server.wm.WindowManagerDebugConfig.SHOW_LIGHT_TRANSACTIONS;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -070084import static com.android.server.wm.WindowManagerDebugConfig.SHOW_STACK_CRAWLS;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070085import static com.android.server.wm.WindowManagerDebugConfig.SHOW_TRANSACTIONS;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -070086import static com.android.server.wm.WindowManagerDebugConfig.TAG_WITH_CLASS_NAME;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080087import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Andrii Kulian06d07d62017-03-14 11:11:47 -070088import static com.android.server.wm.WindowManagerService.CUSTOM_SCREEN_ROTATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070089import static com.android.server.wm.WindowManagerService.H.SEND_NEW_CONFIGURATION;
90import static com.android.server.wm.WindowManagerService.H.UPDATE_DOCKED_STACK_DIVIDER;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -070091import static com.android.server.wm.WindowManagerService.H.WINDOW_HIDE_TIMEOUT;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070092import static com.android.server.wm.WindowManagerService.LAYOUT_REPEAT_THRESHOLD;
Andrii Kulian06d07d62017-03-14 11:11:47 -070093import static com.android.server.wm.WindowManagerService.MAX_ANIMATION_DURATION;
94import static com.android.server.wm.WindowManagerService.SEAMLESS_ROTATION_TIMEOUT_DURATION;
Wale Ogunwalef7cab102016-10-25 15:25:14 -070095import static com.android.server.wm.WindowManagerService.UPDATE_FOCUS_WILL_PLACE_SURFACES;
Andrii Kulian06d07d62017-03-14 11:11:47 -070096import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_ACTIVE;
Wale Ogunwale494009b82016-10-21 09:01:38 -070097import static com.android.server.wm.WindowManagerService.WINDOWS_FREEZING_SCREENS_TIMEOUT;
Andrii Kulian06d07d62017-03-14 11:11:47 -070098import static com.android.server.wm.WindowManagerService.WINDOW_FREEZE_TIMEOUT_DURATION;
Wale Ogunwale19e452e2016-10-12 12:36:29 -070099import static com.android.server.wm.WindowManagerService.dipToPixel;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700100import static com.android.server.wm.WindowManagerService.logSurface;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700101import static com.android.server.wm.WindowState.RESIZE_HANDLE_WIDTH_IN_DP;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700102import static com.android.server.wm.WindowStateAnimator.DRAW_PENDING;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700103import static com.android.server.wm.WindowStateAnimator.READY_TO_SHOW;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700104import static com.android.server.wm.WindowSurfacePlacer.SET_WALLPAPER_MAY_CHANGE;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700105import static com.android.server.wm.proto.DisplayProto.ABOVE_APP_WINDOWS;
106import static com.android.server.wm.proto.DisplayProto.BELOW_APP_WINDOWS;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000107import static com.android.server.wm.proto.DisplayProto.DISPLAY_FRAMES;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700108import static com.android.server.wm.proto.DisplayProto.DISPLAY_INFO;
109import static com.android.server.wm.proto.DisplayProto.DOCKED_STACK_DIVIDER_CONTROLLER;
110import static com.android.server.wm.proto.DisplayProto.DPI;
111import static com.android.server.wm.proto.DisplayProto.ID;
112import static com.android.server.wm.proto.DisplayProto.IME_WINDOWS;
113import static com.android.server.wm.proto.DisplayProto.PINNED_STACK_CONTROLLER;
Steven Timotiusf2d68892017-08-28 17:00:01 -0700114import static com.android.server.wm.proto.DisplayProto.ROTATION;
115import static com.android.server.wm.proto.DisplayProto.SCREEN_ROTATION_ANIMATION;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700116import static com.android.server.wm.proto.DisplayProto.STACKS;
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700117import static com.android.server.wm.proto.DisplayProto.WINDOW_CONTAINER;
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -0700118
Wale Ogunwale0d5609b2017-09-13 05:55:07 -0700119import android.annotation.CallSuper;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700120import android.annotation.NonNull;
Dean Harding3e5a1522017-10-06 09:19:01 -0700121import android.content.pm.PackageManager;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700122import android.content.res.CompatibilityInfo;
Andrii Kulian441e4492016-09-29 15:25:00 -0700123import android.content.res.Configuration;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700124import android.graphics.Bitmap;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700125import android.graphics.Matrix;
Adrian Roos1cf585052018-01-03 18:43:27 +0100126import android.graphics.Path;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800127import android.graphics.Rect;
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700128import android.graphics.RectF;
Craig Mautner6601b7b2013-04-29 10:29:11 -0700129import android.graphics.Region;
Jorim Jaggid47e7e12016-03-01 09:57:38 +0100130import android.graphics.Region.Op;
Wale Ogunwaleb699ce02016-07-18 12:05:30 -0700131import android.hardware.display.DisplayManagerInternal;
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700132import android.os.Debug;
Wale Ogunwaleb0f3b832016-10-17 10:13:07 -0700133import android.os.Handler;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700134import android.os.IBinder;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700135import android.os.RemoteException;
136import android.os.SystemClock;
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100137import android.os.Trace;
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800138import android.util.ArraySet;
Chong Zhang8e89b312015-09-09 15:09:30 -0700139import android.util.DisplayMetrics;
Jorim Jaggi02886a82016-12-06 09:10:06 -0800140import android.util.MutableBoolean;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700141import android.util.Slog;
Steven Timotiusaf03df62017-07-18 16:56:43 -0700142import android.util.proto.ProtoOutputStream;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700143import android.view.Display;
Adrian Roos1cf585052018-01-03 18:43:27 +0100144import android.view.DisplayCutout;
Craig Mautner59c00972012-07-30 12:10:24 -0700145import android.view.DisplayInfo;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700146import android.view.InputDevice;
Robert Carrb1579c82017-09-05 14:54:47 -0700147import android.view.MagnificationSpec;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700148import android.view.Surface;
149import android.view.SurfaceControl;
Jorim Jaggia5e10572017-11-15 14:36:26 +0100150import android.view.SurfaceControl.Transaction;
Robert Carrb1579c82017-09-05 14:54:47 -0700151import android.view.SurfaceSession;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700152
Bryce Lee48f4b572017-04-10 10:54:15 -0700153import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -0800154import com.android.internal.util.ToBooleanFunction;
Wale Ogunwale494009b82016-10-21 09:01:38 -0700155import com.android.internal.view.IInputMethodClient;
Adrian Roose99bc052017-11-20 17:55:31 +0100156import com.android.server.policy.WindowManagerPolicy;
Craig Mautner59c00972012-07-30 12:10:24 -0700157
Robert Carr3b716242016-08-16 16:02:21 -0700158import java.io.FileDescriptor;
Craig Mautner59c00972012-07-30 12:10:24 -0700159import java.io.PrintWriter;
160import java.util.ArrayList;
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700161import java.util.Comparator;
Wale Ogunwale02319a62016-09-26 15:21:22 -0700162import java.util.HashMap;
163import java.util.Iterator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700164import java.util.LinkedList;
Andrii Kulian3a507b52016-09-19 18:14:12 -0700165import java.util.List;
Adrian Roos1cf585052018-01-03 18:43:27 +0100166import java.util.Objects;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800167import java.util.function.Consumer;
168import java.util.function.Predicate;
Craig Mautner59c00972012-07-30 12:10:24 -0700169
Craig Mautner59c00972012-07-30 12:10:24 -0700170/**
171 * Utility class for keeping track of the WindowStates and other pertinent contents of a
172 * particular Display.
173 *
174 * IMPORTANT: No method from this class should ever be used without holding
175 * WindowManagerService.mWindowMap.
176 */
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700177class DisplayContent extends WindowContainer<DisplayContent.DisplayChildWindowContainer> {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -0700178 private static final String TAG = TAG_WITH_CLASS_NAME ? "DisplayContent" : TAG_WM;
Craig Mautner59c00972012-07-30 12:10:24 -0700179
180 /** Unique identifier of this stack. */
181 private final int mDisplayId;
182
Wale Ogunwale3a931692016-11-02 16:49:48 -0700183 /** The containers below are the only child containers the display can have. */
184 // Contains all window containers that are related to apps (Activities)
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100185 private final TaskStackContainers mTaskStackContainers = new TaskStackContainers(mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700186 // Contains all non-app window containers that should be displayed above the app containers
187 // (e.g. Status bar)
Robert Carree4d4b92017-11-22 12:21:46 -0800188 private final AboveAppWindowContainers mAboveAppWindowsContainers =
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100189 new AboveAppWindowContainers("mAboveAppWindowsContainers", mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700190 // Contains all non-app window containers that should be displayed below the app containers
191 // (e.g. Wallpaper).
192 private final NonAppWindowContainers mBelowAppWindowsContainers =
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100193 new NonAppWindowContainers("mBelowAppWindowsContainers", mService);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700194 // Contains all IME window containers. Note that the z-ordering of the IME windows will depend
195 // on the IME target. We mainly have this container grouping so we can keep track of all the IME
Robert Carr9034d962018-01-04 18:27:42 -0800196 // window containers together and move them in-sync if/when needed. We use a subclass of
197 // WindowContainer which is omitted from screen magnification, as the IME is never magnified.
198 private final NonMagnifiableWindowContainers mImeWindowsContainers =
199 new NonMagnifiableWindowContainers("mImeWindowsContainers", mService);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700200
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000201 private WindowState mTmpWindow;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800202 private WindowState mTmpWindow2;
203 private WindowAnimator mTmpWindowAnimator;
204 private boolean mTmpRecoveringMemory;
205 private boolean mUpdateImeTarget;
206 private boolean mTmpInitial;
Bryce Lee27cec322017-03-21 09:41:37 -0700207 private int mMaxUiWidth;
Craig Mautner59c00972012-07-30 12:10:24 -0700208
Wale Ogunwale02319a62016-09-26 15:21:22 -0700209 // Mapping from a token IBinder to a WindowToken object on this display.
210 private final HashMap<IBinder, WindowToken> mTokenMap = new HashMap();
211
Andrii Kuliancd097992017-03-23 18:31:59 -0700212 // Initial display metrics.
Craig Mautner59c00972012-07-30 12:10:24 -0700213 int mInitialDisplayWidth = 0;
214 int mInitialDisplayHeight = 0;
Dianne Hackborndde331c2012-08-03 14:01:57 -0700215 int mInitialDisplayDensity = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700216
Adrian Roos1cf585052018-01-03 18:43:27 +0100217 DisplayCutout mInitialDisplayCutout;
218 DisplayCutout mDisplayCutoutOverride;
219
Andrii Kuliancd097992017-03-23 18:31:59 -0700220 /**
221 * Overridden display size. Initialized with {@link #mInitialDisplayWidth}
222 * and {@link #mInitialDisplayHeight}, but can be set via shell command "adb shell wm size".
223 * @see WindowManagerService#setForcedDisplaySize(int, int, int)
224 */
Craig Mautner59c00972012-07-30 12:10:24 -0700225 int mBaseDisplayWidth = 0;
226 int mBaseDisplayHeight = 0;
Andrii Kuliancd097992017-03-23 18:31:59 -0700227 /**
228 * Overridden display density for current user. Initialized with {@link #mInitialDisplayDensity}
229 * but can be set from Settings or via shell command "adb shell wm density".
230 * @see WindowManagerService#setForcedDisplayDensityForUser(int, int, int)
231 */
Dianne Hackborndde331c2012-08-03 14:01:57 -0700232 int mBaseDisplayDensity = 0;
Jeff Brownd46747a2015-04-15 19:02:36 -0700233 boolean mDisplayScalingDisabled;
Craig Mautner2d5618c2012-10-18 13:55:47 -0700234 private final DisplayInfo mDisplayInfo = new DisplayInfo();
235 private final Display mDisplay;
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700236 private final DisplayMetrics mDisplayMetrics = new DisplayMetrics();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000237 DisplayFrames mDisplayFrames;
238
Andrii Kulian06d07d62017-03-14 11:11:47 -0700239 /**
240 * For default display it contains real metrics, empty for others.
241 * @see WindowManagerService#createWatermarkInTransaction()
242 */
243 final DisplayMetrics mRealDisplayMetrics = new DisplayMetrics();
244 /** @see #computeCompatSmallestWidth(boolean, int, int, int, int) */
245 private final DisplayMetrics mTmpDisplayMetrics = new DisplayMetrics();
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700246
Andrii Kulian06d07d62017-03-14 11:11:47 -0700247 /**
248 * Compat metrics computed based on {@link #mDisplayMetrics}.
249 * @see #updateDisplayAndOrientation(int)
250 */
251 private final DisplayMetrics mCompatDisplayMetrics = new DisplayMetrics();
252
253 /** The desired scaling factor for compatible apps. */
254 float mCompatibleScreenScale;
Craig Mautner59c00972012-07-30 12:10:24 -0700255
Andrii Kulian8ee72852017-03-10 10:36:45 -0800256 /**
257 * Current rotation of the display.
258 * Constants as per {@link android.view.Surface.Rotation}.
259 *
Andrii Kulian06d07d62017-03-14 11:11:47 -0700260 * @see #updateRotationUnchecked(boolean)
Andrii Kulian8ee72852017-03-10 10:36:45 -0800261 */
262 private int mRotation = 0;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700263
Andrii Kulian8ee72852017-03-10 10:36:45 -0800264 /**
265 * Last applied orientation of the display.
266 * Constants as per {@link android.content.pm.ActivityInfo.ScreenOrientation}.
267 *
268 * @see WindowManagerService#updateOrientationFromAppTokensLocked(boolean, int)
269 */
270 private int mLastOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700271
Andrii Kulian8ee72852017-03-10 10:36:45 -0800272 /**
273 * Flag indicating that the application is receiving an orientation that has different metrics
274 * than it expected. E.g. Portrait instead of Landscape.
275 *
Andrii Kulian06d07d62017-03-14 11:11:47 -0700276 * @see #updateRotationUnchecked(boolean)
Andrii Kulian8ee72852017-03-10 10:36:45 -0800277 */
278 private boolean mAltOrientation = false;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700279
Andrii Kulian8ee72852017-03-10 10:36:45 -0800280 /**
281 * Orientation forced by some window. If there is no visible window that specifies orientation
282 * it is set to {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_UNSPECIFIED}.
283 *
284 * @see NonAppWindowContainers#getOrientation()
285 */
286 private int mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700287
Andrii Kulian8ee72852017-03-10 10:36:45 -0800288 /**
289 * Last orientation forced by the keyguard. It is applied when keyguard is shown and is not
290 * occluded.
291 *
292 * @see NonAppWindowContainers#getOrientation()
293 */
294 private int mLastKeyguardForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
295
Lucas Dupin1ead7fc2017-05-24 14:14:44 -0700296 /**
297 * Keep track of wallpaper visibility to notify changes.
298 */
299 private boolean mLastWallpaperVisible = false;
300
Andrii Kulian06d07d62017-03-14 11:11:47 -0700301 private Rect mBaseDisplayRect = new Rect();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700302
Craig Mautner39834192012-09-02 07:47:24 -0700303 // Accessed directly by all users.
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -0700304 private boolean mLayoutNeeded;
Craig Mautner76a71652012-09-03 23:23:58 -0700305 int pendingLayoutChanges;
Andrii Kulian839def92016-11-02 10:58:58 -0700306 // TODO(multi-display): remove some of the usages.
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800307 boolean isDefaultDisplay;
Craig Mautner39834192012-09-02 07:47:24 -0700308
Craig Mautnerdc548482014-02-05 13:35:24 -0800309 /** Window tokens that are in the process of exiting, but still on screen for animations. */
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700310 final ArrayList<WindowToken> mExitingTokens = new ArrayList<>();
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800311
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700312 /** Detect user tapping outside of current focused task bounds .*/
313 TaskTapPointerEventListener mTapDetector;
Craig Mautnercf910b02013-04-23 11:23:27 -0700314
Craig Mautner6601b7b2013-04-29 10:29:11 -0700315 /** Detect user tapping outside of current focused stack bounds .*/
Wale Ogunwale9adfe572016-09-08 20:43:58 -0700316 private Region mTouchExcludeRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700317
Craig Mautner6601b7b2013-04-29 10:29:11 -0700318 /** Save allocating when calculating rects */
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800319 private final Rect mTmpRect = new Rect();
320 private final Rect mTmpRect2 = new Rect();
Andrii Kulian4dfb9c42016-10-11 20:06:27 -0700321 private final RectF mTmpRectF = new RectF();
322 private final Matrix mTmpMatrix = new Matrix();
Filip Gruszczynski912d9192015-12-01 16:14:04 -0800323 private final Region mTmpRegion = new Region();
Craig Mautner6601b7b2013-04-29 10:29:11 -0700324
Bryce Leef3c6a472017-11-14 14:53:06 -0800325 /** Used for handing back size of display */
326 private final Rect mTmpBounds = new Rect();
327
Craig Mautner95da1082014-02-24 17:54:35 -0800328 /** Remove this display when animation on it has completed. */
Wale Ogunwaled4a00a02016-10-10 11:29:17 -0700329 private boolean mDeferredRemoval;
Craig Mautner1bf2b872014-02-05 15:37:40 -0800330
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700331 final DockedStackDividerController mDividerControllerLocked;
Winson Chung655332c2016-10-31 13:14:28 -0700332 final PinnedStackController mPinnedStackControllerLocked;
Filip Gruszczynski466f3212015-09-21 17:57:57 -0700333
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800334 final ArrayList<WindowState> mTapExcludedWindows = new ArrayList<>();
Andrii Kulian4b6599e2018-01-15 17:24:08 -0800335 /** A collection of windows that provide tap exclude regions inside of them. */
336 final ArraySet<WindowState> mTapExcludeProvidingWindows = new ArraySet<>();
Filip Gruszczynskiecf67222015-12-11 15:16:36 -0800337
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000338 private boolean mHaveBootMsg = false;
339 private boolean mHaveApp = false;
340 private boolean mHaveWallpaper = false;
341 private boolean mHaveKeyguard = true;
Wale Ogunwalef7cab102016-10-25 15:25:14 -0700342
343 private final LinkedList<AppWindowToken> mTmpUpdateAllDrawn = new LinkedList();
344
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700345 private final TaskForResizePointSearchResult mTmpTaskForResizePointSearchResult =
346 new TaskForResizePointSearchResult();
Wale Ogunwale6213caa2016-12-02 16:47:15 +0000347 private final ApplySurfaceChangesTransactionState mTmpApplySurfaceChangesTransactionState =
348 new ApplySurfaceChangesTransactionState();
Wale Ogunwale3f4433d2016-08-18 20:42:42 -0700349
Wale Ogunwale601a3f02016-10-17 08:39:39 -0700350 // True if this display is in the process of being removed. Used to determine if the removal of
351 // the display's direct children should be allowed.
352 private boolean mRemovingDisplay = false;
353
Bryce Leed1871262017-06-12 14:12:29 -0700354 // {@code false} if this display is in the processing of being created.
355 private boolean mDisplayReady = false;
356
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800357 WallpaperController mWallpaperController;
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700358
Robert Carrb1579c82017-09-05 14:54:47 -0700359 private final SurfaceSession mSession = new SurfaceSession();
360
361 /**
362 * We organize all top-level Surfaces in to the following layers.
363 * mOverlayLayer contains a few Surfaces which are always on top of others
Robert Carree4d4b92017-11-22 12:21:46 -0800364 * and omitted from Screen-Magnification, for example the strict mode flash or
365 * the magnification overlay itself.
Robert Carrb1579c82017-09-05 14:54:47 -0700366 * {@link #mWindowingLayer} contains everything else.
367 */
368 private SurfaceControl mOverlayLayer;
369
370 /**
371 * See {@link #mOverlayLayer}
372 */
373 private SurfaceControl mWindowingLayer;
374
375 /**
376 * Specifies the size of the surfaces in {@link #mOverlayLayer} and {@link #mWindowingLayer}.
377 * <p>
378 * For these surfaces currently we use a surface based on the larger of width or height so we
379 * don't have to resize when rotating the display.
380 */
381 private int mSurfaceSize;
382
383 /**
384 * A list of surfaces to be destroyed after {@link #mPendingTransaction} is applied.
385 */
386 private final ArrayList<SurfaceControl> mPendingDestroyingSurfaces = new ArrayList<>();
387
Jorim Jaggi9af095b2017-12-12 17:18:57 +0100388 /** Temporary float array to retrieve 3x3 matrix values. */
389 private final float[] mTmpFloats = new float[9];
390
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800391 private final Consumer<WindowState> mUpdateWindowsForAnimator = w -> {
392 WindowStateAnimator winAnimator = w.mWinAnimator;
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800393 final AppWindowToken atoken = w.mAppToken;
394 if (winAnimator.mDrawState == READY_TO_SHOW) {
395 if (atoken == null || atoken.allDrawn) {
396 if (w.performShowLocked()) {
397 pendingLayoutChanges |= FINISH_LAYOUT_REDO_ANIM;
398 if (DEBUG_LAYOUT_REPEATS) {
399 mService.mWindowPlacerLocked.debugLayoutRepeats(
400 "updateWindowsAndWallpaperLocked 5", pendingLayoutChanges);
401 }
402 }
403 }
404 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800405 };
406
407 private final Consumer<WindowState> mUpdateWallpaperForAnimator = w -> {
408 final WindowStateAnimator winAnimator = w.mWinAnimator;
409 if (winAnimator.mSurfaceController == null || !winAnimator.hasSurface()) {
410 return;
411 }
412
413 final int flags = w.mAttrs.flags;
414
415 // If this window is animating, make a note that we have an animating window and take
416 // care of a request to run a detached wallpaper animation.
Jorim Jaggia5e10572017-11-15 14:36:26 +0100417 if (winAnimator.isAnimationSet()) {
418 final AnimationAdapter anim = w.getAnimation();
419 if (anim != null) {
420 if ((flags & FLAG_SHOW_WALLPAPER) != 0 && anim.getDetachWallpaper()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800421 mTmpWindow = w;
422 }
Jorim Jaggia5e10572017-11-15 14:36:26 +0100423 final int color = anim.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800424 if (color != 0) {
425 final TaskStack stack = w.getStack();
426 if (stack != null) {
427 stack.setAnimationBackground(winAnimator, color);
428 }
429 }
430 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800431 }
432
433 // If this window's app token is running a detached wallpaper animation, make a note so
434 // we can ensure the wallpaper is displayed behind it.
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200435 final AppWindowToken atoken = winAnimator.mWin.mAppToken;
436 final AnimationAdapter animation = atoken != null ? atoken.getAnimation() : null;
437 if (animation != null) {
438 if ((flags & FLAG_SHOW_WALLPAPER) != 0 && animation.getDetachWallpaper()) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800439 mTmpWindow = w;
440 }
441
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200442 final int color = animation.getBackgroundColor();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800443 if (color != 0) {
444 final TaskStack stack = w.getStack();
445 if (stack != null) {
446 stack.setAnimationBackground(winAnimator, color);
447 }
448 }
449 }
450 };
451
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800452 private final Consumer<WindowState> mScheduleToastTimeout = w -> {
453 final int lostFocusUid = mTmpWindow.mOwnerUid;
454 final Handler handler = mService.mH;
455 if (w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == lostFocusUid) {
456 if (!handler.hasMessages(WINDOW_HIDE_TIMEOUT, w)) {
457 handler.sendMessageDelayed(handler.obtainMessage(WINDOW_HIDE_TIMEOUT, w),
458 w.mAttrs.hideTimeoutMilliseconds);
459 }
460 }
461 };
462
463 private final ToBooleanFunction<WindowState> mFindFocusedWindow = w -> {
464 final AppWindowToken focusedApp = mService.mFocusedApp;
465 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Looking for focus: " + w
466 + ", flags=" + w.mAttrs.flags + ", canReceive=" + w.canReceiveKeys());
467
468 if (!w.canReceiveKeys()) {
469 return false;
470 }
471
472 final AppWindowToken wtoken = w.mAppToken;
473
474 // If this window's application has been removed, just skip it.
475 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
476 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
477 + (wtoken.removed ? "removed" : "sendingToBottom"));
478 return false;
479 }
480
481 if (focusedApp == null) {
482 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp=null"
483 + " using new focus @ " + w);
484 mTmpWindow = w;
485 return true;
486 }
487
488 if (!focusedApp.windowsAreFocusable()) {
489 // Current focused app windows aren't focusable...
490 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: focusedApp windows not"
491 + " focusable using new focus @ " + w);
492 mTmpWindow = w;
493 return true;
494 }
495
496 // Descend through all of the app tokens and find the first that either matches
497 // win.mAppToken (return win) or mFocusedApp (return null).
498 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
499 if (focusedApp.compareTo(wtoken) > 0) {
500 // App stack below focused app stack. No focus for you!!!
501 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM,
502 "findFocusedWindow: Reached focused app=" + focusedApp);
503 mTmpWindow = null;
504 return true;
505 }
506 }
507
508 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: Found new focus @ " + w);
509 mTmpWindow = w;
510 return true;
511 };
512
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800513 private final Consumer<WindowState> mPerformLayout = w -> {
514 // Don't do layout of a window if it is not visible, or soon won't be visible, to avoid
515 // wasting time and funky changes while a window is animating away.
516 final boolean gone = (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w))
517 || w.isGoneForLayoutLw();
518
519 if (DEBUG_LAYOUT && !w.mLayoutAttached) {
520 Slog.v(TAG, "1ST PASS " + w + ": gone=" + gone + " mHaveFrame=" + w.mHaveFrame
521 + " mLayoutAttached=" + w.mLayoutAttached
522 + " screen changed=" + w.isConfigChanged());
523 final AppWindowToken atoken = w.mAppToken;
524 if (gone) Slog.v(TAG, " GONE: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200525 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800526 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
527 + " parentHidden=" + w.isParentWindowHidden());
528 else Slog.v(TAG, " VIS: mViewVisibility=" + w.mViewVisibility
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200529 + " mRelayoutCalled=" + w.mRelayoutCalled + " hidden=" + w.mToken.isHidden()
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800530 + " hiddenRequested=" + (atoken != null && atoken.hiddenRequested)
531 + " parentHidden=" + w.isParentWindowHidden());
532 }
533
534 // If this view is GONE, then skip it -- keep the current frame, and let the caller know
535 // so they can ignore it if they want. (We do the normal layout for INVISIBLE windows,
536 // since that means "perform layout as normal, just don't display").
537 if (!gone || !w.mHaveFrame || w.mLayoutNeeded
538 || ((w.isConfigChanged() || w.setReportResizeHints())
539 && !w.isGoneForLayoutLw() &&
540 ((w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
541 (w.mHasSurface && w.mAppToken != null &&
542 w.mAppToken.layoutConfigChanges)))) {
543 if (!w.mLayoutAttached) {
544 if (mTmpInitial) {
545 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
546 w.mContentChanged = false;
547 }
548 if (w.mAttrs.type == TYPE_DREAM) {
549 // Don't layout windows behind a dream, so that if it does stuff like hide
550 // the status bar we won't get a bad transition when it goes away.
551 mTmpWindow = w;
552 }
553 w.mLayoutNeeded = false;
554 w.prelayout();
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200555 final boolean firstLayout = !w.isLaidOut();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000556 mService.mPolicy.layoutWindowLw(w, null, mDisplayFrames);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800557 w.mLayoutSeq = mService.mLayoutSeq;
558
Jorim Jaggidc9385a2017-05-13 02:00:31 +0200559 // If this is the first layout, we need to initialize the last inset values as
560 // otherwise we'd immediately cause an unnecessary resize.
561 if (firstLayout) {
562 w.updateLastInsetValues();
563 }
564
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800565 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.mFrame
566 + " mContainingFrame=" + w.mContainingFrame
567 + " mDisplayFrame=" + w.mDisplayFrame);
568 }
569 }
570 };
571
572 private final Consumer<WindowState> mPerformLayoutAttached = w -> {
573 if (w.mLayoutAttached) {
574 if (DEBUG_LAYOUT) Slog.v(TAG, "2ND PASS " + w + " mHaveFrame=" + w.mHaveFrame
575 + " mViewVisibility=" + w.mViewVisibility
576 + " mRelayoutCalled=" + w.mRelayoutCalled);
577 // If this view is GONE, then skip it -- keep the current frame, and let the caller
578 // know so they can ignore it if they want. (We do the normal layout for INVISIBLE
579 // windows, since that means "perform layout as normal, just don't display").
580 if (mTmpWindow != null && mService.mPolicy.canBeHiddenByKeyguardLw(w)) {
581 return;
582 }
583 if ((w.mViewVisibility != GONE && w.mRelayoutCalled) || !w.mHaveFrame
584 || w.mLayoutNeeded) {
585 if (mTmpInitial) {
586 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - initial");
587 w.mContentChanged = false;
588 }
589 w.mLayoutNeeded = false;
590 w.prelayout();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000591 mService.mPolicy.layoutWindowLw(w, w.getParentWindow(), mDisplayFrames);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800592 w.mLayoutSeq = mService.mLayoutSeq;
593 if (DEBUG_LAYOUT) Slog.v(TAG, " LAYOUT: mFrame=" + w.mFrame
594 + " mContainingFrame=" + w.mContainingFrame
595 + " mDisplayFrame=" + w.mDisplayFrame);
596 }
597 } else if (w.mAttrs.type == TYPE_DREAM) {
598 // Don't layout windows behind a dream, so that if it does stuff like hide the
599 // status bar we won't get a bad transition when it goes away.
600 mTmpWindow = mTmpWindow2;
601 }
602 };
603
604 private final Predicate<WindowState> mComputeImeTargetPredicate = w -> {
605 if (DEBUG_INPUT_METHOD && mUpdateImeTarget) Slog.i(TAG_WM, "Checking window @" + w
606 + " fl=0x" + Integer.toHexString(w.mAttrs.flags));
607 return w.canBeImeTarget();
608 };
609
610 private final Consumer<WindowState> mApplyPostLayoutPolicy =
611 w -> mService.mPolicy.applyPostLayoutPolicyLw(w, w.mAttrs, w.getParentWindow(),
612 mService.mInputMethodTarget);
613
614 private final Consumer<WindowState> mApplySurfaceChangesTransaction = w -> {
615 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
616 final boolean obscuredChanged = w.mObscured !=
617 mTmpApplySurfaceChangesTransactionState.obscured;
618 final RootWindowContainer root = mService.mRoot;
619 // Only used if default window
620 final boolean someoneLosingFocus = !mService.mLosingFocus.isEmpty();
621
622 // Update effect.
623 w.mObscured = mTmpApplySurfaceChangesTransactionState.obscured;
624 if (!mTmpApplySurfaceChangesTransactionState.obscured) {
625 final boolean isDisplayed = w.isDisplayedLw();
626
627 if (isDisplayed && w.isObscuringDisplay()) {
628 // This window completely covers everything behind it, so we want to leave all
629 // of them as undimmed (for performance reasons).
630 root.mObscuringWindow = w;
631 mTmpApplySurfaceChangesTransactionState.obscured = true;
632 }
633
634 mTmpApplySurfaceChangesTransactionState.displayHasContent |=
635 root.handleNotObscuredLocked(w,
636 mTmpApplySurfaceChangesTransactionState.obscured,
637 mTmpApplySurfaceChangesTransactionState.syswin);
638
639 if (w.mHasSurface && isDisplayed) {
640 final int type = w.mAttrs.type;
641 if (type == TYPE_SYSTEM_DIALOG || type == TYPE_SYSTEM_ERROR
642 || (w.mAttrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
643 mTmpApplySurfaceChangesTransactionState.syswin = true;
644 }
645 if (mTmpApplySurfaceChangesTransactionState.preferredRefreshRate == 0
646 && w.mAttrs.preferredRefreshRate != 0) {
647 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate
648 = w.mAttrs.preferredRefreshRate;
649 }
650 if (mTmpApplySurfaceChangesTransactionState.preferredModeId == 0
651 && w.mAttrs.preferredDisplayModeId != 0) {
652 mTmpApplySurfaceChangesTransactionState.preferredModeId
653 = w.mAttrs.preferredDisplayModeId;
654 }
655 }
656 }
657
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800658 if (isDefaultDisplay && obscuredChanged && w.isVisibleLw()
659 && mWallpaperController.isWallpaperTarget(w)) {
660 // This is the wallpaper target and its obscured state changed... make sure the
661 // current wallpaper's visibility has been updated accordingly.
662 mWallpaperController.updateWallpaperVisibility();
663 }
664
chaviw161ea3e2018-01-31 12:01:12 -0800665 w.handleWindowMovedIfNeeded();
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800666
667 final WindowStateAnimator winAnimator = w.mWinAnimator;
668
669 //Slog.i(TAG, "Window " + this + " clearing mContentChanged - done placing");
670 w.mContentChanged = false;
671
672 // Moved from updateWindowsAndWallpaperLocked().
673 if (w.mHasSurface) {
674 // Take care of the window being ready to display.
675 final boolean committed = winAnimator.commitFinishDrawingLocked();
676 if (isDefaultDisplay && committed) {
677 if (w.mAttrs.type == TYPE_DREAM) {
678 // HACK: When a dream is shown, it may at that point hide the lock screen.
679 // So we need to redo the layout to let the phone window manager make this
680 // happen.
681 pendingLayoutChanges |= FINISH_LAYOUT_REDO_LAYOUT;
682 if (DEBUG_LAYOUT_REPEATS) {
683 surfacePlacer.debugLayoutRepeats(
684 "dream and commitFinishDrawingLocked true",
685 pendingLayoutChanges);
686 }
687 }
688 if ((w.mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0) {
689 if (DEBUG_WALLPAPER_LIGHT) Slog.v(TAG,
690 "First draw done in potential wallpaper target " + w);
691 root.mWallpaperMayChange = true;
692 pendingLayoutChanges |= FINISH_LAYOUT_REDO_WALLPAPER;
693 if (DEBUG_LAYOUT_REPEATS) {
694 surfacePlacer.debugLayoutRepeats(
695 "wallpaper and commitFinishDrawingLocked true",
696 pendingLayoutChanges);
697 }
698 }
699 }
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800700 }
701
702 final AppWindowToken atoken = w.mAppToken;
703 if (atoken != null) {
Adrian Roos4d18a2e2017-12-19 19:08:05 +0100704 atoken.updateLetterbox(w);
Wale Ogunwale1e129a42016-11-21 13:03:47 -0800705 final boolean updateAllDrawn = atoken.updateDrawnWindowStates(w);
706 if (updateAllDrawn && !mTmpUpdateAllDrawn.contains(atoken)) {
707 mTmpUpdateAllDrawn.add(atoken);
708 }
709 }
710
711 if (isDefaultDisplay && someoneLosingFocus && w == mService.mCurrentFocus
712 && w.isDisplayedLw()) {
713 mTmpApplySurfaceChangesTransactionState.focusDisplayed = true;
714 }
715
716 w.updateResizingWindowIfNeeded();
717 };
718
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800719 /**
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800720 * Create new {@link DisplayContent} instance, add itself to the root window container and
721 * initialize direct children.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700722 * @param display May not be null.
Craig Mautnerdf88d732014-01-27 09:21:32 -0800723 * @param service You know.
Wale Ogunwale0303c572016-10-20 10:16:29 -0700724 * @param wallpaperController wallpaper windows controller used to adjust the positioning of the
725 * wallpaper windows in the window list.
Craig Mautner2d5618c2012-10-18 13:55:47 -0700726 */
Wale Ogunwalec69694a2016-10-18 13:51:15 -0700727 DisplayContent(Display display, WindowManagerService service,
Robert Carrb1579c82017-09-05 14:54:47 -0700728 WallpaperController wallpaperController) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +0100729 super(service);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800730 if (service.mRoot.getDisplayContent(display.getDisplayId()) != null) {
731 throw new IllegalArgumentException("Display with ID=" + display.getDisplayId()
732 + " already exists=" + service.mRoot.getDisplayContent(display.getDisplayId())
733 + " new=" + display);
734 }
735
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700736 mDisplay = display;
737 mDisplayId = display.getDisplayId();
Wale Ogunwale0303c572016-10-20 10:16:29 -0700738 mWallpaperController = wallpaperController;
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700739 display.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700740 display.getMetrics(mDisplayMetrics);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700741 isDefaultDisplay = mDisplayId == DEFAULT_DISPLAY;
Wale Ogunwale828ff7e2017-11-14 01:01:29 +0000742 mDisplayFrames = new DisplayFrames(mDisplayId, mDisplayInfo);
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -0700743 initializeDisplayBaseInfo();
Jorim Jaggi42625d1b2016-02-11 20:11:07 -0800744 mDividerControllerLocked = new DockedStackDividerController(service, this);
Winson Chung655332c2016-10-31 13:14:28 -0700745 mPinnedStackControllerLocked = new PinnedStackController(service, this);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700746
Robert Carrb1579c82017-09-05 14:54:47 -0700747 mSurfaceSize = Math.max(mBaseDisplayHeight, mBaseDisplayWidth);
748
749 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(mSession)
750 .setSize(mSurfaceSize, mSurfaceSize)
751 .setOpaque(true);
752 mWindowingLayer = b.setName("Display Root").build();
753 mOverlayLayer = b.setName("Display Overlays").build();
754
Robert Carrf59b8dd2017-10-02 18:58:36 -0700755 getPendingTransaction().setLayer(mWindowingLayer, 0)
Robert Carrb1579c82017-09-05 14:54:47 -0700756 .setLayerStack(mWindowingLayer, mDisplayId)
757 .show(mWindowingLayer)
758 .setLayer(mOverlayLayer, 1)
759 .setLayerStack(mOverlayLayer, mDisplayId)
760 .show(mOverlayLayer);
Robert Carrf59b8dd2017-10-02 18:58:36 -0700761 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -0700762
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700763 // These are the only direct children we should ever have and they are permanent.
Wale Ogunwale3a931692016-11-02 16:49:48 -0700764 super.addChild(mBelowAppWindowsContainers, null);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700765 super.addChild(mTaskStackContainers, null);
Wale Ogunwale3a931692016-11-02 16:49:48 -0700766 super.addChild(mAboveAppWindowsContainers, null);
767 super.addChild(mImeWindowsContainers, null);
Andrii Kulian367ff7f2017-01-25 19:45:34 -0800768
769 // Add itself as a child to the root container.
770 mService.mRoot.addChild(this, null);
Bryce Leed1871262017-06-12 14:12:29 -0700771
772 // TODO(b/62541591): evaluate whether this is the best spot to declare the
773 // {@link DisplayContent} ready for use.
774 mDisplayReady = true;
775 }
776
777 boolean isReady() {
778 // The display is ready when the system and the individual display are both ready.
779 return mService.mDisplayReady && mDisplayReady;
Craig Mautner59c00972012-07-30 12:10:24 -0700780 }
781
782 int getDisplayId() {
783 return mDisplayId;
784 }
785
Wale Ogunwale02319a62016-09-26 15:21:22 -0700786 WindowToken getWindowToken(IBinder binder) {
787 return mTokenMap.get(binder);
788 }
789
790 AppWindowToken getAppWindowToken(IBinder binder) {
791 final WindowToken token = getWindowToken(binder);
792 if (token == null) {
793 return null;
794 }
795 return token.asAppWindowToken();
796 }
797
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700798 private void addWindowToken(IBinder binder, WindowToken token) {
Wale Ogunwale02319a62016-09-26 15:21:22 -0700799 final DisplayContent dc = mService.mRoot.getWindowTokenDisplay(token);
800 if (dc != null) {
801 // We currently don't support adding a window token to the display if the display
802 // already has the binder mapped to another token. If there is a use case for supporting
803 // this moving forward we will either need to merge the WindowTokens some how or have
804 // the binder map to a list of window tokens.
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700805 throw new IllegalArgumentException("Can't map token=" + token + " to display="
806 + getName() + " already mapped to display=" + dc + " tokens=" + dc.mTokenMap);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700807 }
Wale Ogunwale2f569ed2017-05-08 09:15:49 -0700808 if (binder == null) {
809 throw new IllegalArgumentException("Can't map token=" + token + " to display="
810 + getName() + " binder is null");
811 }
812 if (token == null) {
813 throw new IllegalArgumentException("Can't map null token to display="
814 + getName() + " binder=" + binder);
815 }
816
Wale Ogunwale02319a62016-09-26 15:21:22 -0700817 mTokenMap.put(binder, token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700818
819 if (token.asAppWindowToken() == null) {
820 // Add non-app token to container hierarchy on the display. App tokens are added through
821 // the parent container managing them (e.g. Tasks).
Wale Ogunwale3a931692016-11-02 16:49:48 -0700822 switch (token.windowType) {
823 case TYPE_WALLPAPER:
824 mBelowAppWindowsContainers.addChild(token);
825 break;
826 case TYPE_INPUT_METHOD:
827 case TYPE_INPUT_METHOD_DIALOG:
828 mImeWindowsContainers.addChild(token);
829 break;
830 default:
831 mAboveAppWindowsContainers.addChild(token);
832 break;
833 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700834 }
Wale Ogunwale02319a62016-09-26 15:21:22 -0700835 }
836
837 WindowToken removeWindowToken(IBinder binder) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700838 final WindowToken token = mTokenMap.remove(binder);
839 if (token != null && token.asAppWindowToken() == null) {
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800840 token.setExiting();
841 }
842 return token;
843 }
844
845 /** Changes the display the input window token is housed on to this one. */
846 void reParentWindowToken(WindowToken token) {
847 final DisplayContent prevDc = token.getDisplayContent();
848 if (prevDc == this) {
849 return;
850 }
Andrii Kulian6cc1a1d2016-12-27 23:52:59 -0800851 if (prevDc != null && prevDc.mTokenMap.remove(token.token) != null
852 && token.asAppWindowToken() == null) {
853 // Removed the token from the map, but made sure it's not an app token before removing
854 // from parent.
855 token.getParent().removeChild(token);
Wale Ogunwale19e452e2016-10-12 12:36:29 -0700856 }
Wale Ogunwale3d0bfd92016-12-05 11:38:02 -0800857
858 addWindowToken(token.token, token);
Wale Ogunwale02319a62016-09-26 15:21:22 -0700859 }
860
Wale Ogunwaleac2561e2016-11-01 15:43:46 -0700861 void removeAppToken(IBinder binder) {
862 final WindowToken token = removeWindowToken(binder);
863 if (token == null) {
864 Slog.w(TAG_WM, "removeAppToken: Attempted to remove non-existing token: " + binder);
865 return;
866 }
867
868 final AppWindowToken appToken = token.asAppWindowToken();
869
870 if (appToken == null) {
871 Slog.w(TAG_WM, "Attempted to remove non-App token: " + binder + " token=" + token);
872 return;
873 }
874
875 appToken.onRemovedFromDisplay();
876 }
877
Craig Mautnerb47bbc32012-08-22 17:41:48 -0700878 Display getDisplay() {
879 return mDisplay;
880 }
881
Craig Mautner59c00972012-07-30 12:10:24 -0700882 DisplayInfo getDisplayInfo() {
883 return mDisplayInfo;
884 }
885
Wale Ogunwale231b06e2015-09-16 12:03:09 -0700886 DisplayMetrics getDisplayMetrics() {
887 return mDisplayMetrics;
888 }
889
Andrii Kulian8ee72852017-03-10 10:36:45 -0800890 int getRotation() {
891 return mRotation;
892 }
893
894 void setRotation(int newRotation) {
895 mRotation = newRotation;
896 }
897
898 int getLastOrientation() {
899 return mLastOrientation;
900 }
901
902 void setLastOrientation(int orientation) {
903 mLastOrientation = orientation;
904 }
905
906 boolean getAltOrientation() {
907 return mAltOrientation;
908 }
909
910 void setAltOrientation(boolean altOrientation) {
911 mAltOrientation = altOrientation;
912 }
913
914 int getLastWindowForcedOrientation() {
915 return mLastWindowForcedOrientation;
916 }
917
Andrii Kulian06d07d62017-03-14 11:11:47 -0700918 /**
919 * Update rotation of the display.
920 *
921 * Returns true if the rotation has been changed. In this case YOU MUST CALL
922 * {@link WindowManagerService#sendNewConfiguration(int)} TO UNFREEZE THE SCREEN.
923 */
924 boolean updateRotationUnchecked(boolean inTransaction) {
925 if (mService.mDeferredRotationPauseCount > 0) {
926 // Rotation updates have been paused temporarily. Defer the update until
927 // updates have been resumed.
928 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, rotation is paused.");
929 return false;
930 }
931
932 ScreenRotationAnimation screenRotationAnimation =
933 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
934 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
935 // Rotation updates cannot be performed while the previous rotation change
936 // animation is still in progress. Skip this update. We will try updating
937 // again after the animation is finished and the display is unfrozen.
938 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, animation in progress.");
939 return false;
940 }
941 if (mService.mDisplayFrozen) {
942 // Even if the screen rotation animation has finished (e.g. isAnimating
943 // returns false), there is still some time where we haven't yet unfrozen
944 // the display. We also need to abort rotation here.
945 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
946 "Deferring rotation, still finishing previous rotation");
947 return false;
948 }
949
950 if (!mService.mDisplayEnabled) {
951 // No point choosing a rotation if the display is not enabled.
952 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Deferring rotation, display is not enabled.");
953 return false;
954 }
955
956 final int oldRotation = mRotation;
957 final int lastOrientation = mLastOrientation;
958 final boolean oldAltOrientation = mAltOrientation;
959 int rotation = mService.mPolicy.rotationForOrientationLw(lastOrientation, oldRotation);
Robert Carr0e007272017-10-02 13:00:55 -0700960 boolean mayRotateSeamlessly = mService.mPolicy.shouldRotateSeamlessly(oldRotation,
Robert Carr897215d2017-03-29 12:25:50 -0700961 rotation);
Andrii Kulian06d07d62017-03-14 11:11:47 -0700962
Robert Carr0e007272017-10-02 13:00:55 -0700963 if (mayRotateSeamlessly) {
Andrii Kulian06d07d62017-03-14 11:11:47 -0700964 final WindowState seamlessRotated = getWindow((w) -> w.mSeamlesslyRotated);
965 if (seamlessRotated != null) {
966 // We can't rotate (seamlessly or not) while waiting for the last seamless rotation
967 // to complete (that is, waiting for windows to redraw). It's tempting to check
968 // w.mSeamlessRotationCount but that could be incorrect in the case of
969 // window-removal.
970 return false;
971 }
Robert Carr0e007272017-10-02 13:00:55 -0700972
973 // In the presence of the PINNED stack or System Alert
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700974 // windows we unfortunately can not seamlessly rotate.
Wale Ogunwale61911492017-10-11 08:50:50 -0700975 if (hasPinnedStack()) {
Robert Carr0e007272017-10-02 13:00:55 -0700976 mayRotateSeamlessly = false;
977 }
978 for (int i = 0; i < mService.mSessions.size(); i++) {
979 if (mService.mSessions.valueAt(i).hasAlertWindowSurfaces()) {
980 mayRotateSeamlessly = false;
981 break;
982 }
983 }
Andrii Kulian06d07d62017-03-14 11:11:47 -0700984 }
Robert Carr0e007272017-10-02 13:00:55 -0700985 final boolean rotateSeamlessly = mayRotateSeamlessly;
Andrii Kulian06d07d62017-03-14 11:11:47 -0700986
987 // TODO: Implement forced rotation changes.
988 // Set mAltOrientation to indicate that the application is receiving
989 // an orientation that has different metrics than it expected.
990 // eg. Portrait instead of Landscape.
991
992 final boolean altOrientation = !mService.mPolicy.rotationHasCompatibleMetricsLw(
993 lastOrientation, rotation);
994
995 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Selected orientation " + lastOrientation
996 + ", got rotation " + rotation + " which has "
997 + (altOrientation ? "incompatible" : "compatible") + " metrics");
998
999 if (oldRotation == rotation && oldAltOrientation == altOrientation) {
1000 // No change.
1001 return false;
1002 }
1003
1004 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Rotation changed to " + rotation
1005 + (altOrientation ? " (alt)" : "") + " from " + oldRotation
1006 + (oldAltOrientation ? " (alt)" : "") + ", lastOrientation=" + lastOrientation);
1007
1008 if (DisplayContent.deltaRotation(rotation, oldRotation) != 2) {
1009 mService.mWaitingForConfig = true;
1010 }
1011
1012 mRotation = rotation;
1013 mAltOrientation = altOrientation;
1014 if (isDefaultDisplay) {
1015 mService.mPolicy.setRotationLw(rotation);
1016 }
1017
1018 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_ACTIVE;
1019 mService.mH.removeMessages(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT);
1020 mService.mH.sendEmptyMessageDelayed(WindowManagerService.H.WINDOW_FREEZE_TIMEOUT,
1021 WINDOW_FREEZE_TIMEOUT_DURATION);
1022
1023 setLayoutNeeded();
1024 final int[] anim = new int[2];
Robert Carrf59b8dd2017-10-02 18:58:36 -07001025 mService.mPolicy.selectRotationAnimationLw(anim);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001026
1027 if (!rotateSeamlessly) {
Bryce Lee8f853582017-06-05 17:25:59 -07001028 mService.startFreezingDisplayLocked(inTransaction, anim[0], anim[1], this);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001029 // startFreezingDisplayLocked can reset the ScreenRotationAnimation.
1030 screenRotationAnimation = mService.mAnimator.getScreenRotationAnimationLocked(
1031 mDisplayId);
1032 } else {
1033 // The screen rotation animation uses a screenshot to freeze the screen
1034 // while windows resize underneath.
1035 // When we are rotating seamlessly, we allow the elements to transition
1036 // to their rotated state independently and without a freeze required.
1037 screenRotationAnimation = null;
1038
1039 // We have to reset this in case a window was removed before it
1040 // finished seamless rotation.
1041 mService.mSeamlessRotationCount = 0;
1042 }
1043
1044 // We need to update our screen size information to match the new rotation. If the rotation
1045 // has actually changed then this method will return true and, according to the comment at
1046 // the top of the method, the caller is obligated to call computeNewConfigurationLocked().
1047 // By updating the Display info here it will be available to
1048 // #computeScreenConfiguration() later.
1049 updateDisplayAndOrientation(getConfiguration().uiMode);
1050
1051 if (!inTransaction) {
1052 if (SHOW_TRANSACTIONS) {
1053 Slog.i(TAG_WM, ">>> OPEN TRANSACTION setRotationUnchecked");
1054 }
1055 mService.openSurfaceTransaction();
1056 }
1057 try {
1058 // NOTE: We disable the rotation in the emulator because
1059 // it doesn't support hardware OpenGL emulation yet.
1060 if (CUSTOM_SCREEN_ROTATION && screenRotationAnimation != null
1061 && screenRotationAnimation.hasScreenshot()) {
Robert Carrb1579c82017-09-05 14:54:47 -07001062 if (screenRotationAnimation.setRotationInTransaction(rotation,
Andrii Kulian06d07d62017-03-14 11:11:47 -07001063 MAX_ANIMATION_DURATION, mService.getTransitionAnimationScaleLocked(),
1064 mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight)) {
1065 mService.scheduleAnimationLocked();
1066 }
1067 }
1068
1069 if (rotateSeamlessly) {
1070 forAllWindows(w -> {
1071 w.mWinAnimator.seamlesslyRotateWindow(oldRotation, rotation);
1072 }, true /* traverseTopToBottom */);
1073 }
1074
1075 mService.mDisplayManagerInternal.performTraversalInTransactionFromWindowManager();
1076 } finally {
1077 if (!inTransaction) {
Adrian Roos111aff92017-09-27 18:11:46 +02001078 mService.closeSurfaceTransaction("setRotationUnchecked");
Andrii Kulian06d07d62017-03-14 11:11:47 -07001079 if (SHOW_LIGHT_TRANSACTIONS) {
1080 Slog.i(TAG_WM, "<<< CLOSE TRANSACTION setRotationUnchecked");
1081 }
1082 }
1083 }
1084
1085 forAllWindows(w -> {
Andrii Kulian06d07d62017-03-14 11:11:47 -07001086 if (w.mHasSurface && !rotateSeamlessly) {
1087 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Set mOrientationChanging of " + w);
Bryce Lee8c3cf382017-07-06 19:47:10 -07001088 w.setOrientationChanging(true);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001089 mService.mRoot.mOrientationChangeComplete = false;
1090 w.mLastFreezeDuration = 0;
1091 }
1092 w.mReportOrientationChanged = true;
1093 }, true /* traverseTopToBottom */);
1094
1095 if (rotateSeamlessly) {
1096 mService.mH.removeMessages(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT);
1097 mService.mH.sendEmptyMessageDelayed(WindowManagerService.H.SEAMLESS_ROTATION_TIMEOUT,
1098 SEAMLESS_ROTATION_TIMEOUT_DURATION);
1099 }
1100
1101 for (int i = mService.mRotationWatchers.size() - 1; i >= 0; i--) {
1102 final WindowManagerService.RotationWatcher rotationWatcher
1103 = mService.mRotationWatchers.get(i);
1104 if (rotationWatcher.mDisplayId == mDisplayId) {
1105 try {
1106 rotationWatcher.mWatcher.onRotationChanged(rotation);
1107 } catch (RemoteException e) {
1108 // Ignore
1109 }
1110 }
1111 }
1112
1113 // TODO (multi-display): Magnification is supported only for the default display.
1114 // Announce rotation only if we will not animate as we already have the
1115 // windows in final state. Otherwise, we make this call at the rotation end.
1116 if (screenRotationAnimation == null && mService.mAccessibilityController != null
1117 && isDefaultDisplay) {
1118 mService.mAccessibilityController.onRotationChangedLocked(this);
1119 }
1120
1121 return true;
1122 }
1123
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001124 void configureDisplayPolicy() {
1125 mService.mPolicy.setInitialDisplaySize(getDisplay(),
1126 mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1127
1128 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo);
1129 }
1130
Andrii Kulian06d07d62017-03-14 11:11:47 -07001131 /**
1132 * Update {@link #mDisplayInfo} and other internal variables when display is rotated or config
1133 * changed.
1134 * Do not call if {@link WindowManagerService#mDisplayReady} == false.
1135 */
1136 private DisplayInfo updateDisplayAndOrientation(int uiMode) {
1137 // Use the effective "visual" dimensions based on current rotation
1138 final boolean rotated = (mRotation == ROTATION_90 || mRotation == ROTATION_270);
1139 final int realdw = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
1140 final int realdh = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
1141 int dw = realdw;
1142 int dh = realdh;
1143
1144 if (mAltOrientation) {
1145 if (realdw > realdh) {
1146 // Turn landscape into portrait.
1147 int maxw = (int)(realdh/1.3f);
1148 if (maxw < realdw) {
1149 dw = maxw;
1150 }
1151 } else {
1152 // Turn portrait into landscape.
1153 int maxh = (int)(realdw/1.3f);
1154 if (maxh < realdh) {
1155 dh = maxh;
1156 }
1157 }
1158 }
1159
1160 // Update application display metrics.
1161 final int appWidth = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, mRotation, uiMode,
1162 mDisplayId);
1163 final int appHeight = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, mRotation, uiMode,
1164 mDisplayId);
1165 mDisplayInfo.rotation = mRotation;
1166 mDisplayInfo.logicalWidth = dw;
1167 mDisplayInfo.logicalHeight = dh;
1168 mDisplayInfo.logicalDensityDpi = mBaseDisplayDensity;
1169 mDisplayInfo.appWidth = appWidth;
1170 mDisplayInfo.appHeight = appHeight;
1171 if (isDefaultDisplay) {
1172 mDisplayInfo.getLogicalMetrics(mRealDisplayMetrics,
1173 CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO, null);
1174 }
Adrian Roos1cf585052018-01-03 18:43:27 +01001175 mDisplayInfo.displayCutout = calculateDisplayCutoutForCurrentRotation();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001176 mDisplayInfo.getAppMetrics(mDisplayMetrics);
1177 if (mDisplayScalingDisabled) {
1178 mDisplayInfo.flags |= Display.FLAG_SCALING_DISABLED;
1179 } else {
1180 mDisplayInfo.flags &= ~Display.FLAG_SCALING_DISABLED;
1181 }
1182
1183 mService.mDisplayManagerInternal.setDisplayInfoOverrideFromWindowManager(mDisplayId,
1184 mDisplayInfo);
1185
1186 mBaseDisplayRect.set(0, 0, dw, dh);
1187
1188 if (isDefaultDisplay) {
1189 mCompatibleScreenScale = CompatibilityInfo.computeCompatibleScaling(mDisplayMetrics,
1190 mCompatDisplayMetrics);
1191 }
Bryce Leef3c6a472017-11-14 14:53:06 -08001192
1193 updateBounds();
Andrii Kulian06d07d62017-03-14 11:11:47 -07001194 return mDisplayInfo;
1195 }
1196
Adrian Roos1cf585052018-01-03 18:43:27 +01001197 DisplayCutout calculateDisplayCutoutForCurrentRotation() {
1198 final DisplayCutout cutout = mInitialDisplayCutout;
1199 if (cutout == null || cutout == DisplayCutout.NO_CUTOUT || mRotation == ROTATION_0) {
1200 return cutout;
1201 }
1202 final Path bounds = cutout.getBounds().getBoundaryPath();
1203 transformPhysicalToLogicalCoordinates(mRotation, mInitialDisplayWidth,
1204 mInitialDisplayHeight, mTmpMatrix);
1205 bounds.transform(mTmpMatrix);
1206 return DisplayCutout.fromBounds(bounds);
1207 }
1208
Andrii Kulian06d07d62017-03-14 11:11:47 -07001209 /**
1210 * Compute display configuration based on display properties and policy settings.
1211 * Do not call if mDisplayReady == false.
1212 */
1213 void computeScreenConfiguration(Configuration config) {
1214 final DisplayInfo displayInfo = updateDisplayAndOrientation(config.uiMode);
1215
1216 final int dw = displayInfo.logicalWidth;
1217 final int dh = displayInfo.logicalHeight;
Wale Ogunwale687b4272017-07-27 02:56:23 -07001218 config.orientation = (dw <= dh) ? ORIENTATION_PORTRAIT : ORIENTATION_LANDSCAPE;
1219 // TODO: Probably best to set this based on some setting in the display content object,
1220 // so the display can be configured for things like fullscreen.
1221 config.windowConfiguration.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Bryce Leec1f2f2a2017-06-22 15:29:42 -07001222
Andrii Kulian06d07d62017-03-14 11:11:47 -07001223 config.screenWidthDp =
1224 (int)(mService.mPolicy.getConfigDisplayWidth(dw, dh, displayInfo.rotation,
1225 config.uiMode, mDisplayId) / mDisplayMetrics.density);
1226 config.screenHeightDp =
1227 (int)(mService.mPolicy.getConfigDisplayHeight(dw, dh, displayInfo.rotation,
1228 config.uiMode, mDisplayId) / mDisplayMetrics.density);
Bryce Lee7566d762017-03-30 09:34:15 -07001229
1230 mService.mPolicy.getNonDecorInsetsLw(displayInfo.rotation, dw, dh, mTmpRect);
1231 final int leftInset = mTmpRect.left;
1232 final int topInset = mTmpRect.top;
1233 // appBounds at the root level should mirror the app screen size.
Wale Ogunwale822e5122017-07-26 06:02:24 -07001234 config.windowConfiguration.setAppBounds(leftInset /* left */, topInset /* top */,
1235 leftInset + displayInfo.appWidth /* right */,
1236 topInset + displayInfo.appHeight /* bottom */);
Andrii Kulian06d07d62017-03-14 11:11:47 -07001237 final boolean rotated = (displayInfo.rotation == Surface.ROTATION_90
1238 || displayInfo.rotation == Surface.ROTATION_270);
1239
1240 computeSizeRangesAndScreenLayout(displayInfo, mDisplayId, rotated, config.uiMode, dw, dh,
1241 mDisplayMetrics.density, config);
1242
1243 config.screenLayout = (config.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK)
1244 | ((displayInfo.flags & Display.FLAG_ROUND) != 0
1245 ? Configuration.SCREENLAYOUT_ROUND_YES
1246 : Configuration.SCREENLAYOUT_ROUND_NO);
1247
1248 config.compatScreenWidthDp = (int)(config.screenWidthDp / mCompatibleScreenScale);
1249 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);
1250 config.compatSmallestScreenWidthDp = computeCompatSmallestWidth(rotated, config.uiMode, dw,
1251 dh, mDisplayId);
1252 config.densityDpi = displayInfo.logicalDensityDpi;
1253
1254 config.colorMode =
1255 (displayInfo.isHdr()
1256 ? Configuration.COLOR_MODE_HDR_YES
1257 : Configuration.COLOR_MODE_HDR_NO)
Romain Guye89d0bb2017-06-20 12:23:42 -07001258 | (displayInfo.isWideColorGamut() && mService.hasWideColorGamutSupport()
Andrii Kulian06d07d62017-03-14 11:11:47 -07001259 ? Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_YES
1260 : Configuration.COLOR_MODE_WIDE_COLOR_GAMUT_NO);
1261
1262 // Update the configuration based on available input devices, lid switch,
1263 // and platform configuration.
1264 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1265 config.keyboard = Configuration.KEYBOARD_NOKEYS;
1266 config.navigation = Configuration.NAVIGATION_NONAV;
1267
1268 int keyboardPresence = 0;
1269 int navigationPresence = 0;
1270 final InputDevice[] devices = mService.mInputManager.getInputDevices();
1271 final int len = devices != null ? devices.length : 0;
1272 for (int i = 0; i < len; i++) {
1273 InputDevice device = devices[i];
1274 if (!device.isVirtual()) {
1275 final int sources = device.getSources();
1276 final int presenceFlag = device.isExternal() ?
1277 WindowManagerPolicy.PRESENCE_EXTERNAL :
1278 WindowManagerPolicy.PRESENCE_INTERNAL;
1279
1280 // TODO(multi-display): Configure on per-display basis.
1281 if (mService.mIsTouchDevice) {
1282 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
1283 InputDevice.SOURCE_TOUCHSCREEN) {
1284 config.touchscreen = Configuration.TOUCHSCREEN_FINGER;
1285 }
1286 } else {
1287 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
1288 }
1289
1290 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
1291 config.navigation = Configuration.NAVIGATION_TRACKBALL;
1292 navigationPresence |= presenceFlag;
1293 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
1294 && config.navigation == Configuration.NAVIGATION_NONAV) {
1295 config.navigation = Configuration.NAVIGATION_DPAD;
1296 navigationPresence |= presenceFlag;
1297 }
1298
1299 if (device.getKeyboardType() == InputDevice.KEYBOARD_TYPE_ALPHABETIC) {
1300 config.keyboard = Configuration.KEYBOARD_QWERTY;
1301 keyboardPresence |= presenceFlag;
1302 }
1303 }
1304 }
1305
1306 if (config.navigation == Configuration.NAVIGATION_NONAV && mService.mHasPermanentDpad) {
1307 config.navigation = Configuration.NAVIGATION_DPAD;
1308 navigationPresence |= WindowManagerPolicy.PRESENCE_INTERNAL;
1309 }
1310
1311 // Determine whether a hard keyboard is available and enabled.
1312 // TODO(multi-display): Should the hardware keyboard be tied to a display or to a device?
1313 boolean hardKeyboardAvailable = config.keyboard != Configuration.KEYBOARD_NOKEYS;
1314 if (hardKeyboardAvailable != mService.mHardKeyboardAvailable) {
1315 mService.mHardKeyboardAvailable = hardKeyboardAvailable;
1316 mService.mH.removeMessages(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1317 mService.mH.sendEmptyMessage(WindowManagerService.H.REPORT_HARD_KEYBOARD_STATUS_CHANGE);
1318 }
1319
1320 // Let the policy update hidden states.
1321 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_NO;
1322 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_NO;
1323 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_NO;
1324 mService.mPolicy.adjustConfigurationLw(config, keyboardPresence, navigationPresence);
1325 }
1326
1327 private int computeCompatSmallestWidth(boolean rotated, int uiMode, int dw, int dh,
1328 int displayId) {
1329 mTmpDisplayMetrics.setTo(mDisplayMetrics);
1330 final DisplayMetrics tmpDm = mTmpDisplayMetrics;
1331 final int unrotDw, unrotDh;
1332 if (rotated) {
1333 unrotDw = dh;
1334 unrotDh = dw;
1335 } else {
1336 unrotDw = dw;
1337 unrotDh = dh;
1338 }
1339 int sw = reduceCompatConfigWidthSize(0, Surface.ROTATION_0, uiMode, tmpDm, unrotDw, unrotDh,
1340 displayId);
1341 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_90, uiMode, tmpDm, unrotDh, unrotDw,
1342 displayId);
1343 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_180, uiMode, tmpDm, unrotDw, unrotDh,
1344 displayId);
1345 sw = reduceCompatConfigWidthSize(sw, Surface.ROTATION_270, uiMode, tmpDm, unrotDh, unrotDw,
1346 displayId);
1347 return sw;
1348 }
1349
1350 private int reduceCompatConfigWidthSize(int curSize, int rotation, int uiMode,
1351 DisplayMetrics dm, int dw, int dh, int displayId) {
1352 dm.noncompatWidthPixels = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode,
1353 displayId);
1354 dm.noncompatHeightPixels = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation,
1355 uiMode, displayId);
1356 float scale = CompatibilityInfo.computeCompatibleScaling(dm, null);
1357 int size = (int)(((dm.noncompatWidthPixels / scale) / dm.density) + .5f);
1358 if (curSize == 0 || size < curSize) {
1359 curSize = size;
1360 }
1361 return curSize;
1362 }
1363
1364 private void computeSizeRangesAndScreenLayout(DisplayInfo displayInfo, int displayId,
1365 boolean rotated, int uiMode, int dw, int dh, float density, Configuration outConfig) {
1366
1367 // We need to determine the smallest width that will occur under normal
1368 // operation. To this, start with the base screen size and compute the
1369 // width under the different possible rotations. We need to un-rotate
1370 // the current screen dimensions before doing this.
1371 int unrotDw, unrotDh;
1372 if (rotated) {
1373 unrotDw = dh;
1374 unrotDh = dw;
1375 } else {
1376 unrotDw = dw;
1377 unrotDh = dh;
1378 }
1379 displayInfo.smallestNominalAppWidth = 1<<30;
1380 displayInfo.smallestNominalAppHeight = 1<<30;
1381 displayInfo.largestNominalAppWidth = 0;
1382 displayInfo.largestNominalAppHeight = 0;
1383 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_0, uiMode, unrotDw,
1384 unrotDh);
1385 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_90, uiMode, unrotDh,
1386 unrotDw);
1387 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_180, uiMode, unrotDw,
1388 unrotDh);
1389 adjustDisplaySizeRanges(displayInfo, displayId, Surface.ROTATION_270, uiMode, unrotDh,
1390 unrotDw);
1391 int sl = Configuration.resetScreenLayout(outConfig.screenLayout);
1392 sl = reduceConfigLayout(sl, Surface.ROTATION_0, density, unrotDw, unrotDh, uiMode,
1393 displayId);
1394 sl = reduceConfigLayout(sl, Surface.ROTATION_90, density, unrotDh, unrotDw, uiMode,
1395 displayId);
1396 sl = reduceConfigLayout(sl, Surface.ROTATION_180, density, unrotDw, unrotDh, uiMode,
1397 displayId);
1398 sl = reduceConfigLayout(sl, Surface.ROTATION_270, density, unrotDh, unrotDw, uiMode,
1399 displayId);
1400 outConfig.smallestScreenWidthDp = (int)(displayInfo.smallestNominalAppWidth / density);
1401 outConfig.screenLayout = sl;
1402 }
1403
1404 private int reduceConfigLayout(int curLayout, int rotation, float density, int dw, int dh,
1405 int uiMode, int displayId) {
1406 // Get the app screen size at this rotation.
1407 int w = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation, uiMode, displayId);
1408 int h = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation, uiMode, displayId);
1409
1410 // Compute the screen layout size class for this rotation.
1411 int longSize = w;
1412 int shortSize = h;
1413 if (longSize < shortSize) {
1414 int tmp = longSize;
1415 longSize = shortSize;
1416 shortSize = tmp;
1417 }
1418 longSize = (int)(longSize/density);
1419 shortSize = (int)(shortSize/density);
1420 return Configuration.reduceScreenLayout(curLayout, longSize, shortSize);
1421 }
1422
1423 private void adjustDisplaySizeRanges(DisplayInfo displayInfo, int displayId, int rotation,
1424 int uiMode, int dw, int dh) {
1425 final int width = mService.mPolicy.getConfigDisplayWidth(dw, dh, rotation, uiMode,
1426 displayId);
1427 if (width < displayInfo.smallestNominalAppWidth) {
1428 displayInfo.smallestNominalAppWidth = width;
1429 }
1430 if (width > displayInfo.largestNominalAppWidth) {
1431 displayInfo.largestNominalAppWidth = width;
1432 }
1433 final int height = mService.mPolicy.getConfigDisplayHeight(dw, dh, rotation, uiMode,
1434 displayId);
1435 if (height < displayInfo.smallestNominalAppHeight) {
1436 displayInfo.smallestNominalAppHeight = height;
1437 }
1438 if (height > displayInfo.largestNominalAppHeight) {
1439 displayInfo.largestNominalAppHeight = height;
1440 }
1441 }
1442
Jorim Jaggi61f39a72015-10-29 16:54:18 +01001443 DockedStackDividerController getDockedDividerController() {
1444 return mDividerControllerLocked;
1445 }
1446
Winson Chung655332c2016-10-31 13:14:28 -07001447 PinnedStackController getPinnedStackController() {
1448 return mPinnedStackControllerLocked;
1449 }
1450
Jeff Browna506a6e2013-06-04 00:02:38 -07001451 /**
1452 * Returns true if the specified UID has access to this display.
1453 */
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001454 boolean hasAccess(int uid) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001455 return mDisplay.hasAccess(uid);
1456 }
1457
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001458 boolean isPrivate() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001459 return (mDisplay.getFlags() & FLAG_PRIVATE) != 0;
keunyounga446bf02013-06-21 19:07:57 -07001460 }
1461
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001462 TaskStack getHomeStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001463 return mTaskStackContainers.getHomeStack();
Craig Mautnerd5d5d0f2013-04-03 15:08:21 -07001464 }
1465
Wale Ogunwale61911492017-10-11 08:50:50 -07001466 /**
1467 * @return The primary split-screen stack, but only if it is visible, and {@code null} otherwise.
1468 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001469 TaskStack getSplitScreenPrimaryStack() {
1470 TaskStack stack = mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001471 return (stack != null && stack.isVisible()) ? stack : null;
1472 }
1473
1474 /**
Matthew Ng64e77cf2017-10-31 14:01:31 -07001475 * Like {@link #getSplitScreenPrimaryStack}, but also returns the stack if it's currently
Wale Ogunwale61911492017-10-11 08:50:50 -07001476 * not visible.
1477 */
Matthew Ng64e77cf2017-10-31 14:01:31 -07001478 TaskStack getSplitScreenPrimaryStackIgnoringVisibility() {
1479 return mTaskStackContainers.getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07001480 }
1481
1482 TaskStack getPinnedStack() {
1483 return mTaskStackContainers.getPinnedStack();
1484 }
1485
1486 private boolean hasPinnedStack() {
1487 return mTaskStackContainers.getPinnedStack() != null;
Chong Zhangd9d35bd2016-08-04 17:55:21 -07001488 }
1489
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001490 /**
1491 * Returns the topmost stack on the display that is compatible with the input windowing mode.
1492 * Null is no compatible stack on the display.
1493 */
Wale Ogunwale30e441d2017-11-09 08:28:45 -08001494 TaskStack getTopStackInWindowingMode(int windowingMode) {
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001495 return getStack(windowingMode, ACTIVITY_TYPE_UNDEFINED);
1496 }
1497
1498 /**
1499 * Returns the topmost stack on the display that is compatible with the input windowing mode and
1500 * activity type. Null is no compatible stack on the display.
1501 */
Wale Ogunwale68278562017-09-23 17:13:55 -07001502 TaskStack getStack(int windowingMode, int activityType) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001503 return mTaskStackContainers.getStack(windowingMode, activityType);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07001504 }
1505
Bryce Lee48f4b572017-04-10 10:54:15 -07001506 @VisibleForTesting
Wale Ogunwale61911492017-10-11 08:50:50 -07001507 TaskStack getTopStack() {
1508 return mTaskStackContainers.getTopStack();
Bryce Lee48f4b572017-04-10 10:54:15 -07001509 }
1510
Winson Chunge2d72172018-01-25 17:46:20 +00001511 ArrayList<Task> getVisibleTasks() {
1512 return mTaskStackContainers.getVisibleTasks();
1513 }
1514
Wale Ogunwale61911492017-10-11 08:50:50 -07001515 void onStackWindowingModeChanged(TaskStack stack) {
1516 mTaskStackContainers.onStackWindowingModeChanged(stack);
Bryce Lee48f4b572017-04-10 10:54:15 -07001517 }
1518
Andrii Kulian441e4492016-09-29 15:25:00 -07001519 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -07001520 public void onConfigurationChanged(Configuration newParentConfig) {
Andrii Kulian441e4492016-09-29 15:25:00 -07001521 super.onConfigurationChanged(newParentConfig);
1522
Andrii Kulian3a507b52016-09-19 18:14:12 -07001523 // The display size information is heavily dependent on the resources in the current
1524 // configuration, so we need to reconfigure it every time the configuration changes.
1525 // See {@link PhoneWindowManager#setInitialDisplaySize}...sigh...
1526 mService.reconfigureDisplayLocked(this);
1527
Bryce Leef3c6a472017-11-14 14:53:06 -08001528 final DockedStackDividerController dividerController = getDockedDividerController();
1529
1530 if (dividerController != null) {
1531 getDockedDividerController().onConfigurationChanged();
1532 }
1533
1534 final PinnedStackController pinnedStackController = getPinnedStackController();
1535
1536 if (pinnedStackController != null) {
1537 getPinnedStackController().onConfigurationChanged();
1538 }
Andrii Kulian441e4492016-09-29 15:25:00 -07001539 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001540
Andrii Kulian441e4492016-09-29 15:25:00 -07001541 /**
1542 * Callback used to trigger bounds update after configuration change and get ids of stacks whose
1543 * bounds were updated.
1544 */
1545 void updateStackBoundsAfterConfigChange(@NonNull List<Integer> changedStackList) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001546 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1547 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Andrii Kulian441e4492016-09-29 15:25:00 -07001548 if (stack.updateBoundsAfterConfigChange()) {
Andrii Kulian3a507b52016-09-19 18:14:12 -07001549 changedStackList.add(stack.mStackId);
1550 }
1551 }
Winson Chung32c566f2017-04-11 18:31:21 -07001552
1553 // If there was no pinned stack, we still need to notify the controller of the display info
1554 // update as a result of the config change. We do this here to consolidate the flow between
1555 // changes when there is and is not a stack.
Wale Ogunwale61911492017-10-11 08:50:50 -07001556 if (!hasPinnedStack()) {
Winson Chung32c566f2017-04-11 18:31:21 -07001557 mPinnedStackControllerLocked.onDisplayInfoChanged();
1558 }
Andrii Kulian3a507b52016-09-19 18:14:12 -07001559 }
1560
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001561 @Override
1562 boolean fillsParent() {
1563 return true;
1564 }
1565
1566 @Override
1567 boolean isVisible() {
1568 return true;
1569 }
1570
1571 @Override
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001572 void onAppTransitionDone() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001573 super.onAppTransitionDone();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001574 mService.mWindowsChanged = true;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07001575 }
1576
Wale Ogunwaleba51ca22016-09-23 06:06:54 -07001577 @Override
Wale Ogunwale3c1170d2016-12-02 14:44:52 -08001578 boolean forAllWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1579 // Special handling so we can process IME windows with #forAllImeWindows above their IME
1580 // target, or here in order if there isn't an IME target.
1581 if (traverseTopToBottom) {
1582 for (int i = mChildren.size() - 1; i >= 0; --i) {
1583 final DisplayChildWindowContainer child = mChildren.get(i);
1584 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null) {
1585 // In this case the Ime windows will be processed above their target so we skip
1586 // here.
1587 continue;
1588 }
1589 if (child.forAllWindows(callback, traverseTopToBottom)) {
1590 return true;
1591 }
1592 }
1593 } else {
1594 final int count = mChildren.size();
1595 for (int i = 0; i < count; i++) {
1596 final DisplayChildWindowContainer child = mChildren.get(i);
1597 if (child == mImeWindowsContainers && mService.mInputMethodTarget != null) {
1598 // In this case the Ime windows will be processed above their target so we skip
1599 // here.
1600 continue;
1601 }
1602 if (child.forAllWindows(callback, traverseTopToBottom)) {
1603 return true;
1604 }
1605 }
1606 }
1607 return false;
1608 }
1609
1610 boolean forAllImeWindows(ToBooleanFunction<WindowState> callback, boolean traverseTopToBottom) {
1611 return mImeWindowsContainers.forAllWindows(callback, traverseTopToBottom);
1612 }
1613
Wale Ogunwale399c8692017-05-08 14:22:42 -07001614 @Override
1615 int getOrientation() {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001616 final WindowManagerPolicy policy = mService.mPolicy;
1617
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001618 if (mService.mDisplayFrozen) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08001619 if (mLastWindowForcedOrientation != SCREEN_ORIENTATION_UNSPECIFIED) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001620 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulian8ee72852017-03-10 10:36:45 -08001621 "Display is frozen, return " + mLastWindowForcedOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001622 // If the display is frozen, some activities may be in the middle of restarting, and
1623 // thus have removed their old window. If the window has the flag to hide the lock
1624 // screen, then the lock screen can re-appear and inflict its own orientation on us.
1625 // Keep the orientation stable until this all settles down.
Andrii Kulian8ee72852017-03-10 10:36:45 -08001626 return mLastWindowForcedOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001627 } else if (policy.isKeyguardLocked()) {
1628 // Use the last orientation the while the display is frozen with the keyguard
1629 // locked. This could be the keyguard forced orientation or from a SHOW_WHEN_LOCKED
1630 // window. We don't want to check the show when locked window directly though as
1631 // things aren't stable while the display is frozen, for example the window could be
1632 // momentarily unavailable due to activity relaunch.
1633 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display is frozen while keyguard locked, "
Andrii Kulian8ee72852017-03-10 10:36:45 -08001634 + "return " + mLastOrientation);
1635 return mLastOrientation;
Wale Ogunwale51362492016-09-08 17:49:17 -07001636 }
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001637 } else {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001638 final int orientation = mAboveAppWindowsContainers.getOrientation();
1639 if (orientation != SCREEN_ORIENTATION_UNSET) {
1640 return orientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07001641 }
Wale Ogunwale51362492016-09-08 17:49:17 -07001642 }
1643
Wale Ogunwale399c8692017-05-08 14:22:42 -07001644 // Top system windows are not requesting an orientation. Start searching from apps.
1645 return mTaskStackContainers.getOrientation();
Wale Ogunwale51362492016-09-08 17:49:17 -07001646 }
1647
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001648 void updateDisplayInfo() {
Andrii Kuliancd097992017-03-23 18:31:59 -07001649 // Check if display metrics changed and update base values if needed.
1650 updateBaseDisplayMetricsIfNeeded();
1651
Craig Mautner722285e2012-09-07 13:55:58 -07001652 mDisplay.getDisplayInfo(mDisplayInfo);
Wale Ogunwale231b06e2015-09-16 12:03:09 -07001653 mDisplay.getMetrics(mDisplayMetrics);
Andrii Kuliancd097992017-03-23 18:31:59 -07001654
Wale Ogunwale61911492017-10-11 08:50:50 -07001655 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1656 mTaskStackContainers.getChildAt(i).updateDisplayInfo(null);
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001657 }
Craig Mautner722285e2012-09-07 13:55:58 -07001658 }
1659
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001660 void initializeDisplayBaseInfo() {
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001661 final DisplayManagerInternal displayManagerInternal = mService.mDisplayManagerInternal;
1662 if (displayManagerInternal != null) {
1663 // Bootstrap the default logical display from the display manager.
1664 final DisplayInfo newDisplayInfo = displayManagerInternal.getDisplayInfo(mDisplayId);
1665 if (newDisplayInfo != null) {
1666 mDisplayInfo.copyFrom(newDisplayInfo);
1667 }
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001668 }
Wale Ogunwaleb699ce02016-07-18 12:05:30 -07001669
Andrii Kuliancd097992017-03-23 18:31:59 -07001670 updateBaseDisplayMetrics(mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight,
1671 mDisplayInfo.logicalDensityDpi);
1672 mInitialDisplayWidth = mDisplayInfo.logicalWidth;
1673 mInitialDisplayHeight = mDisplayInfo.logicalHeight;
1674 mInitialDisplayDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001675 mInitialDisplayCutout = mDisplayInfo.displayCutout;
Wale Ogunwalefd04d8c2015-09-30 10:09:39 -07001676 }
1677
Andrii Kuliancd097992017-03-23 18:31:59 -07001678 /**
1679 * If display metrics changed, overrides are not set and it's not just a rotation - update base
1680 * values.
1681 */
1682 private void updateBaseDisplayMetricsIfNeeded() {
1683 // Get real display metrics without overrides from WM.
1684 mService.mDisplayManagerInternal.getNonOverrideDisplayInfo(mDisplayId, mDisplayInfo);
1685 final int orientation = mDisplayInfo.rotation;
1686 final boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
1687 final int newWidth = rotated ? mDisplayInfo.logicalHeight : mDisplayInfo.logicalWidth;
1688 final int newHeight = rotated ? mDisplayInfo.logicalWidth : mDisplayInfo.logicalHeight;
1689 final int newDensity = mDisplayInfo.logicalDensityDpi;
Adrian Roos1cf585052018-01-03 18:43:27 +01001690 final DisplayCutout newCutout = mDisplayInfo.displayCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001691
1692 final boolean displayMetricsChanged = mInitialDisplayWidth != newWidth
1693 || mInitialDisplayHeight != newHeight
Adrian Roos1cf585052018-01-03 18:43:27 +01001694 || mInitialDisplayDensity != mDisplayInfo.logicalDensityDpi
1695 || !Objects.equals(mInitialDisplayCutout, newCutout);
Andrii Kuliancd097992017-03-23 18:31:59 -07001696
1697 if (displayMetricsChanged) {
1698 // Check if display size or density is forced.
1699 final boolean isDisplaySizeForced = mBaseDisplayWidth != mInitialDisplayWidth
1700 || mBaseDisplayHeight != mInitialDisplayHeight;
1701 final boolean isDisplayDensityForced = mBaseDisplayDensity != mInitialDisplayDensity;
1702
1703 // If there is an override set for base values - use it, otherwise use new values.
1704 updateBaseDisplayMetrics(isDisplaySizeForced ? mBaseDisplayWidth : newWidth,
1705 isDisplaySizeForced ? mBaseDisplayHeight : newHeight,
1706 isDisplayDensityForced ? mBaseDisplayDensity : newDensity);
1707
1708 // Real display metrics changed, so we should also update initial values.
1709 mInitialDisplayWidth = newWidth;
1710 mInitialDisplayHeight = newHeight;
1711 mInitialDisplayDensity = newDensity;
Adrian Roos1cf585052018-01-03 18:43:27 +01001712 mInitialDisplayCutout = newCutout;
Andrii Kuliancd097992017-03-23 18:31:59 -07001713 mService.reconfigureDisplayLocked(this);
1714 }
1715 }
1716
Bryce Lee27cec322017-03-21 09:41:37 -07001717 /** Sets the maximum width the screen resolution can be */
1718 void setMaxUiWidth(int width) {
1719 if (DEBUG_DISPLAY) {
1720 Slog.v(TAG_WM, "Setting max ui width:" + width + " on display:" + getDisplayId());
1721 }
1722
1723 mMaxUiWidth = width;
1724
1725 // Update existing metrics.
1726 updateBaseDisplayMetrics(mBaseDisplayWidth, mBaseDisplayHeight, mBaseDisplayDensity);
1727 }
1728
1729 /** Update base (override) display metrics. */
1730 void updateBaseDisplayMetrics(int baseWidth, int baseHeight, int baseDensity) {
1731 mBaseDisplayWidth = baseWidth;
1732 mBaseDisplayHeight = baseHeight;
1733 mBaseDisplayDensity = baseDensity;
1734
1735 if (mMaxUiWidth > 0 && mBaseDisplayWidth > mMaxUiWidth) {
1736 mBaseDisplayHeight = (mMaxUiWidth * mBaseDisplayHeight) / mBaseDisplayWidth;
1737 mBaseDisplayDensity = (mMaxUiWidth * mBaseDisplayDensity) / mBaseDisplayWidth;
1738 mBaseDisplayWidth = mMaxUiWidth;
1739
1740 if (DEBUG_DISPLAY) {
1741 Slog.v(TAG_WM, "Applying config restraints:" + mBaseDisplayWidth + "x"
1742 + mBaseDisplayHeight + " at density:" + mBaseDisplayDensity
1743 + " on display:" + getDisplayId());
1744 }
1745 }
1746
1747 mBaseDisplayRect.set(0, 0, mBaseDisplayWidth, mBaseDisplayHeight);
Bryce Leef3c6a472017-11-14 14:53:06 -08001748
1749 updateBounds();
Bryce Lee27cec322017-03-21 09:41:37 -07001750 }
1751
Wale Ogunwaledb506192017-12-08 10:57:32 -08001752 void getStableRect(Rect out) {
1753 out.set(mDisplayFrames.mStable);
Chong Zhangf66db432016-01-13 10:39:51 -08001754 }
1755
Wale Ogunwale61911492017-10-11 08:50:50 -07001756 TaskStack createStack(int stackId, boolean onTop, StackWindowController controller) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08001757 if (DEBUG_STACK) Slog.d(TAG_WM, "Create new stackId=" + stackId + " on displayId="
1758 + mDisplayId);
Andrii Kulian839def92016-11-02 10:58:58 -07001759
Wale Ogunwale61911492017-10-11 08:50:50 -07001760 final TaskStack stack = new TaskStack(mService, stackId, controller);
1761 mTaskStackContainers.addStackToDisplay(stack, onTop);
Wale Ogunwale1666e312016-12-16 11:27:18 -08001762 return stack;
Andrii Kulian839def92016-11-02 10:58:58 -07001763 }
1764
Andrii Kulian51c1b672017-04-07 18:39:32 -07001765 void moveStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08001766 final DisplayContent prevDc = stack.getDisplayContent();
1767 if (prevDc == null) {
Andrii Kulian839def92016-11-02 10:58:58 -07001768 throw new IllegalStateException("Trying to move stackId=" + stack.mStackId
1769 + " which is not currently attached to any display");
1770 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08001771 if (prevDc.getDisplayId() == mDisplayId) {
Andrii Kulian839def92016-11-02 10:58:58 -07001772 throw new IllegalArgumentException("Trying to move stackId=" + stack.mStackId
1773 + " to its current displayId=" + mDisplayId);
1774 }
1775
Wale Ogunwale61911492017-10-11 08:50:50 -07001776 prevDc.mTaskStackContainers.removeChild(stack);
Andrii Kulian51c1b672017-04-07 18:39:32 -07001777 mTaskStackContainers.addStackToDisplay(stack, onTop);
Craig Mautnerc00204b2013-03-05 15:02:14 -08001778 }
1779
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001780 @Override
1781 protected void addChild(DisplayChildWindowContainer child,
1782 Comparator<DisplayChildWindowContainer> comparator) {
1783 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
1784 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001785
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001786 @Override
1787 protected void addChild(DisplayChildWindowContainer child, int index) {
1788 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
1789 }
1790
1791 @Override
1792 protected void removeChild(DisplayChildWindowContainer child) {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001793 // Only allow removal of direct children from this display if the display is in the process
1794 // of been removed.
1795 if (mRemovingDisplay) {
1796 super.removeChild(child);
1797 return;
1798 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001799 throw new UnsupportedOperationException("See DisplayChildWindowContainer");
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001800 }
1801
Andrii Kuliand2765632016-12-12 22:26:34 -08001802 @Override
1803 void positionChildAt(int position, DisplayChildWindowContainer child, boolean includingParents) {
1804 // Children of the display are statically ordered, so the real intention here is to perform
1805 // the operation on the display and not the static direct children.
1806 getParent().positionChildAt(position, this, includingParents);
1807 }
1808
Winson Chung59a47ded2018-01-25 17:46:06 +00001809 void positionStackAt(int position, TaskStack child) {
1810 mTaskStackContainers.positionChildAt(position, child, false /* includingParents */);
1811 layoutAndAssignWindowLayersIfNeeded();
1812 }
1813
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001814 int taskIdFromPoint(int x, int y) {
Wale Ogunwale61911492017-10-11 08:50:50 -07001815 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1816 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001817 final int taskId = stack.taskIdFromPoint(x, y);
1818 if (taskId != -1) {
1819 return taskId;
Craig Mautner967212c2013-04-13 21:10:58 -07001820 }
1821 }
Craig Mautnerbdc748af2013-12-02 14:08:25 -08001822 return -1;
Craig Mautnercf910b02013-04-23 11:23:27 -07001823 }
1824
Chong Zhang8e89b312015-09-09 15:09:30 -07001825 /**
Chong Zhangd8ceb852015-11-11 14:53:41 -08001826 * Find the task whose outside touch area (for resizing) (x, y) falls within.
Chong Zhang9184ec62015-09-24 12:32:21 -07001827 * Returns null if the touch doesn't fall into a resizing area.
Chong Zhang8e89b312015-09-09 15:09:30 -07001828 */
Wale Ogunwale15ead902016-09-02 14:30:11 -07001829 Task findTaskForResizePoint(int x, int y) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07001830 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001831 mTmpTaskForResizePointSearchResult.reset();
Wale Ogunwale61911492017-10-11 08:50:50 -07001832 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1833 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001834 if (!stack.getWindowConfiguration().canResizeTask()) {
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001835 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07001836 }
Chong Zhang9184ec62015-09-24 12:32:21 -07001837
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001838 stack.findTaskForResizePoint(x, y, delta, mTmpTaskForResizePointSearchResult);
1839 if (mTmpTaskForResizePointSearchResult.searchDone) {
1840 return mTmpTaskForResizePointSearchResult.taskForResize;
Chong Zhang8e89b312015-09-09 15:09:30 -07001841 }
1842 }
Chong Zhang9184ec62015-09-24 12:32:21 -07001843 return null;
Chong Zhang8e89b312015-09-09 15:09:30 -07001844 }
1845
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001846 void setTouchExcludeRegion(Task focusedTask) {
David Stevensee9e2772017-02-09 16:30:27 -08001847 // The provided task is the task on this display with focus, so if WindowManagerService's
1848 // focused app is not on this display, focusedTask will be null.
1849 if (focusedTask == null) {
1850 mTouchExcludeRegion.setEmpty();
1851 } else {
1852 mTouchExcludeRegion.set(mBaseDisplayRect);
1853 final int delta = dipToPixel(RESIZE_HANDLE_WIDTH_IN_DP, mDisplayMetrics);
1854 mTmpRect2.setEmpty();
Wale Ogunwale61911492017-10-11 08:50:50 -07001855 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1856 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00001857 stack.setTouchExcludeRegion(focusedTask, delta, mTouchExcludeRegion,
1858 mDisplayFrames.mContent, mTmpRect2);
David Stevensee9e2772017-02-09 16:30:27 -08001859 }
1860 // If we removed the focused task above, add it back and only leave its
1861 // outside touch area in the exclusion. TapDectector is not interested in
1862 // any touch inside the focused task itself.
1863 if (!mTmpRect2.isEmpty()) {
1864 mTouchExcludeRegion.op(mTmpRect2, Region.Op.UNION);
1865 }
Chong Zhangd8ceb852015-11-11 14:53:41 -08001866 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08001867 final WindowState inputMethod = mService.mInputMethodWindow;
1868 if (inputMethod != null && inputMethod.isVisibleLw()) {
1869 // If the input method is visible and the user is typing, we don't want these touch
1870 // events to be intercepted and used to change focus. This would likely cause a
1871 // disappearance of the input method.
1872 inputMethod.getTouchableRegion(mTmpRegion);
Andrii Kulian7a31b772017-05-02 13:22:42 -07001873 if (inputMethod.getDisplayId() == mDisplayId) {
1874 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
1875 } else {
1876 // IME is on a different display, so we need to update its tap detector.
1877 // TODO(multidisplay): Remove when IME will always appear on same display.
1878 inputMethod.getDisplayContent().setTouchExcludeRegion(null /* focusedTask */);
1879 }
Filip Gruszczynski912d9192015-12-01 16:14:04 -08001880 }
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08001881 for (int i = mTapExcludedWindows.size() - 1; i >= 0; i--) {
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001882 final WindowState win = mTapExcludedWindows.get(i);
Filip Gruszczynskiecf67222015-12-11 15:16:36 -08001883 win.getTouchableRegion(mTmpRegion);
1884 mTouchExcludeRegion.op(mTmpRegion, Region.Op.UNION);
1885 }
Andrii Kulian4b6599e2018-01-15 17:24:08 -08001886 for (int i = mTapExcludeProvidingWindows.size() - 1; i >= 0; i--) {
1887 final WindowState win = mTapExcludeProvidingWindows.valueAt(i);
1888 win.amendTapExcludeRegion(mTouchExcludeRegion);
1889 }
Andrii Kulian03c403d2016-11-11 11:14:12 -08001890 // TODO(multi-display): Support docked stacks on secondary displays.
Matthew Ng64e77cf2017-10-31 14:01:31 -07001891 if (mDisplayId == DEFAULT_DISPLAY && getSplitScreenPrimaryStack() != null) {
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001892 mDividerControllerLocked.getTouchRegion(mTmpRect);
Jorim Jaggi7f19cb82016-03-25 19:37:44 -07001893 mTmpRegion.set(mTmpRect);
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001894 mTouchExcludeRegion.op(mTmpRegion, Op.UNION);
1895 }
Craig Mautner1bef3892015-02-17 15:09:47 -08001896 if (mTapDetector != null) {
Chong Zhang2e2c81a2016-07-15 11:28:17 -07001897 mTapDetector.setTouchExcludeRegion(mTouchExcludeRegion);
Craig Mautner1bef3892015-02-17 15:09:47 -08001898 }
Craig Mautner6601b7b2013-04-29 10:29:11 -07001899 }
1900
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001901 @Override
Wale Ogunwalee05f5012016-09-16 16:27:29 -07001902 void switchUser() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00001903 super.switchUser();
1904 mService.mWindowsChanged = true;
Craig Mautner858d8a62013-04-23 17:08:34 -07001905 }
1906
Wale Ogunwaleac2561e2016-11-01 15:43:46 -07001907 private void resetAnimationBackgroundAnimator() {
Wale Ogunwale61911492017-10-11 08:50:50 -07001908 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1909 mTaskStackContainers.getChildAt(stackNdx).resetAnimationBackgroundAnimator();
Craig Mautner05d29032013-05-03 13:40:13 -07001910 }
1911 }
1912
Wale Ogunwale10124582016-09-15 20:25:50 -07001913 @Override
1914 void removeIfPossible() {
1915 if (isAnimating()) {
1916 mDeferredRemoval = true;
1917 return;
Craig Mautner2eb15342013-08-07 13:13:35 -07001918 }
Wale Ogunwale10124582016-09-15 20:25:50 -07001919 removeImmediately();
Craig Mautner2eb15342013-08-07 13:13:35 -07001920 }
1921
Wale Ogunwale10124582016-09-15 20:25:50 -07001922 @Override
1923 void removeImmediately() {
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001924 mRemovingDisplay = true;
1925 try {
1926 super.removeImmediately();
1927 if (DEBUG_DISPLAY) Slog.v(TAG_WM, "Removing display=" + this);
Tarandeep Singh7ac8d3a2017-09-05 11:09:39 -07001928 if (mService.canDispatchPointerEvents()) {
1929 if (mTapDetector != null) {
1930 mService.unregisterPointerEventListener(mTapDetector);
1931 }
1932 if (mDisplayId == DEFAULT_DISPLAY && mService.mMousePositionTracker != null) {
1933 mService.unregisterPointerEventListener(mService.mMousePositionTracker);
1934 }
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001935 }
Jorim Jaggia3844032018-01-03 15:54:43 +01001936 mService.mAnimator.removeDisplayLocked(mDisplayId);
1937
Robert Carrb1579c82017-09-05 14:54:47 -07001938 // The pending transaction won't be applied so we should
1939 // just clean up any surfaces pending destruction.
1940 onPendingTransactionApplied();
Wale Ogunwale601a3f02016-10-17 08:39:39 -07001941 } finally {
1942 mRemovingDisplay = false;
Craig Mautner95da1082014-02-24 17:54:35 -08001943 }
Craig Mautner95da1082014-02-24 17:54:35 -08001944 }
1945
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001946 /** Returns true if a removal action is still being deferred. */
Wale Ogunwale10124582016-09-15 20:25:50 -07001947 @Override
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001948 boolean checkCompleteDeferredRemoval() {
Wale Ogunwale10124582016-09-15 20:25:50 -07001949 final boolean stillDeferringRemoval = super.checkCompleteDeferredRemoval();
1950
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001951 if (!stillDeferringRemoval && mDeferredRemoval) {
Wale Ogunwale10124582016-09-15 20:25:50 -07001952 removeImmediately();
Craig Mautner95da1082014-02-24 17:54:35 -08001953 mService.onDisplayRemoved(mDisplayId);
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001954 return false;
Craig Mautner95da1082014-02-24 17:54:35 -08001955 }
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07001956 return true;
Craig Mautner95da1082014-02-24 17:54:35 -08001957 }
1958
Andrii Kulian0214ed92017-05-16 13:44:05 -07001959 /** @return 'true' if removal of this display content is deferred due to active animation. */
1960 boolean isRemovalDeferred() {
1961 return mDeferredRemoval;
1962 }
1963
Wale Ogunwale10124582016-09-15 20:25:50 -07001964 boolean animateForIme(float interpolatedValue, float animationTarget,
1965 float dividerAnimationTarget) {
1966 boolean updated = false;
1967
Wale Ogunwale61911492017-10-11 08:50:50 -07001968 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1969 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07001970 if (stack == null || !stack.isAdjustedForIme()) {
1971 continue;
1972 }
1973
1974 if (interpolatedValue >= 1f && animationTarget == 0f && dividerAnimationTarget == 0f) {
1975 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
1976 updated = true;
1977 } else {
1978 mDividerControllerLocked.mLastAnimationProgress =
1979 mDividerControllerLocked.getInterpolatedAnimationValue(interpolatedValue);
1980 mDividerControllerLocked.mLastDividerProgress =
1981 mDividerControllerLocked.getInterpolatedDividerValue(interpolatedValue);
1982 updated |= stack.updateAdjustForIme(
1983 mDividerControllerLocked.mLastAnimationProgress,
1984 mDividerControllerLocked.mLastDividerProgress,
1985 false /* force */);
1986 }
1987 if (interpolatedValue >= 1f) {
1988 stack.endImeAdjustAnimation();
1989 }
1990 }
1991
1992 return updated;
1993 }
1994
1995 boolean clearImeAdjustAnimation() {
1996 boolean changed = false;
Wale Ogunwale61911492017-10-11 08:50:50 -07001997 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
1998 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07001999 if (stack != null && stack.isAdjustedForIme()) {
2000 stack.resetAdjustedForIme(true /* adjustBoundsNow */);
2001 changed = true;
2002 }
2003 }
2004 return changed;
2005 }
2006
2007 void beginImeAdjustAnimation() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002008 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2009 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002010 if (stack.isVisible() && stack.isAdjustedForIme()) {
2011 stack.beginImeAdjustAnimation();
2012 }
2013 }
2014 }
2015
2016 void adjustForImeIfNeeded() {
2017 final WindowState imeWin = mService.mInputMethodWindow;
2018 final boolean imeVisible = imeWin != null && imeWin.isVisibleLw() && imeWin.isDisplayedLw()
2019 && !mDividerControllerLocked.isImeHideRequested();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002020 final boolean dockVisible = isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY);
Wale Ogunwale10124582016-09-15 20:25:50 -07002021 final TaskStack imeTargetStack = mService.getImeFocusStackLocked();
2022 final int imeDockSide = (dockVisible && imeTargetStack != null) ?
2023 imeTargetStack.getDockSide() : DOCKED_INVALID;
2024 final boolean imeOnTop = (imeDockSide == DOCKED_TOP);
2025 final boolean imeOnBottom = (imeDockSide == DOCKED_BOTTOM);
2026 final boolean dockMinimized = mDividerControllerLocked.isMinimizedDock();
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002027 final int imeHeight = mDisplayFrames.getInputMethodWindowVisibleHeight();
Wale Ogunwale10124582016-09-15 20:25:50 -07002028 final boolean imeHeightChanged = imeVisible &&
2029 imeHeight != mDividerControllerLocked.getImeHeightAdjustedFor();
2030
2031 // The divider could be adjusted for IME position, or be thinner than usual,
2032 // or both. There are three possible cases:
2033 // - If IME is visible, and focus is on top, divider is not moved for IME but thinner.
2034 // - If IME is visible, and focus is on bottom, divider is moved for IME and thinner.
2035 // - If IME is not visible, divider is not moved and is normal width.
2036
2037 if (imeVisible && dockVisible && (imeOnTop || imeOnBottom) && !dockMinimized) {
Wale Ogunwale61911492017-10-11 08:50:50 -07002038 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2039 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002040 final boolean isDockedOnBottom = stack.getDockSide() == DOCKED_BOTTOM;
Wale Ogunwale68278562017-09-23 17:13:55 -07002041 if (stack.isVisible() && (imeOnBottom || isDockedOnBottom)
2042 && stack.inSplitScreenWindowingMode()) {
Wale Ogunwale10124582016-09-15 20:25:50 -07002043 stack.setAdjustedForIme(imeWin, imeOnBottom && imeHeightChanged);
2044 } else {
2045 stack.resetAdjustedForIme(false);
2046 }
2047 }
2048 mDividerControllerLocked.setAdjustedForIme(
2049 imeOnBottom /*ime*/, true /*divider*/, true /*animate*/, imeWin, imeHeight);
2050 } else {
Wale Ogunwale61911492017-10-11 08:50:50 -07002051 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
2052 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale10124582016-09-15 20:25:50 -07002053 stack.resetAdjustedForIme(!dockVisible);
2054 }
2055 mDividerControllerLocked.setAdjustedForIme(
2056 false /*ime*/, false /*divider*/, dockVisible /*animate*/, imeWin, imeHeight);
2057 }
Winson Chung655332c2016-10-31 13:14:28 -07002058 mPinnedStackControllerLocked.setAdjustedForIme(imeVisible, imeHeight);
Wale Ogunwale10124582016-09-15 20:25:50 -07002059 }
2060
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002061 /**
2062 * If a window that has an animation specifying a colored background and the current wallpaper
2063 * is visible, then the color goes *below* the wallpaper so we don't cause the wallpaper to
2064 * suddenly disappear.
2065 */
2066 int getLayerForAnimationBackground(WindowStateAnimator winAnimator) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002067 final WindowState visibleWallpaper = mBelowAppWindowsContainers.getWindow(
2068 w -> w.mIsWallpaper && w.isVisibleNow());
2069
2070 if (visibleWallpaper != null) {
2071 return visibleWallpaper.mWinAnimator.mAnimLayer;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002072 }
2073 return winAnimator.mAnimLayer;
2074 }
2075
Wale Ogunwale10124582016-09-15 20:25:50 -07002076 void prepareFreezingTaskBounds() {
Wale Ogunwale61911492017-10-11 08:50:50 -07002077 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2078 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Wale Ogunwale10124582016-09-15 20:25:50 -07002079 stack.prepareFreezingTaskBounds();
2080 }
2081 }
2082
Wale Ogunwale94744212015-09-21 19:01:47 -07002083 void rotateBounds(int oldRotation, int newRotation, Rect bounds) {
Bryce Leef3c6a472017-11-14 14:53:06 -08002084 getBounds(mTmpRect, newRotation);
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002085
2086 // Compute a transform matrix to undo the coordinate space transformation,
2087 // and present the window at the same physical position it previously occupied.
2088 final int deltaRotation = deltaRotation(newRotation, oldRotation);
2089 createRotationMatrix(deltaRotation, mTmpRect.width(), mTmpRect.height(), mTmpMatrix);
2090
2091 mTmpRectF.set(bounds);
2092 mTmpMatrix.mapRect(mTmpRectF);
2093 mTmpRectF.round(bounds);
Wale Ogunwale94744212015-09-21 19:01:47 -07002094 }
2095
Wale Ogunwale4a02d812015-02-12 23:01:38 -08002096 static int deltaRotation(int oldRotation, int newRotation) {
2097 int delta = newRotation - oldRotation;
2098 if (delta < 0) delta += 4;
2099 return delta;
2100 }
2101
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002102 private static void createRotationMatrix(int rotation, float displayWidth, float displayHeight,
Andrii Kulian4dfb9c42016-10-11 20:06:27 -07002103 Matrix outMatrix) {
2104 // For rotations without Z-ordering we don't need the target rectangle's position.
2105 createRotationMatrix(rotation, 0 /* rectLeft */, 0 /* rectTop */, displayWidth,
2106 displayHeight, outMatrix);
2107 }
2108
2109 static void createRotationMatrix(int rotation, float rectLeft, float rectTop,
2110 float displayWidth, float displayHeight, Matrix outMatrix) {
2111 switch (rotation) {
2112 case ROTATION_0:
2113 outMatrix.reset();
2114 break;
2115 case ROTATION_270:
2116 outMatrix.setRotate(270, 0, 0);
2117 outMatrix.postTranslate(0, displayHeight);
2118 outMatrix.postTranslate(rectTop, 0);
2119 break;
2120 case ROTATION_180:
2121 outMatrix.reset();
2122 break;
2123 case ROTATION_90:
2124 outMatrix.setRotate(90, 0, 0);
2125 outMatrix.postTranslate(displayWidth, 0);
2126 outMatrix.postTranslate(-rectTop, rectLeft);
2127 break;
2128 }
2129 }
2130
Wale Ogunwale0d5609b2017-09-13 05:55:07 -07002131 @CallSuper
2132 @Override
Adrian Roos4921ccf2017-09-28 16:54:06 +02002133 public void writeToProto(ProtoOutputStream proto, long fieldId, boolean trim) {
Steven Timotiusaf03df62017-07-18 16:56:43 -07002134 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002135 super.writeToProto(proto, WINDOW_CONTAINER, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002136 proto.write(ID, mDisplayId);
Wale Ogunwale61911492017-10-11 08:50:50 -07002137 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2138 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002139 stack.writeToProto(proto, STACKS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002140 }
2141 mDividerControllerLocked.writeToProto(proto, DOCKED_STACK_DIVIDER_CONTROLLER);
2142 mPinnedStackControllerLocked.writeToProto(proto, PINNED_STACK_CONTROLLER);
Wale Ogunwale61911492017-10-11 08:50:50 -07002143 for (int i = mAboveAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2144 final WindowToken windowToken = mAboveAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002145 windowToken.writeToProto(proto, ABOVE_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002146 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002147 for (int i = mBelowAppWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2148 final WindowToken windowToken = mBelowAppWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002149 windowToken.writeToProto(proto, BELOW_APP_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002150 }
Wale Ogunwale61911492017-10-11 08:50:50 -07002151 for (int i = mImeWindowsContainers.getChildCount() - 1; i >= 0; --i) {
2152 final WindowToken windowToken = mImeWindowsContainers.getChildAt(i);
Adrian Roos4921ccf2017-09-28 16:54:06 +02002153 windowToken.writeToProto(proto, IME_WINDOWS, trim);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002154 }
2155 proto.write(DPI, mBaseDisplayDensity);
2156 mDisplayInfo.writeToProto(proto, DISPLAY_INFO);
Steven Timotiusf2d68892017-08-28 17:00:01 -07002157 proto.write(ROTATION, mRotation);
2158 final ScreenRotationAnimation screenRotationAnimation =
2159 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
2160 if (screenRotationAnimation != null) {
2161 screenRotationAnimation.writeToProto(proto, SCREEN_ROTATION_ANIMATION);
2162 }
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002163 mDisplayFrames.writeToProto(proto, DISPLAY_FRAMES);
Steven Timotiusaf03df62017-07-18 16:56:43 -07002164 proto.end(token);
2165 }
2166
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002167 @Override
2168 public void dump(PrintWriter pw, String prefix, boolean dumpAll) {
2169 super.dump(pw, prefix, dumpAll);
Craig Mautnera91f9e22012-09-14 16:22:08 -07002170 pw.print(prefix); pw.print("Display: mDisplayId="); pw.println(mDisplayId);
2171 final String subPrefix = " " + prefix;
2172 pw.print(subPrefix); pw.print("init="); pw.print(mInitialDisplayWidth); pw.print("x");
2173 pw.print(mInitialDisplayHeight); pw.print(" "); pw.print(mInitialDisplayDensity);
2174 pw.print("dpi");
2175 if (mInitialDisplayWidth != mBaseDisplayWidth
2176 || mInitialDisplayHeight != mBaseDisplayHeight
2177 || mInitialDisplayDensity != mBaseDisplayDensity) {
2178 pw.print(" base=");
2179 pw.print(mBaseDisplayWidth); pw.print("x"); pw.print(mBaseDisplayHeight);
2180 pw.print(" "); pw.print(mBaseDisplayDensity); pw.print("dpi");
2181 }
Jeff Brownd46747a2015-04-15 19:02:36 -07002182 if (mDisplayScalingDisabled) {
2183 pw.println(" noscale");
2184 }
Craig Mautnera91f9e22012-09-14 16:22:08 -07002185 pw.print(" cur=");
2186 pw.print(mDisplayInfo.logicalWidth);
2187 pw.print("x"); pw.print(mDisplayInfo.logicalHeight);
2188 pw.print(" app=");
2189 pw.print(mDisplayInfo.appWidth);
2190 pw.print("x"); pw.print(mDisplayInfo.appHeight);
2191 pw.print(" rng="); pw.print(mDisplayInfo.smallestNominalAppWidth);
2192 pw.print("x"); pw.print(mDisplayInfo.smallestNominalAppHeight);
2193 pw.print("-"); pw.print(mDisplayInfo.largestNominalAppWidth);
2194 pw.print("x"); pw.println(mDisplayInfo.largestNominalAppHeight);
David Stevensf833ba92017-03-16 19:00:20 -07002195 pw.print(subPrefix + "deferred=" + mDeferredRemoval
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002196 + " mLayoutNeeded=" + mLayoutNeeded);
David Stevensf833ba92017-03-16 19:00:20 -07002197 pw.println(" mTouchExcludeRegion=" + mTouchExcludeRegion);
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002198
Craig Mautnerdc548482014-02-05 13:35:24 -08002199 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002200 pw.println(prefix + "Application tokens in top down Z order:");
Wale Ogunwale61911492017-10-11 08:50:50 -07002201 for (int stackNdx = mTaskStackContainers.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2202 final TaskStack stack = mTaskStackContainers.getChildAt(stackNdx);
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002203 stack.dump(pw, prefix + " ", dumpAll);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002204 }
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002205
Craig Mautnerdc548482014-02-05 13:35:24 -08002206 pw.println();
2207 if (!mExitingTokens.isEmpty()) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002208 pw.println();
2209 pw.println(" Exiting tokens:");
Wale Ogunwaleb429e682016-01-06 12:36:34 -08002210 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002211 final WindowToken token = mExitingTokens.get(i);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002212 pw.print(" Exiting #"); pw.print(i);
2213 pw.print(' '); pw.print(token);
2214 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002215 token.dump(pw, " ", dumpAll);
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002216 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002217 }
Robert Carrf59b8dd2017-10-02 18:58:36 -07002218
Jorim Jaggi31f71702016-05-04 16:43:04 -07002219 pw.println();
Wale Ogunwale61911492017-10-11 08:50:50 -07002220
2221 // Dump stack references
2222 final TaskStack homeStack = getHomeStack();
2223 if (homeStack != null) {
2224 pw.println(prefix + "homeStack=" + homeStack.getName());
2225 }
2226 final TaskStack pinnedStack = getPinnedStack();
2227 if (pinnedStack != null) {
2228 pw.println(prefix + "pinnedStack=" + pinnedStack.getName());
2229 }
Matthew Ng64e77cf2017-10-31 14:01:31 -07002230 final TaskStack splitScreenPrimaryStack = getSplitScreenPrimaryStack();
Wale Ogunwale61911492017-10-11 08:50:50 -07002231 if (splitScreenPrimaryStack != null) {
2232 pw.println(prefix + "splitScreenPrimaryStack=" + splitScreenPrimaryStack.getName());
2233 }
2234
2235 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002236 mDividerControllerLocked.dump(prefix, pw);
Winson Chung655332c2016-10-31 13:14:28 -07002237 pw.println();
Jorim Jaggiad5d2842016-11-01 18:22:53 -07002238 mPinnedStackControllerLocked.dump(prefix, pw);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002239
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002240 pw.println();
2241 mDisplayFrames.dump(prefix, pw);
Craig Mautner59c00972012-07-30 12:10:24 -07002242 }
Craig Mautnere0a38842013-12-16 16:14:02 -08002243
2244 @Override
2245 public String toString() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002246 return "Display " + mDisplayId + " info=" + mDisplayInfo + " stacks=" + mChildren;
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002247 }
2248
2249 String getName() {
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002250 return "Display " + mDisplayId + " name=\"" + mDisplayInfo.name + "\"";
Craig Mautnere0a38842013-12-16 16:14:02 -08002251 }
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002252
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002253 /** Returns true if the stack in the windowing mode is visible. */
2254 boolean isStackVisible(int windowingMode) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002255 final TaskStack stack = getTopStackInWindowingMode(windowingMode);
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002256 return stack != null && stack.isVisible();
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08002257 }
2258
Wale Ogunwale9adfe572016-09-08 20:43:58 -07002259 /** Find the visible, touch-deliverable window under the given point */
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002260 WindowState getTouchableWinAtPointLocked(float xf, float yf) {
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002261 final int x = (int) xf;
2262 final int y = (int) yf;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002263 final WindowState touchedWin = getWindow(w -> {
2264 final int flags = w.mAttrs.flags;
2265 if (!w.isVisibleLw()) {
2266 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002267 }
2268 if ((flags & FLAG_NOT_TOUCHABLE) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002269 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002270 }
2271
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002272 w.getVisibleBounds(mTmpRect);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002273 if (!mTmpRect.contains(x, y)) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002274 return false;
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002275 }
2276
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002277 w.getTouchableRegion(mTmpRegion);
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002278
2279 final int touchFlags = flags & (FLAG_NOT_FOCUSABLE | FLAG_NOT_TOUCH_MODAL);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002280 return mTmpRegion.contains(x, y) || touchFlags == 0;
2281 });
Vladislav Kaznacheev5d6bdeb2016-02-12 17:07:20 -08002282
2283 return touchedWin;
2284 }
Jorim Jaggi6626f542016-08-22 13:08:44 -07002285
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002286 boolean canAddToastWindowForUid(int uid) {
2287 // We allow one toast window per UID being shown at a time.
Svet Ganovdaca8ee2017-01-21 17:40:40 -08002288 // Also if the app is focused adding more than one toast at
2289 // a time for better backwards compatibility.
2290 final WindowState focusedWindowForUid = getWindow(w ->
2291 w.mOwnerUid == uid && w.isFocused());
2292 if (focusedWindowForUid != null) {
2293 return true;
2294 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002295 final WindowState win = getWindow(w ->
2296 w.mAttrs.type == TYPE_TOAST && w.mOwnerUid == uid && !w.mPermanentlyHidden
2297 && !w.mWindowRemovalAllowed);
2298 return win == null;
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002299 }
2300
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002301 void scheduleToastWindowsTimeoutIfNeededLocked(WindowState oldFocus, WindowState newFocus) {
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002302 if (oldFocus == null || (newFocus != null && newFocus.mOwnerUid == oldFocus.mOwnerUid)) {
2303 return;
2304 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002305
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002306 // Used to communicate the old focus to the callback method.
2307 mTmpWindow = oldFocus;
2308
2309 forAllWindows(mScheduleToastTimeout, false /* traverseTopToBottom */);
Svetoslav Ganovaa076532016-08-01 19:16:43 -07002310 }
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002311
2312 WindowState findFocusedWindow() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002313 mTmpWindow = null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002314
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002315 forAllWindows(mFindFocusedWindow, true /* traverseTopToBottom */);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002316
2317 if (mTmpWindow == null) {
2318 if (DEBUG_FOCUS_LIGHT) Slog.v(TAG_WM, "findFocusedWindow: No focusable windows.");
2319 return null;
Wale Ogunwale63d4ecc2016-09-08 18:48:26 -07002320 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002321 return mTmpWindow;
Wale Ogunwaleec731152016-09-08 20:18:57 -07002322 }
2323
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002324 /** Updates the layer assignment of windows on this display. */
2325 void assignWindowLayers(boolean setLayoutNeeded) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002326 Trace.traceBegin(Trace.TRACE_TAG_WINDOW_MANAGER, "assignWindowLayers");
Robert Carrf59b8dd2017-10-02 18:58:36 -07002327 assignChildLayers(getPendingTransaction());
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002328 if (setLayoutNeeded) {
2329 setLayoutNeeded();
2330 }
Robert Carrb1579c82017-09-05 14:54:47 -07002331
Robert Carrf59b8dd2017-10-02 18:58:36 -07002332 // We accumlate the layer changes in-to "getPendingTransaction()" but we defer
Robert Carrb1579c82017-09-05 14:54:47 -07002333 // the application of this transaction until the animation pass triggers
2334 // prepareSurfaces. This allows us to synchronize Z-ordering changes with
2335 // the hiding and showing of surfaces.
2336 scheduleAnimation();
Jorim Jaggiffe128d2017-11-30 13:54:36 +01002337 Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwalec69694a2016-10-18 13:51:15 -07002338 }
2339
Wale Ogunwale1666e312016-12-16 11:27:18 -08002340 // TODO: This should probably be called any time a visual change is made to the hierarchy like
2341 // moving containers or resizing them. Need to investigate the best way to have it automatically
2342 // happen so we don't run into issues with programmers forgetting to do it.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002343 void layoutAndAssignWindowLayersIfNeeded() {
2344 mService.mWindowsChanged = true;
2345 setLayoutNeeded();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002346
2347 if (!mService.updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES,
2348 false /*updateInputWindows*/)) {
2349 assignWindowLayers(false /* setLayoutNeeded */);
2350 }
2351
2352 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
2353 mService.mWindowPlacerLocked.performSurfacePlacement();
2354 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2355 }
2356
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002357 /** Returns true if a leaked surface was destroyed */
2358 boolean destroyLeakedSurfaces() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002359 // Used to indicate that a surface was leaked.
2360 mTmpWindow = null;
2361 forAllWindows(w -> {
2362 final WindowStateAnimator wsa = w.mWinAnimator;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002363 if (wsa.mSurfaceController == null) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002364 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002365 }
2366 if (!mService.mSessions.contains(wsa.mSession)) {
2367 Slog.w(TAG_WM, "LEAKED SURFACE (session doesn't exist): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002368 + w + " surface=" + wsa.mSurfaceController
2369 + " token=" + w.mToken
2370 + " pid=" + w.mSession.mPid
2371 + " uid=" + w.mSession.mUid);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002372 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002373 mService.mForceRemoves.add(w);
2374 mTmpWindow = w;
Wale Ogunwale89973222017-04-23 18:39:45 -07002375 } else if (w.mAppToken != null && w.mAppToken.isClientHidden()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002376 Slog.w(TAG_WM, "LEAKED SURFACE (app token hidden): "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002377 + w + " surface=" + wsa.mSurfaceController
Jorim Jaggie7d2b852017-08-28 17:55:15 +02002378 + " token=" + w.mAppToken);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002379 if (SHOW_TRANSACTIONS) logSurface(w, "LEAK DESTROY", false);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002380 wsa.destroySurface();
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002381 mTmpWindow = w;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002382 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002383 }, false /* traverseTopToBottom */);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002384
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002385 return mTmpWindow != null;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002386 }
2387
2388 /**
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002389 * Determine and return the window that should be the IME target.
2390 * @param updateImeTarget If true the system IME target will be updated to match what we found.
2391 * @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 +00002392 */
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002393 WindowState computeImeTarget(boolean updateImeTarget) {
2394 if (mService.mInputMethodWindow == null) {
2395 // There isn't an IME so there shouldn't be a target...That was easy!
2396 if (updateImeTarget) {
2397 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from "
2398 + mService.mInputMethodTarget + " to null since mInputMethodWindow is null");
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002399 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002400 }
2401 return null;
2402 }
2403
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002404 // TODO(multidisplay): Needs some serious rethought when the target and IME are not on the
2405 // same display. Or even when the current IME/target are not on the same screen as the next
2406 // IME/target. For now only look for input windows on the main screen.
Wale Ogunwale8e44f6c2017-03-09 15:25:10 -08002407 mUpdateImeTarget = updateImeTarget;
2408 WindowState target = getWindow(mComputeImeTargetPredicate);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002409
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002410
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002411 // Yet more tricksyness! If this window is a "starting" window, we do actually want
2412 // to be on top of it, but it is not -really- where input will go. So look down below
2413 // for a real window to target...
2414 if (target != null && target.mAttrs.type == TYPE_APPLICATION_STARTING) {
2415 final AppWindowToken token = target.mAppToken;
2416 if (token != null) {
2417 final WindowState betterTarget = token.getImeTargetBelowWindow(target);
2418 if (betterTarget != null) {
2419 target = betterTarget;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002420 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002421 }
2422 }
2423
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002424 if (DEBUG_INPUT_METHOD && updateImeTarget) Slog.v(TAG_WM,
2425 "Proposed new IME target: " + target);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002426
2427 // Now, a special case -- if the last target's window is in the process of exiting, and is
2428 // above the new target, keep on the last target to avoid flicker. Consider for example a
2429 // Dialog with the IME shown: when the Dialog is dismissed, we want to keep the IME above it
2430 // until it is completely gone so it doesn't drop behind the dialog or its full-screen
2431 // scrim.
2432 final WindowState curTarget = mService.mInputMethodTarget;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002433 if (curTarget != null && curTarget.isDisplayedLw() && curTarget.isClosing()
2434 && (target == null
2435 || curTarget.mWinAnimator.mAnimLayer > target.mWinAnimator.mAnimLayer)) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002436 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Current target higher, not changing");
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002437 return curTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002438 }
2439
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002440 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, "Desired input method target=" + target
2441 + " updateImeTarget=" + updateImeTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002442
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002443 if (target == null) {
2444 if (updateImeTarget) {
2445 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget
2446 + " to null." + (SHOW_STACK_CRAWLS ? " Callers="
2447 + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002448 setInputMethodTarget(null, mService.mInputMethodTargetWaitingAnim);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002449 }
2450
2451 return null;
2452 }
2453
2454 if (updateImeTarget) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002455 AppWindowToken token = curTarget == null ? null : curTarget.mAppToken;
2456 if (token != null) {
2457
2458 // Now some fun for dealing with window animations that modify the Z order. We need
2459 // to look at all windows below the current target that are in this app, finding the
2460 // highest visible one in layering.
2461 WindowState highestTarget = null;
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002462 if (token.isSelfAnimating()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002463 highestTarget = token.getHighestAnimLayerWindow(curTarget);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002464 }
2465
2466 if (highestTarget != null) {
2467 final AppTransition appTransition = mService.mAppTransition;
2468 if (DEBUG_INPUT_METHOD) Slog.v(TAG_WM, appTransition + " " + highestTarget
2469 + " animating=" + highestTarget.mWinAnimator.isAnimationSet()
2470 + " layer=" + highestTarget.mWinAnimator.mAnimLayer
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002471 + " new layer=" + target.mWinAnimator.mAnimLayer);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002472
2473 if (appTransition.isTransitionSet()) {
2474 // If we are currently setting up for an animation, hold everything until we
2475 // can find out what will happen.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002476 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002477 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002478 } else if (highestTarget.mWinAnimator.isAnimationSet() &&
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002479 highestTarget.mWinAnimator.mAnimLayer > target.mWinAnimator.mAnimLayer) {
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002480 // If the window we are currently targeting is involved with an animation,
2481 // and it is on top of the next target we will be over, then hold off on
2482 // moving until that is done.
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002483 setInputMethodTarget(highestTarget, true);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002484 return highestTarget;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002485 }
2486 }
2487 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002488
2489 if (DEBUG_INPUT_METHOD) Slog.w(TAG_WM, "Moving IM target from " + curTarget + " to "
2490 + target + (SHOW_STACK_CRAWLS ? " Callers=" + Debug.getCallers(4) : ""));
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002491 setInputMethodTarget(target, false);
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002492 }
2493
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002494 return target;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002495 }
2496
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002497 private void setInputMethodTarget(WindowState target, boolean targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002498 if (target == mService.mInputMethodTarget
Jorim Jaggib0fc8172017-11-23 17:04:08 +00002499 && mService.mInputMethodTargetWaitingAnim == targetWaitingAnim) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002500 return;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002501 }
2502
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002503 mService.mInputMethodTarget = target;
2504 mService.mInputMethodTargetWaitingAnim = targetWaitingAnim;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002505 assignWindowLayers(false /* setLayoutNeeded */);
2506 }
2507
2508 boolean getNeedsMenu(WindowState top, WindowManagerPolicy.WindowState bottom) {
2509 if (top.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2510 return top.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
2511 }
2512
2513 // Used to indicate we have reached the first window in the range we are interested in.
2514 mTmpWindow = null;
2515
2516 // TODO: Figure-out a more efficient way to do this.
2517 final WindowState candidate = getWindow(w -> {
2518 if (w == top) {
2519 // Reached the first window in the range we are interested in.
2520 mTmpWindow = w;
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002521 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002522 if (mTmpWindow == null) {
2523 return false;
2524 }
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002525
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002526 if (w.mAttrs.needsMenuKey != NEEDS_MENU_UNSET) {
2527 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002528 }
2529 // If we reached the bottom of the range of windows we are considering,
2530 // assume no menu is needed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002531 if (w == bottom) {
2532 return true;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002533 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002534 return false;
2535 });
2536
2537 return candidate != null && candidate.mAttrs.needsMenuKey == NEEDS_MENU_SET_TRUE;
Wale Ogunwaleae9adbf2016-10-18 15:17:06 -07002538 }
2539
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002540 void setLayoutNeeded() {
2541 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "setLayoutNeeded: callers=" + Debug.getCallers(3));
2542 mLayoutNeeded = true;
2543 }
2544
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002545 private void clearLayoutNeeded() {
Wale Ogunwale2b06bfc2016-09-28 14:17:05 -07002546 if (DEBUG_LAYOUT) Slog.w(TAG_WM, "clearLayoutNeeded: callers=" + Debug.getCallers(3));
2547 mLayoutNeeded = false;
2548 }
2549
2550 boolean isLayoutNeeded() {
2551 return mLayoutNeeded;
2552 }
2553
Wale Ogunwale02319a62016-09-26 15:21:22 -07002554 void dumpTokens(PrintWriter pw, boolean dumpAll) {
2555 if (mTokenMap.isEmpty()) {
2556 return;
2557 }
2558 pw.println(" Display #" + mDisplayId);
2559 final Iterator<WindowToken> it = mTokenMap.values().iterator();
2560 while (it.hasNext()) {
2561 final WindowToken token = it.next();
2562 pw.print(" ");
2563 pw.print(token);
2564 if (dumpAll) {
2565 pw.println(':');
Jorim Jaggif5f9e122017-10-24 18:21:09 +02002566 token.dump(pw, " ", dumpAll);
Wale Ogunwale02319a62016-09-26 15:21:22 -07002567 } else {
2568 pw.println();
2569 }
2570 }
2571 }
2572
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002573 void dumpWindowAnimators(PrintWriter pw, String subPrefix) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002574 final int[] index = new int[1];
2575 forAllWindows(w -> {
2576 final WindowStateAnimator wAnim = w.mWinAnimator;
2577 pw.println(subPrefix + "Window #" + index[0] + ": " + wAnim);
2578 index[0] = index[0] + 1;
2579 }, false /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002580 }
2581
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002582 void enableSurfaceTrace(FileDescriptor fd) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002583 forAllWindows(w -> {
2584 w.mWinAnimator.enableSurfaceTrace(fd);
2585 }, true /* traverseTopToBottom */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002586 }
2587
2588 void disableSurfaceTrace() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002589 forAllWindows(w -> {
2590 w.mWinAnimator.disableSurfaceTrace();
2591 }, true /* traverseTopToBottom */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07002592 }
2593
Jorim Jaggife762342016-10-13 14:33:27 +02002594 /**
2595 * Starts the Keyguard exit animation on all windows that don't belong to an app token.
2596 */
2597 void startKeyguardExitOnNonAppWindows(boolean onWallpaper, boolean goingToShade) {
2598 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002599 forAllWindows(w -> {
Jorim Jaggic6ae42a2017-05-08 23:42:02 +02002600 if (w.mAppToken == null && policy.canBeHiddenByKeyguardLw(w)
2601 && w.wouldBeVisibleIfPolicyIgnored() && !w.isVisible()) {
Jorim Jaggia5e10572017-11-15 14:36:26 +01002602 w.startAnimation(policy.createHiddenByKeyguardExit(onWallpaper, goingToShade));
Jorim Jaggife762342016-10-13 14:33:27 +02002603 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002604 }, true /* traverseTopToBottom */);
Jorim Jaggife762342016-10-13 14:33:27 +02002605 }
2606
Wale Ogunwale494009b82016-10-21 09:01:38 -07002607 boolean checkWaitingForWindows() {
2608
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002609 mHaveBootMsg = false;
2610 mHaveApp = false;
2611 mHaveWallpaper = false;
2612 mHaveKeyguard = true;
2613
2614 final WindowState visibleWindow = getWindow(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002615 if (w.isVisibleLw() && !w.mObscured && !w.isDrawnLw()) {
2616 return true;
2617 }
2618 if (w.isDrawnLw()) {
2619 if (w.mAttrs.type == TYPE_BOOT_PROGRESS) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002620 mHaveBootMsg = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002621 } else if (w.mAttrs.type == TYPE_APPLICATION
2622 || w.mAttrs.type == TYPE_DRAWN_APPLICATION) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002623 mHaveApp = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002624 } else if (w.mAttrs.type == TYPE_WALLPAPER) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002625 mHaveWallpaper = true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002626 } else if (w.mAttrs.type == TYPE_STATUS_BAR) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002627 mHaveKeyguard = mService.mPolicy.isKeyguardDrawnLw();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002628 }
2629 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002630 return false;
2631 });
2632
2633 if (visibleWindow != null) {
2634 // We have a visible window.
2635 return true;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002636 }
2637
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002638 // if the wallpaper service is disabled on the device, we're never going to have
2639 // wallpaper, don't bother waiting for it
2640 boolean wallpaperEnabled = mService.mContext.getResources().getBoolean(
2641 com.android.internal.R.bool.config_enableWallpaperService)
2642 && !mService.mOnlyCore;
2643
Wale Ogunwale494009b82016-10-21 09:01:38 -07002644 if (DEBUG_SCREEN_ON || DEBUG_BOOT) Slog.i(TAG_WM,
2645 "******** booted=" + mService.mSystemBooted
2646 + " msg=" + mService.mShowingBootMessages
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002647 + " haveBoot=" + mHaveBootMsg + " haveApp=" + mHaveApp
2648 + " haveWall=" + mHaveWallpaper + " wallEnabled=" + wallpaperEnabled
2649 + " haveKeyguard=" + mHaveKeyguard);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002650
2651 // If we are turning on the screen to show the boot message, don't do it until the boot
2652 // message is actually displayed.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002653 if (!mService.mSystemBooted && !mHaveBootMsg) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002654 return true;
2655 }
2656
2657 // If we are turning on the screen after the boot is completed normally, don't do so until
2658 // we have the application and wallpaper.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002659 if (mService.mSystemBooted
2660 && ((!mHaveApp && !mHaveKeyguard) || (wallpaperEnabled && !mHaveWallpaper))) {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002661 return true;
2662 }
2663
2664 return false;
2665 }
2666
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002667 void updateWindowsForAnimator(WindowAnimator animator) {
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002668 mTmpWindowAnimator = animator;
2669 forAllWindows(mUpdateWindowsForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002670 }
2671
2672 void updateWallpaperForAnimator(WindowAnimator animator) {
Jorim Jaggi7156b652016-10-25 08:31:58 -07002673 resetAnimationBackgroundAnimator();
2674
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002675 // Used to indicate a detached wallpaper.
2676 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002677 mTmpWindowAnimator = animator;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002678
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002679 forAllWindows(mUpdateWallpaperForAnimator, true /* traverseTopToBottom */);
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002680
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002681 if (animator.mWindowDetachedWallpaper != mTmpWindow) {
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002682 if (DEBUG_WALLPAPER) Slog.v(TAG, "Detached wallpaper changed from "
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002683 + animator.mWindowDetachedWallpaper + " to " + mTmpWindow);
2684 animator.mWindowDetachedWallpaper = mTmpWindow;
Wale Ogunwale824ab5c2016-10-20 09:31:56 -07002685 animator.mBulkUpdateParams |= SET_WALLPAPER_MAY_CHANGE;
2686 }
2687 }
2688
Wale Ogunwale494009b82016-10-21 09:01:38 -07002689 boolean inputMethodClientHasFocus(IInputMethodClient client) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002690 final WindowState imFocus = computeImeTarget(false /* updateImeTarget */);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002691 if (imFocus == null) {
2692 return false;
2693 }
2694
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002695 if (DEBUG_INPUT_METHOD) {
2696 Slog.i(TAG_WM, "Desired input method target: " + imFocus);
2697 Slog.i(TAG_WM, "Current focus: " + mService.mCurrentFocus);
2698 Slog.i(TAG_WM, "Last focus: " + mService.mLastFocus);
Jorim Jaggiffa5a9d2016-11-23 16:59:19 +00002699 }
2700
Wale Ogunwale494009b82016-10-21 09:01:38 -07002701 final IInputMethodClient imeClient = imFocus.mSession.mClient;
2702
2703 if (DEBUG_INPUT_METHOD) {
2704 Slog.i(TAG_WM, "IM target client: " + imeClient);
2705 if (imeClient != null) {
2706 Slog.i(TAG_WM, "IM target client binder: " + imeClient.asBinder());
2707 Slog.i(TAG_WM, "Requesting client binder: " + client.asBinder());
2708 }
2709 }
2710
2711 return imeClient != null && imeClient.asBinder() == client.asBinder();
2712 }
2713
2714 boolean hasSecureWindowOnScreen() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002715 final WindowState win = getWindow(
2716 w -> w.isOnScreen() && (w.mAttrs.flags & FLAG_SECURE) != 0);
2717 return win != null;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002718 }
2719
2720 void updateSystemUiVisibility(int visibility, int globalDiff) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002721 forAllWindows(w -> {
Wale Ogunwale494009b82016-10-21 09:01:38 -07002722 try {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002723 final int curValue = w.mSystemUiVisibility;
2724 final int diff = (curValue ^ visibility) & globalDiff;
2725 final int newValue = (curValue & ~diff) | (visibility & diff);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002726 if (newValue != curValue) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002727 w.mSeq++;
2728 w.mSystemUiVisibility = newValue;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002729 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002730 if (newValue != curValue || w.mAttrs.hasSystemUiListeners) {
2731 w.mClient.dispatchSystemUiVisibilityChanged(w.mSeq,
Wale Ogunwale494009b82016-10-21 09:01:38 -07002732 visibility, newValue, diff);
2733 }
2734 } catch (RemoteException e) {
2735 // so sorry
2736 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002737 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002738 }
2739
2740 void onWindowFreezeTimeout() {
2741 Slog.w(TAG_WM, "Window freeze timeout expired.");
2742 mService.mWindowsFreezingScreen = WINDOWS_FREEZING_SCREENS_TIMEOUT;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002743
2744 forAllWindows(w -> {
Bryce Lee8c3cf382017-07-06 19:47:10 -07002745 if (!w.getOrientationChanging()) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002746 return;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002747 }
Robert Carr9c1c3a02017-08-08 12:59:01 -07002748 w.orientationChangeTimedOut();
Wale Ogunwale494009b82016-10-21 09:01:38 -07002749 w.mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
2750 - mService.mDisplayFreezeTime);
2751 Slog.w(TAG_WM, "Force clearing orientation change: " + w);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002752 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002753 mService.mWindowPlacerLocked.performSurfacePlacement();
2754 }
2755
2756 void waitForAllWindowsDrawn() {
2757 final WindowManagerPolicy policy = mService.mPolicy;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002758 forAllWindows(w -> {
2759 final boolean keyguard = policy.isKeyguardHostWindow(w.mAttrs);
2760 if (w.isVisibleLw() && (w.mAppToken != null || keyguard)) {
2761 w.mWinAnimator.mDrawState = DRAW_PENDING;
Wale Ogunwale494009b82016-10-21 09:01:38 -07002762 // Force add to mResizingWindows.
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002763 w.mLastContentInsets.set(-1, -1, -1, -1);
2764 mService.mWaitingForDrawn.add(w);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002765 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002766 }, true /* traverseTopToBottom */);
Wale Ogunwale494009b82016-10-21 09:01:38 -07002767 }
2768
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002769 // TODO: Super crazy long method that should be broken down...
2770 boolean applySurfaceChangesTransaction(boolean recoveringMemory) {
2771
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002772 final int dw = mDisplayInfo.logicalWidth;
2773 final int dh = mDisplayInfo.logicalHeight;
2774 final WindowSurfacePlacer surfacePlacer = mService.mWindowPlacerLocked;
2775
2776 mTmpUpdateAllDrawn.clear();
2777
2778 int repeats = 0;
2779 do {
2780 repeats++;
2781 if (repeats > 6) {
2782 Slog.w(TAG, "Animation repeat aborted after too many iterations");
2783 clearLayoutNeeded();
2784 break;
2785 }
2786
2787 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats("On entry to LockedInner",
2788 pendingLayoutChanges);
2789
Andrii Kulian839def92016-11-02 10:58:58 -07002790 // TODO(multi-display): For now adjusting wallpaper only on primary display to avoid
2791 // the wallpaper window jumping across displays.
2792 // Remove check for default display when there will be support for multiple wallpaper
2793 // targets (on different displays).
2794 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_WALLPAPER) != 0) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002795 mWallpaperController.adjustWallpaperWindows(this);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002796 }
2797
2798 if (isDefaultDisplay && (pendingLayoutChanges & FINISH_LAYOUT_REDO_CONFIG) != 0) {
2799 if (DEBUG_LAYOUT) Slog.v(TAG, "Computing new config from layout");
2800 if (mService.updateOrientationFromAppTokensLocked(true, mDisplayId)) {
2801 setLayoutNeeded();
Andrii Kulianb17e8692016-11-01 10:37:22 -07002802 mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, mDisplayId).sendToTarget();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002803 }
2804 }
2805
2806 if ((pendingLayoutChanges & FINISH_LAYOUT_REDO_LAYOUT) != 0) {
2807 setLayoutNeeded();
2808 }
2809
2810 // FIRST LOOP: Perform a layout, if needed.
2811 if (repeats < LAYOUT_REPEAT_THRESHOLD) {
2812 performLayout(repeats == 1, false /* updateInputWindows */);
2813 } else {
2814 Slog.w(TAG, "Layout repeat skipped after too many iterations");
2815 }
2816
2817 // FIRST AND ONE HALF LOOP: Make WindowManagerPolicy think it is animating.
2818 pendingLayoutChanges = 0;
2819
2820 if (isDefaultDisplay) {
2821 mService.mPolicy.beginPostLayoutPolicyLw(dw, dh);
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002822 forAllWindows(mApplyPostLayoutPolicy, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002823 pendingLayoutChanges |= mService.mPolicy.finishPostLayoutPolicyLw();
2824 if (DEBUG_LAYOUT_REPEATS) surfacePlacer.debugLayoutRepeats(
2825 "after finishPostLayoutPolicyLw", pendingLayoutChanges);
2826 }
2827 } while (pendingLayoutChanges != 0);
2828
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002829 mTmpApplySurfaceChangesTransactionState.reset();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002830
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002831 mTmpRecoveringMemory = recoveringMemory;
2832 forAllWindows(mApplySurfaceChangesTransaction, true /* traverseTopToBottom */);
Jorim Jaggi6b0f8462018-01-05 17:23:47 +01002833 prepareSurfaces();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002834
2835 mService.mDisplayManagerInternal.setDisplayProperties(mDisplayId,
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002836 mTmpApplySurfaceChangesTransactionState.displayHasContent,
2837 mTmpApplySurfaceChangesTransactionState.preferredRefreshRate,
2838 mTmpApplySurfaceChangesTransactionState.preferredModeId,
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002839 true /* inTraversal, must call performTraversalInTrans... below */);
2840
Lucas Dupin1ead7fc2017-05-24 14:14:44 -07002841 final boolean wallpaperVisible = mWallpaperController.isWallpaperVisible();
2842 if (wallpaperVisible != mLastWallpaperVisible) {
2843 mLastWallpaperVisible = wallpaperVisible;
2844 mService.mWallpaperVisibilityListeners.notifyWallpaperVisibilityChanged(this);
2845 }
2846
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002847 while (!mTmpUpdateAllDrawn.isEmpty()) {
2848 final AppWindowToken atoken = mTmpUpdateAllDrawn.removeLast();
2849 // See if any windows have been drawn, so they (and others associated with them)
2850 // can now be shown.
Matthew Ng498c71d2017-04-18 13:55:45 -07002851 atoken.updateAllDrawn();
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002852 }
2853
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002854 return mTmpApplySurfaceChangesTransactionState.focusDisplayed;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002855 }
2856
Bryce Leef3c6a472017-11-14 14:53:06 -08002857 private void updateBounds() {
2858 calculateBounds(mTmpBounds);
2859 setBounds(mTmpBounds);
2860 }
2861
2862 // Determines the current display bounds based on the current state
2863 private void calculateBounds(Rect out) {
2864 // Uses same calculation as in LogicalDisplay#configureDisplayInTransactionLocked.
2865 final int orientation = mDisplayInfo.rotation;
2866 boolean rotated = (orientation == ROTATION_90 || orientation == ROTATION_270);
2867 final int physWidth = rotated ? mBaseDisplayHeight : mBaseDisplayWidth;
2868 final int physHeight = rotated ? mBaseDisplayWidth : mBaseDisplayHeight;
2869 int width = mDisplayInfo.logicalWidth;
2870 int left = (physWidth - width) / 2;
2871 int height = mDisplayInfo.logicalHeight;
2872 int top = (physHeight - height) / 2;
2873 out.set(left, top, left + width, top + height);
2874 }
2875
2876 @Override
2877 public void getBounds(Rect out) {
2878 calculateBounds(out);
2879 }
2880
2881 private void getBounds(Rect out, int orientation) {
2882 getBounds(out);
2883
2884 // Rotate the Rect if needed.
2885 final int currentRotation = mDisplayInfo.rotation;
2886 final int rotationDelta = deltaRotation(currentRotation, orientation);
2887 if (rotationDelta == ROTATION_90 || rotationDelta == ROTATION_270) {
2888 createRotationMatrix(rotationDelta, mBaseDisplayWidth, mBaseDisplayHeight, mTmpMatrix);
2889 mTmpRectF.set(out);
2890 mTmpMatrix.mapRect(mTmpRectF);
2891 mTmpRectF.round(out);
2892 }
2893 }
2894
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002895 void performLayout(boolean initial, boolean updateInputWindows) {
2896 if (!isLayoutNeeded()) {
2897 return;
2898 }
2899 clearLayoutNeeded();
2900
2901 final int dw = mDisplayInfo.logicalWidth;
2902 final int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002903 if (DEBUG_LAYOUT) {
2904 Slog.v(TAG, "-------------------------------------");
2905 Slog.v(TAG, "performLayout: needed=" + isLayoutNeeded() + " dw=" + dw + " dh=" + dh);
2906 }
2907
Wale Ogunwale828ff7e2017-11-14 01:01:29 +00002908 mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo);
2909 // TODO: Not sure if we really need to set the rotation here since we are updating from the
2910 // display info above...
2911 mDisplayFrames.mRotation = mRotation;
2912 mService.mPolicy.beginLayoutLw(mDisplayFrames, getConfiguration().uiMode);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002913 if (isDefaultDisplay) {
2914 // Not needed on non-default displays.
2915 mService.mSystemDecorLayer = mService.mPolicy.getSystemDecorLayerLw();
2916 mService.mScreenRect.set(0, 0, dw, dh);
2917 }
2918
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002919 int seq = mService.mLayoutSeq + 1;
2920 if (seq < 0) seq = 0;
2921 mService.mLayoutSeq = seq;
2922
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002923 // Used to indicate that we have processed the dream window and all additional windows are
2924 // behind it.
2925 mTmpWindow = null;
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002926 mTmpInitial = initial;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002927
2928 // First perform layout of any root windows (not attached to another window).
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002929 forAllWindows(mPerformLayout, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002930
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002931 // Used to indicate that we have processed the dream window and all additional attached
2932 // windows are behind it.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002933 mTmpWindow2 = mTmpWindow;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00002934 mTmpWindow = null;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002935
2936 // Now perform layout of attached windows, which usually depend on the position of the
2937 // window they are attached to. XXX does not deal with windows that are attached to windows
2938 // that are themselves attached.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08002939 forAllWindows(mPerformLayoutAttached, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002940
2941 // Window frames may have changed. Tell the input dispatcher about it.
2942 mService.mInputMonitor.layoutInputConsumers(dw, dh);
2943 mService.mInputMonitor.setUpdateInputWindowsNeededLw();
2944 if (updateInputWindows) {
2945 mService.mInputMonitor.updateInputWindowsLw(false /*force*/);
2946 }
2947
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002948 mService.mH.sendEmptyMessage(UPDATE_DOCKED_STACK_DIVIDER);
2949 }
2950
2951 /**
2952 * Takes a snapshot of the display. In landscape mode this grabs the whole screen.
2953 * In portrait mode, it grabs the full screenshot.
2954 *
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002955 * @param config of the output bitmap
2956 * @param wallpaperOnly true if only the wallpaper layer should be included in the screenshot
2957 */
chaviwfbe47df2017-11-10 16:14:49 -08002958 Bitmap screenshotDisplay(Bitmap.Config config, boolean wallpaperOnly) {
2959 synchronized (mService.mWindowMap) {
Jorim Jaggi51304d72017-05-17 17:25:32 +02002960 if (!mService.mPolicy.isScreenOn()) {
chaviwfbe47df2017-11-10 16:14:49 -08002961 if (DEBUG_SCREENSHOT) {
2962 Slog.i(TAG_WM, "Attempted to take screenshot while display was off.");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002963 }
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002964 return null;
2965 }
2966
chaviwfbe47df2017-11-10 16:14:49 -08002967 if (wallpaperOnly && !shouldScreenshotWallpaper()) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002968 return null;
2969 }
2970
chaviwfbe47df2017-11-10 16:14:49 -08002971 int dw = mDisplayInfo.logicalWidth;
2972 int dh = mDisplayInfo.logicalHeight;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002973
chaviwfbe47df2017-11-10 16:14:49 -08002974 if (dw <= 0 || dh <= 0) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002975 return null;
2976 }
2977
chaviwfbe47df2017-11-10 16:14:49 -08002978 final Rect frame = new Rect(0, 0, dw, dh);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002979
2980 // The screenshot API does not apply the current screen rotation.
2981 int rot = mDisplay.getRotation();
2982
2983 if (rot == ROTATION_90 || rot == ROTATION_270) {
2984 rot = (rot == ROTATION_90) ? ROTATION_270 : ROTATION_90;
2985 }
2986
chaviwfbe47df2017-11-10 16:14:49 -08002987 // SurfaceFlinger is not aware of orientation, so convert our logical
2988 // crop to SurfaceFlinger's portrait orientation.
2989 convertCropForSurfaceFlinger(frame, rot, dw, dh);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002990
2991 final ScreenRotationAnimation screenRotationAnimation =
2992 mService.mAnimator.getScreenRotationAnimationLocked(DEFAULT_DISPLAY);
2993 final boolean inRotation = screenRotationAnimation != null &&
2994 screenRotationAnimation.isAnimating();
chaviwfbe47df2017-11-10 16:14:49 -08002995 if (DEBUG_SCREENSHOT && inRotation) Slog.v(TAG_WM, "Taking screenshot while rotating");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07002996
Robert Carrb1579c82017-09-05 14:54:47 -07002997 // TODO(b/68392460): We should screenshot Task controls directly
2998 // but it's difficult at the moment as the Task doesn't have the
2999 // correct size set.
chaviwfbe47df2017-11-10 16:14:49 -08003000 final Bitmap bitmap = SurfaceControl.screenshot(frame, dw, dh, 0, 1, inRotation, rot);
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01003001 if (bitmap == null) {
Robert Carrb1579c82017-09-05 14:54:47 -07003002 Slog.w(TAG_WM, "Failed to take screenshot");
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003003 return null;
3004 }
chaviwfbe47df2017-11-10 16:14:49 -08003005
3006 // Create a copy of the screenshot that is immutable and backed in ashmem.
3007 // This greatly reduces the overhead of passing the bitmap between processes.
3008 final Bitmap ret = bitmap.createAshmemBitmap(config);
3009 bitmap.recycle();
3010 return ret;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003011 }
chaviwfbe47df2017-11-10 16:14:49 -08003012 }
3013
3014 private boolean shouldScreenshotWallpaper() {
3015 MutableBoolean screenshotReady = new MutableBoolean(false);
3016
3017 forAllWindows(w -> {
3018 if (!w.mIsWallpaper) {
3019 return false;
3020 }
3021
3022 // Found the wallpaper window
3023 final WindowStateAnimator winAnim = w.mWinAnimator;
3024
3025 if (winAnim.getShown() && winAnim.mLastAlpha > 0f) {
3026 screenshotReady.value = true;
3027 }
3028
3029 return true;
3030 }, true /* traverseTopToBottom */);
3031
3032 return screenshotReady.value;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003033 }
3034
3035 // TODO: Can this use createRotationMatrix()?
3036 private static void convertCropForSurfaceFlinger(Rect crop, int rot, int dw, int dh) {
3037 if (rot == Surface.ROTATION_90) {
3038 final int tmp = crop.top;
3039 crop.top = dw - crop.right;
3040 crop.right = crop.bottom;
3041 crop.bottom = dw - crop.left;
3042 crop.left = tmp;
3043 } else if (rot == Surface.ROTATION_180) {
3044 int tmp = crop.top;
3045 crop.top = dh - crop.bottom;
3046 crop.bottom = dh - tmp;
3047 tmp = crop.right;
3048 crop.right = dw - crop.left;
3049 crop.left = dw - tmp;
3050 } else if (rot == Surface.ROTATION_270) {
3051 final int tmp = crop.top;
3052 crop.top = crop.left;
3053 crop.left = dh - crop.bottom;
3054 crop.bottom = crop.right;
3055 crop.right = dh - tmp;
3056 }
3057 }
3058
3059 void onSeamlessRotationTimeout() {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003060 // Used to indicate the layout is needed.
3061 mTmpWindow = null;
3062
3063 forAllWindows(w -> {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003064 if (!w.mSeamlesslyRotated) {
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003065 return;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003066 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003067 mTmpWindow = w;
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003068 w.setDisplayLayoutNeeded();
3069 mService.markForSeamlessRotation(w, false);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003070 }, true /* traverseTopToBottom */);
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003071
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003072 if (mTmpWindow != null) {
Wale Ogunwalef7cab102016-10-25 15:25:14 -07003073 mService.mWindowPlacerLocked.performSurfacePlacement();
3074 }
3075 }
3076
Wale Ogunwale1666e312016-12-16 11:27:18 -08003077 void setExitingTokensHasVisible(boolean hasVisible) {
3078 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3079 mExitingTokens.get(i).hasVisible = hasVisible;
3080 }
3081
3082 // Initialize state of exiting applications.
3083 mTaskStackContainers.setExitingTokensHasVisible(hasVisible);
3084 }
3085
3086 void removeExistingTokensIfPossible() {
3087 for (int i = mExitingTokens.size() - 1; i >= 0; i--) {
3088 final WindowToken token = mExitingTokens.get(i);
3089 if (!token.hasVisible) {
3090 mExitingTokens.remove(i);
3091 }
3092 }
3093
3094 // Time to remove any exiting applications?
3095 mTaskStackContainers.removeExistingAppTokensIfPossible();
3096 }
3097
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07003098 @Override
3099 void onDescendantOverrideConfigurationChanged() {
3100 setLayoutNeeded();
3101 mService.requestTraversal();
3102 }
3103
David Stevens9440dc82017-03-16 19:00:20 -07003104 boolean okToDisplay() {
3105 if (mDisplayId == DEFAULT_DISPLAY) {
3106 return !mService.mDisplayFrozen
3107 && mService.mDisplayEnabled && mService.mPolicy.isScreenOn();
3108 }
3109 return mDisplayInfo.state == Display.STATE_ON;
3110 }
3111
3112 boolean okToAnimate() {
3113 return okToDisplay() &&
3114 (mDisplayId != DEFAULT_DISPLAY || mService.mPolicy.okToAnimate());
3115 }
3116
Wale Ogunwale3f4433d2016-08-18 20:42:42 -07003117 static final class TaskForResizePointSearchResult {
3118 boolean searchDone;
3119 Task taskForResize;
3120
3121 void reset() {
3122 searchDone = false;
3123 taskForResize = null;
3124 }
3125 }
Robert Carr3b716242016-08-16 16:02:21 -07003126
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003127 private static final class ApplySurfaceChangesTransactionState {
3128 boolean displayHasContent;
3129 boolean obscured;
3130 boolean syswin;
3131 boolean focusDisplayed;
3132 float preferredRefreshRate;
3133 int preferredModeId;
3134
3135 void reset() {
3136 displayHasContent = false;
3137 obscured = false;
3138 syswin = false;
3139 focusDisplayed = false;
3140 preferredRefreshRate = 0;
3141 preferredModeId = 0;
3142 }
3143 }
3144
3145 private static final class ScreenshotApplicationState {
3146 WindowState appWin;
3147 int maxLayer;
3148 int minLayer;
3149 boolean screenshotReady;
3150
3151 void reset(boolean screenshotReady) {
3152 appWin = null;
3153 maxLayer = 0;
3154 minLayer = 0;
3155 this.screenshotReady = screenshotReady;
3156 minLayer = (screenshotReady) ? 0 : Integer.MAX_VALUE;
3157 }
3158 }
3159
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003160 /**
3161 * Base class for any direct child window container of {@link #DisplayContent} need to inherit
3162 * from. This is mainly a pass through class that allows {@link #DisplayContent} to have
3163 * homogeneous children type which is currently required by sub-classes of
3164 * {@link WindowContainer} class.
3165 */
3166 static class DisplayChildWindowContainer<E extends WindowContainer> extends WindowContainer<E> {
3167
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003168 DisplayChildWindowContainer(WindowManagerService service) {
3169 super(service);
3170 }
3171
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003172 @Override
3173 boolean fillsParent() {
3174 return true;
3175 }
3176
3177 @Override
3178 boolean isVisible() {
3179 return true;
Robert Carr3b716242016-08-16 16:02:21 -07003180 }
3181 }
3182
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003183 /**
3184 * Window container class that contains all containers on this display relating to Apps.
3185 * I.e Activities.
3186 */
Wale Ogunwale3a931692016-11-02 16:49:48 -07003187 private final class TaskStackContainers extends DisplayChildWindowContainer<TaskStack> {
Robert Carrb1579c82017-09-05 14:54:47 -07003188 /**
3189 * A control placed at the appropriate level for transitions to occur.
3190 */
chaviw23ee71c2017-12-18 11:29:41 -08003191 SurfaceControl mAppAnimationLayer = null;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003192
Robert Carrf7a7ca82017-12-06 13:17:07 -08003193 /**
3194 * Given that the split-screen divider does not have an AppWindowToken, it
3195 * will have to live inside of a "NonAppWindowContainer", in particular
3196 * {@link DisplayContent#mAboveAppWindowsContainers}. However, in visual Z order
3197 * it will need to be interleaved with some of our children, appearing on top of
3198 * both docked stacks but underneath any assistant stacks.
3199 *
3200 * To solve this problem we have this anchor control, which will always exist so
3201 * we can always assign it the correct value in our {@link #assignChildLayers}.
3202 * Likewise since it always exists, {@link AboveAppWindowContainers} can always
3203 * assign the divider a layer relative to it. This way we prevent linking lifecycle
3204 * events between the two containers.
3205 */
3206 SurfaceControl mSplitScreenDividerAnchor = null;
3207
Wale Ogunwale61911492017-10-11 08:50:50 -07003208 // Cached reference to some special stacks we tend to get a lot so we don't need to loop
3209 // through the list to find them.
3210 private TaskStack mHomeStack = null;
3211 private TaskStack mPinnedStack = null;
3212 private TaskStack mSplitScreenPrimaryStack = null;
3213
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003214 TaskStackContainers(WindowManagerService service) {
3215 super(service);
3216 }
3217
Wale Ogunwale61911492017-10-11 08:50:50 -07003218 /**
3219 * Returns the topmost stack on the display that is compatible with the input windowing mode
3220 * and activity type. Null is no compatible stack on the display.
3221 */
3222 TaskStack getStack(int windowingMode, int activityType) {
3223 if (activityType == ACTIVITY_TYPE_HOME) {
3224 return mHomeStack;
3225 }
3226 if (windowingMode == WINDOWING_MODE_PINNED) {
3227 return mPinnedStack;
3228 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3229 return mSplitScreenPrimaryStack;
3230 }
3231 for (int i = mTaskStackContainers.getChildCount() - 1; i >= 0; --i) {
3232 final TaskStack stack = mTaskStackContainers.getChildAt(i);
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003233 if (activityType == ACTIVITY_TYPE_UNDEFINED
3234 && windowingMode == stack.getWindowingMode()) {
3235 // Passing in undefined type means we want to match the topmost stack with the
3236 // windowing mode.
3237 return stack;
3238 }
Wale Ogunwale61911492017-10-11 08:50:50 -07003239 if (stack.isCompatible(windowingMode, activityType)) {
3240 return stack;
3241 }
3242 }
3243 return null;
3244 }
3245
3246 @VisibleForTesting
3247 TaskStack getTopStack() {
3248 return mTaskStackContainers.getChildCount() > 0
3249 ? mTaskStackContainers.getChildAt(mTaskStackContainers.getChildCount() - 1) : null;
3250 }
3251
3252 TaskStack getHomeStack() {
3253 if (mHomeStack == null && mDisplayId == DEFAULT_DISPLAY) {
3254 Slog.e(TAG_WM, "getHomeStack: Returning null from this=" + this);
3255 }
3256 return mHomeStack;
3257 }
3258
3259 TaskStack getPinnedStack() {
3260 return mPinnedStack;
3261 }
3262
Matthew Ng64e77cf2017-10-31 14:01:31 -07003263 TaskStack getSplitScreenPrimaryStack() {
Wale Ogunwale61911492017-10-11 08:50:50 -07003264 return mSplitScreenPrimaryStack;
3265 }
3266
Winson Chunge2d72172018-01-25 17:46:20 +00003267 ArrayList<Task> getVisibleTasks() {
3268 final ArrayList<Task> visibleTasks = new ArrayList<>();
3269 forAllTasks(task -> {
3270 if (task.isVisible()) {
3271 visibleTasks.add(task);
3272 }
3273 });
3274 return visibleTasks;
3275 }
3276
Andrii Kulian839def92016-11-02 10:58:58 -07003277 /**
3278 * Adds the stack to this container.
Wale Ogunwale61911492017-10-11 08:50:50 -07003279 * @see DisplayContent#createStack(int, boolean, StackWindowController)
Andrii Kulian839def92016-11-02 10:58:58 -07003280 */
3281 void addStackToDisplay(TaskStack stack, boolean onTop) {
Wale Ogunwale61911492017-10-11 08:50:50 -07003282 addStackReferenceIfNeeded(stack);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003283 addChild(stack, onTop);
3284 stack.onDisplayChanged(DisplayContent.this);
Robert Carr3b716242016-08-16 16:02:21 -07003285 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003286
Wale Ogunwale61911492017-10-11 08:50:50 -07003287 void onStackWindowingModeChanged(TaskStack stack) {
3288 removeStackReferenceIfNeeded(stack);
3289 addStackReferenceIfNeeded(stack);
3290 if (stack == mPinnedStack && getTopStack() != stack) {
3291 // Looks like this stack changed windowing mode to pinned. Move it to the top.
3292 positionChildAt(POSITION_TOP, stack, false /* includingParents */);
3293 }
3294 }
3295
3296 private void addStackReferenceIfNeeded(TaskStack stack) {
3297 if (stack.isActivityTypeHome()) {
3298 if (mHomeStack != null) {
3299 throw new IllegalArgumentException("addStackReferenceIfNeeded: home stack="
3300 + mHomeStack + " already exist on display=" + this + " stack=" + stack);
3301 }
3302 mHomeStack = stack;
3303 }
3304 final int windowingMode = stack.getWindowingMode();
3305 if (windowingMode == WINDOWING_MODE_PINNED) {
3306 if (mPinnedStack != null) {
3307 throw new IllegalArgumentException("addStackReferenceIfNeeded: pinned stack="
3308 + mPinnedStack + " already exist on display=" + this
3309 + " stack=" + stack);
3310 }
3311 mPinnedStack = stack;
3312 } else if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
3313 if (mSplitScreenPrimaryStack != null) {
3314 throw new IllegalArgumentException("addStackReferenceIfNeeded:"
3315 + " split-screen-primary" + " stack=" + mSplitScreenPrimaryStack
3316 + " already exist on display=" + this + " stack=" + stack);
3317 }
3318 mSplitScreenPrimaryStack = stack;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003319 mDividerControllerLocked.notifyDockedStackExistsChanged(true);
Wale Ogunwale61911492017-10-11 08:50:50 -07003320 }
3321 }
3322
3323 private void removeStackReferenceIfNeeded(TaskStack stack) {
3324 if (stack == mHomeStack) {
3325 mHomeStack = null;
3326 } else if (stack == mPinnedStack) {
3327 mPinnedStack = null;
3328 } else if (stack == mSplitScreenPrimaryStack) {
3329 mSplitScreenPrimaryStack = null;
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003330 // Re-set the split-screen create mode whenever the split-screen stack is removed.
3331 mService.setDockedStackCreateStateLocked(
3332 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
3333 mDividerControllerLocked.notifyDockedStackExistsChanged(false);
Wale Ogunwale61911492017-10-11 08:50:50 -07003334 }
Andrii Kulian839def92016-11-02 10:58:58 -07003335 }
3336
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003337 private void addChild(TaskStack stack, boolean toTop) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003338 final int addIndex = findPositionForStack(toTop ? mChildren.size() : 0, stack,
3339 true /* adding */);
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003340 addChild(stack, addIndex);
3341 setLayoutNeeded();
3342 }
3343
Wale Ogunwale61911492017-10-11 08:50:50 -07003344 @Override
3345 protected void removeChild(TaskStack stack) {
3346 super.removeChild(stack);
3347 removeStackReferenceIfNeeded(stack);
3348 }
Bryce Lee00d586d2017-07-28 20:48:43 -07003349
3350 @Override
3351 boolean isOnTop() {
3352 // Considered always on top
3353 return true;
3354 }
3355
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003356 @Override
Andrii Kuliand2765632016-12-12 22:26:34 -08003357 void positionChildAt(int position, TaskStack child, boolean includingParents) {
Wale Ogunwale3382ab12017-07-27 08:55:03 -07003358 if (child.getWindowConfiguration().isAlwaysOnTop()
3359 && position != POSITION_TOP) {
Andrii Kuliand2765632016-12-12 22:26:34 -08003360 // This stack is always-on-top, override the default behavior.
3361 Slog.w(TAG_WM, "Ignoring move of always-on-top stack=" + this + " to bottom");
3362
3363 // Moving to its current position, as we must call super but we don't want to
3364 // perform any meaningful action.
3365 final int currentPosition = mChildren.indexOf(child);
3366 super.positionChildAt(currentPosition, child, false /* includingParents */);
3367 return;
3368 }
3369
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003370 final int targetPosition = findPositionForStack(position, child, false /* adding */);
3371 super.positionChildAt(targetPosition, child, includingParents);
3372
3373 setLayoutNeeded();
3374 }
3375
3376 /**
3377 * When stack is added or repositioned, find a proper position for it.
3378 * This will make sure that pinned stack always stays on top.
3379 * @param requestedPosition Position requested by caller.
3380 * @param stack Stack to be added or positioned.
3381 * @param adding Flag indicates whether we're adding a new stack or positioning an existing.
3382 * @return The proper position for the stack.
3383 */
3384 private int findPositionForStack(int requestedPosition, TaskStack stack, boolean adding) {
3385 final int topChildPosition = mChildren.size() - 1;
3386 boolean toTop = requestedPosition == POSITION_TOP;
3387 toTop |= adding ? requestedPosition >= topChildPosition + 1
3388 : requestedPosition >= topChildPosition;
3389 int targetPosition = requestedPosition;
3390
Wale Ogunwale61911492017-10-11 08:50:50 -07003391 if (toTop && stack.getWindowingMode() != WINDOWING_MODE_PINNED && hasPinnedStack()) {
Bryce Lee48f4b572017-04-10 10:54:15 -07003392 // The pinned stack is always the top most stack (always-on-top) when it is present.
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003393 TaskStack topStack = mChildren.get(topChildPosition);
Wale Ogunwaleb62139d2017-09-20 15:37:35 -07003394 if (topStack.getWindowingMode() != WINDOWING_MODE_PINNED) {
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003395 throw new IllegalStateException("Pinned stack isn't top stack??? " + mChildren);
3396 }
3397
3398 // So, stack is moved just below the pinned stack.
3399 // When we're adding a new stack the target is the current pinned stack position.
3400 // When we're positioning an existing stack the target is the position below pinned
Andrii Kulian7cd7c2d2017-01-18 12:14:37 -08003401 // stack, because WindowContainer#positionAt() first removes element and then adds
3402 // it to specified place.
Andrii Kuliancd5dcb8b2017-01-03 17:09:45 -08003403 targetPosition = adding ? topChildPosition : topChildPosition - 1;
3404 }
3405
3406 return targetPosition;
Andrii Kuliand2765632016-12-12 22:26:34 -08003407 }
3408
3409 @Override
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003410 boolean forAllWindows(ToBooleanFunction<WindowState> callback,
3411 boolean traverseTopToBottom) {
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003412 if (traverseTopToBottom) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003413 if (super.forAllWindows(callback, traverseTopToBottom)) {
3414 return true;
3415 }
3416 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3417 return true;
3418 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003419 } else {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003420 if (forAllExitingAppTokenWindows(callback, traverseTopToBottom)) {
3421 return true;
3422 }
3423 if (super.forAllWindows(callback, traverseTopToBottom)) {
3424 return true;
3425 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003426 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003427 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003428 }
3429
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003430 private boolean forAllExitingAppTokenWindows(ToBooleanFunction<WindowState> callback,
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003431 boolean traverseTopToBottom) {
3432 // For legacy reasons we process the TaskStack.mExitingAppTokens first here before the
3433 // app tokens.
3434 // TODO: Investigate if we need to continue to do this or if we can just process them
3435 // in-order.
3436 if (traverseTopToBottom) {
3437 for (int i = mChildren.size() - 1; i >= 0; --i) {
3438 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3439 for (int j = appTokens.size() - 1; j >= 0; --j) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003440 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3441 traverseTopToBottom)) {
3442 return true;
3443 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003444 }
3445 }
3446 } else {
3447 final int count = mChildren.size();
3448 for (int i = 0; i < count; ++i) {
3449 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3450 final int appTokensCount = appTokens.size();
3451 for (int j = 0; j < appTokensCount; j++) {
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003452 if (appTokens.get(j).forAllWindowsUnchecked(callback,
3453 traverseTopToBottom)) {
3454 return true;
3455 }
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003456 }
3457 }
3458 }
Wale Ogunwalef4ebe2e2016-11-09 13:24:43 -08003459 return false;
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003460 }
3461
Wale Ogunwale1666e312016-12-16 11:27:18 -08003462 void setExitingTokensHasVisible(boolean hasVisible) {
3463 for (int i = mChildren.size() - 1; i >= 0; --i) {
3464 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3465 for (int j = appTokens.size() - 1; j >= 0; --j) {
3466 appTokens.get(j).hasVisible = hasVisible;
3467 }
3468 }
3469 }
3470
3471 void removeExistingAppTokensIfPossible() {
3472 for (int i = mChildren.size() - 1; i >= 0; --i) {
3473 final AppTokenList appTokens = mChildren.get(i).mExitingAppTokens;
3474 for (int j = appTokens.size() - 1; j >= 0; --j) {
3475 final AppWindowToken token = appTokens.get(j);
3476 if (!token.hasVisible && !mService.mClosingApps.contains(token)
3477 && (!token.mIsExiting || token.isEmpty())) {
3478 // Make sure there is no animation running on this token, so any windows
3479 // associated with it will be removed as soon as their animations are
3480 // complete.
Jorim Jaggif5f9e122017-10-24 18:21:09 +02003481 cancelAnimation();
Wale Ogunwale1666e312016-12-16 11:27:18 -08003482 if (DEBUG_ADD_REMOVE || DEBUG_TOKEN_MOVEMENT) Slog.v(TAG,
3483 "performLayout: App token exiting now removed" + token);
3484 token.removeIfPossible();
3485 }
3486 }
3487 }
3488 }
3489
Wale Ogunwaleb783fd82016-11-04 09:51:54 -07003490 @Override
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003491 int getOrientation() {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003492 if (isStackVisible(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY)
3493 || isStackVisible(WINDOWING_MODE_FREEFORM)) {
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003494 // Apps and their containers are not allowed to specify an orientation while the
3495 // docked or freeform stack is visible...except for the home stack/task if the
3496 // docked stack is minimized and it actually set something.
3497 if (mHomeStack != null && mHomeStack.isVisible()
3498 && mDividerControllerLocked.isMinimizedDock()) {
3499 final int orientation = mHomeStack.getOrientation();
3500 if (orientation != SCREEN_ORIENTATION_UNSET) {
3501 return orientation;
3502 }
3503 }
3504 return SCREEN_ORIENTATION_UNSPECIFIED;
3505 }
3506
3507 final int orientation = super.getOrientation();
Dean Harding3e5a1522017-10-06 09:19:01 -07003508 boolean isCar = mService.mContext.getPackageManager().hasSystemFeature(
3509 PackageManager.FEATURE_AUTOMOTIVE);
3510 if (isCar) {
3511 // In a car, you cannot physically rotate the screen, so it doesn't make sense to
3512 // allow anything but the default orientation.
3513 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
3514 "Forcing UNSPECIFIED orientation in car. Ignoring " + orientation);
3515 return SCREEN_ORIENTATION_UNSPECIFIED;
3516 }
3517
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003518 if (orientation != SCREEN_ORIENTATION_UNSET
3519 && orientation != SCREEN_ORIENTATION_BEHIND) {
3520 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
3521 "App is requesting an orientation, return " + orientation);
3522 return orientation;
3523 }
3524
3525 if (DEBUG_ORIENTATION) Slog.v(TAG_WM,
Andrii Kulian8ee72852017-03-10 10:36:45 -08003526 "No app is requesting an orientation, return " + mLastOrientation);
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003527 // The next app has not been requested to be visible, so we keep the current orientation
3528 // to prevent freezing/unfreezing the display too early.
Andrii Kulian8ee72852017-03-10 10:36:45 -08003529 return mLastOrientation;
Wale Ogunwalee6f806e2016-10-20 15:29:42 -07003530 }
Robert Carrb1579c82017-09-05 14:54:47 -07003531
3532 @Override
3533 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carr2f8aa392018-01-31 14:46:51 -08003534 assignStackOrdering(t);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003535
Robert Carr2f8aa392018-01-31 14:46:51 -08003536 for (int i = 0; i < mChildren.size(); i++) {
3537 final TaskStack s = mChildren.get(i);
3538 s.assignChildLayers(t);
3539 }
3540 }
3541
3542 void assignStackOrdering(SurfaceControl.Transaction t) {
Robert Carrf7a7ca82017-12-06 13:17:07 -08003543 final int HOME_STACK_STATE = 0;
3544 final int NORMAL_STACK_STATE = 1;
3545 final int ALWAYS_ON_TOP_STATE = 2;
3546
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003547 int layer = 0;
Robert Carr2f8aa392018-01-31 14:46:51 -08003548 int layerForAnimationLayer = 0;
3549
Robert Carrf7a7ca82017-12-06 13:17:07 -08003550 for (int state = 0; state <= ALWAYS_ON_TOP_STATE; state++) {
3551 for (int i = 0; i < mChildren.size(); i++) {
3552 final TaskStack s = mChildren.get(i);
Robert Carr2f8aa392018-01-31 14:46:51 -08003553 if (state == HOME_STACK_STATE && !s.isActivityTypeHome()) {
3554 continue;
3555 } else if (state == NORMAL_STACK_STATE && (s.isActivityTypeHome()
3556 || s.isAlwaysOnTop())) {
3557 continue;
3558 } else if (state == ALWAYS_ON_TOP_STATE && !s.isAlwaysOnTop()) {
3559 continue;
3560 }
3561 s.assignLayer(t, layer++);
3562 if (s.inSplitScreenWindowingMode() && mSplitScreenDividerAnchor != null) {
3563 t.setLayer(mSplitScreenDividerAnchor, layer++);
3564 }
3565 if (s.isSelfOrChildAnimating()) {
3566 // Ensure the animation layer ends up above the
3567 // highest animating stack and no higher.
3568 layerForAnimationLayer = layer++;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003569 }
3570 }
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003571 }
Robert Carr2f8aa392018-01-31 14:46:51 -08003572 if (mAppAnimationLayer != null) {
3573 t.setLayer(mAppAnimationLayer, layerForAnimationLayer);
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003574 }
Robert Carrb1579c82017-09-05 14:54:47 -07003575 }
3576
3577 @Override
chaviw23ee71c2017-12-18 11:29:41 -08003578 SurfaceControl getAppAnimationLayer() {
3579 return mAppAnimationLayer;
3580 }
3581
Robert Carrf7a7ca82017-12-06 13:17:07 -08003582 SurfaceControl getSplitScreenDividerAnchor() {
3583 return mSplitScreenDividerAnchor;
3584 }
3585
chaviw23ee71c2017-12-18 11:29:41 -08003586 @Override
Robert Carrb1579c82017-09-05 14:54:47 -07003587 void onParentSet() {
3588 super.onParentSet();
3589 if (getParent() != null) {
chaviw23ee71c2017-12-18 11:29:41 -08003590 mAppAnimationLayer = makeChildSurface(null)
3591 .setName("animationLayer")
3592 .build();
Robert Carrf7a7ca82017-12-06 13:17:07 -08003593 mSplitScreenDividerAnchor = makeChildSurface(null)
3594 .setName("splitScreenDividerAnchor")
3595 .build();
3596 getPendingTransaction()
3597 .show(mAppAnimationLayer)
3598 .show(mSplitScreenDividerAnchor);
chaviw23ee71c2017-12-18 11:29:41 -08003599 scheduleAnimation();
Robert Carrb1579c82017-09-05 14:54:47 -07003600 } else {
chaviw23ee71c2017-12-18 11:29:41 -08003601 mAppAnimationLayer.destroy();
3602 mAppAnimationLayer = null;
Robert Carrf7a7ca82017-12-06 13:17:07 -08003603 mSplitScreenDividerAnchor.destroy();
3604 mSplitScreenDividerAnchor = null;
Robert Carrb1579c82017-09-05 14:54:47 -07003605 }
3606 }
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003607 }
3608
Robert Carree4d4b92017-11-22 12:21:46 -08003609 private final class AboveAppWindowContainers extends NonAppWindowContainers {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003610 AboveAppWindowContainers(String name, WindowManagerService service) {
3611 super(name, service);
Robert Carree4d4b92017-11-22 12:21:46 -08003612 }
3613
3614 void assignChildLayers(SurfaceControl.Transaction t, WindowContainer imeContainer) {
3615 boolean needAssignIme = imeContainer != null
3616 && imeContainer.getSurfaceControl() != null;
3617 for (int j = 0; j < mChildren.size(); ++j) {
3618 final WindowToken wt = mChildren.get(j);
Robert Carrf7a7ca82017-12-06 13:17:07 -08003619
3620 // See {@link mSplitScreenDividerAnchor}
3621 if (wt.windowType == TYPE_DOCK_DIVIDER) {
3622 wt.assignRelativeLayer(t, mTaskStackContainers.getSplitScreenDividerAnchor(), 1);
3623 continue;
3624 }
Robert Carree4d4b92017-11-22 12:21:46 -08003625 wt.assignLayer(t, j);
3626 wt.assignChildLayers(t);
3627
3628 int layer = mService.mPolicy.getWindowLayerFromTypeLw(
3629 wt.windowType, wt.mOwnerCanManageAppTokens);
Robert Carrb8e78fa2017-11-28 13:07:58 -08003630
3631 if (needAssignIme && layer >= mService.mPolicy.getWindowLayerFromTypeLw(
3632 TYPE_INPUT_METHOD_DIALOG, true)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003633 imeContainer.assignRelativeLayer(t, wt.getSurfaceControl(), -1);
Robert Carree4d4b92017-11-22 12:21:46 -08003634 needAssignIme = false;
3635 }
3636 }
3637 if (needAssignIme) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003638 imeContainer.assignRelativeLayer(t, getSurfaceControl(), Integer.MAX_VALUE);
Robert Carree4d4b92017-11-22 12:21:46 -08003639 }
3640 }
3641 }
3642
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003643 /**
3644 * Window container class that contains all containers on this display that are not related to
3645 * Apps. E.g. status bar.
3646 */
Robert Carree4d4b92017-11-22 12:21:46 -08003647 private class NonAppWindowContainers extends DisplayChildWindowContainer<WindowToken> {
Wale Ogunwale3a931692016-11-02 16:49:48 -07003648 /**
3649 * Compares two child window tokens returns -1 if the first is lesser than the second in
3650 * terms of z-order and 1 otherwise.
3651 */
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003652 private final Comparator<WindowToken> mWindowComparator = (token1, token2) ->
Wale Ogunwale3a931692016-11-02 16:49:48 -07003653 // Tokens with higher base layer are z-ordered on-top.
Wale Ogunwale5cd907d2017-01-26 14:14:08 -08003654 mService.mPolicy.getWindowLayerFromTypeLw(token1.windowType,
3655 token1.mOwnerCanManageAppTokens)
3656 < mService.mPolicy.getWindowLayerFromTypeLw(token2.windowType,
3657 token2.mOwnerCanManageAppTokens) ? -1 : 1;
Wale Ogunwale19e452e2016-10-12 12:36:29 -07003658
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003659 private final Predicate<WindowState> mGetOrientingWindow = w -> {
3660 if (!w.isVisibleLw() || !w.mPolicyVisibilityAfterAnim) {
3661 return false;
3662 }
3663 final int req = w.mAttrs.screenOrientation;
3664 if(req == SCREEN_ORIENTATION_UNSPECIFIED || req == SCREEN_ORIENTATION_BEHIND
3665 || req == SCREEN_ORIENTATION_UNSET) {
3666 return false;
3667 }
3668 return true;
3669 };
3670
Wale Ogunwale3a931692016-11-02 16:49:48 -07003671 private final String mName;
chaviwf29223e2018-01-31 13:23:51 -08003672 private final Dimmer mDimmer = new Dimmer(this);
3673 private final Rect mTmpDimBoundsRect = new Rect();
3674
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003675 NonAppWindowContainers(String name, WindowManagerService service) {
3676 super(service);
Wale Ogunwale3a931692016-11-02 16:49:48 -07003677 mName = name;
3678 }
3679
3680 void addChild(WindowToken token) {
3681 addChild(token, mWindowComparator);
3682 }
3683
3684 @Override
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003685 int getOrientation() {
3686 final WindowManagerPolicy policy = mService.mPolicy;
3687 // Find a window requesting orientation.
Wale Ogunwale1e129a42016-11-21 13:03:47 -08003688 final WindowState win = getWindow(mGetOrientingWindow);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003689
3690 if (win != null) {
3691 final int req = win.mAttrs.screenOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003692 if (policy.isKeyguardHostWindow(win.mAttrs)) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08003693 mLastKeyguardForcedOrientation = req;
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003694 if (mService.mKeyguardGoingAway) {
3695 // Keyguard can't affect the orientation if it is going away...
3696 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
3697 return SCREEN_ORIENTATION_UNSET;
3698 }
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003699 }
Wale Ogunwalebfa81ad2017-05-24 15:14:42 -07003700 if (DEBUG_ORIENTATION) Slog.v(TAG_WM, win + " forcing orientation to " + req);
Andrii Kulian8ee72852017-03-10 10:36:45 -08003701 return (mLastWindowForcedOrientation = req);
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003702 }
3703
Andrii Kulian8ee72852017-03-10 10:36:45 -08003704 mLastWindowForcedOrientation = SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003705
Jorim Jaggi75520d52017-08-24 17:23:19 +02003706 if (policy.isKeyguardShowingAndNotOccluded()
3707 || mService.mAppTransition.getAppTransition() == TRANSIT_KEYGUARD_UNOCCLUDE) {
Andrii Kulian8ee72852017-03-10 10:36:45 -08003708 return mLastKeyguardForcedOrientation;
Wale Ogunwale6213caa2016-12-02 16:47:15 +00003709 }
3710
3711 return SCREEN_ORIENTATION_UNSET;
3712 }
3713
3714 @Override
Wale Ogunwale3a931692016-11-02 16:49:48 -07003715 String getName() {
3716 return mName;
3717 }
chaviwf29223e2018-01-31 13:23:51 -08003718
3719 @Override
3720 Dimmer getDimmer() {
3721 return mDimmer;
3722 }
3723
3724 @Override
3725 void prepareSurfaces() {
3726 mDimmer.resetDimStates();
3727 super.prepareSurfaces();
3728 getBounds(mTmpDimBoundsRect);
3729
3730 if (mDimmer.updateDims(getPendingTransaction(), mTmpDimBoundsRect)) {
3731 scheduleAnimation();
3732 }
3733 }
Robert Carr3b716242016-08-16 16:02:21 -07003734 }
Jorim Jaggi6a7a8592017-01-12 00:44:33 +01003735
Robert Carr9034d962018-01-04 18:27:42 -08003736 private class NonMagnifiableWindowContainers extends NonAppWindowContainers {
3737 NonMagnifiableWindowContainers(String name, WindowManagerService service) {
3738 super(name, service);
3739 }
3740
3741 @Override
3742 void applyMagnificationSpec(Transaction t, MagnificationSpec spec) {
3743 }
3744 };
3745
Robert Carrb1579c82017-09-05 14:54:47 -07003746 SurfaceControl.Builder makeSurface(SurfaceSession s) {
3747 return mService.makeSurfaceBuilder(s)
3748 .setParent(mWindowingLayer);
3749 }
3750
3751 @Override
3752 SurfaceSession getSession() {
3753 return mSession;
3754 }
3755
3756 @Override
3757 SurfaceControl.Builder makeChildSurface(WindowContainer child) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07003758 SurfaceSession s = child != null ? child.getSession() : getSession();
3759 final SurfaceControl.Builder b = mService.makeSurfaceBuilder(s);
Robert Carrb1579c82017-09-05 14:54:47 -07003760 b.setSize(mSurfaceSize, mSurfaceSize);
Robert Carrf59b8dd2017-10-02 18:58:36 -07003761
3762 if (child == null) {
3763 return b;
3764 }
3765
Robert Carree4d4b92017-11-22 12:21:46 -08003766 return b.setName(child.getName())
3767 .setParent(mWindowingLayer);
Robert Carrb1579c82017-09-05 14:54:47 -07003768 }
3769
3770 /**
3771 * The makeSurface variants are for use by the window-container
3772 * hierarchy. makeOverlay here is a function for various non windowing
3773 * overlays like the ScreenRotation screenshot, the Strict Mode Flash
3774 * and other potpourii.
3775 */
3776 SurfaceControl.Builder makeOverlay() {
3777 return mService.makeSurfaceBuilder(mSession)
3778 .setParent(mOverlayLayer);
3779 }
3780
Daichi Hironoa1fb9be2017-12-18 17:02:54 +09003781 /**
3782 * Reparents the given surface to mOverlayLayer.
3783 */
3784 void reparentToOverlay(Transaction transaction, SurfaceControl surface) {
3785 transaction.reparent(surface, mOverlayLayer.getHandle());
3786 }
3787
Robert Carrb1579c82017-09-05 14:54:47 -07003788 void applyMagnificationSpec(MagnificationSpec spec) {
Robert Carrf59b8dd2017-10-02 18:58:36 -07003789 applyMagnificationSpec(getPendingTransaction(), spec);
3790 getPendingTransaction().apply();
Robert Carrb1579c82017-09-05 14:54:47 -07003791 }
3792
3793 @Override
3794 void onParentSet() {
3795 // Since we are the top of the SurfaceControl hierarchy here
3796 // we create the root surfaces explicitly rather than chaining
3797 // up as the default implementation in onParentSet does. So we
3798 // explicitly do NOT call super here.
3799 }
3800
3801 @Override
3802 void assignChildLayers(SurfaceControl.Transaction t) {
Robert Carrb1579c82017-09-05 14:54:47 -07003803
3804 // These are layers as children of "mWindowingLayer"
3805 mBelowAppWindowsContainers.assignLayer(t, 0);
3806 mTaskStackContainers.assignLayer(t, 1);
3807 mAboveAppWindowsContainers.assignLayer(t, 2);
3808
3809 WindowState imeTarget = mService.mInputMethodTarget;
Robert Carree4d4b92017-11-22 12:21:46 -08003810 boolean needAssignIme = true;
Robert Carr1cafdf82017-11-22 13:56:43 -08003811
Robert Carree4d4b92017-11-22 12:21:46 -08003812 // In the case where we have an IME target that is not in split-screen
3813 // mode IME assignment is easy. We just need the IME to go directly above
3814 // the target. This way children of the target will naturally go above the IME
3815 // and everyone is happy.
Robert Carr1cafdf82017-11-22 13:56:43 -08003816 //
Robert Carree4d4b92017-11-22 12:21:46 -08003817 // In the case of split-screen windowing mode, we need to elevate the IME above the
3818 // docked divider while keeping the app itself below the docked divider, so instead
3819 // we use relative layering of the IME targets child windows, and place the
3820 // IME in the non-app layer (see {@link AboveAppWindowContainers#assignChildLayers}).
Robert Carr1cafdf82017-11-22 13:56:43 -08003821 //
Robert Carree4d4b92017-11-22 12:21:46 -08003822 // In the case where we have no IME target we assign it where it's base layer would
3823 // place it in the AboveAppWindowContainers.
3824 if (imeTarget != null && !imeTarget.inSplitScreenWindowingMode()
3825 && (imeTarget.getSurfaceControl() != null)) {
Jorim Jaggiffe128d2017-11-30 13:54:36 +01003826 mImeWindowsContainers.assignRelativeLayer(t, imeTarget.getSurfaceControl(),
Robert Carrb1579c82017-09-05 14:54:47 -07003827 // TODO: We need to use an extra level on the app surface to ensure
3828 // this is always above SurfaceView but always below attached window.
3829 1);
Robert Carree4d4b92017-11-22 12:21:46 -08003830 needAssignIme = false;
Robert Carrb1579c82017-09-05 14:54:47 -07003831 }
3832
3833 // Above we have assigned layers to our children, now we ask them to assign
3834 // layers to their children.
3835 mBelowAppWindowsContainers.assignChildLayers(t);
3836 mTaskStackContainers.assignChildLayers(t);
Robert Carree4d4b92017-11-22 12:21:46 -08003837 mAboveAppWindowsContainers.assignChildLayers(t,
3838 needAssignIme == true ? mImeWindowsContainers : null);
Robert Carrb1579c82017-09-05 14:54:47 -07003839 mImeWindowsContainers.assignChildLayers(t);
3840 }
3841
3842 /**
3843 * Here we satisfy an unfortunate special case of the IME in split-screen mode. Imagine
3844 * that the IME target is one of the docked applications. We'd like the docked divider to be
3845 * above both of the applications, and we'd like the IME to be above the docked divider.
3846 * However we need child windows of the applications to be above the IME (Text drag handles).
3847 * This is a non-strictly hierarcical layering and we need to break out of the Z ordering
3848 * somehow. We do this by relatively ordering children of the target to the IME in cooperation
3849 * with {@link #WindowState#assignLayer}
3850 */
3851 void assignRelativeLayerForImeTargetChild(SurfaceControl.Transaction t, WindowContainer child) {
3852 t.setRelativeLayer(child.getSurfaceControl(), mImeWindowsContainers.getSurfaceControl(), 1);
3853 }
3854
3855 @Override
Jorim Jaggia5e10572017-11-15 14:36:26 +01003856 public void destroyAfterPendingTransaction(SurfaceControl surface) {
Robert Carrb1579c82017-09-05 14:54:47 -07003857 mPendingDestroyingSurfaces.add(surface);
3858 }
3859
3860 /**
3861 * Destroys any surfaces that have been put into the pending list with
Jorim Jaggia5e10572017-11-15 14:36:26 +01003862 * {@link #destroyAfterPendingTransaction}.
Robert Carrb1579c82017-09-05 14:54:47 -07003863 */
3864 void onPendingTransactionApplied() {
3865 for (int i = mPendingDestroyingSurfaces.size() - 1; i >= 0; i--) {
3866 mPendingDestroyingSurfaces.get(i).destroy();
3867 }
3868 mPendingDestroyingSurfaces.clear();
3869 }
Jorim Jaggi9af095b2017-12-12 17:18:57 +01003870
3871 @Override
3872 void prepareSurfaces() {
3873 final ScreenRotationAnimation screenRotationAnimation =
3874 mService.mAnimator.getScreenRotationAnimationLocked(mDisplayId);
3875 if (screenRotationAnimation != null && screenRotationAnimation.isAnimating()) {
3876 screenRotationAnimation.getEnterTransformation().getMatrix().getValues(mTmpFloats);
3877 mPendingTransaction.setMatrix(mWindowingLayer,
3878 mTmpFloats[Matrix.MSCALE_X], mTmpFloats[Matrix.MSKEW_Y],
3879 mTmpFloats[Matrix.MSKEW_X], mTmpFloats[Matrix.MSCALE_Y]);
3880 mPendingTransaction.setPosition(mWindowingLayer,
3881 mTmpFloats[Matrix.MTRANS_X], mTmpFloats[Matrix.MTRANS_Y]);
3882 mPendingTransaction.setAlpha(mWindowingLayer,
3883 screenRotationAnimation.getEnterTransformation().getAlpha());
3884 }
3885 super.prepareSurfaces();
3886 }
Robert Carr2f8aa392018-01-31 14:46:51 -08003887
3888 void assignStackOrdering(SurfaceControl.Transaction t) {
3889 mTaskStackContainers.assignStackOrdering(t);
3890 }
Craig Mautner59c00972012-07-30 12:10:24 -07003891}