blob: aa5aa70b2e561082aa97bfe3cd21e8361fda4e0a [file] [log] [blame]
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001/*
2 * Copyright (C) 2010 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.am;
18
Wale Ogunwale30e441d2017-11-09 08:28:45 -080019import static android.app.ITaskStackListener.FORCED_RESIZEABLE_REASON_SPLIT_SCREEN;
Matthew Nga51dcaa2018-05-07 15:36:06 -070020import static android.app.WindowConfiguration.ACTIVITY_TYPE_ASSISTANT;
Matthew Ng99b3cdc2018-05-01 14:24:38 -070021import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
Wale Ogunwale30e441d2017-11-09 08:28:45 -080022import static android.app.WindowConfiguration.ACTIVITY_TYPE_RECENTS;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070023import static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;
24import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070025import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Wale Ogunwale68278562017-09-23 17:13:55 -070026import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwale2b07da82017-11-08 14:52:40 -080027import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
Wale Ogunwale9dcf9462017-09-19 15:13:01 -070028import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwale68278562017-09-23 17:13:55 -070029import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Wale Ogunwalef75962a2017-08-23 14:58:04 -070030import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070031import static android.app.WindowConfiguration.activityTypeToString;
32import static android.app.WindowConfiguration.windowingModeToString;
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080033import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
Wale Ogunwale5658e4b2016-02-12 12:22:19 -080034import static android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070035import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwalef5d1e352016-09-22 08:34:42 -070036import static android.view.Display.DEFAULT_DISPLAY;
Andrii Kulian7211d2e2017-01-27 15:58:05 -080037import static android.view.Display.FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD;
Andrii Kulian94e82d9b02017-07-13 15:33:06 -070038import static android.view.Display.INVALID_DISPLAY;
Winson Chung1dbc8112017-09-28 18:05:31 -070039
Wale Ogunwale9dcf9462017-09-19 15:13:01 -070040import static com.android.server.am.ActivityDisplay.POSITION_BOTTOM;
41import static com.android.server.am.ActivityDisplay.POSITION_TOP;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070042import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
43import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ALL;
44import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_APP;
45import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CLEANUP;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070046import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONTAINERS;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070047import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_PAUSE;
48import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RELEASE;
49import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RESULTS;
50import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070051import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STACK;
52import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
53import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
54import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
55import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TRANSITION;
56import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_USER_LEAVING;
57import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_VISIBILITY;
58import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
59import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_APP;
60import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CLEANUP;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070061import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONTAINERS;
62import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_PAUSE;
63import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RELEASE;
64import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RESULTS;
65import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SAVED_STATE;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070066import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STACK;
67import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
68import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
69import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
70import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TRANSITION;
71import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_USER_LEAVING;
72import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_VISIBILITY;
73import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
74import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Bryce Lee7ace3952018-02-16 14:34:32 -080075import static com.android.server.am.ActivityStack.ActivityState.DESTROYED;
76import static com.android.server.am.ActivityStack.ActivityState.DESTROYING;
77import static com.android.server.am.ActivityStack.ActivityState.FINISHING;
Wale Ogunwale08488a62017-09-05 12:37:03 -070078import static com.android.server.am.ActivityStack.ActivityState.PAUSED;
Bryce Lee7ace3952018-02-16 14:34:32 -080079import static com.android.server.am.ActivityStack.ActivityState.PAUSING;
80import static com.android.server.am.ActivityStack.ActivityState.RESUMED;
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -070081import static com.android.server.am.ActivityStack.ActivityState.STOPPED;
82import static com.android.server.am.ActivityStack.ActivityState.STOPPING;
Wale Ogunwale39381972015-12-17 17:15:29 -080083import static com.android.server.am.ActivityStackSupervisor.FindTaskResult;
Winson Chung6954fc92017-03-24 16:22:12 -070084import static com.android.server.am.ActivityStackSupervisor.PAUSE_IMMEDIATELY;
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -070085import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Winson Chung6954fc92017-03-24 16:22:12 -070086import static com.android.server.am.ActivityStackSupervisor.REMOVE_FROM_RECENTS;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070087import static com.android.server.am.ActivityStackProto.BOUNDS;
88import static com.android.server.am.ActivityStackProto.CONFIGURATION_CONTAINER;
89import static com.android.server.am.ActivityStackProto.DISPLAY_ID;
90import static com.android.server.am.ActivityStackProto.FULLSCREEN;
91import static com.android.server.am.ActivityStackProto.ID;
92import static com.android.server.am.ActivityStackProto.RESUMED_ACTIVITY;
93import static com.android.server.am.ActivityStackProto.TASKS;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010094import static android.view.WindowManager.TRANSIT_ACTIVITY_CLOSE;
95import static android.view.WindowManager.TRANSIT_ACTIVITY_OPEN;
Adrian Roos93577212018-04-10 14:12:10 -070096import static android.view.WindowManager.TRANSIT_CRASHING_ACTIVITY_CLOSE;
Jorim Jaggif84e2f62018-01-16 14:17:59 +010097import static android.view.WindowManager.TRANSIT_NONE;
98import static android.view.WindowManager.TRANSIT_TASK_CLOSE;
99import static android.view.WindowManager.TRANSIT_TASK_OPEN;
100import static android.view.WindowManager.TRANSIT_TASK_OPEN_BEHIND;
101import static android.view.WindowManager.TRANSIT_TASK_TO_BACK;
102import static android.view.WindowManager.TRANSIT_TASK_TO_FRONT;
Steven Timotius4346f0a2017-09-12 11:07:21 -0700103
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800104import static java.lang.Integer.MAX_VALUE;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700105
106import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700107import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700108import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700109import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800110import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700111import android.app.ResultInfo;
Winson Chung61c9e5a2017-10-11 10:39:32 -0700112import android.app.WindowConfiguration.ActivityType;
113import android.app.WindowConfiguration.WindowingMode;
Andrii Kulian446e8242017-10-26 15:17:29 -0700114import android.app.servertransaction.ActivityResultItem;
Andrii Kulian9956d892018-02-14 13:48:56 -0800115import android.app.servertransaction.ClientTransaction;
Andrii Kulian446e8242017-10-26 15:17:29 -0700116import android.app.servertransaction.NewIntentItem;
117import android.app.servertransaction.WindowVisibilityItem;
118import android.app.servertransaction.DestroyActivityItem;
119import android.app.servertransaction.PauseActivityItem;
120import android.app.servertransaction.ResumeActivityItem;
121import android.app.servertransaction.StopActivityItem;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700122import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700123import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700124import android.content.pm.ActivityInfo;
Todd Kennedy39bfee52016-02-24 10:28:21 -0800125import android.content.pm.ApplicationInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700126import android.content.res.Configuration;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700127import android.graphics.Rect;
Santos Cordon73ff7d82013-03-06 17:24:11 -0800128import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700129import android.os.Binder;
Craig Mautner329f4122013-11-07 09:10:42 -0800130import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700131import android.os.Handler;
132import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +0900133import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700134import android.os.Message;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700135import android.os.RemoteException;
136import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700137import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -0700138import android.service.voice.IVoiceInteractionSession;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700139import android.util.ArraySet;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700140import android.util.EventLog;
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800141import android.util.IntArray;
Jorim Jaggi023da532016-04-20 22:42:32 -0700142import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700143import android.util.Slog;
Andrii Kulian1e32e022016-09-16 15:29:34 -0700144import android.util.SparseArray;
Steven Timotius4346f0a2017-09-12 11:07:21 -0700145import android.util.proto.ProtoOutputStream;
Craig Mautner59c00972012-07-30 12:10:24 -0700146import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700147
Andreas Gampea36dc622018-02-05 17:19:22 -0800148import com.android.internal.annotations.GuardedBy;
Bryce Lee840c5662017-04-13 10:02:51 -0700149import com.android.internal.annotations.VisibleForTesting;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700150import com.android.internal.app.IVoiceInteractor;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700151import com.android.internal.os.BatteryStatsImpl;
152import com.android.server.Watchdog;
153import com.android.server.am.ActivityManagerService.ItemMatcher;
Wale Ogunwale98d62312017-07-12 09:24:56 -0700154import com.android.server.wm.ConfigurationContainer;
Wale Ogunwale1666e312016-12-16 11:27:18 -0800155import com.android.server.wm.StackWindowController;
156import com.android.server.wm.StackWindowListener;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700157import com.android.server.wm.WindowManagerService;
158
Craig Mautnercae015f2013-02-08 14:31:27 -0800159import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -0800160import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700161import java.lang.ref.WeakReference;
162import java.util.ArrayList;
163import java.util.Iterator;
164import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -0800165import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -0700166import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167
168/**
169 * State and management of a single stack of activities.
170 */
Winson Chung55893332017-02-17 17:13:10 -0800171class ActivityStack<T extends StackWindowController> extends ConfigurationContainer
172 implements StackWindowListener {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800173 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700174 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
175 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800176 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700177 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700178 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700179 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700180 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700181 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700182 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700183 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700184 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
185 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
186 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
187 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
188 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700189
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700190 // Ticks during which we check progress while waiting for an app to launch.
191 static final int LAUNCH_TICK = 500;
192
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700193 // How long we wait until giving up on the last activity to pause. This
194 // is short because it directly impacts the responsiveness of starting the
195 // next activity.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700196 private static final int PAUSE_TIMEOUT = 500;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700197
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700198 // How long we wait for the activity to tell us it has stopped before
199 // giving up. This is a good amount of time because we really need this
Robert Carr3406d462018-03-15 16:19:07 -0700200 // from the application in order to get its saved state. Once the stop
201 // is complete we may start destroying client resources triggering
202 // crashes if the UI thread was hung. We put this timeout one second behind
203 // the ANR timeout so these situations will generate ANR instead of
204 // Surface lost or other errors.
205 private static final int STOP_TIMEOUT = 11 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700206
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700207 // How long we wait until giving up on an activity telling us it has
208 // finished destroying itself.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700209 private static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800210
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700211 // Set to false to disable the preview that is shown while a new activity
212 // is being started.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700213 private static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800214
Craig Mautner5eda9b32013-07-02 11:58:16 -0700215 // How long to wait for all background Activities to redraw following a call to
216 // convertToTranslucent().
Andrii Kulian21713ac2016-10-12 22:05:05 -0700217 private static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700218
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800219 // How many activities have to be scheduled to stop to force a stop pass.
220 private static final int MAX_STOPPING_TO_FORCE = 3;
221
Andrii Kulian1779e612016-10-12 21:58:25 -0700222 @Override
223 protected int getChildCount() {
224 return mTaskHistory.size();
225 }
226
227 @Override
228 protected ConfigurationContainer getChildAt(int index) {
229 return mTaskHistory.get(index);
230 }
231
232 @Override
233 protected ConfigurationContainer getParent() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700234 return getDisplay();
Andrii Kulian1779e612016-10-12 21:58:25 -0700235 }
236
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800237 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -0700238 protected void onParentChanged() {
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800239 super.onParentChanged();
240 mStackSupervisor.updateUIDsPresentOnDisplay();
241 }
242
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700243 enum ActivityState {
244 INITIALIZING,
245 RESUMED,
246 PAUSING,
247 PAUSED,
248 STOPPING,
249 STOPPED,
250 FINISHING,
251 DESTROYING,
252 DESTROYED
253 }
254
Bryce Lee840c5662017-04-13 10:02:51 -0700255 @VisibleForTesting
Wale Ogunwale06579d62016-04-30 15:29:06 -0700256 /* The various modes for the method {@link #removeTask}. */
257 // Task is being completely removed from all stacks in the system.
Bryce Lee840c5662017-04-13 10:02:51 -0700258 protected static final int REMOVE_TASK_MODE_DESTROYING = 0;
Wale Ogunwale06579d62016-04-30 15:29:06 -0700259 // Task is being removed from this stack so we can add it to another stack. In the case we are
260 // moving we don't want to perform some operations on the task like removing it from window
261 // manager or recents.
262 static final int REMOVE_TASK_MODE_MOVING = 1;
263 // Similar to {@link #REMOVE_TASK_MODE_MOVING} and the task will be added to the top of its new
264 // stack and the new stack will be on top of all stacks.
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700265 static final int REMOVE_TASK_MODE_MOVING_TO_TOP = 2;
Wale Ogunwale06579d62016-04-30 15:29:06 -0700266
Andrii Kulian1e32e022016-09-16 15:29:34 -0700267 // The height/width divide used when fitting a task within a bounds with method
268 // {@link #fitWithinBounds}.
269 // We always want the task to to be visible in the bounds without affecting its size when
270 // fitting. To make sure this is the case, we don't adjust the task left or top side pass
271 // the input bounds right or bottom side minus the width or height divided by this value.
272 private static final int FIT_WITHIN_BOUNDS_DIVIDER = 3;
273
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700274 final ActivityManagerService mService;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700275 private final WindowManagerService mWindowManager;
Winson Chung55893332017-02-17 17:13:10 -0800276 T mWindowContainerController;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800277
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700278 /**
279 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800280 * running) activities. It contains #TaskRecord objects.
281 */
Todd Kennedy39bfee52016-02-24 10:28:21 -0800282 private final ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800283
284 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700285 * List of running activities, sorted by recent usage.
286 * The first entry in the list is the least recently used.
287 * It contains HistoryRecord objects.
288 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800289 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700290
291 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700292 * When we are in the process of pausing an activity, before starting the
293 * next one, this variable holds the activity that is currently being paused.
294 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800295 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700296
297 /**
298 * This is the last activity that we put into the paused state. This is
299 * used to determine if we need to do an activity transition while sleeping,
300 * when we normally hold the top activity paused.
301 */
302 ActivityRecord mLastPausedActivity = null;
303
304 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700305 * Activities that specify No History must be removed once the user navigates away from them.
306 * If the device goes to sleep with such an activity in the paused state then we save it here
307 * and finish it later if another activity replaces it on wakeup.
308 */
309 ActivityRecord mLastNoHistoryActivity = null;
310
311 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700312 * Current activity that is resumed, or null if there is none.
313 */
314 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800315
Craig Mautner5eda9b32013-07-02 11:58:16 -0700316 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
317 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
318 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
319 // Activity in mTranslucentActivityWaiting is notified via
320 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
321 // background activity being drawn then the same call will be made with a true value.
322 ActivityRecord mTranslucentActivityWaiting = null;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700323 ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700324
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700325 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700326 * Set when we know we are going to be calling updateConfiguration()
327 * soon, so want to skip intermediate config checks.
328 */
329 boolean mConfigWillChange;
330
Winson Chung47900652017-04-06 18:44:25 -0700331 /**
332 * When set, will force the stack to report as invisible.
333 */
334 boolean mForceHidden = false;
335
Andrii Kulian21713ac2016-10-12 22:05:05 -0700336 private boolean mUpdateBoundsDeferred;
337 private boolean mUpdateBoundsDeferredCalled;
338 private final Rect mDeferredBounds = new Rect();
339 private final Rect mDeferredTaskBounds = new Rect();
340 private final Rect mDeferredTaskInsetBounds = new Rect();
Jorim Jaggi192086e2016-03-11 17:17:03 +0100341
Craig Mautner858d8a62013-04-23 17:08:34 -0700342 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700343
Craig Mautnerc00204b2013-03-05 15:02:14 -0800344 final int mStackId;
Craig Mautnere0a38842013-12-16 16:14:02 -0800345 /** The attached Display's unique identifier, or -1 if detached */
346 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800347
Andrii Kulian1e32e022016-09-16 15:29:34 -0700348 private final SparseArray<Rect> mTmpBounds = new SparseArray<>();
349 private final SparseArray<Rect> mTmpInsetBounds = new SparseArray<>();
Wale Ogunwale1666e312016-12-16 11:27:18 -0800350 private final Rect mTmpRect2 = new Rect();
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800351 private final ActivityOptions mTmpOptions = ActivityOptions.makeBasic();
Andrii Kulian1e32e022016-09-16 15:29:34 -0700352
Bryce Leefbd263b42018-03-07 10:33:55 -0800353 /** List for processing through a set of activities */
354 private final ArrayList<ActivityRecord> mTmpActivities = new ArrayList<>();
355
Craig Mautner27084302013-03-25 08:05:25 -0700356 /** Run all ActivityStacks through this */
Winson Chung5af42fc2017-03-24 17:11:33 -0700357 protected final ActivityStackSupervisor mStackSupervisor;
Craig Mautner27084302013-03-25 08:05:25 -0700358
Jorim Jaggife762342016-10-13 14:33:27 +0200359 private boolean mTopActivityOccludesKeyguard;
360 private ActivityRecord mTopDismissingKeyguardActivity;
361
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700362 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700363 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
364 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
365 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
366 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700367 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700368
Andrii Kulian21713ac2016-10-12 22:05:05 -0700369 private static class ScheduleDestroyArgs {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700370 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700371 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700372 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700373 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700374 mReason = reason;
375 }
376 }
377
Zoran Marcetaf958b322012-08-09 20:27:12 +0900378 final Handler mHandler;
379
Andrii Kulian21713ac2016-10-12 22:05:05 -0700380 private class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800381
Craig Mautnerc8143c62013-09-03 12:15:57 -0700382 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900383 super(looper);
384 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700385
Zoran Marcetaf958b322012-08-09 20:27:12 +0900386 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700387 public void handleMessage(Message msg) {
388 switch (msg.what) {
389 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800390 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700391 // We don't at this point know if the activity is fullscreen,
392 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800393 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700394 synchronized (mService) {
395 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700396 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700397 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700398 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800399 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700400 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700401 case LAUNCH_TICK_MSG: {
402 ActivityRecord r = (ActivityRecord)msg.obj;
403 synchronized (mService) {
404 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700405 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700406 }
407 }
408 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700409 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800410 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700411 // We don't at this point know if the activity is fullscreen,
412 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800413 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800414 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800415 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800416 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700417 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700418 case STOP_TIMEOUT_MSG: {
419 ActivityRecord r = (ActivityRecord)msg.obj;
420 // We don't at this point know if the activity is fullscreen,
421 // so we need to be conservative and assume it isn't.
422 Slog.w(TAG, "Activity stop timeout for " + r);
423 synchronized (mService) {
424 if (r.isInHistory()) {
Andrii Kulian21713ac2016-10-12 22:05:05 -0700425 r.activityStoppedLocked(null /* icicle */,
426 null /* persistentState */, null /* description */);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700427 }
428 }
429 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700430 case DESTROY_ACTIVITIES_MSG: {
431 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
432 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700433 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700434 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700435 } break;
436 case TRANSLUCENT_TIMEOUT_MSG: {
437 synchronized (mService) {
438 notifyActivityDrawnLocked(null);
439 }
440 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700441 }
442 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800443 }
444
Craig Mautner34b73df2014-01-12 21:11:08 -0800445 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800446 int count = 0;
447 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
448 count += mTaskHistory.get(taskNdx).mActivities.size();
449 }
450 return count;
451 }
452
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700453 ActivityStack(ActivityDisplay display, int stackId, ActivityStackSupervisor supervisor,
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700454 int windowingMode, int activityType, boolean onTop) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700455 mStackSupervisor = supervisor;
456 mService = supervisor.mService;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800457 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
458 mWindowManager = mService.mWindowManager;
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700459 mStackId = stackId;
Fyodor Kupolov1b3edac2017-09-19 15:48:06 -0700460 mCurrentUser = mService.mUserController.getCurrentUserId();
Wale Ogunwale1666e312016-12-16 11:27:18 -0800461 mTmpRect2.setEmpty();
Andrii Kulian2fcc4512018-01-25 16:39:27 -0800462 // Set display id before setting activity and window type to make sure it won't affect
463 // stacks on a wrong display.
464 mDisplayId = display.mDisplayId;
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700465 setActivityType(activityType);
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800466 setWindowingMode(windowingMode);
Winson Chung55893332017-02-17 17:13:10 -0800467 mWindowContainerController = createStackWindowController(display.mDisplayId, onTop,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700468 mTmpRect2);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800469 postAddToDisplay(display, mTmpRect2.isEmpty() ? null : mTmpRect2, onTop);
470 }
471
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700472 T createStackWindowController(int displayId, boolean onTop, Rect outBounds) {
Bryce Lee4e4a3ec2017-09-27 08:25:03 -0700473 return (T) new StackWindowController(mStackId, this, displayId, onTop, outBounds,
474 mStackSupervisor.mWindowManager);
Winson Chung55893332017-02-17 17:13:10 -0800475 }
476
477 T getWindowContainerController() {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800478 return mWindowContainerController;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700479 }
480
Bryce Leec4ab62a2018-03-05 14:19:26 -0800481 /**
482 * This should be called when an activity in a child task changes state. This should only
483 * be called from
484 * {@link TaskRecord#onActivityStateChanged(ActivityRecord, ActivityState, String)}.
485 * @param record The {@link ActivityRecord} whose state has changed.
486 * @param state The new state.
487 * @param reason The reason for the change.
488 */
489 void onActivityStateChanged(ActivityRecord record, ActivityState state, String reason) {
490 if (record == mResumedActivity && state != RESUMED) {
Bryce Lee84730a02018-04-03 14:10:04 -0700491 setResumedActivity(null, reason + " - onActivityStateChanged");
Bryce Leec4ab62a2018-03-05 14:19:26 -0800492 }
493
494 if (state == RESUMED) {
495 if (DEBUG_STACK) Slog.v(TAG_STACK, "set resumed activity to:" + record + " reason:"
496 + reason);
Bryce Lee84730a02018-04-03 14:10:04 -0700497 setResumedActivity(record, reason + " - onActivityStateChanged");
Bryce Leec4ab62a2018-03-05 14:19:26 -0800498 mService.setResumedActivityUncheckLocked(record, reason);
499 mStackSupervisor.mRecentTasks.add(record.getTask());
500 }
501 }
502
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700503 @Override
504 public void onConfigurationChanged(Configuration newParentConfig) {
505 final int prevWindowingMode = getWindowingMode();
506 super.onConfigurationChanged(newParentConfig);
507 final ActivityDisplay display = getDisplay();
508 if (display != null && prevWindowingMode != getWindowingMode()) {
509 display.onStackWindowingModeChanged(this);
510 }
511 }
512
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700513 @Override
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800514 public void setWindowingMode(int windowingMode) {
Winson Chung3e36f822018-01-16 12:06:04 -0800515 setWindowingMode(windowingMode, false /* animate */, false /* showRecents */,
Andrii Kulian9da138a2018-04-24 17:12:44 -0700516 false /* enteringSplitScreenMode */, false /* deferEnsuringVisibility */);
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800517 }
518
Wale Ogunwaledf262f52017-12-07 18:17:12 -0800519 void setWindowingMode(int preferredWindowingMode, boolean animate, boolean showRecents,
Andrii Kulian9da138a2018-04-24 17:12:44 -0700520 boolean enteringSplitScreenMode, boolean deferEnsuringVisibility) {
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800521 final boolean creating = mWindowContainerController == null;
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800522 final int currentMode = getWindowingMode();
523 final ActivityDisplay display = getDisplay();
524 final TaskRecord topTask = topTask();
525 final ActivityStack splitScreenStack = display.getSplitScreenPrimaryStack();
526 mTmpOptions.setLaunchWindowingMode(preferredWindowingMode);
527
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800528 // Need to make sure windowing mode is supported. If we in the process of creating the stack
529 // no need to resolve the windowing mode again as it is already resolved to the right mode.
530 int windowingMode = creating
531 ? preferredWindowingMode
532 : display.resolveWindowingMode(
533 null /* ActivityRecord */, mTmpOptions, topTask, getActivityType());
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800534 if (splitScreenStack == this && windowingMode == WINDOWING_MODE_SPLIT_SCREEN_SECONDARY) {
535 // Resolution to split-screen secondary for the primary split-screen stack means we want
536 // to go fullscreen.
537 windowingMode = WINDOWING_MODE_FULLSCREEN;
538 }
539
Wale Ogunwaleac36e4d2017-11-29 13:30:26 -0800540 final boolean alreadyInSplitScreenMode = display.hasSplitScreenPrimaryStack();
541
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800542 // Don't send non-resizeable notifications if the windowing mode changed was a side effect
543 // of us entering split-screen mode.
544 final boolean sendNonResizeableNotification = !enteringSplitScreenMode;
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800545 // Take any required action due to us not supporting the preferred windowing mode.
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800546 if (alreadyInSplitScreenMode && windowingMode == WINDOWING_MODE_FULLSCREEN
547 && sendNonResizeableNotification && isActivityTypeStandardOrUndefined()) {
548 final boolean preferredSplitScreen =
549 preferredWindowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY
550 || preferredWindowingMode == WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
551 if (preferredSplitScreen || creating) {
552 // Looks like we can't launch in split screen mode or the stack we are launching
553 // doesn't support split-screen mode, go ahead an dismiss split-screen and display a
554 // warning toast about it.
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800555 mService.mTaskChangeNotificationController.notifyActivityDismissingDockedStack();
Andrii Kulian9da138a2018-04-24 17:12:44 -0700556 display.getSplitScreenPrimaryStack().setWindowingMode(WINDOWING_MODE_FULLSCREEN,
557 false /* animate */, false /* showRecents */,
558 false /* enteringSplitScreenMode */, true /* deferEnsuringVisibility */);
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800559 }
560 }
561
562 if (currentMode == windowingMode) {
563 // You are already in the window mode silly...
564 return;
565 }
566
567 final WindowManagerService wm = mService.mWindowManager;
568 final ActivityRecord topActivity = getTopActivity();
569
Wale Ogunwaledf262f52017-12-07 18:17:12 -0800570 if (sendNonResizeableNotification && windowingMode != WINDOWING_MODE_FULLSCREEN
571 && topActivity != null && topActivity.isNonResizableOrForcedResizable()
572 && !topActivity.noDisplay) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800573 // Inform the user that they are starting an app that may not work correctly in
574 // multi-window mode.
575 final String packageName = topActivity.appInfo.packageName;
576 mService.mTaskChangeNotificationController.notifyActivityForcedResizable(
577 topTask.taskId, FORCED_RESIZEABLE_REASON_SPLIT_SCREEN, packageName);
578 }
579
580 wm.deferSurfaceLayout();
581 try {
582 if (!animate && topActivity != null) {
Jorim Jaggifa9ed962018-01-25 00:16:49 +0100583 mStackSupervisor.mNoAnimActivities.add(topActivity);
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800584 }
585 super.setWindowingMode(windowingMode);
586
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800587 if (creating) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800588 // Nothing else to do if we don't have a window container yet. E.g. call from ctor.
589 return;
590 }
591
592 if (windowingMode == WINDOWING_MODE_PINNED || currentMode == WINDOWING_MODE_PINNED) {
593 // TODO: Need to remove use of PinnedActivityStack for this to be supported.
594 // NOTE: Need to ASS.scheduleUpdatePictureInPictureModeIfNeeded() in
595 // setWindowModeUnchecked() when this support is added. See TaskRecord.reparent()
596 throw new IllegalArgumentException(
597 "Changing pinned windowing mode not currently supported");
598 }
599
600 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY && splitScreenStack != null) {
601 // We already have a split-screen stack in this display, so just move the tasks over.
602 // TODO: Figure-out how to do all the stuff in
603 // AMS.setTaskWindowingModeSplitScreenPrimary
604 throw new IllegalArgumentException("Setting primary split-screen windowing mode"
605 + " while there is already one isn't currently supported");
606 //return;
607 }
608
609 mTmpRect2.setEmpty();
610 if (windowingMode != WINDOWING_MODE_FULLSCREEN) {
611 mWindowContainerController.getRawBounds(mTmpRect2);
612 if (windowingMode == WINDOWING_MODE_FREEFORM) {
613 if (topTask != null) {
614 // TODO: Can we consolidate this and other sites that call this methods?
615 Rect bounds = topTask().getLaunchBounds();
616 if (bounds != null) {
617 mTmpRect2.set(bounds);
618 }
619 }
620 }
621 }
622
Bryce Leef3c6a472017-11-14 14:53:06 -0800623 if (!Objects.equals(getOverrideBounds(), mTmpRect2)) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800624 resize(mTmpRect2, null /* tempTaskBounds */, null /* tempTaskInsetBounds */);
625 }
626 } finally {
Wale Ogunwalec59b4f62017-11-30 11:05:43 -0800627 if (showRecents && !alreadyInSplitScreenMode && mDisplayId == DEFAULT_DISPLAY
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800628 && windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
629 // Make sure recents stack exist when creating a dock stack as it normally needs to
630 // be on the other side of the docked stack and we make visibility decisions based
631 // on that.
632 // TODO: This is only here to help out with the case where recents stack doesn't
633 // exist yet. For that case the initial size of the split-screen stack will be the
634 // the one where the home stack is visible since recents isn't visible yet, but the
635 // divider will be off. I think we should just make the initial bounds that of home
636 // so that the divider matches and remove this logic.
Winson Chungc1674272018-02-21 10:15:17 -0800637 // TODO: This is currently only called when entering split-screen while in another
638 // task, and from the tests
Matthew Ng30307122018-04-13 11:36:34 -0700639 // TODO (b/78247419): Check if launcher and overview are same then move home stack
640 // instead of recents stack. Then fix the rotation animation from fullscreen to
641 // minimized mode
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800642 final ActivityStack recentStack = display.getOrCreateStack(
643 WINDOWING_MODE_SPLIT_SCREEN_SECONDARY, ACTIVITY_TYPE_RECENTS,
644 true /* onTop */);
645 recentStack.moveToFront("setWindowingMode");
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800646 // If task moved to docked stack - show recents if needed.
Winson Chungdff7a732017-12-11 12:17:06 -0800647 mService.mWindowManager.showRecentApps();
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800648 }
649 wm.continueSurfaceLayout();
650 }
651
Andrii Kulian9da138a2018-04-24 17:12:44 -0700652 if (!deferEnsuringVisibility) {
Wale Ogunwale1dbc5c82017-12-08 08:12:20 -0800653 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, PRESERVE_WINDOWS);
654 mStackSupervisor.resumeFocusedStackTopActivityLocked();
655 }
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800656 }
657
658 @Override
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700659 public boolean isCompatible(int windowingMode, int activityType) {
660 // TODO: Should we just move this to ConfigurationContainer?
661 if (activityType == ACTIVITY_TYPE_UNDEFINED) {
662 // Undefined activity types end up in a standard stack once the stack is created on a
663 // display, so they should be considered compatible.
664 activityType = ACTIVITY_TYPE_STANDARD;
665 }
666 final ActivityDisplay display = getDisplay();
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -0700667 if (display != null && activityType == ACTIVITY_TYPE_STANDARD
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700668 && windowingMode == WINDOWING_MODE_UNDEFINED) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -0700669 // Standard activity types will mostly take on the windowing mode of the display if one
670 // isn't specified, so look-up a compatible stack based on the display's windowing mode.
671 windowingMode = display.getWindowingMode();
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700672 }
673 return super.isCompatible(windowingMode, activityType);
674 }
675
Andrii Kulian839def92016-11-02 10:58:58 -0700676 /** Adds the stack to specified display and calls WindowManager to do the same. */
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700677 void reparent(ActivityDisplay activityDisplay, boolean onTop) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -0700678 // TODO: We should probably resolve the windowing mode for the stack on the new display here
679 // so that it end up in a compatible mode in the new display. e.g. split-screen secondary.
Wale Ogunwale1666e312016-12-16 11:27:18 -0800680 removeFromDisplay();
Winson Chungf34c6022018-01-25 09:44:30 -0800681 // Reparent the window container before we try to update the position when adding it to
682 // the new display below
Wale Ogunwale1666e312016-12-16 11:27:18 -0800683 mTmpRect2.setEmpty();
Winson Chungf34c6022018-01-25 09:44:30 -0800684 mWindowContainerController.reparent(activityDisplay.mDisplayId, mTmpRect2, onTop);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800685 postAddToDisplay(activityDisplay, mTmpRect2.isEmpty() ? null : mTmpRect2, onTop);
Wale Ogunwale66e16852017-10-19 13:35:52 -0700686 adjustFocusToNextFocusableStack("reparent", true /* allowFocusSelf */);
Andrii Kulian250d6532017-02-08 23:30:45 -0800687 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Andrii Kulian51c1b672017-04-07 18:39:32 -0700688 // Update visibility of activities before notifying WM. This way it won't try to resize
689 // windows that are no longer visible.
690 mStackSupervisor.ensureActivitiesVisibleLocked(null /* starting */, 0 /* configChanges */,
691 !PRESERVE_WINDOWS);
Andrii Kulian839def92016-11-02 10:58:58 -0700692 }
693
694 /**
695 * Updates internal state after adding to new display.
696 * @param activityDisplay New display to which this stack was attached.
697 * @param bounds Updated bounds.
698 */
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700699 private void postAddToDisplay(ActivityDisplay activityDisplay, Rect bounds, boolean onTop) {
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700700 mDisplayId = activityDisplay.mDisplayId;
Bryce Leef3c6a472017-11-14 14:53:06 -0800701 setBounds(bounds);
Andrii Kulian1779e612016-10-12 21:58:25 -0700702 onParentChanged();
Wale Ogunwale961f4852016-02-01 20:25:54 -0800703
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700704 activityDisplay.addChild(this, onTop ? POSITION_TOP : POSITION_BOTTOM);
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700705 if (inSplitScreenPrimaryWindowingMode()) {
Wale Ogunwale961f4852016-02-01 20:25:54 -0800706 // If we created a docked stack we want to resize it so it resizes all other stacks
707 // in the system.
708 mStackSupervisor.resizeDockedStackLocked(
Bryce Leef3c6a472017-11-14 14:53:06 -0800709 getOverrideBounds(), null, null, null, null, PRESERVE_WINDOWS);
Wale Ogunwale961f4852016-02-01 20:25:54 -0800710 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700711 }
712
Andrii Kulian839def92016-11-02 10:58:58 -0700713 /**
Andrii Kulian839def92016-11-02 10:58:58 -0700714 * Updates the inner state of the stack to remove it from its current parent, so it can be
715 * either destroyed completely or re-parented.
716 */
717 private void removeFromDisplay() {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700718 final ActivityDisplay display = getDisplay();
719 if (display != null) {
720 display.removeChild(this);
721 }
722 mDisplayId = INVALID_DISPLAY;
Andrii Kulian839def92016-11-02 10:58:58 -0700723 }
724
725 /** Removes the stack completely. Also calls WindowManager to do the same on its side. */
726 void remove() {
727 removeFromDisplay();
Wale Ogunwale1666e312016-12-16 11:27:18 -0800728 mWindowContainerController.removeContainer();
729 mWindowContainerController = null;
Andrii Kulian6d6fb402016-10-26 16:15:25 -0700730 onParentChanged();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700731 }
732
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700733 ActivityDisplay getDisplay() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700734 return mStackSupervisor.getActivityDisplay(mDisplayId);
735 }
736
Matthew Ngaa2b6202017-02-10 14:48:21 -0800737 /**
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700738 * @see #getStackDockedModeBounds(Rect, Rect, Rect, boolean)
Matthew Ngaa2b6202017-02-10 14:48:21 -0800739 */
740 void getStackDockedModeBounds(Rect currentTempTaskBounds, Rect outStackBounds,
741 Rect outTempTaskBounds, boolean ignoreVisibility) {
742 mWindowContainerController.getStackDockedModeBounds(currentTempTaskBounds,
743 outStackBounds, outTempTaskBounds, ignoreVisibility);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800744 }
745
746 void prepareFreezingTaskBounds() {
747 mWindowContainerController.prepareFreezingTaskBounds();
748 }
749
Wale Ogunwale1666e312016-12-16 11:27:18 -0800750 void getWindowContainerBounds(Rect outBounds) {
751 if (mWindowContainerController != null) {
752 mWindowContainerController.getBounds(outBounds);
Winson Chungb00dc5e2017-01-25 09:44:25 -0800753 return;
Wale Ogunwale1666e312016-12-16 11:27:18 -0800754 }
755 outBounds.setEmpty();
756 }
757
Matthew Ngaa2b6202017-02-10 14:48:21 -0800758 void getBoundsForNewConfiguration(Rect outBounds) {
759 mWindowContainerController.getBoundsForNewConfiguration(outBounds);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800760 }
761
762 void positionChildWindowContainerAtTop(TaskRecord child) {
763 mWindowContainerController.positionChildAtTop(child.getWindowContainerController(),
764 true /* includingParents */);
765 }
766
Jorim Jaggi192086e2016-03-11 17:17:03 +0100767 /**
Winson Chung8bca9e42017-04-16 15:59:43 -0700768 * Returns whether to defer the scheduling of the multi-window mode.
769 */
770 boolean deferScheduleMultiWindowModeChanged() {
771 return false;
772 }
773
774 /**
Jorim Jaggi192086e2016-03-11 17:17:03 +0100775 * Defers updating the bounds of the stack. If the stack was resized/repositioned while
776 * deferring, the bounds will update in {@link #continueUpdateBounds()}.
777 */
778 void deferUpdateBounds() {
779 if (!mUpdateBoundsDeferred) {
780 mUpdateBoundsDeferred = true;
781 mUpdateBoundsDeferredCalled = false;
782 }
783 }
784
785 /**
786 * Continues updating bounds after updates have been deferred. If there was a resize attempt
787 * between {@link #deferUpdateBounds()} and {@link #continueUpdateBounds()}, the stack will
788 * be resized to that bounds.
789 */
790 void continueUpdateBounds() {
791 final boolean wasDeferred = mUpdateBoundsDeferred;
792 mUpdateBoundsDeferred = false;
793 if (wasDeferred && mUpdateBoundsDeferredCalled) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800794 resize(mDeferredBounds.isEmpty() ? null : mDeferredBounds,
Jorim Jaggi192086e2016-03-11 17:17:03 +0100795 mDeferredTaskBounds.isEmpty() ? null : mDeferredTaskBounds,
796 mDeferredTaskInsetBounds.isEmpty() ? null : mDeferredTaskInsetBounds);
797 }
798 }
799
800 boolean updateBoundsAllowed(Rect bounds, Rect tempTaskBounds,
801 Rect tempTaskInsetBounds) {
802 if (!mUpdateBoundsDeferred) {
803 return true;
804 }
805 if (bounds != null) {
806 mDeferredBounds.set(bounds);
807 } else {
808 mDeferredBounds.setEmpty();
809 }
810 if (tempTaskBounds != null) {
811 mDeferredTaskBounds.set(tempTaskBounds);
812 } else {
813 mDeferredTaskBounds.setEmpty();
814 }
815 if (tempTaskInsetBounds != null) {
816 mDeferredTaskInsetBounds.set(tempTaskInsetBounds);
817 } else {
818 mDeferredTaskInsetBounds.setEmpty();
819 }
820 mUpdateBoundsDeferredCalled = true;
821 return false;
822 }
823
Bryce Leef3c6a472017-11-14 14:53:06 -0800824 @Override
825 public int setBounds(Rect bounds) {
826 return super.setBounds(!inMultiWindowMode() ? null : bounds);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700827 }
Craig Mautner5962b122012-10-05 14:45:52 -0700828
Wale Ogunwale42f07d92017-05-01 21:32:58 -0700829 ActivityRecord topRunningActivityLocked() {
Winson Chung3f103eb2017-04-12 21:53:59 -0700830 return topRunningActivityLocked(false /* focusableOnly */);
831 }
832
Jorim Jaggiea039a82017-08-02 14:37:49 +0200833 void getAllRunningVisibleActivitiesLocked(ArrayList<ActivityRecord> outActivities) {
834 outActivities.clear();
835 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
836 mTaskHistory.get(taskNdx).getAllRunningVisibleActivitiesLocked(outActivities);
837 }
838 }
839
Wale Ogunwale42f07d92017-05-01 21:32:58 -0700840 private ActivityRecord topRunningActivityLocked(boolean focusableOnly) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800841 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700842 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Winson Chung3f103eb2017-04-12 21:53:59 -0700843 if (r != null && (!focusableOnly || r.isFocusable())) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700844 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800845 }
846 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700847 return null;
848 }
849
Wale Ogunwale42f07d92017-05-01 21:32:58 -0700850 ActivityRecord topRunningNonOverlayTaskActivity() {
851 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
852 final TaskRecord task = mTaskHistory.get(taskNdx);
853 final ArrayList<ActivityRecord> activities = task.mActivities;
854 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
855 final ActivityRecord r = activities.get(activityNdx);
856 if (!r.finishing && !r.mTaskOverlay) {
857 return r;
858 }
859 }
860 }
861 return null;
862 }
863
864 ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800865 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
866 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800867 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800868 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
869 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -0700870 if (!r.finishing && !r.delayedResume && r != notTop && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800871 return r;
872 }
873 }
874 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700875 return null;
876 }
877
878 /**
879 * This is a simplified version of topRunningActivityLocked that provides a number of
880 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800881 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700882 * @param token If non-null, any history records matching this token will be skipped.
883 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800884 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700885 * @return Returns the HistoryRecord of the next activity on the stack.
886 */
887 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800888 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
889 TaskRecord task = mTaskHistory.get(taskNdx);
890 if (task.taskId == taskId) {
891 continue;
892 }
893 ArrayList<ActivityRecord> activities = task.mActivities;
894 for (int i = activities.size() - 1; i >= 0; --i) {
895 final ActivityRecord r = activities.get(i);
896 // Note: the taskId check depends on real taskId fields being non-zero
Chong Zhang87761972016-08-22 13:53:24 -0700897 if (!r.finishing && (token != r.appToken) && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800898 return r;
899 }
900 }
901 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700902 return null;
903 }
904
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800905 ActivityRecord getTopActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700906 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800907 final ActivityRecord r = mTaskHistory.get(taskNdx).getTopActivity();
908 if (r != null) {
909 return r;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700910 }
911 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700912 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700913 }
914
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700915 final TaskRecord topTask() {
916 final int size = mTaskHistory.size();
917 if (size > 0) {
918 return mTaskHistory.get(size - 1);
919 }
920 return null;
921 }
922
Wale Ogunwale30e441d2017-11-09 08:28:45 -0800923 private TaskRecord bottomTask() {
Winson Chung1cebea62017-06-26 17:22:27 -0700924 if (mTaskHistory.isEmpty()) {
925 return null;
926 }
927 return mTaskHistory.get(0);
928 }
929
Craig Mautnerd2328952013-03-05 12:46:26 -0800930 TaskRecord taskForIdLocked(int id) {
931 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
932 final TaskRecord task = mTaskHistory.get(taskNdx);
933 if (task.taskId == id) {
934 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800935 }
936 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700937 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700938 }
939
Craig Mautnerd2328952013-03-05 12:46:26 -0800940 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700941 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800942 return isInStackLocked(r);
943 }
944
945 ActivityRecord isInStackLocked(ActivityRecord r) {
946 if (r == null) {
947 return null;
948 }
Bryce Leeaf691c02017-03-20 14:20:22 -0700949 final TaskRecord task = r.getTask();
Andrii Kulian02b7a832016-10-06 23:11:56 -0700950 final ActivityStack stack = r.getStack();
951 if (stack != null && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
952 if (stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800953 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800954 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800955 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800956 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800957 }
958
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800959 boolean isInStackLocked(TaskRecord task) {
960 return mTaskHistory.contains(task);
961 }
962
963 /** Checks if there are tasks with specific UID in the stack. */
964 boolean isUidPresent(int uid) {
965 for (TaskRecord task : mTaskHistory) {
David Stevens82ea6cb2017-03-03 16:18:50 -0800966 for (ActivityRecord r : task.mActivities) {
967 if (r.getUid() == uid) {
968 return true;
969 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800970 }
971 }
972 return false;
973 }
974
975 /** Get all UIDs that are present in the stack. */
976 void getPresentUIDs(IntArray presentUIDs) {
977 for (TaskRecord task : mTaskHistory) {
David Stevens82ea6cb2017-03-03 16:18:50 -0800978 for (ActivityRecord r : task.mActivities) {
979 presentUIDs.add(r.getUid());
980 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800981 }
982 }
983
Winson Chungabb433b2017-03-24 09:35:42 -0700984 final void removeActivitiesFromLRUListLocked(TaskRecord task) {
985 for (ActivityRecord r : task.mActivities) {
986 mLRUActivities.remove(r);
987 }
988 }
989
Craig Mautner2420ead2013-04-01 17:13:20 -0700990 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700991 final boolean hadit = mLRUActivities.remove(r);
992 mLRUActivities.add(r);
993 return hadit;
994 }
995
Matthew Ngae1ff4f2016-11-10 15:49:14 -0800996 final boolean isHomeOrRecentsStack() {
Wale Ogunwale68278562017-09-23 17:13:55 -0700997 return isActivityTypeHome() || isActivityTypeRecents();
Matthew Ngae1ff4f2016-11-10 15:49:14 -0800998 }
999
Craig Mautnere0a38842013-12-16 16:14:02 -08001000 final boolean isOnHomeDisplay() {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001001 return mDisplayId == DEFAULT_DISPLAY;
Craig Mautnere0a38842013-12-16 16:14:02 -08001002 }
1003
Wale Ogunwale66e16852017-10-19 13:35:52 -07001004 private boolean returnsToHomeStack() {
1005 return !inMultiWindowMode()
1006 && !mTaskHistory.isEmpty()
1007 && mTaskHistory.get(0).returnsToHomeStack();
1008 }
1009
Wale Ogunwaleeae451e2015-08-04 15:20:50 -07001010 void moveToFront(String reason) {
1011 moveToFront(reason, null);
1012 }
1013
1014 /**
1015 * @param reason The reason for moving the stack to the front.
1016 * @param task If non-null, the task will be moved to the top of the stack.
1017 * */
1018 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001019 if (!isAttached()) {
1020 return;
1021 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07001022
Wale Ogunwalebb285872018-03-01 13:05:30 -08001023 final ActivityDisplay display = getDisplay();
1024
1025 if (inSplitScreenSecondaryWindowingMode()) {
1026 // If the stack is in split-screen seconardy mode, we need to make sure we move the
1027 // primary split-screen stack forward in the case it is currently behind a fullscreen
1028 // stack so both halves of the split-screen appear on-top and the fullscreen stack isn't
1029 // cutting between them.
1030 // TODO(b/70677280): This is a workaround until we can fix as part of b/70677280.
1031 final ActivityStack topFullScreenStack =
1032 display.getTopStackInWindowingMode(WINDOWING_MODE_FULLSCREEN);
1033 if (topFullScreenStack != null) {
1034 final ActivityStack primarySplitScreenStack = display.getSplitScreenPrimaryStack();
1035 if (display.getIndexOf(topFullScreenStack)
1036 > display.getIndexOf(primarySplitScreenStack)) {
1037 primarySplitScreenStack.moveToFront(reason + " splitScreenToTop");
1038 }
1039 }
1040 }
1041
Wale Ogunwale66e16852017-10-19 13:35:52 -07001042 if (!isActivityTypeHome() && returnsToHomeStack()) {
1043 // Make sure the home stack is behind this stack since that is where we should return to
1044 // when this stack is no longer visible.
1045 mStackSupervisor.moveHomeStackToFront(reason + " returnToHome");
1046 }
1047
Wale Ogunwalebb285872018-03-01 13:05:30 -08001048 display.positionChildAtTop(this);
Andrii Kulian839def92016-11-02 10:58:58 -07001049 mStackSupervisor.setFocusStackUnchecked(reason, this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001050 if (task != null) {
1051 insertTaskAtTop(task, null);
Wale Ogunwaleaa47c122016-09-23 16:39:53 -07001052 return;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001053 }
Craig Mautnere0a38842013-12-16 16:14:02 -08001054 }
1055
Evan Rosky9c448172017-11-02 14:19:27 -07001056 /**
1057 * @param reason The reason for moving the stack to the back.
1058 * @param task If non-null, the task will be moved to the bottom of the stack.
1059 **/
1060 void moveToBack(String reason, TaskRecord task) {
1061 if (!isAttached()) {
1062 return;
1063 }
1064
Bryce Lee8cab4a02018-01-05 09:00:49 -08001065 /**
1066 * The intent behind moving a primary split screen stack to the back is usually to hide
1067 * behind the home stack. Exit split screen in this case.
1068 */
1069 if (getWindowingMode() == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
1070 setWindowingMode(WINDOWING_MODE_FULLSCREEN);
1071 }
1072
Evan Rosky9c448172017-11-02 14:19:27 -07001073 getDisplay().positionChildAtBottom(this);
1074 mStackSupervisor.setFocusStackUnchecked(reason, getDisplay().getTopStack());
1075 if (task != null) {
1076 insertTaskAtBottom(task);
1077 return;
Evan Rosky9c448172017-11-02 14:19:27 -07001078 }
1079 }
1080
Wale Ogunwaled046a012015-12-24 13:05:59 -08001081 boolean isFocusable() {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001082 final ActivityRecord r = topRunningActivityLocked();
Bryce Lee7b851cc2018-04-10 14:53:13 -07001083 return mStackSupervisor.isFocusable(this, r != null && r.isFocusable());
Wale Ogunwaled046a012015-12-24 13:05:59 -08001084 }
1085
Craig Mautnere0a38842013-12-16 16:14:02 -08001086 final boolean isAttached() {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001087 return getParent() != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -08001088 }
1089
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001090 /**
Wale Ogunwale39381972015-12-17 17:15:29 -08001091 * Returns the top activity in any existing task matching the given Intent in the input result.
1092 * Returns null if no such task is found.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001093 */
Wale Ogunwale39381972015-12-17 17:15:29 -08001094 void findTaskLocked(ActivityRecord target, FindTaskResult result) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001095 Intent intent = target.intent;
1096 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001097 ComponentName cls = intent.getComponent();
1098 if (info.targetActivity != null) {
1099 cls = new ComponentName(info.packageName, info.targetActivity);
1100 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001101 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -07001102 boolean isDocument = intent != null & intent.isDocument();
1103 // If documentData is non-null then it must match the existing task data.
1104 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -08001105
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001106 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -08001107 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1108 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -07001109 if (task.voiceSession != null) {
1110 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001111 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -07001112 continue;
1113 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001114 if (task.userId != userId) {
1115 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001116 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -07001117 continue;
1118 }
Bryce Lee9f6affd2017-09-01 09:18:35 -07001119
1120 // Overlays should not be considered as the task's logical top activity.
1121 final ActivityRecord r = task.getTopActivity(false /* includeOverlays */);
Craig Mautner000f0022013-02-26 15:04:29 -08001122 if (r == null || r.finishing || r.userId != userId ||
1123 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001124 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -08001125 continue;
1126 }
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001127 if (!r.hasCompatibleActivityType(target)) {
Chong Zhangb546f7e2015-08-05 14:21:36 -07001128 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
1129 continue;
1130 }
Craig Mautner000f0022013-02-26 15:04:29 -08001131
Craig Mautnerd00f4742014-03-12 14:17:26 -07001132 final Intent taskIntent = task.intent;
1133 final Intent affinityIntent = task.affinityIntent;
1134 final boolean taskIsDocument;
1135 final Uri taskDocumentData;
1136 if (taskIntent != null && taskIntent.isDocument()) {
1137 taskIsDocument = true;
1138 taskDocumentData = taskIntent.getData();
1139 } else if (affinityIntent != null && affinityIntent.isDocument()) {
1140 taskIsDocument = true;
1141 taskDocumentData = affinityIntent.getData();
1142 } else {
1143 taskIsDocument = false;
1144 taskDocumentData = null;
1145 }
1146
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001147 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -07001148 + taskIntent.getComponent().flattenToShortString()
Bryce Leeaf691c02017-03-20 14:20:22 -07001149 + "/aff=" + r.getTask().rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -07001150 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Andrii Kulian206b9fa2016-06-02 13:18:01 -07001151 // TODO Refactor to remove duplications. Check if logic can be simplified.
1152 if (taskIntent != null && taskIntent.getComponent() != null &&
Craig Mautnerffcfcaa2014-06-05 09:54:38 -07001153 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -07001154 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001155 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -08001156 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001157 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
1158 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -08001159 result.r = r;
1160 result.matchedByRootAffinity = false;
1161 break;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -07001162 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
1163 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -07001164 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001165 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -08001166 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001167 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
1168 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -08001169 result.r = r;
1170 result.matchedByRootAffinity = false;
1171 break;
Andrii Kulian206b9fa2016-06-02 13:18:01 -07001172 } else if (!isDocument && !taskIsDocument
Winson Chung5b895b72017-05-01 13:46:25 -07001173 && result.r == null && task.rootAffinity != null) {
Andrii Kulian206b9fa2016-06-02 13:18:01 -07001174 if (task.rootAffinity.equals(target.taskAffinity)) {
1175 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
1176 // It is possible for multiple tasks to have the same root affinity especially
1177 // if they are in separate stacks. We save off this candidate, but keep looking
1178 // to see if there is a better candidate.
1179 result.r = r;
1180 result.matchedByRootAffinity = true;
1181 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001182 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001183 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001184 }
1185
1186 /**
1187 * Returns the first activity (starting from the top of the stack) that
1188 * is the same as the given activity. Returns null if no such activity
1189 * is found.
1190 */
Andrii Kuliand3bbb132016-06-16 16:00:20 -07001191 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info,
1192 boolean compareIntentFilters) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001193 ComponentName cls = intent.getComponent();
1194 if (info.targetActivity != null) {
1195 cls = new ComponentName(info.packageName, info.targetActivity);
1196 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001197 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001198
Craig Mautner000f0022013-02-26 15:04:29 -08001199 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001200 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001201 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001202
Craig Mautner000f0022013-02-26 15:04:29 -08001203 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1204 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -07001205 if (!r.okToShowLocked()) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -07001206 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001207 }
Andrii Kuliand3bbb132016-06-16 16:00:20 -07001208 if (!r.finishing && r.userId == userId) {
1209 if (compareIntentFilters) {
1210 if (r.intent.filterEquals(intent)) {
1211 return r;
1212 }
1213 } else {
1214 if (r.intent.getComponent().equals(cls)) {
1215 return r;
1216 }
1217 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001218 }
1219 }
1220 }
1221
1222 return null;
1223 }
1224
Amith Yamasani742a6712011-05-04 14:49:28 -07001225 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -07001226 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -07001227 */
Craig Mautner93529a42013-10-04 15:03:13 -07001228 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001229 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -07001230 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001231 }
1232 mCurrentUser = userId;
1233
1234 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001235 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -08001236 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001237 final TaskRecord task = mTaskHistory.get(i);
1238
Chong Zhang87761972016-08-22 13:53:24 -07001239 if (task.okToShowLocked()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001240 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -07001241 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001242 mTaskHistory.remove(i);
1243 mTaskHistory.add(task);
1244 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -08001245 // Use same value for i.
1246 } else {
1247 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001248 }
1249 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001250 }
1251
Craig Mautner2420ead2013-04-01 17:13:20 -07001252 void minimalResumeActivityLocked(ActivityRecord r) {
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001253 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
1254 + " callers=" + Debug.getCallers(5));
Bryce Leec4ab62a2018-03-05 14:19:26 -08001255 r.setState(RESUMED, "minimalResumeActivityLocked");
Andrii Kulian21713ac2016-10-12 22:05:05 -07001256 r.completeResumeLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001257 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
1258 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001259 }
1260
Andrii Kulian21713ac2016-10-12 22:05:05 -07001261 private void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -07001262 // Make sure that there is no activity waiting for this to launch.
Vishnu Naircf235042018-11-02 13:27:00 -07001263 if (!mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
Craig Mautner5c494542013-09-06 11:59:38 -07001264 mStackSupervisor.removeTimeoutsForActivityLocked(r);
1265 mStackSupervisor.scheduleIdleTimeoutLocked(r);
1266 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001267 }
1268
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001269 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001270 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001271 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1272 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1273 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1274 activities.get(activityNdx).setSleeping(false);
1275 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001276 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -08001277 if (mPausingActivity != null) {
1278 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
1279 activityPausedLocked(mPausingActivity.appToken, true);
1280 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001281 }
1282
Todd Kennedy39bfee52016-02-24 10:28:21 -08001283 void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
1284 final String packageName = aInfo.packageName;
Makoto Onuki8b9963a2017-05-18 13:56:30 -07001285 final int userId = UserHandle.getUserId(aInfo.uid);
1286
Todd Kennedy39bfee52016-02-24 10:28:21 -08001287 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1288 final List<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1289 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Makoto Onuki8b9963a2017-05-18 13:56:30 -07001290 final ActivityRecord ar = activities.get(activityNdx);
1291
1292 if ((userId == ar.userId) && packageName.equals(ar.packageName)) {
Philip P. Moltmanncff8f0f2018-03-27 12:51:51 -07001293 ar.updateApplicationInfo(aInfo);
Todd Kennedy39bfee52016-02-24 10:28:21 -08001294 }
1295 }
1296 }
1297 }
1298
David Stevens9440dc82017-03-16 19:00:20 -07001299 void checkReadyForSleep() {
1300 if (shouldSleepActivities() && goToSleepIfPossible(false /* shuttingDown */)) {
1301 mStackSupervisor.checkReadyForSleepLocked(true /* allowDelay */);
1302 }
1303 }
1304
Craig Mautner0eea92c2013-05-16 13:35:39 -07001305 /**
David Stevens9440dc82017-03-16 19:00:20 -07001306 * Tries to put the activities in the stack to sleep.
1307 *
1308 * If the stack is not in a state where its activities can be put to sleep, this function will
1309 * start any necessary actions to move the stack into such a state. It is expected that this
1310 * function get called again when those actions complete.
1311 *
1312 * @param shuttingDown true when the called because the device is shutting down.
David Stevens18abd0e2017-08-17 14:55:47 -07001313 * @return true if the stack finished going to sleep, false if the stack only started the
1314 * process of going to sleep (checkReadyForSleep will be called when that process finishes).
Craig Mautner0eea92c2013-05-16 13:35:39 -07001315 */
David Stevens9440dc82017-03-16 19:00:20 -07001316 boolean goToSleepIfPossible(boolean shuttingDown) {
1317 boolean shouldSleep = true;
1318
Craig Mautner0eea92c2013-05-16 13:35:39 -07001319 if (mResumedActivity != null) {
1320 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001321 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
1322 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
1323 "Sleep => pause with userLeaving=false");
Bryce Lee5daa3122017-04-19 10:40:42 -07001324
chaviwa1d68532018-03-16 15:33:43 -07001325 startPausingLocked(false, true, null, false);
David Stevens9440dc82017-03-16 19:00:20 -07001326 shouldSleep = false ;
1327 } else if (mPausingActivity != null) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001328 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001329 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
David Stevens9440dc82017-03-16 19:00:20 -07001330 shouldSleep = false;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001331 }
David Stevens9440dc82017-03-16 19:00:20 -07001332
1333 if (!shuttingDown) {
1334 if (containsActivityFromStack(mStackSupervisor.mStoppingActivities)) {
1335 // Still need to tell some activities to stop; can't sleep yet.
1336 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still need to stop "
1337 + mStackSupervisor.mStoppingActivities.size() + " activities");
1338
1339 mStackSupervisor.scheduleIdleLocked();
1340 shouldSleep = false;
1341 }
1342
1343 if (containsActivityFromStack(mStackSupervisor.mGoingToSleepActivities)) {
1344 // Still need to tell some activities to sleep; can't sleep yet.
1345 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still need to sleep "
1346 + mStackSupervisor.mGoingToSleepActivities.size() + " activities");
1347 shouldSleep = false;
1348 }
1349 }
1350
1351 if (shouldSleep) {
1352 goToSleep();
1353 }
1354
David Stevens18abd0e2017-08-17 14:55:47 -07001355 return shouldSleep;
Craig Mautner0eea92c2013-05-16 13:35:39 -07001356 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001357
David Stevens18abd0e2017-08-17 14:55:47 -07001358 void goToSleep() {
Andrii Kulianf4479ee2018-05-23 17:52:48 -07001359 // Ensure visibility without updating configuration, as activities are about to sleep.
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07001360 ensureActivitiesVisibleLocked(null /* starting */, 0 /* configChanges */,
1361 !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001362
Andrii Kulianf9949d52016-05-06 12:53:25 -07001363 // Make sure any paused or stopped but visible activities are now sleeping.
Craig Mautner0eea92c2013-05-16 13:35:39 -07001364 // This ensures that the activity's onStop() is called.
1365 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1366 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1367 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1368 final ActivityRecord r = activities.get(activityNdx);
Bryce Lee7ace3952018-02-16 14:34:32 -08001369 if (r.isState(STOPPING, STOPPED, PAUSED, PAUSING)) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001370 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001371 }
1372 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001373 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001374 }
Craig Mautner59c00972012-07-30 12:10:24 -07001375
David Stevens9440dc82017-03-16 19:00:20 -07001376 private boolean containsActivityFromStack(List<ActivityRecord> rs) {
1377 for (ActivityRecord r : rs) {
1378 if (r.getStack() == this) {
1379 return true;
1380 }
1381 }
1382 return false;
1383 }
1384
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001385 /**
Winson Chung4dabf232017-01-25 13:25:22 -08001386 * Schedule a pause timeout in case the app doesn't respond. We don't give it much time because
1387 * this directly impacts the responsiveness seen by the user.
1388 */
1389 private void schedulePauseTimeout(ActivityRecord r) {
1390 final Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1391 msg.obj = r;
1392 r.pauseTime = SystemClock.uptimeMillis();
1393 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
1394 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
1395 }
1396
1397 /**
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001398 * Start pausing the currently resumed activity. It is an error to call this if there
1399 * is already an activity being paused or there is no resumed activity.
1400 *
1401 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
1402 * @param uiSleeping True if this is happening with the user interface going to sleep (the
1403 * screen turning off).
Wale Ogunwale950faff2016-08-08 09:51:04 -07001404 * @param resuming The activity we are currently trying to resume or null if this is not being
1405 * called as part of resuming the top activity, so we shouldn't try to instigate
1406 * a resume here if not null.
Winson Chung6954fc92017-03-24 16:22:12 -07001407 * @param pauseImmediately True if the caller does not want to wait for the activity callback to
1408 * complete pausing.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001409 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
1410 * it to tell us when it is done.
1411 */
Wale Ogunwale950faff2016-08-08 09:51:04 -07001412 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping,
Winson Chung6954fc92017-03-24 16:22:12 -07001413 ActivityRecord resuming, boolean pauseImmediately) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001414 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001415 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
Bryce Lee7ace3952018-02-16 14:34:32 -08001416 + " state=" + mPausingActivity.getState());
David Stevens9440dc82017-03-16 19:00:20 -07001417 if (!shouldSleepActivities()) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001418 // Avoid recursion among check for sleep and complete pause during sleeping.
1419 // Because activity will be paused immediately after resume, just let pause
1420 // be completed by the order of activity paused from clients.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001421 completePauseLocked(false, resuming);
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001422 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001423 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001424 ActivityRecord prev = mResumedActivity;
Bryce Lee5daa3122017-04-19 10:40:42 -07001425
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001426 if (prev == null) {
Wale Ogunwale950faff2016-08-08 09:51:04 -07001427 if (resuming == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001428 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001429 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001430 }
1431 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001432 }
Craig Mautnerdf88d732014-01-27 09:21:32 -08001433
Andrii Kulianb1888aa2018-02-16 14:40:42 -08001434 if (prev == resuming) {
1435 Slog.wtf(TAG, "Trying to pause activity that is in process of being resumed");
1436 return false;
1437 }
1438
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001439 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001440 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001441 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001442 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -07001443 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
1444 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Bryce Lee7ace3952018-02-16 14:34:32 -08001445 prev.setState(PAUSING, "startPausingLocked");
Bryce Leeaf691c02017-03-20 14:20:22 -07001446 prev.getTask().touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001447 clearLaunchTime(prev);
Jorim Jaggie7d2b852017-08-28 17:55:15 +02001448
Vishnu Naircf235042018-11-02 13:27:00 -07001449 mStackSupervisor.getActivityMetricsLogger().stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001450
1451 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -08001452
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001453 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001454 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001455 try {
Wale Ogunwalec59b4f62017-11-30 11:05:43 -08001456 EventLogTags.writeAmPauseActivity(prev.userId, System.identityHashCode(prev),
1457 prev.shortComponentName, "userLeaving=" + userLeaving);
Jeff Sharkey5782da72013-04-25 14:32:30 -07001458 mService.updateUsageStats(prev, false);
Andrii Kulian446e8242017-10-26 15:17:29 -07001459
Bryce Leeb0f993f2018-03-02 15:38:01 -08001460 mService.getLifecycleManager().scheduleTransaction(prev.app.thread, prev.appToken,
Andrii Kulian9c5ea9c2017-12-07 09:31:01 -08001461 PauseActivityItem.obtain(prev.finishing, userLeaving,
Bryce Lee1d0d5142018-04-12 10:35:07 -07001462 prev.configChangeFlags, pauseImmediately));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001463 } catch (Exception e) {
1464 // Ignore exception, if process died other code will cleanup.
1465 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001466 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001467 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001468 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001469 }
1470 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001471 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001472 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001473 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001474 }
1475
1476 // If we are not going to sleep, we want to ensure the device is
1477 // awake until the next activity is started.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001478 if (!uiSleeping && !mService.isSleepingOrShuttingDownLocked()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001479 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001480 }
1481
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001482 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001483 // Have the window manager pause its key dispatching until the new
1484 // activity has started. If we're pausing the activity just because
1485 // the screen is being turned off and the UI is sleeping, don't interrupt
1486 // key dispatch; the same activity will pick it up again on wakeup.
1487 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001488 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001489 } else if (DEBUG_PAUSE) {
1490 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001491 }
1492
Winson Chung6954fc92017-03-24 16:22:12 -07001493 if (pauseImmediately) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001494 // If the caller said they don't want to wait for the pause, then complete
1495 // the pause now.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001496 completePauseLocked(false, resuming);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001497 return false;
1498
1499 } else {
Winson Chung4dabf232017-01-25 13:25:22 -08001500 schedulePauseTimeout(prev);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001501 return true;
1502 }
1503
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001504 } else {
1505 // This activity failed to schedule the
1506 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001507 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Wale Ogunwale950faff2016-08-08 09:51:04 -07001508 if (resuming == null) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001509 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001510 }
1511 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001512 }
1513 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001514
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001515 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001516 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1517 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001518
Craig Mautnerd2328952013-03-05 12:46:26 -08001519 final ActivityRecord r = isInStackLocked(token);
1520 if (r != null) {
1521 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1522 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001523 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001524 + (timeout ? " (due to timeout)" : " (pause complete)"));
Jorim Jaggife762342016-10-13 14:33:27 +02001525 mService.mWindowManager.deferSurfaceLayout();
1526 try {
Winson Chung3f103eb2017-04-12 21:53:59 -07001527 completePauseLocked(true /* resumeNext */, null /* resumingActivity */);
Jorim Jaggife762342016-10-13 14:33:27 +02001528 } finally {
1529 mService.mWindowManager.continueSurfaceLayout();
1530 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001531 return;
Craig Mautnerd2328952013-03-05 12:46:26 -08001532 } else {
1533 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1534 r.userId, System.identityHashCode(r), r.shortComponentName,
1535 mPausingActivity != null
1536 ? mPausingActivity.shortComponentName : "(none)");
Bryce Lee7ace3952018-02-16 14:34:32 -08001537 if (r.isState(PAUSING)) {
1538 r.setState(PAUSED, "activityPausedLocked");
riddle_hsu9caeef72015-10-20 16:34:05 +08001539 if (r.finishing) {
1540 if (DEBUG_PAUSE) Slog.v(TAG,
1541 "Executing finish of failed to pause activity: " + r);
Bryce Leef52974c2018-02-14 15:12:01 -08001542 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false,
1543 "activityPausedLocked");
riddle_hsu9caeef72015-10-20 16:34:05 +08001544 }
louis_chang047dfd42015-04-08 16:35:55 +08001545 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001546 }
1547 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001548 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001549 }
1550
Wale Ogunwale950faff2016-08-08 09:51:04 -07001551 private void completePauseLocked(boolean resumeNext, ActivityRecord resuming) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001552 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001553 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001554
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001555 if (prev != null) {
chaviw4ad54912018-05-30 11:05:44 -07001556 prev.setWillCloseOrEnterPip(false);
Bryce Lee7ace3952018-02-16 14:34:32 -08001557 final boolean wasStopping = prev.isState(STOPPING);
1558 prev.setState(PAUSED, "completePausedLocked");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001559 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001560 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Bryce Leef52974c2018-02-14 15:12:01 -08001561 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false,
1562 "completedPausedLocked");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001563 } else if (prev.app != null) {
Wale Ogunwaled8026642016-02-09 20:40:18 -08001564 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1565 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
Bryce Lee4a194382017-04-04 14:32:48 -07001566 if (mStackSupervisor.mActivitiesWaitingForVisibleActivity.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001567 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1568 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001569 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001570 if (prev.deferRelaunchUntilPaused) {
1571 // Complete the deferred relaunch that was waiting for pause to complete.
1572 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001573 prev.relaunchActivityLocked(false /* andResume */,
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001574 prev.preserveWindowOnDeferredRelaunch);
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001575 } else if (wasStopping) {
1576 // We are also stopping, the stop request must have gone soon after the pause.
1577 // We can't clobber it, because the stop confirmation will not be handled.
1578 // We don't need to schedule another stop, we only need to let it happen.
Bryce Lee7ace3952018-02-16 14:34:32 -08001579 prev.setState(STOPPING, "completePausedLocked");
David Stevens9440dc82017-03-16 19:00:20 -07001580 } else if (!prev.visible || shouldSleepOrShutDownActivities()) {
Wale Ogunwaleec950642017-04-25 07:44:21 -07001581 // Clear out any deferred client hide we might currently have.
1582 prev.setDeferHidingClient(false);
Jose Lima4b6c6692014-08-12 17:41:12 -07001583 // If we were visible then resumeTopActivities will release resources before
Wale Ogunwaleec950642017-04-25 07:44:21 -07001584 // stopping.
Winson Chung4dabf232017-01-25 13:25:22 -08001585 addToStopping(prev, true /* scheduleIdle */, false /* idleDelayed */);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001586 }
1587 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001588 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001589 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001590 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001591 // It is possible the activity was freezing the screen before it was paused.
1592 // In that case go ahead and remove the freeze this activity has on the screen
1593 // since it is no longer visible.
Wale Ogunwalee8524002016-09-13 16:34:57 -07001594 if (prev != null) {
1595 prev.stopFreezingScreenLocked(true /*force*/);
1596 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001597 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001598 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001599
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001600 if (resumeNext) {
1601 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
David Stevens9440dc82017-03-16 19:00:20 -07001602 if (!topStack.shouldSleepOrShutDownActivities()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001603 mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001604 } else {
David Stevens9440dc82017-03-16 19:00:20 -07001605 checkReadyForSleep();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001606 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001607 if (top == null || (prev != null && top != prev)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001608 // If there are no more activities available to run, do resume anyway to start
1609 // something. Also if the top activity on the stack is not the just paused
1610 // activity, we need to go ahead and resume it to ensure we complete an
1611 // in-flight app switch.
1612 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001613 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001614 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001615 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001616
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001617 if (prev != null) {
1618 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001619
Craig Mautner525f3d92013-05-07 14:01:50 -07001620 if (prev.app != null && prev.cpuTimeAtResume > 0
1621 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001622 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1623 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001624 if (diff > 0) {
1625 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1626 synchronized (bsi) {
1627 BatteryStatsImpl.Uid.Proc ps =
1628 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001629 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001630 if (ps != null) {
1631 ps.addForegroundTimeLocked(diff);
1632 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001633 }
1634 }
1635 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001636 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001637 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001638
Andrii Kulian8290f8f2016-06-30 17:51:32 -07001639 // Notify when the task stack has changed, but only if visibilities changed (not just
1640 // focus). Also if there is an active pinned stack - we always want to notify it about
1641 // task stack changes, because its positioning may depend on it.
1642 if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001643 || getDisplay().hasPinnedStack()) {
Yorke Leebd54c2a2016-10-25 13:49:23 -07001644 mService.mTaskChangeNotificationController.notifyTaskStackChanged();
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001645 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1646 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001647
Wale Ogunwale950faff2016-08-08 09:51:04 -07001648 mStackSupervisor.ensureActivitiesVisibleLocked(resuming, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001649 }
1650
Winson Chung4dabf232017-01-25 13:25:22 -08001651 void addToStopping(ActivityRecord r, boolean scheduleIdle, boolean idleDelayed) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001652 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1653 mStackSupervisor.mStoppingActivities.add(r);
Jorim Jaggi5db9ae42018-06-25 16:14:50 +02001654
1655 // Some activity is waiting for another activity to become visible before it's being
1656 // stopped, which means that we also want to wait with stopping this one to avoid
1657 // flickers.
1658 if (!mStackSupervisor.mActivitiesWaitingForVisibleActivity.isEmpty()
1659 && !mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(r)) {
1660 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "adding to waiting visible activity=" + r
1661 + " existing=" + mStackSupervisor.mActivitiesWaitingForVisibleActivity);
1662 mStackSupervisor.mActivitiesWaitingForVisibleActivity.add(r);
1663 }
Chong Zhang46b1ac62016-02-18 17:53:57 -08001664 }
1665
1666 // If we already have a few activities waiting to stop, then give up
1667 // on things going idle and start clearing them out. Or if r is the
1668 // last of activity of the last task the stack will be empty and must
1669 // be cleared immediately.
1670 boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1671 || (r.frontOfTask && mTaskHistory.size() <= 1);
Winson Chung4dabf232017-01-25 13:25:22 -08001672 if (scheduleIdle || forceIdle) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001673 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
Winson Chung4dabf232017-01-25 13:25:22 -08001674 + forceIdle + "immediate=" + !idleDelayed);
1675 if (!idleDelayed) {
1676 mStackSupervisor.scheduleIdleLocked();
1677 } else {
1678 mStackSupervisor.scheduleIdleTimeoutLocked(r);
1679 }
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001680 } else {
David Stevens9440dc82017-03-16 19:00:20 -07001681 checkReadyForSleep();
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001682 }
1683 }
1684
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001685 /**
1686 * Returns true if the stack is translucent and can have other contents visible behind it if
1687 * needed. A stack is considered translucent if it don't contain a visible or
1688 * starting (about to be visible) activity that is fullscreen (opaque).
1689 * @param starting The currently starting activity or null if there is none.
1690 */
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001691 @VisibleForTesting
Wale Ogunwale66e16852017-10-19 13:35:52 -07001692 boolean isStackTranslucent(ActivityRecord starting) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001693 if (!isAttached() || mForceHidden) {
1694 return true;
1695 }
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001696 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1697 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001698 final ArrayList<ActivityRecord> activities = task.mActivities;
1699 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1700 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001701
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001702 if (r.finishing) {
1703 // We don't factor in finishing activities when determining translucency since
1704 // they will be gone soon.
1705 continue;
1706 }
1707
Wale Ogunwale2cca8622017-12-11 08:40:13 -08001708 if (!r.visibleIgnoringKeyguard && r != starting) {
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001709 // Also ignore invisible activities that are not the currently starting
1710 // activity (about to be visible).
1711 continue;
1712 }
1713
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001714 if (r.fullscreen || r.hasWallpaper) {
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001715 // Stack isn't translucent if it has at least one fullscreen activity
1716 // that is visible.
1717 return false;
1718 }
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001719 }
1720 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001721 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001722 }
1723
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001724 boolean isTopStackOnDisplay() {
1725 return getDisplay().isTopStack(this);
1726 }
1727
Adrian Roosa6d6aab2018-04-19 18:58:22 +02001728 boolean isTopActivityVisible() {
1729 final ActivityRecord topActivity = getTopActivity();
1730 return topActivity != null && topActivity.visible;
1731 }
1732
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001733 /**
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001734 * Returns true if the stack should be visible.
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07001735 *
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001736 * @param starting The currently starting activity or null if there is none.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001737 */
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001738 boolean shouldBeVisible(ActivityRecord starting) {
Winson Chung47900652017-04-06 18:44:25 -07001739 if (!isAttached() || mForceHidden) {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001740 return false;
Jose Lima7ba71252014-04-30 12:59:27 -07001741 }
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001742 if (mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001743 return true;
Wale Ogunwale99db1862015-10-23 20:08:22 -07001744 }
1745
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001746 final ActivityRecord top = topRunningActivityLocked();
1747 if (top == null && isInStackLocked(starting) == null && !isTopStackOnDisplay()) {
1748 // Shouldn't be visible if you don't have any running activities, not starting one, and
1749 // not the top stack on display.
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001750 return false;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001751 }
1752
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001753 final ActivityDisplay display = getDisplay();
Wale Ogunwale8e923af2018-03-23 08:48:11 -07001754 boolean gotSplitScreenStack = false;
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001755 boolean gotOpaqueSplitScreenPrimary = false;
1756 boolean gotOpaqueSplitScreenSecondary = false;
Wale Ogunwale68278562017-09-23 17:13:55 -07001757 final int windowingMode = getWindowingMode();
Wale Ogunwale8e923af2018-03-23 08:48:11 -07001758 final boolean isAssistantType = isActivityTypeAssistant();
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001759 for (int i = display.getChildCount() - 1; i >= 0; --i) {
1760 final ActivityStack other = display.getChildAt(i);
1761 if (other == this) {
1762 // Should be visible if there is no other stack occluding it.
1763 return true;
1764 }
Wale Ogunwale68278562017-09-23 17:13:55 -07001765
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001766 final int otherWindowingMode = other.getWindowingMode();
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001767
1768 if (otherWindowingMode == WINDOWING_MODE_FULLSCREEN) {
Matthew Ng99b3cdc2018-05-01 14:24:38 -07001769 // In this case the home stack isn't resizeable even though we are in split-screen
1770 // mode. We still want the primary splitscreen stack to be visible as there will be
1771 // a slight hint of it in the status bar area above the non-resizeable home
Matthew Nga51dcaa2018-05-07 15:36:06 -07001772 // activity. In addition, if the fullscreen assistant is over primary splitscreen
1773 // stack, the stack should still be visible in the background as long as the recents
1774 // animation is running.
1775 final int activityType = other.getActivityType();
1776 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
1777 if (activityType == ACTIVITY_TYPE_HOME
1778 || (activityType == ACTIVITY_TYPE_ASSISTANT
1779 && mWindowManager.getRecentsAnimationController() != null)) {
1780 return true;
1781 }
Matthew Ng99b3cdc2018-05-01 14:24:38 -07001782 }
Wale Ogunwale66e16852017-10-19 13:35:52 -07001783 if (other.isStackTranslucent(starting)) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001784 // Can be visible behind a translucent fullscreen stack.
1785 continue;
1786 }
1787 return false;
1788 } else if (otherWindowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY
1789 && !gotOpaqueSplitScreenPrimary) {
Wale Ogunwale8e923af2018-03-23 08:48:11 -07001790 gotSplitScreenStack = true;
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001791 gotOpaqueSplitScreenPrimary =
Wale Ogunwale66e16852017-10-19 13:35:52 -07001792 !other.isStackTranslucent(starting);
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001793 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY
1794 && gotOpaqueSplitScreenPrimary) {
1795 // Can not be visible behind another opaque stack in split-screen-primary mode.
1796 return false;
1797 }
1798 } else if (otherWindowingMode == WINDOWING_MODE_SPLIT_SCREEN_SECONDARY
1799 && !gotOpaqueSplitScreenSecondary) {
Wale Ogunwale8e923af2018-03-23 08:48:11 -07001800 gotSplitScreenStack = true;
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001801 gotOpaqueSplitScreenSecondary =
Wale Ogunwale66e16852017-10-19 13:35:52 -07001802 !other.isStackTranslucent(starting);
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001803 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_SECONDARY
1804 && gotOpaqueSplitScreenSecondary) {
1805 // Can not be visible behind another opaque stack in split-screen-secondary mode.
1806 return false;
1807 }
1808 }
1809 if (gotOpaqueSplitScreenPrimary && gotOpaqueSplitScreenSecondary) {
1810 // Can not be visible if we are in split-screen windowing mode and both halves of
1811 // the screen are opaque.
1812 return false;
1813 }
Wale Ogunwale8e923af2018-03-23 08:48:11 -07001814 if (isAssistantType && gotSplitScreenStack) {
1815 // Assistant stack can't be visible behind split-screen. In addition to this not
1816 // making sense, it also works around an issue here we boost the z-order of the
1817 // assistant window surfaces in window manager whenever it is visible.
1818 return false;
1819 }
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07001820 }
1821
1822 // Well, nothing is stopping you from being visible...
1823 return true;
Wale Ogunwale68278562017-09-23 17:13:55 -07001824 }
1825
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001826 final int rankTaskLayers(int baseLayer) {
1827 int layer = 0;
1828 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1829 final TaskRecord task = mTaskHistory.get(taskNdx);
1830 ActivityRecord r = task.topRunningActivityLocked();
1831 if (r == null || r.finishing || !r.visible) {
1832 task.mLayerRank = -1;
1833 } else {
1834 task.mLayerRank = baseLayer + layer++;
1835 }
1836 }
1837 return layer;
1838 }
1839
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001840 /**
Andrii Kulianf4479ee2018-05-23 17:52:48 -07001841 * Make sure that all activities that need to be visible in the stack (that is, they
1842 * currently can be seen by the user) actually are and update their configuration.
1843 */
1844 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1845 boolean preserveWindows) {
1846 ensureActivitiesVisibleLocked(starting, configChanges, preserveWindows,
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07001847 true /* notifyClients */);
Andrii Kulianf4479ee2018-05-23 17:52:48 -07001848 }
1849
1850 /**
1851 * Ensure visibility with an option to also update the configuration of visible activities.
1852 * @see #ensureActivitiesVisibleLocked(ActivityRecord, int, boolean)
1853 * @see ActivityStackSupervisor#ensureActivitiesVisibleLocked(ActivityRecord, int, boolean)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001854 */
Wale Ogunwale66e16852017-10-19 13:35:52 -07001855 // TODO: Should be re-worked based on the fact that each task as a stack in most cases.
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001856 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07001857 boolean preserveWindows, boolean notifyClients) {
Jorim Jaggife762342016-10-13 14:33:27 +02001858 mTopActivityOccludesKeyguard = false;
1859 mTopDismissingKeyguardActivity = null;
Bryce Lee2a3cc462017-10-27 10:57:35 -07001860 mStackSupervisor.getKeyguardController().beginActivityVisibilityUpdate();
Jorim Jaggife762342016-10-13 14:33:27 +02001861 try {
1862 ActivityRecord top = topRunningActivityLocked();
1863 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
1864 + " configChanges=0x" + Integer.toHexString(configChanges));
1865 if (top != null) {
1866 checkTranslucentActivityWaiting(top);
1867 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001868
Jorim Jaggife762342016-10-13 14:33:27 +02001869 // If the top activity is not fullscreen, then we need to
1870 // make sure any activities under it are now visible.
1871 boolean aboveTop = top != null;
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001872 final boolean stackShouldBeVisible = shouldBeVisible(starting);
1873 boolean behindFullscreenActivity = !stackShouldBeVisible;
Jorim Jaggife762342016-10-13 14:33:27 +02001874 boolean resumeNextActivity = mStackSupervisor.isFocusedStack(this)
1875 && (isInStackLocked(starting) == null);
Wale Ogunwale86dde2b2018-01-18 06:15:45 -08001876 final boolean isTopNotPinnedStack =
1877 isAttached() && getDisplay().isTopNotPinnedStack(this);
Jorim Jaggife762342016-10-13 14:33:27 +02001878 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1879 final TaskRecord task = mTaskHistory.get(taskNdx);
1880 final ArrayList<ActivityRecord> activities = task.mActivities;
1881 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1882 final ActivityRecord r = activities.get(activityNdx);
1883 if (r.finishing) {
Jorim Jaggife762342016-10-13 14:33:27 +02001884 continue;
Chong Zhang22bc8512016-04-07 13:47:18 -07001885 }
Jorim Jaggife762342016-10-13 14:33:27 +02001886 final boolean isTop = r == top;
1887 if (aboveTop && !isTop) {
1888 continue;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001889 }
Jorim Jaggife762342016-10-13 14:33:27 +02001890 aboveTop = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001891
Jorim Jaggife762342016-10-13 14:33:27 +02001892 // Check whether activity should be visible without Keyguard influence
Jorim Jaggi241ae102016-11-02 21:57:33 -07001893 final boolean visibleIgnoringKeyguard = r.shouldBeVisibleIgnoringKeyguard(
Jorim Jaggi241ae102016-11-02 21:57:33 -07001894 behindFullscreenActivity);
1895 r.visibleIgnoringKeyguard = visibleIgnoringKeyguard;
Jorim Jaggife762342016-10-13 14:33:27 +02001896
1897 // Now check whether it's really visible depending on Keyguard state.
Jorim Jaggi241ae102016-11-02 21:57:33 -07001898 final boolean reallyVisible = checkKeyguardVisibility(r,
chaviw2c500982018-01-04 17:05:05 -08001899 visibleIgnoringKeyguard, isTop && isTopNotPinnedStack);
Jorim Jaggi241ae102016-11-02 21:57:33 -07001900 if (visibleIgnoringKeyguard) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001901 behindFullscreenActivity = updateBehindFullscreen(!stackShouldBeVisible,
Wale Ogunwale66e16852017-10-19 13:35:52 -07001902 behindFullscreenActivity, r);
Jorim Jaggife762342016-10-13 14:33:27 +02001903 }
1904 if (reallyVisible) {
1905 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
Bryce Lee7ace3952018-02-16 14:34:32 -08001906 + " finishing=" + r.finishing + " state=" + r.getState());
Jorim Jaggife762342016-10-13 14:33:27 +02001907 // First: if this is not the current activity being started, make
1908 // sure it matches the current configuration.
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07001909 if (r != starting && notifyClients) {
Wale Ogunwaleb6d75f32018-02-22 20:44:56 -08001910 r.ensureActivityConfiguration(0 /* globalChanges */, preserveWindows,
1911 true /* ignoreStopState */);
Jorim Jaggife762342016-10-13 14:33:27 +02001912 }
1913
1914 if (r.app == null || r.app.thread == null) {
1915 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
1916 resumeNextActivity, r)) {
1917 if (activityNdx >= activities.size()) {
1918 // Record may be removed if its process needs to restart.
1919 activityNdx = activities.size() - 1;
1920 } else {
1921 resumeNextActivity = false;
1922 }
1923 }
1924 } else if (r.visible) {
1925 // If this activity is already visible, then there is nothing to do here.
1926 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1927 "Skipping: already visible at " + r);
1928
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07001929 if (r.mClientVisibilityDeferred && notifyClients) {
1930 r.makeClientVisible();
1931 }
1932
Jorim Jaggife762342016-10-13 14:33:27 +02001933 if (r.handleAlreadyVisible()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001934 resumeNextActivity = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001935 }
Jorim Jaggife762342016-10-13 14:33:27 +02001936 } else {
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07001937 r.makeVisibleIfNeeded(starting, notifyClients);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001938 }
Jorim Jaggife762342016-10-13 14:33:27 +02001939 // Aggregate current change flags.
1940 configChanges |= r.configChangeFlags;
Craig Mautnerbb742462014-07-07 15:28:55 -07001941 } else {
Jorim Jaggife762342016-10-13 14:33:27 +02001942 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
Bryce Lee7ace3952018-02-16 14:34:32 -08001943 + " finishing=" + r.finishing + " state=" + r.getState()
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001944 + " stackShouldBeVisible=" + stackShouldBeVisible
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07001945 + " behindFullscreenActivity=" + behindFullscreenActivity
1946 + " mLaunchTaskBehind=" + r.mLaunchTaskBehind);
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001947 makeInvisible(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001948 }
Jorim Jaggife762342016-10-13 14:33:27 +02001949 }
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001950 final int windowingMode = getWindowingMode();
1951 if (windowingMode == WINDOWING_MODE_FREEFORM) {
Jorim Jaggife762342016-10-13 14:33:27 +02001952 // The visibility of tasks and the activities they contain in freeform stack are
1953 // determined individually unlike other stacks where the visibility or fullscreen
1954 // status of an activity in a previous task affects other.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001955 behindFullscreenActivity = !stackShouldBeVisible;
Wale Ogunwale68278562017-09-23 17:13:55 -07001956 } else if (isActivityTypeHome()) {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001957 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001958 + " stackShouldBeVisible=" + stackShouldBeVisible
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001959 + " behindFullscreenActivity=" + behindFullscreenActivity);
1960 // No other task in the home stack should be visible behind the home activity.
1961 // Home activities is usually a translucent activity with the wallpaper behind
1962 // them. However, when they don't have the wallpaper behind them, we want to
1963 // show activities in the next application stack behind them vs. another
1964 // task in the home stack like recents.
1965 behindFullscreenActivity = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001966 }
1967 }
Wale Ogunwale74e26592016-02-05 11:48:37 -08001968
Jorim Jaggife762342016-10-13 14:33:27 +02001969 if (mTranslucentActivityWaiting != null &&
1970 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1971 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1972 notifyActivityDrawnLocked(null);
1973 }
1974 } finally {
Bryce Lee2a3cc462017-10-27 10:57:35 -07001975 mStackSupervisor.getKeyguardController().endActivityVisibilityUpdate();
Jorim Jaggife762342016-10-13 14:33:27 +02001976 }
1977 }
1978
Jorim Jaggi8b702ed2017-01-20 16:59:03 +01001979 void addStartingWindowsForVisibleActivities(boolean taskSwitch) {
1980 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1981 mTaskHistory.get(taskNdx).addStartingWindowsForVisibleActivities(taskSwitch);
1982 }
1983 }
1984
Jorim Jaggife762342016-10-13 14:33:27 +02001985 /**
1986 * @return true if the top visible activity wants to occlude the Keyguard, false otherwise
1987 */
1988 boolean topActivityOccludesKeyguard() {
1989 return mTopActivityOccludesKeyguard;
1990 }
1991
1992 /**
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001993 * Returns true if this stack should be resized to match the bounds specified by
1994 * {@link ActivityOptions#setLaunchBounds} when launching an activity into the stack.
1995 */
1996 boolean resizeStackWithLaunchBounds() {
1997 return inPinnedWindowingMode();
1998 }
1999
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002000 @Override
2001 public boolean supportsSplitScreenWindowingMode() {
2002 final TaskRecord topTask = topTask();
2003 return super.supportsSplitScreenWindowingMode()
2004 && (topTask == null || topTask.supportsSplitScreenWindowingMode());
2005 }
2006
Wale Ogunwale2b07da82017-11-08 14:52:40 -08002007 /** @return True if the resizing of the primary-split-screen stack affects this stack size. */
2008 boolean affectedBySplitScreenResize() {
2009 if (!supportsSplitScreenWindowingMode()) {
2010 return false;
2011 }
2012 final int windowingMode = getWindowingMode();
2013 return windowingMode != WINDOWING_MODE_FREEFORM && windowingMode != WINDOWING_MODE_PINNED;
2014 }
2015
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002016 /**
Jorim Jaggife762342016-10-13 14:33:27 +02002017 * @return the top most visible activity that wants to dismiss Keyguard
2018 */
2019 ActivityRecord getTopDismissingKeyguardActivity() {
2020 return mTopDismissingKeyguardActivity;
2021 }
2022
2023 /**
2024 * Checks whether {@param r} should be visible depending on Keyguard state and updates
2025 * {@link #mTopActivityOccludesKeyguard} and {@link #mTopDismissingKeyguardActivity} if
2026 * necessary.
2027 *
2028 * @return true if {@param r} is visible taken Keyguard state into account, false otherwise
2029 */
Wale Ogunwale2cca8622017-12-11 08:40:13 -08002030 boolean checkKeyguardVisibility(ActivityRecord r, boolean shouldBeVisible, boolean isTop) {
Lucas Dupin47a65c72018-02-15 14:16:18 -08002031 final int displayId = mDisplayId != INVALID_DISPLAY ? mDisplayId : DEFAULT_DISPLAY;
2032 final boolean keyguardOrAodShowing = mStackSupervisor.getKeyguardController()
2033 .isKeyguardOrAodShowing(displayId);
Bryce Lee2a3cc462017-10-27 10:57:35 -07002034 final boolean keyguardLocked = mStackSupervisor.getKeyguardController().isKeyguardLocked();
Wale Ogunwale2cca8622017-12-11 08:40:13 -08002035 final boolean showWhenLocked = r.canShowWhenLocked();
Jorim Jaggie69c9312016-10-31 18:24:38 -07002036 final boolean dismissKeyguard = r.hasDismissKeyguardWindows();
Jorim Jaggife762342016-10-13 14:33:27 +02002037 if (shouldBeVisible) {
Jorim Jaggie69c9312016-10-31 18:24:38 -07002038 if (dismissKeyguard && mTopDismissingKeyguardActivity == null) {
Jorim Jaggife762342016-10-13 14:33:27 +02002039 mTopDismissingKeyguardActivity = r;
2040 }
2041
2042 // Only the top activity may control occluded, as we can't occlude the Keyguard if the
2043 // top app doesn't want to occlude it.
2044 if (isTop) {
2045 mTopActivityOccludesKeyguard |= showWhenLocked;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07002046 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002047
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002048 final boolean canShowWithKeyguard = canShowWithInsecureKeyguard()
Bryce Lee2a3cc462017-10-27 10:57:35 -07002049 && mStackSupervisor.getKeyguardController().canDismissKeyguard();
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002050 if (canShowWithKeyguard) {
2051 return true;
2052 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002053 }
Lucas Dupin47a65c72018-02-15 14:16:18 -08002054 if (keyguardOrAodShowing) {
Jorim Jaggie69c9312016-10-31 18:24:38 -07002055 // If keyguard is showing, nothing is visible, except if we are able to dismiss Keyguard
Lucas Dupin47a65c72018-02-15 14:16:18 -08002056 // right away and AOD isn't visible.
Bryce Lee2a3cc462017-10-27 10:57:35 -07002057 return shouldBeVisible && mStackSupervisor.getKeyguardController()
Jorim Jaggi07961872016-11-23 11:28:57 +01002058 .canShowActivityWhileKeyguardShowing(r, dismissKeyguard);
Jorim Jaggife762342016-10-13 14:33:27 +02002059 } else if (keyguardLocked) {
Bryce Lee2a3cc462017-10-27 10:57:35 -07002060 return shouldBeVisible && mStackSupervisor.getKeyguardController().canShowWhileOccluded(
Jorim Jaggi07961872016-11-23 11:28:57 +01002061 dismissKeyguard, showWhenLocked);
Jorim Jaggife762342016-10-13 14:33:27 +02002062 } else {
2063 return shouldBeVisible;
Craig Mautnereb8abf72014-07-02 15:04:09 -07002064 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002065 }
Craig Mautner58547802013-03-05 08:23:53 -08002066
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002067 /**
2068 * Check if the display to which this stack is attached has
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002069 * {@link Display#FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD} applied.
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002070 */
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002071 private boolean canShowWithInsecureKeyguard() {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002072 final ActivityDisplay activityDisplay = getDisplay();
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002073 if (activityDisplay == null) {
2074 throw new IllegalStateException("Stack is not attached to any display, stackId="
2075 + mStackId);
2076 }
2077
2078 final int flags = activityDisplay.mDisplay.getFlags();
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002079 return (flags & FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002080 }
2081
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002082 private void checkTranslucentActivityWaiting(ActivityRecord top) {
2083 if (mTranslucentActivityWaiting != top) {
2084 mUndrawnActivitiesBelowTopTranslucent.clear();
2085 if (mTranslucentActivityWaiting != null) {
2086 // Call the callback with a timeout indication.
2087 notifyActivityDrawnLocked(null);
2088 mTranslucentActivityWaiting = null;
2089 }
2090 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2091 }
2092 }
2093
2094 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Wale Ogunwaled046a012015-12-24 13:05:59 -08002095 boolean isTop, boolean andResume, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002096 // We need to make sure the app is running if it's the top, or it is just made visible from
2097 // invisible. If the app is already visible, it must have died while it was visible. In this
2098 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
2099 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002100 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002101 // This activity needs to be visible, but isn't even running...
2102 // get it started and resume if no other stack in this stack is resumed.
2103 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
2104 if (r != starting) {
2105 r.startFreezingScreenLocked(r.app, configChanges);
2106 }
2107 if (!r.visible || r.mLaunchTaskBehind) {
2108 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002109 r.setVisible(true);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002110 }
2111 if (r != starting) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08002112 mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002113 return true;
2114 }
2115 }
2116 return false;
2117 }
2118
Wale Ogunwalec981ad52017-06-13 11:40:06 -07002119 // TODO: Should probably be moved into ActivityRecord.
2120 private void makeInvisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002121 if (!r.visible) {
2122 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
2123 return;
2124 }
2125 // Now for any activities that aren't visible to the user, make sure they no longer are
2126 // keeping the screen frozen.
Bryce Lee7ace3952018-02-16 14:34:32 -08002127 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.getState());
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002128 try {
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07002129 final boolean canEnterPictureInPicture = r.checkEnterPictureInPictureState(
Winson Chung298f95b2017-08-10 15:57:18 -07002130 "makeInvisible", true /* beforeStopping */);
Wale Ogunwale08488a62017-09-05 12:37:03 -07002131 // Defer telling the client it is hidden if it can enter Pip and isn't current paused,
2132 // stopped or stopping. This gives it a chance to enter Pip in onPause().
2133 // TODO: There is still a question surrounding activities in multi-window mode that want
2134 // to enter Pip after they are paused, but are still visible. I they should be okay to
2135 // enter Pip in those cases, but not "auto-Pip" which is what this condition covers and
2136 // the current contract for "auto-Pip" is that the app should enter it before onPause
2137 // returns. Just need to confirm this reasoning makes sense.
Wale Ogunwale89973222017-04-23 18:39:45 -07002138 final boolean deferHidingClient = canEnterPictureInPicture
Bryce Lee7ace3952018-02-16 14:34:32 -08002139 && !r.isState(STOPPING, STOPPED, PAUSED);
Wale Ogunwaleec950642017-04-25 07:44:21 -07002140 r.setDeferHidingClient(deferHidingClient);
2141 r.setVisible(false);
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07002142
Bryce Lee7ace3952018-02-16 14:34:32 -08002143 switch (r.getState()) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002144 case STOPPING:
2145 case STOPPED:
2146 if (r.app != null && r.app.thread != null) {
2147 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2148 "Scheduling invisibility: " + r);
Bryce Leeb0f993f2018-03-02 15:38:01 -08002149 mService.getLifecycleManager().scheduleTransaction(r.app.thread, r.appToken,
Andrii Kulian9c5ea9c2017-12-07 09:31:01 -08002150 WindowVisibilityItem.obtain(false /* showWindow */));
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002151 }
Winson Chungc2baac02017-01-11 13:34:47 -08002152
2153 // Reset the flag indicating that an app can enter picture-in-picture once the
2154 // activity is hidden
Winson Chungf7e03e12017-08-22 11:32:16 -07002155 r.supportsEnterPipOnTaskSwitch = false;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002156 break;
2157
2158 case INITIALIZING:
2159 case RESUMED:
2160 case PAUSING:
2161 case PAUSED:
Wale Ogunwalec981ad52017-06-13 11:40:06 -07002162 addToStopping(r, true /* scheduleIdle */,
2163 canEnterPictureInPicture /* idleDelayed */);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002164 break;
2165
2166 default:
2167 break;
2168 }
2169 } catch (Exception e) {
2170 // Just skip on any failure; we'll make it visible when it next restarts.
2171 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
2172 }
2173 }
2174
2175 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
Wale Ogunwale66e16852017-10-19 13:35:52 -07002176 ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002177 if (r.fullscreen) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002178 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwale673cbd22016-01-30 18:30:55 -08002179 + " stackInvisible=" + stackInvisible
2180 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08002181 // At this point, nothing else needs to be shown in this task.
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002182 behindFullscreenActivity = true;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002183 }
2184 return behindFullscreenActivity;
2185 }
2186
Todd Kennedyaab56db2015-01-30 09:39:53 -08002187 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07002188 mTranslucentActivityWaiting = r;
2189 mUndrawnActivitiesBelowTopTranslucent.clear();
2190 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
2191 }
2192
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07002193 void clearOtherAppTimeTrackers(AppTimeTracker except) {
2194 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2195 final TaskRecord task = mTaskHistory.get(taskNdx);
2196 final ArrayList<ActivityRecord> activities = task.mActivities;
2197 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2198 final ActivityRecord r = activities.get(activityNdx);
2199 if ( r.appTimeTracker != except) {
2200 r.appTimeTracker = null;
2201 }
2202 }
2203 }
2204 }
2205
Craig Mautner5eda9b32013-07-02 11:58:16 -07002206 /**
2207 * Called as activities below the top translucent activity are redrawn. When the last one is
2208 * redrawn notify the top activity by calling
2209 * {@link Activity#onTranslucentConversionComplete}.
2210 *
2211 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
2212 * occurred and the activity will be notified immediately.
2213 */
2214 void notifyActivityDrawnLocked(ActivityRecord r) {
2215 if ((r == null)
2216 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
2217 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
2218 // The last undrawn activity below the top has just been drawn. If there is an
2219 // opaque activity at the top, notify it that it can become translucent safely now.
2220 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
2221 mTranslucentActivityWaiting = null;
2222 mUndrawnActivitiesBelowTopTranslucent.clear();
2223 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2224
Craig Mautner71dd1b62014-02-18 15:48:52 -08002225 if (waitingActivity != null) {
2226 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
2227 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
2228 try {
2229 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
2230 waitingActivity.appToken, r != null);
2231 } catch (RemoteException e) {
2232 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07002233 }
2234 }
2235 }
2236 }
2237
Craig Mautnera61bc652013-10-28 15:43:18 -07002238 /** If any activities below the top running one are in the INITIALIZING state and they have a
2239 * starting window displayed then remove that starting window. It is possible that the activity
2240 * in this state will never resumed in which case that starting window will be orphaned. */
2241 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002242 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07002243 boolean aboveTop = true;
Wale Ogunwale68741142016-05-17 09:40:02 -07002244 // We don't want to clear starting window for activities that aren't behind fullscreen
2245 // activities as we need to display their starting window until they are done initializing.
2246 boolean behindFullscreenActivity = false;
Wale Ogunwale98742a52016-07-12 10:29:12 -07002247
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002248 if (!shouldBeVisible(null)) {
Wale Ogunwale98742a52016-07-12 10:29:12 -07002249 // The stack is not visible, so no activity in it should be displaying a starting
2250 // window. Mark all activities below top and behind fullscreen.
2251 aboveTop = false;
2252 behindFullscreenActivity = true;
2253 }
2254
Craig Mautnera61bc652013-10-28 15:43:18 -07002255 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2256 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2257 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2258 final ActivityRecord r = activities.get(activityNdx);
2259 if (aboveTop) {
2260 if (r == topActivity) {
2261 aboveTop = false;
2262 }
Wale Ogunwale68741142016-05-17 09:40:02 -07002263 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002264 continue;
2265 }
2266
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002267 r.removeOrphanedStartingWindow(behindFullscreenActivity);
Wale Ogunwale68741142016-05-17 09:40:02 -07002268 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002269 }
2270 }
2271 }
2272
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002273 /**
2274 * Ensure that the top activity in the stack is resumed.
2275 *
2276 * @param prev The previously resumed activity, for when in the process
2277 * of pausing; can be null to call from elsewhere.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002278 * @param options Activity options.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002279 *
2280 * @return Returns true if something is being resumed, or false if
2281 * nothing happened.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002282 *
2283 * NOTE: It is not safe to call this method directly as it can cause an activity in a
2284 * non-focused stack to be resumed.
2285 * Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
2286 * right activity for the current system state.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002287 */
Andreas Gampea36dc622018-02-05 17:19:22 -08002288 @GuardedBy("mService")
Wale Ogunwaled046a012015-12-24 13:05:59 -08002289 boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08002290 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07002291 // Don't even start recursing.
2292 return false;
2293 }
2294
2295 boolean result = false;
2296 try {
2297 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08002298 mStackSupervisor.inResumeTopActivity = true;
Bryce Lee69ad8182017-09-28 10:01:36 -07002299 result = resumeTopActivityInnerLocked(prev, options);
Bryce Leefc7cedd2018-03-01 15:38:07 -08002300
2301 // When resuming the top activity, it may be necessary to pause the top activity (for
2302 // example, returning to the lock screen. We suppress the normal pause logic in
2303 // {@link #resumeTopActivityUncheckedLocked}, since the top activity is resumed at the
2304 // end. We call the {@link ActivityStackSupervisor#checkReadyForSleepLocked} again here
2305 // to ensure any necessary pause logic occurs. In the case where the Activity will be
2306 // shown regardless of the lock screen, the call to
2307 // {@link ActivityStackSupervisor#checkReadyForSleepLocked} is skipped.
2308 final ActivityRecord next = topRunningActivityLocked(true /* focusableOnly */);
2309 if (next == null || !next.canTurnScreenOn()) {
2310 checkReadyForSleep();
2311 }
Craig Mautner544efa72014-09-04 16:41:20 -07002312 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08002313 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07002314 }
chaviw59b98852017-06-13 12:05:44 -07002315
Craig Mautner544efa72014-09-04 16:41:20 -07002316 return result;
2317 }
2318
Bryce Leec4ab62a2018-03-05 14:19:26 -08002319 /**
2320 * Returns the currently resumed activity.
2321 */
2322 protected ActivityRecord getResumedActivity() {
2323 return mResumedActivity;
2324 }
2325
Bryce Lee84730a02018-04-03 14:10:04 -07002326 private void setResumedActivity(ActivityRecord r, String reason) {
2327 if (mResumedActivity == r) {
2328 return;
2329 }
Bryce Leec4ab62a2018-03-05 14:19:26 -08002330
Bryce Lee84730a02018-04-03 14:10:04 -07002331 if (DEBUG_STACK) Slog.d(TAG_STACK, "setResumedActivity stack:" + this + " + from: "
2332 + mResumedActivity + " to:" + r + " reason:" + reason);
2333 mResumedActivity = r;
Chong Zhang6cda19c2016-06-14 19:07:56 -07002334 }
2335
Andreas Gampea36dc622018-02-05 17:19:22 -08002336 @GuardedBy("mService")
Chong Zhang280d3322015-11-03 17:27:26 -08002337 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07002338 if (!mService.mBooting && !mService.mBooted) {
2339 // Not ready yet!
2340 return false;
2341 }
2342
Winson Chung3f103eb2017-04-12 21:53:59 -07002343 // Find the next top-most activity to resume in this stack that is not finishing and is
2344 // focusable. If it is not focusable, we will fall into the case below to resume the
2345 // top activity in the next focusable task.
2346 final ActivityRecord next = topRunningActivityLocked(true /* focusableOnly */);
Andrii Kulian7fc22812016-12-28 13:04:11 -08002347
2348 final boolean hasRunningActivity = next != null;
2349
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07002350 // TODO: Maybe this entire condition can get removed?
Wale Ogunwale66e16852017-10-19 13:35:52 -07002351 if (hasRunningActivity && !isAttached()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002352 return false;
2353 }
2354
Wale Ogunwale2be760d2016-02-17 11:16:10 -08002355 mStackSupervisor.cancelInitializingActivities();
Craig Mautnera61bc652013-10-28 15:43:18 -07002356
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002357 // Remember how we'll process this pause/resume situation, and ensure
2358 // that the state is reset however we wind up proceeding.
Wale Ogunwalec59b4f62017-11-30 11:05:43 -08002359 boolean userLeaving = mStackSupervisor.mUserLeaving;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002360 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002361
Andrii Kulian7fc22812016-12-28 13:04:11 -08002362 if (!hasRunningActivity) {
2363 // There are no activities left in the stack, let's look somewhere else.
2364 return resumeTopActivityInNextFocusableStack(prev, options, "noMoreActivities");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002365 }
2366
2367 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08002368
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002369 // If the top activity is the resumed one, nothing to do.
Bryce Lee7ace3952018-02-16 14:34:32 -08002370 if (mResumedActivity == next && next.isState(RESUMED)
2371 && mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002372 // Make sure we have executed any pending transitions, since there
2373 // should be nothing left to do at this point.
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002374 executeAppTransition(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002375 if (DEBUG_STATES) Slog.d(TAG_STATES,
2376 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07002377 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002378 return false;
2379 }
2380
2381 // If we are sleeping, and there is no resumed activity, and the top
2382 // activity is paused, well that is the state we want.
David Stevens9440dc82017-03-16 19:00:20 -07002383 if (shouldSleepOrShutDownActivities()
p13451dbad2872012-04-18 11:39:23 +09002384 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07002385 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002386 // Make sure we have executed any pending transitions, since there
2387 // should be nothing left to do at this point.
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002388 executeAppTransition(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002389 if (DEBUG_STATES) Slog.d(TAG_STATES,
2390 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07002391 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002392 return false;
2393 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002394
2395 // Make sure that the user who owns this activity is started. If not,
2396 // we will just leave it as is because someone should be bringing
2397 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07002398 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002399 Slog.w(TAG, "Skipping resume of top activity " + next
2400 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07002401 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002402 return false;
2403 }
2404
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002405 // The activity may be waiting for stop, but that is no longer
2406 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002407 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002408 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002409 next.sleeping = false;
Bryce Lee4a194382017-04-04 14:32:48 -07002410 mStackSupervisor.mActivitiesWaitingForVisibleActivity.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002411
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002412 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002413
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002414 // If we are currently pausing an activity, then don't do anything until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07002415 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002416 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002417 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07002418 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002419 return false;
2420 }
2421
Dianne Hackborn3d07c942015-03-13 18:02:54 -07002422 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2423
Wale Ogunwale89973222017-04-23 18:39:45 -07002424 boolean lastResumedCanPip = false;
chaviw4ad54912018-05-30 11:05:44 -07002425 ActivityRecord lastResumed = null;
Wale Ogunwale89973222017-04-23 18:39:45 -07002426 final ActivityStack lastFocusedStack = mStackSupervisor.getLastStack();
2427 if (lastFocusedStack != null && lastFocusedStack != this) {
2428 // So, why aren't we using prev here??? See the param comment on the method. prev doesn't
2429 // represent the last resumed activity. However, the last focus stack does if it isn't null.
chaviw4ad54912018-05-30 11:05:44 -07002430 lastResumed = lastFocusedStack.mResumedActivity;
Wale Ogunwalec59b4f62017-11-30 11:05:43 -08002431 if (userLeaving && inMultiWindowMode() && lastFocusedStack.shouldBeVisible(next)) {
2432 // The user isn't leaving if this stack is the multi-window mode and the last
2433 // focused stack should still be visible.
2434 if(DEBUG_USER_LEAVING) Slog.i(TAG_USER_LEAVING, "Overriding userLeaving to false"
2435 + " next=" + next + " lastResumed=" + lastResumed);
2436 userLeaving = false;
2437 }
Wale Ogunwale89973222017-04-23 18:39:45 -07002438 lastResumedCanPip = lastResumed != null && lastResumed.checkEnterPictureInPictureState(
Winson Chung298f95b2017-08-10 15:57:18 -07002439 "resumeTopActivity", userLeaving /* beforeStopping */);
Wale Ogunwale89973222017-04-23 18:39:45 -07002440 }
Winson Chungc2baac02017-01-11 13:34:47 -08002441 // If the flag RESUME_WHILE_PAUSING is set, then continue to schedule the previous activity
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07002442 // to be paused, while at the same time resuming the new resume activity only if the
2443 // previous activity can't go into Pip since we want to give Pip activities a chance to
2444 // enter Pip before resuming the next activity.
Wale Ogunwale89973222017-04-23 18:39:45 -07002445 final boolean resumeWhilePausing = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0
2446 && !lastResumedCanPip;
2447
Winson Chungc2baac02017-01-11 13:34:47 -08002448 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, next, false);
Craig Mautnereb957862013-04-24 15:34:32 -07002449 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002450 if (DEBUG_STATES) Slog.d(TAG_STATES,
2451 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Winson Chungc2baac02017-01-11 13:34:47 -08002452 pausing |= startPausingLocked(userLeaving, false, next, false);
Craig Mautnereb957862013-04-24 15:34:32 -07002453 }
Winson Chungc2baac02017-01-11 13:34:47 -08002454 if (pausing && !resumeWhilePausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002455 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002456 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002457 // At this point we want to put the upcoming activity's process
2458 // at the top of the LRU list, since we know we will be needing it
2459 // very soon and it would be a waste to let it get killed if it
2460 // happens to be sitting towards the end.
2461 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07002462 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002463 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002464 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
chaviw4ad54912018-05-30 11:05:44 -07002465 if (lastResumed != null) {
2466 lastResumed.setWillCloseOrEnterPip(true);
2467 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002468 return true;
Bryce Lee7ace3952018-02-16 14:34:32 -08002469 } else if (mResumedActivity == next && next.isState(RESUMED)
2470 && mStackSupervisor.allResumedActivitiesComplete()) {
Wale Ogunwalecac5c322016-05-23 10:56:33 -07002471 // It is possible for the activity to be resumed when we paused back stacks above if the
2472 // next activity doesn't have to wait for pause to complete.
2473 // So, nothing else to-do except:
2474 // Make sure we have executed any pending transitions, since there
2475 // should be nothing left to do at this point.
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002476 executeAppTransition(options);
Wale Ogunwalecac5c322016-05-23 10:56:33 -07002477 if (DEBUG_STATES) Slog.d(TAG_STATES,
2478 "resumeTopActivityLocked: Top activity resumed (dontWaitForPause) " + next);
2479 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2480 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002481 }
2482
Christopher Tated3f175c2012-06-14 14:16:54 -07002483 // If the most recent activity was noHistory but was only stopped rather
2484 // than stopped+finished because the device went to sleep, we need to make
2485 // sure to finish it as we're making a new activity topmost.
David Stevens9440dc82017-03-16 19:00:20 -07002486 if (shouldSleepActivities() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07002487 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002488 if (DEBUG_STATES) Slog.d(TAG_STATES,
2489 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07002490 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08002491 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07002492 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07002493 }
2494
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002495 if (prev != null && prev != next) {
Bryce Lee4a194382017-04-04 14:32:48 -07002496 if (!mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(prev)
Craig Mautner8c14c152015-01-15 17:32:07 -08002497 && next != null && !next.nowVisible) {
Bryce Lee4a194382017-04-04 14:32:48 -07002498 mStackSupervisor.mActivitiesWaitingForVisibleActivity.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002499 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2500 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002501 } else {
2502 // The next activity is already visible, so hide the previous
2503 // activity's windows right now so we can show the new one ASAP.
2504 // We only do this if the previous is finishing, which should mean
2505 // it is on top of the one being resumed so hiding it quickly
2506 // is good. Otherwise, we want to do the normal route of allowing
2507 // the resumed activity to be shown so we can decide if the
2508 // previous should actually be hidden depending on whether the
2509 // new one is found to be full-screen or not.
2510 if (prev.finishing) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002511 prev.setVisibility(false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002512 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2513 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Bryce Lee4a194382017-04-04 14:32:48 -07002514 + mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002515 + ", nowVisible=" + next.nowVisible);
2516 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002517 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002518 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002519 + ", waitingVisible="
Bryce Lee4a194382017-04-04 14:32:48 -07002520 + mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(prev)
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002521 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002522 }
2523 }
2524 }
2525
Dianne Hackborne7f97212011-02-24 14:40:20 -08002526 // Launching this app's activity, make sure the app is no longer
2527 // considered stopped.
2528 try {
2529 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002530 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002531 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002532 } catch (IllegalArgumentException e) {
2533 Slog.w(TAG, "Failed trying to unstop package "
2534 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002535 }
2536
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002537 // We are starting up the next activity, so tell the window manager
2538 // that the previous one will be hidden soon. This way it can know
2539 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002540 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002541 if (prev != null) {
2542 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002543 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002544 "Prepare close transition: prev=" + prev);
Jorim Jaggifa9ed962018-01-25 00:16:49 +01002545 if (mStackSupervisor.mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002546 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002547 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002548 } else {
Bryce Leeaf691c02017-03-20 14:20:22 -07002549 mWindowManager.prepareAppTransition(prev.getTask() == next.getTask()
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002550 ? TRANSIT_ACTIVITY_CLOSE
2551 : TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002552 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002553 prev.setVisibility(false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002554 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002555 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2556 "Prepare open transition: prev=" + prev);
Jorim Jaggifa9ed962018-01-25 00:16:49 +01002557 if (mStackSupervisor.mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002558 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002559 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002560 } else {
Bryce Leeaf691c02017-03-20 14:20:22 -07002561 mWindowManager.prepareAppTransition(prev.getTask() == next.getTask()
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002562 ? TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002563 : next.mLaunchTaskBehind
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002564 ? TRANSIT_TASK_OPEN_BEHIND
2565 : TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002566 }
2567 }
Craig Mautner967212c2013-04-13 21:10:58 -07002568 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002569 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Jorim Jaggifa9ed962018-01-25 00:16:49 +01002570 if (mStackSupervisor.mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002571 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002572 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002573 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002574 mWindowManager.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002575 }
2576 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002577
Craig Mautner525f3d92013-05-07 14:01:50 -07002578 if (anim) {
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002579 next.applyOptionsLocked();
2580 } else {
2581 next.clearOptionsLocked();
2582 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002583
Jorim Jaggifa9ed962018-01-25 00:16:49 +01002584 mStackSupervisor.mNoAnimActivities.clear();
2585
Craig Mautnercf910b02013-04-23 11:23:27 -07002586 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002587 if (next.app != null && next.app.thread != null) {
Chong Zhangdea4bd92016-03-15 12:50:03 -07002588 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next
2589 + " stopped=" + next.stopped + " visible=" + next.visible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002590
Chong Zhangd127c6d2016-05-02 16:36:41 -07002591 // If the previous activity is translucent, force a visibility update of
2592 // the next activity, so that it's added to WM's opening app list, and
2593 // transition animation can be set up properly.
2594 // For example, pressing Home button with a translucent activity in focus.
2595 // Launcher is already visible in this case. If we don't add it to opening
2596 // apps, maybeUpdateTransitToWallpaper() will fail to identify this as a
2597 // TRANSIT_WALLPAPER_OPEN animation, and run some funny animation.
2598 final boolean lastActivityTranslucent = lastStack != null
Bryce Leef3c6a472017-11-14 14:53:06 -08002599 && (lastStack.inMultiWindowMode()
Chong Zhangd127c6d2016-05-02 16:36:41 -07002600 || (lastStack.mLastPausedActivity != null
2601 && !lastStack.mLastPausedActivity.fullscreen));
2602
Bryce Lee69ad8182017-09-28 10:01:36 -07002603 // The contained logic must be synchronized, since we are both changing the visibility
2604 // and updating the {@link Configuration}. {@link ActivityRecord#setVisibility} will
2605 // ultimately cause the client code to schedule a layout. Since layouts retrieve the
2606 // current {@link Configuration}, we must ensure that the below code updates it before
2607 // the layout can occur.
2608 synchronized(mWindowManager.getWindowManagerLock()) {
2609 // This activity is now becoming visible.
2610 if (!next.visible || next.stopped || lastActivityTranslucent) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002611 next.setVisibility(true);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002612 }
Craig Mautner58547802013-03-05 08:23:53 -08002613
Bryce Lee69ad8182017-09-28 10:01:36 -07002614 // schedule launch ticks to collect information about slow apps.
2615 next.startLaunchTickingLocked();
2616
2617 ActivityRecord lastResumedActivity =
2618 lastStack == null ? null :lastStack.mResumedActivity;
Bryce Lee7ace3952018-02-16 14:34:32 -08002619 final ActivityState lastState = next.getState();
Bryce Lee69ad8182017-09-28 10:01:36 -07002620
2621 mService.updateCpuStats();
2622
2623 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next
2624 + " (in existing)");
2625
Bryce Leec4ab62a2018-03-05 14:19:26 -08002626 next.setState(RESUMED, "resumeTopActivityInnerLocked");
Bryce Lee69ad8182017-09-28 10:01:36 -07002627
2628 mService.updateLruProcessLocked(next.app, true, null);
2629 updateLRUListLocked(next);
2630 mService.updateOomAdjLocked();
2631
2632 // Have the window manager re-evaluate the orientation of
2633 // the screen based on the new activity order.
2634 boolean notUpdated = true;
2635
2636 if (mStackSupervisor.isFocusedStack(this)) {
Andrii Kulianf4479ee2018-05-23 17:52:48 -07002637 // We have special rotation behavior when here is some active activity that
2638 // requests specific orientation or Keyguard is locked. Make sure all activity
2639 // visibilities are set correctly as well as the transition is updated if needed
2640 // to get the correct rotation behavior. Otherwise the following call to update
2641 // the orientation may cause incorrect configurations delivered to client as a
2642 // result of invisible window resize.
Bryce Lee69ad8182017-09-28 10:01:36 -07002643 // TODO: Remove this once visibilities are set correctly immediately when
2644 // starting an activity.
Andrii Kulianf4479ee2018-05-23 17:52:48 -07002645 notUpdated = !mStackSupervisor.ensureVisibilityAndConfig(next, mDisplayId,
2646 true /* markFrozenIfConfigChanged */, false /* deferResume */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002647 }
2648
Bryce Lee69ad8182017-09-28 10:01:36 -07002649 if (notUpdated) {
2650 // The configuration update wasn't able to keep the existing
2651 // instance of the activity, and instead started a new one.
2652 // We should be all done, but let's just make sure our activity
2653 // is still at the top and schedule another run if something
2654 // weird happened.
2655 ActivityRecord nextNext = topRunningActivityLocked();
2656 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
2657 "Activity config changed during resume: " + next
2658 + ", new next: " + nextNext);
2659 if (nextNext != next) {
2660 // Do over!
2661 mStackSupervisor.scheduleResumeTopActivities();
2662 }
2663 if (!next.visible || next.stopped) {
2664 next.setVisibility(true);
2665 }
2666 next.completeResumeLocked();
2667 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2668 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002669 }
2670
Bryce Lee69ad8182017-09-28 10:01:36 -07002671 try {
Andrii Kulian9956d892018-02-14 13:48:56 -08002672 final ClientTransaction transaction = ClientTransaction.obtain(next.app.thread,
2673 next.appToken);
Bryce Lee69ad8182017-09-28 10:01:36 -07002674 // Deliver all pending results.
2675 ArrayList<ResultInfo> a = next.results;
2676 if (a != null) {
2677 final int N = a.size();
2678 if (!next.finishing && N > 0) {
2679 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2680 "Delivering results to " + next + ": " + a);
Andrii Kulian9956d892018-02-14 13:48:56 -08002681 transaction.addCallback(ActivityResultItem.obtain(a));
Bryce Lee69ad8182017-09-28 10:01:36 -07002682 }
2683 }
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002684
Bryce Lee69ad8182017-09-28 10:01:36 -07002685 if (next.newIntents != null) {
Andrii Kulian9956d892018-02-14 13:48:56 -08002686 transaction.addCallback(NewIntentItem.obtain(next.newIntents,
2687 false /* andPause */));
Bryce Lee69ad8182017-09-28 10:01:36 -07002688 }
Craig Mautner58547802013-03-05 08:23:53 -08002689
Bryce Lee69ad8182017-09-28 10:01:36 -07002690 // Well the app will no longer be stopped.
2691 // Clear app token stopped state in window manager if needed.
2692 next.notifyAppResumed(next.stopped);
Craig Mautner58547802013-03-05 08:23:53 -08002693
Bryce Lee69ad8182017-09-28 10:01:36 -07002694 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2695 System.identityHashCode(next), next.getTask().taskId,
2696 next.shortComponentName);
2697
2698 next.sleeping = false;
Alan Viveretteb6a25732017-11-21 14:49:24 -05002699 mService.getAppWarningsLocked().onResumeActivity(next);
Bryce Lee69ad8182017-09-28 10:01:36 -07002700 mService.showAskCompatModeDialogLocked(next);
2701 next.app.pendingUiClean = true;
2702 next.app.forceProcessStateUpTo(mService.mTopProcessState);
2703 next.clearOptionsLocked();
Andrii Kulian9956d892018-02-14 13:48:56 -08002704 transaction.setLifecycleStateRequest(
Andrii Kulian9c5ea9c2017-12-07 09:31:01 -08002705 ResumeActivityItem.obtain(next.app.repProcState,
Bryce Lee1d0d5142018-04-12 10:35:07 -07002706 mService.isNextTransitionForward()));
Bryce Leeb0f993f2018-03-02 15:38:01 -08002707 mService.getLifecycleManager().scheduleTransaction(transaction);
Bryce Lee69ad8182017-09-28 10:01:36 -07002708
2709 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed "
2710 + next);
2711 } catch (Exception e) {
2712 // Whoops, need to restart this activity!
2713 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
2714 + lastState + ": " + next);
Bryce Lee7ace3952018-02-16 14:34:32 -08002715 next.setState(lastState, "resumeTopActivityInnerLocked");
Bryce Lee4c401382018-03-13 19:23:03 -07002716
2717 // lastResumedActivity being non-null implies there is a lastStack present.
2718 if (lastResumedActivity != null) {
Bryce Leec4ab62a2018-03-05 14:19:26 -08002719 lastResumedActivity.setState(RESUMED, "resumeTopActivityInnerLocked");
Bryce Lee69ad8182017-09-28 10:01:36 -07002720 }
Bryce Lee4c401382018-03-13 19:23:03 -07002721
Bryce Lee69ad8182017-09-28 10:01:36 -07002722 Slog.i(TAG, "Restarting because process died: " + next);
2723 if (!next.hasBeenLaunched) {
2724 next.hasBeenLaunched = true;
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002725 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null
2726 && lastStack.isTopStackOnDisplay()) {
Bryce Lee69ad8182017-09-28 10:01:36 -07002727 next.showStartingWindow(null /* prev */, false /* newTask */,
2728 false /* taskSwitch */);
2729 }
2730 mStackSupervisor.startSpecificActivityLocked(next, true, false);
2731 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2732 return true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002733 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002734 }
2735
2736 // From this point on, if something goes wrong there is no way
2737 // to recover the activity.
2738 try {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002739 next.completeResumeLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002740 } catch (Exception e) {
2741 // If any exception gets thrown, toss away this
2742 // activity and try the next one.
2743 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002744 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002745 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002746 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002747 return true;
2748 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002749 } else {
2750 // Whoops, need to restart this activity!
2751 if (!next.hasBeenLaunched) {
2752 next.hasBeenLaunched = true;
2753 } else {
2754 if (SHOW_APP_STARTING_PREVIEW) {
Jorim Jaggi02886a82016-12-06 09:10:06 -08002755 next.showStartingWindow(null /* prev */, false /* newTask */,
2756 false /* taskSwich */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002757 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002758 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002759 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002760 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002761 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002762 }
2763
Craig Mautnercf910b02013-04-23 11:23:27 -07002764 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002765 return true;
2766 }
2767
Andrii Kulian7fc22812016-12-28 13:04:11 -08002768 private boolean resumeTopActivityInNextFocusableStack(ActivityRecord prev,
2769 ActivityOptions options, String reason) {
Wale Ogunwale66e16852017-10-19 13:35:52 -07002770 if (adjustFocusToNextFocusableStack(reason)) {
Andrii Kulian7fc22812016-12-28 13:04:11 -08002771 // Try to move focus to the next visible stack with a running activity if this
2772 // stack is not covering the entire screen or is on a secondary display (with no home
2773 // stack).
2774 return mStackSupervisor.resumeFocusedStackTopActivityLocked(
2775 mStackSupervisor.getFocusedStack(), prev, null);
2776 }
2777
2778 // Let's just start up the Launcher...
2779 ActivityOptions.abort(options);
2780 if (DEBUG_STATES) Slog.d(TAG_STATES,
2781 "resumeTopActivityInNextFocusableStack: " + reason + ", go home");
2782 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2783 // Only resume home if on home display
2784 return isOnHomeDisplay() &&
2785 mStackSupervisor.resumeHomeStackTask(prev, reason);
2786 }
2787
riddle_hsuc215a4f2014-12-27 12:10:45 +08002788 private TaskRecord getNextTask(TaskRecord targetTask) {
2789 final int index = mTaskHistory.indexOf(targetTask);
2790 if (index >= 0) {
2791 final int numTasks = mTaskHistory.size();
2792 for (int i = index + 1; i < numTasks; ++i) {
2793 TaskRecord task = mTaskHistory.get(i);
2794 if (task.userId == targetTask.userId) {
2795 return task;
2796 }
2797 }
2798 }
2799 return null;
2800 }
2801
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002802 /** Returns the position the input task should be placed in this stack. */
2803 int getAdjustedPositionForTask(TaskRecord task, int suggestedPosition,
2804 ActivityRecord starting) {
2805
2806 int maxPosition = mTaskHistory.size();
2807 if ((starting != null && starting.okToShowLocked())
2808 || (starting == null && task.okToShowLocked())) {
2809 // If the task or starting activity can be shown, then whatever position is okay.
2810 return Math.min(suggestedPosition, maxPosition);
2811 }
2812
2813 // The task can't be shown, put non-current user tasks below current user tasks.
2814 while (maxPosition > 0) {
2815 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2816 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2817 || tmpTask.topRunningActivityLocked() == null) {
2818 break;
2819 }
2820 maxPosition--;
2821 }
2822
2823 return Math.min(suggestedPosition, maxPosition);
2824 }
2825
Andrii Kuliand2765632016-12-12 22:26:34 -08002826 /**
2827 * Used from {@link ActivityStack#positionTask(TaskRecord, int)}.
2828 * @see ActivityManagerService#positionTaskInStack(int, int, int).
2829 */
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002830 private void insertTaskAtPosition(TaskRecord task, int position) {
2831 if (position >= mTaskHistory.size()) {
2832 insertTaskAtTop(task, null);
2833 return;
Evan Rosky9c448172017-11-02 14:19:27 -07002834 } else if (position <= 0) {
2835 insertTaskAtBottom(task);
2836 return;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002837 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002838 position = getAdjustedPositionForTask(task, position, null /* starting */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002839 mTaskHistory.remove(task);
2840 mTaskHistory.add(position, task);
Bryce Leef3c6a472017-11-14 14:53:06 -08002841 mWindowContainerController.positionChildAt(task.getWindowContainerController(), position);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002842 updateTaskMovement(task, true);
2843 }
2844
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002845 private void insertTaskAtTop(TaskRecord task, ActivityRecord starting) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002846 // TODO: Better place to put all the code below...may be addTask...
2847 mTaskHistory.remove(task);
2848 // Now put task at top.
2849 final int position = getAdjustedPositionForTask(task, mTaskHistory.size(), starting);
2850 mTaskHistory.add(position, task);
2851 updateTaskMovement(task, true);
Wale Ogunwale1666e312016-12-16 11:27:18 -08002852 mWindowContainerController.positionChildAtTop(task.getWindowContainerController(),
2853 true /* includingParents */);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08002854 }
2855
Evan Rosky9c448172017-11-02 14:19:27 -07002856 private void insertTaskAtBottom(TaskRecord task) {
2857 // Unlike insertTaskAtPosition, this will also position parents of the windowcontroller.
2858 mTaskHistory.remove(task);
2859 final int position = getAdjustedPositionForTask(task, 0, null);
2860 mTaskHistory.add(position, task);
2861 updateTaskMovement(task, true);
2862 mWindowContainerController.positionChildAtBottom(task.getWindowContainerController(),
2863 true /* includingParents */);
2864 }
2865
Bryce Leead5b8322018-03-08 14:28:52 -08002866 void startActivityLocked(ActivityRecord r, ActivityRecord focusedTopActivity,
Winson Chungb5c41b72016-12-07 15:00:47 -08002867 boolean newTask, boolean keepCurTransition, ActivityOptions options) {
Bryce Leeaf691c02017-03-20 14:20:22 -07002868 TaskRecord rTask = r.getTask();
Craig Mautnerd2328952013-03-05 12:46:26 -08002869 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002870 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2871 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002872 // Last activity in task had been removed or ActivityManagerService is reusing task.
2873 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002874 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002875 insertTaskAtTop(rTask, r);
Craig Mautner77878772013-03-04 19:46:24 -08002876 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002877 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002878 if (!newTask) {
2879 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002880 boolean startIt = true;
2881 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2882 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002883 if (task.getTopActivity() == null) {
2884 // All activities in task are finishing.
2885 continue;
2886 }
Bryce Leeaf691c02017-03-20 14:20:22 -07002887 if (task == rTask) {
Craig Mautner70a86932013-02-28 22:37:44 -08002888 // Here it is! Now, if this is not yet visible to the
2889 // user, then just add it without starting; it will
2890 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002891 if (!startIt) {
2892 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2893 + task, new RuntimeException("here").fillInStackTrace());
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002894 r.createWindowContainer();
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002895 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002896 return;
2897 }
2898 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002899 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002900 startIt = false;
2901 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002902 }
2903 }
2904
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002905 // Place a new activity at top of stack, so it is next to interact with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002906
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002907 // If we are not placing the new activity frontmost, we do not want to deliver the
2908 // onUserLeaving callback to the actual frontmost activity
Bryce Leeaf691c02017-03-20 14:20:22 -07002909 final TaskRecord activityTask = r.getTask();
2910 if (task == activityTask && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002911 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002912 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002913 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002914 }
Craig Mautner70a86932013-02-28 22:37:44 -08002915
Bryce Leeaf691c02017-03-20 14:20:22 -07002916 task = activityTask;
Craig Mautner70a86932013-02-28 22:37:44 -08002917
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002918 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002919 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002920 new RuntimeException("here").fillInStackTrace());
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08002921 // TODO: Need to investigate if it is okay for the controller to already be created by the
2922 // time we get to this point. I think it is, but need to double check.
2923 // Use test in b/34179495 to trace the call path.
2924 if (r.getWindowContainerController() == null) {
2925 r.createWindowContainer();
2926 }
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002927 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002928
Matthew Ngae1ff4f2016-11-10 15:49:14 -08002929 if (!isHomeOrRecentsStack() || numActivities() > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002930 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002931 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002932 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002933 mWindowManager.prepareAppTransition(TRANSIT_NONE, keepCurTransition);
Jorim Jaggifa9ed962018-01-25 00:16:49 +01002934 mStackSupervisor.mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002935 } else {
Winson Chungb5c41b72016-12-07 15:00:47 -08002936 int transit = TRANSIT_ACTIVITY_OPEN;
2937 if (newTask) {
2938 if (r.mLaunchTaskBehind) {
2939 transit = TRANSIT_TASK_OPEN_BEHIND;
2940 } else {
Winson Chungc2baac02017-01-11 13:34:47 -08002941 // If a new task is being launched, then mark the existing top activity as
Winson Chung942a85c2017-07-11 15:07:45 -07002942 // supporting picture-in-picture while pausing only if the starting activity
2943 // would not be considered an overlay on top of the current activity
2944 // (eg. not fullscreen, or the assistant)
Winson Chungf7e03e12017-08-22 11:32:16 -07002945 if (canEnterPipOnTaskSwitch(focusedTopActivity,
2946 null /* toFrontTask */, r, options)) {
2947 focusedTopActivity.supportsEnterPipOnTaskSwitch = true;
Winson Chungb5c41b72016-12-07 15:00:47 -08002948 }
2949 transit = TRANSIT_TASK_OPEN;
2950 }
2951 }
2952 mWindowManager.prepareAppTransition(transit, keepCurTransition);
Jorim Jaggifa9ed962018-01-25 00:16:49 +01002953 mStackSupervisor.mNoAnimActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002954 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002955 boolean doShow = true;
2956 if (newTask) {
2957 // Even though this activity is starting fresh, we still need
2958 // to reset it to make sure we apply affinities to move any
2959 // existing activities from other tasks in to it.
2960 // If the caller has requested that the target task be
2961 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002962 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002963 resetTaskIfNeededLocked(r, r);
2964 doShow = topRunningNonDelayedActivityLocked(null) == r;
2965 }
Chong Zhang280d3322015-11-03 17:27:26 -08002966 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002967 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2968 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002969 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002970 if (r.mLaunchTaskBehind) {
2971 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2972 // tell WindowManager that r is visible even though it is at the back of the stack.
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002973 r.setVisibility(true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002974 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002975 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002976 // Figure out if we are transitioning from another activity that is
2977 // "has the same starting icon" as the next one. This allows the
2978 // window manager to keep the previous window it had previously
2979 // created, if it still had one.
Bryce Leeaf691c02017-03-20 14:20:22 -07002980 TaskRecord prevTask = r.getTask();
2981 ActivityRecord prev = prevTask.topRunningActivityWithStartingWindowLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002982 if (prev != null) {
2983 // We don't want to reuse the previous starting preview if:
2984 // (1) The current activity is in a different task.
Bryce Leeaf691c02017-03-20 14:20:22 -07002985 if (prev.getTask() != prevTask) {
Craig Mautner29219d92013-04-16 20:19:12 -07002986 prev = null;
2987 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002988 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002989 else if (prev.nowVisible) {
2990 prev = null;
2991 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002992 }
Jorim Jaggi02886a82016-12-06 09:10:06 -08002993 r.showStartingWindow(prev, newTask, isTaskSwitch(r, focusedTopActivity));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002994 }
2995 } else {
2996 // If this is the first activity, don't do any fancy animations,
2997 // because there is nothing for it to animate on top of.
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002998 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002999 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08003000 }
3001
Winson Chungf7e03e12017-08-22 11:32:16 -07003002 /**
3003 * @return Whether the switch to another task can trigger the currently running activity to
3004 * enter PiP while it is pausing (if supported). Only one of {@param toFrontTask} or
3005 * {@param toFrontActivity} should be set.
3006 */
3007 private boolean canEnterPipOnTaskSwitch(ActivityRecord pipCandidate,
3008 TaskRecord toFrontTask, ActivityRecord toFrontActivity, ActivityOptions opts) {
3009 if (opts != null && opts.disallowEnterPictureInPictureWhileLaunching()) {
3010 // Ensure the caller has requested not to trigger auto-enter PiP
3011 return false;
3012 }
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003013 if (pipCandidate == null || pipCandidate.inPinnedWindowingMode()) {
Winson Chungf7e03e12017-08-22 11:32:16 -07003014 // Ensure that we do not trigger entering PiP an activity on the pinned stack
3015 return false;
3016 }
Wale Ogunwale68278562017-09-23 17:13:55 -07003017 final ActivityStack targetStack = toFrontTask != null
3018 ? toFrontTask.getStack() : toFrontActivity.getStack();
3019 if (targetStack != null && targetStack.isActivityTypeAssistant()) {
Winson Chungf7e03e12017-08-22 11:32:16 -07003020 // Ensure the task/activity being brought forward is not the assistant
3021 return false;
3022 }
Winson Chungf7e03e12017-08-22 11:32:16 -07003023 return true;
3024 }
3025
Jorim Jaggi02886a82016-12-06 09:10:06 -08003026 private boolean isTaskSwitch(ActivityRecord r,
3027 ActivityRecord topFocusedActivity) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003028 return topFocusedActivity != null && r.getTask() != topFocusedActivity.getTask();
Jorim Jaggi02886a82016-12-06 09:10:06 -08003029 }
3030
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003031 /**
3032 * Perform a reset of the given task, if needed as part of launching it.
3033 * Returns the new HistoryRecord at the top of the task.
3034 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08003035 /**
3036 * Helper method for #resetTaskIfNeededLocked.
3037 * We are inside of the task being reset... we'll either finish this activity, push it out
3038 * for another task, or leave it as-is.
3039 * @param task The task containing the Activity (taskTop) that might be reset.
3040 * @param forceReset
3041 * @return An ActivityOptions that needs to be processed.
3042 */
Andrii Kulian21713ac2016-10-12 22:05:05 -07003043 private ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003044 ActivityOptions topOptions = null;
3045
3046 int replyChainEnd = -1;
3047 boolean canMoveOptions = true;
3048
3049 // We only do this for activities that are not the root of the task (since if we finish
3050 // the root, we may no longer have the task!).
3051 final ArrayList<ActivityRecord> activities = task.mActivities;
3052 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07003053 final int rootActivityNdx = task.findEffectiveRootIndex();
3054 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003055 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00003056 if (target.frontOfTask)
3057 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003058
3059 final int flags = target.info.flags;
3060 final boolean finishOnTaskLaunch =
3061 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
3062 final boolean allowTaskReparenting =
3063 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
3064 final boolean clearWhenTaskReset =
3065 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
3066
3067 if (!finishOnTaskLaunch
3068 && !clearWhenTaskReset
3069 && target.resultTo != null) {
3070 // If this activity is sending a reply to a previous
3071 // activity, we can't do anything with it now until
3072 // we reach the start of the reply chain.
3073 // XXX note that we are assuming the result is always
3074 // to the previous activity, which is almost always
3075 // the case but we really shouldn't count on.
3076 if (replyChainEnd < 0) {
3077 replyChainEnd = i;
3078 }
3079 } else if (!finishOnTaskLaunch
3080 && !clearWhenTaskReset
3081 && allowTaskReparenting
3082 && target.taskAffinity != null
3083 && !target.taskAffinity.equals(task.affinity)) {
3084 // If this activity has an affinity for another
3085 // task, then we need to move it out of here. We will
3086 // move it as far out of the way as possible, to the
3087 // bottom of the activity stack. This also keeps it
3088 // correctly ordered with any activities we previously
3089 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08003090 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07003091 final ActivityRecord bottom =
3092 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08003093 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07003094 if (bottom != null && target.taskAffinity != null
Bryce Leeaf691c02017-03-20 14:20:22 -07003095 && target.taskAffinity.equals(bottom.getTask().affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003096 // If the activity currently at the bottom has the
3097 // same task affinity as the one we are moving,
3098 // then merge it into the same task.
Bryce Leeaf691c02017-03-20 14:20:22 -07003099 targetTask = bottom.getTask();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003100 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Bryce Leeaf691c02017-03-20 14:20:22 -07003101 + " out to bottom task " + targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003102 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08003103 targetTask = createTaskRecord(
3104 mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07003105 target.info, null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08003106 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003107 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Bryce Leeaf691c02017-03-20 14:20:22 -07003108 + " out to new task " + targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003109 }
3110
Craig Mautner525f3d92013-05-07 14:01:50 -07003111 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003112 final int start = replyChainEnd < 0 ? i : replyChainEnd;
3113 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07003114 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003115 if (p.finishing) {
3116 continue;
3117 }
3118
Craig Mautnere3a74d52013-02-22 14:14:58 -08003119 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07003120 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003121 topOptions = p.takeOptionsLocked();
3122 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003123 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003124 }
3125 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003126 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3127 "Removing activity " + p + " from task=" + task + " adding to task="
3128 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003129 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Bryce Leeaf691c02017-03-20 14:20:22 -07003130 "Pushing next activity " + p + " out to target's task " + target);
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08003131 p.reparent(targetTask, 0 /* position - bottom */, "resetTargetTaskIfNeeded");
Craig Mautnere3a74d52013-02-22 14:14:58 -08003132 }
3133
Wale Ogunwale1666e312016-12-16 11:27:18 -08003134 mWindowContainerController.positionChildAtBottom(
Wale Ogunwale66e16852017-10-19 13:35:52 -07003135 targetTask.getWindowContainerController(), false /* includingParents */);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003136 replyChainEnd = -1;
3137 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
3138 // If the activity should just be removed -- either
3139 // because it asks for it, or the task should be
3140 // cleared -- then finish it and anything that is
3141 // part of its reply chain.
3142 int end;
3143 if (clearWhenTaskReset) {
3144 // In this case, we want to finish this activity
3145 // and everything above it, so be sneaky and pretend
3146 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08003147 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003148 } else if (replyChainEnd < 0) {
3149 end = i;
3150 } else {
3151 end = replyChainEnd;
3152 }
Craig Mautner525f3d92013-05-07 14:01:50 -07003153 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003154 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003155 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003156 if (p.finishing) {
3157 continue;
3158 }
3159 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07003160 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003161 topOptions = p.takeOptionsLocked();
3162 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003163 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003164 }
3165 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003166 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08003167 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08003168 if (finishActivityLocked(
3169 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003170 end--;
3171 srcPos--;
3172 }
3173 }
3174 replyChainEnd = -1;
3175 } else {
3176 // If we were in the middle of a chain, well the
3177 // activity that started it all doesn't want anything
3178 // special, so leave it all as-is.
3179 replyChainEnd = -1;
3180 }
3181 }
3182
3183 return topOptions;
3184 }
3185
3186 /**
3187 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
3188 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
3189 * @param affinityTask The task we are looking for an affinity to.
3190 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
3191 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
3192 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
3193 */
Craig Mautner525f3d92013-05-07 14:01:50 -07003194 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08003195 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003196 int replyChainEnd = -1;
3197 final int taskId = task.taskId;
3198 final String taskAffinity = task.affinity;
3199
3200 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
3201 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07003202 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
3203
3204 // Do not operate on or below the effective root Activity.
3205 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003206 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00003207 if (target.frontOfTask)
3208 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003209
3210 final int flags = target.info.flags;
3211 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
3212 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
3213
3214 if (target.resultTo != null) {
3215 // If this activity is sending a reply to a previous
3216 // activity, we can't do anything with it now until
3217 // we reach the start of the reply chain.
3218 // XXX note that we are assuming the result is always
3219 // to the previous activity, which is almost always
3220 // the case but we really shouldn't count on.
3221 if (replyChainEnd < 0) {
3222 replyChainEnd = i;
3223 }
3224 } else if (topTaskIsHigher
3225 && allowTaskReparenting
3226 && taskAffinity != null
3227 && taskAffinity.equals(target.taskAffinity)) {
3228 // This activity has an affinity for our task. Either remove it if we are
3229 // clearing or move it over to our task. Note that
3230 // we currently punt on the case where we are resetting a
3231 // task that is not at the top but who has activities above
3232 // with an affinity to it... this is really not a normal
3233 // case, and we will need to later pull that task to the front
3234 // and usually at that point we will do the reset and pick
3235 // up those remaining activities. (This only happens if
3236 // someone starts an activity in a new task from an activity
3237 // in a task that is not currently on top.)
3238 if (forceReset || finishOnTaskLaunch) {
3239 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003240 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3241 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003242 for (int srcPos = start; srcPos >= i; --srcPos) {
3243 final ActivityRecord p = activities.get(srcPos);
3244 if (p.finishing) {
3245 continue;
3246 }
Todd Kennedy539db512014-12-15 09:57:55 -08003247 finishActivityLocked(
3248 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003249 }
3250 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003251 if (taskInsertionPoint < 0) {
3252 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08003253
Craig Mautner77878772013-03-04 19:46:24 -08003254 }
Craig Mautner77878772013-03-04 19:46:24 -08003255
3256 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003257 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3258 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
3259 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08003260 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003261 final ActivityRecord p = activities.get(srcPos);
Winson Chung30480042017-01-26 10:55:34 -08003262 p.reparent(task, taskInsertionPoint, "resetAffinityTaskIfNeededLocked");
Craig Mautnere3a74d52013-02-22 14:14:58 -08003263
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003264 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3265 "Removing and adding activity " + p + " to stack at " + task
3266 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003267 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
3268 + " from " + srcPos + " in to resetting task " + task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003269 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08003270 mWindowContainerController.positionChildAtTop(
3271 task.getWindowContainerController(), true /* includingParents */);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003272
3273 // Now we've moved it in to place... but what if this is
3274 // a singleTop activity and we have put it on top of another
3275 // instance of the same activity? Then we drop the instance
3276 // below so it remains singleTop.
3277 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
3278 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003279 int targetNdx = taskActivities.indexOf(target);
3280 if (targetNdx > 0) {
3281 ActivityRecord p = taskActivities.get(targetNdx - 1);
3282 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08003283 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
3284 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003285 }
3286 }
3287 }
3288 }
3289
3290 replyChainEnd = -1;
3291 }
3292 }
Craig Mautner77878772013-03-04 19:46:24 -08003293 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003294 }
3295
Craig Mautner8849a5e2013-04-02 16:41:03 -07003296 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08003297 ActivityRecord newActivity) {
Winson Chung5fa39752017-10-04 14:50:15 -07003298 final boolean forceReset =
Craig Mautnere3a74d52013-02-22 14:14:58 -08003299 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
Bryce Leeaf691c02017-03-20 14:20:22 -07003300 final TaskRecord task = taskTop.getTask();
Craig Mautnere3a74d52013-02-22 14:14:58 -08003301
3302 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
3303 * for remaining tasks. Used for later tasks to reparent to task. */
3304 boolean taskFound = false;
3305
3306 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
3307 ActivityOptions topOptions = null;
3308
Craig Mautner77878772013-03-04 19:46:24 -08003309 // Preserve the location for reparenting in the new task.
3310 int reparentInsertionPoint = -1;
3311
Craig Mautnere3a74d52013-02-22 14:14:58 -08003312 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3313 final TaskRecord targetTask = mTaskHistory.get(i);
3314
3315 if (targetTask == task) {
3316 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
3317 taskFound = true;
3318 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003319 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
3320 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003321 }
3322 }
3323
Craig Mautner70a86932013-02-28 22:37:44 -08003324 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08003325 if (taskNdx >= 0) {
3326 do {
3327 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
3328 } while (taskTop == null && taskNdx >= 0);
3329 }
Craig Mautner70a86932013-02-28 22:37:44 -08003330
Craig Mautnere3a74d52013-02-22 14:14:58 -08003331 if (topOptions != null) {
3332 // If we got some ActivityOptions from an activity on top that
3333 // was removed from the task, propagate them to the new real top.
3334 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003335 taskTop.updateOptionsLocked(topOptions);
3336 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003337 topOptions.abort();
3338 }
3339 }
3340
3341 return taskTop;
3342 }
3343
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003344 void sendActivityResultLocked(int callingUid, ActivityRecord r,
3345 String resultWho, int requestCode, int resultCode, Intent data) {
3346
3347 if (callingUid > 0) {
3348 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003349 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003350 }
3351
3352 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
3353 + " : who=" + resultWho + " req=" + requestCode
3354 + " res=" + resultCode + " data=" + data);
3355 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
3356 try {
3357 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
3358 list.add(new ResultInfo(resultWho, requestCode,
3359 resultCode, data));
Bryce Leeb0f993f2018-03-02 15:38:01 -08003360 mService.getLifecycleManager().scheduleTransaction(r.app.thread, r.appToken,
Andrii Kulian9c5ea9c2017-12-07 09:31:01 -08003361 ActivityResultItem.obtain(list));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003362 return;
3363 } catch (Exception e) {
3364 Slog.w(TAG, "Exception thrown sending result to " + r, e);
3365 }
3366 }
3367
3368 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
3369 }
3370
Shunta Sato63b8ee32016-07-11 13:32:52 +09003371 /** Returns true if the task is one of the task finishing on-top of the top running task. */
Wale Ogunwale66e16852017-10-19 13:35:52 -07003372 private boolean isATopFinishingTask(TaskRecord task) {
Shunta Sato63b8ee32016-07-11 13:32:52 +09003373 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3374 final TaskRecord current = mTaskHistory.get(i);
3375 final ActivityRecord r = current.topRunningActivityLocked();
3376 if (r != null) {
3377 // We got a top running activity, so there isn't a top finishing task...
3378 return false;
3379 }
3380 if (current == task) {
3381 return true;
3382 }
3383 }
3384 return false;
3385 }
3386
Wale Ogunwale66e16852017-10-19 13:35:52 -07003387 private void adjustFocusedActivityStack(ActivityRecord r, String reason) {
Shunta Sato63b8ee32016-07-11 13:32:52 +09003388 if (!mStackSupervisor.isFocusedStack(this) ||
3389 ((mResumedActivity != r) && (mResumedActivity != null))) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003390 return;
3391 }
3392
3393 final ActivityRecord next = topRunningActivityLocked();
3394 final String myReason = reason + " adjustFocus";
Bryce Lee3345c4e2017-04-25 07:40:41 -07003395
Wale Ogunwale66e16852017-10-19 13:35:52 -07003396 if (next == r) {
3397 mStackSupervisor.moveFocusableActivityStackToFrontLocked(
3398 mStackSupervisor.topRunningActivityLocked(), myReason);
3399 return;
Wale Ogunwaled045c822015-12-02 09:14:28 -08003400 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003401
Wale Ogunwale66e16852017-10-19 13:35:52 -07003402 if (next != null && isFocusable()) {
3403 // Keep focus in stack if we have a top running activity and are focusable.
3404 return;
3405 }
3406
3407 // Task is not guaranteed to be non-null. For example, destroying the
3408 // {@link ActivityRecord} will disassociate the task from the activity.
3409 final TaskRecord task = r.getTask();
3410
3411 if (task == null) {
3412 throw new IllegalStateException("activity no longer associated with task:" + r);
3413 }
3414
3415 // Move focus to next focusable stack if possible.
3416 if (adjustFocusToNextFocusableStack(myReason)) {
3417 return;
3418 }
3419
3420 // Whatever...go home.
3421 mStackSupervisor.moveHomeStackTaskToTop(myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07003422 }
3423
Andrii Kulian250d6532017-02-08 23:30:45 -08003424 /** Find next proper focusable stack and make it focused. */
Wale Ogunwale17696de2018-03-15 16:41:05 -07003425 boolean adjustFocusToNextFocusableStack(String reason) {
Wale Ogunwale66e16852017-10-19 13:35:52 -07003426 return adjustFocusToNextFocusableStack(reason, false /* allowFocusSelf */);
Andrii Kulian250d6532017-02-08 23:30:45 -08003427 }
3428
3429 /**
3430 * Find next proper focusable stack and make it focused.
3431 * @param allowFocusSelf Is the focus allowed to remain on the same stack.
3432 */
Wale Ogunwale66e16852017-10-19 13:35:52 -07003433 private boolean adjustFocusToNextFocusableStack(String reason, boolean allowFocusSelf) {
Wale Ogunwalee1f68ce2018-03-09 08:58:54 -08003434 final ActivityStack stack =
3435 mStackSupervisor.getNextFocusableStackLocked(this, !allowFocusSelf);
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003436 final String myReason = reason + " adjustFocusToNextFocusableStack";
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003437 if (stack == null) {
3438 return false;
3439 }
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003440
Wale Ogunwalec750f5f2016-03-28 07:43:51 -07003441 final ActivityRecord top = stack.topRunningActivityLocked();
3442
Wale Ogunwale66e16852017-10-19 13:35:52 -07003443 if (stack.isActivityTypeHome() && (top == null || !top.visible)) {
Wale Ogunwalec750f5f2016-03-28 07:43:51 -07003444 // If we will be focusing on the home stack next and its current top activity isn't
Wale Ogunwale66e16852017-10-19 13:35:52 -07003445 // visible, then use the move the home stack task to top to make the activity visible.
Matthew Ngae1ff4f2016-11-10 15:49:14 -08003446 return mStackSupervisor.moveHomeStackTaskToTop(reason);
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003447 }
Chong Zhang6cda19c2016-06-14 19:07:56 -07003448
3449 stack.moveToFront(myReason);
3450 return true;
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003451 }
3452
Craig Mautnerf3333272013-04-22 10:55:53 -07003453 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003454 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003455 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
3456 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
3457 if (!r.finishing) {
David Stevens9440dc82017-03-16 19:00:20 -07003458 if (!shouldSleepActivities()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003459 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003460 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
3461 "stop-no-history", false)) {
Bryce Lee3345c4e2017-04-25 07:40:41 -07003462 // If {@link requestFinishActivityLocked} returns {@code true},
Wale Ogunwale66e16852017-10-19 13:35:52 -07003463 // {@link adjustFocusedActivityStack} would have been already called.
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003464 r.resumeKeyDispatchingLocked();
3465 return;
3466 }
Christopher Tated3f175c2012-06-14 14:16:54 -07003467 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003468 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07003469 + " on stop because we're just sleeping");
3470 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003471 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07003472 }
3473
3474 if (r.app != null && r.app.thread != null) {
Wale Ogunwale66e16852017-10-19 13:35:52 -07003475 adjustFocusedActivityStack(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003476 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003477 try {
3478 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003479 if (DEBUG_STATES) Slog.v(TAG_STATES,
3480 "Moving to STOPPING: " + r + " (stop requested)");
Bryce Lee7ace3952018-02-16 14:34:32 -08003481 r.setState(STOPPING, "stopActivityLocked");
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003482 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3483 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003484 if (!r.visible) {
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003485 r.setVisible(false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003486 }
Wale Ogunwalecd7043e2016-02-27 17:37:46 -08003487 EventLogTags.writeAmStopActivity(
3488 r.userId, System.identityHashCode(r), r.shortComponentName);
Bryce Leeb0f993f2018-03-02 15:38:01 -08003489 mService.getLifecycleManager().scheduleTransaction(r.app.thread, r.appToken,
Bryce Lee1d0d5142018-04-12 10:35:07 -07003490 StopActivityItem.obtain(r.visible, r.configChangeFlags));
David Stevens9440dc82017-03-16 19:00:20 -07003491 if (shouldSleepOrShutDownActivities()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003492 r.setSleeping(true);
3493 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003494 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003495 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003496 } catch (Exception e) {
3497 // Maybe just ignore exceptions here... if the process
3498 // has crashed, our death notification will clean things
3499 // up.
3500 Slog.w(TAG, "Exception thrown during pause", e);
3501 // Just in case, assume it to be stopped.
3502 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003503 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Bryce Lee7ace3952018-02-16 14:34:32 -08003504 r.setState(STOPPED, "stopActivityLocked");
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003505 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003506 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003507 }
3508 }
3509 }
3510 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07003511
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003512 /**
3513 * @return Returns true if the activity is being finished, false if for
3514 * some reason it is being left as-is.
3515 */
3516 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003517 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003518 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003519 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3520 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07003521 + ", result=" + resultCode + ", data=" + resultData
3522 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003523 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003524 return false;
3525 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003526
Craig Mautnerd44711d2013-02-23 11:24:36 -08003527 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003528 return true;
3529 }
3530
Craig Mautnerd2328952013-03-05 12:46:26 -08003531 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08003532 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3533 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3534 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3535 ActivityRecord r = activities.get(activityNdx);
3536 if (r.resultTo == self && r.requestCode == requestCode) {
3537 if ((r.resultWho == null && resultWho == null) ||
3538 (r.resultWho != null && r.resultWho.equals(resultWho))) {
3539 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3540 false);
3541 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003542 }
3543 }
3544 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003545 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003546 }
3547
Andrii Kulian8cc92ac62018-04-02 23:14:18 -07003548 /**
3549 * Finish the topmost activity that belongs to the crashed app. We may also finish the activity
3550 * that requested launch of the crashed one to prevent launch-crash loop.
3551 * @param app The app that crashed.
3552 * @param reason Reason to perform this action.
3553 * @return The task that was finished in this stack, {@code null} if top running activity does
3554 * not belong to the crashed app.
3555 */
3556 final TaskRecord finishTopCrashedActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003557 ActivityRecord r = topRunningActivityLocked();
Adrian Roos20d7df32016-01-12 18:59:43 +01003558 TaskRecord finishedTask = null;
3559 if (r == null || r.app != app) {
3560 return null;
3561 }
3562 Slog.w(TAG, " Force finishing activity "
3563 + r.intent.getComponent().flattenToShortString());
Bryce Leeaf691c02017-03-20 14:20:22 -07003564 finishedTask = r.getTask();
3565 int taskNdx = mTaskHistory.indexOf(finishedTask);
3566 final TaskRecord task = finishedTask;
3567 int activityNdx = task.mActivities.indexOf(r);
Jorim Jaggi9c52ebb2018-06-01 14:45:24 +02003568 mWindowManager.prepareAppTransition(TRANSIT_CRASHING_ACTIVITY_CLOSE,
3569 false /* alwaysKeepCurrent */);
Adrian Roos20d7df32016-01-12 18:59:43 +01003570 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Bryce Leeaf691c02017-03-20 14:20:22 -07003571 finishedTask = task;
Adrian Roos20d7df32016-01-12 18:59:43 +01003572 // Also terminate any activities below it that aren't yet
3573 // stopped, to avoid a situation where one will get
3574 // re-start our crashing activity once it gets resumed again.
3575 --activityNdx;
3576 if (activityNdx < 0) {
3577 do {
3578 --taskNdx;
3579 if (taskNdx < 0) {
3580 break;
3581 }
3582 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3583 } while (activityNdx < 0);
3584 }
3585 if (activityNdx >= 0) {
3586 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Bryce Lee7ace3952018-02-16 14:34:32 -08003587 if (r.isState(RESUMED, PAUSING, PAUSED)) {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07003588 if (!r.isActivityTypeHome() || mService.mHomeProcess != r.app) {
Adrian Roos20d7df32016-01-12 18:59:43 +01003589 Slog.w(TAG, " Force finishing activity "
3590 + r.intent.getComponent().flattenToShortString());
3591 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003592 }
3593 }
3594 }
Adrian Roos20d7df32016-01-12 18:59:43 +01003595 return finishedTask;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003596 }
3597
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003598 final void finishVoiceTask(IVoiceInteractionSession session) {
3599 IBinder sessionBinder = session.asBinder();
3600 boolean didOne = false;
3601 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3602 TaskRecord tr = mTaskHistory.get(taskNdx);
3603 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3604 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3605 ActivityRecord r = tr.mActivities.get(activityNdx);
3606 if (!r.finishing) {
3607 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3608 false);
3609 didOne = true;
3610 }
3611 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003612 } else {
3613 // Check if any of the activities are using voice
3614 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3615 ActivityRecord r = tr.mActivities.get(activityNdx);
3616 if (r.voiceSession != null
3617 && r.voiceSession.asBinder() == sessionBinder) {
3618 // Inform of cancellation
3619 r.clearVoiceSessionLocked();
3620 try {
3621 r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3622 null);
3623 } catch (RemoteException re) {
3624 // Ok
3625 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003626 mService.finishRunningVoiceLocked();
3627 break;
3628 }
3629 }
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003630 }
3631 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003632
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003633 if (didOne) {
3634 mService.updateOomAdjLocked();
3635 }
3636 }
3637
Craig Mautnerd2328952013-03-05 12:46:26 -08003638 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003639 ArrayList<ActivityRecord> activities = r.getTask().mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003640 for (int index = activities.indexOf(r); index >= 0; --index) {
3641 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003642 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003643 break;
3644 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003645 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003646 }
3647 return true;
3648 }
3649
Andrii Kulian21713ac2016-10-12 22:05:05 -07003650 private void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
Dianne Hackborn5c607432012-02-28 14:44:19 -08003651 // send the result
3652 ActivityRecord resultTo = r.resultTo;
3653 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003654 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003655 + " who=" + r.resultWho + " req=" + r.requestCode
3656 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003657 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003658 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003659 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003660 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003661 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003662 if (r.info.applicationInfo.uid > 0) {
3663 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3664 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003665 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003666 }
3667 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3668 resultData);
3669 r.resultTo = null;
3670 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003671 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003672
3673 // Make sure this HistoryRecord is not holding on to other resources,
3674 // because clients have remote IPC references to this object so we
3675 // can't assume that will go away and want to avoid circular IPC refs.
3676 r.results = null;
3677 r.pendingResults = null;
3678 r.newIntents = null;
3679 r.icicle = null;
3680 }
3681
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003682 /**
Winson Chung6954fc92017-03-24 16:22:12 -07003683 * See {@link #finishActivityLocked(ActivityRecord, int, Intent, String, boolean, boolean)}
3684 */
3685 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3686 String reason, boolean oomAdj) {
3687 return finishActivityLocked(r, resultCode, resultData, reason, oomAdj, !PAUSE_IMMEDIATELY);
3688 }
3689
3690 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003691 * @return Returns true if this activity has been removed from the history
3692 * list, or false if it is still in the list and will be removed later.
3693 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003694 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
Winson Chung6954fc92017-03-24 16:22:12 -07003695 String reason, boolean oomAdj, boolean pauseImmediately) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003696 if (r.finishing) {
3697 Slog.w(TAG, "Duplicate finish request for " + r);
3698 return false;
3699 }
3700
Jorim Jaggife762342016-10-13 14:33:27 +02003701 mWindowManager.deferSurfaceLayout();
3702 try {
3703 r.makeFinishingLocked();
Bryce Leeaf691c02017-03-20 14:20:22 -07003704 final TaskRecord task = r.getTask();
Jorim Jaggife762342016-10-13 14:33:27 +02003705 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3706 r.userId, System.identityHashCode(r),
3707 task.taskId, r.shortComponentName, reason);
3708 final ArrayList<ActivityRecord> activities = task.mActivities;
3709 final int index = activities.indexOf(r);
3710 if (index < (activities.size() - 1)) {
3711 task.setFrontOfTask();
3712 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
3713 // If the caller asked that this activity (and all above it)
3714 // be cleared when the task is reset, don't lose that information,
3715 // but propagate it up to the next activity.
3716 ActivityRecord next = activities.get(index+1);
3717 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
3718 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003719 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003720
Jorim Jaggife762342016-10-13 14:33:27 +02003721 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003722
Wale Ogunwale66e16852017-10-19 13:35:52 -07003723 adjustFocusedActivityStack(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003724
Jorim Jaggife762342016-10-13 14:33:27 +02003725 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003726
Yorke Leebdef5372017-04-10 16:38:51 -07003727 final boolean endTask = index <= 0 && !task.isClearingToReuseTask();
Jorim Jaggife762342016-10-13 14:33:27 +02003728 final int transit = endTask ? TRANSIT_TASK_CLOSE : TRANSIT_ACTIVITY_CLOSE;
3729 if (mResumedActivity == r) {
3730 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
3731 "Prepare close transition: finishing " + r);
Winson Chung6954fc92017-03-24 16:22:12 -07003732 if (endTask) {
3733 mService.mTaskChangeNotificationController.notifyTaskRemovalStarted(
3734 task.taskId);
3735 }
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003736 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003737
Jorim Jaggife762342016-10-13 14:33:27 +02003738 // Tell window manager to prepare for this one to be removed.
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08003739 r.setVisibility(false);
Jorim Jaggife762342016-10-13 14:33:27 +02003740
3741 if (mPausingActivity == null) {
3742 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3743 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3744 "finish() => pause with userLeaving=false");
Winson Chung6954fc92017-03-24 16:22:12 -07003745 startPausingLocked(false, false, null, pauseImmediately);
Jorim Jaggife762342016-10-13 14:33:27 +02003746 }
3747
3748 if (endTask) {
Bryce Lee2b8e0372018-04-05 17:01:37 -07003749 mService.getLockTaskController().clearLockedTask(task);
Jorim Jaggife762342016-10-13 14:33:27 +02003750 }
Bryce Lee7ace3952018-02-16 14:34:32 -08003751 } else if (!r.isState(PAUSING)) {
Jorim Jaggife762342016-10-13 14:33:27 +02003752 // If the activity is PAUSING, we will complete the finish once
3753 // it is done pausing; else we can just directly finish it here.
3754 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
3755 if (r.visible) {
Winson Chung6954fc92017-03-24 16:22:12 -07003756 prepareActivityHideTransitionAnimation(r, transit);
3757 }
3758
3759 final int finishMode = (r.visible || r.nowVisible) ? FINISH_AFTER_VISIBLE
3760 : FINISH_AFTER_PAUSE;
Bryce Leef52974c2018-02-14 15:12:01 -08003761 final boolean removedActivity = finishCurrentActivityLocked(r, finishMode, oomAdj,
3762 "finishActivityLocked") == null;
Winson Chung6954fc92017-03-24 16:22:12 -07003763
3764 // The following code is an optimization. When the last non-task overlay activity
3765 // is removed from the task, we remove the entire task from the stack. However,
3766 // since that is done after the scheduled destroy callback from the activity, that
3767 // call to change the visibility of the task overlay activities would be out of
3768 // sync with the activitiy visibility being set for this finishing activity above.
3769 // In this case, we can set the visibility of all the task overlay activities when
3770 // we detect the last one is finishing to keep them in sync.
3771 if (task.onlyHasTaskOverlayActivities(true /* excludeFinishing */)) {
3772 for (ActivityRecord taskOverlay : task.mActivities) {
3773 if (!taskOverlay.mTaskOverlay) {
3774 continue;
3775 }
3776 prepareActivityHideTransitionAnimation(taskOverlay, transit);
Jorim Jaggife762342016-10-13 14:33:27 +02003777 }
3778 }
Winson Chung6954fc92017-03-24 16:22:12 -07003779 return removedActivity;
Jorim Jaggife762342016-10-13 14:33:27 +02003780 } else {
3781 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
3782 }
3783
3784 return false;
3785 } finally {
3786 mWindowManager.continueSurfaceLayout();
3787 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003788 }
3789
Winson Chung6954fc92017-03-24 16:22:12 -07003790 private void prepareActivityHideTransitionAnimation(ActivityRecord r, int transit) {
3791 mWindowManager.prepareAppTransition(transit, false);
3792 r.setVisibility(false);
3793 mWindowManager.executeAppTransition();
Bryce Lee4a194382017-04-04 14:32:48 -07003794 if (!mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(r)) {
3795 mStackSupervisor.mActivitiesWaitingForVisibleActivity.add(r);
Winson Chung6954fc92017-03-24 16:22:12 -07003796 }
3797 }
3798
Craig Mautnerf3333272013-04-22 10:55:53 -07003799 static final int FINISH_IMMEDIATELY = 0;
3800 static final int FINISH_AFTER_PAUSE = 1;
3801 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003802
Bryce Leef52974c2018-02-14 15:12:01 -08003803 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj,
3804 String reason) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003805 // First things first: if this activity is currently visible,
3806 // and the resumed activity is not yet visible, then hold off on
3807 // finishing until the resumed one becomes visible.
Chong Zhang824b6dc2016-04-27 14:11:12 -07003808
Bryce Leec961e0a2018-04-13 17:58:02 -07003809 // The activity that we are finishing may be over the lock screen. In this case, we do not
3810 // want to consider activities that cannot be shown on the lock screen as running and should
3811 // proceed with finishing the activity if there is no valid next top running activity.
3812 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked(
3813 true /* considerKeyguardState */);
Chong Zhang824b6dc2016-04-27 14:11:12 -07003814
Chong Zhangefd9a5b2016-04-26 16:21:07 -07003815 if (mode == FINISH_AFTER_VISIBLE && (r.visible || r.nowVisible)
Chong Zhang824b6dc2016-04-27 14:11:12 -07003816 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003817 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Winson Chung4dabf232017-01-25 13:25:22 -08003818 addToStopping(r, false /* scheduleIdle */, false /* idleDelayed */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003819 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003820 if (DEBUG_STATES) Slog.v(TAG_STATES,
3821 "Moving to STOPPING: "+ r + " (finish requested)");
Bryce Lee7ace3952018-02-16 14:34:32 -08003822 r.setState(STOPPING, "finishCurrentActivityLocked");
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003823 if (oomAdj) {
3824 mService.updateOomAdjLocked();
3825 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003826 return r;
3827 }
3828
3829 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003830 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003831 mStackSupervisor.mGoingToSleepActivities.remove(r);
Bryce Lee4a194382017-04-04 14:32:48 -07003832 mStackSupervisor.mActivitiesWaitingForVisibleActivity.remove(r);
Bryce Lee7ace3952018-02-16 14:34:32 -08003833 final ActivityState prevState = r.getState();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003834 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Bryce Leeb0f993f2018-03-02 15:38:01 -08003835
Bryce Lee7ace3952018-02-16 14:34:32 -08003836 r.setState(FINISHING, "finishCurrentActivityLocked");
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003837 final boolean finishingActivityInNonFocusedStack
Andrii Kulian02b7a832016-10-06 23:11:56 -07003838 = r.getStack() != mStackSupervisor.getFocusedStack()
Bryce Lee7ace3952018-02-16 14:34:32 -08003839 && prevState == PAUSED && mode == FINISH_AFTER_VISIBLE;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003840
3841 if (mode == FINISH_IMMEDIATELY
Bryce Lee7ace3952018-02-16 14:34:32 -08003842 || (prevState == PAUSED
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003843 && (mode == FINISH_AFTER_PAUSE || inPinnedWindowingMode()))
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003844 || finishingActivityInNonFocusedStack
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003845 || prevState == STOPPING
3846 || prevState == STOPPED
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003847 || prevState == ActivityState.INITIALIZING) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003848 r.makeFinishingLocked();
Bryce Leef52974c2018-02-14 15:12:01 -08003849 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm:" + reason);
Andrii Kulian7318d632016-07-20 18:59:28 -07003850
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003851 if (finishingActivityInNonFocusedStack) {
3852 // Finishing activity that was in paused state and it was in not currently focused
3853 // stack, need to make something visible in its place.
Andrii Kuliana39ae3e2018-05-31 12:43:54 -07003854 mStackSupervisor.ensureVisibilityAndConfig(next, mDisplayId,
Andrii Kulianf4479ee2018-05-23 17:52:48 -07003855 false /* markFrozenIfConfigChanged */, true /* deferResume */);
Andrii Kulian7318d632016-07-20 18:59:28 -07003856 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003857 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003858 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003859 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003860 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003861 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3862 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003863 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003864 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003865
3866 // Need to go through the full pause cycle to get this
3867 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003868 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003869 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003870 r.resumeKeyDispatchingLocked();
Wale Ogunwaled046a012015-12-24 13:05:59 -08003871 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003872 return r;
3873 }
3874
Craig Mautneree36c772014-07-16 14:56:05 -07003875 void finishAllActivitiesLocked(boolean immediately) {
3876 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003877 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3878 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3879 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3880 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003881 noActivitiesInStack = false;
3882 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003883 continue;
3884 }
Craig Mautneree36c772014-07-16 14:56:05 -07003885 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Bryce Leef52974c2018-02-14 15:12:01 -08003886 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false,
3887 "finishAllActivitiesLocked");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003888 }
3889 }
Craig Mautneree36c772014-07-16 14:56:05 -07003890 if (noActivitiesInStack) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07003891 remove();
Craig Mautneree36c772014-07-16 14:56:05 -07003892 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003893 }
3894
Wale Ogunwale66e16852017-10-19 13:35:52 -07003895 /** @return true if the stack behind this one is a standard activity type. */
3896 boolean inFrontOfStandardStack() {
3897 final ActivityDisplay display = getDisplay();
3898 if (display == null) {
3899 return false;
3900 }
3901 final int index = display.getIndexOf(this);
3902 if (index == 0) {
3903 return false;
3904 }
3905 final ActivityStack stackBehind = display.getChildAt(index - 1);
3906 return stackBehind.isActivityTypeStandard();
3907 }
3908
3909 boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003910 // Basic case: for simple app-centric recents, we need to recreate
3911 // the task if the affinity has changed.
Bryce Leeaf691c02017-03-20 14:20:22 -07003912 if (srec == null || srec.getTask().affinity == null ||
3913 !srec.getTask().affinity.equals(destAffinity)) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003914 return true;
3915 }
3916 // Document-centric case: an app may be split in to multiple documents;
3917 // they need to re-create their task if this current activity is the root
3918 // of a document, unless simply finishing it will return them to the the
3919 // correct app behind.
Bryce Leeaf691c02017-03-20 14:20:22 -07003920 final TaskRecord task = srec.getTask();
Wale Ogunwale66e16852017-10-19 13:35:52 -07003921 if (srec.frontOfTask && task.getBaseIntent() != null && task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003922 // Okay, this activity is at the root of its task. What to do, what to do...
Wale Ogunwale66e16852017-10-19 13:35:52 -07003923 if (!inFrontOfStandardStack()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003924 // Finishing won't return to an application, so we need to recreate.
3925 return true;
3926 }
3927 // We now need to get the task below it to determine what to do.
Bryce Leeaf691c02017-03-20 14:20:22 -07003928 int taskIdx = mTaskHistory.indexOf(task);
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003929 if (taskIdx <= 0) {
3930 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3931 return false;
3932 }
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07003933 final TaskRecord prevTask = mTaskHistory.get(taskIdx);
Bryce Leeaf691c02017-03-20 14:20:22 -07003934 if (!task.affinity.equals(prevTask.affinity)) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003935 // These are different apps, so need to recreate.
3936 return true;
3937 }
3938 }
3939 return false;
3940 }
3941
Wale Ogunwale7d701172015-03-11 15:36:30 -07003942 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003943 Intent resultData) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003944 final TaskRecord task = srec.getTask();
Craig Mautner0247fc82013-02-28 14:32:06 -08003945 final ArrayList<ActivityRecord> activities = task.mActivities;
3946 final int start = activities.indexOf(srec);
3947 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003948 return false;
3949 }
3950 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003951 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003952 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003953 final ComponentName dest = destIntent.getComponent();
3954 if (start > 0 && dest != null) {
3955 for (int i = finishTo; i >= 0; i--) {
3956 ActivityRecord r = activities.get(i);
3957 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003958 r.info.name.equals(dest.getClassName())) {
3959 finishTo = i;
3960 parent = r;
3961 foundParentInTask = true;
3962 break;
3963 }
3964 }
3965 }
3966
3967 IActivityController controller = mService.mController;
3968 if (controller != null) {
3969 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3970 if (next != null) {
3971 // ask watcher if this is allowed
3972 boolean resumeOK = true;
3973 try {
3974 resumeOK = controller.activityResuming(next.packageName);
3975 } catch (RemoteException e) {
3976 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003977 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003978 }
3979
3980 if (!resumeOK) {
3981 return false;
3982 }
3983 }
3984 }
3985 final long origId = Binder.clearCallingIdentity();
3986 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003987 ActivityRecord r = activities.get(i);
3988 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003989 // Only return the supplied result for the first activity finished
3990 resultCode = Activity.RESULT_CANCELED;
3991 resultData = null;
3992 }
3993
3994 if (parent != null && foundParentInTask) {
3995 final int parentLaunchMode = parent.info.launchMode;
3996 final int destIntentFlags = destIntent.getFlags();
3997 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3998 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3999 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
4000 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004001 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
4002 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004003 } else {
4004 try {
4005 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
Philip P. Moltmanncff8f0f2018-03-27 12:51:51 -07004006 destIntent.getComponent(), ActivityManagerService.STOCK_PM_FLAGS,
4007 srec.userId);
Bryce Lee4c9a5972017-12-01 22:14:24 -08004008 // TODO(b/64750076): Check if calling pid should really be -1.
4009 final int res = mService.getActivityStartController()
4010 .obtainStarter(destIntent, "navigateUpTo")
4011 .setCaller(srec.app.thread)
4012 .setActivityInfo(aInfo)
4013 .setResultTo(parent.appToken)
4014 .setCallingPid(-1)
4015 .setCallingUid(parent.launchedFromUid)
4016 .setCallingPackage(parent.launchedFromPackage)
4017 .setRealCallingPid(-1)
4018 .setRealCallingUid(parent.launchedFromUid)
4019 .setComponentSpecified(true)
4020 .execute();
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004021 foundParentInTask = res == ActivityManager.START_SUCCESS;
4022 } catch (RemoteException e) {
4023 foundParentInTask = false;
4024 }
4025 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08004026 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004027 }
4028 }
4029 Binder.restoreCallingIdentity(origId);
4030 return foundParentInTask;
4031 }
Bryce Leeaf691c02017-03-20 14:20:22 -07004032
4033 /**
4034 * Remove any state associated with the {@link ActivityRecord}. This should be called whenever
4035 * an activity moves away from the stack.
4036 */
4037 void onActivityRemovedFromStack(ActivityRecord r) {
Bryce Lee84730a02018-04-03 14:10:04 -07004038 removeTimeoutsForActivityLocked(r);
4039
4040 if (mResumedActivity != null && mResumedActivity == r) {
4041 setResumedActivity(null, "onActivityRemovedFromStack");
Bryce Leeaf691c02017-03-20 14:20:22 -07004042 }
Bryce Lee84730a02018-04-03 14:10:04 -07004043 if (mPausingActivity != null && mPausingActivity == r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07004044 mPausingActivity = null;
4045 }
Bryce Lee84730a02018-04-03 14:10:04 -07004046 }
Bryce Leeaf691c02017-03-20 14:20:22 -07004047
Bryce Lee84730a02018-04-03 14:10:04 -07004048 void onActivityAddedToStack(ActivityRecord r) {
4049 if(r.getState() == RESUMED) {
4050 setResumedActivity(r, "onActivityAddedToStack");
4051 }
Bryce Leeaf691c02017-03-20 14:20:22 -07004052 }
4053
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004054 /**
4055 * Perform the common clean-up of an activity record. This is called both
4056 * as part of destroyActivityLocked() (when destroying the client-side
4057 * representation) and cleaning things up as a result of its hosting
4058 * processing going away, in which case there is no remaining client-side
4059 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08004060 *
4061 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004062 */
Bryce Leec9406602018-03-09 11:02:10 -08004063 private void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices, boolean setState) {
Bryce Leeaf691c02017-03-20 14:20:22 -07004064 onActivityRemovedFromStack(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004065
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004066 r.deferRelaunchUntilPaused = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004067 r.frozenBeforeDestroy = false;
4068
Bryce Leec9406602018-03-09 11:02:10 -08004069 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004070 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Bryce Lee7ace3952018-02-16 14:34:32 -08004071 r.setState(DESTROYED, "cleanupActivityLocked");
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004072 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004073 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004074 }
4075
Bryce Lee4a194382017-04-04 14:32:48 -07004076 // Inform supervisor the activity has been removed.
4077 mStackSupervisor.cleanupActivity(r);
4078
Craig Mautner2420ead2013-04-01 17:13:20 -07004079
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004080 // Remove any pending results.
4081 if (r.finishing && r.pendingResults != null) {
4082 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
4083 PendingIntentRecord rec = apr.get();
4084 if (rec != null) {
4085 mService.cancelIntentSenderLocked(rec, false);
4086 }
4087 }
4088 r.pendingResults = null;
4089 }
4090
4091 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07004092 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004093 }
4094
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004095 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004096 removeTimeoutsForActivityLocked(r);
Wale Ogunwale8fd75422016-06-24 14:20:37 -07004097 // Clean-up activities are no longer relaunching (e.g. app process died). Notify window
4098 // manager so it can update its bookkeeping.
4099 mWindowManager.notifyAppRelaunchesCleared(r.appToken);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004100 }
4101
Winson Chung4dabf232017-01-25 13:25:22 -08004102 void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07004103 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004104 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07004105 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07004106 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07004107 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004108 }
4109
Chong Zhangbffd8892016-08-08 11:16:06 -07004110 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004111 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07004112 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004113 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
4114 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
4115
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004116 r.takeFromHistory();
4117 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004118 if (DEBUG_STATES) Slog.v(TAG_STATES,
4119 "Moving to DESTROYED: " + r + " (removed from history)");
Bryce Lee7ace3952018-02-16 14:34:32 -08004120 r.setState(DESTROYED, "removeActivityFromHistoryLocked");
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004121 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004122 r.app = null;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08004123 r.removeWindowContainer();
Bryce Leeaf691c02017-03-20 14:20:22 -07004124 final TaskRecord task = r.getTask();
Bryce Leeaa5e8c32017-03-01 16:01:06 -08004125 final boolean lastActivity = task != null ? task.removeActivity(r) : false;
Winson Chung6954fc92017-03-24 16:22:12 -07004126 // If we are removing the last activity in the task, not including task overlay activities,
4127 // then fall through into the block below to remove the entire task itself
4128 final boolean onlyHasTaskOverlays = task != null
4129 ? task.onlyHasTaskOverlayActivities(false /* excludingFinishing */) : false;
Bryce Leeaa5e8c32017-03-01 16:01:06 -08004130
Winson Chung6954fc92017-03-24 16:22:12 -07004131 if (lastActivity || onlyHasTaskOverlays) {
4132 if (DEBUG_STACK) {
4133 Slog.i(TAG_STACK,
4134 "removeActivityFromHistoryLocked: last activity removed from " + this
4135 + " onlyHasTaskOverlays=" + onlyHasTaskOverlays);
4136 }
4137
Bryce Leed6d26752017-05-25 13:57:46 -07004138 // The following block can be executed multiple times if there is more than one overlay.
4139 // {@link ActivityStackSupervisor#removeTaskByIdLocked} handles this by reverse lookup
4140 // of the task by id and exiting early if not found.
Winson Chunge3c21e02017-04-11 18:02:17 -07004141 if (onlyHasTaskOverlays) {
4142 // When destroying a task, tell the supervisor to remove it so that any activity it
4143 // has can be cleaned up correctly. This is currently the only place where we remove
4144 // a task with the DESTROYING mode, so instead of passing the onlyHasTaskOverlays
4145 // state into removeTask(), we just clear the task here before the other residual
4146 // work.
4147 // TODO: If the callers to removeTask() changes such that we have multiple places
4148 // where we are destroying the task, move this back into removeTask()
4149 mStackSupervisor.removeTaskByIdLocked(task.taskId, false /* killProcess */,
Winson Chung0ec2a352017-10-26 11:38:30 -07004150 !REMOVE_FROM_RECENTS, PAUSE_IMMEDIATELY, reason);
Winson Chunge3c21e02017-04-11 18:02:17 -07004151 }
Bryce Lee1d930582017-05-01 08:35:24 -07004152
Bryce Leed6d26752017-05-25 13:57:46 -07004153 // We must keep the task around until all activities are destroyed. The following
4154 // statement will only execute once since overlays are also considered activities.
Bryce Lee1d930582017-05-01 08:35:24 -07004155 if (lastActivity) {
4156 removeTask(task, reason, REMOVE_TASK_MODE_DESTROYING);
4157 }
Craig Mautner312ba862014-02-10 17:55:01 -08004158 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004159 cleanUpActivityServicesLocked(r);
4160 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004161 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004162
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004163 /**
4164 * Perform clean-up of service connections in an activity record.
4165 */
Andrii Kulian21713ac2016-10-12 22:05:05 -07004166 private void cleanUpActivityServicesLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004167 // Throw away any services that have been bound by this activity.
4168 if (r.connections != null) {
4169 Iterator<ConnectionRecord> it = r.connections.iterator();
4170 while (it.hasNext()) {
4171 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07004172 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004173 }
4174 r.connections = null;
4175 }
4176 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004177
Craig Mautneree2e45a2014-06-27 12:10:03 -07004178 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004179 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004180 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004181 mHandler.sendMessage(msg);
4182 }
4183
Andrii Kulian21713ac2016-10-12 22:05:05 -07004184 private void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004185 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004186 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004187 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4188 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4189 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4190 final ActivityRecord r = activities.get(activityNdx);
4191 if (r.finishing) {
4192 continue;
4193 }
4194 if (r.fullscreen) {
4195 lastIsOpaque = true;
4196 }
4197 if (owner != null && r.app != owner) {
4198 continue;
4199 }
4200 if (!lastIsOpaque) {
4201 continue;
4202 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004203 if (r.isDestroyable()) {
Bryce Lee7ace3952018-02-16 14:34:32 -08004204 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r
4205 + " in state " + r.getState()
Craig Mautnerd44711d2013-02-23 11:24:36 -08004206 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004207 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004208 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004209 activityRemoved = true;
4210 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004211 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004212 }
4213 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004214 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08004215 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004216 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004217 }
4218
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004219 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
4220 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004221 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Bryce Lee7ace3952018-02-16 14:34:32 -08004222 "Destroying " + r + " in state " + r.getState() + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004223 + " pausing=" + mPausingActivity + " for reason " + reason);
4224 return destroyActivityLocked(r, true, reason);
4225 }
4226 return false;
4227 }
4228
4229 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
4230 String reason) {
4231 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004232 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004233 int maxTasks = tasks.size() / 4;
4234 if (maxTasks < 1) {
4235 maxTasks = 1;
4236 }
4237 int numReleased = 0;
4238 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
4239 final TaskRecord task = mTaskHistory.get(taskNdx);
4240 if (!tasks.contains(task)) {
4241 continue;
4242 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004243 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004244 int curNum = 0;
4245 final ArrayList<ActivityRecord> activities = task.mActivities;
4246 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
4247 final ActivityRecord activity = activities.get(actNdx);
4248 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004249 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Bryce Lee7ace3952018-02-16 14:34:32 -08004250 + " in state " + activity.getState() + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004251 + " pausing=" + mPausingActivity + " for reason " + reason);
4252 destroyActivityLocked(activity, true, reason);
4253 if (activities.get(actNdx) != activity) {
4254 // Was removed from list, back up so we don't miss the next one.
4255 actNdx--;
4256 }
4257 curNum++;
4258 }
4259 }
4260 if (curNum > 0) {
4261 numReleased += curNum;
4262 maxTasks--;
4263 if (mTaskHistory.get(taskNdx) != task) {
4264 // The entire task got removed, back up so we don't miss the next one.
4265 taskNdx--;
4266 }
4267 }
4268 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004269 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
4270 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004271 return numReleased;
4272 }
4273
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004274 /**
4275 * Destroy the current CLIENT SIDE instance of an activity. This may be
4276 * called both when actually finishing an activity, or when performing
4277 * a configuration switch where we destroy the current client-side object
4278 * but then create a new client-side object for this same HistoryRecord.
4279 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07004280 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004281 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
4282 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004283 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Bryce Leeb0f993f2018-03-02 15:38:01 -08004284
4285 if (r.isState(DESTROYING, DESTROYED)) {
Bryce Leec9406602018-03-09 11:02:10 -08004286 if (DEBUG_STATES) Slog.v(TAG_STATES, "activity " + r + " already destroying."
Bryce Leeb0f993f2018-03-02 15:38:01 -08004287 + "skipping request with reason:" + reason);
4288 return false;
4289 }
4290
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004291 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004292 r.userId, System.identityHashCode(r),
Bryce Leeaf691c02017-03-20 14:20:22 -07004293 r.getTask().taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004294
4295 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004296
Bryce Leec9406602018-03-09 11:02:10 -08004297 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004298
4299 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004300
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004301 if (hadApp) {
4302 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004303 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004304 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
4305 mService.mHeavyWeightProcess = null;
4306 mService.mHandler.sendEmptyMessage(
4307 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
4308 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004309 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07004310 // Update any services we are bound to that might care about whether
4311 // their client may have activities.
4312 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07004313 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07004314 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07004315 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004316 }
4317 }
4318
4319 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004320
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004321 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004322 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Bryce Leeb0f993f2018-03-02 15:38:01 -08004323 mService.getLifecycleManager().scheduleTransaction(r.app.thread, r.appToken,
Bryce Lee1d0d5142018-04-12 10:35:07 -07004324 DestroyActivityItem.obtain(r.finishing, r.configChangeFlags));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004325 } catch (Exception e) {
4326 // We can just ignore exceptions here... if the process
4327 // has crashed, our death notification will clean things
4328 // up.
4329 //Slog.w(TAG, "Exception thrown during finish", e);
4330 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004331 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004332 removedFromHistory = true;
4333 skipDestroy = true;
4334 }
4335 }
4336
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004337 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004338
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004339 // If the activity is finishing, we need to wait on removing it
4340 // from the list to give it a chance to do its cleanup. During
4341 // that time it may make calls back with its token so we need to
4342 // be able to find it on the list and so we don't want to remove
4343 // it from the list yet. Otherwise, we can just immediately put
4344 // it in the destroyed state since we are not removing it from the
4345 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004346 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004347 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004348 + " (destroy requested)");
Bryce Lee7ace3952018-02-16 14:34:32 -08004349 r.setState(DESTROYING,
4350 "destroyActivityLocked. finishing and not skipping destroy");
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07004351 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004352 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
4353 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004354 if (DEBUG_STATES) Slog.v(TAG_STATES,
4355 "Moving to DESTROYED: " + r + " (destroy skipped)");
Bryce Lee7ace3952018-02-16 14:34:32 -08004356 r.setState(DESTROYED,
4357 "destroyActivityLocked. not finishing or skipping destroy");
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004358 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004359 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004360 }
4361 } else {
4362 // remove this record from the history.
4363 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004364 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004365 removedFromHistory = true;
4366 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004367 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Bryce Lee7ace3952018-02-16 14:34:32 -08004368 r.setState(DESTROYED, "destroyActivityLocked. not finishing and had no app");
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004369 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004370 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004371 }
4372 }
4373
4374 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004375
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004376 if (!mLRUActivities.remove(r) && hadApp) {
4377 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
4378 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004379
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004380 return removedFromHistory;
4381 }
4382
Craig Mautner299f9602015-01-26 09:47:33 -08004383 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004384 final long origId = Binder.clearCallingIdentity();
4385 try {
Bryce Lee7ace3952018-02-16 14:34:32 -08004386 activityDestroyedLocked(ActivityRecord.forTokenLocked(token), reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08004387 } finally {
4388 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004389 }
4390 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004391
Bryce Leec9406602018-03-09 11:02:10 -08004392 /**
4393 * This method is to only be called from the client via binder when the activity is destroyed
4394 * AND finished.
4395 */
Bryce Lee7ace3952018-02-16 14:34:32 -08004396 final void activityDestroyedLocked(ActivityRecord record, String reason) {
4397 if (record != null) {
4398 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, record);
4399 }
4400
4401 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + record);
4402
4403 if (isInStackLocked(record) != null) {
4404 if (record.isState(DESTROYING, DESTROYED)) {
Bryce Leec9406602018-03-09 11:02:10 -08004405 cleanUpActivityLocked(record, true, false);
Bryce Lee7ace3952018-02-16 14:34:32 -08004406 removeActivityFromHistoryLocked(record, reason);
4407 }
4408 }
4409
4410 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4411 }
4412
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004413 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
4414 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004415 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004416 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4417 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004418 while (i > 0) {
4419 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004420 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004421 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004422 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004423 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004424 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004425 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004426 }
4427 }
4428 }
4429
Andrii Kulian21713ac2016-10-12 22:05:05 -07004430 private boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004431 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004432 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
4433 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07004434 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
4435 "mGoingToSleepActivities");
Bryce Lee4a194382017-04-04 14:32:48 -07004436 removeHistoryRecordsForAppLocked(mStackSupervisor.mActivitiesWaitingForVisibleActivity, app,
4437 "mActivitiesWaitingForVisibleActivity");
Craig Mautnerf3333272013-04-22 10:55:53 -07004438 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
4439 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004440
4441 boolean hasVisibleActivities = false;
4442
4443 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08004444 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004445 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4446 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08004447 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4448 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Bryce Leefbd263b42018-03-07 10:33:55 -08004449 mTmpActivities.clear();
4450 mTmpActivities.addAll(activities);
4451
4452 while (!mTmpActivities.isEmpty()) {
4453 final int targetIndex = mTmpActivities.size() - 1;
4454 final ActivityRecord r = mTmpActivities.remove(targetIndex);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004455 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
Bryce Leefbd263b42018-03-07 10:33:55 -08004456 "Record #" + targetIndex + " " + r + ": app=" + r.app);
4457
Craig Mautner0247fc82013-02-28 14:32:06 -08004458 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08004459 if (r.visible) {
4460 hasVisibleActivities = true;
4461 }
Craig Mautneracebdc82015-02-24 10:53:03 -08004462 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08004463 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
4464 // Don't currently have state for the activity, or
4465 // it is finishing -- always remove it.
4466 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004467 } else if (!r.visible && r.launchCount > 2 &&
4468 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08004469 // We have launched this activity too many times since it was
4470 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08004471 // (Note if the activity is visible, we don't remove the record.
4472 // We leave the dead window on the screen but the process will
4473 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08004474 remove = true;
4475 } else {
4476 // The process may be gone, but the activity lives on!
4477 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004478 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004479 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004480 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
4481 "Removing activity " + r + " from stack at " + i
4482 + ": haveState=" + r.haveState
4483 + " stateNotNeeded=" + r.stateNotNeeded
4484 + " finishing=" + r.finishing
Bryce Lee7ace3952018-02-16 14:34:32 -08004485 + " state=" + r.getState() + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08004486 if (!r.finishing) {
4487 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
4488 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
4489 r.userId, System.identityHashCode(r),
Bryce Leeaf691c02017-03-20 14:20:22 -07004490 r.getTask().taskId, r.shortComponentName,
Craig Mautner0247fc82013-02-28 14:32:06 -08004491 "proc died without state saved");
Bryce Lee7ace3952018-02-16 14:34:32 -08004492 if (r.getState() == RESUMED) {
Jeff Sharkey5782da72013-04-25 14:32:30 -07004493 mService.updateUsageStats(r, false);
4494 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004495 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004496 } else {
4497 // We have the current state for this activity, so
4498 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004499 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
4500 if (DEBUG_APP) Slog.v(TAG_APP,
4501 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08004502 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004503 // Set nowVisible to previous visible state. If the app was visible while
4504 // it died, we leave the dead window on screen so it's basically visible.
4505 // This is needed when user later tap on the dead window, we need to stop
4506 // other apps when user transfers focus to the restarted activity.
4507 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08004508 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004509 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08004510 "App died, clearing saved state of " + r);
4511 r.icicle = null;
4512 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004513 }
Bryce Leec9406602018-03-09 11:02:10 -08004514 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08004515 if (remove) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004516 removeActivityFromHistoryLocked(r, "appDied");
Craig Mautneracebdc82015-02-24 10:53:03 -08004517 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004518 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004519 }
4520 }
4521
4522 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004523 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004524
chaviw0d562bf2018-03-15 14:24:14 -07004525 private void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004526 if (options != null) {
chaviw0d562bf2018-03-15 14:24:14 -07004527 ActivityRecord r = topRunningActivityLocked();
4528 if (r != null && !r.isState(RESUMED)) {
4529 r.updateOptionsLocked(options);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004530 } else {
4531 ActivityOptions.abort(options);
4532 }
4533 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004534 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004535 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08004536
Andrii Kulian21713ac2016-10-12 22:05:05 -07004537 private void updateTaskMovement(TaskRecord task, boolean toFront) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004538 if (task.isPersistable) {
4539 task.mLastTimeMoved = System.currentTimeMillis();
4540 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
4541 // recently will be most negative, tasks sent to the bottom before that will be less
4542 // negative. Similarly for recent tasks moved to the top which will be most positive.
4543 if (!toFront) {
4544 task.mLastTimeMoved *= -1;
4545 }
4546 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07004547 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07004548 }
4549
Matthew Ngae1ff4f2016-11-10 15:49:14 -08004550 void moveHomeStackTaskToTop() {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07004551 if (!isActivityTypeHome()) {
4552 throw new IllegalStateException("Calling moveHomeStackTaskToTop() on non-home stack: "
4553 + this);
4554 }
Craig Mautnera82aa092013-09-13 15:34:08 -07004555 final int top = mTaskHistory.size() - 1;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07004556 if (top >= 0) {
4557 final TaskRecord task = mTaskHistory.get(top);
4558 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
4559 "moveHomeStackTaskToTop: moving " + task);
4560 mTaskHistory.remove(top);
4561 mTaskHistory.add(top, task);
4562 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07004563 }
4564 }
4565
chaviw0d562bf2018-03-15 14:24:14 -07004566 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
4567 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004568 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004569
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004570 final ActivityStack topStack = getDisplay().getTopStack();
Wale Ogunwale30e441d2017-11-09 08:28:45 -08004571 final ActivityRecord topActivity = topStack != null ? topStack.getTopActivity() : null;
Craig Mautner11bf9a52013-02-19 14:08:51 -08004572 final int numTasks = mTaskHistory.size();
4573 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07004574 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004575 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004576 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004577 ActivityOptions.abort(options);
4578 } else {
chaviw0d562bf2018-03-15 14:24:14 -07004579 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004580 }
4581 return;
4582 }
4583
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004584 if (timeTracker != null) {
4585 // The caller wants a time tracker associated with this task.
4586 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4587 tr.mActivities.get(i).appTimeTracker = timeTracker;
4588 }
4589 }
4590
Chavi Weingarten3a748552018-05-14 17:32:42 +00004591 try {
4592 // Defer updating the IME target since the new IME target will try to get computed
4593 // before updating all closing and opening apps, which can cause the ime target to
4594 // get calculated incorrectly.
4595 getDisplay().deferUpdateImeTarget();
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004596
Chavi Weingarten3a748552018-05-14 17:32:42 +00004597 // Shift all activities with this task up to the top
4598 // of the stack, keeping them in the same internal order.
4599 insertTaskAtTop(tr, null);
4600
4601 // Don't refocus if invisible to current user
4602 final ActivityRecord top = tr.getTopActivity();
4603 if (top == null || !top.okToShowLocked()) {
4604 if (top != null) {
4605 mStackSupervisor.mRecentTasks.add(top.getTask());
4606 }
4607 ActivityOptions.abort(options);
4608 return;
Winson Chung1dbc8112017-09-28 18:05:31 -07004609 }
Chavi Weingarten9e875b62018-05-14 16:10:59 +00004610
Chavi Weingarten3a748552018-05-14 17:32:42 +00004611 // Set focus to the top running activity of this stack.
4612 final ActivityRecord r = topRunningActivityLocked();
4613 mStackSupervisor.moveFocusableActivityStackToFrontLocked(r, reason);
Chavi Weingarten9e875b62018-05-14 16:10:59 +00004614
Chavi Weingarten3a748552018-05-14 17:32:42 +00004615 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
4616 if (noAnimation) {
4617 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
4618 if (r != null) {
4619 mStackSupervisor.mNoAnimActivities.add(r);
4620 }
4621 ActivityOptions.abort(options);
4622 } else {
4623 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Chavi Weingarten9e875b62018-05-14 16:10:59 +00004624 }
Chavi Weingarten3a748552018-05-14 17:32:42 +00004625 // If a new task is moved to the front, then mark the existing top activity as
4626 // supporting
Chavi Weingarten9e875b62018-05-14 16:10:59 +00004627
Chavi Weingarten3a748552018-05-14 17:32:42 +00004628 // picture-in-picture while paused only if the task would not be considered an oerlay
4629 // on top
4630 // of the current activity (eg. not fullscreen, or the assistant)
4631 if (canEnterPipOnTaskSwitch(topActivity, tr, null /* toFrontActivity */,
4632 options)) {
4633 topActivity.supportsEnterPipOnTaskSwitch = true;
4634 }
Chavi Weingarten9e875b62018-05-14 16:10:59 +00004635
Chavi Weingarten3a748552018-05-14 17:32:42 +00004636 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4637 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
4638
4639 mService.mTaskChangeNotificationController.notifyTaskMovedToFront(tr.taskId);
4640 } finally {
4641 getDisplay().continueUpdateImeTarget();
4642 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004643 }
4644
4645 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004646 * Worker method for rearranging history stack. Implements the function of moving all
4647 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004648 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004649 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004650 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4651 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004652 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004653 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004654 * @return Returns true if the move completed, false if not.
4655 */
Craig Mautner299f9602015-01-26 09:47:33 -08004656 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004657 final TaskRecord tr = taskForIdLocked(taskId);
4658 if (tr == null) {
4659 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4660 return false;
4661 }
Craig Mautneraea74a52014-03-08 14:23:10 -08004662 Slog.i(TAG, "moveTaskToBack: " + tr);
Winson Chung261c0f32017-03-07 16:54:31 -08004663
Charles Heff9b4dff2017-09-22 10:18:37 +01004664 // In LockTask mode, moving a locked task to the back of the stack may expose unlocked
4665 // ones. Therefore we need to check if this operation is allowed.
Bryce Lee2b8e0372018-04-05 17:01:37 -07004666 if (!mService.getLockTaskController().canMoveTaskToBack(tr)) {
Winson Chung261c0f32017-03-07 16:54:31 -08004667 return false;
4668 }
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004669
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004670 // If we have a watcher, preflight the move before committing to it. First check
4671 // for *other* available tasks, but if none are available, then try again allowing the
4672 // current task to be selected.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004673 if (isTopStackOnDisplay() && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004674 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004675 if (next == null) {
4676 next = topRunningActivityLocked(null, 0);
4677 }
4678 if (next != null) {
4679 // ask watcher if this is allowed
4680 boolean moveOK = true;
4681 try {
4682 moveOK = mService.mController.activityResuming(next.packageName);
4683 } catch (RemoteException e) {
4684 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07004685 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004686 }
4687 if (!moveOK) {
4688 return false;
4689 }
4690 }
4691 }
4692
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004693 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004694
Wale Ogunwale66e16852017-10-19 13:35:52 -07004695 mTaskHistory.remove(tr);
4696 mTaskHistory.add(0, tr);
4697 updateTaskMovement(tr, false);
Wale Ogunwale42709242015-08-11 13:54:42 -07004698
Wale Ogunwale66e16852017-10-19 13:35:52 -07004699 mWindowManager.prepareAppTransition(TRANSIT_TASK_TO_BACK, false);
Evan Rosky9c448172017-11-02 14:19:27 -07004700 moveToBack("moveTaskToBackLocked", tr);
Winson Chung261c0f32017-03-07 16:54:31 -08004701
Wale Ogunwale44f036f2017-09-29 05:09:09 -07004702 if (inPinnedWindowingMode()) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004703 mStackSupervisor.removeStack(this);
Winson Chung261c0f32017-03-07 16:54:31 -08004704 return true;
4705 }
4706
Wale Ogunwaled046a012015-12-24 13:05:59 -08004707 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004708 return true;
4709 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004710
Andrii Kulian21713ac2016-10-12 22:05:05 -07004711 static void logStartActivity(int tag, ActivityRecord r, TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004712 final Uri data = r.intent.getData();
4713 final String strData = data != null ? data.toSafeString() : null;
4714
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004715 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004716 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004717 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004718 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004719 }
4720
4721 /**
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004722 * Ensures all visible activities at or below the input activity have the right configuration.
4723 */
4724 void ensureVisibleActivitiesConfigurationLocked(ActivityRecord start, boolean preserveWindow) {
4725 if (start == null || !start.visible) {
4726 return;
4727 }
4728
Bryce Leeaf691c02017-03-20 14:20:22 -07004729 final TaskRecord startTask = start.getTask();
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004730 boolean behindFullscreen = false;
4731 boolean updatedConfig = false;
4732
4733 for (int taskIndex = mTaskHistory.indexOf(startTask); taskIndex >= 0; --taskIndex) {
4734 final TaskRecord task = mTaskHistory.get(taskIndex);
4735 final ArrayList<ActivityRecord> activities = task.mActivities;
4736 int activityIndex =
Bryce Leeaf691c02017-03-20 14:20:22 -07004737 (start.getTask() == task) ? activities.indexOf(start) : activities.size() - 1;
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004738 for (; activityIndex >= 0; --activityIndex) {
4739 final ActivityRecord r = activities.get(activityIndex);
Wale Ogunwaleb6d75f32018-02-22 20:44:56 -08004740 updatedConfig |= r.ensureActivityConfiguration(0 /* globalChanges */,
Andrii Kulian21713ac2016-10-12 22:05:05 -07004741 preserveWindow);
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004742 if (r.fullscreen) {
4743 behindFullscreen = true;
4744 break;
4745 }
4746 }
4747 if (behindFullscreen) {
4748 break;
4749 }
4750 }
4751 if (updatedConfig) {
Wale Ogunwale089586f2016-06-20 14:16:22 -07004752 // Ensure the resumed state of the focus activity if we updated the configuration of
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004753 // any activity.
4754 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4755 }
4756 }
4757
Wale Ogunwale1666e312016-12-16 11:27:18 -08004758 // TODO: Figure-out a way to consolidate with resize() method below.
4759 @Override
4760 public void requestResize(Rect bounds) {
4761 mService.resizeStack(mStackId, bounds, true /* allowResizeInDockedMode */,
4762 false /* preserveWindows */, false /* animate */, -1 /* animationDuration */);
4763 }
Andrii Kulian1e32e022016-09-16 15:29:34 -07004764
Wale Ogunwale1666e312016-12-16 11:27:18 -08004765 // TODO: Can only be called from special methods in ActivityStackSupervisor.
4766 // Need to consolidate those calls points into this resize method so anyone can call directly.
4767 void resize(Rect bounds, Rect tempTaskBounds, Rect tempTaskInsetBounds) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08004768 if (!updateBoundsAllowed(bounds, tempTaskBounds, tempTaskInsetBounds)) {
4769 return;
4770 }
4771
4772 // Update override configurations of all tasks in the stack.
4773 final Rect taskBounds = tempTaskBounds != null ? tempTaskBounds : bounds;
Andrii Kulian1e32e022016-09-16 15:29:34 -07004774 final Rect insetBounds = tempTaskInsetBounds != null ? tempTaskInsetBounds : taskBounds;
4775
4776 mTmpBounds.clear();
Andrii Kulian1e32e022016-09-16 15:29:34 -07004777 mTmpInsetBounds.clear();
4778
chaviwbe43ac82018-04-04 15:14:49 -07004779 synchronized (mWindowManager.getWindowManagerLock()) {
4780 for (int i = mTaskHistory.size() - 1; i >= 0; i--) {
4781 final TaskRecord task = mTaskHistory.get(i);
4782 if (task.isResizeable()) {
4783 if (inFreeformWindowingMode()) {
4784 // TODO: Can be removed now since each freeform task is in its own stack.
4785 // For freeform stack we don't adjust the size of the tasks to match that
4786 // of the stack, but we do try to make sure the tasks are still contained
4787 // with the bounds of the stack.
4788 mTmpRect2.set(task.getOverrideBounds());
4789 fitWithinBounds(mTmpRect2, bounds);
4790 task.updateOverrideConfiguration(mTmpRect2);
4791 } else {
4792 task.updateOverrideConfiguration(taskBounds, insetBounds);
4793 }
4794 }
4795
4796 mTmpBounds.put(task.taskId, task.getOverrideBounds());
4797 if (tempTaskInsetBounds != null) {
4798 mTmpInsetBounds.put(task.taskId, tempTaskInsetBounds);
Andrii Kulian1e32e022016-09-16 15:29:34 -07004799 }
4800 }
4801
chaviwbe43ac82018-04-04 15:14:49 -07004802 mWindowContainerController.resize(bounds, mTmpBounds, mTmpInsetBounds);
4803 setBounds(bounds);
Andrii Kulian1e32e022016-09-16 15:29:34 -07004804 }
Andrii Kulian1e32e022016-09-16 15:29:34 -07004805 }
4806
Winson Chung15036ca2018-05-31 15:51:47 -07004807 void onPipAnimationEndResize() {
4808 mWindowContainerController.onPipAnimationEndResize();
4809 }
4810
Andrii Kulian1e32e022016-09-16 15:29:34 -07004811
4812 /**
4813 * Adjust bounds to stay within stack bounds.
4814 *
4815 * Since bounds might be outside of stack bounds, this method tries to move the bounds in a way
4816 * that keep them unchanged, but be contained within the stack bounds.
4817 *
4818 * @param bounds Bounds to be adjusted.
4819 * @param stackBounds Bounds within which the other bounds should remain.
4820 */
4821 private static void fitWithinBounds(Rect bounds, Rect stackBounds) {
Bryce Leef3c6a472017-11-14 14:53:06 -08004822 if (stackBounds == null || stackBounds.isEmpty() || stackBounds.contains(bounds)) {
Andrii Kulian1e32e022016-09-16 15:29:34 -07004823 return;
4824 }
4825
4826 if (bounds.left < stackBounds.left || bounds.right > stackBounds.right) {
4827 final int maxRight = stackBounds.right
4828 - (stackBounds.width() / FIT_WITHIN_BOUNDS_DIVIDER);
4829 int horizontalDiff = stackBounds.left - bounds.left;
4830 if ((horizontalDiff < 0 && bounds.left >= maxRight)
4831 || (bounds.left + horizontalDiff >= maxRight)) {
4832 horizontalDiff = maxRight - bounds.left;
4833 }
4834 bounds.left += horizontalDiff;
4835 bounds.right += horizontalDiff;
4836 }
4837
4838 if (bounds.top < stackBounds.top || bounds.bottom > stackBounds.bottom) {
4839 final int maxBottom = stackBounds.bottom
4840 - (stackBounds.height() / FIT_WITHIN_BOUNDS_DIVIDER);
4841 int verticalDiff = stackBounds.top - bounds.top;
4842 if ((verticalDiff < 0 && bounds.top >= maxBottom)
4843 || (bounds.top + verticalDiff >= maxBottom)) {
4844 verticalDiff = maxBottom - bounds.top;
4845 }
4846 bounds.top += verticalDiff;
4847 bounds.bottom += verticalDiff;
4848 }
4849 }
4850
Craig Mautnercae015f2013-02-08 14:31:27 -08004851 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004852 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4853 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4854 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4855 final ActivityRecord r = activities.get(activityNdx);
4856 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004857 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004858 }
4859 if (r.fullscreen && !r.finishing) {
4860 return false;
4861 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004862 }
4863 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004864 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004865 if (r == null) {
4866 return false;
4867 }
4868 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4869 + " would have returned true for r=" + r);
4870 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004871 }
4872
4873 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004874 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4875 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4876 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4877 final ActivityRecord r = activities.get(activityNdx);
4878 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004879 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004880 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004881 }
4882 }
4883 }
4884
Wale Ogunwale540e1232015-05-01 15:35:39 -07004885 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4886 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004887 boolean didSomething = false;
4888 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004889 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004890 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4891 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Bryce Leefbd263b42018-03-07 10:33:55 -08004892 mTmpActivities.clear();
4893 mTmpActivities.addAll(activities);
4894
4895 while (!mTmpActivities.isEmpty()) {
4896 ActivityRecord r = mTmpActivities.remove(0);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004897 final boolean sameComponent =
4898 (r.packageName.equals(packageName) && (filterByClasses == null
4899 || filterByClasses.contains(r.realActivity.getClassName())))
4900 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004901 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Bryce Leeaf691c02017-03-20 14:20:22 -07004902 && (sameComponent || r.getTask() == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004903 && (r.app == null || evenPersistent || !r.app.persistent)) {
4904 if (!doit) {
4905 if (r.finishing) {
4906 // If this activity is just finishing, then it is not
4907 // interesting as far as something to stop.
4908 continue;
4909 }
4910 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004911 }
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07004912 if (r.isActivityTypeHome()) {
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004913 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4914 Slog.i(TAG, "Skip force-stop again " + r);
4915 continue;
4916 } else {
4917 homeActivity = r.realActivity;
4918 }
4919 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004920 didSomething = true;
4921 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004922 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004923 if (r.app != null) {
4924 r.app.removed = true;
4925 }
4926 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004927 }
Bryce Leeaf691c02017-03-20 14:20:22 -07004928 lastTask = r.getTask();
Bryce Leefbd263b42018-03-07 10:33:55 -08004929 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4930 true);
Craig Mautnercae015f2013-02-08 14:31:27 -08004931 }
4932 }
4933 }
4934 return didSomething;
4935 }
4936
Winson Chung61c9e5a2017-10-11 10:39:32 -07004937 /**
4938 * @return The set of running tasks through {@param tasksOut} that are available to the caller.
4939 * If {@param ignoreActivityType} or {@param ignoreWindowingMode} are not undefined,
4940 * then skip running tasks that match those types.
4941 */
4942 void getRunningTasks(List<TaskRecord> tasksOut, @ActivityType int ignoreActivityType,
4943 @WindowingMode int ignoreWindowingMode, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004944 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4945 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004946 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004947 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004948 if (task.getTopActivity() == null) {
Winson Chung61c9e5a2017-10-11 10:39:32 -07004949 // Skip if there are no activities in the task
riddle_hsuddc74152015-04-07 11:30:09 +08004950 continue;
4951 }
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07004952 if (!allowed && !task.isActivityTypeHome() && task.effectiveUid != callingUid) {
Winson Chung61c9e5a2017-10-11 10:39:32 -07004953 // Skip if the caller can't fetch this task
Dianne Hackborn09233282014-04-30 11:33:59 -07004954 continue;
4955 }
Winson Chung61c9e5a2017-10-11 10:39:32 -07004956 if (ignoreActivityType != ACTIVITY_TYPE_UNDEFINED
4957 && task.getActivityType() == ignoreActivityType) {
4958 // Skip ignored activity type
4959 continue;
Craig Mautneraab647e2013-02-28 16:31:36 -08004960 }
Winson Chung61c9e5a2017-10-11 10:39:32 -07004961 if (ignoreWindowingMode != WINDOWING_MODE_UNDEFINED
4962 && task.getWindowingMode() == ignoreWindowingMode) {
4963 // Skip ignored windowing mode
4964 continue;
4965 }
riddle_hsuddc74152015-04-07 11:30:09 +08004966 if (focusedStack && topTask) {
Winson Chung61c9e5a2017-10-11 10:39:32 -07004967 // For the focused stack top task, update the last stack active time so that it can
4968 // be used to determine the order of the tasks (it may not be set for newly created
4969 // tasks)
4970 task.lastActiveTime = SystemClock.elapsedRealtime();
riddle_hsuddc74152015-04-07 11:30:09 +08004971 topTask = false;
4972 }
Winson Chung61c9e5a2017-10-11 10:39:32 -07004973 tasksOut.add(task);
Craig Mautnercae015f2013-02-08 14:31:27 -08004974 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004975 }
4976
Andrii Kulian21713ac2016-10-12 22:05:05 -07004977 void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004978 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004979 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004980 if (top >= 0) {
4981 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4982 int activityTop = activities.size() - 1;
Dianne Hackborn354736e2016-08-22 17:00:05 -07004983 if (activityTop >= 0) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004984 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4985 "unhandled-back", true);
4986 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004987 }
4988 }
4989
Craig Mautner6b74cb52013-09-27 17:02:21 -07004990 /**
4991 * Reset local parameters because an app's activity died.
4992 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004993 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004994 */
4995 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004996 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004997 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004998 "App died while pausing: " + mPausingActivity);
4999 mPausingActivity = null;
5000 }
5001 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
5002 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07005003 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07005004 }
5005
Craig Mautner19091252013-10-05 00:03:53 -07005006 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07005007 }
5008
Craig Mautnercae015f2013-02-08 14:31:27 -08005009 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08005010 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5011 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5012 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5013 final ActivityRecord r = activities.get(activityNdx);
5014 if (r.app == app) {
5015 Slog.w(TAG, " Force finishing activity "
5016 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07005017 // Force the destroy to skip right to removal.
5018 r.app = null;
Adrian Roos93577212018-04-10 14:12:10 -07005019 mWindowManager.prepareAppTransition(TRANSIT_CRASHING_ACTIVITY_CLOSE,
Jorim Jaggi9c52ebb2018-06-01 14:45:24 +02005020 false /* alwaysKeepCurrent */);
Bryce Leef52974c2018-02-14 15:12:01 -08005021 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false,
5022 "handleAppCrashedLocked");
Craig Mautnerd44711d2013-02-23 11:24:36 -08005023 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005024 }
5025 }
5026 }
5027
Dianne Hackborn390517b2013-05-30 15:03:32 -07005028 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Wale Ogunwale34a5b572017-08-31 08:29:41 -07005029 boolean dumpClient, String dumpPackage, boolean needSep) {
5030
5031 if (mTaskHistory.isEmpty()) {
5032 return false;
5033 }
5034 final String prefix = " ";
Craig Mautneraab647e2013-02-28 16:31:36 -08005035 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5036 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale34a5b572017-08-31 08:29:41 -07005037 if (needSep) {
5038 pw.println("");
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005039 }
Wale Ogunwale34a5b572017-08-31 08:29:41 -07005040 pw.println(prefix + "Task id #" + task.taskId);
Bryce Leef3c6a472017-11-14 14:53:06 -08005041 pw.println(prefix + "mBounds=" + task.getOverrideBounds());
Wale Ogunwale34a5b572017-08-31 08:29:41 -07005042 pw.println(prefix + "mMinWidth=" + task.mMinWidth);
5043 pw.println(prefix + "mMinHeight=" + task.mMinHeight);
5044 pw.println(prefix + "mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
5045 pw.println(prefix + "* " + task);
5046 task.dump(pw, prefix + " ");
5047 ActivityStackSupervisor.dumpHistoryList(fd, pw, mTaskHistory.get(taskNdx).mActivities,
5048 prefix, "Hist", true, !dumpAll, dumpClient, dumpPackage, false, null, task);
Craig Mautneraab647e2013-02-28 16:31:36 -08005049 }
Wale Ogunwale34a5b572017-08-31 08:29:41 -07005050 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08005051 }
5052
5053 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
Winson Chung6998bc42017-02-28 17:07:05 -08005054 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautnercae015f2013-02-08 14:31:27 -08005055
5056 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005057 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5058 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08005059 }
5060 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005061 final int top = mTaskHistory.size() - 1;
5062 if (top >= 0) {
5063 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
5064 int listTop = list.size() - 1;
5065 if (listTop >= 0) {
5066 activities.add(list.get(listTop));
5067 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005068 }
5069 } else {
5070 ItemMatcher matcher = new ItemMatcher();
5071 matcher.build(name);
5072
Craig Mautneraab647e2013-02-28 16:31:36 -08005073 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5074 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
5075 if (matcher.match(r1, r1.intent.getComponent())) {
5076 activities.add(r1);
5077 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005078 }
5079 }
5080 }
5081
5082 return activities;
5083 }
5084
5085 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07005086 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08005087
5088 // All activities that came from the package must be
5089 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08005090 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5091 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5092 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5093 final ActivityRecord a = activities.get(activityNdx);
5094 if (a.info.packageName.equals(packageName)) {
5095 a.forceNewConfig = true;
5096 if (starting != null && a == starting && a.visible) {
5097 a.startFreezingScreenLocked(starting.app,
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08005098 CONFIG_SCREEN_LAYOUT);
Craig Mautneraab647e2013-02-28 16:31:36 -08005099 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005100 }
5101 }
5102 }
5103
5104 return starting;
5105 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005106
Wale Ogunwale000957c2015-04-03 08:19:12 -07005107 /**
5108 * Removes the input task from this stack.
5109 * @param task to remove.
5110 * @param reason for removal.
Wale Ogunwale06579d62016-04-30 15:29:06 -07005111 * @param mode task removal mode. Either {@link #REMOVE_TASK_MODE_DESTROYING},
5112 * {@link #REMOVE_TASK_MODE_MOVING}, {@link #REMOVE_TASK_MODE_MOVING_TO_TOP}.
Wale Ogunwale000957c2015-04-03 08:19:12 -07005113 */
Wale Ogunwale06579d62016-04-30 15:29:06 -07005114 void removeTask(TaskRecord task, String reason, int mode) {
Bryce Leeaf691c02017-03-20 14:20:22 -07005115 for (ActivityRecord record : task.mActivities) {
5116 onActivityRemovedFromStack(record);
Craig Mautner04a0ea62014-01-13 12:51:26 -08005117 }
5118
Bryce Lee2b8e0372018-04-05 17:01:37 -07005119 final boolean removed = mTaskHistory.remove(task);
5120
5121 if (removed) {
5122 EventLog.writeEvent(EventLogTags.AM_REMOVE_TASK, task.taskId, getStackId());
5123 }
5124
Winson Chungabb433b2017-03-24 09:35:42 -07005125 removeActivitiesFromLRUListLocked(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07005126 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07005127
Wale Ogunwale06579d62016-04-30 15:29:06 -07005128 if (mode == REMOVE_TASK_MODE_DESTROYING && task.mActivities.isEmpty()) {
Amith Yamasani0af6fa72016-01-17 15:36:19 -08005129 // TODO: VI what about activity?
Craig Mautner41db4a72014-05-07 17:20:56 -07005130 final boolean isVoiceSession = task.voiceSession != null;
5131 if (isVoiceSession) {
5132 try {
5133 task.voiceSession.taskFinished(task.intent, task.taskId);
5134 } catch (RemoteException e) {
5135 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07005136 }
Craig Mautner41db4a72014-05-07 17:20:56 -07005137 if (task.autoRemoveFromRecents() || isVoiceSession) {
5138 // Task creator asked to remove this when done, or this task was a voice
5139 // interaction, so it should not remain on the recent tasks list.
Winson Chung1dbc8112017-09-28 18:05:31 -07005140 mStackSupervisor.mRecentTasks.remove(task);
Craig Mautner41db4a72014-05-07 17:20:56 -07005141 }
Bryce Lee840c5662017-04-13 10:02:51 -07005142
5143 task.removeWindowContainer();
Dianne Hackborn91097de2014-04-04 18:02:06 -07005144 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005145
5146 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07005147 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale06579d62016-04-30 15:29:06 -07005148 // We only need to adjust focused stack if this stack is in focus and we are not in the
5149 // process of moving the task to the top of the stack that will be focused.
5150 if (isOnHomeDisplay() && mode != REMOVE_TASK_MODE_MOVING_TO_TOP
5151 && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005152 String myReason = reason + " leftTaskHistoryEmpty";
Bryce Leef3c6a472017-11-14 14:53:06 -08005153 if (!inMultiWindowMode() || !adjustFocusToNextFocusableStack(myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07005154 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005155 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005156 }
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07005157 if (isAttached()) {
5158 getDisplay().positionChildAtBottom(this);
Craig Mautner593a4e62014-01-15 17:55:51 -08005159 }
Wale Ogunwale388945c2017-10-04 12:13:46 -07005160 if (!isActivityTypeHome()) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07005161 remove();
Wale Ogunwale49853bf2015-02-23 09:24:42 -08005162 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005163 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07005164
Andrii Kulian02b7a832016-10-06 23:11:56 -07005165 task.setStack(null);
Winson Chungc81c0ce2017-03-17 12:27:30 -07005166
5167 // Notify if a task from the pinned stack is being removed (or moved depending on the mode)
Wale Ogunwale44f036f2017-09-29 05:09:09 -07005168 if (inPinnedWindowingMode()) {
Winson Chungc81c0ce2017-03-17 12:27:30 -07005169 mService.mTaskChangeNotificationController.notifyActivityUnpinned();
5170 }
Craig Mautner0247fc82013-02-28 14:32:06 -08005171 }
5172
Dianne Hackborn91097de2014-04-04 18:02:06 -07005173 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
5174 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07005175 boolean toTop) {
Bryce Leeb802ea12017-11-15 21:25:03 -08005176 return createTaskRecord(taskId, info, intent, voiceSession, voiceInteractor, toTop,
5177 null /*activity*/, null /*source*/, null /*options*/);
5178 }
5179
5180 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
5181 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
5182 boolean toTop, ActivityRecord activity, ActivityRecord source,
5183 ActivityOptions options) {
Garfield Tan9b1efea2017-12-05 16:43:46 -08005184 final TaskRecord task = TaskRecord.create(
5185 mService, taskId, info, intent, voiceSession, voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07005186 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08005187 addTask(task, toTop, "createTaskRecord");
Lucas Dupin47a65c72018-02-15 14:16:18 -08005188 final int displayId = mDisplayId != INVALID_DISPLAY ? mDisplayId : DEFAULT_DISPLAY;
Bryce Lee2a3cc462017-10-27 10:57:35 -07005189 final boolean isLockscreenShown = mService.mStackSupervisor.getKeyguardController()
Lucas Dupin47a65c72018-02-15 14:16:18 -08005190 .isKeyguardOrAodShowing(displayId);
Bryce Leeec55eb02017-12-05 20:51:27 -08005191 if (!mStackSupervisor.getLaunchParamsController()
Bryce Leeb802ea12017-11-15 21:25:03 -08005192 .layoutTask(task, info.windowLayout, activity, source, options)
Bryce Leef3c6a472017-11-14 14:53:06 -08005193 && !matchParentBounds() && task.isResizeable() && !isLockscreenShown) {
5194 task.updateOverrideConfiguration(getOverrideBounds());
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07005195 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005196 task.createWindowContainer(toTop, (info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005197 return task;
5198 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08005199
5200 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08005201 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005202 }
5203
Wale Ogunwale5f986092015-12-04 15:35:38 -08005204 void addTask(final TaskRecord task, final boolean toTop, String reason) {
Winson Chung5af42fc2017-03-24 17:11:33 -07005205 addTask(task, toTop ? MAX_VALUE : 0, true /* schedulePictureInPictureModeChange */, reason);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005206 if (toTop) {
5207 // TODO: figure-out a way to remove this call.
Wale Ogunwale1666e312016-12-16 11:27:18 -08005208 mWindowContainerController.positionChildAtTop(task.getWindowContainerController(),
5209 true /* includingParents */);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005210 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005211 }
5212
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005213 // TODO: This shouldn't allow automatic reparenting. Remove the call to preAddTask and deal
5214 // with the fall-out...
Winson Chung5af42fc2017-03-24 17:11:33 -07005215 void addTask(final TaskRecord task, int position, boolean schedulePictureInPictureModeChange,
5216 String reason) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005217 // TODO: Is this remove really needed? Need to look into the call path for the other addTask
5218 mTaskHistory.remove(task);
5219 position = getAdjustedPositionForTask(task, position, null /* starting */);
5220 final boolean toTop = position >= mTaskHistory.size();
Wale Ogunwale06579d62016-04-30 15:29:06 -07005221 final ActivityStack prevStack = preAddTask(task, reason, toTop);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005222
Andrii Kulianfb1bf692017-01-17 11:17:34 -08005223 mTaskHistory.add(position, task);
Andrii Kulian02b7a832016-10-06 23:11:56 -07005224 task.setStack(this);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005225
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005226 updateTaskMovement(task, toTop);
5227
Winson Chung5af42fc2017-03-24 17:11:33 -07005228 postAddTask(task, prevStack, schedulePictureInPictureModeChange);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005229 }
5230
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005231 void positionChildAt(TaskRecord task, int index) {
5232
5233 if (task.getStack() != this) {
5234 throw new IllegalArgumentException("AS.positionChildAt: task=" + task
5235 + " is not a child of stack=" + this + " current parent=" + task.getStack());
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005236 }
5237
5238 task.updateOverrideConfigurationForStack(this);
5239
Jorim Jaggi023da532016-04-20 22:42:32 -07005240 final ActivityRecord topRunningActivity = task.topRunningActivityLocked();
Andrii Kulian02b7a832016-10-06 23:11:56 -07005241 final boolean wasResumed = topRunningActivity == task.getStack().mResumedActivity;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005242 insertTaskAtPosition(task, index);
Andrii Kulianfb1bf692017-01-17 11:17:34 -08005243 task.setStack(this);
Winson Chung5af42fc2017-03-24 17:11:33 -07005244 postAddTask(task, null /* prevStack */, true /* schedulePictureInPictureModeChange */);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005245
Jorim Jaggi023da532016-04-20 22:42:32 -07005246 if (wasResumed) {
5247 if (mResumedActivity != null) {
5248 Log.wtf(TAG, "mResumedActivity was already set when moving mResumedActivity from"
5249 + " other stack to this stack mResumedActivity=" + mResumedActivity
5250 + " other mResumedActivity=" + topRunningActivity);
5251 }
Bryce Leec4ab62a2018-03-05 14:19:26 -08005252 topRunningActivity.setState(RESUMED, "positionChildAt");
Jorim Jaggi023da532016-04-20 22:42:32 -07005253 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005254
5255 // The task might have already been running and its visibility needs to be synchronized with
5256 // the visibility of the stack / windows.
5257 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
5258 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwale5f986092015-12-04 15:35:38 -08005259 }
5260
Wale Ogunwale06579d62016-04-30 15:29:06 -07005261 private ActivityStack preAddTask(TaskRecord task, String reason, boolean toTop) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07005262 final ActivityStack prevStack = task.getStack();
Wale Ogunwale5f986092015-12-04 15:35:38 -08005263 if (prevStack != null && prevStack != this) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005264 prevStack.removeTask(task, reason,
5265 toTop ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005266 }
5267 return prevStack;
5268 }
5269
Winson Chung5af42fc2017-03-24 17:11:33 -07005270 /**
5271 * @param schedulePictureInPictureModeChange specifies whether or not to schedule the PiP mode
5272 * change. Callers may set this to false if they are explicitly scheduling PiP mode
5273 * changes themselves, like during the PiP animation
5274 */
5275 private void postAddTask(TaskRecord task, ActivityStack prevStack,
5276 boolean schedulePictureInPictureModeChange) {
5277 if (schedulePictureInPictureModeChange && prevStack != null) {
5278 mStackSupervisor.scheduleUpdatePictureInPictureModeIfNeeded(task, prevStack);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005279 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07005280 try {
5281 task.voiceSession.taskStarted(task.intent, task.taskId);
5282 } catch (RemoteException e) {
5283 }
5284 }
5285 }
5286
Winson Chungc2baac02017-01-11 13:34:47 -08005287 void moveToFrontAndResumeStateIfNeeded(ActivityRecord r, boolean moveToFront, boolean setResume,
5288 boolean setPause, String reason) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08005289 if (!moveToFront) {
5290 return;
Wale Ogunwale079a0042015-10-24 11:44:07 -07005291 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08005292
5293 // If the activity owns the last resumed activity, transfer that together,
5294 // so that we don't resume the same activity again in the new stack.
5295 // Apps may depend on onResume()/onPause() being called in pairs.
5296 if (setResume) {
Bryce Leec4ab62a2018-03-05 14:19:26 -08005297 r.setState(RESUMED, "moveToFrontAndResumeStateIfNeeded");
Winson Chungabb433b2017-03-24 09:35:42 -07005298 updateLRUListLocked(r);
Wale Ogunwaled046a012015-12-24 13:05:59 -08005299 }
Winson Chungc2baac02017-01-11 13:34:47 -08005300 // If the activity was previously pausing, then ensure we transfer that as well
5301 if (setPause) {
5302 mPausingActivity = r;
Winson Chung4dabf232017-01-25 13:25:22 -08005303 schedulePauseTimeout(r);
Winson Chungc2baac02017-01-11 13:34:47 -08005304 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08005305 // Move the stack in which we are placing the activity to the front. The call will also
5306 // make sure the activity focus is set.
5307 moveToFront(reason);
Wale Ogunwale079a0042015-10-24 11:44:07 -07005308 }
5309
Craig Mautnerc00204b2013-03-05 15:02:14 -08005310 public int getStackId() {
5311 return mStackId;
5312 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005313
5314 @Override
5315 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07005316 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
Wale Ogunwale44f036f2017-09-29 05:09:09 -07005317 + " stackId=" + mStackId + " type=" + activityTypeToString(getActivityType())
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07005318 + " mode=" + windowingModeToString(getWindowingMode())
Wale Ogunwale8e923af2018-03-23 08:48:11 -07005319 + " visible=" + shouldBeVisible(null /* starting */)
5320 + " translucent=" + isStackTranslucent(null /* starting */)
5321 + ", "
Wale Ogunwale44f036f2017-09-29 05:09:09 -07005322 + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07005323 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08005324
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07005325 void onLockTaskPackagesUpdated() {
Craig Mautner15df08a2015-04-01 12:17:18 -07005326 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5327 mTaskHistory.get(taskNdx).setLockTaskAuth();
5328 }
5329 }
skuhne@google.com1b974dc2016-12-09 13:41:29 -08005330
5331 void executeAppTransition(ActivityOptions options) {
5332 mWindowManager.executeAppTransition();
skuhne@google.com1b974dc2016-12-09 13:41:29 -08005333 ActivityOptions.abort(options);
5334 }
David Stevens9440dc82017-03-16 19:00:20 -07005335
5336 boolean shouldSleepActivities() {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07005337 final ActivityDisplay display = getDisplay();
Bryce Lee271617a2018-03-15 10:39:12 -07005338
5339 // Do not sleep activities in this stack if we're marked as focused and the keyguard
5340 // is in the process of going away.
5341 if (mStackSupervisor.getFocusedStack() == this
5342 && mStackSupervisor.getKeyguardController().isKeyguardGoingAway()) {
5343 return false;
5344 }
5345
David Stevens9440dc82017-03-16 19:00:20 -07005346 return display != null ? display.isSleeping() : mService.isSleepingLocked();
5347 }
5348
5349 boolean shouldSleepOrShutDownActivities() {
5350 return shouldSleepActivities() || mService.isShuttingDownLocked();
5351 }
Steven Timotius4346f0a2017-09-12 11:07:21 -07005352
5353 public void writeToProto(ProtoOutputStream proto, long fieldId) {
5354 final long token = proto.start(fieldId);
Adrian Roos4921ccf2017-09-28 16:54:06 +02005355 super.writeToProto(proto, CONFIGURATION_CONTAINER, false /* trim */);
Steven Timotius4346f0a2017-09-12 11:07:21 -07005356 proto.write(ID, mStackId);
5357 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5358 final TaskRecord task = mTaskHistory.get(taskNdx);
5359 task.writeToProto(proto, TASKS);
5360 }
5361 if (mResumedActivity != null) {
5362 mResumedActivity.writeIdentifierToProto(proto, RESUMED_ACTIVITY);
5363 }
5364 proto.write(DISPLAY_ID, mDisplayId);
Bryce Leef3c6a472017-11-14 14:53:06 -08005365 if (!matchParentBounds()) {
5366 final Rect bounds = getOverrideBounds();
5367 bounds.writeToProto(proto, BOUNDS);
Steven Timotius4346f0a2017-09-12 11:07:21 -07005368 }
Bryce Leef3c6a472017-11-14 14:53:06 -08005369
5370 // TODO: Remove, no longer needed with windowingMode.
5371 proto.write(FULLSCREEN, matchParentBounds());
Steven Timotius4346f0a2017-09-12 11:07:21 -07005372 proto.end(token);
5373 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005374}