blob: ec37667a37c2dce5b5a17410e7057509120f898f [file] [log] [blame]
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.StackId.HOME_STACK_ID;
23import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080024import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
25import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
26import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
27import static android.content.pm.ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
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 Ogunwale3fcb4a82015-04-06 14:00:13 -070030
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080031import static android.content.res.Configuration.SCREENLAYOUT_UNDEFINED;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080032import static com.android.server.am.ActivityManagerDebugConfig.*;
Chong Zhang75b37202015-12-04 14:16:36 -080033import static com.android.server.am.ActivityManagerService.LOCK_SCREEN_SHOWN;
Craig Mautner84984fa2014-06-19 11:19:20 -070034import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
35import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070036
Wale Ogunwale39381972015-12-17 17:15:29 -080037import static com.android.server.am.ActivityStackSupervisor.FindTaskResult;
Wale Ogunwale040b4702015-08-06 18:10:50 -070038import static com.android.server.am.ActivityStackSupervisor.MOVING;
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -070039import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Wale Ogunwale040b4702015-08-06 18:10:50 -070040
Winsonc809cbb2015-11-02 12:06:15 -080041import android.graphics.Point;
Wale Ogunwale706ed792015-08-02 10:29:44 -070042import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070043import android.util.ArraySet;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070044
Dianne Hackborn91097de2014-04-04 18:02:06 -070045import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080046import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070047import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070048import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080049import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080050import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080051import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080052import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070053import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054
55import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070056import android.app.ActivityManager;
Wale Ogunwale3797c222015-10-27 14:21:58 -070057import android.app.ActivityManager.StackId;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070058import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080060import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080062import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070064import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070065import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080068import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080069import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070070import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070071import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080072import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070073import android.os.Handler;
74import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090075import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070076import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070077import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.os.RemoteException;
79import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080080import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070081import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070082import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070083import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070084import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070085import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
Craig Mautnercae015f2013-02-08 14:31:27 -080087import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080088import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070089import java.lang.ref.WeakReference;
90import java.util.ArrayList;
91import java.util.Iterator;
92import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080093import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070094import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070095
96/**
97 * State and management of a single stack of activities.
98 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070099final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800100
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800101 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700102 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
103 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800104 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700105 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700106 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700107 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700108 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700109 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700110 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
111 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700112 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700113 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700114 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
115 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
116 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
117 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
118 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700119
120 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800121
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700122 // Ticks during which we check progress while waiting for an app to launch.
123 static final int LAUNCH_TICK = 500;
124
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700125 // How long we wait until giving up on the last activity to pause. This
126 // is short because it directly impacts the responsiveness of starting the
127 // next activity.
128 static final int PAUSE_TIMEOUT = 500;
129
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700130 // How long we wait for the activity to tell us it has stopped before
131 // giving up. This is a good amount of time because we really need this
132 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700133 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700134
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700135 // How long we wait until giving up on an activity telling us it has
136 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700137 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800138
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700139 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800140 // disabled.
141 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800142
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700143 // How long between activity launches that we consider safe to not warn
144 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700145 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800146
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700147 // Set to false to disable the preview that is shown while a new activity
148 // is being started.
149 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800150
Craig Mautner5eda9b32013-07-02 11:58:16 -0700151 // How long to wait for all background Activities to redraw following a call to
152 // convertToTranslucent().
153 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
154
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800155 // How many activities have to be scheduled to stop to force a stop pass.
156 private static final int MAX_STOPPING_TO_FORCE = 3;
157
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700158 enum ActivityState {
159 INITIALIZING,
160 RESUMED,
161 PAUSING,
162 PAUSED,
163 STOPPING,
164 STOPPED,
165 FINISHING,
166 DESTROYING,
167 DESTROYED
168 }
169
Filip Gruszczynski0e381e22016-01-14 16:31:33 -0800170 // Stack is not considered visible.
171 static final int STACK_INVISIBLE = 0;
172 // Stack is considered visible
173 static final int STACK_VISIBLE = 1;
174 // Stack is considered visible, but only becuase it has activity that is visible behind other
175 // activities and there is a specific combination of stacks.
176 static final int STACK_VISIBLE_ACTIVITY_BEHIND = 2;
177
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700178 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700179 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800180 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800181
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700182 /**
183 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800184 * running) activities. It contains #TaskRecord objects.
185 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800186 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800187
188 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800189 * Used for validating app tokens with window manager.
190 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800191 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800192
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700193 /**
194 * List of running activities, sorted by recent usage.
195 * The first entry in the list is the least recently used.
196 * It contains HistoryRecord objects.
197 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800198 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700199
200 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700201 * Animations that for the current transition have requested not to
202 * be considered for the transition animation.
203 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800204 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700205
206 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700207 * When we are in the process of pausing an activity, before starting the
208 * next one, this variable holds the activity that is currently being paused.
209 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800210 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700211
212 /**
213 * This is the last activity that we put into the paused state. This is
214 * used to determine if we need to do an activity transition while sleeping,
215 * when we normally hold the top activity paused.
216 */
217 ActivityRecord mLastPausedActivity = null;
218
219 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700220 * Activities that specify No History must be removed once the user navigates away from them.
221 * If the device goes to sleep with such an activity in the paused state then we save it here
222 * and finish it later if another activity replaces it on wakeup.
223 */
224 ActivityRecord mLastNoHistoryActivity = null;
225
226 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700227 * Current activity that is resumed, or null if there is none.
228 */
229 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800230
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700231 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700232 * This is the last activity that has been started. It is only used to
233 * identify when multiple activities are started at once so that the user
234 * can be warned they may not be in the activity they think they are.
235 */
236 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800237
Craig Mautner5eda9b32013-07-02 11:58:16 -0700238 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
239 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
240 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
241 // Activity in mTranslucentActivityWaiting is notified via
242 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
243 // background activity being drawn then the same call will be made with a true value.
244 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700245 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700246
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700247 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700248 * Set when we know we are going to be calling updateConfiguration()
249 * soon, so want to skip intermediate config checks.
250 */
251 boolean mConfigWillChange;
252
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700253 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800254 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700255 // Current bounds of the stack or null if fullscreen.
256 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800257
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700258 long mLaunchStartTime = 0;
259 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800260
Craig Mautner858d8a62013-04-23 17:08:34 -0700261 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700262
Craig Mautnerc00204b2013-03-05 15:02:14 -0800263 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800264 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800265 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
266 ArrayList<ActivityStack> mStacks;
267 /** The attached Display's unique identifier, or -1 if detached */
268 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800269
Craig Mautner27084302013-03-25 08:05:25 -0700270 /** Run all ActivityStacks through this */
271 final ActivityStackSupervisor mStackSupervisor;
272
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700273 private final LaunchingTaskPositioner mTaskPositioner;
274
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700275 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700276 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
277 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
278 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
279 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700280 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700281 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700282 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700283
284 static class ScheduleDestroyArgs {
285 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700286 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700287 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700288 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700289 mReason = reason;
290 }
291 }
292
Zoran Marcetaf958b322012-08-09 20:27:12 +0900293 final Handler mHandler;
294
295 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800296
Craig Mautnerc8143c62013-09-03 12:15:57 -0700297 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900298 super(looper);
299 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700300
Zoran Marcetaf958b322012-08-09 20:27:12 +0900301 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700302 public void handleMessage(Message msg) {
303 switch (msg.what) {
304 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800305 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700306 // We don't at this point know if the activity is fullscreen,
307 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800308 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700309 synchronized (mService) {
310 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700311 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700312 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700313 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800314 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700315 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700316 case LAUNCH_TICK_MSG: {
317 ActivityRecord r = (ActivityRecord)msg.obj;
318 synchronized (mService) {
319 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700320 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700321 }
322 }
323 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700324 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800325 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700326 // We don't at this point know if the activity is fullscreen,
327 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800328 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800329 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800330 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800331 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700332 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700333 case STOP_TIMEOUT_MSG: {
334 ActivityRecord r = (ActivityRecord)msg.obj;
335 // We don't at this point know if the activity is fullscreen,
336 // so we need to be conservative and assume it isn't.
337 Slog.w(TAG, "Activity stop timeout for " + r);
338 synchronized (mService) {
339 if (r.isInHistory()) {
340 activityStoppedLocked(r, null, null, null);
341 }
342 }
343 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700344 case DESTROY_ACTIVITIES_MSG: {
345 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
346 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700347 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700348 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700349 } break;
350 case TRANSLUCENT_TIMEOUT_MSG: {
351 synchronized (mService) {
352 notifyActivityDrawnLocked(null);
353 }
354 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700355 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700356 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700357 final ActivityRecord r = getVisibleBehindActivity();
358 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700359 if (r != null) {
360 mService.killAppAtUsersRequest(r.app, null);
361 }
362 }
363 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700364 }
365 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800366 }
367
Craig Mautner34b73df2014-01-12 21:11:08 -0800368 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800369 int count = 0;
370 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
371 count += mTaskHistory.get(taskNdx).mActivities.size();
372 }
373 return count;
374 }
375
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800376 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
377 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800378 mActivityContainer = activityContainer;
379 mStackSupervisor = activityContainer.getOuter();
380 mService = mStackSupervisor.mService;
381 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
382 mWindowManager = mService.mWindowManager;
383 mStackId = activityContainer.mStackId;
Fyodor Kupolovf63b89c2015-10-27 18:08:56 -0700384 mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800385 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700386 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
387 ? new LaunchingTaskPositioner() : null;
388 }
389
390 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
391 mDisplayId = activityDisplay.mDisplayId;
392 mStacks = activityDisplay.mStacks;
393 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
394 mFullscreen = mBounds == null;
395 if (mTaskPositioner != null) {
396 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
397 mTaskPositioner.configure(mBounds);
398 }
Wale Ogunwale961f4852016-02-01 20:25:54 -0800399
400 if (mStackId == DOCKED_STACK_ID) {
401 // If we created a docked stack we want to resize it so it resizes all other stacks
402 // in the system.
403 mStackSupervisor.resizeDockedStackLocked(
404 mBounds, null, null, null, null, PRESERVE_WINDOWS);
405 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700406 }
407
408 void detachDisplay() {
409 mDisplayId = Display.INVALID_DISPLAY;
410 mStacks = null;
411 if (mTaskPositioner != null) {
412 mTaskPositioner.reset();
413 }
414 mWindowManager.detachStack(mStackId);
415 }
416
Winsonc809cbb2015-11-02 12:06:15 -0800417 public void getDisplaySize(Point out) {
418 mActivityContainer.mActivityDisplay.mDisplay.getSize(out);
419 }
420
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700421 void setBounds(Rect bounds) {
422 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700423 if (mTaskPositioner != null) {
424 mTaskPositioner.configure(bounds);
425 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700426 }
Craig Mautner5962b122012-10-05 14:45:52 -0700427
Amith Yamasani734983f2014-03-04 16:48:05 -0800428 boolean okToShowLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700429 return mStackSupervisor.okToShowLocked(r);
Craig Mautner5962b122012-10-05 14:45:52 -0700430 }
431
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700432 final ActivityRecord topRunningActivityLocked() {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800433 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700434 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Craig Mautner6b74cb52013-09-27 17:02:21 -0700435 if (r != null) {
436 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800437 }
438 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700439 return null;
440 }
441
442 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800443 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
444 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800445 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800446 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
447 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800448 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800449 return r;
450 }
451 }
452 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700453 return null;
454 }
455
456 /**
457 * This is a simplified version of topRunningActivityLocked that provides a number of
458 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800459 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700460 * @param token If non-null, any history records matching this token will be skipped.
461 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800462 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700463 * @return Returns the HistoryRecord of the next activity on the stack.
464 */
465 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800466 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
467 TaskRecord task = mTaskHistory.get(taskNdx);
468 if (task.taskId == taskId) {
469 continue;
470 }
471 ArrayList<ActivityRecord> activities = task.mActivities;
472 for (int i = activities.size() - 1; i >= 0; --i) {
473 final ActivityRecord r = activities.get(i);
474 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800475 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800476 return r;
477 }
478 }
479 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700480 return null;
481 }
482
Craig Mautner8849a5e2013-04-02 16:41:03 -0700483 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700484 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
485 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700486 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
487 final ActivityRecord r = activities.get(activityNdx);
488 if (!r.finishing) {
489 return r;
490 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700491 }
492 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700493 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700494 }
495
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700496 final TaskRecord topTask() {
497 final int size = mTaskHistory.size();
498 if (size > 0) {
499 return mTaskHistory.get(size - 1);
500 }
501 return null;
502 }
503
Craig Mautnerd2328952013-03-05 12:46:26 -0800504 TaskRecord taskForIdLocked(int id) {
505 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
506 final TaskRecord task = mTaskHistory.get(taskNdx);
507 if (task.taskId == id) {
508 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800509 }
510 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700511 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700512 }
513
Craig Mautnerd2328952013-03-05 12:46:26 -0800514 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700515 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800516 return isInStackLocked(r);
517 }
518
519 ActivityRecord isInStackLocked(ActivityRecord r) {
520 if (r == null) {
521 return null;
522 }
523 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700524 if (task != null && task.stack != null
525 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800526 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800527 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800528 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800529 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800530 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800531 }
532
Craig Mautner2420ead2013-04-01 17:13:20 -0700533 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700534 final boolean hadit = mLRUActivities.remove(r);
535 mLRUActivities.add(r);
536 return hadit;
537 }
538
Craig Mautnerde4ef022013-04-07 19:01:33 -0700539 final boolean isHomeStack() {
540 return mStackId == HOME_STACK_ID;
541 }
542
Winson Chung0583d3d2015-12-18 10:03:12 -0500543 final boolean isDockedStack() {
544 return mStackId == DOCKED_STACK_ID;
545 }
546
547 final boolean isPinnedStack() {
548 return mStackId == PINNED_STACK_ID;
549 }
550
Craig Mautnere0a38842013-12-16 16:14:02 -0800551 final boolean isOnHomeDisplay() {
552 return isAttached() &&
553 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
554 }
555
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700556 void moveToFront(String reason) {
557 moveToFront(reason, null);
558 }
559
560 /**
561 * @param reason The reason for moving the stack to the front.
562 * @param task If non-null, the task will be moved to the top of the stack.
563 * */
564 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700565 if (!isAttached()) {
566 return;
567 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700568
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700569 mStacks.remove(this);
570 int addIndex = mStacks.size();
571
572 if (addIndex > 0) {
573 final ActivityStack topStack = mStacks.get(addIndex - 1);
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800574 if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
575 // If the top stack is always on top, we move this stack just below it.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700576 addIndex--;
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800577 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700578 }
579
580 mStacks.add(addIndex, this);
581
582 // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
583 if (isOnHomeDisplay()) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800584 mStackSupervisor.setFocusStackUnchecked(reason, this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700585 }
586 if (task != null) {
587 insertTaskAtTop(task, null);
588 } else {
589 task = topTask();
590 }
591 if (task != null) {
592 mWindowManager.moveTaskToTop(task.taskId);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800593 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800594 }
595
Wale Ogunwaled046a012015-12-24 13:05:59 -0800596 boolean isFocusable() {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800597 if (StackId.canReceiveKeys(mStackId)) {
598 return true;
599 }
600 // The stack isn't focusable. See if its top activity is focusable to force focus on the
601 // stack.
602 final ActivityRecord r = topRunningActivityLocked();
603 return r != null && r.isFocusable();
Wale Ogunwaled046a012015-12-24 13:05:59 -0800604 }
605
Craig Mautnere0a38842013-12-16 16:14:02 -0800606 final boolean isAttached() {
607 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800608 }
609
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700610 /**
Wale Ogunwale39381972015-12-17 17:15:29 -0800611 * Returns the top activity in any existing task matching the given Intent in the input result.
612 * Returns null if no such task is found.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700613 */
Wale Ogunwale39381972015-12-17 17:15:29 -0800614 void findTaskLocked(ActivityRecord target, FindTaskResult result) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700615 Intent intent = target.intent;
616 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700617 ComponentName cls = intent.getComponent();
618 if (info.targetActivity != null) {
619 cls = new ComponentName(info.packageName, info.targetActivity);
620 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700621 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700622 boolean isDocument = intent != null & intent.isDocument();
623 // If documentData is non-null then it must match the existing task data.
624 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800625
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700626 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800627 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
628 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700629 if (task.voiceSession != null) {
630 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700631 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700632 continue;
633 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700634 if (task.userId != userId) {
635 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700636 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700637 continue;
638 }
Craig Mautner000f0022013-02-26 15:04:29 -0800639 final ActivityRecord r = task.getTopActivity();
640 if (r == null || r.finishing || r.userId != userId ||
641 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700642 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800643 continue;
644 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700645 if (r.mActivityType != target.mActivityType) {
646 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
647 continue;
648 }
Craig Mautner000f0022013-02-26 15:04:29 -0800649
Craig Mautnerd00f4742014-03-12 14:17:26 -0700650 final Intent taskIntent = task.intent;
651 final Intent affinityIntent = task.affinityIntent;
652 final boolean taskIsDocument;
653 final Uri taskDocumentData;
654 if (taskIntent != null && taskIntent.isDocument()) {
655 taskIsDocument = true;
656 taskDocumentData = taskIntent.getData();
657 } else if (affinityIntent != null && affinityIntent.isDocument()) {
658 taskIsDocument = true;
659 taskDocumentData = affinityIntent.getData();
660 } else {
661 taskIsDocument = false;
662 taskDocumentData = null;
663 }
664
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700665 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700666 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700667 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700668 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Wale Ogunwale39381972015-12-17 17:15:29 -0800669 if (!isDocument && !taskIsDocument
670 && result.r == null && task.canMatchRootAffinity()) {
Dianne Hackborn79228822014-09-16 11:11:23 -0700671 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwale39381972015-12-17 17:15:29 -0800672 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
673 // It is possible for multiple tasks to have the same root affinity especially
674 // if they are in separate stacks. We save off this candidate, but keep looking
675 // to see if there is a better candidate.
676 result.r = r;
677 result.matchedByRootAffinity = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700678 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700679 } else if (taskIntent != null && taskIntent.getComponent() != null &&
680 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700681 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700682 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800683 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700684 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
685 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800686 result.r = r;
687 result.matchedByRootAffinity = false;
688 break;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700689 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
690 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700691 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700692 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800693 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700694 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
695 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800696 result.r = r;
697 result.matchedByRootAffinity = false;
698 break;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700699 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700700 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700701 }
702
703 /**
704 * Returns the first activity (starting from the top of the stack) that
705 * is the same as the given activity. Returns null if no such activity
706 * is found.
707 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700708 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700709 ComponentName cls = intent.getComponent();
710 if (info.targetActivity != null) {
711 cls = new ComponentName(info.packageName, info.targetActivity);
712 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700713 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700714
Craig Mautner000f0022013-02-26 15:04:29 -0800715 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700716 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700717 final boolean notCurrentUserTask =
718 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700719 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700720
Craig Mautner000f0022013-02-26 15:04:29 -0800721 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
722 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700723 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700724 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700725 }
Craig Mautner000f0022013-02-26 15:04:29 -0800726 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700727 return r;
728 }
729 }
730 }
731
732 return null;
733 }
734
Amith Yamasani742a6712011-05-04 14:49:28 -0700735 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700736 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700737 */
Craig Mautner93529a42013-10-04 15:03:13 -0700738 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800739 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700740 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800741 }
742 mCurrentUser = userId;
743
744 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800745 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800746 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700747 final TaskRecord task = mTaskHistory.get(i);
748
749 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
750 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700751 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700752 || task.topRunningActivityLocked() != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700753 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700754 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800755 mTaskHistory.remove(i);
756 mTaskHistory.add(task);
757 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800758 // Use same value for i.
759 } else {
760 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800761 }
762 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700763 if (VALIDATE_TOKENS) {
764 validateAppTokensLocked();
765 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700766 }
767
Craig Mautner2420ead2013-04-01 17:13:20 -0700768 void minimalResumeActivityLocked(ActivityRecord r) {
769 r.state = ActivityState.RESUMED;
Wale Ogunwale5658e4b2016-02-12 12:22:19 -0800770 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
771 + " callers=" + Debug.getCallers(5));
Craig Mautner2420ead2013-04-01 17:13:20 -0700772 mResumedActivity = r;
773 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800774 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700775 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700776 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700777 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700778 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
779 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700780 }
781
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -0800782 void addRecentActivityLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700783 if (r != null) {
784 mRecentTasks.addLocked(r.task);
785 r.task.touchActiveTime();
786 }
787 }
788
Narayan Kamath7829c812015-06-08 17:39:43 +0100789 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700790 if (mFullyDrawnStartTime != 0) {
791 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
792 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100793 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700794 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
795 }
796
797 private void stopFullyDrawnTraceIfNeeded() {
798 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
799 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
800 mFullyDrawnStartTime = 0;
801 }
802 }
803
Craig Mautnere79d42682013-04-01 19:01:53 -0700804 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700805 if (r.displayStartTime == 0) {
806 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
807 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100808 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700809 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700810 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700811 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100812 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700813 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700814 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700815 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800816
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700817 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700818 // Make sure that there is no activity waiting for this to launch.
819 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
820 r.displayStartTime = r.fullyDrawnStartTime = 0;
821 } else {
822 mStackSupervisor.removeTimeoutsForActivityLocked(r);
823 mStackSupervisor.scheduleIdleTimeoutLocked(r);
824 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700825 }
826
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800827 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800828 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800829 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
830 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
831 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
832 activities.get(activityNdx).setSleeping(false);
833 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800834 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800835 if (mPausingActivity != null) {
836 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
837 activityPausedLocked(mPausingActivity.appToken, true);
838 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800839 }
840
Craig Mautner0eea92c2013-05-16 13:35:39 -0700841 /**
842 * @return true if something must be done before going to sleep.
843 */
844 boolean checkReadyForSleepLocked() {
845 if (mResumedActivity != null) {
846 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700847 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
848 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
849 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700850 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700851 return true;
852 }
853 if (mPausingActivity != null) {
854 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700855 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700856 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800857 }
858
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700859 if (hasVisibleBehindActivity()) {
860 // Stop visible behind activity before going to sleep.
Wale Ogunwale1f544be2015-12-17 10:27:23 -0800861 final ActivityRecord r = getVisibleBehindActivity();
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700862 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale1f544be2015-12-17 10:27:23 -0800863 if (DEBUG_STATES) Slog.v(TAG_STATES, "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700864 return true;
865 }
866
Craig Mautner0eea92c2013-05-16 13:35:39 -0700867 return false;
868 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800869
Craig Mautner0eea92c2013-05-16 13:35:39 -0700870 void goToSleep() {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -0700871 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800872
Craig Mautner0eea92c2013-05-16 13:35:39 -0700873 // Make sure any stopped but visible activities are now sleeping.
874 // This ensures that the activity's onStop() is called.
875 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
876 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
877 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
878 final ActivityRecord r = activities.get(activityNdx);
879 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
880 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800881 }
882 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800883 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700884 }
Craig Mautner59c00972012-07-30 12:10:24 -0700885
Winson8b1871d2015-11-20 09:56:20 -0800886 public final Bitmap screenshotActivitiesLocked(ActivityRecord who) {
887 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivitiesLocked: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800888 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700889 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800890 return null;
891 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800892
Winson Chung083baf92014-07-11 10:32:42 -0700893 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700894 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800895 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700896 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700897 return null;
898 }
899
Winson Chung48a10a52014-08-27 14:36:51 -0700900 int w = mService.mThumbnailWidth;
901 int h = mService.mThumbnailHeight;
Winson8b1871d2015-11-20 09:56:20 -0800902 float scale = 1f;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800903 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700904 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Winson8b1871d2015-11-20 09:56:20 -0800905
906 // When this flag is set, we currently take the fullscreen screenshot of the activity
Winson387aac62015-11-25 11:18:56 -0800907 // but scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to
908 // use within SystemUI while keeping memory usage low.
Winson Chungead5c0f2015-12-14 11:18:57 -0500909 if (ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS) {
Winson8b1871d2015-11-20 09:56:20 -0800910 w = h = -1;
Winson387aac62015-11-25 11:18:56 -0800911 scale = 0.5f;
Winson8b1871d2015-11-20 09:56:20 -0800912 }
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800913 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Winson8b1871d2015-11-20 09:56:20 -0800914 w, h, scale);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800915 }
Winson Chung376543b2014-05-21 17:43:28 -0700916 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800917 return null;
918 }
919
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700920 /**
921 * Start pausing the currently resumed activity. It is an error to call this if there
922 * is already an activity being paused or there is no resumed activity.
923 *
924 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
925 * @param uiSleeping True if this is happening with the user interface going to sleep (the
926 * screen turning off).
927 * @param resuming True if this is being called as part of resuming the top activity, so
928 * we shouldn't try to instigate a resume here.
929 * @param dontWait True if the caller does not want to wait for the pause to complete. If
930 * set to true, we will immediately complete the pause here before returning.
931 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
932 * it to tell us when it is done.
933 */
934 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
935 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800936 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800937 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
938 + " state=" + mPausingActivity.state);
939 if (!mService.isSleeping()) {
940 // Avoid recursion among check for sleep and complete pause during sleeping.
941 // Because activity will be paused immediately after resume, just let pause
942 // be completed by the order of activity paused from clients.
943 completePauseLocked(false);
944 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800945 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700946 ActivityRecord prev = mResumedActivity;
947 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700948 if (!resuming) {
949 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
Wale Ogunwaled046a012015-12-24 13:05:59 -0800950 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700951 }
952 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700953 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800954
955 if (mActivityContainer.mParentActivity == null) {
956 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700957 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800958 }
959
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700960 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700961 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700962 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800963 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700964 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700965 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
966 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700967 prev.state = ActivityState.PAUSING;
968 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700969 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700970 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwale979f5ed2015-10-12 11:22:50 -0700971 if (mService.mHasRecents
972 && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Jorim Jaggic2f262b2015-12-07 16:59:10 -0800973 prev.mUpdateTaskThumbnailWhenHidden = true;
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700974 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700975 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700976
977 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800978
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700979 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700980 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700981 try {
982 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700983 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700984 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700985 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800986 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700987 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700988 } catch (Exception e) {
989 // Ignore exception, if process died other code will cleanup.
990 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800991 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700992 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700993 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700994 }
995 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800996 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700997 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700998 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700999 }
1000
1001 // If we are not going to sleep, we want to ensure the device is
1002 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001003 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001004 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001005 }
1006
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001007 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001008 // Have the window manager pause its key dispatching until the new
1009 // activity has started. If we're pausing the activity just because
1010 // the screen is being turned off and the UI is sleeping, don't interrupt
1011 // key dispatch; the same activity will pick it up again on wakeup.
1012 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001013 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001014 } else if (DEBUG_PAUSE) {
1015 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001016 }
1017
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001018 if (dontWait) {
1019 // If the caller said they don't want to wait for the pause, then complete
1020 // the pause now.
1021 completePauseLocked(false);
1022 return false;
1023
1024 } else {
1025 // Schedule a pause timeout in case the app doesn't respond.
1026 // We don't give it much time because this directly impacts the
1027 // responsiveness seen by the user.
1028 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1029 msg.obj = prev;
1030 prev.pauseTime = SystemClock.uptimeMillis();
1031 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001032 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001033 return true;
1034 }
1035
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001036 } else {
1037 // This activity failed to schedule the
1038 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001039 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001040 if (!resuming) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001041 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001042 }
1043 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001044 }
1045 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001046
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001047 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001048 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1049 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001050
Craig Mautnerd2328952013-03-05 12:46:26 -08001051 final ActivityRecord r = isInStackLocked(token);
1052 if (r != null) {
1053 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1054 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001055 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001056 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001057 completePauseLocked(true);
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001058 return;
Craig Mautnerd2328952013-03-05 12:46:26 -08001059 } else {
1060 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1061 r.userId, System.identityHashCode(r), r.shortComponentName,
1062 mPausingActivity != null
1063 ? mPausingActivity.shortComponentName : "(none)");
riddle_hsu9caeef72015-10-20 16:34:05 +08001064 if (r.state == ActivityState.PAUSING) {
1065 r.state = ActivityState.PAUSED;
1066 if (r.finishing) {
1067 if (DEBUG_PAUSE) Slog.v(TAG,
1068 "Executing finish of failed to pause activity: " + r);
1069 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1070 }
louis_chang047dfd42015-04-08 16:35:55 +08001071 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001072 }
1073 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001074 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001075 }
1076
Craig Mautnera0026042014-04-23 11:45:37 -07001077 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1078 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001079 if (r.state != ActivityState.STOPPING) {
1080 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1081 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1082 return;
1083 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001084 if (persistentState != null) {
1085 r.persistentState = persistentState;
1086 mService.notifyTaskPersisterLocked(r.task, false);
1087 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001088 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001089 if (icicle != null) {
1090 // If icicle is null, this is happening due to a timeout, so we
1091 // haven't really saved the state.
1092 r.icicle = icicle;
1093 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001094 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001095 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001096 }
1097 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001098 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001099 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1100 r.stopped = true;
1101 r.state = ActivityState.STOPPED;
Robert Carre12aece2016-02-02 22:43:27 -08001102
1103 mWindowManager.notifyAppStopped(r.appToken);
1104
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001105 if (getVisibleBehindActivity() == r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001106 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001107 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001108 if (r.finishing) {
1109 r.clearOptionsLocked();
1110 } else {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001111 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001112 destroyActivityLocked(r, true, "stop-config");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001113 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001114 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001115 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001116 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001117 }
1118 }
1119 }
1120
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001121 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001122 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001123 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001124
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001125 if (prev != null) {
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001126 final boolean wasStopping = prev.state == ActivityState.STOPPING;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001127 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001128 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001129 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001130 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001131 } else if (prev.app != null) {
Wale Ogunwaled8026642016-02-09 20:40:18 -08001132 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1133 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
Craig Mautner8c14c152015-01-15 17:32:07 -08001134 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001135 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1136 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001137 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001138 if (prev.deferRelaunchUntilPaused) {
1139 // Complete the deferred relaunch that was waiting for pause to complete.
1140 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
1141 relaunchActivityLocked(prev, prev.configChangeFlags, false,
1142 prev.preserveWindowOnDeferredRelaunch);
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001143 } else if (wasStopping) {
1144 // We are also stopping, the stop request must have gone soon after the pause.
1145 // We can't clobber it, because the stop confirmation will not be handled.
1146 // We don't need to schedule another stop, we only need to let it happen.
1147 prev.state = ActivityState.STOPPING;
Wale Ogunwaled8026642016-02-09 20:40:18 -08001148 } else if ((!prev.visible && !hasVisibleBehindActivity())
1149 || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001150 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001151 // stopping.
Chong Zhang46b1ac62016-02-18 17:53:57 -08001152 addToStopping(prev, true /* immediate */);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001153 }
1154 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001155 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001156 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001157 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001158 // It is possible the activity was freezing the screen before it was paused.
1159 // In that case go ahead and remove the freeze this activity has on the screen
1160 // since it is no longer visible.
1161 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001162 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001163 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001164
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001165 if (resumeNext) {
1166 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1167 if (!mService.isSleepingOrShuttingDown()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001168 mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001169 } else {
1170 mStackSupervisor.checkReadyForSleepLocked();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001171 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001172 if (top == null || (prev != null && top != prev)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001173 // If there are no more activities available to run, do resume anyway to start
1174 // something. Also if the top activity on the stack is not the just paused
1175 // activity, we need to go ahead and resume it to ensure we complete an
1176 // in-flight app switch.
1177 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001178 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001179 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001180 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001181
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001182 if (prev != null) {
1183 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001184
Craig Mautner525f3d92013-05-07 14:01:50 -07001185 if (prev.app != null && prev.cpuTimeAtResume > 0
1186 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001187 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1188 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001189 if (diff > 0) {
1190 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1191 synchronized (bsi) {
1192 BatteryStatsImpl.Uid.Proc ps =
1193 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001194 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001195 if (ps != null) {
1196 ps.addForegroundTimeLocked(diff);
1197 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001198 }
1199 }
1200 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001201 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001202 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001203
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001204 // Notify when the task stack has changed, but only if visibilities changed (not just focus)
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001205 if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause) {
1206 mService.notifyTaskStackChangedLocked();
1207 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1208 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001209
1210 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001211 }
1212
Chong Zhang46b1ac62016-02-18 17:53:57 -08001213 private void addToStopping(ActivityRecord r, boolean immediate) {
1214 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1215 mStackSupervisor.mStoppingActivities.add(r);
1216 }
1217
1218 // If we already have a few activities waiting to stop, then give up
1219 // on things going idle and start clearing them out. Or if r is the
1220 // last of activity of the last task the stack will be empty and must
1221 // be cleared immediately.
1222 boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1223 || (r.frontOfTask && mTaskHistory.size() <= 1);
1224
1225 if (immediate || forceIdle) {
1226 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
1227 + forceIdle + "immediate=" + immediate);
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001228 mStackSupervisor.scheduleIdleLocked();
1229 } else {
1230 mStackSupervisor.checkReadyForSleepLocked();
1231 }
1232 }
1233
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001234 /**
1235 * Once we know that we have asked an application to put an activity in
1236 * the resumed state (either by launching it or explicitly telling it),
1237 * this function updates the rest of our state to match that fact.
1238 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001239 private void completeResumeLocked(ActivityRecord next) {
Chong Zhang2b79af12016-02-10 18:47:06 -08001240 next.visible = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001241 next.idle = false;
1242 next.results = null;
1243 next.newIntents = null;
Chong Zhang2b79af12016-02-10 18:47:06 -08001244 next.stopped = false;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001245
Chong Zhang85ee6542015-10-02 13:36:38 -07001246 if (next.isHomeActivity()) {
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001247 ProcessRecord app = next.task.mActivities.get(0).app;
1248 if (app != null && app != mService.mHomeProcess) {
1249 mService.mHomeProcess = app;
1250 }
1251 }
1252
Craig Mautner07566322013-09-26 16:42:55 -07001253 if (next.nowVisible) {
1254 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001255 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001256 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001257
1258 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001259 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001260
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001261 mStackSupervisor.reportResumedActivityLocked(next);
1262
1263 next.resumeKeyDispatchingLocked();
1264 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001265
1266 // Mark the point when the activity is resuming
1267 // TODO: To be more accurate, the mark should be before the onCreate,
1268 // not after the onResume. But for subsequent starts, onResume is fine.
1269 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001270 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001271 } else {
1272 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1273 }
Winson Chung376543b2014-05-21 17:43:28 -07001274
George Mount6ba042b2014-07-28 11:12:28 -07001275 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001276
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001277 if (getVisibleBehindActivity() == next) {
Craig Mautner64ccb702014-10-01 09:38:40 -07001278 // When resuming an activity, require it to call requestVisibleBehind() again.
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001279 setVisibleBehindActivity(null);
Craig Mautner64ccb702014-10-01 09:38:40 -07001280 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001281 }
1282
Craig Mautner2568c3a2015-03-26 14:22:34 -07001283 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001284 r.visible = visible;
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001285 if (!visible && r.mUpdateTaskThumbnailWhenHidden) {
1286 r.updateThumbnailLocked(r.task.stack.screenshotActivitiesLocked(r), null);
1287 r.mUpdateTaskThumbnailWhenHidden = false;
1288 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001289 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001290 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001291 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001292 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001293 container.setVisible(visible);
1294 }
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001295 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001296 }
1297
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001298 // Find the first visible activity above the passed activity and if it is translucent return it
1299 // otherwise return null;
1300 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1301 TaskRecord task = r.task;
1302 if (task == null) {
1303 return null;
1304 }
1305
1306 ActivityStack stack = task.stack;
1307 if (stack == null) {
1308 return null;
1309 }
1310
1311 int stackNdx = mStacks.indexOf(stack);
1312
1313 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1314 int taskNdx = tasks.indexOf(task);
1315
1316 ArrayList<ActivityRecord> activities = task.mActivities;
1317 int activityNdx = activities.indexOf(r) + 1;
1318
1319 final int numStacks = mStacks.size();
1320 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001321 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001322 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001323 final int numTasks = tasks.size();
1324 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001325 final TaskRecord currentTask = tasks.get(taskNdx);
1326 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001327 final int numActivities = activities.size();
1328 while (activityNdx < numActivities) {
1329 final ActivityRecord activity = activities.get(activityNdx);
1330 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001331 return historyStack.mFullscreen
1332 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001333 }
1334 ++activityNdx;
1335 }
1336 activityNdx = 0;
1337 ++taskNdx;
1338 }
1339 taskNdx = 0;
1340 ++stackNdx;
1341 }
1342
1343 return null;
1344 }
1345
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001346 ActivityStack getNextFocusableStackLocked() {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001347 ArrayList<ActivityStack> stacks = mStacks;
1348 final ActivityRecord parent = mActivityContainer.mParentActivity;
1349 if (parent != null) {
1350 stacks = parent.task.stack.mStacks;
1351 }
1352 if (stacks != null) {
1353 for (int i = stacks.size() - 1; i >= 0; --i) {
1354 ActivityStack stack = stacks.get(i);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001355 if (stack != this && stack.isFocusable()
1356 && stack.getStackVisibilityLocked() != STACK_INVISIBLE) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001357 return stack;
1358 }
1359 }
1360 }
1361 return null;
1362 }
1363
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001364 /** Returns true if the stack contains a fullscreen task. */
1365 private boolean hasFullscreenTask() {
1366 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1367 final TaskRecord task = mTaskHistory.get(i);
1368 if (task.mFullscreen) {
1369 return true;
1370 }
1371 }
1372 return false;
1373 }
1374
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001375 private boolean hasTranslucentActivity(ActivityStack stack) {
1376 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1377 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
1378 final TaskRecord task = tasks.get(taskNdx);
1379 final ArrayList<ActivityRecord> activities = task.mActivities;
1380 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1381 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001382
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001383 // Conditions for an activity to obscure the stack we're
1384 // examining:
1385 // 1. Not Finishing AND Visible AND:
1386 // 2. Either:
1387 // - Full Screen Activity OR
1388 // - On top of Home and our stack is NOT home
1389 if (!r.finishing && r.visible && (r.fullscreen ||
1390 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
1391 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001392 }
1393 }
1394 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001395 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001396 }
1397
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001398 /**
1399 * Returns stack's visibility: {@link #STACK_INVISIBLE}, {@link #STACK_VISIBLE} or
1400 * {@link #STACK_VISIBLE_ACTIVITY_BEHIND}.
1401 */
1402 int getStackVisibilityLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001403 if (!isAttached()) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001404 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001405 }
1406
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001407 if (mStackSupervisor.isFrontStack(this) || mStackSupervisor.isFocusedStack(this)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001408 return STACK_VISIBLE;
Wale Ogunwale99db1862015-10-23 20:08:22 -07001409 }
1410
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001411 final int stackIndex = mStacks.indexOf(this);
1412
1413 if (stackIndex == mStacks.size() - 1) {
1414 Slog.wtf(TAG,
1415 "Stack=" + this + " isn't front stack but is at the top of the stack list");
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001416 return STACK_INVISIBLE;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001417 }
1418
Chong Zhang75b37202015-12-04 14:16:36 -08001419 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
1420 if (isLockscreenShown && !StackId.isAllowedOverLockscreen(mStackId)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001421 return STACK_INVISIBLE;
Chong Zhang75b37202015-12-04 14:16:36 -08001422 }
1423
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001424 final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1425 final int focusedStackId = focusedStack.mStackId;
1426
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001427 if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001428 && hasVisibleBehindActivity() && focusedStackId == HOME_STACK_ID
1429 && !focusedStack.topActivity().fullscreen) {
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001430 // The fullscreen stack should be visible if it has a visible behind activity behind
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001431 // the home stack that is translucent.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001432 return STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001433 }
1434
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001435 if (mStackId == DOCKED_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001436 // Docked stack is always visible, except in the case where the top running activity
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001437 // task in the focus stack doesn't support any form of resizing but we show it for the
1438 // home task even though it's not resizable.
Wale Ogunwaled26176f2016-01-25 20:04:04 -08001439 final ActivityRecord r = focusedStack.topRunningActivityLocked();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001440 final TaskRecord task = r != null ? r.task : null;
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001441 return task == null || task.canGoInDockedStack() || task.isHomeTask() ? STACK_VISIBLE
1442 : STACK_INVISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001443 }
1444
Chong Zhangb16cf342015-11-12 17:22:40 -08001445 // Find the first stack below focused stack that actually got something visible.
1446 int belowFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1447 while (belowFocusedIndex >= 0 &&
1448 mStacks.get(belowFocusedIndex).topRunningActivityLocked() == null) {
1449 belowFocusedIndex--;
1450 }
Wale Ogunwale99db1862015-10-23 20:08:22 -07001451 if ((focusedStackId == DOCKED_STACK_ID || focusedStackId == PINNED_STACK_ID)
1452 && stackIndex == belowFocusedIndex) {
1453 // Stacks directly behind the docked or pinned stack are always visible.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001454 return STACK_VISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001455 }
1456
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001457 if (focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID
1458 && hasTranslucentActivity(focusedStack)) {
1459 // Stacks behind the fullscreen stack with a translucent activity are always
1460 // visible so they can act as a backdrop to the translucent activity.
1461 // For example, dialog activities
1462 if (stackIndex == belowFocusedIndex) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001463 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001464 }
1465 if (belowFocusedIndex >= 0) {
1466 final ActivityStack stack = mStacks.get(belowFocusedIndex);
Wale Ogunwale99db1862015-10-23 20:08:22 -07001467 if ((stack.mStackId == DOCKED_STACK_ID || stack.mStackId == PINNED_STACK_ID)
1468 && stackIndex == (belowFocusedIndex - 1)) {
1469 // The stack behind the docked or pinned stack is also visible so we can have a
1470 // complete backdrop to the translucent activity when the docked stack is up.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001471 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001472 }
1473 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001474 }
1475
Wale Ogunwale3797c222015-10-27 14:21:58 -07001476 if (StackId.isStaticStack(mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001477 // Visibility of any static stack should have been determined by the conditions above.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001478 return STACK_INVISIBLE;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001479 }
1480
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001481 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001482 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001483
1484 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1485 continue;
1486 }
1487
Wale Ogunwale3797c222015-10-27 14:21:58 -07001488 if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001489 // These stacks can't have any dynamic stacks visible behind them.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001490 return STACK_INVISIBLE;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001491 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001492
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001493 if (!hasTranslucentActivity(stack)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001494 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001495 }
1496 }
1497
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001498 return STACK_VISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001499 }
1500
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001501 final int rankTaskLayers(int baseLayer) {
1502 int layer = 0;
1503 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1504 final TaskRecord task = mTaskHistory.get(taskNdx);
1505 ActivityRecord r = task.topRunningActivityLocked();
1506 if (r == null || r.finishing || !r.visible) {
1507 task.mLayerRank = -1;
1508 } else {
1509 task.mLayerRank = baseLayer + layer++;
1510 }
1511 }
1512 return layer;
1513 }
1514
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001515 /**
1516 * Make sure that all activities that need to be visible (that is, they
1517 * currently can be seen by the user) actually are.
1518 */
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001519 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1520 boolean preserveWindows) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001521 ActivityRecord top = topRunningActivityLocked();
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001522 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001523 + " configChanges=0x" + Integer.toHexString(configChanges));
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001524 if (top != null) {
1525 checkTranslucentActivityWaiting(top);
1526 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001527
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001528 // If the top activity is not fullscreen, then we need to
1529 // make sure any activities under it are now visible.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001530 boolean aboveTop = top != null;
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001531 final int stackVisibility = getStackVisibilityLocked();
1532 final boolean stackInvisible = stackVisibility != STACK_VISIBLE;
1533 final boolean stackVisibleBehind = stackVisibility == STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001534 boolean behindFullscreenActivity = stackInvisible;
Wale Ogunwaled046a012015-12-24 13:05:59 -08001535 boolean resumeNextActivity = isFocusable() && (isInStackLocked(starting) == null);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001536 boolean behindTranslucentActivity = false;
1537 final ActivityRecord visibleBehind = getVisibleBehindActivity();
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001538 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001539 final TaskRecord task = mTaskHistory.get(taskNdx);
1540 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001541 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1542 final ActivityRecord r = activities.get(activityNdx);
1543 if (r.finishing) {
1544 continue;
1545 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001546 final boolean isTop = r == top;
1547 if (aboveTop && !isTop) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001548 continue;
1549 }
1550 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001551 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1552 // but must be drawn initially for the animation as though they were visible.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001553 final boolean activityVisibleBehind =
1554 (behindTranslucentActivity || stackVisibleBehind) && visibleBehind == r;
1555 final boolean isVisible = (!behindFullscreenActivity || r.mLaunchTaskBehind
1556 || activityVisibleBehind) && okToShowLocked(r);
1557 if (isVisible) {
1558 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
1559 + " finishing=" + r.finishing + " state=" + r.state);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001560 // First: if this is not the current activity being started, make
1561 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001562 if (r != starting) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001563 ensureActivityConfigurationLocked(r, 0, preserveWindows);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001564 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001565
1566 if (r.app == null || r.app.thread == null) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001567 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001568 resumeNextActivity, r)) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001569 if (activityNdx >= activities.size()) {
1570 // Record may be removed if its process needs to restart.
1571 activityNdx = activities.size() - 1;
1572 } else {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001573 resumeNextActivity = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001574 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001575 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001576 } else if (r.visible) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001577 // If this activity is already visible, then there is nothing to do here.
1578 if (handleAlreadyVisible(r)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001579 resumeNextActivity = false;
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001580 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001581 } else {
Jorim Jaggie66edb12016-02-05 12:41:17 -08001582 makeVisibleIfNeeded(starting, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001583 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001584 // Aggregate current change flags.
1585 configChanges |= r.configChangeFlags;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001586 behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1587 behindFullscreenActivity, task, r);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001588 if (behindFullscreenActivity && !r.fullscreen) {
1589 behindTranslucentActivity = true;
1590 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001591 } else {
Wale Ogunwale834c2362016-01-23 18:14:58 -08001592 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001593 + " finishing=" + r.finishing + " state=" + r.state + " stackInvisible="
1594 + stackInvisible + " behindFullscreenActivity="
1595 + behindFullscreenActivity + " mLaunchTaskBehind="
1596 + r.mLaunchTaskBehind);
1597 makeInvisible(r, visibleBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001598 }
1599 }
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001600 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1601 // The visibility of tasks and the activities they contain in freeform stack are
1602 // determined individually unlike other stacks where the visibility or fullscreen
1603 // status of an activity in a previous task affects other.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001604 behindFullscreenActivity = stackVisibility == STACK_INVISIBLE;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001605 } else if (mStackId == HOME_STACK_ID) {
1606 if (task.isHomeTask()) {
1607 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
1608 + " stackInvisible=" + stackInvisible
1609 + " behindFullscreenActivity=" + behindFullscreenActivity);
1610 // No other task in the home stack should be visible behind the home activity.
1611 // Home activities is usually a translucent activity with the wallpaper behind
1612 // them. However, when they don't have the wallpaper behind them, we want to
1613 // show activities in the next application stack behind them vs. another
1614 // task in the home stack like recents.
1615 behindFullscreenActivity = true;
1616 } else if (task.isRecentsTask()
1617 && task.getTaskToReturnTo() == APPLICATION_ACTIVITY_TYPE) {
1618 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1619 "Recents task returning to app: at " + task
1620 + " stackInvisible=" + stackInvisible
1621 + " behindFullscreenActivity=" + behindFullscreenActivity);
1622 // We don't want any other tasks in the home stack visible if the recents
1623 // activity is going to be returning to an application activity type.
1624 // We do this to preserve the visible order the user used to get into the
1625 // recents activity. The recents activity is normally translucent and if it
1626 // doesn't have the wallpaper behind it the next activity in the home stack
1627 // shouldn't be visible when the home stack is brought to the front to display
1628 // the recents activity from an app.
1629 behindFullscreenActivity = true;
1630 }
1631
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001632 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001633 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001634
1635 if (mTranslucentActivityWaiting != null &&
1636 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1637 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1638 notifyActivityDrawnLocked(null);
1639 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001640 }
Craig Mautner58547802013-03-05 08:23:53 -08001641
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001642 private void checkTranslucentActivityWaiting(ActivityRecord top) {
1643 if (mTranslucentActivityWaiting != top) {
1644 mUndrawnActivitiesBelowTopTranslucent.clear();
1645 if (mTranslucentActivityWaiting != null) {
1646 // Call the callback with a timeout indication.
1647 notifyActivityDrawnLocked(null);
1648 mTranslucentActivityWaiting = null;
1649 }
1650 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1651 }
1652 }
1653
1654 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001655 boolean isTop, boolean andResume, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001656 // We need to make sure the app is running if it's the top, or it is just made visible from
1657 // invisible. If the app is already visible, it must have died while it was visible. In this
1658 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
1659 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001660 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001661 // This activity needs to be visible, but isn't even running...
1662 // get it started and resume if no other stack in this stack is resumed.
1663 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
1664 if (r != starting) {
1665 r.startFreezingScreenLocked(r.app, configChanges);
1666 }
1667 if (!r.visible || r.mLaunchTaskBehind) {
1668 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
1669 setVisible(r, true);
1670 }
1671 if (r != starting) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001672 mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001673 return true;
1674 }
1675 }
1676 return false;
1677 }
1678
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001679 private void makeInvisible(ActivityRecord r, ActivityRecord visibleBehind) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001680 if (!r.visible) {
1681 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
1682 return;
1683 }
1684 // Now for any activities that aren't visible to the user, make sure they no longer are
1685 // keeping the screen frozen.
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001686 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.state);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001687 try {
1688 setVisible(r, false);
1689 switch (r.state) {
1690 case STOPPING:
1691 case STOPPED:
1692 if (r.app != null && r.app.thread != null) {
1693 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1694 "Scheduling invisibility: " + r);
1695 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1696 }
1697 break;
1698
1699 case INITIALIZING:
1700 case RESUMED:
1701 case PAUSING:
1702 case PAUSED:
1703 // This case created for transitioning activities from
1704 // translucent to opaque {@link Activity#convertToOpaque}.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001705 if (visibleBehind == r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001706 releaseBackgroundResources(r);
1707 } else {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001708 addToStopping(r, true /* immediate */);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001709 }
1710 break;
1711
1712 default:
1713 break;
1714 }
1715 } catch (Exception e) {
1716 // Just skip on any failure; we'll make it visible when it next restarts.
1717 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
1718 }
1719 }
1720
1721 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
1722 TaskRecord task, ActivityRecord r) {
1723 if (r.fullscreen) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001724 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwale673cbd22016-01-30 18:30:55 -08001725 + " stackInvisible=" + stackInvisible
1726 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001727 // At this point, nothing else needs to be shown in this task.
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001728 behindFullscreenActivity = true;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001729 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001730 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1731 + " stackInvisible=" + stackInvisible
1732 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001733 behindFullscreenActivity = true;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001734 }
1735 return behindFullscreenActivity;
1736 }
1737
Jorim Jaggie66edb12016-02-05 12:41:17 -08001738 private void makeVisibleIfNeeded(ActivityRecord starting, ActivityRecord r) {
1739
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001740 // This activity is not currently visible, but is running. Tell it to become visible.
Jorim Jaggie66edb12016-02-05 12:41:17 -08001741 if (r.state == ActivityState.RESUMED || r == starting) {
Chong Zhange05db742016-02-16 16:58:37 -08001742 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
1743 "Not making visible, r=" + r + " state=" + r.state + " starting=" + starting);
Jorim Jaggie66edb12016-02-05 12:41:17 -08001744 return;
1745 }
1746
1747 // If this activity is paused, tell it to now show its window.
1748 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1749 "Making visible and scheduling visibility: " + r);
1750 try {
1751 if (mTranslucentActivityWaiting != null) {
1752 r.updateOptionsLocked(r.returningOptions);
1753 mUndrawnActivitiesBelowTopTranslucent.add(r);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001754 }
Jorim Jaggie66edb12016-02-05 12:41:17 -08001755 setVisible(r, true);
1756 r.sleeping = false;
1757 r.app.pendingUiClean = true;
1758 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1759 r.stopFreezingScreenLocked(false);
1760 } catch (Exception e) {
1761 // Just skip on any failure; we'll make it
1762 // visible when it next restarts.
1763 Slog.w(TAG, "Exception thrown making visibile: " + r.intent.getComponent(), e);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001764 }
1765 }
1766
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001767 private boolean handleAlreadyVisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001768 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Skipping: already visible at " + r);
1769 r.stopFreezingScreenLocked(false);
1770 try {
1771 if (r.returningOptions != null) {
1772 r.app.thread.scheduleOnNewActivityOptions(r.appToken, r.returningOptions);
1773 }
1774 } catch(RemoteException e) {
1775 }
1776 return r.state == ActivityState.RESUMED;
1777 }
1778
Todd Kennedyaab56db2015-01-30 09:39:53 -08001779 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001780 mTranslucentActivityWaiting = r;
1781 mUndrawnActivitiesBelowTopTranslucent.clear();
1782 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1783 }
1784
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001785 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1786 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1787 final TaskRecord task = mTaskHistory.get(taskNdx);
1788 final ArrayList<ActivityRecord> activities = task.mActivities;
1789 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1790 final ActivityRecord r = activities.get(activityNdx);
1791 if ( r.appTimeTracker != except) {
1792 r.appTimeTracker = null;
1793 }
1794 }
1795 }
1796 }
1797
Craig Mautner5eda9b32013-07-02 11:58:16 -07001798 /**
1799 * Called as activities below the top translucent activity are redrawn. When the last one is
1800 * redrawn notify the top activity by calling
1801 * {@link Activity#onTranslucentConversionComplete}.
1802 *
1803 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1804 * occurred and the activity will be notified immediately.
1805 */
1806 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001807 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001808 if ((r == null)
1809 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1810 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1811 // The last undrawn activity below the top has just been drawn. If there is an
1812 // opaque activity at the top, notify it that it can become translucent safely now.
1813 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1814 mTranslucentActivityWaiting = null;
1815 mUndrawnActivitiesBelowTopTranslucent.clear();
1816 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1817
Craig Mautner71dd1b62014-02-18 15:48:52 -08001818 if (waitingActivity != null) {
1819 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1820 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1821 try {
1822 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1823 waitingActivity.appToken, r != null);
1824 } catch (RemoteException e) {
1825 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001826 }
1827 }
1828 }
1829 }
1830
Craig Mautnera61bc652013-10-28 15:43:18 -07001831 /** If any activities below the top running one are in the INITIALIZING state and they have a
1832 * starting window displayed then remove that starting window. It is possible that the activity
1833 * in this state will never resumed in which case that starting window will be orphaned. */
1834 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001835 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07001836 boolean aboveTop = true;
1837 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1838 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1839 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1840 final ActivityRecord r = activities.get(activityNdx);
1841 if (aboveTop) {
1842 if (r == topActivity) {
1843 aboveTop = false;
1844 }
1845 continue;
1846 }
1847
1848 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001849 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1850 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001851 r.mStartingWindowShown = false;
1852 mWindowManager.removeAppStartingWindow(r.appToken);
1853 }
1854 }
1855 }
1856 }
1857
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 /**
1859 * Ensure that the top activity in the stack is resumed.
1860 *
1861 * @param prev The previously resumed activity, for when in the process
1862 * of pausing; can be null to call from elsewhere.
Wale Ogunwaled046a012015-12-24 13:05:59 -08001863 * @param options Activity options.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001864 *
1865 * @return Returns true if something is being resumed, or false if
1866 * nothing happened.
Wale Ogunwaled046a012015-12-24 13:05:59 -08001867 *
1868 * NOTE: It is not safe to call this method directly as it can cause an activity in a
1869 * non-focused stack to be resumed.
1870 * Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
1871 * right activity for the current system state.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001872 */
Wale Ogunwaled046a012015-12-24 13:05:59 -08001873 boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001874 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001875 // Don't even start recursing.
1876 return false;
1877 }
1878
1879 boolean result = false;
1880 try {
1881 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001882 mStackSupervisor.inResumeTopActivity = true;
1883 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1884 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001885 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001886 }
Craig Mautner544efa72014-09-04 16:41:20 -07001887 result = resumeTopActivityInnerLocked(prev, options);
1888 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001889 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001890 }
1891 return result;
1892 }
1893
Chong Zhang280d3322015-11-03 17:27:26 -08001894 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001895 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001896
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001897 if (!mService.mBooting && !mService.mBooted) {
1898 // Not ready yet!
1899 return false;
1900 }
1901
Craig Mautnerdf88d732014-01-27 09:21:32 -08001902 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001903 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001904 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001905 // Do not resume this stack if its parent is not resumed.
1906 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1907 return false;
1908 }
1909
Wale Ogunwale2be760d2016-02-17 11:16:10 -08001910 mStackSupervisor.cancelInitializingActivities();
Craig Mautnera61bc652013-10-28 15:43:18 -07001911
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001912 // Find the first activity that is not finishing.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001913 final ActivityRecord next = topRunningActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001914
1915 // Remember how we'll process this pause/resume situation, and ensure
1916 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001917 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1918 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001919
Craig Mautner84984fa2014-06-19 11:19:20 -07001920 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001921 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001922 // There are no more activities!
1923 final String reason = "noMoreActivities";
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001924 if (!mFullscreen && adjustFocusToNextFocusableStackLocked(reason)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001925 // Try to move focus to the next visible stack with a running activity if this
1926 // stack is not covering the entire screen.
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001927 return mStackSupervisor.resumeFocusedStackTopActivityLocked(
1928 mStackSupervisor.getFocusedStack(), prev, null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001929 }
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001930
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001931 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001932 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001933 if (DEBUG_STATES) Slog.d(TAG_STATES,
1934 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001935 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001936 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001937 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1938 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1939 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001940 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001941 }
1942
1943 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001944
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001945 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001946 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1947 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001948 // Make sure we have executed any pending transitions, since there
1949 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001950 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001951 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001952 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001953 if (DEBUG_STATES) Slog.d(TAG_STATES,
1954 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001955 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001956 return false;
1957 }
1958
Craig Mautner525f3d92013-05-07 14:01:50 -07001959 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001960 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001961 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001962 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001963 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001964 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001965 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001966 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001967 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001968 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001969 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001970 } else if (!isOnHomeDisplay()) {
1971 return false;
1972 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001973 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001974 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001975 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1976 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1977 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001978 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001979 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001980 }
1981
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001982 // If we are sleeping, and there is no resumed activity, and the top
1983 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001984 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001985 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001986 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001987 // Make sure we have executed any pending transitions, since there
1988 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001989 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001990 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001991 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001992 if (DEBUG_STATES) Slog.d(TAG_STATES,
1993 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001994 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001995 return false;
1996 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001997
1998 // Make sure that the user who owns this activity is started. If not,
1999 // we will just leave it as is because someone should be bringing
2000 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07002001 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002002 Slog.w(TAG, "Skipping resume of top activity " + next
2003 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07002004 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002005 return false;
2006 }
2007
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002008 // The activity may be waiting for stop, but that is no longer
2009 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002010 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002011 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002012 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002013 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002014
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002015 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002016
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002017 // If we are currently pausing an activity, then don't do anything until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07002018 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002019 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002020 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07002021 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002022 return false;
2023 }
2024
Dianne Hackborn3d07c942015-03-13 18:02:54 -07002025 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2026
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002027 // We need to start pausing the current activity so the top one can be resumed...
2028 final boolean dontWaitForPause = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002029 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002030 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002031 if (DEBUG_STATES) Slog.d(TAG_STATES,
2032 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08002033 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002034 }
2035 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002036 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002037 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002038 // At this point we want to put the upcoming activity's process
2039 // at the top of the LRU list, since we know we will be needing it
2040 // very soon and it would be a waste to let it get killed if it
2041 // happens to be sitting towards the end.
2042 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07002043 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002044 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002045 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002046 return true;
2047 }
2048
Christopher Tated3f175c2012-06-14 14:16:54 -07002049 // If the most recent activity was noHistory but was only stopped rather
2050 // than stopped+finished because the device went to sleep, we need to make
2051 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07002052 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07002053 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002054 if (DEBUG_STATES) Slog.d(TAG_STATES,
2055 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07002056 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08002057 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07002058 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07002059 }
2060
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002061 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08002062 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2063 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002064 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002065 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2066 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002067 } else {
2068 // The next activity is already visible, so hide the previous
2069 // activity's windows right now so we can show the new one ASAP.
2070 // We only do this if the previous is finishing, which should mean
2071 // it is on top of the one being resumed so hiding it quickly
2072 // is good. Otherwise, we want to do the normal route of allowing
2073 // the resumed activity to be shown so we can decide if the
2074 // previous should actually be hidden depending on whether the
2075 // new one is found to be full-screen or not.
2076 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002077 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002078 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2079 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08002080 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002081 + ", nowVisible=" + next.nowVisible);
2082 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002083 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002084 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002085 + ", waitingVisible="
2086 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2087 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002088 }
2089 }
2090 }
2091
Dianne Hackborne7f97212011-02-24 14:40:20 -08002092 // Launching this app's activity, make sure the app is no longer
2093 // considered stopped.
2094 try {
2095 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002096 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002097 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002098 } catch (IllegalArgumentException e) {
2099 Slog.w(TAG, "Failed trying to unstop package "
2100 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002101 }
2102
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002103 // We are starting up the next activity, so tell the window manager
2104 // that the previous one will be hidden soon. This way it can know
2105 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002106 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002107 if (prev != null) {
2108 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002109 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002110 "Prepare close transition: prev=" + prev);
2111 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002112 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002113 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002114 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002115 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08002116 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
2117 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002118 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002119 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002120 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002121 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2122 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002123 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002124 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002125 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002126 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002127 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08002128 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002129 : next.mLaunchTaskBehind
2130 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2131 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002132 }
2133 }
Craig Mautner967212c2013-04-13 21:10:58 -07002134 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002135 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002136 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002137 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002138 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002139 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002140 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002141 }
2142 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002143
2144 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07002145 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08002146 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2147 if (opts != null) {
2148 resumeAnimOptions = opts.toBundle();
2149 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002150 next.applyOptionsLocked();
2151 } else {
2152 next.clearOptionsLocked();
2153 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002154
Craig Mautnercf910b02013-04-23 11:23:27 -07002155 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002156 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002157 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002158
2159 // This activity is now becoming visible.
Jorim Jaggi1b025a62016-02-03 19:27:49 -08002160 if (!next.visible) {
2161 mWindowManager.setAppVisibility(next.appToken, true);
2162 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002163
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002164 // schedule launch ticks to collect information about slow apps.
2165 next.startLaunchTickingLocked();
2166
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002167 ActivityRecord lastResumedActivity =
2168 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002169 ActivityState lastState = next.state;
2170
2171 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002172
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002173 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002174 next.state = ActivityState.RESUMED;
2175 mResumedActivity = next;
2176 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08002177 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07002178 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002179 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002180 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002181
2182 // Have the window manager re-evaluate the orientation of
2183 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002184 boolean notUpdated = true;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002185 if (mStackSupervisor.isFocusedStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002186 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002187 mService.mConfiguration,
2188 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2189 if (config != null) {
2190 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002191 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002192 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002193 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002194
Craig Mautner525f3d92013-05-07 14:01:50 -07002195 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002196 // The configuration update wasn't able to keep the existing
2197 // instance of the activity, and instead started a new one.
2198 // We should be all done, but let's just make sure our activity
2199 // is still at the top and schedule another run if something
2200 // weird happened.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002201 ActivityRecord nextNext = topRunningActivityLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002202 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002203 "Activity config changed during resume: " + next
2204 + ", new next: " + nextNext);
2205 if (nextNext != next) {
2206 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002207 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002208 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002209 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002210 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07002211 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002212 return true;
2213 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002214 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002215 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002216 }
Craig Mautner58547802013-03-05 08:23:53 -08002217
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002218 try {
2219 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002220 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002221 if (a != null) {
2222 final int N = a.size();
2223 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002224 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2225 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002226 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002227 }
2228 }
2229
2230 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002231 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002232 }
2233
Craig Mautner299f9602015-01-26 09:47:33 -08002234 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2235 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002236
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002237 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07002238 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002239 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002240 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002241 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002242 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002243 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002244
Craig Mautner0eea92c2013-05-16 13:35:39 -07002245 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002246
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002247 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002248 } catch (Exception e) {
2249 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002250 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002251 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002252 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002253 if (lastStack != null) {
2254 lastStack.mResumedActivity = lastResumedActivity;
2255 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002256 Slog.i(TAG, "Restarting because process died: " + next);
2257 if (!next.hasBeenLaunched) {
2258 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002259 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2260 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002261 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002262 next.appToken, next.packageName, next.theme,
2263 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07002264 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2265 next.windowFlags, null, true);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08002266 next.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002267 }
George Mount2c92c972014-03-20 09:38:23 -07002268 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002269 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002270 return true;
2271 }
2272
2273 // From this point on, if something goes wrong there is no way
2274 // to recover the activity.
2275 try {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002276 completeResumeLocked(next);
2277 } catch (Exception e) {
2278 // If any exception gets thrown, toss away this
2279 // activity and try the next one.
2280 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002281 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002282 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002283 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002284 return true;
2285 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002286 } else {
2287 // Whoops, need to restart this activity!
2288 if (!next.hasBeenLaunched) {
2289 next.hasBeenLaunched = true;
2290 } else {
2291 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002292 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002293 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002294 mService.compatibilityInfoForPackageLocked(
2295 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002296 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002297 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002298 null, true);
Wale Ogunwale9017ec02016-02-25 08:55:25 -08002299 next.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002300 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002301 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002302 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002303 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002304 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002305 }
2306
Craig Mautnercf910b02013-04-23 11:23:27 -07002307 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002308 return true;
2309 }
2310
riddle_hsuc215a4f2014-12-27 12:10:45 +08002311 private TaskRecord getNextTask(TaskRecord targetTask) {
2312 final int index = mTaskHistory.indexOf(targetTask);
2313 if (index >= 0) {
2314 final int numTasks = mTaskHistory.size();
2315 for (int i = index + 1; i < numTasks; ++i) {
2316 TaskRecord task = mTaskHistory.get(i);
2317 if (task.userId == targetTask.userId) {
2318 return task;
2319 }
2320 }
2321 }
2322 return null;
2323 }
2324
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002325 private void insertTaskAtPosition(TaskRecord task, int position) {
2326 if (position >= mTaskHistory.size()) {
2327 insertTaskAtTop(task, null);
2328 return;
2329 }
2330 // Calculate maximum possible position for this task.
2331 int maxPosition = mTaskHistory.size();
2332 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002333 && task.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002334 // Put non-current user tasks below current user tasks.
2335 while (maxPosition > 0) {
2336 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2337 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002338 || tmpTask.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002339 break;
2340 }
2341 maxPosition--;
2342 }
2343 }
2344 position = Math.min(position, maxPosition);
2345 mTaskHistory.remove(task);
2346 mTaskHistory.add(position, task);
2347 updateTaskMovement(task, true);
2348 }
2349
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002350 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002351 // If the moving task is over home stack, transfer its return type to next task
2352 if (task.isOverHomeStack()) {
2353 final TaskRecord nextTask = getNextTask(task);
2354 if (nextTask != null) {
2355 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2356 }
2357 }
2358
Craig Mautner9c85c202013-10-04 20:11:26 -07002359 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002360 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002361 if (isOnHomeDisplay()) {
2362 ActivityStack lastStack = mStackSupervisor.getLastStack();
2363 final boolean fromHome = lastStack.isHomeStack();
2364 if (!isHomeStack() && (fromHome || topTask() != task)) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08002365 int returnToType = APPLICATION_ACTIVITY_TYPE;
2366 if (fromHome && StackId.allowTopTaskToReturnHome(mStackId)) {
2367 returnToType = lastStack.topTask() == null
2368 ? HOME_ACTIVITY_TYPE : lastStack.topTask().taskType;
2369 }
2370 task.setTaskToReturnTo(returnToType);
Craig Mautnere0a38842013-12-16 16:14:02 -08002371 }
2372 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002373 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002374 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002375
Craig Mautnerac6f8432013-07-17 13:24:59 -07002376 mTaskHistory.remove(task);
2377 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002378 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002379 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002380 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002381 || (newActivity == null && task.topRunningActivityLocked() == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002382 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002383 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002384 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002385 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002386 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002387 || tmpTask.topRunningActivityLocked() == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002388 break;
2389 }
2390 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002391 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002392 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002393 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002394 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002395 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002396
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -08002397 final void startActivityLocked(ActivityRecord r, boolean newTask, boolean keepCurTransition,
2398 ActivityOptions options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002399 TaskRecord rTask = r.task;
2400 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002401 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2402 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002403 // Last activity in task had been removed or ActivityManagerService is reusing task.
2404 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002405 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002406 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002407 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002408 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002409 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002410 if (!newTask) {
2411 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002412 boolean startIt = true;
2413 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2414 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002415 if (task.getTopActivity() == null) {
2416 // All activities in task are finishing.
2417 continue;
2418 }
Craig Mautner70a86932013-02-28 22:37:44 -08002419 if (task == r.task) {
2420 // Here it is! Now, if this is not yet visible to the
2421 // user, then just add it without starting; it will
2422 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002423 if (!startIt) {
2424 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2425 + task, new RuntimeException("here").fillInStackTrace());
2426 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002427 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002428 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002429 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002430 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002431 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002432 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002433 return;
2434 }
2435 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002436 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002437 startIt = false;
2438 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002439 }
2440 }
2441
2442 // Place a new activity at top of stack, so it is next to interact
2443 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002444
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002445 // If we are not placing the new activity frontmost, we do not want
2446 // to deliver the onUserLeaving callback to the actual frontmost
2447 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002448 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002449 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002450 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002451 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002452 }
Craig Mautner70a86932013-02-28 22:37:44 -08002453
2454 task = r.task;
2455
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002456 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002457 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002458 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002459 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002460 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002461
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002462 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002463 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002464 // We want to show the starting preview window if we are
2465 // switching to a new task, or the next activity's process is
2466 // not currently running.
2467 boolean showStartingIcon = newTask;
2468 ProcessRecord proc = r.app;
2469 if (proc == null) {
2470 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2471 }
2472 if (proc == null || proc.thread == null) {
2473 showStartingIcon = true;
2474 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002475 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002476 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002477 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002478 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002479 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002480 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002481 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002482 ? r.mLaunchTaskBehind
2483 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2484 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002485 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002486 mNoAnimActivities.remove(r);
2487 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002488 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002489 boolean doShow = true;
2490 if (newTask) {
2491 // Even though this activity is starting fresh, we still need
2492 // to reset it to make sure we apply affinities to move any
2493 // existing activities from other tasks in to it.
2494 // If the caller has requested that the target task be
2495 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002496 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002497 resetTaskIfNeededLocked(r, r);
2498 doShow = topRunningNonDelayedActivityLocked(null) == r;
2499 }
Chong Zhang280d3322015-11-03 17:27:26 -08002500 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002501 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2502 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002503 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002504 if (r.mLaunchTaskBehind) {
2505 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2506 // tell WindowManager that r is visible even though it is at the back of the stack.
2507 mWindowManager.setAppVisibility(r.appToken, true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002508 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002509 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002510 // Figure out if we are transitioning from another activity that is
2511 // "has the same starting icon" as the next one. This allows the
2512 // window manager to keep the previous window it had previously
2513 // created, if it still had one.
2514 ActivityRecord prev = mResumedActivity;
2515 if (prev != null) {
2516 // We don't want to reuse the previous starting preview if:
2517 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002518 if (prev.task != r.task) {
2519 prev = null;
2520 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002521 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002522 else if (prev.nowVisible) {
2523 prev = null;
2524 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002525 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002526 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002527 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002528 mService.compatibilityInfoForPackageLocked(
2529 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002530 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002531 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002532 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002533 }
2534 } else {
2535 // If this is the first activity, don't do any fancy animations,
2536 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002537 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002538 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002539 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002540 }
2541 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002542 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002543 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002544 }
2545
Dianne Hackbornbe707852011-11-11 14:32:10 -08002546 final void validateAppTokensLocked() {
2547 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002548 mValidateAppTokens.ensureCapacity(numActivities());
2549 final int numTasks = mTaskHistory.size();
2550 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2551 TaskRecord task = mTaskHistory.get(taskNdx);
2552 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002553 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002554 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002555 }
Craig Mautner000f0022013-02-26 15:04:29 -08002556 TaskGroup group = new TaskGroup();
2557 group.taskId = task.taskId;
2558 mValidateAppTokens.add(group);
2559 final int numActivities = activities.size();
2560 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2561 final ActivityRecord r = activities.get(activityNdx);
2562 group.tokens.add(r.appToken);
2563 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002564 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002565 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002566 }
2567
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002568 /**
2569 * Perform a reset of the given task, if needed as part of launching it.
2570 * Returns the new HistoryRecord at the top of the task.
2571 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002572 /**
2573 * Helper method for #resetTaskIfNeededLocked.
2574 * We are inside of the task being reset... we'll either finish this activity, push it out
2575 * for another task, or leave it as-is.
2576 * @param task The task containing the Activity (taskTop) that might be reset.
2577 * @param forceReset
2578 * @return An ActivityOptions that needs to be processed.
2579 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002580 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002581 ActivityOptions topOptions = null;
2582
2583 int replyChainEnd = -1;
2584 boolean canMoveOptions = true;
2585
2586 // We only do this for activities that are not the root of the task (since if we finish
2587 // the root, we may no longer have the task!).
2588 final ArrayList<ActivityRecord> activities = task.mActivities;
2589 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002590 final int rootActivityNdx = task.findEffectiveRootIndex();
2591 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002592 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002593 if (target.frontOfTask)
2594 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002595
2596 final int flags = target.info.flags;
2597 final boolean finishOnTaskLaunch =
2598 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2599 final boolean allowTaskReparenting =
2600 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2601 final boolean clearWhenTaskReset =
2602 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2603
2604 if (!finishOnTaskLaunch
2605 && !clearWhenTaskReset
2606 && target.resultTo != null) {
2607 // If this activity is sending a reply to a previous
2608 // activity, we can't do anything with it now until
2609 // we reach the start of the reply chain.
2610 // XXX note that we are assuming the result is always
2611 // to the previous activity, which is almost always
2612 // the case but we really shouldn't count on.
2613 if (replyChainEnd < 0) {
2614 replyChainEnd = i;
2615 }
2616 } else if (!finishOnTaskLaunch
2617 && !clearWhenTaskReset
2618 && allowTaskReparenting
2619 && target.taskAffinity != null
2620 && !target.taskAffinity.equals(task.affinity)) {
2621 // If this activity has an affinity for another
2622 // task, then we need to move it out of here. We will
2623 // move it as far out of the way as possible, to the
2624 // bottom of the activity stack. This also keeps it
2625 // correctly ordered with any activities we previously
2626 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002627 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002628 final ActivityRecord bottom =
2629 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002630 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002631 if (bottom != null && target.taskAffinity != null
2632 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002633 // If the activity currently at the bottom has the
2634 // same task affinity as the one we are moving,
2635 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002636 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002637 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002638 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002639 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08002640 targetTask = createTaskRecord(
2641 mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
2642 target.info, null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002643 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002644 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002645 + " out to new task " + target.task);
2646 }
2647
Wale Ogunwale706ed792015-08-02 10:29:44 -07002648 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002649
Craig Mautner525f3d92013-05-07 14:01:50 -07002650 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002651 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2652 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002653 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002654 if (p.finishing) {
2655 continue;
2656 }
2657
Craig Mautnere3a74d52013-02-22 14:14:58 -08002658 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002659 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002660 topOptions = p.takeOptionsLocked();
2661 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002662 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002663 }
2664 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002665 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2666 "Removing activity " + p + " from task=" + task + " adding to task="
2667 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002668 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2669 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002670 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002671 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002672
Wale Ogunwale706ed792015-08-02 10:29:44 -07002673 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002674 }
2675
Wale Ogunwale706ed792015-08-02 10:29:44 -07002676 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002677 if (VALIDATE_TOKENS) {
2678 validateAppTokensLocked();
2679 }
2680
2681 replyChainEnd = -1;
2682 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2683 // If the activity should just be removed -- either
2684 // because it asks for it, or the task should be
2685 // cleared -- then finish it and anything that is
2686 // part of its reply chain.
2687 int end;
2688 if (clearWhenTaskReset) {
2689 // In this case, we want to finish this activity
2690 // and everything above it, so be sneaky and pretend
2691 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002692 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002693 } else if (replyChainEnd < 0) {
2694 end = i;
2695 } else {
2696 end = replyChainEnd;
2697 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002698 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002699 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002700 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002701 if (p.finishing) {
2702 continue;
2703 }
2704 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002705 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002706 topOptions = p.takeOptionsLocked();
2707 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002708 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002709 }
2710 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002711 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002712 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002713 if (finishActivityLocked(
2714 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002715 end--;
2716 srcPos--;
2717 }
2718 }
2719 replyChainEnd = -1;
2720 } else {
2721 // If we were in the middle of a chain, well the
2722 // activity that started it all doesn't want anything
2723 // special, so leave it all as-is.
2724 replyChainEnd = -1;
2725 }
2726 }
2727
2728 return topOptions;
2729 }
2730
2731 /**
2732 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2733 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2734 * @param affinityTask The task we are looking for an affinity to.
2735 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2736 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2737 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2738 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002739 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002740 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002741 int replyChainEnd = -1;
2742 final int taskId = task.taskId;
2743 final String taskAffinity = task.affinity;
2744
2745 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2746 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002747 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2748
2749 // Do not operate on or below the effective root Activity.
2750 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002751 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002752 if (target.frontOfTask)
2753 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002754
2755 final int flags = target.info.flags;
2756 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2757 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2758
2759 if (target.resultTo != null) {
2760 // If this activity is sending a reply to a previous
2761 // activity, we can't do anything with it now until
2762 // we reach the start of the reply chain.
2763 // XXX note that we are assuming the result is always
2764 // to the previous activity, which is almost always
2765 // the case but we really shouldn't count on.
2766 if (replyChainEnd < 0) {
2767 replyChainEnd = i;
2768 }
2769 } else if (topTaskIsHigher
2770 && allowTaskReparenting
2771 && taskAffinity != null
2772 && taskAffinity.equals(target.taskAffinity)) {
2773 // This activity has an affinity for our task. Either remove it if we are
2774 // clearing or move it over to our task. Note that
2775 // we currently punt on the case where we are resetting a
2776 // task that is not at the top but who has activities above
2777 // with an affinity to it... this is really not a normal
2778 // case, and we will need to later pull that task to the front
2779 // and usually at that point we will do the reset and pick
2780 // up those remaining activities. (This only happens if
2781 // someone starts an activity in a new task from an activity
2782 // in a task that is not currently on top.)
2783 if (forceReset || finishOnTaskLaunch) {
2784 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002785 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2786 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002787 for (int srcPos = start; srcPos >= i; --srcPos) {
2788 final ActivityRecord p = activities.get(srcPos);
2789 if (p.finishing) {
2790 continue;
2791 }
Todd Kennedy539db512014-12-15 09:57:55 -08002792 finishActivityLocked(
2793 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002794 }
2795 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002796 if (taskInsertionPoint < 0) {
2797 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002798
Craig Mautner77878772013-03-04 19:46:24 -08002799 }
Craig Mautner77878772013-03-04 19:46:24 -08002800
2801 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002802 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2803 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2804 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002805 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002806 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002807 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002808 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002809
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002810 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2811 "Removing and adding activity " + p + " to stack at " + task
2812 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002813 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2814 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002815 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002816 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002817 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002818 if (VALIDATE_TOKENS) {
2819 validateAppTokensLocked();
2820 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002821
2822 // Now we've moved it in to place... but what if this is
2823 // a singleTop activity and we have put it on top of another
2824 // instance of the same activity? Then we drop the instance
2825 // below so it remains singleTop.
2826 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2827 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002828 int targetNdx = taskActivities.indexOf(target);
2829 if (targetNdx > 0) {
2830 ActivityRecord p = taskActivities.get(targetNdx - 1);
2831 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002832 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2833 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002834 }
2835 }
2836 }
2837 }
2838
2839 replyChainEnd = -1;
2840 }
2841 }
Craig Mautner77878772013-03-04 19:46:24 -08002842 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002843 }
2844
Craig Mautner8849a5e2013-04-02 16:41:03 -07002845 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002846 ActivityRecord newActivity) {
2847 boolean forceReset =
2848 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2849 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2850 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2851 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2852 forceReset = true;
2853 }
2854 }
2855
2856 final TaskRecord task = taskTop.task;
2857
2858 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2859 * for remaining tasks. Used for later tasks to reparent to task. */
2860 boolean taskFound = false;
2861
2862 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2863 ActivityOptions topOptions = null;
2864
Craig Mautner77878772013-03-04 19:46:24 -08002865 // Preserve the location for reparenting in the new task.
2866 int reparentInsertionPoint = -1;
2867
Craig Mautnere3a74d52013-02-22 14:14:58 -08002868 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2869 final TaskRecord targetTask = mTaskHistory.get(i);
2870
2871 if (targetTask == task) {
2872 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2873 taskFound = true;
2874 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002875 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2876 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002877 }
2878 }
2879
Craig Mautner70a86932013-02-28 22:37:44 -08002880 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002881 if (taskNdx >= 0) {
2882 do {
2883 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2884 } while (taskTop == null && taskNdx >= 0);
2885 }
Craig Mautner70a86932013-02-28 22:37:44 -08002886
Craig Mautnere3a74d52013-02-22 14:14:58 -08002887 if (topOptions != null) {
2888 // If we got some ActivityOptions from an activity on top that
2889 // was removed from the task, propagate them to the new real top.
2890 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002891 taskTop.updateOptionsLocked(topOptions);
2892 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002893 topOptions.abort();
2894 }
2895 }
2896
2897 return taskTop;
2898 }
2899
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002900 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2901 String resultWho, int requestCode, int resultCode, Intent data) {
2902
2903 if (callingUid > 0) {
2904 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002905 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002906 }
2907
2908 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2909 + " : who=" + resultWho + " req=" + requestCode
2910 + " res=" + resultCode + " data=" + data);
2911 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2912 try {
2913 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2914 list.add(new ResultInfo(resultWho, requestCode,
2915 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002916 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002917 return;
2918 } catch (Exception e) {
2919 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2920 }
2921 }
2922
2923 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2924 }
2925
Craig Mautner299f9602015-01-26 09:47:33 -08002926 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002927 if (!mStackSupervisor.isFocusedStack(this) || mService.mFocusedActivity != r) {
2928 return;
2929 }
2930
2931 final ActivityRecord next = topRunningActivityLocked();
2932 final String myReason = reason + " adjustFocus";
2933 if (next != r) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002934 if (next != null && StackId.keepFocusInStackIfPossible(mStackId) && isFocusable()) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002935 // For freeform, docked, and pinned stacks we always keep the focus within the
2936 // stack as long as there is a running activity in the stack that we can adjust
2937 // focus to.
2938 mService.setFocusedActivityLocked(next, myReason);
2939 return;
2940 } else {
2941 final TaskRecord task = r.task;
2942 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2943 // For non-fullscreen stack, we want to move the focus to the next visible
2944 // stack to prevent the home screen from moving to the top and obscuring
2945 // other visible stacks.
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002946 if (!mFullscreen && adjustFocusToNextFocusableStackLocked(myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002947 return;
2948 }
2949 // Move the home stack to the top if this stack is fullscreen or there is no
2950 // other visible stack.
2951 if (mStackSupervisor.moveHomeStackTaskToTop(
2952 task.getTaskToReturnTo(), myReason)) {
2953 // Activity focus was already adjusted. Nothing else to do...
2954 return;
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002955 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002956 }
2957 }
Wale Ogunwaled045c822015-12-02 09:14:28 -08002958 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002959
Wale Ogunwaled046a012015-12-24 13:05:59 -08002960 mService.setFocusedActivityLocked(mStackSupervisor.topRunningActivityLocked(), myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07002961 }
2962
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002963 private boolean adjustFocusToNextFocusableStackLocked(String reason) {
2964 final ActivityStack stack = getNextFocusableStackLocked();
2965 final String myReason = reason + " adjustFocusToNextFocusableStack";
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002966 if (stack == null) {
2967 return false;
2968 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08002969 return mService.setFocusedActivityLocked(stack.topRunningActivityLocked(), myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002970 }
2971
Craig Mautnerf3333272013-04-22 10:55:53 -07002972 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002973 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002974 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2975 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2976 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002977 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002978 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07002979 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
2980 "stop-no-history", false)) {
2981 // Activity was finished, no need to continue trying to schedule stop.
2982 adjustFocusedActivityLocked(r, "stopActivityFinished");
2983 r.resumeKeyDispatchingLocked();
2984 return;
2985 }
Christopher Tated3f175c2012-06-14 14:16:54 -07002986 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002987 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002988 + " on stop because we're just sleeping");
2989 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002990 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002991 }
2992
2993 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002994 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002995 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002996 try {
2997 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002998 if (DEBUG_STATES) Slog.v(TAG_STATES,
2999 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003000 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003001 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3002 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003003 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003004 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003005 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08003006 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07003007 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003008 r.setSleeping(true);
3009 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003010 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003011 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003012 } catch (Exception e) {
3013 // Maybe just ignore exceptions here... if the process
3014 // has crashed, our death notification will clean things
3015 // up.
3016 Slog.w(TAG, "Exception thrown during pause", e);
3017 // Just in case, assume it to be stopped.
3018 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003019 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003020 r.state = ActivityState.STOPPED;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003021 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003022 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003023 }
3024 }
3025 }
3026 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07003027
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003028 /**
3029 * @return Returns true if the activity is being finished, false if for
3030 * some reason it is being left as-is.
3031 */
3032 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003033 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003034 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003035 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3036 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07003037 + ", result=" + resultCode + ", data=" + resultData
3038 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003039 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003040 return false;
3041 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003042
Craig Mautnerd44711d2013-02-23 11:24:36 -08003043 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003044 return true;
3045 }
3046
Craig Mautnerd2328952013-03-05 12:46:26 -08003047 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08003048 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3049 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3050 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3051 ActivityRecord r = activities.get(activityNdx);
3052 if (r.resultTo == self && r.requestCode == requestCode) {
3053 if ((r.resultWho == null && resultWho == null) ||
3054 (r.resultWho != null && r.resultWho.equals(resultWho))) {
3055 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3056 false);
3057 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003058 }
3059 }
3060 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003061 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003062 }
3063
Adrian Roos20d7df32016-01-12 18:59:43 +01003064 final TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003065 ActivityRecord r = topRunningActivityLocked();
Adrian Roos20d7df32016-01-12 18:59:43 +01003066 TaskRecord finishedTask = null;
3067 if (r == null || r.app != app) {
3068 return null;
3069 }
3070 Slog.w(TAG, " Force finishing activity "
3071 + r.intent.getComponent().flattenToShortString());
3072 int taskNdx = mTaskHistory.indexOf(r.task);
3073 int activityNdx = r.task.mActivities.indexOf(r);
3074 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
3075 finishedTask = r.task;
3076 // Also terminate any activities below it that aren't yet
3077 // stopped, to avoid a situation where one will get
3078 // re-start our crashing activity once it gets resumed again.
3079 --activityNdx;
3080 if (activityNdx < 0) {
3081 do {
3082 --taskNdx;
3083 if (taskNdx < 0) {
3084 break;
3085 }
3086 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3087 } while (activityNdx < 0);
3088 }
3089 if (activityNdx >= 0) {
3090 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
3091 if (r.state == ActivityState.RESUMED
3092 || r.state == ActivityState.PAUSING
3093 || r.state == ActivityState.PAUSED) {
3094 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
3095 Slog.w(TAG, " Force finishing activity "
3096 + r.intent.getComponent().flattenToShortString());
3097 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003098 }
3099 }
3100 }
Adrian Roos20d7df32016-01-12 18:59:43 +01003101 return finishedTask;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003102 }
3103
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003104 final void finishVoiceTask(IVoiceInteractionSession session) {
3105 IBinder sessionBinder = session.asBinder();
3106 boolean didOne = false;
3107 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3108 TaskRecord tr = mTaskHistory.get(taskNdx);
3109 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3110 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3111 ActivityRecord r = tr.mActivities.get(activityNdx);
3112 if (!r.finishing) {
3113 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3114 false);
3115 didOne = true;
3116 }
3117 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003118 } else {
3119 // Check if any of the activities are using voice
3120 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3121 ActivityRecord r = tr.mActivities.get(activityNdx);
3122 if (r.voiceSession != null
3123 && r.voiceSession.asBinder() == sessionBinder) {
3124 // Inform of cancellation
3125 r.clearVoiceSessionLocked();
3126 try {
3127 r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3128 null);
3129 } catch (RemoteException re) {
3130 // Ok
3131 }
3132 // TODO: VI This is redundant in some cases
3133 mService.finishRunningVoiceLocked();
3134 break;
3135 }
3136 }
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003137 }
3138 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003139 Slog.d(TAG, "ActivityStack.finishVoiceTask()");
3140
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003141 if (didOne) {
3142 mService.updateOomAdjLocked();
3143 }
3144 }
3145
Craig Mautnerd2328952013-03-05 12:46:26 -08003146 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003147 ArrayList<ActivityRecord> activities = r.task.mActivities;
3148 for (int index = activities.indexOf(r); index >= 0; --index) {
3149 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003150 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003151 break;
3152 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003153 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003154 }
3155 return true;
3156 }
3157
Dianne Hackborn5c607432012-02-28 14:44:19 -08003158 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
3159 // send the result
3160 ActivityRecord resultTo = r.resultTo;
3161 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003162 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003163 + " who=" + r.resultWho + " req=" + r.requestCode
3164 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003165 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003166 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003167 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003168 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003169 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003170 if (r.info.applicationInfo.uid > 0) {
3171 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3172 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003173 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003174 }
3175 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3176 resultData);
3177 r.resultTo = null;
3178 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003179 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003180
3181 // Make sure this HistoryRecord is not holding on to other resources,
3182 // because clients have remote IPC references to this object so we
3183 // can't assume that will go away and want to avoid circular IPC refs.
3184 r.results = null;
3185 r.pendingResults = null;
3186 r.newIntents = null;
3187 r.icicle = null;
3188 }
3189
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003190 /**
3191 * @return Returns true if this activity has been removed from the history
3192 * list, or false if it is still in the list and will be removed later.
3193 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003194 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3195 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003196 if (r.finishing) {
3197 Slog.w(TAG, "Duplicate finish request for " + r);
3198 return false;
3199 }
3200
Wale Ogunwale7d701172015-03-11 15:36:30 -07003201 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003202 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003203 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003204 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003205 task.taskId, r.shortComponentName, reason);
3206 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003207 final int index = activities.indexOf(r);
3208 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003209 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003210 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003211 // If the caller asked that this activity (and all above it)
3212 // be cleared when the task is reset, don't lose that information,
3213 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003214 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003215 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003216 }
3217 }
3218
3219 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003220
Craig Mautner299f9602015-01-26 09:47:33 -08003221 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003222
Dianne Hackborn5c607432012-02-28 14:44:19 -08003223 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003224
Craig Mautnerde4ef022013-04-07 19:01:33 -07003225 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003226 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003227 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003228 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003229 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08003230 ? AppTransition.TRANSIT_TASK_CLOSE
3231 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003232
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003233 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003234 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003235
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003236 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003237 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3238 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3239 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003240 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003241 }
3242
Craig Mautneraea74a52014-03-08 14:23:10 -08003243 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003244 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003245 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003246 } else if (r.state != ActivityState.PAUSING) {
3247 // If the activity is PAUSING, we will complete the finish once
3248 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003249 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003250 if (r.visible) {
3251 mWindowManager.setAppVisibility(r.appToken, false);
3252 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08003253 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003254 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003255 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003256 }
3257
3258 return false;
3259 }
3260
Craig Mautnerf3333272013-04-22 10:55:53 -07003261 static final int FINISH_IMMEDIATELY = 0;
3262 static final int FINISH_AFTER_PAUSE = 1;
3263 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003264
Craig Mautnerf3333272013-04-22 10:55:53 -07003265 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003266 // First things first: if this activity is currently visible,
3267 // and the resumed activity is not yet visible, then hold off on
3268 // finishing until the resumed one becomes visible.
3269 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003270 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08003271 addToStopping(r, false /* immediate */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003272 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003273 if (DEBUG_STATES) Slog.v(TAG_STATES,
3274 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003275 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003276 if (oomAdj) {
3277 mService.updateOomAdjLocked();
3278 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003279 return r;
3280 }
3281
3282 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003283 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003284 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003285 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003286 if (mResumedActivity == r) {
3287 mResumedActivity = null;
3288 }
3289 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003290 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003291 r.state = ActivityState.FINISHING;
3292
3293 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003294 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003295 || prevState == ActivityState.STOPPED
3296 || prevState == ActivityState.INITIALIZING) {
3297 // If this activity is already stopped, we can just finish
3298 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003299 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003300 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003301 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003302 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003303 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003304 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003305 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3306 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003307 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003308 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003309
3310 // Need to go through the full pause cycle to get this
3311 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003312 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003313 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003314 r.resumeKeyDispatchingLocked();
Wale Ogunwaled046a012015-12-24 13:05:59 -08003315 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003316 return r;
3317 }
3318
Craig Mautneree36c772014-07-16 14:56:05 -07003319 void finishAllActivitiesLocked(boolean immediately) {
3320 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003321 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3322 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3323 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3324 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003325 noActivitiesInStack = false;
3326 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003327 continue;
3328 }
Craig Mautneree36c772014-07-16 14:56:05 -07003329 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003330 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3331 }
3332 }
Craig Mautneree36c772014-07-16 14:56:05 -07003333 if (noActivitiesInStack) {
3334 mActivityContainer.onTaskListEmptyLocked();
3335 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003336 }
3337
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003338 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3339 // Basic case: for simple app-centric recents, we need to recreate
3340 // the task if the affinity has changed.
3341 if (srec == null || srec.task.affinity == null ||
3342 !srec.task.affinity.equals(destAffinity)) {
3343 return true;
3344 }
3345 // Document-centric case: an app may be split in to multiple documents;
3346 // they need to re-create their task if this current activity is the root
3347 // of a document, unless simply finishing it will return them to the the
3348 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003349 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3350 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003351 // Okay, this activity is at the root of its task. What to do, what to do...
3352 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3353 // Finishing won't return to an application, so we need to recreate.
3354 return true;
3355 }
3356 // We now need to get the task below it to determine what to do.
3357 int taskIdx = mTaskHistory.indexOf(srec.task);
3358 if (taskIdx <= 0) {
3359 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3360 return false;
3361 }
3362 if (taskIdx == 0) {
3363 // At the bottom of the stack, nothing to go back to.
3364 return true;
3365 }
3366 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3367 if (!srec.task.affinity.equals(prevTask.affinity)) {
3368 // These are different apps, so need to recreate.
3369 return true;
3370 }
3371 }
3372 return false;
3373 }
3374
Wale Ogunwale7d701172015-03-11 15:36:30 -07003375 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003376 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003377 final TaskRecord task = srec.task;
3378 final ArrayList<ActivityRecord> activities = task.mActivities;
3379 final int start = activities.indexOf(srec);
3380 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003381 return false;
3382 }
3383 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003384 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003385 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003386 final ComponentName dest = destIntent.getComponent();
3387 if (start > 0 && dest != null) {
3388 for (int i = finishTo; i >= 0; i--) {
3389 ActivityRecord r = activities.get(i);
3390 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003391 r.info.name.equals(dest.getClassName())) {
3392 finishTo = i;
3393 parent = r;
3394 foundParentInTask = true;
3395 break;
3396 }
3397 }
3398 }
3399
3400 IActivityController controller = mService.mController;
3401 if (controller != null) {
3402 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3403 if (next != null) {
3404 // ask watcher if this is allowed
3405 boolean resumeOK = true;
3406 try {
3407 resumeOK = controller.activityResuming(next.packageName);
3408 } catch (RemoteException e) {
3409 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003410 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003411 }
3412
3413 if (!resumeOK) {
3414 return false;
3415 }
3416 }
3417 }
3418 final long origId = Binder.clearCallingIdentity();
3419 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003420 ActivityRecord r = activities.get(i);
3421 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003422 // Only return the supplied result for the first activity finished
3423 resultCode = Activity.RESULT_CANCELED;
3424 resultData = null;
3425 }
3426
3427 if (parent != null && foundParentInTask) {
3428 final int parentLaunchMode = parent.info.launchMode;
3429 final int destIntentFlags = destIntent.getFlags();
3430 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3431 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3432 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3433 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003434 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3435 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003436 } else {
3437 try {
3438 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3439 destIntent.getComponent(), 0, srec.userId);
Filip Gruszczynski303210b2016-01-08 16:28:08 -08003440 int res = mService.mActivityStarter.startActivityLocked(srec.app.thread,
3441 destIntent, null /*ephemeralIntent*/, null, aInfo, null /*rInfo*/, null,
3442 null, parent.appToken, null, 0, -1, parent.launchedFromUid,
Todd Kennedy7440f172015-12-09 14:31:22 -08003443 parent.launchedFromPackage, -1, parent.launchedFromUid, 0, null,
3444 false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003445 foundParentInTask = res == ActivityManager.START_SUCCESS;
3446 } catch (RemoteException e) {
3447 foundParentInTask = false;
3448 }
3449 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003450 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003451 }
3452 }
3453 Binder.restoreCallingIdentity(origId);
3454 return foundParentInTask;
3455 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003456 /**
3457 * Perform the common clean-up of an activity record. This is called both
3458 * as part of destroyActivityLocked() (when destroying the client-side
3459 * representation) and cleaning things up as a result of its hosting
3460 * processing going away, in which case there is no remaining client-side
3461 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003462 *
3463 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003464 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003465 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3466 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003467 if (mResumedActivity == r) {
3468 mResumedActivity = null;
3469 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003470 if (mPausingActivity == r) {
3471 mPausingActivity = null;
3472 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003473 mService.resetFocusedActivityIfNeededLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003474
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003475 r.deferRelaunchUntilPaused = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003476 r.frozenBeforeDestroy = false;
3477
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003478 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003479 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003480 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003481 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003482 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003483 }
3484
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003485 // Make sure this record is no longer in the pending finishes list.
3486 // This could happen, for example, if we are trimming activities
3487 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003488 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003489 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003490
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003491 // Remove any pending results.
3492 if (r.finishing && r.pendingResults != null) {
3493 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3494 PendingIntentRecord rec = apr.get();
3495 if (rec != null) {
3496 mService.cancelIntentSenderLocked(rec, false);
3497 }
3498 }
3499 r.pendingResults = null;
3500 }
3501
3502 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003503 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003504 }
3505
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003506 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003507 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003508 if (getVisibleBehindActivity() == r) {
3509 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003510 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003511 }
3512
3513 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003514 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003515 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003516 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003517 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003518 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003519 }
3520
Craig Mautner299f9602015-01-26 09:47:33 -08003521 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003522 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003523 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003524 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003525 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3526 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3527
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003528 r.takeFromHistory();
3529 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003530 if (DEBUG_STATES) Slog.v(TAG_STATES,
3531 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003532 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003533 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003534 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003535 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003536 if (VALIDATE_TOKENS) {
3537 validateAppTokensLocked();
3538 }
Craig Mautner312ba862014-02-10 17:55:01 -08003539 final TaskRecord task = r.task;
3540 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003541 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003542 "removeActivityFromHistoryLocked: last activity removed from " + this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07003543 if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
Craig Mautner84984fa2014-06-19 11:19:20 -07003544 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003545 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003546 }
Craig Mautner299f9602015-01-26 09:47:33 -08003547 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003548 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003549 cleanUpActivityServicesLocked(r);
3550 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003551 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003552
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003553 /**
3554 * Perform clean-up of service connections in an activity record.
3555 */
3556 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3557 // Throw away any services that have been bound by this activity.
3558 if (r.connections != null) {
3559 Iterator<ConnectionRecord> it = r.connections.iterator();
3560 while (it.hasNext()) {
3561 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003562 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003563 }
3564 r.connections = null;
3565 }
3566 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003567
Craig Mautneree2e45a2014-06-27 12:10:03 -07003568 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003569 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003570 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003571 mHandler.sendMessage(msg);
3572 }
3573
Craig Mautneree2e45a2014-06-27 12:10:03 -07003574 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003575 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003576 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003577 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3578 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3579 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3580 final ActivityRecord r = activities.get(activityNdx);
3581 if (r.finishing) {
3582 continue;
3583 }
3584 if (r.fullscreen) {
3585 lastIsOpaque = true;
3586 }
3587 if (owner != null && r.app != owner) {
3588 continue;
3589 }
3590 if (!lastIsOpaque) {
3591 continue;
3592 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003593 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003594 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003595 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003596 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003597 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003598 activityRemoved = true;
3599 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003600 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003601 }
3602 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003603 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003604 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003605 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003606 }
3607
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003608 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3609 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003610 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3611 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003612 + " pausing=" + mPausingActivity + " for reason " + reason);
3613 return destroyActivityLocked(r, true, reason);
3614 }
3615 return false;
3616 }
3617
3618 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3619 String reason) {
3620 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003621 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003622 int maxTasks = tasks.size() / 4;
3623 if (maxTasks < 1) {
3624 maxTasks = 1;
3625 }
3626 int numReleased = 0;
3627 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3628 final TaskRecord task = mTaskHistory.get(taskNdx);
3629 if (!tasks.contains(task)) {
3630 continue;
3631 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003632 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003633 int curNum = 0;
3634 final ArrayList<ActivityRecord> activities = task.mActivities;
3635 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3636 final ActivityRecord activity = activities.get(actNdx);
3637 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003638 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003639 + " in state " + activity.state + " resumed=" + mResumedActivity
3640 + " pausing=" + mPausingActivity + " for reason " + reason);
3641 destroyActivityLocked(activity, true, reason);
3642 if (activities.get(actNdx) != activity) {
3643 // Was removed from list, back up so we don't miss the next one.
3644 actNdx--;
3645 }
3646 curNum++;
3647 }
3648 }
3649 if (curNum > 0) {
3650 numReleased += curNum;
3651 maxTasks--;
3652 if (mTaskHistory.get(taskNdx) != task) {
3653 // The entire task got removed, back up so we don't miss the next one.
3654 taskNdx--;
3655 }
3656 }
3657 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003658 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3659 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003660 return numReleased;
3661 }
3662
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003663 /**
3664 * Destroy the current CLIENT SIDE instance of an activity. This may be
3665 * called both when actually finishing an activity, or when performing
3666 * a configuration switch where we destroy the current client-side object
3667 * but then create a new client-side object for this same HistoryRecord.
3668 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003669 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003670 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3671 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07003672 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003673 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003674 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003675 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003676
3677 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003678
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003679 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003680
3681 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003682
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003683 if (hadApp) {
3684 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003685 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003686 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3687 mService.mHeavyWeightProcess = null;
3688 mService.mHandler.sendEmptyMessage(
3689 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3690 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003691 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003692 // Update any services we are bound to that might care about whether
3693 // their client may have activities.
3694 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003695 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003696 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003697 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003698 }
3699 }
3700
3701 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003702
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003703 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003704 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003705 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003706 r.configChangeFlags);
3707 } catch (Exception e) {
3708 // We can just ignore exceptions here... if the process
3709 // has crashed, our death notification will clean things
3710 // up.
3711 //Slog.w(TAG, "Exception thrown during finish", e);
3712 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003713 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003714 removedFromHistory = true;
3715 skipDestroy = true;
3716 }
3717 }
3718
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003719 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003720
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003721 // If the activity is finishing, we need to wait on removing it
3722 // from the list to give it a chance to do its cleanup. During
3723 // that time it may make calls back with its token so we need to
3724 // be able to find it on the list and so we don't want to remove
3725 // it from the list yet. Otherwise, we can just immediately put
3726 // it in the destroyed state since we are not removing it from the
3727 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003728 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003729 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003730 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003731 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003732 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003733 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3734 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003735 if (DEBUG_STATES) Slog.v(TAG_STATES,
3736 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003737 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003738 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003739 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003740 }
3741 } else {
3742 // remove this record from the history.
3743 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003744 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003745 removedFromHistory = true;
3746 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003747 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003748 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003749 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003750 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003751 }
3752 }
3753
3754 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003755
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003756 if (!mLRUActivities.remove(r) && hadApp) {
3757 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3758 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003759
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003760 return removedFromHistory;
3761 }
3762
Craig Mautner299f9602015-01-26 09:47:33 -08003763 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003764 final long origId = Binder.clearCallingIdentity();
3765 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003766 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003767 if (r != null) {
3768 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003769 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003770 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003771
Wale Ogunwale60454db2015-01-23 16:05:07 -08003772 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003773 if (r.state == ActivityState.DESTROYING) {
3774 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003775 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003776 }
3777 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003778 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003779 } finally {
3780 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003781 }
3782 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003783
Todd Kennedyaab56db2015-01-30 09:39:53 -08003784 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003785 if (hasVisibleBehindActivity() &&
3786 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08003787 if (r == topRunningActivityLocked() && getStackVisibilityLocked() == STACK_VISIBLE) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003788 // Don't release the top activity if it has requested to run behind the next
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08003789 // activity and the stack is currently visible.
Craig Mautner64ccb702014-10-01 09:38:40 -07003790 return;
3791 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003792 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003793 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003794 " thread=" + r.app.thread);
3795 if (r != null && r.app != null && r.app.thread != null) {
3796 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003797 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003798 } catch (RemoteException e) {
3799 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003800 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003801 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003802 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003803 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003804 }
3805 }
3806 }
3807
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003808 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003809 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3810 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003811 if (r != null) {
3812 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003813 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003814 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003815 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003816 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003817 }
3818
Jose Lima4b6c6692014-08-12 17:41:12 -07003819 boolean hasVisibleBehindActivity() {
3820 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003821 }
3822
Jose Lima4b6c6692014-08-12 17:41:12 -07003823 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003824 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003825 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003826 }
3827 }
3828
Jose Lima4b6c6692014-08-12 17:41:12 -07003829 ActivityRecord getVisibleBehindActivity() {
3830 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003831 }
3832
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003833 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3834 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003835 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003836 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3837 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003838 while (i > 0) {
3839 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003840 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003841 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003842 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003843 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003844 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003845 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003846 }
3847 }
3848 }
3849
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003850 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3851 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003852 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3853 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003854 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3855 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003856 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003857 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003858 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3859 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003860
3861 boolean hasVisibleActivities = false;
3862
3863 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003864 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003865 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3866 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003867 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3868 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3869 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3870 final ActivityRecord r = activities.get(activityNdx);
3871 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003872 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3873 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003874 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003875 if (r.visible) {
3876 hasVisibleActivities = true;
3877 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003878 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003879 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3880 // Don't currently have state for the activity, or
3881 // it is finishing -- always remove it.
3882 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08003883 } else if (!r.visible && r.launchCount > 2 &&
3884 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003885 // We have launched this activity too many times since it was
3886 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08003887 // (Note if the activity is visible, we don't remove the record.
3888 // We leave the dead window on the screen but the process will
3889 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08003890 remove = true;
3891 } else {
3892 // The process may be gone, but the activity lives on!
3893 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003894 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003895 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003896 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3897 "Removing activity " + r + " from stack at " + i
3898 + ": haveState=" + r.haveState
3899 + " stateNotNeeded=" + r.stateNotNeeded
3900 + " finishing=" + r.finishing
3901 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003902 if (!r.finishing) {
3903 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3904 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3905 r.userId, System.identityHashCode(r),
3906 r.task.taskId, r.shortComponentName,
3907 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003908 if (r.state == ActivityState.RESUMED) {
3909 mService.updateUsageStats(r, false);
3910 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003911 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003912 } else {
3913 // We have the current state for this activity, so
3914 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003915 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3916 if (DEBUG_APP) Slog.v(TAG_APP,
3917 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003918 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08003919 // Set nowVisible to previous visible state. If the app was visible while
3920 // it died, we leave the dead window on screen so it's basically visible.
3921 // This is needed when user later tap on the dead window, we need to stop
3922 // other apps when user transfers focus to the restarted activity.
3923 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08003924 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003925 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003926 "App died, clearing saved state of " + r);
3927 r.icicle = null;
3928 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003929 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003930 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003931 if (remove) {
3932 removeActivityFromHistoryLocked(r, "appDied");
3933 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003934 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003935 }
3936 }
3937
3938 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003939 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003940
Chong Zhang280d3322015-11-03 17:27:26 -08003941 final void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003942 if (options != null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003943 ActivityRecord r = topRunningActivityLocked();
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003944 if (r != null && r.state != ActivityState.RESUMED) {
3945 r.updateOptionsLocked(options);
3946 } else {
3947 ActivityOptions.abort(options);
3948 }
3949 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003950 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003951 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003952
Craig Mautner21d24a22014-04-23 11:45:37 -07003953 void updateTaskMovement(TaskRecord task, boolean toFront) {
3954 if (task.isPersistable) {
3955 task.mLastTimeMoved = System.currentTimeMillis();
3956 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3957 // recently will be most negative, tasks sent to the bottom before that will be less
3958 // negative. Similarly for recent tasks moved to the top which will be most positive.
3959 if (!toFront) {
3960 task.mLastTimeMoved *= -1;
3961 }
3962 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07003963 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07003964 }
3965
Craig Mautner84984fa2014-06-19 11:19:20 -07003966 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003967 final int top = mTaskHistory.size() - 1;
3968 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3969 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003970 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003971 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3972 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003973 mTaskHistory.remove(taskNdx);
3974 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003975 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003976 return;
3977 }
3978 }
3979 }
3980
Chong Zhang280d3322015-11-03 17:27:26 -08003981 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003982 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003983 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003984
Craig Mautner11bf9a52013-02-19 14:08:51 -08003985 final int numTasks = mTaskHistory.size();
3986 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003987 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003988 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003989 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003990 ActivityOptions.abort(options);
3991 } else {
3992 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3993 }
3994 return;
3995 }
3996
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003997 if (timeTracker != null) {
3998 // The caller wants a time tracker associated with this task.
3999 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4000 tr.mActivities.get(i).appTimeTracker = timeTracker;
4001 }
4002 }
4003
Craig Mautner11bf9a52013-02-19 14:08:51 -08004004 // Shift all activities with this task up to the top
4005 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004006 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004007
Chong Zhang45c25ce2015-08-10 22:18:26 -07004008 // Don't refocus if invisible to current user
4009 ActivityRecord top = tr.getTopActivity();
4010 if (!okToShowLocked(top)) {
4011 addRecentActivityLocked(top);
4012 ActivityOptions.abort(options);
4013 return;
4014 }
4015
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004016 // Set focus to the top running activity of this stack.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004017 ActivityRecord r = topRunningActivityLocked();
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004018 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004019
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004020 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004021 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004022 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004023 if (r != null) {
4024 mNoAnimActivities.add(r);
4025 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07004026 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004027 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08004028 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004029 }
Craig Mautner30e2d722013-02-12 11:30:16 -08004030
Wale Ogunwaled046a012015-12-24 13:05:59 -08004031 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautner58547802013-03-05 08:23:53 -08004032 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004033
4034 if (VALIDATE_TOKENS) {
4035 validateAppTokensLocked();
4036 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004037 }
4038
4039 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004040 * Worker method for rearranging history stack. Implements the function of moving all
4041 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004042 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004043 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004044 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4045 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004046 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004047 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004048 * @return Returns true if the move completed, false if not.
4049 */
Craig Mautner299f9602015-01-26 09:47:33 -08004050 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004051 final TaskRecord tr = taskForIdLocked(taskId);
4052 if (tr == null) {
4053 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4054 return false;
4055 }
4056
4057 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07004058 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004059
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004060 // If we have a watcher, preflight the move before committing to it. First check
4061 // for *other* available tasks, but if none are available, then try again allowing the
4062 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07004063 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004064 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004065 if (next == null) {
4066 next = topRunningActivityLocked(null, 0);
4067 }
4068 if (next != null) {
4069 // ask watcher if this is allowed
4070 boolean moveOK = true;
4071 try {
4072 moveOK = mService.mController.activityResuming(next.packageName);
4073 } catch (RemoteException e) {
4074 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07004075 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004076 }
4077 if (!moveOK) {
4078 return false;
4079 }
4080 }
4081 }
4082
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004083 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004084
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004085 if (mStackId == HOME_STACK_ID && topTask().isHomeTask()) {
4086 // For the case where we are moving the home task back and there is an activity visible
4087 // behind it on the fullscreen stack, we want to move the focus to the visible behind
4088 // activity to maintain order with what the user is seeing.
4089 final ActivityStack fullscreenStack =
4090 mStackSupervisor.getStack(FULLSCREEN_WORKSPACE_STACK_ID);
4091 if (fullscreenStack != null && fullscreenStack.hasVisibleBehindActivity()) {
4092 final ActivityRecord visibleBehind = fullscreenStack.getVisibleBehindActivity();
4093 mService.setFocusedActivityLocked(visibleBehind, "moveTaskToBack");
Wale Ogunwaled046a012015-12-24 13:05:59 -08004094 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004095 return true;
4096 }
4097 }
4098
riddle_hsuc215a4f2014-12-27 12:10:45 +08004099 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07004100
4101 // If true, we should resume the home activity next if the task we are moving to the
4102 // back is over the home stack. We force to false if the task we are moving to back
4103 // is the home task and we don't want it resumed after moving to the back.
4104 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4105 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08004106 final TaskRecord nextTask = getNextTask(tr);
4107 if (nextTask != null) {
4108 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4109 } else {
4110 prevIsHome = true;
4111 }
4112 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08004113 mTaskHistory.remove(tr);
4114 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07004115 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004116
Craig Mautnerc8143c62013-09-03 12:15:57 -07004117 // There is an assumption that moving a task to the back moves it behind the home activity.
4118 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07004119 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004120 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4121 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004122 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07004123 break;
4124 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004125 if (taskNdx == 1) {
4126 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07004127 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004128 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004129 }
4130
Craig Mautner299f9602015-01-26 09:47:33 -08004131 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004132 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004133
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004134 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08004135 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004136 }
4137
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004138 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07004139 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07004140 if (!mService.mBooting && !mService.mBooted) {
4141 // Not ready yet!
4142 return false;
4143 }
Craig Mautner84984fa2014-06-19 11:19:20 -07004144 final int taskToReturnTo = tr.getTaskToReturnTo();
4145 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08004146 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004147 }
4148
Wale Ogunwaled046a012015-12-24 13:05:59 -08004149 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004150 return true;
4151 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004152
Craig Mautner8849a5e2013-04-02 16:41:03 -07004153 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004154 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004155 final Uri data = r.intent.getData();
4156 final String strData = data != null ? data.toSafeString() : null;
4157
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004158 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004159 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004160 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004161 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004162 }
4163
4164 /**
4165 * Make sure the given activity matches the current configuration. Returns
4166 * false if the activity had to be destroyed. Returns true if the
4167 * configuration is the same, or the activity will remain running as-is
4168 * for whatever reason. Ensures the HistoryRecord is updated with the
4169 * correct configuration and all other bookkeeping is handled.
4170 */
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004171 final boolean ensureActivityConfigurationLocked(ActivityRecord r, int globalChanges,
4172 boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004173 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004174 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004175 "Skipping config check (will change): " + r);
4176 return true;
4177 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004178
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004179 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004180 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004181
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004182 // Short circuit: if the two configurations are the exact same
4183 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004184 final Configuration newConfig = mService.mConfiguration;
4185 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004186 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004187 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08004188 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004189 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004190 "Configuration unchanged in " + r);
4191 return true;
4192 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004193
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004194 // We don't worry about activities that are finishing.
4195 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004196 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004197 "Configuration doesn't matter in finishing " + r);
4198 r.stopFreezingScreenLocked(false);
4199 return true;
4200 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004201
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004202 // Okay we now are going to make this activity have the new config.
4203 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004204 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004205 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004206 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004207 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004208
Filip Gruszczynski23493322015-07-29 17:02:59 -07004209 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004210 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004211 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004212 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004213 "Configuration no differences in " + r);
Filip Gruszczynskica664812015-12-04 12:43:36 -08004214 // There are no significant differences, so we won't relaunch but should still deliver
4215 // the new configuration to the client process.
4216 r.scheduleConfigurationChanged(taskConfig, false);
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004217 return true;
4218 }
4219
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07004220 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4221 "Configuration changes for " + r + " ; taskChanges="
4222 + Configuration.configurationDiffToString(taskChanges) + ", allChanges="
4223 + Configuration.configurationDiffToString(changes));
4224
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004225 // If the activity isn't currently running, just leave the new
4226 // configuration and it will pick that up next time it starts.
4227 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004228 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004229 "Configuration doesn't matter not running " + r);
4230 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004231 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004232 return true;
4233 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004234
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004235 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004236 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4237 "Checking to restart " + r.info.name + ": changed=0x"
4238 + Integer.toHexString(changes) + ", handles=0x"
Filip Gruszczynskica664812015-12-04 12:43:36 -08004239 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig
4240 + ", taskConfig=" + taskConfig);
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004241
Dianne Hackborne6676352011-06-01 16:51:20 -07004242 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004243 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4244 r.configChangeFlags |= changes;
4245 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004246 r.forceNewConfig = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004247 preserveWindow &= isResizeOnlyChange(changes);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004248 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004249 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004250 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004251 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004252 } else if (r.state == ActivityState.PAUSING) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004253 // A little annoying: we are waiting for this activity to finish pausing. Let's not
4254 // do anything now, but just flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004255 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004256 "Config is skipping already pausing " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004257 r.deferRelaunchUntilPaused = true;
4258 r.preserveWindowOnDeferredRelaunch = preserveWindow;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004259 return true;
4260 } else if (r.state == ActivityState.RESUMED) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004261 // Try to optimize this case: the configuration is changing and we need to restart
4262 // the top, resumed activity. Instead of doing the normal handshaking, just say
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004263 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004264 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004265 "Config is relaunching resumed " + r);
Chong Zhang2b79af12016-02-10 18:47:06 -08004266
4267 if (DEBUG_STATES && !r.visible) {
4268 Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + r
4269 + " called by " + Debug.getCallers(4));
4270 }
4271
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004272 relaunchActivityLocked(r, r.configChangeFlags, true, preserveWindow);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004273 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004274 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004275 "Config is relaunching non-resumed " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004276 relaunchActivityLocked(r, r.configChangeFlags, false, preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004277 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004278
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004279 // All done... tell the caller we weren't able to keep this activity around.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004280 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004281 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004282
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004283 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004284 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004285 // changes is always sent to all processes when they happen so it can just use whatever
4286 // system level configuration it last got.
Filip Gruszczynskica664812015-12-04 12:43:36 -08004287 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004288 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004289
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004290 return true;
4291 }
4292
Filip Gruszczynski23493322015-07-29 17:02:59 -07004293 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4294 Configuration oldTaskOverride) {
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08004295
4296 // If we went from full-screen to non-full-screen, make sure to use the correct
4297 // configuration task diff, so the diff stays as small as possible.
4298 if (Configuration.EMPTY.equals(oldTaskOverride)
4299 && !Configuration.EMPTY.equals(taskConfig)) {
4300 oldTaskOverride = record.task.extractOverrideConfig(record.configuration);
4301 }
4302
Jorim Jaggi1b025a62016-02-03 19:27:49 -08004303 // Conversely, do the same when going the other direction.
4304 if (Configuration.EMPTY.equals(taskConfig)
4305 && !Configuration.EMPTY.equals(oldTaskOverride)) {
4306 taskConfig = record.task.extractOverrideConfig(record.configuration);
4307 }
4308
Filip Gruszczynski23493322015-07-29 17:02:59 -07004309 // Determine what has changed. May be nothing, if this is a config
4310 // that has come back from the app after going idle. In that case
4311 // we just want to leave the official config object now in the
4312 // activity and do nothing else.
4313 int taskChanges = oldTaskOverride.diff(taskConfig);
4314 // We don't want to use size changes if they don't cross boundaries that are important to
4315 // the app.
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004316 if ((taskChanges & CONFIG_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004317 final boolean crosses = record.crossesHorizontalSizeThreshold(
4318 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4319 || record.crossesVerticalSizeThreshold(
4320 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4321 if (!crosses) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004322 taskChanges &= ~CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004323 }
4324 }
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004325 if ((taskChanges & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004326 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4327 final int newSmallest = taskConfig.smallestScreenWidthDp;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -07004328 if (!record.crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004329 taskChanges &= ~CONFIG_SMALLEST_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004330 }
4331 }
4332 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4333 }
4334
4335 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4336 Configuration oldTaskOverride, int taskChanges) {
4337 if (taskChanges == 0) {
4338 // {@link Configuration#diff} doesn't catch changes from unset values.
4339 // Check for changes we care about.
4340 if (oldTaskOverride.orientation != taskConfig.orientation) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004341 taskChanges |= CONFIG_ORIENTATION;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004342 }
4343 // We want to explicitly track situations where the size configuration goes from
4344 // undefined to defined. We don't care about crossing the threshold in that case,
4345 // because there is no threshold.
4346 final int oldHeight = oldTaskOverride.screenHeightDp;
4347 final int newHeight = taskConfig.screenHeightDp;
4348 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4349 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4350 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004351 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004352 }
4353 final int oldWidth = oldTaskOverride.screenWidthDp;
4354 final int newWidth = taskConfig.screenWidthDp;
4355 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4356 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4357 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004358 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004359 }
4360 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4361 final int newSmallest = taskConfig.smallestScreenWidthDp;
4362 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4363 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4364 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004365 taskChanges |= CONFIG_SMALLEST_SCREEN_SIZE;
4366 }
4367 final int oldLayout = oldTaskOverride.screenLayout;
4368 final int newLayout = taskConfig.screenLayout;
4369 if ((oldLayout == SCREENLAYOUT_UNDEFINED && newLayout != SCREENLAYOUT_UNDEFINED)
4370 || (oldLayout != SCREENLAYOUT_UNDEFINED && newLayout == SCREENLAYOUT_UNDEFINED)) {
4371 taskChanges |= CONFIG_SCREEN_LAYOUT;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004372 }
4373 }
4374 return taskChanges;
4375 }
4376
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004377 private static boolean isResizeOnlyChange(int change) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004378 return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
4379 | CONFIG_SCREEN_LAYOUT)) == 0;
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004380 }
4381
Wale Ogunwale83301a92015-09-24 15:54:08 -07004382 private void relaunchActivityLocked(
4383 ActivityRecord r, int changes, boolean andResume, boolean preserveWindow) {
4384 if (mService.mSuppressResizeConfigChanges && preserveWindow) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004385 r.configChangeFlags = 0;
Wale Ogunwale83301a92015-09-24 15:54:08 -07004386 return;
4387 }
4388
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004389 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004390 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004391 if (andResume) {
4392 results = r.results;
4393 newIntents = r.newIntents;
4394 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004395 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4396 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004397 + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004398 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004399 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004400 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004401
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004402 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004403
Craig Mautner34b73df2014-01-12 21:11:08 -08004404 mStackSupervisor.removeChildActivityContainers(r);
4405
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004406 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004407 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08004408 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r
4409 + " callers=" + Debug.getCallers(6));
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004410 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004411 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4412 !andResume, new Configuration(mService.mConfiguration),
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004413 new Configuration(r.task.mOverrideConfig), preserveWindow);
Jorim Jaggife89d122015-12-22 16:28:44 +01004414 mStackSupervisor.activityRelaunchingLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004415 // Note: don't need to call pauseIfSleepingLocked() here, because
4416 // the caller will only pass in 'andResume' if this activity is
4417 // currently resumed, which implies we aren't sleeping.
4418 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004419 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004420 }
4421
4422 if (andResume) {
Chong Zhang2b79af12016-02-10 18:47:06 -08004423 if (DEBUG_STATES) {
4424 Slog.d(TAG_STATES, "Resumed after relaunch " + r);
4425 }
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004426 r.state = ActivityState.RESUMED;
Chong Zhang2b79af12016-02-10 18:47:06 -08004427 // Relaunch-resume could happen either when the app is already in the front,
4428 // or while it's being brought to front. In the latter case, it's marked RESUMED
4429 // but not yet visible (or stopped). We need to complete the resume here as the
4430 // code in resumeTopActivityInnerLocked to complete the resume might be skipped.
4431 if (!r.visible || r.stopped) {
4432 mWindowManager.setAppVisibility(r.appToken, true);
4433 completeResumeLocked(r);
4434 } else {
4435 r.results = null;
4436 r.newIntents = null;
4437 }
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004438 } else {
4439 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4440 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004441 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004442
4443 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004444 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004445
4446 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004447 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4448 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4449 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4450 final ActivityRecord r = activities.get(activityNdx);
4451 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004452 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004453 }
4454 if (r.fullscreen && !r.finishing) {
4455 return false;
4456 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004457 }
4458 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004459 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004460 if (r == null) {
4461 return false;
4462 }
4463 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4464 + " would have returned true for r=" + r);
4465 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004466 }
4467
4468 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004469 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4470 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4471 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4472 final ActivityRecord r = activities.get(activityNdx);
4473 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004474 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004475 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004476 }
4477 }
4478 }
4479
Wale Ogunwale540e1232015-05-01 15:35:39 -07004480 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4481 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004482 boolean didSomething = false;
4483 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004484 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004485 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4486 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4487 int numActivities = activities.size();
4488 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4489 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004490 final boolean sameComponent =
4491 (r.packageName.equals(packageName) && (filterByClasses == null
4492 || filterByClasses.contains(r.realActivity.getClassName())))
4493 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004494 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004495 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004496 && (r.app == null || evenPersistent || !r.app.persistent)) {
4497 if (!doit) {
4498 if (r.finishing) {
4499 // If this activity is just finishing, then it is not
4500 // interesting as far as something to stop.
4501 continue;
4502 }
4503 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004504 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004505 if (r.isHomeActivity()) {
4506 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4507 Slog.i(TAG, "Skip force-stop again " + r);
4508 continue;
4509 } else {
4510 homeActivity = r.realActivity;
4511 }
4512 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004513 didSomething = true;
4514 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004515 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004516 if (r.app != null) {
4517 r.app.removed = true;
4518 }
4519 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004520 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004521 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004522 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4523 true)) {
4524 // r has been deleted from mActivities, accommodate.
4525 --numActivities;
4526 --activityNdx;
4527 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004528 }
4529 }
4530 }
4531 return didSomething;
4532 }
4533
Dianne Hackborn09233282014-04-30 11:33:59 -07004534 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004535 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4536 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004537 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004538 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004539 if (task.getTopActivity() == null) {
4540 continue;
4541 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004542 ActivityRecord r = null;
4543 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004544 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004545 int numActivities = 0;
4546 int numRunning = 0;
4547 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004548 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004549 continue;
4550 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004551 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004552 tmp = activities.get(activityNdx);
4553 if (tmp.finishing) {
4554 continue;
4555 }
4556 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004557
Craig Mautneraab647e2013-02-28 16:31:36 -08004558 // Initialize state for next task if needed.
4559 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4560 top = r;
4561 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004562 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004563
4564 // Add 'r' into the current task.
4565 numActivities++;
4566 if (r.app != null && r.app.thread != null) {
4567 numRunning++;
4568 }
4569
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004570 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004571 TAG, r.intent.getComponent().flattenToShortString()
4572 + ": task=" + r.task);
4573 }
4574
4575 RunningTaskInfo ci = new RunningTaskInfo();
4576 ci.id = task.taskId;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07004577 ci.stackId = mStackId;
Craig Mautneraab647e2013-02-28 16:31:36 -08004578 ci.baseActivity = r.intent.getComponent();
4579 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004580 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004581 if (focusedStack && topTask) {
4582 // Give the latest time to ensure foreground task can be sorted
4583 // at the first, because lastActiveTime of creating task is 0.
4584 ci.lastActiveTime = System.currentTimeMillis();
4585 topTask = false;
4586 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004587
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004588 if (top.task != null) {
4589 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004590 }
4591 ci.numActivities = numActivities;
4592 ci.numRunning = numRunning;
Wale Ogunwale21b60582016-01-27 12:34:16 -08004593 ci.isDockable = task.canGoInDockedStack();
Craig Mautneraab647e2013-02-28 16:31:36 -08004594 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004595 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004596 }
4597
4598 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004599 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004600 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004601 if (top >= 0) {
4602 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4603 int activityTop = activities.size() - 1;
4604 if (activityTop > 0) {
4605 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4606 "unhandled-back", true);
4607 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004608 }
4609 }
4610
Craig Mautner6b74cb52013-09-27 17:02:21 -07004611 /**
4612 * Reset local parameters because an app's activity died.
4613 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004614 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004615 */
4616 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004617 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004618 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004619 "App died while pausing: " + mPausingActivity);
4620 mPausingActivity = null;
4621 }
4622 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4623 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004624 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004625 }
4626
Craig Mautner19091252013-10-05 00:03:53 -07004627 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004628 }
4629
Craig Mautnercae015f2013-02-08 14:31:27 -08004630 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004631 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4632 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4633 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4634 final ActivityRecord r = activities.get(activityNdx);
4635 if (r.app == app) {
4636 Slog.w(TAG, " Force finishing activity "
4637 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004638 // Force the destroy to skip right to removal.
4639 r.app = null;
4640 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004641 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004642 }
4643 }
4644 }
4645
Dianne Hackborn390517b2013-05-30 15:03:32 -07004646 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004647 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004648 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004649 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4650 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004651 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4652 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004653 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07004654 " Task id #" + task.taskId + "\n" +
4655 " mFullscreen=" + task.mFullscreen + "\n" +
4656 " mBounds=" + task.mBounds + "\n" +
4657 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004658 if (printed) {
4659 header = null;
4660 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004661 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004662 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004663 }
4664
4665 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4666 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4667
4668 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004669 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4670 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004671 }
4672 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004673 final int top = mTaskHistory.size() - 1;
4674 if (top >= 0) {
4675 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4676 int listTop = list.size() - 1;
4677 if (listTop >= 0) {
4678 activities.add(list.get(listTop));
4679 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004680 }
4681 } else {
4682 ItemMatcher matcher = new ItemMatcher();
4683 matcher.build(name);
4684
Craig Mautneraab647e2013-02-28 16:31:36 -08004685 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4686 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4687 if (matcher.match(r1, r1.intent.getComponent())) {
4688 activities.add(r1);
4689 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004690 }
4691 }
4692 }
4693
4694 return activities;
4695 }
4696
4697 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004698 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08004699
4700 // All activities that came from the package must be
4701 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004702 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4703 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4704 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4705 final ActivityRecord a = activities.get(activityNdx);
4706 if (a.info.packageName.equals(packageName)) {
4707 a.forceNewConfig = true;
4708 if (starting != null && a == starting && a.visible) {
4709 a.startFreezingScreenLocked(starting.app,
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004710 CONFIG_SCREEN_LAYOUT);
Craig Mautneraab647e2013-02-28 16:31:36 -08004711 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004712 }
4713 }
4714 }
4715
4716 return starting;
4717 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004718
Craig Mautner299f9602015-01-26 09:47:33 -08004719 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale040b4702015-08-06 18:10:50 -07004720 removeTask(task, reason, !MOVING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004721 }
4722
Wale Ogunwale000957c2015-04-03 08:19:12 -07004723 /**
4724 * Removes the input task from this stack.
4725 * @param task to remove.
4726 * @param reason for removal.
Wale Ogunwale040b4702015-08-06 18:10:50 -07004727 * @param moving task to another stack. In the case we are moving we don't want to perform
4728 * some operations on the task like removing it from window manager or recents.
Wale Ogunwale000957c2015-04-03 08:19:12 -07004729 */
Wale Ogunwale040b4702015-08-06 18:10:50 -07004730 void removeTask(TaskRecord task, String reason, boolean moving) {
4731 if (!moving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004732 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004733 mWindowManager.removeTask(task.taskId);
Wale Ogunwaleb317b222015-11-09 11:14:10 -08004734 if (!StackId.persistTaskBounds(mStackId)) {
4735 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
4736 // default configuration the next time it launches.
4737 task.updateOverrideConfiguration(null);
4738 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004739 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004740
Craig Mautner04a0ea62014-01-13 12:51:26 -08004741 final ActivityRecord r = mResumedActivity;
4742 if (r != null && r.task == task) {
4743 mResumedActivity = null;
4744 }
4745
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004746 final int taskNdx = mTaskHistory.indexOf(task);
4747 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004748 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4749 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4750 if (!nextTask.isOverHomeStack()) {
4751 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4752 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004753 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004754 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004755 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004756
Wale Ogunwale040b4702015-08-06 18:10:50 -07004757 if (!moving && task.mActivities.isEmpty()) {
Amith Yamasani0af6fa72016-01-17 15:36:19 -08004758 // TODO: VI what about activity?
Craig Mautner41db4a72014-05-07 17:20:56 -07004759 final boolean isVoiceSession = task.voiceSession != null;
4760 if (isVoiceSession) {
4761 try {
4762 task.voiceSession.taskFinished(task.intent, task.taskId);
4763 } catch (RemoteException e) {
4764 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004765 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004766 if (task.autoRemoveFromRecents() || isVoiceSession) {
4767 // Task creator asked to remove this when done, or this task was a voice
4768 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004769 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004770 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004771 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004772 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004773
4774 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004775 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Chong Zhanga8be5e52015-10-05 17:06:28 -07004776 // We only need to adjust focused stack if this stack is in focus.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07004777 if (isOnHomeDisplay() && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004778 String myReason = reason + " leftTaskHistoryEmpty";
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08004779 if (mFullscreen || !adjustFocusToNextFocusableStackLocked(myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004780 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004781 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004782 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004783 if (mStacks != null) {
4784 mStacks.remove(this);
4785 mStacks.add(0, this);
4786 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004787 if (!isHomeStack()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004788 mActivityContainer.onTaskListEmptyLocked();
4789 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004790 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004791
4792 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004793 }
4794
Dianne Hackborn91097de2014-04-04 18:02:06 -07004795 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4796 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4797 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004798 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4799 voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07004800 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08004801 addTask(task, toTop, "createTaskRecord");
Chong Zhang75b37202015-12-04 14:16:36 -08004802 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08004803 if (!layoutTaskInStack(task, info.layout) && mBounds != null && task.isResizeable()
Chong Zhang75b37202015-12-04 14:16:36 -08004804 && !isLockscreenShown) {
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07004805 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004806 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004807 return task;
4808 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004809
Wale Ogunwale935e5022015-11-10 12:36:10 -08004810 boolean layoutTaskInStack(TaskRecord task, ActivityInfo.Layout layout) {
4811 if (mTaskPositioner == null) {
4812 return false;
4813 }
4814 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, layout);
4815 return true;
4816 }
4817
Craig Mautnerc00204b2013-03-05 15:02:14 -08004818 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004819 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004820 }
4821
Wale Ogunwale5f986092015-12-04 15:35:38 -08004822 void addTask(final TaskRecord task, final boolean toTop, String reason) {
4823 final ActivityStack prevStack = preAddTask(task, reason);
4824
Craig Mautnerc00204b2013-03-05 15:02:14 -08004825 task.stack = this;
4826 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004827 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004828 } else {
4829 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004830 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004831 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08004832 postAddTask(task, prevStack);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004833 }
4834
Wale Ogunwale5f986092015-12-04 15:35:38 -08004835 void positionTask(final TaskRecord task, int position) {
4836 final ActivityStack prevStack = preAddTask(task, "positionTask");
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004837 task.stack = this;
4838 insertTaskAtPosition(task, position);
Wale Ogunwale5f986092015-12-04 15:35:38 -08004839 postAddTask(task, prevStack);
4840 }
4841
4842 private ActivityStack preAddTask(TaskRecord task, String reason) {
4843 final ActivityStack prevStack = task.stack;
4844 if (prevStack != null && prevStack != this) {
4845 prevStack.removeTask(task, reason, MOVING);
4846 }
4847 return prevStack;
4848 }
4849
4850 private void postAddTask(TaskRecord task, ActivityStack prevStack) {
4851 if (prevStack != null) {
Wale Ogunwale22e25262016-02-01 10:32:02 -08004852 mStackSupervisor.scheduleReportPictureInPictureChangedIfNeeded(task, prevStack);
Wale Ogunwale5f986092015-12-04 15:35:38 -08004853 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004854 try {
4855 task.voiceSession.taskStarted(task.intent, task.taskId);
4856 } catch (RemoteException e) {
4857 }
4858 }
4859 }
4860
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004861 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08004862 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Amith Yamasani0af6fa72016-01-17 15:36:19 -08004863 // TODO: VI deal with activity
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07004864 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4865 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6cae7652015-12-26 07:36:26 -08004866 (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId, r.info.configChanges,
4867 task.voiceSession != null, r.mLaunchTaskBehind, bounds, task.mOverrideConfig,
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08004868 task.mResizeMode, r.isAlwaysFocusable(), task.isHomeTask());
Wale Ogunwale706ed792015-08-02 10:29:44 -07004869 r.taskConfigOverride = task.mOverrideConfig;
4870 }
4871
Wale Ogunwaled046a012015-12-24 13:05:59 -08004872 void moveToFrontAndResumeStateIfNeeded(
4873 ActivityRecord r, boolean moveToFront, boolean setResume, String reason) {
4874 if (!moveToFront) {
4875 return;
Wale Ogunwale079a0042015-10-24 11:44:07 -07004876 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004877
4878 // If the activity owns the last resumed activity, transfer that together,
4879 // so that we don't resume the same activity again in the new stack.
4880 // Apps may depend on onResume()/onPause() being called in pairs.
4881 if (setResume) {
4882 mResumedActivity = r;
4883 }
4884 // Move the stack in which we are placing the activity to the front. The call will also
4885 // make sure the activity focus is set.
4886 moveToFront(reason);
Wale Ogunwale079a0042015-10-24 11:44:07 -07004887 }
4888
4889 /**
4890 * Moves the input activity from its current stack to this one.
4891 * NOTE: The current task of the activity isn't moved to this stack. Instead a new task is
4892 * created on this stack which the activity is added to.
4893 * */
4894 void moveActivityToStack(ActivityRecord r) {
4895 final ActivityStack prevStack = r.task.stack;
4896 if (prevStack.mStackId == mStackId) {
4897 // You are already in the right stack silly...
4898 return;
4899 }
4900
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07004901 final boolean wasFocused = mStackSupervisor.isFocusedStack(prevStack)
Wale Ogunwale079a0042015-10-24 11:44:07 -07004902 && (mStackSupervisor.topRunningActivityLocked() == r);
4903 final boolean wasResumed = wasFocused && (prevStack.mResumedActivity == r);
4904
4905 final TaskRecord task = createTaskRecord(
Suprabh Shukla09a88f52015-12-02 14:36:31 -08004906 mStackSupervisor.getNextTaskIdForUserLocked(r.userId),
4907 r.info, r.intent, null, null, true);
Wale Ogunwale079a0042015-10-24 11:44:07 -07004908 r.setTask(task, null);
4909 task.addActivityToTop(r);
4910 setAppTask(r, task);
Wale Ogunwale22e25262016-02-01 10:32:02 -08004911 mStackSupervisor.scheduleReportPictureInPictureChangedIfNeeded(task, prevStack);
Wale Ogunwaled046a012015-12-24 13:05:59 -08004912 moveToFrontAndResumeStateIfNeeded(r, wasFocused, wasResumed, "moveActivityToStack");
4913 if (wasResumed) {
4914 prevStack.mResumedActivity = null;
4915 }
Wale Ogunwale079a0042015-10-24 11:44:07 -07004916 }
4917
Wale Ogunwale706ed792015-08-02 10:29:44 -07004918 private void setAppTask(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08004919 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08004920 mWindowManager.setAppTask(r.appToken, task.taskId, mStackId, bounds, task.mOverrideConfig,
4921 task.mResizeMode, task.isHomeTask());
Wale Ogunwale706ed792015-08-02 10:29:44 -07004922 r.taskConfigOverride = task.mOverrideConfig;
4923 }
4924
Craig Mautnerc00204b2013-03-05 15:02:14 -08004925 public int getStackId() {
4926 return mStackId;
4927 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004928
4929 @Override
4930 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004931 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4932 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004933 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004934
Craig Mautner15df08a2015-04-01 12:17:18 -07004935 void onLockTaskPackagesUpdatedLocked() {
4936 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4937 mTaskHistory.get(taskNdx).setLockTaskAuth();
4938 }
4939 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004940}