blob: eb3177a6e1c9e7bfe66d249a62c485490fada9ce [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
Winson Chung83471632016-12-13 11:02:12 -080019import static android.app.ActivityManager.StackId.ASSISTANT_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -070020import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
21import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
23import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Wale Ogunwale56d75cf2016-03-09 15:14:47 -080024import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Wale Ogunwale3797c222015-10-27 14:21:58 -070025import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Winson Chung91e5c882017-04-21 14:44:38 -070026import static android.app.ActivityManager.StackId.RECENTS_STACK_ID;
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080027import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
Wale Ogunwale5658e4b2016-02-12 12:22:19 -080028import static android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070029import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwalef5d1e352016-09-22 08:34:42 -070030import static android.view.Display.DEFAULT_DISPLAY;
Andrii Kulian7211d2e2017-01-27 15:58:05 -080031import static android.view.Display.FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080032
Andrii Kulian94e82d9b02017-07-13 15:33:06 -070033import static android.view.Display.INVALID_DISPLAY;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070034import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
35import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ALL;
36import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_APP;
37import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CLEANUP;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070038import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONTAINERS;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070039import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_PAUSE;
40import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RELEASE;
41import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RESULTS;
42import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070043import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STACK;
44import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
45import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
46import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
47import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TRANSITION;
48import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_USER_LEAVING;
49import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_VISIBILITY;
50import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
51import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_APP;
52import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CLEANUP;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070053import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONTAINERS;
54import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_PAUSE;
55import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RELEASE;
56import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RESULTS;
57import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SAVED_STATE;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070058import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STACK;
59import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
60import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
61import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
62import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TRANSITION;
63import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_USER_LEAVING;
64import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_VISIBILITY;
65import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
66import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Craig Mautner84984fa2014-06-19 11:19:20 -070067import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Winson Chung83471632016-12-13 11:02:12 -080068import static com.android.server.am.ActivityRecord.ASSISTANT_ACTIVITY_TYPE;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070069import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -070070import static com.android.server.am.ActivityStack.ActivityState.STOPPED;
71import static com.android.server.am.ActivityStack.ActivityState.STOPPING;
Wale Ogunwale39381972015-12-17 17:15:29 -080072import static com.android.server.am.ActivityStackSupervisor.FindTaskResult;
Winson Chung7c3ede32017-03-14 14:18:34 -070073import static com.android.server.am.ActivityStackSupervisor.ON_TOP;
Winson Chung6954fc92017-03-24 16:22:12 -070074import static com.android.server.am.ActivityStackSupervisor.PAUSE_IMMEDIATELY;
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -070075import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Winson Chung6954fc92017-03-24 16:22:12 -070076import static com.android.server.am.ActivityStackSupervisor.REMOVE_FROM_RECENTS;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070077import static com.android.server.wm.AppTransition.TRANSIT_ACTIVITY_CLOSE;
78import static com.android.server.wm.AppTransition.TRANSIT_ACTIVITY_OPEN;
79import static com.android.server.wm.AppTransition.TRANSIT_NONE;
80import static com.android.server.wm.AppTransition.TRANSIT_TASK_CLOSE;
81import static com.android.server.wm.AppTransition.TRANSIT_TASK_OPEN;
82import static com.android.server.wm.AppTransition.TRANSIT_TASK_OPEN_BEHIND;
83import static com.android.server.wm.AppTransition.TRANSIT_TASK_TO_BACK;
84import static com.android.server.wm.AppTransition.TRANSIT_TASK_TO_FRONT;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080085import static java.lang.Integer.MAX_VALUE;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
87import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070088import android.app.ActivityManager;
Jorim Jaggiaf80db42016-04-07 19:19:15 -070089import android.app.ActivityManager.RunningTaskInfo;
Wale Ogunwale3797c222015-10-27 14:21:58 -070090import android.app.ActivityManager.StackId;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070091import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070092import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080093import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070094import android.app.ResultInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070095import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070096import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070097import android.content.pm.ActivityInfo;
Todd Kennedy39bfee52016-02-24 10:28:21 -080098import android.content.pm.ApplicationInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070099import android.content.res.Configuration;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700100import android.graphics.Point;
101import android.graphics.Rect;
Santos Cordon73ff7d82013-03-06 17:24:11 -0800102import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700103import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700104import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -0800105import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700106import android.os.Handler;
107import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +0900108import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700109import android.os.Message;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700110import android.os.RemoteException;
111import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -0800112import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700113import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -0700114import android.service.voice.IVoiceInteractionSession;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700115import android.util.ArraySet;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700116import android.util.EventLog;
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800117import android.util.IntArray;
Jorim Jaggi023da532016-04-20 22:42:32 -0700118import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700119import android.util.Slog;
Andrii Kulian1e32e022016-09-16 15:29:34 -0700120import android.util.SparseArray;
Craig Mautner59c00972012-07-30 12:10:24 -0700121import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700122
Bryce Lee840c5662017-04-13 10:02:51 -0700123import com.android.internal.annotations.VisibleForTesting;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700124import com.android.internal.app.IVoiceInteractor;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700125import com.android.internal.os.BatteryStatsImpl;
126import com.android.server.Watchdog;
127import com.android.server.am.ActivityManagerService.ItemMatcher;
Wale Ogunwale1666e312016-12-16 11:27:18 -0800128import com.android.server.wm.StackWindowController;
129import com.android.server.wm.StackWindowListener;
Jorim Jaggiaf80db42016-04-07 19:19:15 -0700130import com.android.server.wm.WindowManagerService;
131
Craig Mautnercae015f2013-02-08 14:31:27 -0800132import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -0800133import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700134import java.lang.ref.WeakReference;
135import java.util.ArrayList;
136import java.util.Iterator;
137import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -0800138import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -0700139import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700140
141/**
142 * State and management of a single stack of activities.
143 */
Winson Chung55893332017-02-17 17:13:10 -0800144class ActivityStack<T extends StackWindowController> extends ConfigurationContainer
145 implements StackWindowListener {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800146
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800147 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700148 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
149 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800150 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700151 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700152 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700153 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700154 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700155 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700156 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700157 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700158 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
159 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
160 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
161 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
162 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700163
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700164 // Ticks during which we check progress while waiting for an app to launch.
165 static final int LAUNCH_TICK = 500;
166
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167 // How long we wait until giving up on the last activity to pause. This
168 // is short because it directly impacts the responsiveness of starting the
169 // next activity.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700170 private static final int PAUSE_TIMEOUT = 500;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700171
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700172 // How long we wait for the activity to tell us it has stopped before
173 // giving up. This is a good amount of time because we really need this
174 // from the application in order to get its saved state.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700175 private static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700176
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700177 // How long we wait until giving up on an activity telling us it has
178 // finished destroying itself.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700179 private static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800180
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700181 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800182 // disabled.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700183 private static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800184
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700185 // Set to false to disable the preview that is shown while a new activity
186 // is being started.
Andrii Kulian21713ac2016-10-12 22:05:05 -0700187 private static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800188
Craig Mautner5eda9b32013-07-02 11:58:16 -0700189 // How long to wait for all background Activities to redraw following a call to
190 // convertToTranslucent().
Andrii Kulian21713ac2016-10-12 22:05:05 -0700191 private static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700192
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800193 // How many activities have to be scheduled to stop to force a stop pass.
194 private static final int MAX_STOPPING_TO_FORCE = 3;
195
Andrii Kulian1779e612016-10-12 21:58:25 -0700196 @Override
197 protected int getChildCount() {
198 return mTaskHistory.size();
199 }
200
201 @Override
202 protected ConfigurationContainer getChildAt(int index) {
203 return mTaskHistory.get(index);
204 }
205
206 @Override
207 protected ConfigurationContainer getParent() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700208 return getDisplay();
Andrii Kulian1779e612016-10-12 21:58:25 -0700209 }
210
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800211 @Override
212 void onParentChanged() {
213 super.onParentChanged();
214 mStackSupervisor.updateUIDsPresentOnDisplay();
215 }
216
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700217 enum ActivityState {
218 INITIALIZING,
219 RESUMED,
220 PAUSING,
221 PAUSED,
222 STOPPING,
223 STOPPED,
224 FINISHING,
225 DESTROYING,
226 DESTROYED
227 }
228
Filip Gruszczynski0e381e22016-01-14 16:31:33 -0800229 // Stack is not considered visible.
230 static final int STACK_INVISIBLE = 0;
231 // Stack is considered visible
232 static final int STACK_VISIBLE = 1;
Filip Gruszczynski0e381e22016-01-14 16:31:33 -0800233
Bryce Lee840c5662017-04-13 10:02:51 -0700234 @VisibleForTesting
Wale Ogunwale06579d62016-04-30 15:29:06 -0700235 /* The various modes for the method {@link #removeTask}. */
236 // Task is being completely removed from all stacks in the system.
Bryce Lee840c5662017-04-13 10:02:51 -0700237 protected static final int REMOVE_TASK_MODE_DESTROYING = 0;
Wale Ogunwale06579d62016-04-30 15:29:06 -0700238 // Task is being removed from this stack so we can add it to another stack. In the case we are
239 // moving we don't want to perform some operations on the task like removing it from window
240 // manager or recents.
241 static final int REMOVE_TASK_MODE_MOVING = 1;
242 // Similar to {@link #REMOVE_TASK_MODE_MOVING} and the task will be added to the top of its new
243 // stack and the new stack will be on top of all stacks.
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700244 static final int REMOVE_TASK_MODE_MOVING_TO_TOP = 2;
Wale Ogunwale06579d62016-04-30 15:29:06 -0700245
Andrii Kulian1e32e022016-09-16 15:29:34 -0700246 // The height/width divide used when fitting a task within a bounds with method
247 // {@link #fitWithinBounds}.
248 // We always want the task to to be visible in the bounds without affecting its size when
249 // fitting. To make sure this is the case, we don't adjust the task left or top side pass
250 // the input bounds right or bottom side minus the width or height divided by this value.
251 private static final int FIT_WITHIN_BOUNDS_DIVIDER = 3;
252
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700253 final ActivityManagerService mService;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700254 private final WindowManagerService mWindowManager;
Winson Chung55893332017-02-17 17:13:10 -0800255 T mWindowContainerController;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800256 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800257
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700258 /**
259 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800260 * running) activities. It contains #TaskRecord objects.
261 */
Todd Kennedy39bfee52016-02-24 10:28:21 -0800262 private final ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800263
264 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700265 * List of running activities, sorted by recent usage.
266 * The first entry in the list is the least recently used.
267 * It contains HistoryRecord objects.
268 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800269 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700270
271 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700272 * Animations that for the current transition have requested not to
273 * be considered for the transition animation.
274 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800275 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700276
277 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700278 * When we are in the process of pausing an activity, before starting the
279 * next one, this variable holds the activity that is currently being paused.
280 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800281 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700282
283 /**
284 * This is the last activity that we put into the paused state. This is
285 * used to determine if we need to do an activity transition while sleeping,
286 * when we normally hold the top activity paused.
287 */
288 ActivityRecord mLastPausedActivity = null;
289
290 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700291 * Activities that specify No History must be removed once the user navigates away from them.
292 * If the device goes to sleep with such an activity in the paused state then we save it here
293 * and finish it later if another activity replaces it on wakeup.
294 */
295 ActivityRecord mLastNoHistoryActivity = null;
296
297 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700298 * Current activity that is resumed, or null if there is none.
299 */
300 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800301
Craig Mautner5eda9b32013-07-02 11:58:16 -0700302 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
303 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
304 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
305 // Activity in mTranslucentActivityWaiting is notified via
306 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
307 // background activity being drawn then the same call will be made with a true value.
308 ActivityRecord mTranslucentActivityWaiting = null;
Andrii Kulian21713ac2016-10-12 22:05:05 -0700309 ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700310
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700311 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700312 * Set when we know we are going to be calling updateConfiguration()
313 * soon, so want to skip intermediate config checks.
314 */
315 boolean mConfigWillChange;
316
Winson Chung47900652017-04-06 18:44:25 -0700317 /**
318 * When set, will force the stack to report as invisible.
319 */
320 boolean mForceHidden = false;
321
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700322 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800323 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700324 // Current bounds of the stack or null if fullscreen.
325 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800326
Andrii Kulian21713ac2016-10-12 22:05:05 -0700327 private boolean mUpdateBoundsDeferred;
328 private boolean mUpdateBoundsDeferredCalled;
329 private final Rect mDeferredBounds = new Rect();
330 private final Rect mDeferredTaskBounds = new Rect();
331 private final Rect mDeferredTaskInsetBounds = new Rect();
Jorim Jaggi192086e2016-03-11 17:17:03 +0100332
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700333 long mLaunchStartTime = 0;
334 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800335
Craig Mautner858d8a62013-04-23 17:08:34 -0700336 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700337
Craig Mautnerc00204b2013-03-05 15:02:14 -0800338 final int mStackId;
Craig Mautnere0a38842013-12-16 16:14:02 -0800339 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700340 // TODO: This list doesn't belong here...
Craig Mautnere0a38842013-12-16 16:14:02 -0800341 ArrayList<ActivityStack> mStacks;
342 /** The attached Display's unique identifier, or -1 if detached */
343 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800344
Andrii Kulian1e32e022016-09-16 15:29:34 -0700345 /** Temp variables used during override configuration update. */
346 private final SparseArray<Configuration> mTmpConfigs = new SparseArray<>();
347 private final SparseArray<Rect> mTmpBounds = new SparseArray<>();
348 private final SparseArray<Rect> mTmpInsetBounds = new SparseArray<>();
Wale Ogunwale1666e312016-12-16 11:27:18 -0800349 private final Rect mTmpRect2 = new Rect();
Andrii Kulian1e32e022016-09-16 15:29:34 -0700350
Craig Mautner27084302013-03-25 08:05:25 -0700351 /** Run all ActivityStacks through this */
Winson Chung5af42fc2017-03-24 17:11:33 -0700352 protected final ActivityStackSupervisor mStackSupervisor;
Craig Mautner27084302013-03-25 08:05:25 -0700353
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700354 private final LaunchingTaskPositioner mTaskPositioner;
355
Jorim Jaggife762342016-10-13 14:33:27 +0200356 private boolean mTopActivityOccludesKeyguard;
357 private ActivityRecord mTopDismissingKeyguardActivity;
358
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700359 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700360 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
361 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
362 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
363 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700364 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700365
Andrii Kulian21713ac2016-10-12 22:05:05 -0700366 private static class ScheduleDestroyArgs {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700367 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700368 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700369 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700370 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700371 mReason = reason;
372 }
373 }
374
Zoran Marcetaf958b322012-08-09 20:27:12 +0900375 final Handler mHandler;
376
Andrii Kulian21713ac2016-10-12 22:05:05 -0700377 private class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800378
Craig Mautnerc8143c62013-09-03 12:15:57 -0700379 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900380 super(looper);
381 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700382
Zoran Marcetaf958b322012-08-09 20:27:12 +0900383 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700384 public void handleMessage(Message msg) {
385 switch (msg.what) {
386 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800387 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700388 // We don't at this point know if the activity is fullscreen,
389 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800390 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700391 synchronized (mService) {
392 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700393 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700394 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700395 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800396 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700397 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700398 case LAUNCH_TICK_MSG: {
399 ActivityRecord r = (ActivityRecord)msg.obj;
400 synchronized (mService) {
401 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700402 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700403 }
404 }
405 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700406 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800407 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700408 // We don't at this point know if the activity is fullscreen,
409 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800410 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800411 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800412 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800413 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700414 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700415 case STOP_TIMEOUT_MSG: {
416 ActivityRecord r = (ActivityRecord)msg.obj;
417 // We don't at this point know if the activity is fullscreen,
418 // so we need to be conservative and assume it isn't.
419 Slog.w(TAG, "Activity stop timeout for " + r);
420 synchronized (mService) {
421 if (r.isInHistory()) {
Andrii Kulian21713ac2016-10-12 22:05:05 -0700422 r.activityStoppedLocked(null /* icicle */,
423 null /* persistentState */, null /* description */);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700424 }
425 }
426 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700427 case DESTROY_ACTIVITIES_MSG: {
428 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
429 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700430 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700431 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700432 } break;
433 case TRANSLUCENT_TIMEOUT_MSG: {
434 synchronized (mService) {
435 notifyActivityDrawnLocked(null);
436 }
437 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700438 }
439 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800440 }
441
Craig Mautner34b73df2014-01-12 21:11:08 -0800442 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800443 int count = 0;
444 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
445 count += mTaskHistory.get(taskNdx).mActivities.size();
446 }
447 return count;
448 }
449
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700450 ActivityStack(ActivityStackSupervisor.ActivityDisplay display, int stackId,
451 ActivityStackSupervisor supervisor, RecentTasks recentTasks, boolean onTop) {
452 mStackSupervisor = supervisor;
453 mService = supervisor.mService;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800454 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
455 mWindowManager = mService.mWindowManager;
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700456 mStackId = stackId;
Fyodor Kupolovf63b89c2015-10-27 18:08:56 -0700457 mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800458 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700459 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
460 ? new LaunchingTaskPositioner() : null;
Wale Ogunwale1666e312016-12-16 11:27:18 -0800461 mTmpRect2.setEmpty();
Winson Chung55893332017-02-17 17:13:10 -0800462 mWindowContainerController = createStackWindowController(display.mDisplayId, onTop,
463 mTmpRect2);
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700464 mStackSupervisor.mStacks.put(mStackId, this);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800465 postAddToDisplay(display, mTmpRect2.isEmpty() ? null : mTmpRect2, onTop);
466 }
467
Winson Chung55893332017-02-17 17:13:10 -0800468 T createStackWindowController(int displayId, boolean onTop, Rect outBounds) {
469 return (T) new StackWindowController(mStackId, this, displayId, onTop, outBounds);
470 }
471
472 T getWindowContainerController() {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800473 return mWindowContainerController;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700474 }
475
Andrii Kulian839def92016-11-02 10:58:58 -0700476 /** Adds the stack to specified display and calls WindowManager to do the same. */
Wale Ogunwale1666e312016-12-16 11:27:18 -0800477 void reparent(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
478 removeFromDisplay();
479 mTmpRect2.setEmpty();
Wale Ogunwale1666e312016-12-16 11:27:18 -0800480 postAddToDisplay(activityDisplay, mTmpRect2.isEmpty() ? null : mTmpRect2, onTop);
Andrii Kulian250d6532017-02-08 23:30:45 -0800481 adjustFocusToNextFocusableStackLocked("reparent", true /* allowFocusSelf */);
482 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Andrii Kulian51c1b672017-04-07 18:39:32 -0700483 // Update visibility of activities before notifying WM. This way it won't try to resize
484 // windows that are no longer visible.
485 mStackSupervisor.ensureActivitiesVisibleLocked(null /* starting */, 0 /* configChanges */,
486 !PRESERVE_WINDOWS);
487 mWindowContainerController.reparent(activityDisplay.mDisplayId, mTmpRect2, onTop);
Andrii Kulian839def92016-11-02 10:58:58 -0700488 }
489
490 /**
491 * Updates internal state after adding to new display.
492 * @param activityDisplay New display to which this stack was attached.
493 * @param bounds Updated bounds.
494 */
495 private void postAddToDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay,
Wale Ogunwale1666e312016-12-16 11:27:18 -0800496 Rect bounds, boolean onTop) {
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700497 mDisplayId = activityDisplay.mDisplayId;
498 mStacks = activityDisplay.mStacks;
Wale Ogunwale1666e312016-12-16 11:27:18 -0800499 mBounds = bounds != null ? new Rect(bounds) : null;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700500 mFullscreen = mBounds == null;
501 if (mTaskPositioner != null) {
502 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
503 mTaskPositioner.configure(mBounds);
504 }
Andrii Kulian1779e612016-10-12 21:58:25 -0700505 onParentChanged();
Wale Ogunwale961f4852016-02-01 20:25:54 -0800506
Winson Chung7c3ede32017-03-14 14:18:34 -0700507 activityDisplay.attachStack(this, findStackInsertIndex(onTop));
Wale Ogunwale961f4852016-02-01 20:25:54 -0800508 if (mStackId == DOCKED_STACK_ID) {
509 // If we created a docked stack we want to resize it so it resizes all other stacks
510 // in the system.
511 mStackSupervisor.resizeDockedStackLocked(
512 mBounds, null, null, null, null, PRESERVE_WINDOWS);
513 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700514 }
515
Andrii Kulian839def92016-11-02 10:58:58 -0700516 /**
Andrii Kulian839def92016-11-02 10:58:58 -0700517 * Updates the inner state of the stack to remove it from its current parent, so it can be
518 * either destroyed completely or re-parented.
519 */
520 private void removeFromDisplay() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700521 final ActivityStackSupervisor.ActivityDisplay display = getDisplay();
522 if (display != null) {
523 display.detachStack(this);
524 }
525 mDisplayId = INVALID_DISPLAY;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700526 mStacks = null;
527 if (mTaskPositioner != null) {
528 mTaskPositioner.reset();
529 }
Jorim Jaggi899327f2016-02-25 20:44:18 -0500530 if (mStackId == DOCKED_STACK_ID) {
531 // If we removed a docked stack we want to resize it so it resizes all other stacks
532 // in the system to fullscreen.
533 mStackSupervisor.resizeDockedStackLocked(
534 null, null, null, null, null, PRESERVE_WINDOWS);
535 }
Andrii Kulian839def92016-11-02 10:58:58 -0700536 }
537
538 /** Removes the stack completely. Also calls WindowManager to do the same on its side. */
539 void remove() {
540 removeFromDisplay();
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700541 mStackSupervisor.mStacks.remove(mStackId);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800542 mWindowContainerController.removeContainer();
543 mWindowContainerController = null;
Andrii Kulian6d6fb402016-10-26 16:15:25 -0700544 onParentChanged();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700545 }
546
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700547 ActivityStackSupervisor.ActivityDisplay getDisplay() {
548 return mStackSupervisor.getActivityDisplay(mDisplayId);
549 }
550
Andrii Kulian21713ac2016-10-12 22:05:05 -0700551 void getDisplaySize(Point out) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700552 getDisplay().mDisplay.getSize(out);
Winsonc809cbb2015-11-02 12:06:15 -0800553 }
554
Matthew Ngaa2b6202017-02-10 14:48:21 -0800555 /**
556 * @see ActivityStack.getStackDockedModeBounds(Rect, Rect, Rect, boolean)
557 */
558 void getStackDockedModeBounds(Rect currentTempTaskBounds, Rect outStackBounds,
559 Rect outTempTaskBounds, boolean ignoreVisibility) {
560 mWindowContainerController.getStackDockedModeBounds(currentTempTaskBounds,
561 outStackBounds, outTempTaskBounds, ignoreVisibility);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800562 }
563
564 void prepareFreezingTaskBounds() {
565 mWindowContainerController.prepareFreezingTaskBounds();
566 }
567
Wale Ogunwale1666e312016-12-16 11:27:18 -0800568 void getWindowContainerBounds(Rect outBounds) {
569 if (mWindowContainerController != null) {
570 mWindowContainerController.getBounds(outBounds);
Winson Chungb00dc5e2017-01-25 09:44:25 -0800571 return;
Wale Ogunwale1666e312016-12-16 11:27:18 -0800572 }
573 outBounds.setEmpty();
574 }
575
Matthew Ngaa2b6202017-02-10 14:48:21 -0800576 void getBoundsForNewConfiguration(Rect outBounds) {
577 mWindowContainerController.getBoundsForNewConfiguration(outBounds);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800578 }
579
580 void positionChildWindowContainerAtTop(TaskRecord child) {
581 mWindowContainerController.positionChildAtTop(child.getWindowContainerController(),
582 true /* includingParents */);
583 }
584
Jorim Jaggi192086e2016-03-11 17:17:03 +0100585 /**
Winson Chung8bca9e42017-04-16 15:59:43 -0700586 * Returns whether to defer the scheduling of the multi-window mode.
587 */
588 boolean deferScheduleMultiWindowModeChanged() {
589 return false;
590 }
591
592 /**
Jorim Jaggi192086e2016-03-11 17:17:03 +0100593 * Defers updating the bounds of the stack. If the stack was resized/repositioned while
594 * deferring, the bounds will update in {@link #continueUpdateBounds()}.
595 */
596 void deferUpdateBounds() {
597 if (!mUpdateBoundsDeferred) {
598 mUpdateBoundsDeferred = true;
599 mUpdateBoundsDeferredCalled = false;
600 }
601 }
602
603 /**
604 * Continues updating bounds after updates have been deferred. If there was a resize attempt
605 * between {@link #deferUpdateBounds()} and {@link #continueUpdateBounds()}, the stack will
606 * be resized to that bounds.
607 */
608 void continueUpdateBounds() {
609 final boolean wasDeferred = mUpdateBoundsDeferred;
610 mUpdateBoundsDeferred = false;
611 if (wasDeferred && mUpdateBoundsDeferredCalled) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800612 resize(mDeferredBounds.isEmpty() ? null : mDeferredBounds,
Jorim Jaggi192086e2016-03-11 17:17:03 +0100613 mDeferredTaskBounds.isEmpty() ? null : mDeferredTaskBounds,
614 mDeferredTaskInsetBounds.isEmpty() ? null : mDeferredTaskInsetBounds);
615 }
616 }
617
618 boolean updateBoundsAllowed(Rect bounds, Rect tempTaskBounds,
619 Rect tempTaskInsetBounds) {
620 if (!mUpdateBoundsDeferred) {
621 return true;
622 }
623 if (bounds != null) {
624 mDeferredBounds.set(bounds);
625 } else {
626 mDeferredBounds.setEmpty();
627 }
628 if (tempTaskBounds != null) {
629 mDeferredTaskBounds.set(tempTaskBounds);
630 } else {
631 mDeferredTaskBounds.setEmpty();
632 }
633 if (tempTaskInsetBounds != null) {
634 mDeferredTaskInsetBounds.set(tempTaskInsetBounds);
635 } else {
636 mDeferredTaskInsetBounds.setEmpty();
637 }
638 mUpdateBoundsDeferredCalled = true;
639 return false;
640 }
641
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700642 void setBounds(Rect bounds) {
643 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700644 if (mTaskPositioner != null) {
645 mTaskPositioner.configure(bounds);
646 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700647 }
Craig Mautner5962b122012-10-05 14:45:52 -0700648
Wale Ogunwale42f07d92017-05-01 21:32:58 -0700649 ActivityRecord topRunningActivityLocked() {
Winson Chung3f103eb2017-04-12 21:53:59 -0700650 return topRunningActivityLocked(false /* focusableOnly */);
651 }
652
Jorim Jaggiea039a82017-08-02 14:37:49 +0200653 void getAllRunningVisibleActivitiesLocked(ArrayList<ActivityRecord> outActivities) {
654 outActivities.clear();
655 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
656 mTaskHistory.get(taskNdx).getAllRunningVisibleActivitiesLocked(outActivities);
657 }
658 }
659
Wale Ogunwale42f07d92017-05-01 21:32:58 -0700660 private ActivityRecord topRunningActivityLocked(boolean focusableOnly) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800661 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700662 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Winson Chung3f103eb2017-04-12 21:53:59 -0700663 if (r != null && (!focusableOnly || r.isFocusable())) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700664 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800665 }
666 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700667 return null;
668 }
669
Wale Ogunwale42f07d92017-05-01 21:32:58 -0700670 ActivityRecord topRunningNonOverlayTaskActivity() {
671 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
672 final TaskRecord task = mTaskHistory.get(taskNdx);
673 final ArrayList<ActivityRecord> activities = task.mActivities;
674 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
675 final ActivityRecord r = activities.get(activityNdx);
676 if (!r.finishing && !r.mTaskOverlay) {
677 return r;
678 }
679 }
680 }
681 return null;
682 }
683
684 ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800685 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
686 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800687 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800688 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
689 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -0700690 if (!r.finishing && !r.delayedResume && r != notTop && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800691 return r;
692 }
693 }
694 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700695 return null;
696 }
697
698 /**
699 * This is a simplified version of topRunningActivityLocked that provides a number of
700 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800701 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700702 * @param token If non-null, any history records matching this token will be skipped.
703 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800704 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700705 * @return Returns the HistoryRecord of the next activity on the stack.
706 */
707 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800708 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
709 TaskRecord task = mTaskHistory.get(taskNdx);
710 if (task.taskId == taskId) {
711 continue;
712 }
713 ArrayList<ActivityRecord> activities = task.mActivities;
714 for (int i = activities.size() - 1; i >= 0; --i) {
715 final ActivityRecord r = activities.get(i);
716 // Note: the taskId check depends on real taskId fields being non-zero
Chong Zhang87761972016-08-22 13:53:24 -0700717 if (!r.finishing && (token != r.appToken) && r.okToShowLocked()) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800718 return r;
719 }
720 }
721 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700722 return null;
723 }
724
Craig Mautner8849a5e2013-04-02 16:41:03 -0700725 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700726 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
727 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700728 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
729 final ActivityRecord r = activities.get(activityNdx);
730 if (!r.finishing) {
731 return r;
732 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700733 }
734 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700735 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700736 }
737
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700738 final TaskRecord topTask() {
739 final int size = mTaskHistory.size();
740 if (size > 0) {
741 return mTaskHistory.get(size - 1);
742 }
743 return null;
744 }
745
Winson Chung1cebea62017-06-26 17:22:27 -0700746 final TaskRecord bottomTask() {
747 if (mTaskHistory.isEmpty()) {
748 return null;
749 }
750 return mTaskHistory.get(0);
751 }
752
Craig Mautnerd2328952013-03-05 12:46:26 -0800753 TaskRecord taskForIdLocked(int id) {
754 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
755 final TaskRecord task = mTaskHistory.get(taskNdx);
756 if (task.taskId == id) {
757 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800758 }
759 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700760 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700761 }
762
Craig Mautnerd2328952013-03-05 12:46:26 -0800763 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700764 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800765 return isInStackLocked(r);
766 }
767
768 ActivityRecord isInStackLocked(ActivityRecord r) {
769 if (r == null) {
770 return null;
771 }
Bryce Leeaf691c02017-03-20 14:20:22 -0700772 final TaskRecord task = r.getTask();
Andrii Kulian02b7a832016-10-06 23:11:56 -0700773 final ActivityStack stack = r.getStack();
774 if (stack != null && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
775 if (stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800776 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800777 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800778 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800779 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800780 }
781
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800782 boolean isInStackLocked(TaskRecord task) {
783 return mTaskHistory.contains(task);
784 }
785
786 /** Checks if there are tasks with specific UID in the stack. */
787 boolean isUidPresent(int uid) {
788 for (TaskRecord task : mTaskHistory) {
David Stevens82ea6cb2017-03-03 16:18:50 -0800789 for (ActivityRecord r : task.mActivities) {
790 if (r.getUid() == uid) {
791 return true;
792 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800793 }
794 }
795 return false;
796 }
797
798 /** Get all UIDs that are present in the stack. */
799 void getPresentUIDs(IntArray presentUIDs) {
800 for (TaskRecord task : mTaskHistory) {
David Stevens82ea6cb2017-03-03 16:18:50 -0800801 for (ActivityRecord r : task.mActivities) {
802 presentUIDs.add(r.getUid());
803 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800804 }
805 }
806
Winson Chungabb433b2017-03-24 09:35:42 -0700807 final void removeActivitiesFromLRUListLocked(TaskRecord task) {
808 for (ActivityRecord r : task.mActivities) {
809 mLRUActivities.remove(r);
810 }
811 }
812
Craig Mautner2420ead2013-04-01 17:13:20 -0700813 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700814 final boolean hadit = mLRUActivities.remove(r);
815 mLRUActivities.add(r);
816 return hadit;
817 }
818
Craig Mautnerde4ef022013-04-07 19:01:33 -0700819 final boolean isHomeStack() {
820 return mStackId == HOME_STACK_ID;
821 }
822
Winson Chung91e5c882017-04-21 14:44:38 -0700823 final boolean isRecentsStack() {
824 return mStackId == RECENTS_STACK_ID;
825 }
826
Matthew Ngae1ff4f2016-11-10 15:49:14 -0800827 final boolean isHomeOrRecentsStack() {
828 return StackId.isHomeOrRecentsStack(mStackId);
829 }
830
Winson Chung0583d3d2015-12-18 10:03:12 -0500831 final boolean isDockedStack() {
832 return mStackId == DOCKED_STACK_ID;
833 }
834
835 final boolean isPinnedStack() {
836 return mStackId == PINNED_STACK_ID;
837 }
838
Winson Chung83471632016-12-13 11:02:12 -0800839 final boolean isAssistantStack() {
840 return mStackId == ASSISTANT_STACK_ID;
841 }
842
Craig Mautnere0a38842013-12-16 16:14:02 -0800843 final boolean isOnHomeDisplay() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700844 return isAttached() && mDisplayId == DEFAULT_DISPLAY;
Craig Mautnere0a38842013-12-16 16:14:02 -0800845 }
846
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700847 void moveToFront(String reason) {
848 moveToFront(reason, null);
849 }
850
851 /**
852 * @param reason The reason for moving the stack to the front.
853 * @param task If non-null, the task will be moved to the top of the stack.
854 * */
855 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700856 if (!isAttached()) {
857 return;
858 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700859
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700860 mStacks.remove(this);
Winson Chung7c3ede32017-03-14 14:18:34 -0700861 mStacks.add(findStackInsertIndex(ON_TOP), this);
Andrii Kulian839def92016-11-02 10:58:58 -0700862 mStackSupervisor.setFocusStackUnchecked(reason, this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700863 if (task != null) {
864 insertTaskAtTop(task, null);
Wale Ogunwaleaa47c122016-09-23 16:39:53 -0700865 return;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700866 }
Wale Ogunwaleaa47c122016-09-23 16:39:53 -0700867
868 task = topTask();
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700869 if (task != null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -0800870 mWindowContainerController.positionChildAtTop(task.getWindowContainerController(),
871 true /* includingParents */);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800872 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800873 }
874
Jiaquan Hee13e9642016-06-15 15:16:13 -0700875 /**
876 * @param task If non-null, the task will be moved to the back of the stack.
877 * */
Andrii Kulian21713ac2016-10-12 22:05:05 -0700878 private void moveToBack(TaskRecord task) {
Jiaquan Hee13e9642016-06-15 15:16:13 -0700879 if (!isAttached()) {
880 return;
881 }
882
883 mStacks.remove(this);
884 mStacks.add(0, this);
885
886 if (task != null) {
887 mTaskHistory.remove(task);
888 mTaskHistory.add(0, task);
889 updateTaskMovement(task, false);
Wale Ogunwale1666e312016-12-16 11:27:18 -0800890 mWindowContainerController.positionChildAtBottom(task.getWindowContainerController());
Jiaquan Hee13e9642016-06-15 15:16:13 -0700891 }
892 }
893
Winson Chung7c3ede32017-03-14 14:18:34 -0700894 /**
895 * @return the index to insert a new stack into, taking the always-on-top stacks into account.
896 */
897 private int findStackInsertIndex(boolean onTop) {
898 if (onTop) {
899 int addIndex = mStacks.size();
900 if (addIndex > 0) {
901 final ActivityStack topStack = mStacks.get(addIndex - 1);
902 if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
903 // If the top stack is always on top, we move this stack just below it.
904 addIndex--;
905 }
906 }
907 return addIndex;
908 } else {
909 return 0;
910 }
911 }
912
Wale Ogunwaled046a012015-12-24 13:05:59 -0800913 boolean isFocusable() {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800914 if (StackId.canReceiveKeys(mStackId)) {
915 return true;
916 }
917 // The stack isn't focusable. See if its top activity is focusable to force focus on the
918 // stack.
919 final ActivityRecord r = topRunningActivityLocked();
920 return r != null && r.isFocusable();
Wale Ogunwaled046a012015-12-24 13:05:59 -0800921 }
922
Craig Mautnere0a38842013-12-16 16:14:02 -0800923 final boolean isAttached() {
924 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800925 }
926
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700927 /**
Wale Ogunwale39381972015-12-17 17:15:29 -0800928 * Returns the top activity in any existing task matching the given Intent in the input result.
929 * Returns null if no such task is found.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700930 */
Wale Ogunwale39381972015-12-17 17:15:29 -0800931 void findTaskLocked(ActivityRecord target, FindTaskResult result) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700932 Intent intent = target.intent;
933 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700934 ComponentName cls = intent.getComponent();
935 if (info.targetActivity != null) {
936 cls = new ComponentName(info.packageName, info.targetActivity);
937 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700938 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700939 boolean isDocument = intent != null & intent.isDocument();
940 // If documentData is non-null then it must match the existing task data.
941 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800942
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700943 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800944 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
945 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700946 if (task.voiceSession != null) {
947 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700948 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700949 continue;
950 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700951 if (task.userId != userId) {
952 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700953 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700954 continue;
955 }
Craig Mautner000f0022013-02-26 15:04:29 -0800956 final ActivityRecord r = task.getTopActivity();
957 if (r == null || r.finishing || r.userId != userId ||
958 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700959 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800960 continue;
961 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700962 if (r.mActivityType != target.mActivityType) {
963 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
964 continue;
965 }
Craig Mautner000f0022013-02-26 15:04:29 -0800966
Craig Mautnerd00f4742014-03-12 14:17:26 -0700967 final Intent taskIntent = task.intent;
968 final Intent affinityIntent = task.affinityIntent;
969 final boolean taskIsDocument;
970 final Uri taskDocumentData;
971 if (taskIntent != null && taskIntent.isDocument()) {
972 taskIsDocument = true;
973 taskDocumentData = taskIntent.getData();
974 } else if (affinityIntent != null && affinityIntent.isDocument()) {
975 taskIsDocument = true;
976 taskDocumentData = affinityIntent.getData();
977 } else {
978 taskIsDocument = false;
979 taskDocumentData = null;
980 }
981
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700982 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700983 + taskIntent.getComponent().flattenToShortString()
Bryce Leeaf691c02017-03-20 14:20:22 -0700984 + "/aff=" + r.getTask().rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700985 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700986 // TODO Refactor to remove duplications. Check if logic can be simplified.
987 if (taskIntent != null && taskIntent.getComponent() != null &&
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700988 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700989 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700990 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800991 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700992 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
993 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800994 result.r = r;
995 result.matchedByRootAffinity = false;
996 break;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700997 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
998 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700999 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001000 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -08001001 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001002 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
1003 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -08001004 result.r = r;
1005 result.matchedByRootAffinity = false;
1006 break;
Andrii Kulian206b9fa2016-06-02 13:18:01 -07001007 } else if (!isDocument && !taskIsDocument
Winson Chung5b895b72017-05-01 13:46:25 -07001008 && result.r == null && task.rootAffinity != null) {
Andrii Kulian206b9fa2016-06-02 13:18:01 -07001009 if (task.rootAffinity.equals(target.taskAffinity)) {
1010 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
1011 // It is possible for multiple tasks to have the same root affinity especially
1012 // if they are in separate stacks. We save off this candidate, but keep looking
1013 // to see if there is a better candidate.
1014 result.r = r;
1015 result.matchedByRootAffinity = true;
1016 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001017 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001018 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001019 }
1020
1021 /**
1022 * Returns the first activity (starting from the top of the stack) that
1023 * is the same as the given activity. Returns null if no such activity
1024 * is found.
1025 */
Andrii Kuliand3bbb132016-06-16 16:00:20 -07001026 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info,
1027 boolean compareIntentFilters) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001028 ComponentName cls = intent.getComponent();
1029 if (info.targetActivity != null) {
1030 cls = new ComponentName(info.packageName, info.targetActivity);
1031 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001032 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001033
Craig Mautner000f0022013-02-26 15:04:29 -08001034 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001035 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001036 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001037
Craig Mautner000f0022013-02-26 15:04:29 -08001038 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1039 ActivityRecord r = activities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -07001040 if (!r.okToShowLocked()) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -07001041 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001042 }
Andrii Kuliand3bbb132016-06-16 16:00:20 -07001043 if (!r.finishing && r.userId == userId) {
1044 if (compareIntentFilters) {
1045 if (r.intent.filterEquals(intent)) {
1046 return r;
1047 }
1048 } else {
1049 if (r.intent.getComponent().equals(cls)) {
1050 return r;
1051 }
1052 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001053 }
1054 }
1055 }
1056
1057 return null;
1058 }
1059
Amith Yamasani742a6712011-05-04 14:49:28 -07001060 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -07001061 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -07001062 */
Craig Mautner93529a42013-10-04 15:03:13 -07001063 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001064 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -07001065 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001066 }
1067 mCurrentUser = userId;
1068
1069 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001070 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -08001071 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001072 final TaskRecord task = mTaskHistory.get(i);
1073
Chong Zhang87761972016-08-22 13:53:24 -07001074 if (task.okToShowLocked()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001075 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -07001076 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001077 mTaskHistory.remove(i);
1078 mTaskHistory.add(task);
1079 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -08001080 // Use same value for i.
1081 } else {
1082 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001083 }
1084 }
Amith Yamasani742a6712011-05-04 14:49:28 -07001085 }
1086
Craig Mautner2420ead2013-04-01 17:13:20 -07001087 void minimalResumeActivityLocked(ActivityRecord r) {
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001088 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
1089 + " callers=" + Debug.getCallers(5));
Chong Zhang6cda19c2016-06-14 19:07:56 -07001090 setResumedActivityLocked(r, "minimalResumeActivityLocked");
Andrii Kulian21713ac2016-10-12 22:05:05 -07001091 r.completeResumeLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -07001092 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001093 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
1094 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001095 }
1096
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -08001097 void addRecentActivityLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -07001098 if (r != null) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001099 final TaskRecord task = r.getTask();
1100 mRecentTasks.addLocked(task);
1101 task.touchActiveTime();
Chong Zhang45c25ce2015-08-10 22:18:26 -07001102 }
1103 }
1104
Narayan Kamath7829c812015-06-08 17:39:43 +01001105 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -07001106 if (mFullyDrawnStartTime != 0) {
1107 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
1108 }
Narayan Kamath7829c812015-06-08 17:39:43 +01001109 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -07001110 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
1111 }
1112
1113 private void stopFullyDrawnTraceIfNeeded() {
1114 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
1115 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
1116 mFullyDrawnStartTime = 0;
1117 }
1118 }
1119
Craig Mautnere79d42682013-04-01 19:01:53 -07001120 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001121 if (r.displayStartTime == 0) {
1122 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
1123 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +01001124 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001125 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001126 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001127 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +01001128 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001129 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001130 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001131 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001132
Andrii Kulian21713ac2016-10-12 22:05:05 -07001133 private void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -07001134 // Make sure that there is no activity waiting for this to launch.
1135 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
1136 r.displayStartTime = r.fullyDrawnStartTime = 0;
1137 } else {
1138 mStackSupervisor.removeTimeoutsForActivityLocked(r);
1139 mStackSupervisor.scheduleIdleTimeoutLocked(r);
1140 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001141 }
1142
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001143 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001144 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001145 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1146 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1147 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1148 activities.get(activityNdx).setSleeping(false);
1149 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001150 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -08001151 if (mPausingActivity != null) {
1152 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
1153 activityPausedLocked(mPausingActivity.appToken, true);
1154 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001155 }
1156
Todd Kennedy39bfee52016-02-24 10:28:21 -08001157 void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
1158 final String packageName = aInfo.packageName;
Makoto Onuki8b9963a2017-05-18 13:56:30 -07001159 final int userId = UserHandle.getUserId(aInfo.uid);
1160
Todd Kennedy39bfee52016-02-24 10:28:21 -08001161 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1162 final List<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1163 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Makoto Onuki8b9963a2017-05-18 13:56:30 -07001164 final ActivityRecord ar = activities.get(activityNdx);
1165
1166 if ((userId == ar.userId) && packageName.equals(ar.packageName)) {
1167 ar.info.applicationInfo = aInfo;
Todd Kennedy39bfee52016-02-24 10:28:21 -08001168 }
1169 }
1170 }
1171 }
1172
David Stevensf62360c2017-03-16 19:00:20 -07001173 void checkReadyForSleep() {
1174 if (shouldSleepActivities() && goToSleepIfPossible(false /* shuttingDown */)) {
1175 mStackSupervisor.checkReadyForSleepLocked(true /* allowDelay */);
1176 }
1177 }
1178
Craig Mautner0eea92c2013-05-16 13:35:39 -07001179 /**
David Stevensf62360c2017-03-16 19:00:20 -07001180 * Tries to put the activities in the stack to sleep.
1181 *
1182 * If the stack is not in a state where its activities can be put to sleep, this function will
1183 * start any necessary actions to move the stack into such a state. It is expected that this
1184 * function get called again when those actions complete.
1185 *
1186 * @param shuttingDown true when the called because the device is shutting down.
David Stevens18abd0e2017-08-17 14:55:47 -07001187 * @return true if the stack finished going to sleep, false if the stack only started the
1188 * process of going to sleep (checkReadyForSleep will be called when that process finishes).
Craig Mautner0eea92c2013-05-16 13:35:39 -07001189 */
David Stevensf62360c2017-03-16 19:00:20 -07001190 boolean goToSleepIfPossible(boolean shuttingDown) {
1191 boolean shouldSleep = true;
1192
Craig Mautner0eea92c2013-05-16 13:35:39 -07001193 if (mResumedActivity != null) {
1194 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001195 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
1196 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
1197 "Sleep => pause with userLeaving=false");
Bryce Lee5daa3122017-04-19 10:40:42 -07001198
1199 // If we are in the middle of resuming the top activity in
1200 // {@link #resumeTopActivityUncheckedLocked}, mResumedActivity will be set but not
1201 // resumed yet. We must not proceed pausing the activity here. This method will be
David Stevensf62360c2017-03-16 19:00:20 -07001202 // called again if necessary as part of {@link #checkReadyForSleep} or
Bryce Lee5daa3122017-04-19 10:40:42 -07001203 // {@link ActivityStackSupervisor#checkReadyForSleepLocked}.
1204 if (mStackSupervisor.inResumeTopActivity) {
1205 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "In the middle of resuming top activity "
1206 + mResumedActivity);
David Stevensf62360c2017-03-16 19:00:20 -07001207 } else {
1208 startPausingLocked(false, true, null, false);
Bryce Lee5daa3122017-04-19 10:40:42 -07001209 }
David Stevensf62360c2017-03-16 19:00:20 -07001210 shouldSleep = false ;
1211 } else if (mPausingActivity != null) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001212 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001213 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
David Stevensf62360c2017-03-16 19:00:20 -07001214 shouldSleep = false;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001215 }
David Stevensf62360c2017-03-16 19:00:20 -07001216
1217 if (!shuttingDown) {
1218 if (containsActivityFromStack(mStackSupervisor.mStoppingActivities)) {
1219 // Still need to tell some activities to stop; can't sleep yet.
1220 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still need to stop "
1221 + mStackSupervisor.mStoppingActivities.size() + " activities");
1222
1223 mStackSupervisor.scheduleIdleLocked();
1224 shouldSleep = false;
1225 }
1226
1227 if (containsActivityFromStack(mStackSupervisor.mGoingToSleepActivities)) {
1228 // Still need to tell some activities to sleep; can't sleep yet.
1229 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still need to sleep "
1230 + mStackSupervisor.mGoingToSleepActivities.size() + " activities");
1231 shouldSleep = false;
1232 }
1233 }
1234
1235 if (shouldSleep) {
1236 goToSleep();
1237 }
1238
David Stevens18abd0e2017-08-17 14:55:47 -07001239 return shouldSleep;
Craig Mautner0eea92c2013-05-16 13:35:39 -07001240 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001241
David Stevens18abd0e2017-08-17 14:55:47 -07001242 void goToSleep() {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001243 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001244
Andrii Kulianf9949d52016-05-06 12:53:25 -07001245 // Make sure any paused or stopped but visible activities are now sleeping.
Craig Mautner0eea92c2013-05-16 13:35:39 -07001246 // This ensures that the activity's onStop() is called.
1247 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1248 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1249 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1250 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07001251 if (r.state == STOPPING || r.state == STOPPED
Andrii Kulianf9949d52016-05-06 12:53:25 -07001252 || r.state == ActivityState.PAUSED || r.state == ActivityState.PAUSING) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001253 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001254 }
1255 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001256 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001257 }
Craig Mautner59c00972012-07-30 12:10:24 -07001258
David Stevensf62360c2017-03-16 19:00:20 -07001259 private boolean containsActivityFromStack(List<ActivityRecord> rs) {
1260 for (ActivityRecord r : rs) {
1261 if (r.getStack() == this) {
1262 return true;
1263 }
1264 }
1265 return false;
1266 }
1267
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001268 /**
Winson Chung4dabf232017-01-25 13:25:22 -08001269 * Schedule a pause timeout in case the app doesn't respond. We don't give it much time because
1270 * this directly impacts the responsiveness seen by the user.
1271 */
1272 private void schedulePauseTimeout(ActivityRecord r) {
1273 final Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1274 msg.obj = r;
1275 r.pauseTime = SystemClock.uptimeMillis();
1276 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
1277 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
1278 }
1279
1280 /**
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001281 * Start pausing the currently resumed activity. It is an error to call this if there
1282 * is already an activity being paused or there is no resumed activity.
1283 *
1284 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
1285 * @param uiSleeping True if this is happening with the user interface going to sleep (the
1286 * screen turning off).
Wale Ogunwale950faff2016-08-08 09:51:04 -07001287 * @param resuming The activity we are currently trying to resume or null if this is not being
1288 * called as part of resuming the top activity, so we shouldn't try to instigate
1289 * a resume here if not null.
Winson Chung6954fc92017-03-24 16:22:12 -07001290 * @param pauseImmediately True if the caller does not want to wait for the activity callback to
1291 * complete pausing.
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001292 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
1293 * it to tell us when it is done.
1294 */
Wale Ogunwale950faff2016-08-08 09:51:04 -07001295 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping,
Winson Chung6954fc92017-03-24 16:22:12 -07001296 ActivityRecord resuming, boolean pauseImmediately) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001297 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001298 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
1299 + " state=" + mPausingActivity.state);
David Stevensf62360c2017-03-16 19:00:20 -07001300 if (!shouldSleepActivities()) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001301 // Avoid recursion among check for sleep and complete pause during sleeping.
1302 // Because activity will be paused immediately after resume, just let pause
1303 // be completed by the order of activity paused from clients.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001304 completePauseLocked(false, resuming);
riddle_hsu7dfe4d72015-02-16 18:43:49 +08001305 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001306 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001307 ActivityRecord prev = mResumedActivity;
Bryce Lee5daa3122017-04-19 10:40:42 -07001308
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001309 if (prev == null) {
Wale Ogunwale950faff2016-08-08 09:51:04 -07001310 if (resuming == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001311 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001312 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001313 }
1314 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001315 }
Craig Mautnerdf88d732014-01-27 09:21:32 -08001316
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001317 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001318 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001319 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001320 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001321 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -07001322 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
1323 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001324 prev.state = ActivityState.PAUSING;
Bryce Leeaf691c02017-03-20 14:20:22 -07001325 prev.getTask().touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001326 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -07001327 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwale979f5ed2015-10-12 11:22:50 -07001328 if (mService.mHasRecents
Bryce Leeaf691c02017-03-20 14:20:22 -07001329 && (next == null || next.noDisplay || next.getTask() != prev.getTask()
1330 || uiSleeping)) {
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001331 prev.mUpdateTaskThumbnailWhenHidden = true;
Craig Mautner6f6d56f2013-10-24 16:02:07 -07001332 }
Dianne Hackborncee04b52013-07-03 17:01:28 -07001333 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001334
1335 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -08001336
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001337 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001338 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001339 try {
1340 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001341 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001342 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -07001343 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001344 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Winson Chung6954fc92017-03-24 16:22:12 -07001345 userLeaving, prev.configChangeFlags, pauseImmediately);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001346 } catch (Exception e) {
1347 // Ignore exception, if process died other code will cleanup.
1348 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001349 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001350 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001351 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001352 }
1353 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001354 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001355 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001356 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001357 }
1358
1359 // If we are not going to sleep, we want to ensure the device is
1360 // awake until the next activity is started.
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07001361 if (!uiSleeping && !mService.isSleepingOrShuttingDownLocked()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001362 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001363 }
1364
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001365 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001366 // Have the window manager pause its key dispatching until the new
1367 // activity has started. If we're pausing the activity just because
1368 // the screen is being turned off and the UI is sleeping, don't interrupt
1369 // key dispatch; the same activity will pick it up again on wakeup.
1370 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001371 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001372 } else if (DEBUG_PAUSE) {
1373 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001374 }
1375
Winson Chung6954fc92017-03-24 16:22:12 -07001376 if (pauseImmediately) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001377 // If the caller said they don't want to wait for the pause, then complete
1378 // the pause now.
Wale Ogunwale950faff2016-08-08 09:51:04 -07001379 completePauseLocked(false, resuming);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001380 return false;
1381
1382 } else {
Winson Chung4dabf232017-01-25 13:25:22 -08001383 schedulePauseTimeout(prev);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001384 return true;
1385 }
1386
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001387 } else {
1388 // This activity failed to schedule the
1389 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001390 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Wale Ogunwale950faff2016-08-08 09:51:04 -07001391 if (resuming == null) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001392 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001393 }
1394 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001395 }
1396 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001397
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001398 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001399 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1400 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001401
Craig Mautnerd2328952013-03-05 12:46:26 -08001402 final ActivityRecord r = isInStackLocked(token);
1403 if (r != null) {
1404 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1405 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001406 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001407 + (timeout ? " (due to timeout)" : " (pause complete)"));
Jorim Jaggife762342016-10-13 14:33:27 +02001408 mService.mWindowManager.deferSurfaceLayout();
1409 try {
Winson Chung3f103eb2017-04-12 21:53:59 -07001410 completePauseLocked(true /* resumeNext */, null /* resumingActivity */);
Jorim Jaggife762342016-10-13 14:33:27 +02001411 } finally {
1412 mService.mWindowManager.continueSurfaceLayout();
1413 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001414 return;
Craig Mautnerd2328952013-03-05 12:46:26 -08001415 } else {
1416 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1417 r.userId, System.identityHashCode(r), r.shortComponentName,
1418 mPausingActivity != null
1419 ? mPausingActivity.shortComponentName : "(none)");
riddle_hsu9caeef72015-10-20 16:34:05 +08001420 if (r.state == ActivityState.PAUSING) {
1421 r.state = ActivityState.PAUSED;
1422 if (r.finishing) {
1423 if (DEBUG_PAUSE) Slog.v(TAG,
1424 "Executing finish of failed to pause activity: " + r);
1425 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1426 }
louis_chang047dfd42015-04-08 16:35:55 +08001427 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001428 }
1429 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001430 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001431 }
1432
Wale Ogunwale950faff2016-08-08 09:51:04 -07001433 private void completePauseLocked(boolean resumeNext, ActivityRecord resuming) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001434 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001435 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001436
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001437 if (prev != null) {
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07001438 final boolean wasStopping = prev.state == STOPPING;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001439 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001440 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001441 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001442 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001443 } else if (prev.app != null) {
Wale Ogunwaled8026642016-02-09 20:40:18 -08001444 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1445 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
Bryce Lee4a194382017-04-04 14:32:48 -07001446 if (mStackSupervisor.mActivitiesWaitingForVisibleActivity.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001447 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1448 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001449 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001450 if (prev.deferRelaunchUntilPaused) {
1451 // Complete the deferred relaunch that was waiting for pause to complete.
1452 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
Andrii Kulian21713ac2016-10-12 22:05:05 -07001453 prev.relaunchActivityLocked(false /* andResume */,
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001454 prev.preserveWindowOnDeferredRelaunch);
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001455 } else if (wasStopping) {
1456 // We are also stopping, the stop request must have gone soon after the pause.
1457 // We can't clobber it, because the stop confirmation will not be handled.
1458 // We don't need to schedule another stop, we only need to let it happen.
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07001459 prev.state = STOPPING;
David Stevensf62360c2017-03-16 19:00:20 -07001460 } else if (!prev.visible || shouldSleepOrShutDownActivities()) {
Wale Ogunwaleec950642017-04-25 07:44:21 -07001461 // Clear out any deferred client hide we might currently have.
1462 prev.setDeferHidingClient(false);
Jose Lima4b6c6692014-08-12 17:41:12 -07001463 // If we were visible then resumeTopActivities will release resources before
Wale Ogunwaleec950642017-04-25 07:44:21 -07001464 // stopping.
Winson Chung4dabf232017-01-25 13:25:22 -08001465 addToStopping(prev, true /* scheduleIdle */, false /* idleDelayed */);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001466 }
1467 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001468 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001469 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001470 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001471 // It is possible the activity was freezing the screen before it was paused.
1472 // In that case go ahead and remove the freeze this activity has on the screen
1473 // since it is no longer visible.
Wale Ogunwalee8524002016-09-13 16:34:57 -07001474 if (prev != null) {
1475 prev.stopFreezingScreenLocked(true /*force*/);
1476 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001477 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001478 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001479
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001480 if (resumeNext) {
1481 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
David Stevensf62360c2017-03-16 19:00:20 -07001482 if (!topStack.shouldSleepOrShutDownActivities()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001483 mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001484 } else {
David Stevensf62360c2017-03-16 19:00:20 -07001485 checkReadyForSleep();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001486 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001487 if (top == null || (prev != null && top != prev)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001488 // If there are no more activities available to run, do resume anyway to start
1489 // something. Also if the top activity on the stack is not the just paused
1490 // activity, we need to go ahead and resume it to ensure we complete an
1491 // in-flight app switch.
1492 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001493 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001494 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001495 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001496
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001497 if (prev != null) {
1498 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001499
Craig Mautner525f3d92013-05-07 14:01:50 -07001500 if (prev.app != null && prev.cpuTimeAtResume > 0
1501 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001502 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1503 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001504 if (diff > 0) {
1505 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1506 synchronized (bsi) {
1507 BatteryStatsImpl.Uid.Proc ps =
1508 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001509 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001510 if (ps != null) {
1511 ps.addForegroundTimeLocked(diff);
1512 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001513 }
1514 }
1515 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001516 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001517 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001518
Andrii Kulian8290f8f2016-06-30 17:51:32 -07001519 // Notify when the task stack has changed, but only if visibilities changed (not just
1520 // focus). Also if there is an active pinned stack - we always want to notify it about
1521 // task stack changes, because its positioning may depend on it.
1522 if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause
1523 || mService.mStackSupervisor.getStack(PINNED_STACK_ID) != null) {
Yorke Leebd54c2a2016-10-25 13:49:23 -07001524 mService.mTaskChangeNotificationController.notifyTaskStackChanged();
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001525 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1526 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001527
Wale Ogunwale950faff2016-08-08 09:51:04 -07001528 mStackSupervisor.ensureActivitiesVisibleLocked(resuming, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001529 }
1530
Winson Chung4dabf232017-01-25 13:25:22 -08001531 void addToStopping(ActivityRecord r, boolean scheduleIdle, boolean idleDelayed) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001532 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1533 mStackSupervisor.mStoppingActivities.add(r);
1534 }
1535
1536 // If we already have a few activities waiting to stop, then give up
1537 // on things going idle and start clearing them out. Or if r is the
1538 // last of activity of the last task the stack will be empty and must
1539 // be cleared immediately.
1540 boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1541 || (r.frontOfTask && mTaskHistory.size() <= 1);
Winson Chung4dabf232017-01-25 13:25:22 -08001542 if (scheduleIdle || forceIdle) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001543 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
Winson Chung4dabf232017-01-25 13:25:22 -08001544 + forceIdle + "immediate=" + !idleDelayed);
1545 if (!idleDelayed) {
1546 mStackSupervisor.scheduleIdleLocked();
1547 } else {
1548 mStackSupervisor.scheduleIdleTimeoutLocked(r);
1549 }
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001550 } else {
David Stevensf62360c2017-03-16 19:00:20 -07001551 checkReadyForSleep();
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001552 }
1553 }
1554
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001555 // Find the first visible activity above the passed activity and if it is translucent return it
1556 // otherwise return null;
1557 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001558 TaskRecord task = r.getTask();
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001559 if (task == null) {
1560 return null;
1561 }
1562
Andrii Kulian02b7a832016-10-06 23:11:56 -07001563 final ActivityStack stack = task.getStack();
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001564 if (stack == null) {
1565 return null;
1566 }
1567
1568 int stackNdx = mStacks.indexOf(stack);
1569
1570 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1571 int taskNdx = tasks.indexOf(task);
1572
1573 ArrayList<ActivityRecord> activities = task.mActivities;
1574 int activityNdx = activities.indexOf(r) + 1;
1575
1576 final int numStacks = mStacks.size();
1577 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001578 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001579 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001580 final int numTasks = tasks.size();
1581 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001582 final TaskRecord currentTask = tasks.get(taskNdx);
1583 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001584 final int numActivities = activities.size();
1585 while (activityNdx < numActivities) {
1586 final ActivityRecord activity = activities.get(activityNdx);
1587 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001588 return historyStack.mFullscreen
1589 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001590 }
1591 ++activityNdx;
1592 }
1593 activityNdx = 0;
1594 ++taskNdx;
1595 }
1596 taskNdx = 0;
1597 ++stackNdx;
1598 }
1599
1600 return null;
1601 }
1602
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001603 /** Returns true if the stack contains a fullscreen task. */
1604 private boolean hasFullscreenTask() {
1605 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1606 final TaskRecord task = mTaskHistory.get(i);
1607 if (task.mFullscreen) {
1608 return true;
1609 }
1610 }
1611 return false;
1612 }
1613
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001614 /**
1615 * Returns true if the stack is translucent and can have other contents visible behind it if
1616 * needed. A stack is considered translucent if it don't contain a visible or
1617 * starting (about to be visible) activity that is fullscreen (opaque).
1618 * @param starting The currently starting activity or null if there is none.
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001619 * @param stackBehindId The id of the stack directly behind this one.
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001620 */
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001621 private boolean isStackTranslucent(ActivityRecord starting, int stackBehindId) {
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001622 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1623 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001624 final ArrayList<ActivityRecord> activities = task.mActivities;
1625 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1626 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001627
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001628 if (r.finishing) {
1629 // We don't factor in finishing activities when determining translucency since
1630 // they will be gone soon.
1631 continue;
1632 }
1633
1634 if (!r.visible && r != starting) {
1635 // Also ignore invisible activities that are not the currently starting
1636 // activity (about to be visible).
1637 continue;
1638 }
1639
1640 if (r.fullscreen) {
1641 // Stack isn't translucent if it has at least one fullscreen activity
1642 // that is visible.
1643 return false;
1644 }
1645
Winson Chunge74ad8d2017-02-17 15:12:25 -08001646 if (!isHomeOrRecentsStack() && r.frontOfTask && task.isOverHomeStack()
1647 && !StackId.isHomeOrRecentsStack(stackBehindId) && !isAssistantStack()) {
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001648 // Stack isn't translucent if it's top activity should have the home stack
Winson Chunge74ad8d2017-02-17 15:12:25 -08001649 // behind it and the stack currently behind it isn't the home or recents stack
1650 // or the assistant stack.
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001651 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001652 }
1653 }
1654 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001655 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001656 }
1657
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07001658 /** Returns true if the stack is currently considered visible. */
1659 boolean isVisible() {
Winson Chung47900652017-04-06 18:44:25 -07001660 return mWindowContainerController != null && mWindowContainerController.isVisible()
1661 && !mForceHidden;
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07001662 }
1663
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001664 /**
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001665 * Returns what the stack visibility should be: {@link #STACK_INVISIBLE} or
1666 * {@link #STACK_VISIBLE}.
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07001667 *
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001668 * @param starting The currently starting activity or null if there is none.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001669 */
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07001670 int shouldBeVisible(ActivityRecord starting) {
Winson Chung47900652017-04-06 18:44:25 -07001671 if (!isAttached() || mForceHidden) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001672 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001673 }
1674
Andrii Kuliane8d928a2016-11-14 18:38:14 -08001675 if (mStackSupervisor.isFrontStackOnDisplay(this) || mStackSupervisor.isFocusedStack(this)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001676 return STACK_VISIBLE;
Wale Ogunwale99db1862015-10-23 20:08:22 -07001677 }
1678
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001679 final int stackIndex = mStacks.indexOf(this);
1680
1681 if (stackIndex == mStacks.size() - 1) {
1682 Slog.wtf(TAG,
1683 "Stack=" + this + " isn't front stack but is at the top of the stack list");
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001684 return STACK_INVISIBLE;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001685 }
1686
Andrii Kulian0864bbb2017-02-16 15:45:58 -08001687 // Check position and visibility of this stack relative to the front stack on its display.
1688 final ActivityStack topStack = getTopStackOnDisplay();
1689 final int topStackId = topStack.mStackId;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001690
1691 if (mStackId == DOCKED_STACK_ID) {
Winson Chunge74ad8d2017-02-17 15:12:25 -08001692 // If the assistant stack is focused and translucent, then the docked stack is always
1693 // visible
Winson Chung521f0112017-03-13 16:14:45 -07001694 if (topStack.isAssistantStack()) {
1695 return (topStack.isStackTranslucent(starting, DOCKED_STACK_ID)) ? STACK_VISIBLE
1696 : STACK_INVISIBLE;
Winson Chunge74ad8d2017-02-17 15:12:25 -08001697 }
Matthew Ng6875d472017-05-01 13:59:50 -07001698 return STACK_VISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001699 }
1700
Matthew Ng330757d2017-02-28 14:19:17 -08001701 // Set home stack to invisible when it is below but not immediately below the docked stack
1702 // A case would be if recents stack exists but has no tasks and is below the docked stack
1703 // and home stack is below recents
1704 if (mStackId == HOME_STACK_ID) {
1705 int dockedStackIndex = mStacks.indexOf(mStackSupervisor.getStack(DOCKED_STACK_ID));
1706 if (dockedStackIndex > stackIndex && stackIndex != dockedStackIndex - 1) {
1707 return STACK_INVISIBLE;
1708 }
1709 }
1710
Andrii Kulian0864bbb2017-02-16 15:45:58 -08001711 // Find the first stack behind front stack that actually got something visible.
1712 int stackBehindTopIndex = mStacks.indexOf(topStack) - 1;
1713 while (stackBehindTopIndex >= 0 &&
1714 mStacks.get(stackBehindTopIndex).topRunningActivityLocked() == null) {
1715 stackBehindTopIndex--;
Chong Zhangb16cf342015-11-12 17:22:40 -08001716 }
Andrii Kulian0864bbb2017-02-16 15:45:58 -08001717 final int stackBehindTopId = (stackBehindTopIndex >= 0)
1718 ? mStacks.get(stackBehindTopIndex).mStackId : INVALID_STACK_ID;
Winson Chungdd7593a2017-07-05 18:02:36 -07001719 if (topStackId == DOCKED_STACK_ID || StackId.isAlwaysOnTop(topStackId)) {
1720 if (stackIndex == stackBehindTopIndex) {
1721 // Stacks directly behind the docked or pinned stack are always visible.
1722 return STACK_VISIBLE;
1723 } else if (StackId.isAlwaysOnTop(topStackId) && stackIndex == stackBehindTopIndex - 1) {
1724 // Otherwise, this stack can also be visible if it is directly behind a docked stack
1725 // or translucent assistant stack behind an always-on-top top-most stack
1726 if (stackBehindTopId == DOCKED_STACK_ID) {
1727 return STACK_VISIBLE;
1728 } else if (stackBehindTopId == ASSISTANT_STACK_ID) {
1729 return mStacks.get(stackBehindTopIndex).isStackTranslucent(starting, mStackId)
1730 ? STACK_VISIBLE : STACK_INVISIBLE;
1731 }
1732 }
Matthew Ng6875d472017-05-01 13:59:50 -07001733 }
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001734
Andrii Kulian0864bbb2017-02-16 15:45:58 -08001735 if (StackId.isBackdropToTranslucentActivity(topStackId)
1736 && topStack.isStackTranslucent(starting, stackBehindTopId)) {
Winson Chung83471632016-12-13 11:02:12 -08001737 // Stacks behind the fullscreen or assistant stack with a translucent activity are
1738 // always visible so they can act as a backdrop to the translucent activity.
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001739 // For example, dialog activities
Andrii Kulian0864bbb2017-02-16 15:45:58 -08001740 if (stackIndex == stackBehindTopIndex) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001741 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001742 }
Andrii Kulian0864bbb2017-02-16 15:45:58 -08001743 if (stackBehindTopIndex >= 0) {
1744 if ((stackBehindTopId == DOCKED_STACK_ID
1745 || stackBehindTopId == PINNED_STACK_ID)
1746 && stackIndex == (stackBehindTopIndex - 1)) {
Wale Ogunwale99db1862015-10-23 20:08:22 -07001747 // The stack behind the docked or pinned stack is also visible so we can have a
1748 // complete backdrop to the translucent activity when the docked stack is up.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001749 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001750 }
1751 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001752 }
1753
Wale Ogunwale3797c222015-10-27 14:21:58 -07001754 if (StackId.isStaticStack(mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001755 // Visibility of any static stack should have been determined by the conditions above.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001756 return STACK_INVISIBLE;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001757 }
1758
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001759 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001760 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001761
1762 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1763 continue;
1764 }
1765
Wale Ogunwale3797c222015-10-27 14:21:58 -07001766 if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001767 // These stacks can't have any dynamic stacks visible behind them.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001768 return STACK_INVISIBLE;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001769 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001770
Wale Ogunwale56d75cf2016-03-09 15:14:47 -08001771 if (!stack.isStackTranslucent(starting, INVALID_STACK_ID)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001772 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001773 }
1774 }
1775
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001776 return STACK_VISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001777 }
1778
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001779 final int rankTaskLayers(int baseLayer) {
1780 int layer = 0;
1781 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1782 final TaskRecord task = mTaskHistory.get(taskNdx);
1783 ActivityRecord r = task.topRunningActivityLocked();
1784 if (r == null || r.finishing || !r.visible) {
1785 task.mLayerRank = -1;
1786 } else {
1787 task.mLayerRank = baseLayer + layer++;
1788 }
1789 }
1790 return layer;
1791 }
1792
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001793 /**
1794 * Make sure that all activities that need to be visible (that is, they
1795 * currently can be seen by the user) actually are.
1796 */
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001797 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1798 boolean preserveWindows) {
Jorim Jaggife762342016-10-13 14:33:27 +02001799 mTopActivityOccludesKeyguard = false;
1800 mTopDismissingKeyguardActivity = null;
1801 mStackSupervisor.mKeyguardController.beginActivityVisibilityUpdate();
1802 try {
1803 ActivityRecord top = topRunningActivityLocked();
1804 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
1805 + " configChanges=0x" + Integer.toHexString(configChanges));
1806 if (top != null) {
1807 checkTranslucentActivityWaiting(top);
1808 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001809
Jorim Jaggife762342016-10-13 14:33:27 +02001810 // If the top activity is not fullscreen, then we need to
1811 // make sure any activities under it are now visible.
1812 boolean aboveTop = top != null;
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07001813 final int stackVisibility = shouldBeVisible(starting);
Jorim Jaggife762342016-10-13 14:33:27 +02001814 final boolean stackInvisible = stackVisibility != STACK_VISIBLE;
Jorim Jaggife762342016-10-13 14:33:27 +02001815 boolean behindFullscreenActivity = stackInvisible;
1816 boolean resumeNextActivity = mStackSupervisor.isFocusedStack(this)
1817 && (isInStackLocked(starting) == null);
1818 boolean behindTranslucentActivity = false;
Jorim Jaggife762342016-10-13 14:33:27 +02001819 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1820 final TaskRecord task = mTaskHistory.get(taskNdx);
1821 final ArrayList<ActivityRecord> activities = task.mActivities;
1822 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1823 final ActivityRecord r = activities.get(activityNdx);
1824 if (r.finishing) {
1825 // Normally the screenshot will be taken in makeInvisible(). When an activity
1826 // is finishing, we no longer change its visibility, but we still need to take
1827 // the screenshots if startPausingLocked decided it should be taken.
1828 if (r.mUpdateTaskThumbnailWhenHidden) {
1829 r.updateThumbnailLocked(r.screenshotActivityLocked(),
1830 null /* description */);
1831 r.mUpdateTaskThumbnailWhenHidden = false;
1832 }
1833 continue;
Chong Zhang22bc8512016-04-07 13:47:18 -07001834 }
Jorim Jaggife762342016-10-13 14:33:27 +02001835 final boolean isTop = r == top;
1836 if (aboveTop && !isTop) {
1837 continue;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001838 }
Jorim Jaggife762342016-10-13 14:33:27 +02001839 aboveTop = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001840
Jorim Jaggife762342016-10-13 14:33:27 +02001841 // Check whether activity should be visible without Keyguard influence
Jorim Jaggi241ae102016-11-02 21:57:33 -07001842 final boolean visibleIgnoringKeyguard = r.shouldBeVisibleIgnoringKeyguard(
Jorim Jaggi241ae102016-11-02 21:57:33 -07001843 behindFullscreenActivity);
1844 r.visibleIgnoringKeyguard = visibleIgnoringKeyguard;
Jorim Jaggife762342016-10-13 14:33:27 +02001845
1846 // Now check whether it's really visible depending on Keyguard state.
Jorim Jaggi241ae102016-11-02 21:57:33 -07001847 final boolean reallyVisible = checkKeyguardVisibility(r,
1848 visibleIgnoringKeyguard, isTop);
1849 if (visibleIgnoringKeyguard) {
Jorim Jaggife762342016-10-13 14:33:27 +02001850 behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1851 behindFullscreenActivity, task, r);
1852 if (behindFullscreenActivity && !r.fullscreen) {
1853 behindTranslucentActivity = true;
1854 }
1855 }
1856 if (reallyVisible) {
1857 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
1858 + " finishing=" + r.finishing + " state=" + r.state);
1859 // First: if this is not the current activity being started, make
1860 // sure it matches the current configuration.
1861 if (r != starting) {
1862 r.ensureActivityConfigurationLocked(0 /* globalChanges */, preserveWindows);
1863 }
1864
1865 if (r.app == null || r.app.thread == null) {
1866 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
1867 resumeNextActivity, r)) {
1868 if (activityNdx >= activities.size()) {
1869 // Record may be removed if its process needs to restart.
1870 activityNdx = activities.size() - 1;
1871 } else {
1872 resumeNextActivity = false;
1873 }
1874 }
1875 } else if (r.visible) {
1876 // If this activity is already visible, then there is nothing to do here.
1877 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1878 "Skipping: already visible at " + r);
1879
1880 if (r.handleAlreadyVisible()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001881 resumeNextActivity = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001882 }
Jorim Jaggife762342016-10-13 14:33:27 +02001883 } else {
1884 r.makeVisibleIfNeeded(starting);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001885 }
Jorim Jaggife762342016-10-13 14:33:27 +02001886 // Aggregate current change flags.
1887 configChanges |= r.configChangeFlags;
Craig Mautnerbb742462014-07-07 15:28:55 -07001888 } else {
Jorim Jaggife762342016-10-13 14:33:27 +02001889 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
1890 + " finishing=" + r.finishing + " state=" + r.state + " stackInvisible="
1891 + stackInvisible + " behindFullscreenActivity="
1892 + behindFullscreenActivity + " mLaunchTaskBehind="
1893 + r.mLaunchTaskBehind);
Wale Ogunwalec981ad52017-06-13 11:40:06 -07001894 makeInvisible(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001895 }
Jorim Jaggife762342016-10-13 14:33:27 +02001896 }
1897 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1898 // The visibility of tasks and the activities they contain in freeform stack are
1899 // determined individually unlike other stacks where the visibility or fullscreen
1900 // status of an activity in a previous task affects other.
1901 behindFullscreenActivity = stackVisibility == STACK_INVISIBLE;
1902 } else if (mStackId == HOME_STACK_ID) {
Wale Ogunwale069bbd32017-02-03 07:58:14 -08001903 if (task.isHomeTask()) {
Jorim Jaggife762342016-10-13 14:33:27 +02001904 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
1905 + " stackInvisible=" + stackInvisible
1906 + " behindFullscreenActivity=" + behindFullscreenActivity);
1907 // No other task in the home stack should be visible behind the home activity.
1908 // Home activities is usually a translucent activity with the wallpaper behind
1909 // them. However, when they don't have the wallpaper behind them, we want to
1910 // show activities in the next application stack behind them vs. another
1911 // task in the home stack like recents.
1912 behindFullscreenActivity = true;
1913 } else if (task.isRecentsTask()
1914 && task.getTaskToReturnTo() == APPLICATION_ACTIVITY_TYPE) {
1915 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1916 "Recents task returning to app: at " + task
1917 + " stackInvisible=" + stackInvisible
1918 + " behindFullscreenActivity=" + behindFullscreenActivity);
1919 // We don't want any other tasks in the home stack visible if the recents
1920 // activity is going to be returning to an application activity type.
1921 // We do this to preserve the visible order the user used to get into the
1922 // recents activity. The recents activity is normally translucent and if it
1923 // doesn't have the wallpaper behind it the next activity in the home stack
1924 // shouldn't be visible when the home stack is brought to the front to display
1925 // the recents activity from an app.
1926 behindFullscreenActivity = true;
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001927 }
Winson Chung1cebea62017-06-26 17:22:27 -07001928 } else if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID) {
1929 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Skipping after task=" + task
1930 + " returning to non-application type=" + task.getTaskToReturnTo());
Winson Chung03157022017-07-19 11:58:59 -07001931 // Once we reach a fullscreen stack task that has a running activity and should
1932 // return to another stack task, then no other activities behind that one should
1933 // be visible.
1934 if (task.topRunningActivityLocked() != null &&
1935 task.getTaskToReturnTo() != APPLICATION_ACTIVITY_TYPE) {
Winson Chung1cebea62017-06-26 17:22:27 -07001936 behindFullscreenActivity = true;
1937 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001938 }
1939 }
Wale Ogunwale74e26592016-02-05 11:48:37 -08001940
Jorim Jaggife762342016-10-13 14:33:27 +02001941 if (mTranslucentActivityWaiting != null &&
1942 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1943 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1944 notifyActivityDrawnLocked(null);
1945 }
1946 } finally {
1947 mStackSupervisor.mKeyguardController.endActivityVisibilityUpdate();
1948 }
1949 }
1950
Jorim Jaggi8b702ed2017-01-20 16:59:03 +01001951 void addStartingWindowsForVisibleActivities(boolean taskSwitch) {
1952 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1953 mTaskHistory.get(taskNdx).addStartingWindowsForVisibleActivities(taskSwitch);
1954 }
1955 }
1956
Jorim Jaggife762342016-10-13 14:33:27 +02001957 /**
1958 * @return true if the top visible activity wants to occlude the Keyguard, false otherwise
1959 */
1960 boolean topActivityOccludesKeyguard() {
1961 return mTopActivityOccludesKeyguard;
1962 }
1963
1964 /**
1965 * @return the top most visible activity that wants to dismiss Keyguard
1966 */
1967 ActivityRecord getTopDismissingKeyguardActivity() {
1968 return mTopDismissingKeyguardActivity;
1969 }
1970
1971 /**
1972 * Checks whether {@param r} should be visible depending on Keyguard state and updates
1973 * {@link #mTopActivityOccludesKeyguard} and {@link #mTopDismissingKeyguardActivity} if
1974 * necessary.
1975 *
1976 * @return true if {@param r} is visible taken Keyguard state into account, false otherwise
1977 */
Wale Ogunwaled334a052017-05-12 07:17:36 -07001978 boolean checkKeyguardVisibility(ActivityRecord r, boolean shouldBeVisible,
Jorim Jaggife762342016-10-13 14:33:27 +02001979 boolean isTop) {
Winson Chung0655da02016-12-16 17:05:01 -08001980 final boolean isInPinnedStack = r.getStack().getStackId() == PINNED_STACK_ID;
Jorim Jaggife762342016-10-13 14:33:27 +02001981 final boolean keyguardShowing = mStackSupervisor.mKeyguardController.isKeyguardShowing();
1982 final boolean keyguardLocked = mStackSupervisor.mKeyguardController.isKeyguardLocked();
chaviw59b98852017-06-13 12:05:44 -07001983 final boolean showWhenLocked = r.canShowWhenLocked() && !isInPinnedStack;
Jorim Jaggie69c9312016-10-31 18:24:38 -07001984 final boolean dismissKeyguard = r.hasDismissKeyguardWindows();
Jorim Jaggife762342016-10-13 14:33:27 +02001985 if (shouldBeVisible) {
Jorim Jaggie69c9312016-10-31 18:24:38 -07001986 if (dismissKeyguard && mTopDismissingKeyguardActivity == null) {
Jorim Jaggife762342016-10-13 14:33:27 +02001987 mTopDismissingKeyguardActivity = r;
1988 }
1989
1990 // Only the top activity may control occluded, as we can't occlude the Keyguard if the
1991 // top app doesn't want to occlude it.
1992 if (isTop) {
1993 mTopActivityOccludesKeyguard |= showWhenLocked;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001994 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001995
Andrii Kulian7211d2e2017-01-27 15:58:05 -08001996 final boolean canShowWithKeyguard = canShowWithInsecureKeyguard()
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001997 && mStackSupervisor.mKeyguardController.canDismissKeyguard();
1998 if (canShowWithKeyguard) {
1999 return true;
2000 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002001 }
Jorim Jaggife762342016-10-13 14:33:27 +02002002 if (keyguardShowing) {
Craig Mautnereb8abf72014-07-02 15:04:09 -07002003
Jorim Jaggie69c9312016-10-31 18:24:38 -07002004 // If keyguard is showing, nothing is visible, except if we are able to dismiss Keyguard
2005 // right away.
2006 return shouldBeVisible && mStackSupervisor.mKeyguardController
Jorim Jaggi07961872016-11-23 11:28:57 +01002007 .canShowActivityWhileKeyguardShowing(r, dismissKeyguard);
Jorim Jaggife762342016-10-13 14:33:27 +02002008 } else if (keyguardLocked) {
Jorim Jaggi07961872016-11-23 11:28:57 +01002009 return shouldBeVisible && mStackSupervisor.mKeyguardController.canShowWhileOccluded(
2010 dismissKeyguard, showWhenLocked);
Jorim Jaggife762342016-10-13 14:33:27 +02002011 } else {
2012 return shouldBeVisible;
Craig Mautnereb8abf72014-07-02 15:04:09 -07002013 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002014 }
Craig Mautner58547802013-03-05 08:23:53 -08002015
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002016 /**
2017 * Check if the display to which this stack is attached has
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002018 * {@link Display#FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD} applied.
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002019 */
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002020 private boolean canShowWithInsecureKeyguard() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07002021 final ActivityStackSupervisor.ActivityDisplay activityDisplay = getDisplay();
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002022 if (activityDisplay == null) {
2023 throw new IllegalStateException("Stack is not attached to any display, stackId="
2024 + mStackId);
2025 }
2026
2027 final int flags = activityDisplay.mDisplay.getFlags();
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002028 return (flags & FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002029 }
2030
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002031 private void checkTranslucentActivityWaiting(ActivityRecord top) {
2032 if (mTranslucentActivityWaiting != top) {
2033 mUndrawnActivitiesBelowTopTranslucent.clear();
2034 if (mTranslucentActivityWaiting != null) {
2035 // Call the callback with a timeout indication.
2036 notifyActivityDrawnLocked(null);
2037 mTranslucentActivityWaiting = null;
2038 }
2039 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2040 }
2041 }
2042
2043 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Wale Ogunwaled046a012015-12-24 13:05:59 -08002044 boolean isTop, boolean andResume, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002045 // We need to make sure the app is running if it's the top, or it is just made visible from
2046 // invisible. If the app is already visible, it must have died while it was visible. In this
2047 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
2048 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08002049 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002050 // This activity needs to be visible, but isn't even running...
2051 // get it started and resume if no other stack in this stack is resumed.
2052 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
2053 if (r != starting) {
2054 r.startFreezingScreenLocked(r.app, configChanges);
2055 }
2056 if (!r.visible || r.mLaunchTaskBehind) {
2057 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
Andrii Kulian21713ac2016-10-12 22:05:05 -07002058 r.setVisible(true);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002059 }
2060 if (r != starting) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08002061 mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002062 return true;
2063 }
2064 }
2065 return false;
2066 }
2067
Wale Ogunwalec981ad52017-06-13 11:40:06 -07002068 // TODO: Should probably be moved into ActivityRecord.
2069 private void makeInvisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002070 if (!r.visible) {
2071 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
2072 return;
2073 }
2074 // Now for any activities that aren't visible to the user, make sure they no longer are
2075 // keeping the screen frozen.
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08002076 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.state);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002077 try {
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07002078 final boolean canEnterPictureInPicture = r.checkEnterPictureInPictureState(
Winson Chung298f95b2017-08-10 15:57:18 -07002079 "makeInvisible", true /* beforeStopping */);
Wale Ogunwale89973222017-04-23 18:39:45 -07002080 // Defer telling the client it is hidden if it can enter Pip and isn't current stopped
2081 // or stopping. This gives it a chance to enter Pip in onPause().
2082 final boolean deferHidingClient = canEnterPictureInPicture
2083 && r.state != STOPPING && r.state != STOPPED;
Wale Ogunwaleec950642017-04-25 07:44:21 -07002084 r.setDeferHidingClient(deferHidingClient);
2085 r.setVisible(false);
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07002086
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002087 switch (r.state) {
2088 case STOPPING:
2089 case STOPPED:
2090 if (r.app != null && r.app.thread != null) {
2091 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2092 "Scheduling invisibility: " + r);
2093 r.app.thread.scheduleWindowVisibility(r.appToken, false);
2094 }
Winson Chungc2baac02017-01-11 13:34:47 -08002095
2096 // Reset the flag indicating that an app can enter picture-in-picture once the
2097 // activity is hidden
2098 r.supportsPictureInPictureWhilePausing = false;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002099 break;
2100
2101 case INITIALIZING:
2102 case RESUMED:
2103 case PAUSING:
2104 case PAUSED:
Wale Ogunwalec981ad52017-06-13 11:40:06 -07002105 addToStopping(r, true /* scheduleIdle */,
2106 canEnterPictureInPicture /* idleDelayed */);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002107 break;
2108
2109 default:
2110 break;
2111 }
2112 } catch (Exception e) {
2113 // Just skip on any failure; we'll make it visible when it next restarts.
2114 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
2115 }
2116 }
2117
2118 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
2119 TaskRecord task, ActivityRecord r) {
2120 if (r.fullscreen) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002121 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwale673cbd22016-01-30 18:30:55 -08002122 + " stackInvisible=" + stackInvisible
2123 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08002124 // At this point, nothing else needs to be shown in this task.
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002125 behindFullscreenActivity = true;
Matthew Ngae1ff4f2016-11-10 15:49:14 -08002126 } else if (!isHomeOrRecentsStack() && r.frontOfTask && task.isOverHomeStack()) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002127 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
2128 + " stackInvisible=" + stackInvisible
2129 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08002130 behindFullscreenActivity = true;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08002131 }
2132 return behindFullscreenActivity;
2133 }
2134
Todd Kennedyaab56db2015-01-30 09:39:53 -08002135 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07002136 mTranslucentActivityWaiting = r;
2137 mUndrawnActivitiesBelowTopTranslucent.clear();
2138 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
2139 }
2140
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07002141 void clearOtherAppTimeTrackers(AppTimeTracker except) {
2142 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2143 final TaskRecord task = mTaskHistory.get(taskNdx);
2144 final ArrayList<ActivityRecord> activities = task.mActivities;
2145 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2146 final ActivityRecord r = activities.get(activityNdx);
2147 if ( r.appTimeTracker != except) {
2148 r.appTimeTracker = null;
2149 }
2150 }
2151 }
2152 }
2153
Craig Mautner5eda9b32013-07-02 11:58:16 -07002154 /**
2155 * Called as activities below the top translucent activity are redrawn. When the last one is
2156 * redrawn notify the top activity by calling
2157 * {@link Activity#onTranslucentConversionComplete}.
2158 *
2159 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
2160 * occurred and the activity will be notified immediately.
2161 */
2162 void notifyActivityDrawnLocked(ActivityRecord r) {
2163 if ((r == null)
2164 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
2165 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
2166 // The last undrawn activity below the top has just been drawn. If there is an
2167 // opaque activity at the top, notify it that it can become translucent safely now.
2168 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
2169 mTranslucentActivityWaiting = null;
2170 mUndrawnActivitiesBelowTopTranslucent.clear();
2171 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2172
Craig Mautner71dd1b62014-02-18 15:48:52 -08002173 if (waitingActivity != null) {
2174 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
2175 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
2176 try {
2177 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
2178 waitingActivity.appToken, r != null);
2179 } catch (RemoteException e) {
2180 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07002181 }
2182 }
2183 }
2184 }
2185
Craig Mautnera61bc652013-10-28 15:43:18 -07002186 /** If any activities below the top running one are in the INITIALIZING state and they have a
2187 * starting window displayed then remove that starting window. It is possible that the activity
2188 * in this state will never resumed in which case that starting window will be orphaned. */
2189 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002190 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07002191 boolean aboveTop = true;
Wale Ogunwale68741142016-05-17 09:40:02 -07002192 // We don't want to clear starting window for activities that aren't behind fullscreen
2193 // activities as we need to display their starting window until they are done initializing.
2194 boolean behindFullscreenActivity = false;
Wale Ogunwale98742a52016-07-12 10:29:12 -07002195
Wale Ogunwalecd501ec2017-04-07 08:53:41 -07002196 if (shouldBeVisible(null) == STACK_INVISIBLE) {
Wale Ogunwale98742a52016-07-12 10:29:12 -07002197 // The stack is not visible, so no activity in it should be displaying a starting
2198 // window. Mark all activities below top and behind fullscreen.
2199 aboveTop = false;
2200 behindFullscreenActivity = true;
2201 }
2202
Craig Mautnera61bc652013-10-28 15:43:18 -07002203 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2204 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2205 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2206 final ActivityRecord r = activities.get(activityNdx);
2207 if (aboveTop) {
2208 if (r == topActivity) {
2209 aboveTop = false;
2210 }
Wale Ogunwale68741142016-05-17 09:40:02 -07002211 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002212 continue;
2213 }
2214
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002215 r.removeOrphanedStartingWindow(behindFullscreenActivity);
Wale Ogunwale68741142016-05-17 09:40:02 -07002216 behindFullscreenActivity |= r.fullscreen;
Craig Mautnera61bc652013-10-28 15:43:18 -07002217 }
2218 }
2219 }
2220
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002221 /**
2222 * Ensure that the top activity in the stack is resumed.
2223 *
2224 * @param prev The previously resumed activity, for when in the process
2225 * of pausing; can be null to call from elsewhere.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002226 * @param options Activity options.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002227 *
2228 * @return Returns true if something is being resumed, or false if
2229 * nothing happened.
Wale Ogunwaled046a012015-12-24 13:05:59 -08002230 *
2231 * NOTE: It is not safe to call this method directly as it can cause an activity in a
2232 * non-focused stack to be resumed.
2233 * Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
2234 * right activity for the current system state.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002235 */
Wale Ogunwaled046a012015-12-24 13:05:59 -08002236 boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08002237 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07002238 // Don't even start recursing.
2239 return false;
2240 }
2241
2242 boolean result = false;
2243 try {
2244 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08002245 mStackSupervisor.inResumeTopActivity = true;
Craig Mautner544efa72014-09-04 16:41:20 -07002246 result = resumeTopActivityInnerLocked(prev, options);
2247 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08002248 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07002249 }
chaviw59b98852017-06-13 12:05:44 -07002250
Bryce Lee5daa3122017-04-19 10:40:42 -07002251 // When resuming the top activity, it may be necessary to pause the top activity (for
2252 // example, returning to the lock screen. We suppress the normal pause logic in
2253 // {@link #resumeTopActivityUncheckedLocked}, since the top activity is resumed at the end.
2254 // We call the {@link ActivityStackSupervisor#checkReadyForSleepLocked} again here to ensure
chaviw59b98852017-06-13 12:05:44 -07002255 // any necessary pause logic occurs. In the case where the Activity will be shown regardless
2256 // of the lock screen, the call to {@link ActivityStackSupervisor#checkReadyForSleepLocked}
2257 // is skipped.
2258 final ActivityRecord next = topRunningActivityLocked(true /* focusableOnly */);
2259 if (next == null || !next.canTurnScreenOn()) {
David Stevensf62360c2017-03-16 19:00:20 -07002260 checkReadyForSleep();
chaviw59b98852017-06-13 12:05:44 -07002261 }
Bryce Lee5daa3122017-04-19 10:40:42 -07002262
Craig Mautner544efa72014-09-04 16:41:20 -07002263 return result;
2264 }
2265
Chong Zhang6cda19c2016-06-14 19:07:56 -07002266 void setResumedActivityLocked(ActivityRecord r, String reason) {
2267 // TODO: move mResumedActivity to stack supervisor,
2268 // there should only be 1 global copy of resumed activity.
2269 mResumedActivity = r;
Chong Zhangd2cb3112016-07-20 11:13:22 -07002270 r.state = ActivityState.RESUMED;
Chong Zhang6cda19c2016-06-14 19:07:56 -07002271 mService.setResumedActivityUncheckLocked(r, reason);
Bryce Leeaf691c02017-03-20 14:20:22 -07002272 final TaskRecord task = r.getTask();
2273 task.touchActiveTime();
2274 mRecentTasks.addLocked(task);
Chong Zhang6cda19c2016-06-14 19:07:56 -07002275 }
2276
Chong Zhang280d3322015-11-03 17:27:26 -08002277 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07002278 if (!mService.mBooting && !mService.mBooted) {
2279 // Not ready yet!
2280 return false;
2281 }
2282
Winson Chung3f103eb2017-04-12 21:53:59 -07002283 // Find the next top-most activity to resume in this stack that is not finishing and is
2284 // focusable. If it is not focusable, we will fall into the case below to resume the
2285 // top activity in the next focusable task.
2286 final ActivityRecord next = topRunningActivityLocked(true /* focusableOnly */);
Andrii Kulian7fc22812016-12-28 13:04:11 -08002287
2288 final boolean hasRunningActivity = next != null;
2289
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07002290 // TODO: Maybe this entire condition can get removed?
2291 if (hasRunningActivity && getDisplay() == null) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08002292 return false;
2293 }
2294
Wale Ogunwale2be760d2016-02-17 11:16:10 -08002295 mStackSupervisor.cancelInitializingActivities();
Craig Mautnera61bc652013-10-28 15:43:18 -07002296
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002297 // Remember how we'll process this pause/resume situation, and ensure
2298 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002299 final boolean userLeaving = mStackSupervisor.mUserLeaving;
2300 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002301
Andrii Kulian7fc22812016-12-28 13:04:11 -08002302 if (!hasRunningActivity) {
2303 // There are no activities left in the stack, let's look somewhere else.
2304 return resumeTopActivityInNextFocusableStack(prev, options, "noMoreActivities");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002305 }
2306
2307 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08002308
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002309 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002310 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2311 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002312 // Make sure we have executed any pending transitions, since there
2313 // should be nothing left to do at this point.
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002314 executeAppTransition(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002315 if (DEBUG_STATES) Slog.d(TAG_STATES,
2316 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07002317 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002318 return false;
2319 }
2320
Bryce Leeaf691c02017-03-20 14:20:22 -07002321 final TaskRecord nextTask = next.getTask();
2322 final TaskRecord prevTask = prev != null ? prev.getTask() : null;
Andrii Kulian02b7a832016-10-06 23:11:56 -07002323 if (prevTask != null && prevTask.getStack() == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07002324 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07002325 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07002326 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002327 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07002328 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07002329 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07002330 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07002331 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07002332 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08002333 } else if (!isOnHomeDisplay()) {
2334 return false;
2335 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002336 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08002337 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07002338 return isOnHomeDisplay() &&
Matthew Ngae1ff4f2016-11-10 15:49:14 -08002339 mStackSupervisor.resumeHomeStackTask(prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07002340 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002341 }
2342
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002343 // If we are sleeping, and there is no resumed activity, and the top
2344 // activity is paused, well that is the state we want.
David Stevensf62360c2017-03-16 19:00:20 -07002345 if (shouldSleepOrShutDownActivities()
p13451dbad2872012-04-18 11:39:23 +09002346 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07002347 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002348 // Make sure we have executed any pending transitions, since there
2349 // should be nothing left to do at this point.
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002350 executeAppTransition(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002351 if (DEBUG_STATES) Slog.d(TAG_STATES,
2352 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07002353 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002354 return false;
2355 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002356
2357 // Make sure that the user who owns this activity is started. If not,
2358 // we will just leave it as is because someone should be bringing
2359 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07002360 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002361 Slog.w(TAG, "Skipping resume of top activity " + next
2362 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07002363 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002364 return false;
2365 }
2366
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002367 // The activity may be waiting for stop, but that is no longer
2368 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002369 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002370 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002371 next.sleeping = false;
Bryce Lee4a194382017-04-04 14:32:48 -07002372 mStackSupervisor.mActivitiesWaitingForVisibleActivity.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002373
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002374 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002375
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002376 // If we are currently pausing an activity, then don't do anything until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07002377 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002378 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002379 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07002380 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002381 return false;
2382 }
2383
Dianne Hackborn3d07c942015-03-13 18:02:54 -07002384 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2385
Wale Ogunwale89973222017-04-23 18:39:45 -07002386 boolean lastResumedCanPip = false;
2387 final ActivityStack lastFocusedStack = mStackSupervisor.getLastStack();
2388 if (lastFocusedStack != null && lastFocusedStack != this) {
2389 // So, why aren't we using prev here??? See the param comment on the method. prev doesn't
2390 // represent the last resumed activity. However, the last focus stack does if it isn't null.
2391 final ActivityRecord lastResumed = lastFocusedStack.mResumedActivity;
2392 lastResumedCanPip = lastResumed != null && lastResumed.checkEnterPictureInPictureState(
Winson Chung298f95b2017-08-10 15:57:18 -07002393 "resumeTopActivity", userLeaving /* beforeStopping */);
Wale Ogunwale89973222017-04-23 18:39:45 -07002394 }
Winson Chungc2baac02017-01-11 13:34:47 -08002395 // If the flag RESUME_WHILE_PAUSING is set, then continue to schedule the previous activity
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07002396 // to be paused, while at the same time resuming the new resume activity only if the
2397 // previous activity can't go into Pip since we want to give Pip activities a chance to
2398 // enter Pip before resuming the next activity.
Wale Ogunwale89973222017-04-23 18:39:45 -07002399 final boolean resumeWhilePausing = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0
2400 && !lastResumedCanPip;
2401
Winson Chungc2baac02017-01-11 13:34:47 -08002402 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, next, false);
Craig Mautnereb957862013-04-24 15:34:32 -07002403 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002404 if (DEBUG_STATES) Slog.d(TAG_STATES,
2405 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Winson Chungc2baac02017-01-11 13:34:47 -08002406 pausing |= startPausingLocked(userLeaving, false, next, false);
Craig Mautnereb957862013-04-24 15:34:32 -07002407 }
Winson Chungc2baac02017-01-11 13:34:47 -08002408 if (pausing && !resumeWhilePausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002409 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002410 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002411 // At this point we want to put the upcoming activity's process
2412 // at the top of the LRU list, since we know we will be needing it
2413 // very soon and it would be a waste to let it get killed if it
2414 // happens to be sitting towards the end.
2415 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07002416 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002417 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002418 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002419 return true;
Wale Ogunwalecac5c322016-05-23 10:56:33 -07002420 } else if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2421 mStackSupervisor.allResumedActivitiesComplete()) {
2422 // It is possible for the activity to be resumed when we paused back stacks above if the
2423 // next activity doesn't have to wait for pause to complete.
2424 // So, nothing else to-do except:
2425 // Make sure we have executed any pending transitions, since there
2426 // should be nothing left to do at this point.
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002427 executeAppTransition(options);
Wale Ogunwalecac5c322016-05-23 10:56:33 -07002428 if (DEBUG_STATES) Slog.d(TAG_STATES,
2429 "resumeTopActivityLocked: Top activity resumed (dontWaitForPause) " + next);
2430 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2431 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002432 }
2433
Christopher Tated3f175c2012-06-14 14:16:54 -07002434 // If the most recent activity was noHistory but was only stopped rather
2435 // than stopped+finished because the device went to sleep, we need to make
2436 // sure to finish it as we're making a new activity topmost.
David Stevensf62360c2017-03-16 19:00:20 -07002437 if (shouldSleepActivities() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07002438 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002439 if (DEBUG_STATES) Slog.d(TAG_STATES,
2440 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07002441 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08002442 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07002443 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07002444 }
2445
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002446 if (prev != null && prev != next) {
Bryce Lee4a194382017-04-04 14:32:48 -07002447 if (!mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(prev)
Craig Mautner8c14c152015-01-15 17:32:07 -08002448 && next != null && !next.nowVisible) {
Bryce Lee4a194382017-04-04 14:32:48 -07002449 mStackSupervisor.mActivitiesWaitingForVisibleActivity.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002450 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2451 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002452 } else {
2453 // The next activity is already visible, so hide the previous
2454 // activity's windows right now so we can show the new one ASAP.
2455 // We only do this if the previous is finishing, which should mean
2456 // it is on top of the one being resumed so hiding it quickly
2457 // is good. Otherwise, we want to do the normal route of allowing
2458 // the resumed activity to be shown so we can decide if the
2459 // previous should actually be hidden depending on whether the
2460 // new one is found to be full-screen or not.
2461 if (prev.finishing) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002462 prev.setVisibility(false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002463 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2464 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Bryce Lee4a194382017-04-04 14:32:48 -07002465 + mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002466 + ", nowVisible=" + next.nowVisible);
2467 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002468 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002469 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002470 + ", waitingVisible="
Bryce Lee4a194382017-04-04 14:32:48 -07002471 + mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(prev)
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002472 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002473 }
2474 }
2475 }
2476
Dianne Hackborne7f97212011-02-24 14:40:20 -08002477 // Launching this app's activity, make sure the app is no longer
2478 // considered stopped.
2479 try {
2480 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002481 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002482 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002483 } catch (IllegalArgumentException e) {
2484 Slog.w(TAG, "Failed trying to unstop package "
2485 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002486 }
2487
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002488 // We are starting up the next activity, so tell the window manager
2489 // that the previous one will be hidden soon. This way it can know
2490 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002491 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002492 if (prev != null) {
2493 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002494 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002495 "Prepare close transition: prev=" + prev);
2496 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002497 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002498 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002499 } else {
Bryce Leeaf691c02017-03-20 14:20:22 -07002500 mWindowManager.prepareAppTransition(prev.getTask() == next.getTask()
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002501 ? TRANSIT_ACTIVITY_CLOSE
2502 : TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002503 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002504 prev.setVisibility(false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002505 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002506 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2507 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002508 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002509 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002510 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002511 } else {
Bryce Leeaf691c02017-03-20 14:20:22 -07002512 mWindowManager.prepareAppTransition(prev.getTask() == next.getTask()
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002513 ? TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002514 : next.mLaunchTaskBehind
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002515 ? TRANSIT_TASK_OPEN_BEHIND
2516 : TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002517 }
2518 }
Craig Mautner967212c2013-04-13 21:10:58 -07002519 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002520 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002521 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002522 anim = false;
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002523 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002524 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002525 mWindowManager.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002526 }
2527 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002528
2529 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07002530 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08002531 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2532 if (opts != null) {
2533 resumeAnimOptions = opts.toBundle();
2534 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002535 next.applyOptionsLocked();
2536 } else {
2537 next.clearOptionsLocked();
2538 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002539
Craig Mautnercf910b02013-04-23 11:23:27 -07002540 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002541 if (next.app != null && next.app.thread != null) {
Chong Zhangdea4bd92016-03-15 12:50:03 -07002542 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next
2543 + " stopped=" + next.stopped + " visible=" + next.visible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002544
Chong Zhangd127c6d2016-05-02 16:36:41 -07002545 // If the previous activity is translucent, force a visibility update of
2546 // the next activity, so that it's added to WM's opening app list, and
2547 // transition animation can be set up properly.
2548 // For example, pressing Home button with a translucent activity in focus.
2549 // Launcher is already visible in this case. If we don't add it to opening
2550 // apps, maybeUpdateTransitToWallpaper() will fail to identify this as a
2551 // TRANSIT_WALLPAPER_OPEN animation, and run some funny animation.
2552 final boolean lastActivityTranslucent = lastStack != null
2553 && (!lastStack.mFullscreen
2554 || (lastStack.mLastPausedActivity != null
2555 && !lastStack.mLastPausedActivity.fullscreen));
2556
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002557 // This activity is now becoming visible.
Chong Zhangd127c6d2016-05-02 16:36:41 -07002558 if (!next.visible || next.stopped || lastActivityTranslucent) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002559 next.setVisibility(true);
Jorim Jaggi1b025a62016-02-03 19:27:49 -08002560 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002561
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002562 // schedule launch ticks to collect information about slow apps.
2563 next.startLaunchTickingLocked();
2564
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002565 ActivityRecord lastResumedActivity =
2566 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002567 ActivityState lastState = next.state;
2568
2569 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002570
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002571 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Chong Zhang6cda19c2016-06-14 19:07:56 -07002572
2573 setResumedActivityLocked(next, "resumeTopActivityInnerLocked");
2574
Dianne Hackborndb926082013-10-31 16:32:44 -07002575 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002576 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002577 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002578
2579 // Have the window manager re-evaluate the orientation of
2580 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002581 boolean notUpdated = true;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002582 if (mStackSupervisor.isFocusedStack(this)) {
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002583 final Configuration config = mWindowManager.updateOrientationFromAppTokens(
2584 mStackSupervisor.getDisplayOverrideConfiguration(mDisplayId),
2585 next.mayFreezeScreenLocked(next.app) ? next.appToken : null, mDisplayId);
Craig Mautner8d341ef2013-03-26 09:03:27 -07002586 if (config != null) {
2587 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002588 }
Andrii Kulian5406e7a2016-10-21 11:55:23 -07002589 notUpdated = !mService.updateDisplayOverrideConfigurationLocked(config, next,
2590 false /* deferResume */, mDisplayId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002591 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002592
Craig Mautner525f3d92013-05-07 14:01:50 -07002593 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002594 // The configuration update wasn't able to keep the existing
2595 // instance of the activity, and instead started a new one.
2596 // We should be all done, but let's just make sure our activity
2597 // is still at the top and schedule another run if something
2598 // weird happened.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002599 ActivityRecord nextNext = topRunningActivityLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002600 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002601 "Activity config changed during resume: " + next
2602 + ", new next: " + nextNext);
2603 if (nextNext != next) {
2604 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002605 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002606 }
Chong Zhangd2cb3112016-07-20 11:13:22 -07002607 if (!next.visible || next.stopped) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002608 next.setVisibility(true);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002609 }
Andrii Kulian21713ac2016-10-12 22:05:05 -07002610 next.completeResumeLocked();
Craig Mautnercf910b02013-04-23 11:23:27 -07002611 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Chong Zhangd2cb3112016-07-20 11:13:22 -07002612 return true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002613 }
Craig Mautner58547802013-03-05 08:23:53 -08002614
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002615 try {
2616 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002617 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002618 if (a != null) {
2619 final int N = a.size();
2620 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002621 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2622 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002623 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002624 }
2625 }
2626
2627 if (next.newIntents != null) {
Wale Ogunwale826c7062016-09-13 08:25:54 -07002628 next.app.thread.scheduleNewIntent(
2629 next.newIntents, next.appToken, false /* andPause */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002630 }
2631
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002632 // Well the app will no longer be stopped.
2633 // Clear app token stopped state in window manager if needed.
Jorim Jaggibae01b12017-04-11 16:29:10 -07002634 next.notifyAppResumed(next.stopped);
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002635
Craig Mautner299f9602015-01-26 09:47:33 -08002636 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
Bryce Leeaf691c02017-03-20 14:20:22 -07002637 System.identityHashCode(next), next.getTask().taskId,
2638 next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002639
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002640 next.sleeping = false;
Alan Viverette5f31b982016-06-21 14:46:14 -04002641 mService.showUnsupportedZoomDialogIfNeededLocked(next);
Craig Mautner2420ead2013-04-01 17:13:20 -07002642 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002643 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002644 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002645 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002646 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002647 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002648
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002649 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002650 } catch (Exception e) {
2651 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002652 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002653 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002654 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002655 if (lastStack != null) {
2656 lastStack.mResumedActivity = lastResumedActivity;
2657 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002658 Slog.i(TAG, "Restarting because process died: " + next);
2659 if (!next.hasBeenLaunched) {
2660 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002661 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
Andrii Kulian7d95df42017-02-15 10:11:48 -08002662 mStackSupervisor.isFrontStackOnDisplay(lastStack)) {
Jorim Jaggi02886a82016-12-06 09:10:06 -08002663 next.showStartingWindow(null /* prev */, false /* newTask */,
2664 false /* taskSwitch */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002665 }
George Mount2c92c972014-03-20 09:38:23 -07002666 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002667 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002668 return true;
2669 }
2670
2671 // From this point on, if something goes wrong there is no way
2672 // to recover the activity.
2673 try {
Andrii Kulian21713ac2016-10-12 22:05:05 -07002674 next.completeResumeLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002675 } catch (Exception e) {
2676 // If any exception gets thrown, toss away this
2677 // activity and try the next one.
2678 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002679 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002680 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002681 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002682 return true;
2683 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002684 } else {
2685 // Whoops, need to restart this activity!
2686 if (!next.hasBeenLaunched) {
2687 next.hasBeenLaunched = true;
2688 } else {
2689 if (SHOW_APP_STARTING_PREVIEW) {
Jorim Jaggi02886a82016-12-06 09:10:06 -08002690 next.showStartingWindow(null /* prev */, false /* newTask */,
2691 false /* taskSwich */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002692 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002693 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002694 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002695 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002696 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002697 }
2698
Craig Mautnercf910b02013-04-23 11:23:27 -07002699 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002700 return true;
2701 }
2702
Andrii Kulian7fc22812016-12-28 13:04:11 -08002703 private boolean resumeTopActivityInNextFocusableStack(ActivityRecord prev,
2704 ActivityOptions options, String reason) {
Winson Chung83471632016-12-13 11:02:12 -08002705 if ((!mFullscreen || !isOnHomeDisplay()) && adjustFocusToNextFocusableStackLocked(reason)) {
Andrii Kulian7fc22812016-12-28 13:04:11 -08002706 // Try to move focus to the next visible stack with a running activity if this
2707 // stack is not covering the entire screen or is on a secondary display (with no home
2708 // stack).
2709 return mStackSupervisor.resumeFocusedStackTopActivityLocked(
2710 mStackSupervisor.getFocusedStack(), prev, null);
2711 }
2712
2713 // Let's just start up the Launcher...
2714 ActivityOptions.abort(options);
2715 if (DEBUG_STATES) Slog.d(TAG_STATES,
2716 "resumeTopActivityInNextFocusableStack: " + reason + ", go home");
2717 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2718 // Only resume home if on home display
2719 return isOnHomeDisplay() &&
2720 mStackSupervisor.resumeHomeStackTask(prev, reason);
2721 }
2722
riddle_hsuc215a4f2014-12-27 12:10:45 +08002723 private TaskRecord getNextTask(TaskRecord targetTask) {
2724 final int index = mTaskHistory.indexOf(targetTask);
2725 if (index >= 0) {
2726 final int numTasks = mTaskHistory.size();
2727 for (int i = index + 1; i < numTasks; ++i) {
2728 TaskRecord task = mTaskHistory.get(i);
2729 if (task.userId == targetTask.userId) {
2730 return task;
2731 }
2732 }
2733 }
2734 return null;
2735 }
2736
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002737 /** Returns the position the input task should be placed in this stack. */
2738 int getAdjustedPositionForTask(TaskRecord task, int suggestedPosition,
2739 ActivityRecord starting) {
2740
2741 int maxPosition = mTaskHistory.size();
2742 if ((starting != null && starting.okToShowLocked())
2743 || (starting == null && task.okToShowLocked())) {
2744 // If the task or starting activity can be shown, then whatever position is okay.
2745 return Math.min(suggestedPosition, maxPosition);
2746 }
2747
2748 // The task can't be shown, put non-current user tasks below current user tasks.
2749 while (maxPosition > 0) {
2750 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2751 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2752 || tmpTask.topRunningActivityLocked() == null) {
2753 break;
2754 }
2755 maxPosition--;
2756 }
2757
2758 return Math.min(suggestedPosition, maxPosition);
2759 }
2760
Andrii Kuliand2765632016-12-12 22:26:34 -08002761 /**
2762 * Used from {@link ActivityStack#positionTask(TaskRecord, int)}.
2763 * @see ActivityManagerService#positionTaskInStack(int, int, int).
2764 */
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002765 private void insertTaskAtPosition(TaskRecord task, int position) {
2766 if (position >= mTaskHistory.size()) {
2767 insertTaskAtTop(task, null);
2768 return;
2769 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002770 position = getAdjustedPositionForTask(task, position, null /* starting */);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002771 mTaskHistory.remove(task);
2772 mTaskHistory.add(position, task);
Wale Ogunwale1666e312016-12-16 11:27:18 -08002773 mWindowContainerController.positionChildAt(task.getWindowContainerController(), position,
2774 task.mBounds, task.getOverrideConfiguration());
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002775 updateTaskMovement(task, true);
2776 }
2777
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002778 private void insertTaskAtTop(TaskRecord task, ActivityRecord starting) {
2779 updateTaskReturnToForTopInsertion(task);
2780 // TODO: Better place to put all the code below...may be addTask...
2781 mTaskHistory.remove(task);
2782 // Now put task at top.
2783 final int position = getAdjustedPositionForTask(task, mTaskHistory.size(), starting);
2784 mTaskHistory.add(position, task);
2785 updateTaskMovement(task, true);
Wale Ogunwale1666e312016-12-16 11:27:18 -08002786 mWindowContainerController.positionChildAtTop(task.getWindowContainerController(),
2787 true /* includingParents */);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08002788 }
2789
Winson Chung83471632016-12-13 11:02:12 -08002790 /**
2791 * Updates the {@param task}'s return type before it is moved to the top.
2792 */
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08002793 private void updateTaskReturnToForTopInsertion(TaskRecord task) {
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002794 boolean isLastTaskOverHome = false;
Winson Chung83471632016-12-13 11:02:12 -08002795 // If the moving task is over the home or assistant stack, transfer its return type to next
2796 // task so that they return to the same stack
2797 if (task.isOverHomeStack() || task.isOverAssistantStack()) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002798 final TaskRecord nextTask = getNextTask(task);
2799 if (nextTask != null) {
2800 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
Andrii Kuliandc0f8932016-06-28 16:34:02 -07002801 } else {
2802 isLastTaskOverHome = true;
riddle_hsuc215a4f2014-12-27 12:10:45 +08002803 }
2804 }
2805
Winson Chung83471632016-12-13 11:02:12 -08002806 // If this is not on the default display, then just set the return type to application
2807 if (!isOnHomeDisplay()) {
2808 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
2809 return;
2810 }
2811
Winson Chung83471632016-12-13 11:02:12 -08002812 final ActivityStack lastStack = mStackSupervisor.getLastStack();
Bryce Leeaf691c02017-03-20 14:20:22 -07002813
2814 // If there is no last task, do not set task to return to
2815 if (lastStack == null) {
2816 return;
2817 }
2818
2819 // If the task was launched from the assistant stack, set the return type to assistant
2820 if (lastStack.isAssistantStack()) {
Winson Chung83471632016-12-13 11:02:12 -08002821 task.setTaskToReturnTo(ASSISTANT_ACTIVITY_TYPE);
2822 return;
2823 }
2824
Craig Mautner9c85c202013-10-04 20:11:26 -07002825 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002826 // activity, set mTaskToReturnTo accordingly.
Winson Chung83471632016-12-13 11:02:12 -08002827 final boolean fromHomeOrRecents = lastStack.isHomeOrRecentsStack();
2828 final TaskRecord topTask = lastStack.topTask();
2829 if (!isHomeOrRecentsStack() && (fromHomeOrRecents || topTask() != task)) {
2830 // If it's a last task over home - we default to keep its return to type not to
2831 // make underlying task focused when this one will be finished.
2832 int returnToType = isLastTaskOverHome
2833 ? task.getTaskToReturnTo() : APPLICATION_ACTIVITY_TYPE;
2834 if (fromHomeOrRecents && StackId.allowTopTaskToReturnHome(mStackId)) {
2835 returnToType = topTask == null ? HOME_ACTIVITY_TYPE : topTask.taskType;
Craig Mautnere0a38842013-12-16 16:14:02 -08002836 }
Winson Chung83471632016-12-13 11:02:12 -08002837 task.setTaskToReturnTo(returnToType);
Craig Mautner9c85c202013-10-04 20:11:26 -07002838 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07002839 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002840
Winson Chungb5c41b72016-12-07 15:00:47 -08002841 final void startActivityLocked(ActivityRecord r, ActivityRecord focusedTopActivity,
2842 boolean newTask, boolean keepCurTransition, ActivityOptions options) {
Bryce Leeaf691c02017-03-20 14:20:22 -07002843 TaskRecord rTask = r.getTask();
Craig Mautnerd2328952013-03-05 12:46:26 -08002844 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002845 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2846 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002847 // Last activity in task had been removed or ActivityManagerService is reusing task.
2848 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002849 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002850 insertTaskAtTop(rTask, r);
Craig Mautner77878772013-03-04 19:46:24 -08002851 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002852 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002853 if (!newTask) {
2854 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002855 boolean startIt = true;
2856 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2857 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002858 if (task.getTopActivity() == null) {
2859 // All activities in task are finishing.
2860 continue;
2861 }
Bryce Leeaf691c02017-03-20 14:20:22 -07002862 if (task == rTask) {
Craig Mautner70a86932013-02-28 22:37:44 -08002863 // Here it is! Now, if this is not yet visible to the
2864 // user, then just add it without starting; it will
2865 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002866 if (!startIt) {
2867 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2868 + task, new RuntimeException("here").fillInStackTrace());
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002869 r.createWindowContainer();
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002870 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002871 return;
2872 }
2873 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002874 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002875 startIt = false;
2876 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002877 }
2878 }
2879
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002880 // Place a new activity at top of stack, so it is next to interact with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002881
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002882 // If we are not placing the new activity frontmost, we do not want to deliver the
2883 // onUserLeaving callback to the actual frontmost activity
Bryce Leeaf691c02017-03-20 14:20:22 -07002884 final TaskRecord activityTask = r.getTask();
2885 if (task == activityTask && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002886 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002887 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002888 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002889 }
Craig Mautner70a86932013-02-28 22:37:44 -08002890
Bryce Leeaf691c02017-03-20 14:20:22 -07002891 task = activityTask;
Craig Mautner70a86932013-02-28 22:37:44 -08002892
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002893 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002894 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002895 new RuntimeException("here").fillInStackTrace());
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08002896 // TODO: Need to investigate if it is okay for the controller to already be created by the
2897 // time we get to this point. I think it is, but need to double check.
2898 // Use test in b/34179495 to trace the call path.
2899 if (r.getWindowContainerController() == null) {
2900 r.createWindowContainer();
2901 }
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002902 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002903
Matthew Ngae1ff4f2016-11-10 15:49:14 -08002904 if (!isHomeOrRecentsStack() || numActivities() > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002905 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002906 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002907 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07002908 mWindowManager.prepareAppTransition(TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002909 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002910 } else {
Winson Chungb5c41b72016-12-07 15:00:47 -08002911 int transit = TRANSIT_ACTIVITY_OPEN;
2912 if (newTask) {
2913 if (r.mLaunchTaskBehind) {
2914 transit = TRANSIT_TASK_OPEN_BEHIND;
2915 } else {
Winson Chungc2baac02017-01-11 13:34:47 -08002916 // If a new task is being launched, then mark the existing top activity as
Winson Chung942a85c2017-07-11 15:07:45 -07002917 // supporting picture-in-picture while pausing only if the starting activity
2918 // would not be considered an overlay on top of the current activity
2919 // (eg. not fullscreen, or the assistant)
Winson Chung4aede8a2017-07-05 12:23:25 -07002920 if (focusedTopActivity != null
2921 && focusedTopActivity.getStackId() != PINNED_STACK_ID
Winson Chung942a85c2017-07-11 15:07:45 -07002922 && r.getStackId() != ASSISTANT_STACK_ID
2923 && r.fullscreen) {
Winson Chungc2baac02017-01-11 13:34:47 -08002924 focusedTopActivity.supportsPictureInPictureWhilePausing = true;
Winson Chungb5c41b72016-12-07 15:00:47 -08002925 }
2926 transit = TRANSIT_TASK_OPEN;
2927 }
2928 }
2929 mWindowManager.prepareAppTransition(transit, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002930 mNoAnimActivities.remove(r);
2931 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002932 boolean doShow = true;
2933 if (newTask) {
2934 // Even though this activity is starting fresh, we still need
2935 // to reset it to make sure we apply affinities to move any
2936 // existing activities from other tasks in to it.
2937 // If the caller has requested that the target task be
2938 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002939 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002940 resetTaskIfNeededLocked(r, r);
2941 doShow = topRunningNonDelayedActivityLocked(null) == r;
2942 }
Chong Zhang280d3322015-11-03 17:27:26 -08002943 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002944 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2945 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002946 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002947 if (r.mLaunchTaskBehind) {
2948 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2949 // tell WindowManager that r is visible even though it is at the back of the stack.
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002950 r.setVisibility(true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002951 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002952 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002953 // Figure out if we are transitioning from another activity that is
2954 // "has the same starting icon" as the next one. This allows the
2955 // window manager to keep the previous window it had previously
2956 // created, if it still had one.
Bryce Leeaf691c02017-03-20 14:20:22 -07002957 TaskRecord prevTask = r.getTask();
2958 ActivityRecord prev = prevTask.topRunningActivityWithStartingWindowLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002959 if (prev != null) {
2960 // We don't want to reuse the previous starting preview if:
2961 // (1) The current activity is in a different task.
Bryce Leeaf691c02017-03-20 14:20:22 -07002962 if (prev.getTask() != prevTask) {
Craig Mautner29219d92013-04-16 20:19:12 -07002963 prev = null;
2964 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002965 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002966 else if (prev.nowVisible) {
2967 prev = null;
2968 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002969 }
Jorim Jaggi02886a82016-12-06 09:10:06 -08002970 r.showStartingWindow(prev, newTask, isTaskSwitch(r, focusedTopActivity));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002971 }
2972 } else {
2973 // If this is the first activity, don't do any fancy animations,
2974 // because there is nothing for it to animate on top of.
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002975 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002976 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002977 }
2978
Jorim Jaggi02886a82016-12-06 09:10:06 -08002979 private boolean isTaskSwitch(ActivityRecord r,
2980 ActivityRecord topFocusedActivity) {
Bryce Leeaf691c02017-03-20 14:20:22 -07002981 return topFocusedActivity != null && r.getTask() != topFocusedActivity.getTask();
Jorim Jaggi02886a82016-12-06 09:10:06 -08002982 }
2983
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002984 /**
2985 * Perform a reset of the given task, if needed as part of launching it.
2986 * Returns the new HistoryRecord at the top of the task.
2987 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002988 /**
2989 * Helper method for #resetTaskIfNeededLocked.
2990 * We are inside of the task being reset... we'll either finish this activity, push it out
2991 * for another task, or leave it as-is.
2992 * @param task The task containing the Activity (taskTop) that might be reset.
2993 * @param forceReset
2994 * @return An ActivityOptions that needs to be processed.
2995 */
Andrii Kulian21713ac2016-10-12 22:05:05 -07002996 private ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002997 ActivityOptions topOptions = null;
2998
2999 int replyChainEnd = -1;
3000 boolean canMoveOptions = true;
3001
3002 // We only do this for activities that are not the root of the task (since if we finish
3003 // the root, we may no longer have the task!).
3004 final ArrayList<ActivityRecord> activities = task.mActivities;
3005 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07003006 final int rootActivityNdx = task.findEffectiveRootIndex();
3007 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003008 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00003009 if (target.frontOfTask)
3010 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003011
3012 final int flags = target.info.flags;
3013 final boolean finishOnTaskLaunch =
3014 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
3015 final boolean allowTaskReparenting =
3016 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
3017 final boolean clearWhenTaskReset =
3018 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
3019
3020 if (!finishOnTaskLaunch
3021 && !clearWhenTaskReset
3022 && target.resultTo != null) {
3023 // If this activity is sending a reply to a previous
3024 // activity, we can't do anything with it now until
3025 // we reach the start of the reply chain.
3026 // XXX note that we are assuming the result is always
3027 // to the previous activity, which is almost always
3028 // the case but we really shouldn't count on.
3029 if (replyChainEnd < 0) {
3030 replyChainEnd = i;
3031 }
3032 } else if (!finishOnTaskLaunch
3033 && !clearWhenTaskReset
3034 && allowTaskReparenting
3035 && target.taskAffinity != null
3036 && !target.taskAffinity.equals(task.affinity)) {
3037 // If this activity has an affinity for another
3038 // task, then we need to move it out of here. We will
3039 // move it as far out of the way as possible, to the
3040 // bottom of the activity stack. This also keeps it
3041 // correctly ordered with any activities we previously
3042 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08003043 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07003044 final ActivityRecord bottom =
3045 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08003046 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07003047 if (bottom != null && target.taskAffinity != null
Bryce Leeaf691c02017-03-20 14:20:22 -07003048 && target.taskAffinity.equals(bottom.getTask().affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003049 // If the activity currently at the bottom has the
3050 // same task affinity as the one we are moving,
3051 // then merge it into the same task.
Bryce Leeaf691c02017-03-20 14:20:22 -07003052 targetTask = bottom.getTask();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003053 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Bryce Leeaf691c02017-03-20 14:20:22 -07003054 + " out to bottom task " + targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003055 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08003056 targetTask = createTaskRecord(
3057 mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
Wale Ogunwale72919d22016-12-08 18:58:50 -08003058 target.info, null, null, null, false, target.mActivityType);
Craig Mautner329f4122013-11-07 09:10:42 -08003059 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003060 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Bryce Leeaf691c02017-03-20 14:20:22 -07003061 + " out to new task " + targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003062 }
3063
Craig Mautner525f3d92013-05-07 14:01:50 -07003064 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003065 final int start = replyChainEnd < 0 ? i : replyChainEnd;
3066 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07003067 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003068 if (p.finishing) {
3069 continue;
3070 }
3071
Craig Mautnere3a74d52013-02-22 14:14:58 -08003072 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07003073 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003074 topOptions = p.takeOptionsLocked();
3075 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003076 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003077 }
3078 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003079 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3080 "Removing activity " + p + " from task=" + task + " adding to task="
3081 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003082 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Bryce Leeaf691c02017-03-20 14:20:22 -07003083 "Pushing next activity " + p + " out to target's task " + target);
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08003084 p.reparent(targetTask, 0 /* position - bottom */, "resetTargetTaskIfNeeded");
Craig Mautnere3a74d52013-02-22 14:14:58 -08003085 }
3086
Wale Ogunwale1666e312016-12-16 11:27:18 -08003087 mWindowContainerController.positionChildAtBottom(
3088 targetTask.getWindowContainerController());
Craig Mautnere3a74d52013-02-22 14:14:58 -08003089 replyChainEnd = -1;
3090 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
3091 // If the activity should just be removed -- either
3092 // because it asks for it, or the task should be
3093 // cleared -- then finish it and anything that is
3094 // part of its reply chain.
3095 int end;
3096 if (clearWhenTaskReset) {
3097 // In this case, we want to finish this activity
3098 // and everything above it, so be sneaky and pretend
3099 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08003100 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003101 } else if (replyChainEnd < 0) {
3102 end = i;
3103 } else {
3104 end = replyChainEnd;
3105 }
Craig Mautner525f3d92013-05-07 14:01:50 -07003106 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003107 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003108 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003109 if (p.finishing) {
3110 continue;
3111 }
3112 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07003113 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003114 topOptions = p.takeOptionsLocked();
3115 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07003116 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003117 }
3118 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003119 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08003120 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08003121 if (finishActivityLocked(
3122 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003123 end--;
3124 srcPos--;
3125 }
3126 }
3127 replyChainEnd = -1;
3128 } else {
3129 // If we were in the middle of a chain, well the
3130 // activity that started it all doesn't want anything
3131 // special, so leave it all as-is.
3132 replyChainEnd = -1;
3133 }
3134 }
3135
3136 return topOptions;
3137 }
3138
3139 /**
3140 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
3141 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
3142 * @param affinityTask The task we are looking for an affinity to.
3143 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
3144 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
3145 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
3146 */
Craig Mautner525f3d92013-05-07 14:01:50 -07003147 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08003148 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003149 int replyChainEnd = -1;
3150 final int taskId = task.taskId;
3151 final String taskAffinity = task.affinity;
3152
3153 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
3154 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07003155 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
3156
3157 // Do not operate on or below the effective root Activity.
3158 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003159 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00003160 if (target.frontOfTask)
3161 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003162
3163 final int flags = target.info.flags;
3164 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
3165 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
3166
3167 if (target.resultTo != null) {
3168 // If this activity is sending a reply to a previous
3169 // activity, we can't do anything with it now until
3170 // we reach the start of the reply chain.
3171 // XXX note that we are assuming the result is always
3172 // to the previous activity, which is almost always
3173 // the case but we really shouldn't count on.
3174 if (replyChainEnd < 0) {
3175 replyChainEnd = i;
3176 }
3177 } else if (topTaskIsHigher
3178 && allowTaskReparenting
3179 && taskAffinity != null
3180 && taskAffinity.equals(target.taskAffinity)) {
3181 // This activity has an affinity for our task. Either remove it if we are
3182 // clearing or move it over to our task. Note that
3183 // we currently punt on the case where we are resetting a
3184 // task that is not at the top but who has activities above
3185 // with an affinity to it... this is really not a normal
3186 // case, and we will need to later pull that task to the front
3187 // and usually at that point we will do the reset and pick
3188 // up those remaining activities. (This only happens if
3189 // someone starts an activity in a new task from an activity
3190 // in a task that is not currently on top.)
3191 if (forceReset || finishOnTaskLaunch) {
3192 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003193 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3194 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003195 for (int srcPos = start; srcPos >= i; --srcPos) {
3196 final ActivityRecord p = activities.get(srcPos);
3197 if (p.finishing) {
3198 continue;
3199 }
Todd Kennedy539db512014-12-15 09:57:55 -08003200 finishActivityLocked(
3201 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003202 }
3203 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003204 if (taskInsertionPoint < 0) {
3205 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08003206
Craig Mautner77878772013-03-04 19:46:24 -08003207 }
Craig Mautner77878772013-03-04 19:46:24 -08003208
3209 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003210 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3211 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
3212 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08003213 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003214 final ActivityRecord p = activities.get(srcPos);
Winson Chung30480042017-01-26 10:55:34 -08003215 p.reparent(task, taskInsertionPoint, "resetAffinityTaskIfNeededLocked");
Craig Mautnere3a74d52013-02-22 14:14:58 -08003216
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003217 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3218 "Removing and adding activity " + p + " to stack at " + task
3219 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003220 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
3221 + " from " + srcPos + " in to resetting task " + task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003222 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08003223 mWindowContainerController.positionChildAtTop(
3224 task.getWindowContainerController(), true /* includingParents */);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003225
3226 // Now we've moved it in to place... but what if this is
3227 // a singleTop activity and we have put it on top of another
3228 // instance of the same activity? Then we drop the instance
3229 // below so it remains singleTop.
3230 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
3231 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003232 int targetNdx = taskActivities.indexOf(target);
3233 if (targetNdx > 0) {
3234 ActivityRecord p = taskActivities.get(targetNdx - 1);
3235 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08003236 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
3237 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003238 }
3239 }
3240 }
3241 }
3242
3243 replyChainEnd = -1;
3244 }
3245 }
Craig Mautner77878772013-03-04 19:46:24 -08003246 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08003247 }
3248
Craig Mautner8849a5e2013-04-02 16:41:03 -07003249 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08003250 ActivityRecord newActivity) {
3251 boolean forceReset =
3252 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
3253 if (ACTIVITY_INACTIVE_RESET_TIME > 0
Bryce Leeaf691c02017-03-20 14:20:22 -07003254 && taskTop.getTask().getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003255 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
3256 forceReset = true;
3257 }
3258 }
3259
Bryce Leeaf691c02017-03-20 14:20:22 -07003260 final TaskRecord task = taskTop.getTask();
Craig Mautnere3a74d52013-02-22 14:14:58 -08003261
3262 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
3263 * for remaining tasks. Used for later tasks to reparent to task. */
3264 boolean taskFound = false;
3265
3266 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
3267 ActivityOptions topOptions = null;
3268
Craig Mautner77878772013-03-04 19:46:24 -08003269 // Preserve the location for reparenting in the new task.
3270 int reparentInsertionPoint = -1;
3271
Craig Mautnere3a74d52013-02-22 14:14:58 -08003272 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3273 final TaskRecord targetTask = mTaskHistory.get(i);
3274
3275 if (targetTask == task) {
3276 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
3277 taskFound = true;
3278 } else {
Craig Mautner77878772013-03-04 19:46:24 -08003279 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
3280 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08003281 }
3282 }
3283
Craig Mautner70a86932013-02-28 22:37:44 -08003284 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08003285 if (taskNdx >= 0) {
3286 do {
3287 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
3288 } while (taskTop == null && taskNdx >= 0);
3289 }
Craig Mautner70a86932013-02-28 22:37:44 -08003290
Craig Mautnere3a74d52013-02-22 14:14:58 -08003291 if (topOptions != null) {
3292 // If we got some ActivityOptions from an activity on top that
3293 // was removed from the task, propagate them to the new real top.
3294 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003295 taskTop.updateOptionsLocked(topOptions);
3296 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08003297 topOptions.abort();
3298 }
3299 }
3300
3301 return taskTop;
3302 }
3303
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003304 void sendActivityResultLocked(int callingUid, ActivityRecord r,
3305 String resultWho, int requestCode, int resultCode, Intent data) {
3306
3307 if (callingUid > 0) {
3308 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003309 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003310 }
3311
3312 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
3313 + " : who=" + resultWho + " req=" + requestCode
3314 + " res=" + resultCode + " data=" + data);
3315 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
3316 try {
3317 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
3318 list.add(new ResultInfo(resultWho, requestCode,
3319 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08003320 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003321 return;
3322 } catch (Exception e) {
3323 Slog.w(TAG, "Exception thrown sending result to " + r, e);
3324 }
3325 }
3326
3327 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
3328 }
3329
Shunta Sato63b8ee32016-07-11 13:32:52 +09003330 /** Returns true if the task is one of the task finishing on-top of the top running task. */
3331 boolean isATopFinishingTask(TaskRecord task) {
3332 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3333 final TaskRecord current = mTaskHistory.get(i);
3334 final ActivityRecord r = current.topRunningActivityLocked();
3335 if (r != null) {
3336 // We got a top running activity, so there isn't a top finishing task...
3337 return false;
3338 }
3339 if (current == task) {
3340 return true;
3341 }
3342 }
3343 return false;
3344 }
3345
Chong Zhang6cda19c2016-06-14 19:07:56 -07003346 private void adjustFocusedActivityStackLocked(ActivityRecord r, String reason) {
Shunta Sato63b8ee32016-07-11 13:32:52 +09003347 if (!mStackSupervisor.isFocusedStack(this) ||
3348 ((mResumedActivity != r) && (mResumedActivity != null))) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003349 return;
3350 }
3351
3352 final ActivityRecord next = topRunningActivityLocked();
3353 final String myReason = reason + " adjustFocus";
Bryce Lee3345c4e2017-04-25 07:40:41 -07003354
Wale Ogunwaled045c822015-12-02 09:14:28 -08003355 if (next != r) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003356 if (next != null && StackId.keepFocusInStackIfPossible(mStackId) && isFocusable()) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003357 // For freeform, docked, and pinned stacks we always keep the focus within the
Chong Zhang6cda19c2016-06-14 19:07:56 -07003358 // stack as long as there is a running activity.
Wale Ogunwaled045c822015-12-02 09:14:28 -08003359 return;
3360 } else {
Bryce Lee3345c4e2017-04-25 07:40:41 -07003361 // Task is not guaranteed to be non-null. For example, destroying the
3362 // {@link ActivityRecord} will disassociate the task from the activity.
Bryce Leeaf691c02017-03-20 14:20:22 -07003363 final TaskRecord task = r.getTask();
Bryce Lee3345c4e2017-04-25 07:40:41 -07003364
3365 if (task == null) {
3366 throw new IllegalStateException("activity no longer associated with task:" + r);
3367 }
3368
Winson Chung83471632016-12-13 11:02:12 -08003369 final boolean isAssistantOrOverAssistant = task.getStack().isAssistantStack() ||
3370 task.isOverAssistantStack();
Shunta Sato63b8ee32016-07-11 13:32:52 +09003371 if (r.frontOfTask && isATopFinishingTask(task)
3372 && (task.isOverHomeStack() || isAssistantOrOverAssistant)) {
Winson Chung83471632016-12-13 11:02:12 -08003373 // For non-fullscreen or assistant stack, we want to move the focus to the next
3374 // visible stack to prevent the home screen from moving to the top and obscuring
Wale Ogunwaled045c822015-12-02 09:14:28 -08003375 // other visible stacks.
Winson Chung83471632016-12-13 11:02:12 -08003376 if ((!mFullscreen || isAssistantOrOverAssistant)
Matthew Ngae1ff4f2016-11-10 15:49:14 -08003377 && adjustFocusToNextFocusableStackLocked(myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003378 return;
3379 }
3380 // Move the home stack to the top if this stack is fullscreen or there is no
3381 // other visible stack.
Winson Chung521f0112017-03-13 16:14:45 -07003382 if (task.isOverHomeStack() &&
3383 mStackSupervisor.moveHomeStackTaskToTop(myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08003384 // Activity focus was already adjusted. Nothing else to do...
3385 return;
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003386 }
Craig Mautner04f0b702013-10-22 12:31:01 -07003387 }
3388 }
Wale Ogunwaled045c822015-12-02 09:14:28 -08003389 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003390
Chong Zhang6cda19c2016-06-14 19:07:56 -07003391 mStackSupervisor.moveFocusableActivityStackToFrontLocked(
3392 mStackSupervisor.topRunningActivityLocked(), myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07003393 }
3394
Andrii Kulian250d6532017-02-08 23:30:45 -08003395 /** Find next proper focusable stack and make it focused. */
Matthew Ngae1ff4f2016-11-10 15:49:14 -08003396 private boolean adjustFocusToNextFocusableStackLocked(String reason) {
Andrii Kulian250d6532017-02-08 23:30:45 -08003397 return adjustFocusToNextFocusableStackLocked(reason, false /* allowFocusSelf */);
3398 }
3399
3400 /**
3401 * Find next proper focusable stack and make it focused.
3402 * @param allowFocusSelf Is the focus allowed to remain on the same stack.
3403 */
3404 private boolean adjustFocusToNextFocusableStackLocked(String reason, boolean allowFocusSelf) {
Winson Chung1cebea62017-06-26 17:22:27 -07003405 if (isAssistantStack() && bottomTask() != null &&
3406 bottomTask().getTaskToReturnTo() == HOME_ACTIVITY_TYPE) {
3407 // If the current stack is the assistant stack, then use the return-to type to determine
3408 // whether to return to the home screen. This is needed to workaround an issue where
3409 // launching a fullscreen task (and subequently returning from that task) will cause
3410 // the fullscreen stack to be found as the next focusable stack below, even if the
3411 // assistant was launched over home.
3412 return mStackSupervisor.moveHomeStackTaskToTop(reason);
3413 }
3414
Andrii Kulian250d6532017-02-08 23:30:45 -08003415 final ActivityStack stack = mStackSupervisor.getNextFocusableStackLocked(
3416 allowFocusSelf ? null : this);
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08003417 final String myReason = reason + " adjustFocusToNextFocusableStack";
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003418 if (stack == null) {
3419 return false;
3420 }
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003421
Wale Ogunwalec750f5f2016-03-28 07:43:51 -07003422 final ActivityRecord top = stack.topRunningActivityLocked();
3423
Matthew Ngae1ff4f2016-11-10 15:49:14 -08003424 if (stack.isHomeOrRecentsStack() && (top == null || !top.visible)) {
Wale Ogunwalec750f5f2016-03-28 07:43:51 -07003425 // If we will be focusing on the home stack next and its current top activity isn't
Andrii Kulian250d6532017-02-08 23:30:45 -08003426 // visible, then use the task return to value to determine the home task to display
3427 // next.
Matthew Ngae1ff4f2016-11-10 15:49:14 -08003428 return mStackSupervisor.moveHomeStackTaskToTop(reason);
Wale Ogunwaled34e80c2016-03-23 17:08:44 -07003429 }
Chong Zhang6cda19c2016-06-14 19:07:56 -07003430
Bryce Lee43f27212017-08-07 16:10:43 -07003431 if (stack.isAssistantStack() && top != null
3432 && top.getTask().getTaskToReturnTo() == HOME_ACTIVITY_TYPE) {
3433 // It is possible for the home stack to not be directly underneath the assistant stack.
3434 // For example, the assistant may start an activity in the fullscreen stack. Upon
3435 // returning to the assistant stack, we must ensure that the home stack is underneath
3436 // when appropriate.
3437 mStackSupervisor.moveHomeStackTaskToTop("adjustAssistantReturnToHome");
3438 }
3439
Chong Zhang6cda19c2016-06-14 19:07:56 -07003440 stack.moveToFront(myReason);
3441 return true;
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003442 }
3443
Craig Mautnerf3333272013-04-22 10:55:53 -07003444 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003445 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003446 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
3447 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
3448 if (!r.finishing) {
David Stevensf62360c2017-03-16 19:00:20 -07003449 if (!shouldSleepActivities()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003450 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003451 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
3452 "stop-no-history", false)) {
Bryce Lee3345c4e2017-04-25 07:40:41 -07003453 // If {@link requestFinishActivityLocked} returns {@code true},
3454 // {@link adjustFocusedActivityStackLocked} would have been already called.
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003455 r.resumeKeyDispatchingLocked();
3456 return;
3457 }
Christopher Tated3f175c2012-06-14 14:16:54 -07003458 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003459 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07003460 + " on stop because we're just sleeping");
3461 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003462 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07003463 }
3464
3465 if (r.app != null && r.app.thread != null) {
Chong Zhang6cda19c2016-06-14 19:07:56 -07003466 adjustFocusedActivityStackLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003467 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003468 try {
3469 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003470 if (DEBUG_STATES) Slog.v(TAG_STATES,
3471 "Moving to STOPPING: " + r + " (stop requested)");
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003472 r.state = STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003473 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3474 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003475 if (!r.visible) {
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003476 r.setVisible(false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003477 }
Wale Ogunwalecd7043e2016-02-27 17:37:46 -08003478 EventLogTags.writeAmStopActivity(
3479 r.userId, System.identityHashCode(r), r.shortComponentName);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003480 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
David Stevensf62360c2017-03-16 19:00:20 -07003481 if (shouldSleepOrShutDownActivities()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003482 r.setSleeping(true);
3483 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003484 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003485 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003486 } catch (Exception e) {
3487 // Maybe just ignore exceptions here... if the process
3488 // has crashed, our death notification will clean things
3489 // up.
3490 Slog.w(TAG, "Exception thrown during pause", e);
3491 // Just in case, assume it to be stopped.
3492 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003493 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003494 r.state = STOPPED;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003495 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003496 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003497 }
3498 }
3499 }
3500 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07003501
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003502 /**
3503 * @return Returns true if the activity is being finished, false if for
3504 * some reason it is being left as-is.
3505 */
3506 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003507 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003508 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003509 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3510 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07003511 + ", result=" + resultCode + ", data=" + resultData
3512 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003513 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003514 return false;
3515 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003516
Craig Mautnerd44711d2013-02-23 11:24:36 -08003517 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003518 return true;
3519 }
3520
Craig Mautnerd2328952013-03-05 12:46:26 -08003521 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08003522 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3523 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3524 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3525 ActivityRecord r = activities.get(activityNdx);
3526 if (r.resultTo == self && r.requestCode == requestCode) {
3527 if ((r.resultWho == null && resultWho == null) ||
3528 (r.resultWho != null && r.resultWho.equals(resultWho))) {
3529 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3530 false);
3531 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003532 }
3533 }
3534 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003535 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003536 }
3537
Adrian Roos20d7df32016-01-12 18:59:43 +01003538 final TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003539 ActivityRecord r = topRunningActivityLocked();
Adrian Roos20d7df32016-01-12 18:59:43 +01003540 TaskRecord finishedTask = null;
3541 if (r == null || r.app != app) {
3542 return null;
3543 }
3544 Slog.w(TAG, " Force finishing activity "
3545 + r.intent.getComponent().flattenToShortString());
Bryce Leeaf691c02017-03-20 14:20:22 -07003546 finishedTask = r.getTask();
3547 int taskNdx = mTaskHistory.indexOf(finishedTask);
3548 final TaskRecord task = finishedTask;
3549 int activityNdx = task.mActivities.indexOf(r);
Adrian Roos20d7df32016-01-12 18:59:43 +01003550 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Bryce Leeaf691c02017-03-20 14:20:22 -07003551 finishedTask = task;
Adrian Roos20d7df32016-01-12 18:59:43 +01003552 // Also terminate any activities below it that aren't yet
3553 // stopped, to avoid a situation where one will get
3554 // re-start our crashing activity once it gets resumed again.
3555 --activityNdx;
3556 if (activityNdx < 0) {
3557 do {
3558 --taskNdx;
3559 if (taskNdx < 0) {
3560 break;
3561 }
3562 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3563 } while (activityNdx < 0);
3564 }
3565 if (activityNdx >= 0) {
3566 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
3567 if (r.state == ActivityState.RESUMED
3568 || r.state == ActivityState.PAUSING
3569 || r.state == ActivityState.PAUSED) {
3570 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
3571 Slog.w(TAG, " Force finishing activity "
3572 + r.intent.getComponent().flattenToShortString());
3573 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003574 }
3575 }
3576 }
Adrian Roos20d7df32016-01-12 18:59:43 +01003577 return finishedTask;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003578 }
3579
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003580 final void finishVoiceTask(IVoiceInteractionSession session) {
3581 IBinder sessionBinder = session.asBinder();
3582 boolean didOne = false;
3583 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3584 TaskRecord tr = mTaskHistory.get(taskNdx);
3585 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3586 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3587 ActivityRecord r = tr.mActivities.get(activityNdx);
3588 if (!r.finishing) {
3589 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3590 false);
3591 didOne = true;
3592 }
3593 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003594 } else {
3595 // Check if any of the activities are using voice
3596 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3597 ActivityRecord r = tr.mActivities.get(activityNdx);
3598 if (r.voiceSession != null
3599 && r.voiceSession.asBinder() == sessionBinder) {
3600 // Inform of cancellation
3601 r.clearVoiceSessionLocked();
3602 try {
3603 r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3604 null);
3605 } catch (RemoteException re) {
3606 // Ok
3607 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003608 mService.finishRunningVoiceLocked();
3609 break;
3610 }
3611 }
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003612 }
3613 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003614
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003615 if (didOne) {
3616 mService.updateOomAdjLocked();
3617 }
3618 }
3619
Craig Mautnerd2328952013-03-05 12:46:26 -08003620 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003621 ArrayList<ActivityRecord> activities = r.getTask().mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003622 for (int index = activities.indexOf(r); index >= 0; --index) {
3623 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003624 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003625 break;
3626 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003627 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003628 }
3629 return true;
3630 }
3631
Andrii Kulian21713ac2016-10-12 22:05:05 -07003632 private void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
Dianne Hackborn5c607432012-02-28 14:44:19 -08003633 // send the result
3634 ActivityRecord resultTo = r.resultTo;
3635 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003636 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003637 + " who=" + r.resultWho + " req=" + r.requestCode
3638 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003639 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003640 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003641 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003642 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003643 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003644 if (r.info.applicationInfo.uid > 0) {
3645 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3646 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003647 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003648 }
3649 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3650 resultData);
3651 r.resultTo = null;
3652 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003653 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003654
3655 // Make sure this HistoryRecord is not holding on to other resources,
3656 // because clients have remote IPC references to this object so we
3657 // can't assume that will go away and want to avoid circular IPC refs.
3658 r.results = null;
3659 r.pendingResults = null;
3660 r.newIntents = null;
3661 r.icicle = null;
3662 }
3663
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003664 /**
Winson Chung6954fc92017-03-24 16:22:12 -07003665 * See {@link #finishActivityLocked(ActivityRecord, int, Intent, String, boolean, boolean)}
3666 */
3667 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3668 String reason, boolean oomAdj) {
3669 return finishActivityLocked(r, resultCode, resultData, reason, oomAdj, !PAUSE_IMMEDIATELY);
3670 }
3671
3672 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003673 * @return Returns true if this activity has been removed from the history
3674 * list, or false if it is still in the list and will be removed later.
3675 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003676 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
Winson Chung6954fc92017-03-24 16:22:12 -07003677 String reason, boolean oomAdj, boolean pauseImmediately) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003678 if (r.finishing) {
3679 Slog.w(TAG, "Duplicate finish request for " + r);
3680 return false;
3681 }
3682
Jorim Jaggife762342016-10-13 14:33:27 +02003683 mWindowManager.deferSurfaceLayout();
3684 try {
3685 r.makeFinishingLocked();
Bryce Leeaf691c02017-03-20 14:20:22 -07003686 final TaskRecord task = r.getTask();
Jorim Jaggife762342016-10-13 14:33:27 +02003687 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3688 r.userId, System.identityHashCode(r),
3689 task.taskId, r.shortComponentName, reason);
3690 final ArrayList<ActivityRecord> activities = task.mActivities;
3691 final int index = activities.indexOf(r);
3692 if (index < (activities.size() - 1)) {
3693 task.setFrontOfTask();
3694 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
3695 // If the caller asked that this activity (and all above it)
3696 // be cleared when the task is reset, don't lose that information,
3697 // but propagate it up to the next activity.
3698 ActivityRecord next = activities.get(index+1);
3699 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
3700 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003701 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003702
Jorim Jaggife762342016-10-13 14:33:27 +02003703 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003704
Jorim Jaggife762342016-10-13 14:33:27 +02003705 adjustFocusedActivityStackLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003706
Jorim Jaggife762342016-10-13 14:33:27 +02003707 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003708
Yorke Leebdef5372017-04-10 16:38:51 -07003709 final boolean endTask = index <= 0 && !task.isClearingToReuseTask();
Jorim Jaggife762342016-10-13 14:33:27 +02003710 final int transit = endTask ? TRANSIT_TASK_CLOSE : TRANSIT_ACTIVITY_CLOSE;
3711 if (mResumedActivity == r) {
3712 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
3713 "Prepare close transition: finishing " + r);
Winson Chung6954fc92017-03-24 16:22:12 -07003714 if (endTask) {
3715 mService.mTaskChangeNotificationController.notifyTaskRemovalStarted(
3716 task.taskId);
3717 }
Jorim Jaggiaf80db42016-04-07 19:19:15 -07003718 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003719
Jorim Jaggife762342016-10-13 14:33:27 +02003720 // Tell window manager to prepare for this one to be removed.
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08003721 r.setVisibility(false);
Jorim Jaggife762342016-10-13 14:33:27 +02003722
3723 if (mPausingActivity == null) {
3724 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3725 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3726 "finish() => pause with userLeaving=false");
Winson Chung6954fc92017-03-24 16:22:12 -07003727 startPausingLocked(false, false, null, pauseImmediately);
Jorim Jaggife762342016-10-13 14:33:27 +02003728 }
3729
3730 if (endTask) {
3731 mStackSupervisor.removeLockedTaskLocked(task);
3732 }
3733 } else if (r.state != ActivityState.PAUSING) {
3734 // If the activity is PAUSING, we will complete the finish once
3735 // it is done pausing; else we can just directly finish it here.
3736 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
3737 if (r.visible) {
Winson Chung6954fc92017-03-24 16:22:12 -07003738 prepareActivityHideTransitionAnimation(r, transit);
3739 }
3740
3741 final int finishMode = (r.visible || r.nowVisible) ? FINISH_AFTER_VISIBLE
3742 : FINISH_AFTER_PAUSE;
3743 final boolean removedActivity = finishCurrentActivityLocked(r, finishMode, oomAdj)
3744 == null;
3745
3746 // The following code is an optimization. When the last non-task overlay activity
3747 // is removed from the task, we remove the entire task from the stack. However,
3748 // since that is done after the scheduled destroy callback from the activity, that
3749 // call to change the visibility of the task overlay activities would be out of
3750 // sync with the activitiy visibility being set for this finishing activity above.
3751 // In this case, we can set the visibility of all the task overlay activities when
3752 // we detect the last one is finishing to keep them in sync.
3753 if (task.onlyHasTaskOverlayActivities(true /* excludeFinishing */)) {
3754 for (ActivityRecord taskOverlay : task.mActivities) {
3755 if (!taskOverlay.mTaskOverlay) {
3756 continue;
3757 }
3758 prepareActivityHideTransitionAnimation(taskOverlay, transit);
Jorim Jaggife762342016-10-13 14:33:27 +02003759 }
3760 }
Winson Chung6954fc92017-03-24 16:22:12 -07003761 return removedActivity;
Jorim Jaggife762342016-10-13 14:33:27 +02003762 } else {
3763 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
3764 }
3765
3766 return false;
3767 } finally {
3768 mWindowManager.continueSurfaceLayout();
3769 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003770 }
3771
Winson Chung6954fc92017-03-24 16:22:12 -07003772 private void prepareActivityHideTransitionAnimation(ActivityRecord r, int transit) {
3773 mWindowManager.prepareAppTransition(transit, false);
3774 r.setVisibility(false);
3775 mWindowManager.executeAppTransition();
Bryce Lee4a194382017-04-04 14:32:48 -07003776 if (!mStackSupervisor.mActivitiesWaitingForVisibleActivity.contains(r)) {
3777 mStackSupervisor.mActivitiesWaitingForVisibleActivity.add(r);
Winson Chung6954fc92017-03-24 16:22:12 -07003778 }
3779 }
3780
Craig Mautnerf3333272013-04-22 10:55:53 -07003781 static final int FINISH_IMMEDIATELY = 0;
3782 static final int FINISH_AFTER_PAUSE = 1;
3783 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003784
Craig Mautnerf3333272013-04-22 10:55:53 -07003785 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003786 // First things first: if this activity is currently visible,
3787 // and the resumed activity is not yet visible, then hold off on
3788 // finishing until the resumed one becomes visible.
Chong Zhang824b6dc2016-04-27 14:11:12 -07003789
3790 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
3791
Chong Zhangefd9a5b2016-04-26 16:21:07 -07003792 if (mode == FINISH_AFTER_VISIBLE && (r.visible || r.nowVisible)
Chong Zhang824b6dc2016-04-27 14:11:12 -07003793 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003794 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Winson Chung4dabf232017-01-25 13:25:22 -08003795 addToStopping(r, false /* scheduleIdle */, false /* idleDelayed */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003796 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003797 if (DEBUG_STATES) Slog.v(TAG_STATES,
3798 "Moving to STOPPING: "+ r + " (finish requested)");
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003799 r.state = STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003800 if (oomAdj) {
3801 mService.updateOomAdjLocked();
3802 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003803 return r;
3804 }
3805
3806 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003807 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003808 mStackSupervisor.mGoingToSleepActivities.remove(r);
Bryce Lee4a194382017-04-04 14:32:48 -07003809 mStackSupervisor.mActivitiesWaitingForVisibleActivity.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003810 if (mResumedActivity == r) {
3811 mResumedActivity = null;
3812 }
3813 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003814 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003815 r.state = ActivityState.FINISHING;
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003816 final boolean finishingActivityInNonFocusedStack
Andrii Kulian02b7a832016-10-06 23:11:56 -07003817 = r.getStack() != mStackSupervisor.getFocusedStack()
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003818 && prevState == ActivityState.PAUSED && mode == FINISH_AFTER_VISIBLE;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003819
3820 if (mode == FINISH_IMMEDIATELY
Wale Ogunwaleae30f302016-05-02 10:35:45 -07003821 || (prevState == ActivityState.PAUSED
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003822 && (mode == FINISH_AFTER_PAUSE || mStackId == PINNED_STACK_ID))
3823 || finishingActivityInNonFocusedStack
Wale Ogunwaleb9a0c992017-04-18 07:25:20 -07003824 || prevState == STOPPING
3825 || prevState == STOPPED
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003826 || prevState == ActivityState.INITIALIZING) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003827 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003828 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Andrii Kulian7318d632016-07-20 18:59:28 -07003829
Andrii Kulian995fa2b2016-07-29 12:55:41 -07003830 if (finishingActivityInNonFocusedStack) {
3831 // Finishing activity that was in paused state and it was in not currently focused
3832 // stack, need to make something visible in its place.
Andrii Kulian7318d632016-07-20 18:59:28 -07003833 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
3834 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003835 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003836 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003837 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003838 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003839 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3840 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003841 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003842 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003843
3844 // Need to go through the full pause cycle to get this
3845 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003846 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003847 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003848 r.resumeKeyDispatchingLocked();
Wale Ogunwaled046a012015-12-24 13:05:59 -08003849 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003850 return r;
3851 }
3852
Craig Mautneree36c772014-07-16 14:56:05 -07003853 void finishAllActivitiesLocked(boolean immediately) {
3854 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003855 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3856 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3857 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3858 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003859 noActivitiesInStack = false;
3860 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003861 continue;
3862 }
Craig Mautneree36c772014-07-16 14:56:05 -07003863 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003864 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3865 }
3866 }
Craig Mautneree36c772014-07-16 14:56:05 -07003867 if (noActivitiesInStack) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07003868 remove();
Craig Mautneree36c772014-07-16 14:56:05 -07003869 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003870 }
3871
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003872 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3873 // Basic case: for simple app-centric recents, we need to recreate
3874 // the task if the affinity has changed.
Bryce Leeaf691c02017-03-20 14:20:22 -07003875 if (srec == null || srec.getTask().affinity == null ||
3876 !srec.getTask().affinity.equals(destAffinity)) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003877 return true;
3878 }
3879 // Document-centric case: an app may be split in to multiple documents;
3880 // they need to re-create their task if this current activity is the root
3881 // of a document, unless simply finishing it will return them to the the
3882 // correct app behind.
Bryce Leeaf691c02017-03-20 14:20:22 -07003883 final TaskRecord task = srec.getTask();
3884 if (srec.frontOfTask && task != null && task.getBaseIntent() != null
3885 && task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003886 // Okay, this activity is at the root of its task. What to do, what to do...
Bryce Leeaf691c02017-03-20 14:20:22 -07003887 if (task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003888 // Finishing won't return to an application, so we need to recreate.
3889 return true;
3890 }
3891 // We now need to get the task below it to determine what to do.
Bryce Leeaf691c02017-03-20 14:20:22 -07003892 int taskIdx = mTaskHistory.indexOf(task);
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003893 if (taskIdx <= 0) {
3894 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3895 return false;
3896 }
3897 if (taskIdx == 0) {
3898 // At the bottom of the stack, nothing to go back to.
3899 return true;
3900 }
3901 TaskRecord prevTask = mTaskHistory.get(taskIdx);
Bryce Leeaf691c02017-03-20 14:20:22 -07003902 if (!task.affinity.equals(prevTask.affinity)) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003903 // These are different apps, so need to recreate.
3904 return true;
3905 }
3906 }
3907 return false;
3908 }
3909
Wale Ogunwale7d701172015-03-11 15:36:30 -07003910 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003911 Intent resultData) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003912 final TaskRecord task = srec.getTask();
Craig Mautner0247fc82013-02-28 14:32:06 -08003913 final ArrayList<ActivityRecord> activities = task.mActivities;
3914 final int start = activities.indexOf(srec);
3915 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003916 return false;
3917 }
3918 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003919 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003920 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003921 final ComponentName dest = destIntent.getComponent();
3922 if (start > 0 && dest != null) {
3923 for (int i = finishTo; i >= 0; i--) {
3924 ActivityRecord r = activities.get(i);
3925 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003926 r.info.name.equals(dest.getClassName())) {
3927 finishTo = i;
3928 parent = r;
3929 foundParentInTask = true;
3930 break;
3931 }
3932 }
3933 }
3934
3935 IActivityController controller = mService.mController;
3936 if (controller != null) {
3937 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3938 if (next != null) {
3939 // ask watcher if this is allowed
3940 boolean resumeOK = true;
3941 try {
3942 resumeOK = controller.activityResuming(next.packageName);
3943 } catch (RemoteException e) {
3944 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003945 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003946 }
3947
3948 if (!resumeOK) {
3949 return false;
3950 }
3951 }
3952 }
3953 final long origId = Binder.clearCallingIdentity();
3954 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003955 ActivityRecord r = activities.get(i);
3956 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003957 // Only return the supplied result for the first activity finished
3958 resultCode = Activity.RESULT_CANCELED;
3959 resultData = null;
3960 }
3961
3962 if (parent != null && foundParentInTask) {
3963 final int parentLaunchMode = parent.info.launchMode;
3964 final int destIntentFlags = destIntent.getFlags();
3965 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3966 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3967 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3968 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003969 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3970 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003971 } else {
3972 try {
3973 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3974 destIntent.getComponent(), 0, srec.userId);
Filip Gruszczynski303210b2016-01-08 16:28:08 -08003975 int res = mService.mActivityStarter.startActivityLocked(srec.app.thread,
3976 destIntent, null /*ephemeralIntent*/, null, aInfo, null /*rInfo*/, null,
3977 null, parent.appToken, null, 0, -1, parent.launchedFromUid,
Todd Kennedy7440f172015-12-09 14:31:22 -08003978 parent.launchedFromPackage, -1, parent.launchedFromUid, 0, null,
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07003979 false, true, null, null, "navigateUpTo");
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003980 foundParentInTask = res == ActivityManager.START_SUCCESS;
3981 } catch (RemoteException e) {
3982 foundParentInTask = false;
3983 }
3984 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003985 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003986 }
3987 }
3988 Binder.restoreCallingIdentity(origId);
3989 return foundParentInTask;
3990 }
Bryce Leeaf691c02017-03-20 14:20:22 -07003991
3992 /**
3993 * Remove any state associated with the {@link ActivityRecord}. This should be called whenever
3994 * an activity moves away from the stack.
3995 */
3996 void onActivityRemovedFromStack(ActivityRecord r) {
3997 if (mResumedActivity == r) {
3998 mResumedActivity = null;
3999 }
4000 if (mPausingActivity == r) {
4001 mPausingActivity = null;
4002 }
4003
4004 removeTimeoutsForActivityLocked(r);
4005 }
4006
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004007 /**
4008 * Perform the common clean-up of an activity record. This is called both
4009 * as part of destroyActivityLocked() (when destroying the client-side
4010 * representation) and cleaning things up as a result of its hosting
4011 * processing going away, in which case there is no remaining client-side
4012 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08004013 *
4014 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004015 */
Andrii Kulian21713ac2016-10-12 22:05:05 -07004016 private void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices, boolean setState) {
Bryce Leeaf691c02017-03-20 14:20:22 -07004017 onActivityRemovedFromStack(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004018
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004019 r.deferRelaunchUntilPaused = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004020 r.frozenBeforeDestroy = false;
4021
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004022 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004023 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004024 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004025 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004026 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004027 }
4028
Bryce Lee4a194382017-04-04 14:32:48 -07004029 // Inform supervisor the activity has been removed.
4030 mStackSupervisor.cleanupActivity(r);
4031
Craig Mautner2420ead2013-04-01 17:13:20 -07004032
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004033 // Remove any pending results.
4034 if (r.finishing && r.pendingResults != null) {
4035 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
4036 PendingIntentRecord rec = apr.get();
4037 if (rec != null) {
4038 mService.cancelIntentSenderLocked(rec, false);
4039 }
4040 }
4041 r.pendingResults = null;
4042 }
4043
4044 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07004045 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004046 }
4047
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004048 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004049 removeTimeoutsForActivityLocked(r);
Wale Ogunwale8fd75422016-06-24 14:20:37 -07004050 // Clean-up activities are no longer relaunching (e.g. app process died). Notify window
4051 // manager so it can update its bookkeeping.
4052 mWindowManager.notifyAppRelaunchesCleared(r.appToken);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004053 }
4054
Winson Chung4dabf232017-01-25 13:25:22 -08004055 void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07004056 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004057 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07004058 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07004059 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07004060 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004061 }
4062
Chong Zhangbffd8892016-08-08 11:16:06 -07004063 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004064 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07004065 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004066 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
4067 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
4068
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004069 r.takeFromHistory();
4070 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004071 if (DEBUG_STATES) Slog.v(TAG_STATES,
4072 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004073 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004074 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004075 r.app = null;
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08004076 r.removeWindowContainer();
Bryce Leeaf691c02017-03-20 14:20:22 -07004077 final TaskRecord task = r.getTask();
Bryce Leeaa5e8c32017-03-01 16:01:06 -08004078 final boolean lastActivity = task != null ? task.removeActivity(r) : false;
Winson Chung6954fc92017-03-24 16:22:12 -07004079 // If we are removing the last activity in the task, not including task overlay activities,
4080 // then fall through into the block below to remove the entire task itself
4081 final boolean onlyHasTaskOverlays = task != null
4082 ? task.onlyHasTaskOverlayActivities(false /* excludingFinishing */) : false;
Bryce Leeaa5e8c32017-03-01 16:01:06 -08004083
Winson Chung6954fc92017-03-24 16:22:12 -07004084 if (lastActivity || onlyHasTaskOverlays) {
4085 if (DEBUG_STACK) {
4086 Slog.i(TAG_STACK,
4087 "removeActivityFromHistoryLocked: last activity removed from " + this
4088 + " onlyHasTaskOverlays=" + onlyHasTaskOverlays);
4089 }
4090
Chong Zhangbffd8892016-08-08 11:16:06 -07004091 if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
Craig Mautner84984fa2014-06-19 11:19:20 -07004092 task.isOverHomeStack()) {
Matthew Ngae1ff4f2016-11-10 15:49:14 -08004093 mStackSupervisor.moveHomeStackTaskToTop(reason);
Craig Mautner312ba862014-02-10 17:55:01 -08004094 }
Winson Chunge3c21e02017-04-11 18:02:17 -07004095
Bryce Leed6d26752017-05-25 13:57:46 -07004096 // The following block can be executed multiple times if there is more than one overlay.
4097 // {@link ActivityStackSupervisor#removeTaskByIdLocked} handles this by reverse lookup
4098 // of the task by id and exiting early if not found.
Winson Chunge3c21e02017-04-11 18:02:17 -07004099 if (onlyHasTaskOverlays) {
4100 // When destroying a task, tell the supervisor to remove it so that any activity it
4101 // has can be cleaned up correctly. This is currently the only place where we remove
4102 // a task with the DESTROYING mode, so instead of passing the onlyHasTaskOverlays
4103 // state into removeTask(), we just clear the task here before the other residual
4104 // work.
4105 // TODO: If the callers to removeTask() changes such that we have multiple places
4106 // where we are destroying the task, move this back into removeTask()
4107 mStackSupervisor.removeTaskByIdLocked(task.taskId, false /* killProcess */,
4108 !REMOVE_FROM_RECENTS, PAUSE_IMMEDIATELY);
Winson Chunge3c21e02017-04-11 18:02:17 -07004109 }
Bryce Lee1d930582017-05-01 08:35:24 -07004110
Bryce Leed6d26752017-05-25 13:57:46 -07004111 // We must keep the task around until all activities are destroyed. The following
4112 // statement will only execute once since overlays are also considered activities.
Bryce Lee1d930582017-05-01 08:35:24 -07004113 if (lastActivity) {
4114 removeTask(task, reason, REMOVE_TASK_MODE_DESTROYING);
4115 }
Craig Mautner312ba862014-02-10 17:55:01 -08004116 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004117 cleanUpActivityServicesLocked(r);
4118 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004119 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004120
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004121 /**
4122 * Perform clean-up of service connections in an activity record.
4123 */
Andrii Kulian21713ac2016-10-12 22:05:05 -07004124 private void cleanUpActivityServicesLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004125 // Throw away any services that have been bound by this activity.
4126 if (r.connections != null) {
4127 Iterator<ConnectionRecord> it = r.connections.iterator();
4128 while (it.hasNext()) {
4129 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07004130 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004131 }
4132 r.connections = null;
4133 }
4134 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004135
Craig Mautneree2e45a2014-06-27 12:10:03 -07004136 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004137 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004138 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004139 mHandler.sendMessage(msg);
4140 }
4141
Andrii Kulian21713ac2016-10-12 22:05:05 -07004142 private void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07004143 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004144 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004145 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4146 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4147 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4148 final ActivityRecord r = activities.get(activityNdx);
4149 if (r.finishing) {
4150 continue;
4151 }
4152 if (r.fullscreen) {
4153 lastIsOpaque = true;
4154 }
4155 if (owner != null && r.app != owner) {
4156 continue;
4157 }
4158 if (!lastIsOpaque) {
4159 continue;
4160 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004161 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004162 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08004163 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004164 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004165 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004166 activityRemoved = true;
4167 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004168 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004169 }
4170 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004171 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08004172 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004173 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004174 }
4175
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004176 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
4177 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004178 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4179 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004180 + " pausing=" + mPausingActivity + " for reason " + reason);
4181 return destroyActivityLocked(r, true, reason);
4182 }
4183 return false;
4184 }
4185
4186 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
4187 String reason) {
4188 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004189 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004190 int maxTasks = tasks.size() / 4;
4191 if (maxTasks < 1) {
4192 maxTasks = 1;
4193 }
4194 int numReleased = 0;
4195 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
4196 final TaskRecord task = mTaskHistory.get(taskNdx);
4197 if (!tasks.contains(task)) {
4198 continue;
4199 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004200 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004201 int curNum = 0;
4202 final ArrayList<ActivityRecord> activities = task.mActivities;
4203 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
4204 final ActivityRecord activity = activities.get(actNdx);
4205 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004206 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004207 + " in state " + activity.state + " resumed=" + mResumedActivity
4208 + " pausing=" + mPausingActivity + " for reason " + reason);
4209 destroyActivityLocked(activity, true, reason);
4210 if (activities.get(actNdx) != activity) {
4211 // Was removed from list, back up so we don't miss the next one.
4212 actNdx--;
4213 }
4214 curNum++;
4215 }
4216 }
4217 if (curNum > 0) {
4218 numReleased += curNum;
4219 maxTasks--;
4220 if (mTaskHistory.get(taskNdx) != task) {
4221 // The entire task got removed, back up so we don't miss the next one.
4222 taskNdx--;
4223 }
4224 }
4225 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004226 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
4227 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07004228 return numReleased;
4229 }
4230
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004231 /**
4232 * Destroy the current CLIENT SIDE instance of an activity. This may be
4233 * called both when actually finishing an activity, or when performing
4234 * a configuration switch where we destroy the current client-side object
4235 * but then create a new client-side object for this same HistoryRecord.
4236 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07004237 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004238 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
4239 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004240 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004241 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004242 r.userId, System.identityHashCode(r),
Bryce Leeaf691c02017-03-20 14:20:22 -07004243 r.getTask().taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004244
4245 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004246
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004247 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004248
4249 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004250
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004251 if (hadApp) {
4252 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004253 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004254 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
4255 mService.mHeavyWeightProcess = null;
4256 mService.mHandler.sendEmptyMessage(
4257 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
4258 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004259 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07004260 // Update any services we are bound to that might care about whether
4261 // their client may have activities.
4262 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07004263 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07004264 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07004265 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004266 }
4267 }
4268
4269 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004270
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004271 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004272 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08004273 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004274 r.configChangeFlags);
4275 } catch (Exception e) {
4276 // We can just ignore exceptions here... if the process
4277 // has crashed, our death notification will clean things
4278 // up.
4279 //Slog.w(TAG, "Exception thrown during finish", e);
4280 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004281 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004282 removedFromHistory = true;
4283 skipDestroy = true;
4284 }
4285 }
4286
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004287 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004288
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004289 // If the activity is finishing, we need to wait on removing it
4290 // from the list to give it a chance to do its cleanup. During
4291 // that time it may make calls back with its token so we need to
4292 // be able to find it on the list and so we don't want to remove
4293 // it from the list yet. Otherwise, we can just immediately put
4294 // it in the destroyed state since we are not removing it from the
4295 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004296 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004297 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07004298 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004299 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07004300 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004301 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
4302 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004303 if (DEBUG_STATES) Slog.v(TAG_STATES,
4304 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004305 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004306 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004307 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004308 }
4309 } else {
4310 // remove this record from the history.
4311 if (r.finishing) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004312 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004313 removedFromHistory = true;
4314 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004315 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004316 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004317 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004318 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004319 }
4320 }
4321
4322 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004323
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004324 if (!mLRUActivities.remove(r) && hadApp) {
4325 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
4326 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07004327
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004328 return removedFromHistory;
4329 }
4330
Craig Mautner299f9602015-01-26 09:47:33 -08004331 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004332 final long origId = Binder.clearCallingIdentity();
4333 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07004334 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08004335 if (r != null) {
4336 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004337 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004338 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08004339
Wale Ogunwale60454db2015-01-23 16:05:07 -08004340 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004341 if (r.state == ActivityState.DESTROYING) {
4342 cleanUpActivityLocked(r, true, false);
Chong Zhangbffd8892016-08-08 11:16:06 -07004343 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08004344 }
4345 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004346 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08004347 } finally {
4348 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004349 }
4350 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004351
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004352 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
4353 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004354 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004355 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4356 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004357 while (i > 0) {
4358 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08004359 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004360 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004361 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004362 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004363 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07004364 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004365 }
4366 }
4367 }
4368
Andrii Kulian21713ac2016-10-12 22:05:05 -07004369 private boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004370 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004371 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
4372 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07004373 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
4374 "mGoingToSleepActivities");
Bryce Lee4a194382017-04-04 14:32:48 -07004375 removeHistoryRecordsForAppLocked(mStackSupervisor.mActivitiesWaitingForVisibleActivity, app,
4376 "mActivitiesWaitingForVisibleActivity");
Craig Mautnerf3333272013-04-22 10:55:53 -07004377 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
4378 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004379
4380 boolean hasVisibleActivities = false;
4381
4382 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08004383 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004384 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4385 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08004386 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4387 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4388 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4389 final ActivityRecord r = activities.get(activityNdx);
4390 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004391 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4392 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08004393 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08004394 if (r.visible) {
4395 hasVisibleActivities = true;
4396 }
Craig Mautneracebdc82015-02-24 10:53:03 -08004397 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08004398 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
4399 // Don't currently have state for the activity, or
4400 // it is finishing -- always remove it.
4401 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004402 } else if (!r.visible && r.launchCount > 2 &&
4403 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08004404 // We have launched this activity too many times since it was
4405 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08004406 // (Note if the activity is visible, we don't remove the record.
4407 // We leave the dead window on the screen but the process will
4408 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08004409 remove = true;
4410 } else {
4411 // The process may be gone, but the activity lives on!
4412 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004413 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004414 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004415 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
4416 "Removing activity " + r + " from stack at " + i
4417 + ": haveState=" + r.haveState
4418 + " stateNotNeeded=" + r.stateNotNeeded
4419 + " finishing=" + r.finishing
4420 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08004421 if (!r.finishing) {
4422 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
4423 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
4424 r.userId, System.identityHashCode(r),
Bryce Leeaf691c02017-03-20 14:20:22 -07004425 r.getTask().taskId, r.shortComponentName,
Craig Mautner0247fc82013-02-28 14:32:06 -08004426 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07004427 if (r.state == ActivityState.RESUMED) {
4428 mService.updateUsageStats(r, false);
4429 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004430 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004431 } else {
4432 // We have the current state for this activity, so
4433 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004434 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
4435 if (DEBUG_APP) Slog.v(TAG_APP,
4436 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08004437 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08004438 // Set nowVisible to previous visible state. If the app was visible while
4439 // it died, we leave the dead window on screen so it's basically visible.
4440 // This is needed when user later tap on the dead window, we need to stop
4441 // other apps when user transfers focus to the restarted activity.
4442 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08004443 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004444 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08004445 "App died, clearing saved state of " + r);
4446 r.icicle = null;
4447 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004448 }
Craig Mautnerd2328952013-03-05 12:46:26 -08004449 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08004450 if (remove) {
Chong Zhangbffd8892016-08-08 11:16:06 -07004451 removeActivityFromHistoryLocked(r, "appDied");
Craig Mautneracebdc82015-02-24 10:53:03 -08004452 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004453 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07004454 }
4455 }
4456
4457 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004458 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004459
Andrii Kulian21713ac2016-10-12 22:05:05 -07004460 private void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004461 if (options != null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004462 ActivityRecord r = topRunningActivityLocked();
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004463 if (r != null && r.state != ActivityState.RESUMED) {
4464 r.updateOptionsLocked(options);
4465 } else {
4466 ActivityOptions.abort(options);
4467 }
4468 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004469 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07004470 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08004471
Andrii Kulian21713ac2016-10-12 22:05:05 -07004472 private void updateTaskMovement(TaskRecord task, boolean toFront) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004473 if (task.isPersistable) {
4474 task.mLastTimeMoved = System.currentTimeMillis();
4475 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
4476 // recently will be most negative, tasks sent to the bottom before that will be less
4477 // negative. Similarly for recent tasks moved to the top which will be most positive.
4478 if (!toFront) {
4479 task.mLastTimeMoved *= -1;
4480 }
4481 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07004482 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07004483 }
4484
Matthew Ngae1ff4f2016-11-10 15:49:14 -08004485 void moveHomeStackTaskToTop() {
Craig Mautnera82aa092013-09-13 15:34:08 -07004486 final int top = mTaskHistory.size() - 1;
4487 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
4488 final TaskRecord task = mTaskHistory.get(taskNdx);
Matthew Ngae1ff4f2016-11-10 15:49:14 -08004489 if (task.taskType == HOME_ACTIVITY_TYPE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004490 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
4491 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07004492 mTaskHistory.remove(taskNdx);
4493 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004494 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07004495 return;
4496 }
4497 }
4498 }
4499
Chong Zhang280d3322015-11-03 17:27:26 -08004500 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004501 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004502 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004503
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004504 final ActivityStack topStack = getTopStackOnDisplay();
4505 final ActivityRecord topActivity = topStack != null ? topStack.topActivity() : null;
Craig Mautner11bf9a52013-02-19 14:08:51 -08004506 final int numTasks = mTaskHistory.size();
4507 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07004508 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004509 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004510 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004511 ActivityOptions.abort(options);
4512 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004513 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004514 }
4515 return;
4516 }
4517
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004518 if (timeTracker != null) {
4519 // The caller wants a time tracker associated with this task.
4520 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4521 tr.mActivities.get(i).appTimeTracker = timeTracker;
4522 }
4523 }
4524
Craig Mautner11bf9a52013-02-19 14:08:51 -08004525 // Shift all activities with this task up to the top
4526 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004527 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004528
Chong Zhang45c25ce2015-08-10 22:18:26 -07004529 // Don't refocus if invisible to current user
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004530 final ActivityRecord top = tr.getTopActivity();
Chong Zhang87761972016-08-22 13:53:24 -07004531 if (top == null || !top.okToShowLocked()) {
Chong Zhang45c25ce2015-08-10 22:18:26 -07004532 addRecentActivityLocked(top);
4533 ActivityOptions.abort(options);
4534 return;
4535 }
4536
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004537 // Set focus to the top running activity of this stack.
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004538 final ActivityRecord r = topRunningActivityLocked();
Chong Zhang6cda19c2016-06-14 19:07:56 -07004539 mStackSupervisor.moveFocusableActivityStackToFrontLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004540
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004541 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004542 if (noAnimation) {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004543 mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004544 if (r != null) {
4545 mNoAnimActivities.add(r);
4546 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07004547 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004548 } else {
Jorim Jaggiaf80db42016-04-07 19:19:15 -07004549 updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004550 }
Winson Chungc2baac02017-01-11 13:34:47 -08004551 // If a new task is moved to the front, then mark the existing top activity as supporting
Winson Chung942a85c2017-07-11 15:07:45 -07004552 // picture-in-picture while paused only if the task would not be considered an oerlay on top
4553 // of the current activity (eg. not fullscreen, or the assistant)
Winson Chung4aede8a2017-07-05 12:23:25 -07004554 if (topActivity != null && topActivity.getStackId() != PINNED_STACK_ID
Winson Chung942a85c2017-07-11 15:07:45 -07004555 && tr.getStackId() != ASSISTANT_STACK_ID && tr.containsOnlyFullscreenActivities()) {
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004556 topActivity.supportsPictureInPictureWhilePausing = true;
Winson Chungb5c41b72016-12-07 15:00:47 -08004557 }
Craig Mautner30e2d722013-02-12 11:30:16 -08004558
Wale Ogunwaled046a012015-12-24 13:05:59 -08004559 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautner58547802013-03-05 08:23:53 -08004560 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Yorke Leebd54c2a2016-10-25 13:49:23 -07004561
4562 mService.mTaskChangeNotificationController.notifyTaskMovedToFront(tr.taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004563 }
4564
4565 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004566 * Worker method for rearranging history stack. Implements the function of moving all
4567 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004568 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004569 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004570 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4571 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004572 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004573 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004574 * @return Returns true if the move completed, false if not.
4575 */
Craig Mautner299f9602015-01-26 09:47:33 -08004576 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004577 final TaskRecord tr = taskForIdLocked(taskId);
4578 if (tr == null) {
4579 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4580 return false;
4581 }
Craig Mautneraea74a52014-03-08 14:23:10 -08004582 Slog.i(TAG, "moveTaskToBack: " + tr);
Winson Chung261c0f32017-03-07 16:54:31 -08004583
4584 // If the task is locked, then show the lock task toast
4585 if (mStackSupervisor.isLockedTask(tr)) {
4586 mStackSupervisor.showLockTaskToast();
4587 return false;
4588 }
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004589
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004590 // If we have a watcher, preflight the move before committing to it. First check
4591 // for *other* available tasks, but if none are available, then try again allowing the
4592 // current task to be selected.
Andrii Kulian7d95df42017-02-15 10:11:48 -08004593 if (mStackSupervisor.isFrontStackOnDisplay(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004594 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004595 if (next == null) {
4596 next = topRunningActivityLocked(null, 0);
4597 }
4598 if (next != null) {
4599 // ask watcher if this is allowed
4600 boolean moveOK = true;
4601 try {
4602 moveOK = mService.mController.activityResuming(next.packageName);
4603 } catch (RemoteException e) {
4604 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07004605 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004606 }
4607 if (!moveOK) {
4608 return false;
4609 }
4610 }
4611 }
4612
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004613 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004614
riddle_hsuc215a4f2014-12-27 12:10:45 +08004615 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07004616
4617 // If true, we should resume the home activity next if the task we are moving to the
4618 // back is over the home stack. We force to false if the task we are moving to back
4619 // is the home task and we don't want it resumed after moving to the back.
4620 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4621 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08004622 final TaskRecord nextTask = getNextTask(tr);
4623 if (nextTask != null) {
4624 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4625 } else {
4626 prevIsHome = true;
4627 }
4628 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004629
Winson Chung261c0f32017-03-07 16:54:31 -08004630 boolean requiresMove = mTaskHistory.indexOf(tr) != 0;
4631 if (requiresMove) {
4632 mTaskHistory.remove(tr);
4633 mTaskHistory.add(0, tr);
4634 updateTaskMovement(tr, false);
4635
4636 mWindowManager.prepareAppTransition(TRANSIT_TASK_TO_BACK, false);
4637 mWindowContainerController.positionChildAtBottom(tr.getWindowContainerController());
4638 }
4639
4640 if (mStackId == PINNED_STACK_ID) {
4641 mStackSupervisor.removeStackLocked(PINNED_STACK_ID);
4642 return true;
4643 }
4644
4645 // Otherwise, there is an assumption that moving a task to the back moves it behind the
4646 // home activity. We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07004647 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004648 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4649 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004650 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07004651 break;
4652 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004653 if (taskNdx == 1) {
4654 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07004655 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004656 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004657 }
4658
Bryce Leeaf691c02017-03-20 14:20:22 -07004659 final TaskRecord task = mResumedActivity != null ? mResumedActivity.getTask() : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07004660 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07004661 if (!mService.mBooting && !mService.mBooted) {
4662 // Not ready yet!
4663 return false;
4664 }
Craig Mautner84984fa2014-06-19 11:19:20 -07004665 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Matthew Ngae1ff4f2016-11-10 15:49:14 -08004666 return mStackSupervisor.resumeHomeStackTask(null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004667 }
4668
Wale Ogunwaled046a012015-12-24 13:05:59 -08004669 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004670 return true;
4671 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004672
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004673 /**
4674 * Get the topmost stack on the current display. It may be different from focused stack, because
4675 * focus may be on another display.
4676 */
4677 private ActivityStack getTopStackOnDisplay() {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07004678 final ArrayList<ActivityStack> stacks = getDisplay().mStacks;
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004679 return stacks.isEmpty() ? null : stacks.get(stacks.size() - 1);
4680 }
4681
Andrii Kulian21713ac2016-10-12 22:05:05 -07004682 static void logStartActivity(int tag, ActivityRecord r, TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004683 final Uri data = r.intent.getData();
4684 final String strData = data != null ? data.toSafeString() : null;
4685
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004686 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004687 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004688 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004689 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004690 }
4691
4692 /**
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004693 * Ensures all visible activities at or below the input activity have the right configuration.
4694 */
4695 void ensureVisibleActivitiesConfigurationLocked(ActivityRecord start, boolean preserveWindow) {
4696 if (start == null || !start.visible) {
4697 return;
4698 }
4699
Bryce Leeaf691c02017-03-20 14:20:22 -07004700 final TaskRecord startTask = start.getTask();
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004701 boolean behindFullscreen = false;
4702 boolean updatedConfig = false;
4703
4704 for (int taskIndex = mTaskHistory.indexOf(startTask); taskIndex >= 0; --taskIndex) {
4705 final TaskRecord task = mTaskHistory.get(taskIndex);
4706 final ArrayList<ActivityRecord> activities = task.mActivities;
4707 int activityIndex =
Bryce Leeaf691c02017-03-20 14:20:22 -07004708 (start.getTask() == task) ? activities.indexOf(start) : activities.size() - 1;
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004709 for (; activityIndex >= 0; --activityIndex) {
4710 final ActivityRecord r = activities.get(activityIndex);
Andrii Kulian21713ac2016-10-12 22:05:05 -07004711 updatedConfig |= r.ensureActivityConfigurationLocked(0 /* globalChanges */,
4712 preserveWindow);
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004713 if (r.fullscreen) {
4714 behindFullscreen = true;
4715 break;
4716 }
4717 }
4718 if (behindFullscreen) {
4719 break;
4720 }
4721 }
4722 if (updatedConfig) {
Wale Ogunwale089586f2016-06-20 14:16:22 -07004723 // Ensure the resumed state of the focus activity if we updated the configuration of
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07004724 // any activity.
4725 mStackSupervisor.resumeFocusedStackTopActivityLocked();
4726 }
4727 }
4728
Wale Ogunwale1666e312016-12-16 11:27:18 -08004729 // TODO: Figure-out a way to consolidate with resize() method below.
4730 @Override
4731 public void requestResize(Rect bounds) {
4732 mService.resizeStack(mStackId, bounds, true /* allowResizeInDockedMode */,
4733 false /* preserveWindows */, false /* animate */, -1 /* animationDuration */);
4734 }
Andrii Kulian1e32e022016-09-16 15:29:34 -07004735
Wale Ogunwale1666e312016-12-16 11:27:18 -08004736 // TODO: Can only be called from special methods in ActivityStackSupervisor.
4737 // Need to consolidate those calls points into this resize method so anyone can call directly.
4738 void resize(Rect bounds, Rect tempTaskBounds, Rect tempTaskInsetBounds) {
4739 bounds = TaskRecord.validateBounds(bounds);
4740
4741 if (!updateBoundsAllowed(bounds, tempTaskBounds, tempTaskInsetBounds)) {
4742 return;
4743 }
4744
4745 // Update override configurations of all tasks in the stack.
4746 final Rect taskBounds = tempTaskBounds != null ? tempTaskBounds : bounds;
Andrii Kulian1e32e022016-09-16 15:29:34 -07004747 final Rect insetBounds = tempTaskInsetBounds != null ? tempTaskInsetBounds : taskBounds;
4748
4749 mTmpBounds.clear();
4750 mTmpConfigs.clear();
4751 mTmpInsetBounds.clear();
4752
4753 for (int i = mTaskHistory.size() - 1; i >= 0; i--) {
4754 final TaskRecord task = mTaskHistory.get(i);
4755 if (task.isResizeable()) {
4756 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
4757 // For freeform stack we don't adjust the size of the tasks to match that
4758 // of the stack, but we do try to make sure the tasks are still contained
4759 // with the bounds of the stack.
Wale Ogunwale1666e312016-12-16 11:27:18 -08004760 mTmpRect2.set(task.mBounds);
4761 fitWithinBounds(mTmpRect2, bounds);
4762 task.updateOverrideConfiguration(mTmpRect2);
Andrii Kulian1e32e022016-09-16 15:29:34 -07004763 } else {
4764 task.updateOverrideConfiguration(taskBounds, insetBounds);
4765 }
4766 }
4767
Andrii Kulian1779e612016-10-12 21:58:25 -07004768 mTmpConfigs.put(task.taskId, task.getOverrideConfiguration());
Andrii Kulian1e32e022016-09-16 15:29:34 -07004769 mTmpBounds.put(task.taskId, task.mBounds);
4770 if (tempTaskInsetBounds != null) {
4771 mTmpInsetBounds.put(task.taskId, tempTaskInsetBounds);
4772 }
4773 }
4774
Wale Ogunwale1666e312016-12-16 11:27:18 -08004775 mFullscreen = mWindowContainerController.resize(bounds, mTmpConfigs, mTmpBounds,
Andrii Kulian1e32e022016-09-16 15:29:34 -07004776 mTmpInsetBounds);
Wale Ogunwale1666e312016-12-16 11:27:18 -08004777 setBounds(bounds);
Andrii Kulian1e32e022016-09-16 15:29:34 -07004778 }
4779
4780
4781 /**
4782 * Adjust bounds to stay within stack bounds.
4783 *
4784 * Since bounds might be outside of stack bounds, this method tries to move the bounds in a way
4785 * that keep them unchanged, but be contained within the stack bounds.
4786 *
4787 * @param bounds Bounds to be adjusted.
4788 * @param stackBounds Bounds within which the other bounds should remain.
4789 */
4790 private static void fitWithinBounds(Rect bounds, Rect stackBounds) {
4791 if (stackBounds == null || stackBounds.contains(bounds)) {
4792 return;
4793 }
4794
4795 if (bounds.left < stackBounds.left || bounds.right > stackBounds.right) {
4796 final int maxRight = stackBounds.right
4797 - (stackBounds.width() / FIT_WITHIN_BOUNDS_DIVIDER);
4798 int horizontalDiff = stackBounds.left - bounds.left;
4799 if ((horizontalDiff < 0 && bounds.left >= maxRight)
4800 || (bounds.left + horizontalDiff >= maxRight)) {
4801 horizontalDiff = maxRight - bounds.left;
4802 }
4803 bounds.left += horizontalDiff;
4804 bounds.right += horizontalDiff;
4805 }
4806
4807 if (bounds.top < stackBounds.top || bounds.bottom > stackBounds.bottom) {
4808 final int maxBottom = stackBounds.bottom
4809 - (stackBounds.height() / FIT_WITHIN_BOUNDS_DIVIDER);
4810 int verticalDiff = stackBounds.top - bounds.top;
4811 if ((verticalDiff < 0 && bounds.top >= maxBottom)
4812 || (bounds.top + verticalDiff >= maxBottom)) {
4813 verticalDiff = maxBottom - bounds.top;
4814 }
4815 bounds.top += verticalDiff;
4816 bounds.bottom += verticalDiff;
4817 }
4818 }
4819
Craig Mautnercae015f2013-02-08 14:31:27 -08004820 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004821 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4822 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4823 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4824 final ActivityRecord r = activities.get(activityNdx);
4825 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004826 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004827 }
4828 if (r.fullscreen && !r.finishing) {
4829 return false;
4830 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004831 }
4832 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004833 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004834 if (r == null) {
4835 return false;
4836 }
4837 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4838 + " would have returned true for r=" + r);
4839 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004840 }
4841
4842 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004843 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4844 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4845 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4846 final ActivityRecord r = activities.get(activityNdx);
4847 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004848 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004849 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004850 }
4851 }
4852 }
4853
Wale Ogunwale540e1232015-05-01 15:35:39 -07004854 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4855 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004856 boolean didSomething = false;
4857 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004858 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004859 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4860 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4861 int numActivities = activities.size();
4862 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4863 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004864 final boolean sameComponent =
4865 (r.packageName.equals(packageName) && (filterByClasses == null
4866 || filterByClasses.contains(r.realActivity.getClassName())))
4867 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004868 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Bryce Leeaf691c02017-03-20 14:20:22 -07004869 && (sameComponent || r.getTask() == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004870 && (r.app == null || evenPersistent || !r.app.persistent)) {
4871 if (!doit) {
4872 if (r.finishing) {
4873 // If this activity is just finishing, then it is not
4874 // interesting as far as something to stop.
4875 continue;
4876 }
4877 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004878 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004879 if (r.isHomeActivity()) {
4880 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4881 Slog.i(TAG, "Skip force-stop again " + r);
4882 continue;
4883 } else {
4884 homeActivity = r.realActivity;
4885 }
4886 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004887 didSomething = true;
4888 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004889 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004890 if (r.app != null) {
4891 r.app.removed = true;
4892 }
4893 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004894 }
Bryce Leeaf691c02017-03-20 14:20:22 -07004895 lastTask = r.getTask();
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004896 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4897 true)) {
4898 // r has been deleted from mActivities, accommodate.
4899 --numActivities;
4900 --activityNdx;
4901 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004902 }
4903 }
4904 }
4905 return didSomething;
4906 }
4907
Dianne Hackborn09233282014-04-30 11:33:59 -07004908 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004909 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4910 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004911 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004912 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004913 if (task.getTopActivity() == null) {
4914 continue;
4915 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004916 ActivityRecord r = null;
4917 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004918 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004919 int numActivities = 0;
4920 int numRunning = 0;
4921 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004922 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004923 continue;
4924 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004925 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004926 tmp = activities.get(activityNdx);
4927 if (tmp.finishing) {
4928 continue;
4929 }
4930 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004931
Craig Mautneraab647e2013-02-28 16:31:36 -08004932 // Initialize state for next task if needed.
4933 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4934 top = r;
4935 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004936 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004937
4938 // Add 'r' into the current task.
4939 numActivities++;
4940 if (r.app != null && r.app.thread != null) {
4941 numRunning++;
4942 }
4943
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004944 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004945 TAG, r.intent.getComponent().flattenToShortString()
Bryce Leeaf691c02017-03-20 14:20:22 -07004946 + ": task=" + r.getTask());
Craig Mautneraab647e2013-02-28 16:31:36 -08004947 }
4948
4949 RunningTaskInfo ci = new RunningTaskInfo();
4950 ci.id = task.taskId;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07004951 ci.stackId = mStackId;
Craig Mautneraab647e2013-02-28 16:31:36 -08004952 ci.baseActivity = r.intent.getComponent();
4953 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004954 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004955 if (focusedStack && topTask) {
4956 // Give the latest time to ensure foreground task can be sorted
4957 // at the first, because lastActiveTime of creating task is 0.
4958 ci.lastActiveTime = System.currentTimeMillis();
4959 topTask = false;
4960 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004961
Bryce Leeaf691c02017-03-20 14:20:22 -07004962 if (top.getTask() != null) {
4963 ci.description = top.getTask().lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004964 }
4965 ci.numActivities = numActivities;
4966 ci.numRunning = numRunning;
Winson Chungd3395382016-12-13 11:49:09 -08004967 ci.supportsSplitScreenMultiWindow = task.supportsSplitScreen();
Jorim Jaggi29379ec2016-04-11 23:43:42 -07004968 ci.resizeMode = task.mResizeMode;
Craig Mautneraab647e2013-02-28 16:31:36 -08004969 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004970 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004971 }
4972
Andrii Kulian21713ac2016-10-12 22:05:05 -07004973 void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004974 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004975 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004976 if (top >= 0) {
4977 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4978 int activityTop = activities.size() - 1;
Dianne Hackborn354736e2016-08-22 17:00:05 -07004979 if (activityTop >= 0) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004980 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4981 "unhandled-back", true);
4982 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004983 }
4984 }
4985
Craig Mautner6b74cb52013-09-27 17:02:21 -07004986 /**
4987 * Reset local parameters because an app's activity died.
4988 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004989 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004990 */
4991 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004992 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004993 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004994 "App died while pausing: " + mPausingActivity);
4995 mPausingActivity = null;
4996 }
4997 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4998 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004999 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07005000 }
5001
Craig Mautner19091252013-10-05 00:03:53 -07005002 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07005003 }
5004
Craig Mautnercae015f2013-02-08 14:31:27 -08005005 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08005006 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5007 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5008 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5009 final ActivityRecord r = activities.get(activityNdx);
5010 if (r.app == app) {
5011 Slog.w(TAG, " Force finishing activity "
5012 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07005013 // Force the destroy to skip right to removal.
5014 r.app = null;
5015 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08005016 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005017 }
5018 }
5019 }
5020
Dianne Hackborn390517b2013-05-30 15:03:32 -07005021 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005022 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07005023 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08005024 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5025 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07005026 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
5027 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005028 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07005029 " Task id #" + task.taskId + "\n" +
5030 " mFullscreen=" + task.mFullscreen + "\n" +
5031 " mBounds=" + task.mBounds + "\n" +
Andrii Kulianf66a83d2016-05-17 12:17:44 -07005032 " mMinWidth=" + task.mMinWidth + "\n" +
5033 " mMinHeight=" + task.mMinHeight + "\n" +
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07005034 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07005035 if (printed) {
5036 header = null;
5037 }
Craig Mautneraab647e2013-02-28 16:31:36 -08005038 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07005039 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08005040 }
5041
5042 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
Winson Chung6998bc42017-02-28 17:07:05 -08005043 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautnercae015f2013-02-08 14:31:27 -08005044
5045 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005046 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5047 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08005048 }
5049 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08005050 final int top = mTaskHistory.size() - 1;
5051 if (top >= 0) {
5052 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
5053 int listTop = list.size() - 1;
5054 if (listTop >= 0) {
5055 activities.add(list.get(listTop));
5056 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005057 }
5058 } else {
5059 ItemMatcher matcher = new ItemMatcher();
5060 matcher.build(name);
5061
Craig Mautneraab647e2013-02-28 16:31:36 -08005062 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5063 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
5064 if (matcher.match(r1, r1.intent.getComponent())) {
5065 activities.add(r1);
5066 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005067 }
5068 }
5069 }
5070
5071 return activities;
5072 }
5073
5074 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07005075 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08005076
5077 // All activities that came from the package must be
5078 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08005079 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5080 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
5081 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
5082 final ActivityRecord a = activities.get(activityNdx);
5083 if (a.info.packageName.equals(packageName)) {
5084 a.forceNewConfig = true;
5085 if (starting != null && a == starting && a.visible) {
5086 a.startFreezingScreenLocked(starting.app,
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08005087 CONFIG_SCREEN_LAYOUT);
Craig Mautneraab647e2013-02-28 16:31:36 -08005088 }
Craig Mautnercae015f2013-02-08 14:31:27 -08005089 }
5090 }
5091 }
5092
5093 return starting;
5094 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005095
Wale Ogunwale000957c2015-04-03 08:19:12 -07005096 /**
5097 * Removes the input task from this stack.
5098 * @param task to remove.
5099 * @param reason for removal.
Wale Ogunwale06579d62016-04-30 15:29:06 -07005100 * @param mode task removal mode. Either {@link #REMOVE_TASK_MODE_DESTROYING},
5101 * {@link #REMOVE_TASK_MODE_MOVING}, {@link #REMOVE_TASK_MODE_MOVING_TO_TOP}.
Wale Ogunwale000957c2015-04-03 08:19:12 -07005102 */
Wale Ogunwale06579d62016-04-30 15:29:06 -07005103 void removeTask(TaskRecord task, String reason, int mode) {
Bryce Leeaf691c02017-03-20 14:20:22 -07005104 for (ActivityRecord record : task.mActivities) {
5105 onActivityRemovedFromStack(record);
Craig Mautner04a0ea62014-01-13 12:51:26 -08005106 }
5107
Craig Mautnerae7ecab2013-09-18 11:48:14 -07005108 final int taskNdx = mTaskHistory.indexOf(task);
5109 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07005110 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
5111 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
Winson Chung83471632016-12-13 11:02:12 -08005112 if (!nextTask.isOverHomeStack() && !nextTask.isOverAssistantStack()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07005113 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
5114 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07005115 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005116 mTaskHistory.remove(task);
Winson Chungabb433b2017-03-24 09:35:42 -07005117 removeActivitiesFromLRUListLocked(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07005118 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07005119
Wale Ogunwale06579d62016-04-30 15:29:06 -07005120 if (mode == REMOVE_TASK_MODE_DESTROYING && task.mActivities.isEmpty()) {
Amith Yamasani0af6fa72016-01-17 15:36:19 -08005121 // TODO: VI what about activity?
Craig Mautner41db4a72014-05-07 17:20:56 -07005122 final boolean isVoiceSession = task.voiceSession != null;
5123 if (isVoiceSession) {
5124 try {
5125 task.voiceSession.taskFinished(task.intent, task.taskId);
5126 } catch (RemoteException e) {
5127 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07005128 }
Craig Mautner41db4a72014-05-07 17:20:56 -07005129 if (task.autoRemoveFromRecents() || isVoiceSession) {
5130 // Task creator asked to remove this when done, or this task was a voice
5131 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08005132 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08005133 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07005134 }
Bryce Lee840c5662017-04-13 10:02:51 -07005135
5136 task.removeWindowContainer();
Dianne Hackborn91097de2014-04-04 18:02:06 -07005137 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005138
5139 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07005140 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale06579d62016-04-30 15:29:06 -07005141 // We only need to adjust focused stack if this stack is in focus and we are not in the
5142 // process of moving the task to the top of the stack that will be focused.
5143 if (isOnHomeDisplay() && mode != REMOVE_TASK_MODE_MOVING_TO_TOP
5144 && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005145 String myReason = reason + " leftTaskHistoryEmpty";
Matthew Ngae1ff4f2016-11-10 15:49:14 -08005146 if (mFullscreen || !adjustFocusToNextFocusableStackLocked(myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07005147 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08005148 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005149 }
Craig Mautner593a4e62014-01-15 17:55:51 -08005150 if (mStacks != null) {
5151 mStacks.remove(this);
5152 mStacks.add(0, this);
5153 }
Matthew Ngae1ff4f2016-11-10 15:49:14 -08005154 if (!isHomeOrRecentsStack()) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07005155 remove();
Wale Ogunwale49853bf2015-02-23 09:24:42 -08005156 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08005157 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07005158
Andrii Kulian02b7a832016-10-06 23:11:56 -07005159 task.setStack(null);
Winson Chungc81c0ce2017-03-17 12:27:30 -07005160
5161 // Notify if a task from the pinned stack is being removed (or moved depending on the mode)
5162 if (mStackId == PINNED_STACK_ID) {
5163 mService.mTaskChangeNotificationController.notifyActivityUnpinned();
5164 }
Craig Mautner0247fc82013-02-28 14:32:06 -08005165 }
5166
Dianne Hackborn91097de2014-04-04 18:02:06 -07005167 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
5168 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
Wale Ogunwale72919d22016-12-08 18:58:50 -08005169 boolean toTop, int type) {
Craig Mautner21d24a22014-04-23 11:45:37 -07005170 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
Wale Ogunwale72919d22016-12-08 18:58:50 -08005171 voiceInteractor, type);
Chong Zhang0fa656b2015-08-31 15:17:21 -07005172 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08005173 addTask(task, toTop, "createTaskRecord");
Jorim Jaggife762342016-10-13 14:33:27 +02005174 final boolean isLockscreenShown =
5175 mService.mStackSupervisor.mKeyguardController.isKeyguardShowing();
Andrii Kulian2e751b82016-03-16 16:59:32 -07005176 if (!layoutTaskInStack(task, info.windowLayout) && mBounds != null && task.isResizeable()
Chong Zhang75b37202015-12-04 14:16:36 -08005177 && !isLockscreenShown) {
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07005178 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07005179 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005180 task.createWindowContainer(toTop, (info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08005181 return task;
5182 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08005183
Andrii Kulian2e751b82016-03-16 16:59:32 -07005184 boolean layoutTaskInStack(TaskRecord task, ActivityInfo.WindowLayout windowLayout) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08005185 if (mTaskPositioner == null) {
5186 return false;
5187 }
Andrii Kulian2e751b82016-03-16 16:59:32 -07005188 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, windowLayout);
Wale Ogunwale935e5022015-11-10 12:36:10 -08005189 return true;
5190 }
5191
Craig Mautnerc00204b2013-03-05 15:02:14 -08005192 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08005193 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005194 }
5195
Wale Ogunwale5f986092015-12-04 15:35:38 -08005196 void addTask(final TaskRecord task, final boolean toTop, String reason) {
Winson Chung5af42fc2017-03-24 17:11:33 -07005197 addTask(task, toTop ? MAX_VALUE : 0, true /* schedulePictureInPictureModeChange */, reason);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005198 if (toTop) {
5199 // TODO: figure-out a way to remove this call.
Wale Ogunwale1666e312016-12-16 11:27:18 -08005200 mWindowContainerController.positionChildAtTop(task.getWindowContainerController(),
5201 true /* includingParents */);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005202 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005203 }
5204
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005205 // TODO: This shouldn't allow automatic reparenting. Remove the call to preAddTask and deal
5206 // with the fall-out...
Winson Chung5af42fc2017-03-24 17:11:33 -07005207 void addTask(final TaskRecord task, int position, boolean schedulePictureInPictureModeChange,
5208 String reason) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005209 // TODO: Is this remove really needed? Need to look into the call path for the other addTask
5210 mTaskHistory.remove(task);
5211 position = getAdjustedPositionForTask(task, position, null /* starting */);
5212 final boolean toTop = position >= mTaskHistory.size();
Wale Ogunwale06579d62016-04-30 15:29:06 -07005213 final ActivityStack prevStack = preAddTask(task, reason, toTop);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005214
Andrii Kulianfb1bf692017-01-17 11:17:34 -08005215 mTaskHistory.add(position, task);
Andrii Kulian02b7a832016-10-06 23:11:56 -07005216 task.setStack(this);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005217
Craig Mautnerc00204b2013-03-05 15:02:14 -08005218 if (toTop) {
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005219 updateTaskReturnToForTopInsertion(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005220 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005221
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005222 updateTaskMovement(task, toTop);
5223
Winson Chung5af42fc2017-03-24 17:11:33 -07005224 postAddTask(task, prevStack, schedulePictureInPictureModeChange);
Craig Mautnerc00204b2013-03-05 15:02:14 -08005225 }
5226
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005227 void positionChildAt(TaskRecord task, int index) {
5228
5229 if (task.getStack() != this) {
5230 throw new IllegalArgumentException("AS.positionChildAt: task=" + task
5231 + " is not a child of stack=" + this + " current parent=" + task.getStack());
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005232 }
5233
5234 task.updateOverrideConfigurationForStack(this);
5235
Jorim Jaggi023da532016-04-20 22:42:32 -07005236 final ActivityRecord topRunningActivity = task.topRunningActivityLocked();
Andrii Kulian02b7a832016-10-06 23:11:56 -07005237 final boolean wasResumed = topRunningActivity == task.getStack().mResumedActivity;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005238 insertTaskAtPosition(task, index);
Andrii Kulianfb1bf692017-01-17 11:17:34 -08005239 task.setStack(this);
Winson Chung5af42fc2017-03-24 17:11:33 -07005240 postAddTask(task, null /* prevStack */, true /* schedulePictureInPictureModeChange */);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -08005241
Jorim Jaggi023da532016-04-20 22:42:32 -07005242 if (wasResumed) {
5243 if (mResumedActivity != null) {
5244 Log.wtf(TAG, "mResumedActivity was already set when moving mResumedActivity from"
5245 + " other stack to this stack mResumedActivity=" + mResumedActivity
5246 + " other mResumedActivity=" + topRunningActivity);
5247 }
5248 mResumedActivity = topRunningActivity;
5249 }
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08005250
5251 // The task might have already been running and its visibility needs to be synchronized with
5252 // the visibility of the stack / windows.
5253 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
5254 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwale5f986092015-12-04 15:35:38 -08005255 }
5256
Wale Ogunwale06579d62016-04-30 15:29:06 -07005257 private ActivityStack preAddTask(TaskRecord task, String reason, boolean toTop) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07005258 final ActivityStack prevStack = task.getStack();
Wale Ogunwale5f986092015-12-04 15:35:38 -08005259 if (prevStack != null && prevStack != this) {
Wale Ogunwale06579d62016-04-30 15:29:06 -07005260 prevStack.removeTask(task, reason,
5261 toTop ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005262 }
5263 return prevStack;
5264 }
5265
Winson Chung5af42fc2017-03-24 17:11:33 -07005266 /**
5267 * @param schedulePictureInPictureModeChange specifies whether or not to schedule the PiP mode
5268 * change. Callers may set this to false if they are explicitly scheduling PiP mode
5269 * changes themselves, like during the PiP animation
5270 */
5271 private void postAddTask(TaskRecord task, ActivityStack prevStack,
5272 boolean schedulePictureInPictureModeChange) {
5273 if (schedulePictureInPictureModeChange && prevStack != null) {
5274 mStackSupervisor.scheduleUpdatePictureInPictureModeIfNeeded(task, prevStack);
Wale Ogunwale5f986092015-12-04 15:35:38 -08005275 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07005276 try {
5277 task.voiceSession.taskStarted(task.intent, task.taskId);
5278 } catch (RemoteException e) {
5279 }
5280 }
5281 }
5282
Winson Chungc2baac02017-01-11 13:34:47 -08005283 void moveToFrontAndResumeStateIfNeeded(ActivityRecord r, boolean moveToFront, boolean setResume,
5284 boolean setPause, String reason) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08005285 if (!moveToFront) {
5286 return;
Wale Ogunwale079a0042015-10-24 11:44:07 -07005287 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08005288
5289 // If the activity owns the last resumed activity, transfer that together,
5290 // so that we don't resume the same activity again in the new stack.
5291 // Apps may depend on onResume()/onPause() being called in pairs.
5292 if (setResume) {
5293 mResumedActivity = r;
Winson Chungabb433b2017-03-24 09:35:42 -07005294 updateLRUListLocked(r);
Wale Ogunwaled046a012015-12-24 13:05:59 -08005295 }
Winson Chungc2baac02017-01-11 13:34:47 -08005296 // If the activity was previously pausing, then ensure we transfer that as well
5297 if (setPause) {
5298 mPausingActivity = r;
Winson Chung4dabf232017-01-25 13:25:22 -08005299 schedulePauseTimeout(r);
Winson Chungc2baac02017-01-11 13:34:47 -08005300 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08005301 // Move the stack in which we are placing the activity to the front. The call will also
5302 // make sure the activity focus is set.
5303 moveToFront(reason);
Wale Ogunwale079a0042015-10-24 11:44:07 -07005304 }
5305
Craig Mautnerc00204b2013-03-05 15:02:14 -08005306 public int getStackId() {
5307 return mStackId;
5308 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07005309
5310 @Override
5311 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07005312 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
5313 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07005314 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08005315
Craig Mautner15df08a2015-04-01 12:17:18 -07005316 void onLockTaskPackagesUpdatedLocked() {
5317 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5318 mTaskHistory.get(taskNdx).setLockTaskAuth();
5319 }
5320 }
skuhne@google.com1b974dc2016-12-09 13:41:29 -08005321
5322 void executeAppTransition(ActivityOptions options) {
5323 mWindowManager.executeAppTransition();
5324 mNoAnimActivities.clear();
5325 ActivityOptions.abort(options);
5326 }
David Stevensf62360c2017-03-16 19:00:20 -07005327
5328 boolean shouldSleepActivities() {
5329 final ActivityStackSupervisor.ActivityDisplay display = getDisplay();
5330 return display != null ? display.isSleeping() : mService.isSleepingLocked();
5331 }
5332
5333 boolean shouldSleepOrShutDownActivities() {
5334 return shouldSleepActivities() || mService.isShuttingDownLocked();
5335 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07005336}