blob: 4700268a7a4caa43b7cb477f7b66f2868dfb08bf [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 Ogunwale61803ee2015-08-07 19:59:47 -070019import static android.app.ActivityManager.FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -070020import static android.app.ActivityManager.FULLSCREEN_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.HOME_STACK_ID;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070022import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070023
Wale Ogunwalee23149f2015-03-06 15:39:44 -080024import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner0eea92c2013-05-16 13:35:39 -070025
Craig Mautner84984fa2014-06-19 11:19:20 -070026import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
27import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070028
Wale Ogunwale040b4702015-08-06 18:10:50 -070029import static com.android.server.am.ActivityStackSupervisor.MOVING;
30
Wale Ogunwale706ed792015-08-02 10:29:44 -070031import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070032import android.util.ArraySet;
Wale Ogunwale706ed792015-08-02 10:29:44 -070033import android.view.IApplicationToken;
Dianne Hackborn91097de2014-04-04 18:02:06 -070034import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080035import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070036import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070037import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080038import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080039import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080040import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080041import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070042import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070043
44import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070045import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070046import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070047import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080048import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070049import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080050import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070051import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070052import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070053import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080056import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080057import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070059import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080060import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.os.Handler;
62import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090063import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070064import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070065import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.os.RemoteException;
67import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080068import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070069import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070070import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070071import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070072import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070073import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070074
Craig Mautnercae015f2013-02-08 14:31:27 -080075import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080076import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070077import java.lang.ref.WeakReference;
78import java.util.ArrayList;
79import java.util.Iterator;
80import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080081import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070082import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070083
84/**
85 * State and management of a single stack of activities.
86 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070087final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080088
Wale Ogunwalee23149f2015-03-06 15:39:44 -080089 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070090 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
91 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080092 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070093 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070094 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070095 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070096 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070097 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070098 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
99 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700100 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700101 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700102 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
103 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
104 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
105 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
106 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700107
108 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800109
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700110 // Ticks during which we check progress while waiting for an app to launch.
111 static final int LAUNCH_TICK = 500;
112
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700113 // How long we wait until giving up on the last activity to pause. This
114 // is short because it directly impacts the responsiveness of starting the
115 // next activity.
116 static final int PAUSE_TIMEOUT = 500;
117
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700118 // How long we wait for the activity to tell us it has stopped before
119 // giving up. This is a good amount of time because we really need this
120 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700121 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700122
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700123 // How long we wait until giving up on an activity telling us it has
124 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700125 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800126
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700127 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800128 // disabled.
129 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800130
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700131 // How long between activity launches that we consider safe to not warn
132 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700133 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800134
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700135 // Set to false to disable the preview that is shown while a new activity
136 // is being started.
137 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800138
Craig Mautner5eda9b32013-07-02 11:58:16 -0700139 // How long to wait for all background Activities to redraw following a call to
140 // convertToTranslucent().
141 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
142
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700143 enum ActivityState {
144 INITIALIZING,
145 RESUMED,
146 PAUSING,
147 PAUSED,
148 STOPPING,
149 STOPPED,
150 FINISHING,
151 DESTROYING,
152 DESTROYED
153 }
154
155 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700156 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800157 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800158
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700159 /**
160 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800161 * running) activities. It contains #TaskRecord objects.
162 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800163 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800164
165 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800166 * Used for validating app tokens with window manager.
167 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800168 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800169
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170 /**
171 * List of running activities, sorted by recent usage.
172 * The first entry in the list is the least recently used.
173 * It contains HistoryRecord objects.
174 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800175 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700176
177 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700178 * Animations that for the current transition have requested not to
179 * be considered for the transition animation.
180 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800181 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700182
183 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700184 * When we are in the process of pausing an activity, before starting the
185 * next one, this variable holds the activity that is currently being paused.
186 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800187 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700188
189 /**
190 * This is the last activity that we put into the paused state. This is
191 * used to determine if we need to do an activity transition while sleeping,
192 * when we normally hold the top activity paused.
193 */
194 ActivityRecord mLastPausedActivity = null;
195
196 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700197 * Activities that specify No History must be removed once the user navigates away from them.
198 * If the device goes to sleep with such an activity in the paused state then we save it here
199 * and finish it later if another activity replaces it on wakeup.
200 */
201 ActivityRecord mLastNoHistoryActivity = null;
202
203 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700204 * Current activity that is resumed, or null if there is none.
205 */
206 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800207
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700208 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700209 * This is the last activity that has been started. It is only used to
210 * identify when multiple activities are started at once so that the user
211 * can be warned they may not be in the activity they think they are.
212 */
213 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800214
Craig Mautner5eda9b32013-07-02 11:58:16 -0700215 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
216 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
217 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
218 // Activity in mTranslucentActivityWaiting is notified via
219 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
220 // background activity being drawn then the same call will be made with a true value.
221 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700222 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700223
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700224 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700225 * Set when we know we are going to be calling updateConfiguration()
226 * soon, so want to skip intermediate config checks.
227 */
228 boolean mConfigWillChange;
229
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700230 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800231 boolean mFullscreen = true;
232
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700233 long mLaunchStartTime = 0;
234 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800235
Craig Mautner858d8a62013-04-23 17:08:34 -0700236 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700237
Craig Mautnerc00204b2013-03-05 15:02:14 -0800238 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800239 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800240 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
241 ArrayList<ActivityStack> mStacks;
242 /** The attached Display's unique identifier, or -1 if detached */
243 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800244
Craig Mautner27084302013-03-25 08:05:25 -0700245 /** Run all ActivityStacks through this */
246 final ActivityStackSupervisor mStackSupervisor;
247
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700248 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700249 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
250 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
251 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
252 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700253 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700254 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700255 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700256
257 static class ScheduleDestroyArgs {
258 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700259 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700260 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700261 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700262 mReason = reason;
263 }
264 }
265
Zoran Marcetaf958b322012-08-09 20:27:12 +0900266 final Handler mHandler;
267
268 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800269
Craig Mautnerc8143c62013-09-03 12:15:57 -0700270 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900271 super(looper);
272 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700273
Zoran Marcetaf958b322012-08-09 20:27:12 +0900274 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700275 public void handleMessage(Message msg) {
276 switch (msg.what) {
277 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800278 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700279 // We don't at this point know if the activity is fullscreen,
280 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800281 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700282 synchronized (mService) {
283 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700284 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700285 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700286 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800287 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700288 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700289 case LAUNCH_TICK_MSG: {
290 ActivityRecord r = (ActivityRecord)msg.obj;
291 synchronized (mService) {
292 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700293 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700294 }
295 }
296 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700297 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800298 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700299 // We don't at this point know if the activity is fullscreen,
300 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800301 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800302 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800303 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800304 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700305 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700306 case STOP_TIMEOUT_MSG: {
307 ActivityRecord r = (ActivityRecord)msg.obj;
308 // We don't at this point know if the activity is fullscreen,
309 // so we need to be conservative and assume it isn't.
310 Slog.w(TAG, "Activity stop timeout for " + r);
311 synchronized (mService) {
312 if (r.isInHistory()) {
313 activityStoppedLocked(r, null, null, null);
314 }
315 }
316 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700317 case DESTROY_ACTIVITIES_MSG: {
318 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
319 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700320 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700321 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700322 } break;
323 case TRANSLUCENT_TIMEOUT_MSG: {
324 synchronized (mService) {
325 notifyActivityDrawnLocked(null);
326 }
327 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700328 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700329 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700330 final ActivityRecord r = getVisibleBehindActivity();
331 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700332 if (r != null) {
333 mService.killAppAtUsersRequest(r.app, null);
334 }
335 }
336 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700337 }
338 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800339 }
340
Craig Mautner34b73df2014-01-12 21:11:08 -0800341 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800342 int count = 0;
343 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
344 count += mTaskHistory.get(taskNdx).mActivities.size();
345 }
346 return count;
347 }
348
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800349 int numTasks() {
350 return mTaskHistory.size();
351 }
352
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800353 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
354 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800355 mActivityContainer = activityContainer;
356 mStackSupervisor = activityContainer.getOuter();
357 mService = mStackSupervisor.mService;
358 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
359 mWindowManager = mService.mWindowManager;
360 mStackId = activityContainer.mStackId;
361 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800362 mRecentTasks = recentTasks;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700363 }
Craig Mautner5962b122012-10-05 14:45:52 -0700364
Amith Yamasani734983f2014-03-04 16:48:05 -0800365 boolean okToShowLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700366 return mStackSupervisor.okToShowLocked(r);
Craig Mautner5962b122012-10-05 14:45:52 -0700367 }
368
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700369 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800370 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700371 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
372 if (r != null) {
373 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800374 }
375 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700376 return null;
377 }
378
379 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800380 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
381 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800382 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800383 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
384 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800385 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800386 return r;
387 }
388 }
389 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700390 return null;
391 }
392
393 /**
394 * This is a simplified version of topRunningActivityLocked that provides a number of
395 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800396 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700397 * @param token If non-null, any history records matching this token will be skipped.
398 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800399 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700400 * @return Returns the HistoryRecord of the next activity on the stack.
401 */
402 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800403 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
404 TaskRecord task = mTaskHistory.get(taskNdx);
405 if (task.taskId == taskId) {
406 continue;
407 }
408 ArrayList<ActivityRecord> activities = task.mActivities;
409 for (int i = activities.size() - 1; i >= 0; --i) {
410 final ActivityRecord r = activities.get(i);
411 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800412 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800413 return r;
414 }
415 }
416 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700417 return null;
418 }
419
Craig Mautner8849a5e2013-04-02 16:41:03 -0700420 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700421 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
422 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700423 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
424 final ActivityRecord r = activities.get(activityNdx);
425 if (!r.finishing) {
426 return r;
427 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700428 }
429 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700430 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700431 }
432
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700433 final TaskRecord topTask() {
434 final int size = mTaskHistory.size();
435 if (size > 0) {
436 return mTaskHistory.get(size - 1);
437 }
438 return null;
439 }
440
Craig Mautnerd2328952013-03-05 12:46:26 -0800441 TaskRecord taskForIdLocked(int id) {
442 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
443 final TaskRecord task = mTaskHistory.get(taskNdx);
444 if (task.taskId == id) {
445 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800446 }
447 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700448 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700449 }
450
Craig Mautnerd2328952013-03-05 12:46:26 -0800451 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700452 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800453 return isInStackLocked(r);
454 }
455
456 ActivityRecord isInStackLocked(ActivityRecord r) {
457 if (r == null) {
458 return null;
459 }
460 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700461 if (task != null && task.stack != null
462 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800463 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800464 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800465 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800466 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800467 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800468 }
469
Craig Mautner2420ead2013-04-01 17:13:20 -0700470 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700471 final boolean hadit = mLRUActivities.remove(r);
472 mLRUActivities.add(r);
473 return hadit;
474 }
475
Craig Mautnerde4ef022013-04-07 19:01:33 -0700476 final boolean isHomeStack() {
477 return mStackId == HOME_STACK_ID;
478 }
479
Craig Mautnere0a38842013-12-16 16:14:02 -0800480 final boolean isOnHomeDisplay() {
481 return isAttached() &&
482 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
483 }
484
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700485 void moveToFront(String reason) {
486 moveToFront(reason, null);
487 }
488
489 /**
490 * @param reason The reason for moving the stack to the front.
491 * @param task If non-null, the task will be moved to the top of the stack.
492 * */
493 void moveToFront(String reason, TaskRecord task) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800494 if (isAttached()) {
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800495 final boolean homeStack = isHomeStack()
496 || (mActivityContainer.mParentActivity != null
497 && mActivityContainer.mParentActivity.isHomeActivity());
498 ActivityStack lastFocusStack = null;
499 if (!homeStack) {
500 // Need to move this stack to the front before calling
501 // {@link ActivityStackSupervisor#moveHomeStack} below.
502 lastFocusStack = mStacks.get(mStacks.size() - 1);
503 mStacks.remove(this);
504 mStacks.add(this);
Wale Ogunwaleaf0e4482015-02-24 12:27:31 -0800505 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700506 // TODO(multi-display): Focus stack currently adjusted in call to move home stack.
507 // Needs to also work if focus is moving to the non-home display.
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800508 if (isOnHomeDisplay()) {
509 mStackSupervisor.moveHomeStack(homeStack, reason, lastFocusStack);
510 }
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700511 if (task != null) {
512 insertTaskAtTop(task, null);
513 } else {
514 task = topTask();
515 }
Craig Mautner6b904ef2014-12-17 15:45:03 -0800516 if (task != null) {
517 mWindowManager.moveTaskToTop(task.taskId);
518 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800519 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800520 }
521
522 final boolean isAttached() {
523 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800524 }
525
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700526 /**
527 * Returns the top activity in any existing task matching the given
528 * Intent. Returns null if no such task is found.
529 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700530 ActivityRecord findTaskLocked(ActivityRecord target) {
531 Intent intent = target.intent;
532 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700533 ComponentName cls = intent.getComponent();
534 if (info.targetActivity != null) {
535 cls = new ComponentName(info.packageName, info.targetActivity);
536 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700537 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700538 boolean isDocument = intent != null & intent.isDocument();
539 // If documentData is non-null then it must match the existing task data.
540 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800541
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700542 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800543 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
544 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700545 if (task.voiceSession != null) {
546 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700547 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700548 continue;
549 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700550 if (task.userId != userId) {
551 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700552 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700553 continue;
554 }
Craig Mautner000f0022013-02-26 15:04:29 -0800555 final ActivityRecord r = task.getTopActivity();
556 if (r == null || r.finishing || r.userId != userId ||
557 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700558 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800559 continue;
560 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700561 if (r.mActivityType != target.mActivityType) {
562 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
563 continue;
564 }
Craig Mautner000f0022013-02-26 15:04:29 -0800565
Craig Mautnerd00f4742014-03-12 14:17:26 -0700566 final Intent taskIntent = task.intent;
567 final Intent affinityIntent = task.affinityIntent;
568 final boolean taskIsDocument;
569 final Uri taskDocumentData;
570 if (taskIntent != null && taskIntent.isDocument()) {
571 taskIsDocument = true;
572 taskDocumentData = taskIntent.getData();
573 } else if (affinityIntent != null && affinityIntent.isDocument()) {
574 taskIsDocument = true;
575 taskDocumentData = affinityIntent.getData();
576 } else {
577 taskIsDocument = false;
578 taskDocumentData = null;
579 }
580
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700581 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700582 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700583 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700584 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700585 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
586 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700587 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700588 return r;
589 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700590 } else if (taskIntent != null && taskIntent.getComponent() != null &&
591 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700592 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700593 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800594 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700595 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
596 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800597 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700598 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
599 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700600 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700601 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800602 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700603 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
604 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800605 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700606 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700607 }
608
609 return null;
610 }
611
612 /**
613 * Returns the first activity (starting from the top of the stack) that
614 * is the same as the given activity. Returns null if no such activity
615 * is found.
616 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700617 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700618 ComponentName cls = intent.getComponent();
619 if (info.targetActivity != null) {
620 cls = new ComponentName(info.packageName, info.targetActivity);
621 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700622 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700623
Craig Mautner000f0022013-02-26 15:04:29 -0800624 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700625 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700626 final boolean notCurrentUserTask =
627 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700628 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700629
Craig Mautner000f0022013-02-26 15:04:29 -0800630 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
631 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700632 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700633 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700634 }
Craig Mautner000f0022013-02-26 15:04:29 -0800635 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700636 return r;
637 }
638 }
639 }
640
641 return null;
642 }
643
Amith Yamasani742a6712011-05-04 14:49:28 -0700644 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700645 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700646 */
Craig Mautner93529a42013-10-04 15:03:13 -0700647 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800648 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700649 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800650 }
651 mCurrentUser = userId;
652
653 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800654 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800655 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700656 final TaskRecord task = mTaskHistory.get(i);
657
658 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
659 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700660 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700661 || task.topRunningActivityLocked(null) != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700662 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700663 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800664 mTaskHistory.remove(i);
665 mTaskHistory.add(task);
666 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800667 // Use same value for i.
668 } else {
669 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800670 }
671 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700672 if (VALIDATE_TOKENS) {
673 validateAppTokensLocked();
674 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700675 }
676
Craig Mautner2420ead2013-04-01 17:13:20 -0700677 void minimalResumeActivityLocked(ActivityRecord r) {
678 r.state = ActivityState.RESUMED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700679 if (DEBUG_STATES) Slog.v(TAG_STATES,
680 "Moving to RESUMED: " + r + " (starting new instance)");
Craig Mautner2420ead2013-04-01 17:13:20 -0700681 r.stopped = false;
682 mResumedActivity = r;
683 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800684 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700685 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700686 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700687 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700688 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
689 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700690 }
691
Chong Zhang45c25ce2015-08-10 22:18:26 -0700692 private void addRecentActivityLocked(ActivityRecord r) {
693 if (r != null) {
694 mRecentTasks.addLocked(r.task);
695 r.task.touchActiveTime();
696 }
697 }
698
Narayan Kamath7829c812015-06-08 17:39:43 +0100699 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700700 if (mFullyDrawnStartTime != 0) {
701 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
702 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100703 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700704 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
705 }
706
707 private void stopFullyDrawnTraceIfNeeded() {
708 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
709 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
710 mFullyDrawnStartTime = 0;
711 }
712 }
713
Craig Mautnere79d42682013-04-01 19:01:53 -0700714 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700715 if (r.displayStartTime == 0) {
716 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
717 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100718 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700719 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700720 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700721 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100722 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700723 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700724 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700725 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800726
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700727 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700728 // Make sure that there is no activity waiting for this to launch.
729 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
730 r.displayStartTime = r.fullyDrawnStartTime = 0;
731 } else {
732 mStackSupervisor.removeTimeoutsForActivityLocked(r);
733 mStackSupervisor.scheduleIdleTimeoutLocked(r);
734 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700735 }
736
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800737 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800738 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800739 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
740 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
741 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
742 activities.get(activityNdx).setSleeping(false);
743 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800744 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800745 if (mPausingActivity != null) {
746 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
747 activityPausedLocked(mPausingActivity.appToken, true);
748 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800749 }
750
Craig Mautner0eea92c2013-05-16 13:35:39 -0700751 /**
752 * @return true if something must be done before going to sleep.
753 */
754 boolean checkReadyForSleepLocked() {
755 if (mResumedActivity != null) {
756 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700757 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
758 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
759 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700760 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700761 return true;
762 }
763 if (mPausingActivity != null) {
764 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700765 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700766 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800767 }
768
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700769 if (hasVisibleBehindActivity()) {
770 // Stop visible behind activity before going to sleep.
771 final ActivityRecord r = mActivityContainer.mActivityDisplay.mVisibleBehindActivity;
772 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700773 if (DEBUG_STATES) Slog.v(TAG_STATES,
774 "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700775 return true;
776 }
777
Craig Mautner0eea92c2013-05-16 13:35:39 -0700778 return false;
779 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800780
Craig Mautner0eea92c2013-05-16 13:35:39 -0700781 void goToSleep() {
782 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800783
Craig Mautner0eea92c2013-05-16 13:35:39 -0700784 // Make sure any stopped but visible activities are now sleeping.
785 // This ensures that the activity's onStop() is called.
786 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
787 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
788 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
789 final ActivityRecord r = activities.get(activityNdx);
790 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
791 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800792 }
793 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800794 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700795 }
Craig Mautner59c00972012-07-30 12:10:24 -0700796
Dianne Hackbornd2835932010-12-13 16:28:46 -0800797 public final Bitmap screenshotActivities(ActivityRecord who) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700798 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800799 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700800 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800801 return null;
802 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800803
Winson Chung083baf92014-07-11 10:32:42 -0700804 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700805 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800806 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700807 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700808 return null;
809 }
810
Winson Chung48a10a52014-08-27 14:36:51 -0700811 int w = mService.mThumbnailWidth;
812 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800813 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700814 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800815 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700816 w, h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800817 }
Winson Chung376543b2014-05-21 17:43:28 -0700818 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800819 return null;
820 }
821
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700822 /**
823 * Start pausing the currently resumed activity. It is an error to call this if there
824 * is already an activity being paused or there is no resumed activity.
825 *
826 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
827 * @param uiSleeping True if this is happening with the user interface going to sleep (the
828 * screen turning off).
829 * @param resuming True if this is being called as part of resuming the top activity, so
830 * we shouldn't try to instigate a resume here.
831 * @param dontWait True if the caller does not want to wait for the pause to complete. If
832 * set to true, we will immediately complete the pause here before returning.
833 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
834 * it to tell us when it is done.
835 */
836 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
837 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800838 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800839 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
840 + " state=" + mPausingActivity.state);
841 if (!mService.isSleeping()) {
842 // Avoid recursion among check for sleep and complete pause during sleeping.
843 // Because activity will be paused immediately after resume, just let pause
844 // be completed by the order of activity paused from clients.
845 completePauseLocked(false);
846 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800847 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700848 ActivityRecord prev = mResumedActivity;
849 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700850 if (!resuming) {
851 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
852 mStackSupervisor.resumeTopActivitiesLocked();
853 }
854 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700855 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800856
857 if (mActivityContainer.mParentActivity == null) {
858 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700859 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800860 }
861
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700862 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700863 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700864 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800865 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700866 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700867 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
868 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700869 prev.state = ActivityState.PAUSING;
870 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700871 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700872 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800873 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800874 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700875 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700876 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700877
878 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800879
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700880 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700881 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700882 try {
883 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700884 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700885 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700886 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800887 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700888 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700889 } catch (Exception e) {
890 // Ignore exception, if process died other code will cleanup.
891 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800892 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700893 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700894 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700895 }
896 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800897 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700898 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700899 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700900 }
901
902 // If we are not going to sleep, we want to ensure the device is
903 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700904 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700905 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700906 }
907
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800908 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700909 // Have the window manager pause its key dispatching until the new
910 // activity has started. If we're pausing the activity just because
911 // the screen is being turned off and the UI is sleeping, don't interrupt
912 // key dispatch; the same activity will pick it up again on wakeup.
913 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800914 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700915 } else if (DEBUG_PAUSE) {
916 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700917 }
918
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700919 if (dontWait) {
920 // If the caller said they don't want to wait for the pause, then complete
921 // the pause now.
922 completePauseLocked(false);
923 return false;
924
925 } else {
926 // Schedule a pause timeout in case the app doesn't respond.
927 // We don't give it much time because this directly impacts the
928 // responsiveness seen by the user.
929 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
930 msg.obj = prev;
931 prev.pauseTime = SystemClock.uptimeMillis();
932 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700933 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700934 return true;
935 }
936
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700937 } else {
938 // This activity failed to schedule the
939 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700940 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700941 if (!resuming) {
942 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
943 }
944 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700945 }
946 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700947
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700948 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700949 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
950 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700951
Craig Mautnerd2328952013-03-05 12:46:26 -0800952 final ActivityRecord r = isInStackLocked(token);
953 if (r != null) {
954 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
955 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700956 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -0800957 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700958 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800959 } else {
960 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
961 r.userId, System.identityHashCode(r), r.shortComponentName,
962 mPausingActivity != null
963 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +0800964 if (r.finishing && r.state == ActivityState.PAUSING) {
965 if (DEBUG_PAUSE) Slog.v(TAG,
966 "Executing finish of failed to pause activity: " + r);
967 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
968 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700969 }
970 }
971 }
972
Craig Mautnera0026042014-04-23 11:45:37 -0700973 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
974 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700975 if (r.state != ActivityState.STOPPING) {
976 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
977 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
978 return;
979 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700980 if (persistentState != null) {
981 r.persistentState = persistentState;
982 mService.notifyTaskPersisterLocked(r.task, false);
983 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700984 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700985 if (icicle != null) {
986 // If icicle is null, this is happening due to a timeout, so we
987 // haven't really saved the state.
988 r.icicle = icicle;
989 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800990 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800991 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700992 }
993 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700994 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700995 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
996 r.stopped = true;
997 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700998 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
999 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001000 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001001 if (r.finishing) {
1002 r.clearOptionsLocked();
1003 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001004 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001005 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -07001006 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001007 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001008 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001009 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001010 }
1011 }
1012 }
1013
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001014 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001015 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001016 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001017
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001018 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001019 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001020 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001021 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001022 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001023 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001024 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001025 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001026 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1027 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001028 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001029 if (prev.configDestroy) {
1030 // The previous is being paused because the configuration
1031 // is changing, which means it is actually stopping...
1032 // To juggle the fact that we are also starting a new
1033 // instance right now, we need to first completely stop
1034 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001035 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001036 destroyActivityLocked(prev, true, "pause-config");
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001037 } else if (!hasVisibleBehindActivity() || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001038 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001039 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001040 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -07001041 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
1042 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001043 // If we already have a few activities waiting to stop,
1044 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07001045 // them out. Or if r is the last of activity of the last task the stack
1046 // will be empty and must be cleared immediately.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001047 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -07001048 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001049 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001050 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001051 }
1052 }
1053 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001054 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001055 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001056 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001057 // It is possible the activity was freezing the screen before it was paused.
1058 // In that case go ahead and remove the freeze this activity has on the screen
1059 // since it is no longer visible.
1060 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001061 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001062 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001063
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001064 if (resumeNext) {
1065 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1066 if (!mService.isSleepingOrShuttingDown()) {
1067 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1068 } else {
1069 mStackSupervisor.checkReadyForSleepLocked();
1070 ActivityRecord top = topStack.topRunningActivityLocked(null);
1071 if (top == null || (prev != null && top != prev)) {
1072 // If there are no more activities available to run,
1073 // do resume anyway to start something. Also if the top
1074 // activity on the stack is not the just paused activity,
1075 // we need to go ahead and resume it to ensure we complete
1076 // an in-flight app switch.
1077 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1078 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001079 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001080 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001081
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001082 if (prev != null) {
1083 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001084
Craig Mautner525f3d92013-05-07 14:01:50 -07001085 if (prev.app != null && prev.cpuTimeAtResume > 0
1086 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001087 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1088 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001089 if (diff > 0) {
1090 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1091 synchronized (bsi) {
1092 BatteryStatsImpl.Uid.Proc ps =
1093 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001094 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001095 if (ps != null) {
1096 ps.addForegroundTimeLocked(diff);
1097 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001098 }
1099 }
1100 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001101 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001102 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001103
1104 // Notfiy when the task stack has changed
1105 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001106 }
1107
1108 /**
1109 * Once we know that we have asked an application to put an activity in
1110 * the resumed state (either by launching it or explicitly telling it),
1111 * this function updates the rest of our state to match that fact.
1112 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001113 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001114 next.idle = false;
1115 next.results = null;
1116 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001117
1118 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1119 ProcessRecord app = next.task.mActivities.get(0).app;
1120 if (app != null && app != mService.mHomeProcess) {
1121 mService.mHomeProcess = app;
1122 }
1123 }
1124
Craig Mautner07566322013-09-26 16:42:55 -07001125 if (next.nowVisible) {
1126 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001127 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001128 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001129
1130 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001131 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001132
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001133 mStackSupervisor.reportResumedActivityLocked(next);
1134
1135 next.resumeKeyDispatchingLocked();
1136 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001137
1138 // Mark the point when the activity is resuming
1139 // TODO: To be more accurate, the mark should be before the onCreate,
1140 // not after the onResume. But for subsequent starts, onResume is fine.
1141 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001142 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001143 } else {
1144 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1145 }
Winson Chung376543b2014-05-21 17:43:28 -07001146
George Mount6ba042b2014-07-28 11:12:28 -07001147 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001148
1149 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1150 // When resuming an activity, require it to call requestVisibleBehind() again.
1151 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1152 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001153 }
1154
Craig Mautner2568c3a2015-03-26 14:22:34 -07001155 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001156 r.visible = visible;
1157 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001158 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001159 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001160 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001161 container.setVisible(visible);
1162 }
1163 }
1164
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001165 // Find the first visible activity above the passed activity and if it is translucent return it
1166 // otherwise return null;
1167 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1168 TaskRecord task = r.task;
1169 if (task == null) {
1170 return null;
1171 }
1172
1173 ActivityStack stack = task.stack;
1174 if (stack == null) {
1175 return null;
1176 }
1177
1178 int stackNdx = mStacks.indexOf(stack);
1179
1180 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1181 int taskNdx = tasks.indexOf(task);
1182
1183 ArrayList<ActivityRecord> activities = task.mActivities;
1184 int activityNdx = activities.indexOf(r) + 1;
1185
1186 final int numStacks = mStacks.size();
1187 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001188 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001189 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001190 final int numTasks = tasks.size();
1191 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001192 final TaskRecord currentTask = tasks.get(taskNdx);
1193 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001194 final int numActivities = activities.size();
1195 while (activityNdx < numActivities) {
1196 final ActivityRecord activity = activities.get(activityNdx);
1197 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001198 return historyStack.mFullscreen
1199 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001200 }
1201 ++activityNdx;
1202 }
1203 activityNdx = 0;
1204 ++taskNdx;
1205 }
1206 taskNdx = 0;
1207 ++stackNdx;
1208 }
1209
1210 return null;
1211 }
1212
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001213 private ActivityStack getNextVisibleStackLocked() {
1214 ArrayList<ActivityStack> stacks = mStacks;
1215 final ActivityRecord parent = mActivityContainer.mParentActivity;
1216 if (parent != null) {
1217 stacks = parent.task.stack.mStacks;
1218 }
1219 if (stacks != null) {
1220 for (int i = stacks.size() - 1; i >= 0; --i) {
1221 ActivityStack stack = stacks.get(i);
1222 if (stack != this && stack.isStackVisibleLocked()) {
1223 return stack;
1224 }
1225 }
1226 }
1227 return null;
1228 }
1229
Jose Lima7ba71252014-04-30 12:59:27 -07001230 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1231 // If so, this stack is hidden, otherwise it is visible.
Todd Kennedyaab56db2015-01-30 09:39:53 -08001232 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001233 if (!isAttached()) {
1234 return false;
1235 }
1236
1237 if (mStackSupervisor.isFrontStack(this)) {
1238 return true;
1239 }
1240
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001241 // Any stack that isn't the front stack is not visible, except for the case of the home
1242 // stack behind the main application stack since we can have dialog activities on the
1243 // main application stack that need the home stack to display behind them.
1244 // TODO(multi-window): Also need to add exception for side-by-side stacks.
1245 final boolean homeStack = mStackId == HOME_STACK_ID;
1246 if (!homeStack) {
1247 return false;
1248 }
1249
Jose Lima729cb232014-05-05 15:59:40 -07001250 /**
1251 * Start at the task above this one and go up, looking for a visible
1252 * fullscreen activity, or a translucent activity that requested the
1253 * wallpaper to be shown behind it.
1254 */
Jose Lima7ba71252014-04-30 12:59:27 -07001255 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001256 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001257 if (stack.mStackId != FULLSCREEN_WORKSPACE_STACK_ID) {
1258 return false;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001259 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001260
Todd Kennedyaab56db2015-01-30 09:39:53 -08001261 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1262 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001263 final TaskRecord task = tasks.get(taskNdx);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001264 // task above isn't fullscreen, so, we assume we're still visible.
1265 if (!task.mFullscreen) {
1266 continue;
1267 }
Craig Mautner84984fa2014-06-19 11:19:20 -07001268 final ArrayList<ActivityRecord> activities = task.mActivities;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001269 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Jose Lima7ba71252014-04-30 12:59:27 -07001270 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001271
1272 // Conditions for an activity to obscure the stack we're
1273 // examining:
1274 // 1. Not Finishing AND Visible AND:
1275 // 2. Either:
1276 // - Full Screen Activity OR
1277 // - On top of Home and our stack is NOT home
1278 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001279 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001280 return false;
1281 }
1282 }
1283 }
1284 }
1285
1286 return true;
1287 }
1288
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001289 /**
1290 * Make sure that all activities that need to be visible (that is, they
1291 * currently can be seen by the user) actually are.
1292 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001293 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1294 ActivityRecord top = topRunningActivityLocked(null);
1295 if (top == null) {
1296 return;
1297 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001298 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1299 "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001300 + " configChanges=0x" + Integer.toHexString(configChanges));
1301
Craig Mautner5eda9b32013-07-02 11:58:16 -07001302 if (mTranslucentActivityWaiting != top) {
1303 mUndrawnActivitiesBelowTopTranslucent.clear();
1304 if (mTranslucentActivityWaiting != null) {
1305 // Call the callback with a timeout indication.
1306 notifyActivityDrawnLocked(null);
1307 mTranslucentActivityWaiting = null;
1308 }
1309 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1310 }
1311
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001312 // If the top activity is not fullscreen, then we need to
1313 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001314 boolean aboveTop = true;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001315 boolean behindFullscreen = !isStackVisibleLocked();
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001316 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001317
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001318 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001319 final TaskRecord task = mTaskHistory.get(taskNdx);
1320 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001321 // Set to true if an activity in this task is fullscreen thereby hiding other
1322 // activities in the same task. Initialized to the same value as behindFullscreen
1323 // which represent if the entire task/stack is behind another fullscreen task/stack.
1324 boolean behindFullscreenActivity = behindFullscreen;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001325 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1326 final ActivityRecord r = activities.get(activityNdx);
1327 if (r.finishing) {
1328 continue;
1329 }
1330 if (aboveTop && r != top) {
1331 continue;
1332 }
1333 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001334 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1335 // but must be drawn initially for the animation as though they were visible.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001336 if (!behindFullscreenActivity || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001337 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1338 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001339 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001340
Craig Mautnerd44711d2013-02-23 11:24:36 -08001341 // First: if this is not the current activity being started, make
1342 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001343 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001344 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001345 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001346
1347 if (r.app == null || r.app.thread == null) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001348 // This activity needs to be visible, but isn't even running...
1349 // get it started and resume if no other stack in this stack is resumed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001350 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1351 "Start and freeze screen for " + r);
Craig Mautnerbb742462014-07-07 15:28:55 -07001352 if (r != starting) {
1353 r.startFreezingScreenLocked(r.app, configChanges);
1354 }
1355 if (!r.visible || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001356 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1357 "Starting and making visible: " + r);
Craig Mautner2568c3a2015-03-26 14:22:34 -07001358 setVisible(r, true);
Craig Mautnerbb742462014-07-07 15:28:55 -07001359 }
1360 if (r != starting) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001361 mStackSupervisor.startSpecificActivityLocked(
1362 r, noStackActivityResumed, false);
riddle_hsu36ee73d2015-06-05 16:38:38 +08001363 if (activityNdx >= activities.size()) {
1364 // Record may be removed if its process needs to restart.
1365 activityNdx = activities.size() - 1;
1366 } else {
1367 noStackActivityResumed = false;
1368 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001369 }
1370
1371 } else if (r.visible) {
1372 // If this activity is already visible, then there is nothing
1373 // else to do here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001374 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1375 "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001376 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001377 try {
George Mount6ba042b2014-07-28 11:12:28 -07001378 if (r.returningOptions != null) {
1379 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1380 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001381 }
1382 } catch(RemoteException e) {
1383 }
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001384 if (r.state == ActivityState.RESUMED) {
1385 noStackActivityResumed = false;
1386 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001387 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001388 // This activity is not currently visible, but is running.
1389 // Tell it to become visible.
1390 r.visible = true;
1391 if (r.state != ActivityState.RESUMED && r != starting) {
1392 // If this activity is paused, tell it
1393 // to now show its window.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001394 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1395 "Making visible and scheduling visibility: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001396 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001397 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001398 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001399 mUndrawnActivitiesBelowTopTranslucent.add(r);
1400 }
Craig Mautner2568c3a2015-03-26 14:22:34 -07001401 setVisible(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001402 r.sleeping = false;
1403 r.app.pendingUiClean = true;
1404 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1405 r.stopFreezingScreenLocked(false);
1406 } catch (Exception e) {
1407 // Just skip on any failure; we'll make it
1408 // visible when it next restarts.
1409 Slog.w(TAG, "Exception thrown making visibile: "
1410 + r.intent.getComponent(), e);
1411 }
1412 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001413 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001414
Craig Mautnerd44711d2013-02-23 11:24:36 -08001415 // Aggregate current change flags.
1416 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001417
Craig Mautnerd44711d2013-02-23 11:24:36 -08001418 if (r.fullscreen) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001419 // At this point, nothing else needs to be shown in this task.
1420 behindFullscreenActivity = true;
1421 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
1422 + " behindFullscreen=" + behindFullscreen
1423 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautner84984fa2014-06-19 11:19:20 -07001424 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001425 behindFullscreenActivity = true;
1426 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1427 + " behindFullscreen=" + behindFullscreen
1428 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001429 }
1430 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001431 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001432 "Make invisible? " + r + " finishing=" + r.finishing
1433 + " state=" + r.state + " behindFullscreen=" + behindFullscreen
1434 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001435 // Now for any activities that aren't visible to the user, make
1436 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001437 if (r.visible) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001438 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001439 try {
Craig Mautner2568c3a2015-03-26 14:22:34 -07001440 setVisible(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001441 switch (r.state) {
1442 case STOPPING:
1443 case STOPPED:
1444 if (r.app != null && r.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001445 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1446 "Scheduling invisibility: " + r);
Craig Mautner4addfc52013-06-25 08:05:45 -07001447 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1448 }
1449 break;
1450
1451 case INITIALIZING:
1452 case RESUMED:
1453 case PAUSING:
1454 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001455 // This case created for transitioning activities from
1456 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001457 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001458 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001459 } else {
1460 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1461 mStackSupervisor.mStoppingActivities.add(r);
1462 }
1463 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001464 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001465 break;
1466
1467 default:
1468 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001469 }
1470 } catch (Exception e) {
1471 // Just skip on any failure; we'll make it
1472 // visible when it next restarts.
1473 Slog.w(TAG, "Exception thrown making hidden: "
1474 + r.intent.getComponent(), e);
1475 }
1476 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001477 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001478 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001479 }
1480 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001481 // Factoring if the previous task is fullscreen there by affecting the visibility of
1482 // task behind it.
1483 behindFullscreen |= task.mFullscreen;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001484 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001485
1486 if (mTranslucentActivityWaiting != null &&
1487 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1488 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1489 notifyActivityDrawnLocked(null);
1490 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001491 }
Craig Mautner58547802013-03-05 08:23:53 -08001492
Todd Kennedyaab56db2015-01-30 09:39:53 -08001493 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001494 mTranslucentActivityWaiting = r;
1495 mUndrawnActivitiesBelowTopTranslucent.clear();
1496 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1497 }
1498
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001499 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1500 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1501 final TaskRecord task = mTaskHistory.get(taskNdx);
1502 final ArrayList<ActivityRecord> activities = task.mActivities;
1503 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1504 final ActivityRecord r = activities.get(activityNdx);
1505 if ( r.appTimeTracker != except) {
1506 r.appTimeTracker = null;
1507 }
1508 }
1509 }
1510 }
1511
Craig Mautner5eda9b32013-07-02 11:58:16 -07001512 /**
1513 * Called as activities below the top translucent activity are redrawn. When the last one is
1514 * redrawn notify the top activity by calling
1515 * {@link Activity#onTranslucentConversionComplete}.
1516 *
1517 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1518 * occurred and the activity will be notified immediately.
1519 */
1520 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001521 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001522 if ((r == null)
1523 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1524 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1525 // The last undrawn activity below the top has just been drawn. If there is an
1526 // opaque activity at the top, notify it that it can become translucent safely now.
1527 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1528 mTranslucentActivityWaiting = null;
1529 mUndrawnActivitiesBelowTopTranslucent.clear();
1530 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1531
Craig Mautner71dd1b62014-02-18 15:48:52 -08001532 if (waitingActivity != null) {
1533 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1534 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1535 try {
1536 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1537 waitingActivity.appToken, r != null);
1538 } catch (RemoteException e) {
1539 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001540 }
1541 }
1542 }
1543 }
1544
Craig Mautnera61bc652013-10-28 15:43:18 -07001545 /** If any activities below the top running one are in the INITIALIZING state and they have a
1546 * starting window displayed then remove that starting window. It is possible that the activity
1547 * in this state will never resumed in which case that starting window will be orphaned. */
1548 void cancelInitializingActivities() {
1549 final ActivityRecord topActivity = topRunningActivityLocked(null);
1550 boolean aboveTop = true;
1551 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1552 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1553 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1554 final ActivityRecord r = activities.get(activityNdx);
1555 if (aboveTop) {
1556 if (r == topActivity) {
1557 aboveTop = false;
1558 }
1559 continue;
1560 }
1561
1562 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001563 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1564 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001565 r.mStartingWindowShown = false;
1566 mWindowManager.removeAppStartingWindow(r.appToken);
1567 }
1568 }
1569 }
1570 }
1571
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001572 /**
1573 * Ensure that the top activity in the stack is resumed.
1574 *
1575 * @param prev The previously resumed activity, for when in the process
1576 * of pausing; can be null to call from elsewhere.
1577 *
1578 * @return Returns true if something is being resumed, or false if
1579 * nothing happened.
1580 */
1581 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001582 return resumeTopActivityLocked(prev, null);
1583 }
1584
1585 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001586 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001587 // Don't even start recursing.
1588 return false;
1589 }
1590
1591 boolean result = false;
1592 try {
1593 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001594 mStackSupervisor.inResumeTopActivity = true;
1595 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1596 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001597 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001598 }
Craig Mautner544efa72014-09-04 16:41:20 -07001599 result = resumeTopActivityInnerLocked(prev, options);
1600 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001601 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001602 }
1603 return result;
1604 }
1605
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001606 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001607 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001608
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001609 if (!mService.mBooting && !mService.mBooted) {
1610 // Not ready yet!
1611 return false;
1612 }
1613
Craig Mautnerdf88d732014-01-27 09:21:32 -08001614 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001615 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001616 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001617 // Do not resume this stack if its parent is not resumed.
1618 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1619 return false;
1620 }
1621
Craig Mautnera61bc652013-10-28 15:43:18 -07001622 cancelInitializingActivities();
1623
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001624 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001625 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001626
1627 // Remember how we'll process this pause/resume situation, and ensure
1628 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001629 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1630 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001631
Craig Mautner84984fa2014-06-19 11:19:20 -07001632 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001633 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001634 // There are no more activities!
1635 final String reason = "noMoreActivities";
1636 if (!mFullscreen) {
1637 // Try to move focus to the next visible stack with a running activity if this
1638 // stack is not covering the entire screen.
1639 final ActivityStack stack = getNextVisibleStackLocked();
1640 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1641 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1642 }
1643 }
1644 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001645 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001646 if (DEBUG_STATES) Slog.d(TAG_STATES,
1647 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001648 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001649 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001650 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1651 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1652 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001653 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001654 }
1655
1656 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001657
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001658 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001659 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1660 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001661 // Make sure we have executed any pending transitions, since there
1662 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001663 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001664 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001665 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001666 if (DEBUG_STATES) Slog.d(TAG_STATES,
1667 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001668 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001669 return false;
1670 }
1671
Craig Mautner525f3d92013-05-07 14:01:50 -07001672 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001673 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001674 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001675 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001676 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001677 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001678 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001679 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001680 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001681 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001682 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001683 } else if (!isOnHomeDisplay()) {
1684 return false;
1685 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001686 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001687 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001688 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1689 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1690 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001691 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001692 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001693 }
1694
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001695 // If we are sleeping, and there is no resumed activity, and the top
1696 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001697 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001698 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001699 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001700 // Make sure we have executed any pending transitions, since there
1701 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001702 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001703 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001704 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001705 if (DEBUG_STATES) Slog.d(TAG_STATES,
1706 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001707 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001708 return false;
1709 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001710
1711 // Make sure that the user who owns this activity is started. If not,
1712 // we will just leave it as is because someone should be bringing
1713 // another user's activities to the top of the stack.
1714 if (mService.mStartedUsers.get(next.userId) == null) {
1715 Slog.w(TAG, "Skipping resume of top activity " + next
1716 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001717 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001718 return false;
1719 }
1720
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001721 // The activity may be waiting for stop, but that is no longer
1722 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001723 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001724 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001725 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001726 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001727
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001728 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001729
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001730 // If we are currently pausing an activity, then don't do anything
1731 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001732 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001733 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001734 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001735 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001736 return false;
1737 }
1738
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001739 // Okay we are now going to start a switch, to 'next'. We may first
1740 // have to pause the current activity, but this is an important point
1741 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001742 // XXX "App Redirected" dialog is getting too many false positives
1743 // at this point, so turn off for now.
1744 if (false) {
1745 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1746 long now = SystemClock.uptimeMillis();
1747 final boolean inTime = mLastStartedActivity.startTime != 0
1748 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1749 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1750 final int nextUid = next.info.applicationInfo.uid;
1751 if (inTime && lastUid != nextUid
1752 && lastUid != next.launchedFromUid
1753 && mService.checkPermission(
1754 android.Manifest.permission.STOP_APP_SWITCHES,
1755 -1, next.launchedFromUid)
1756 != PackageManager.PERMISSION_GRANTED) {
1757 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1758 } else {
1759 next.startTime = now;
1760 mLastStartedActivity = next;
1761 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001762 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001763 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001764 mLastStartedActivity = next;
1765 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001766 }
Craig Mautner58547802013-03-05 08:23:53 -08001767
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001768 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1769
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001770 // We need to start pausing the current activity so the top one
1771 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001772 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1773 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001774 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001775 if (DEBUG_STATES) Slog.d(TAG_STATES,
1776 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001777 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001778 }
1779 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001780 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001781 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001782 // At this point we want to put the upcoming activity's process
1783 // at the top of the LRU list, since we know we will be needing it
1784 // very soon and it would be a waste to let it get killed if it
1785 // happens to be sitting towards the end.
1786 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001787 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001788 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001789 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001790 return true;
1791 }
1792
Christopher Tated3f175c2012-06-14 14:16:54 -07001793 // If the most recent activity was noHistory but was only stopped rather
1794 // than stopped+finished because the device went to sleep, we need to make
1795 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001796 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001797 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001798 if (DEBUG_STATES) Slog.d(TAG_STATES,
1799 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07001800 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001801 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001802 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001803 }
1804
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001805 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001806 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1807 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001808 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001809 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1810 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001811 } else {
1812 // The next activity is already visible, so hide the previous
1813 // activity's windows right now so we can show the new one ASAP.
1814 // We only do this if the previous is finishing, which should mean
1815 // it is on top of the one being resumed so hiding it quickly
1816 // is good. Otherwise, we want to do the normal route of allowing
1817 // the resumed activity to be shown so we can decide if the
1818 // previous should actually be hidden depending on whether the
1819 // new one is found to be full-screen or not.
1820 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001821 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001822 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1823 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001824 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001825 + ", nowVisible=" + next.nowVisible);
1826 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001827 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08001828 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001829 + ", waitingVisible="
1830 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1831 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001832 }
1833 }
1834 }
1835
Dianne Hackborne7f97212011-02-24 14:40:20 -08001836 // Launching this app's activity, make sure the app is no longer
1837 // considered stopped.
1838 try {
1839 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001840 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001841 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001842 } catch (IllegalArgumentException e) {
1843 Slog.w(TAG, "Failed trying to unstop package "
1844 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001845 }
1846
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001847 // We are starting up the next activity, so tell the window manager
1848 // that the previous one will be hidden soon. This way it can know
1849 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001850 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001851 if (prev != null) {
1852 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001853 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001854 "Prepare close transition: prev=" + prev);
1855 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001856 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001857 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001859 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001860 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1861 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001862 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001863 mWindowManager.setAppWillBeHidden(prev.appToken);
1864 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001865 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001866 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
1867 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001868 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001869 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001870 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001871 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001872 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001873 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001874 : next.mLaunchTaskBehind
1875 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1876 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001877 }
1878 }
1879 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001880 mWindowManager.setAppWillBeHidden(prev.appToken);
1881 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001882 }
Craig Mautner967212c2013-04-13 21:10:58 -07001883 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001884 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001885 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001886 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001887 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001888 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001889 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001890 }
1891 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001892
1893 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001894 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001895 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1896 if (opts != null) {
1897 resumeAnimOptions = opts.toBundle();
1898 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001899 next.applyOptionsLocked();
1900 } else {
1901 next.clearOptionsLocked();
1902 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001903
Craig Mautnercf910b02013-04-23 11:23:27 -07001904 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001905 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001906 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001907
1908 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001909 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001910
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001911 // schedule launch ticks to collect information about slow apps.
1912 next.startLaunchTickingLocked();
1913
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001914 ActivityRecord lastResumedActivity =
1915 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001916 ActivityState lastState = next.state;
1917
1918 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001919
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001920 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001921 next.state = ActivityState.RESUMED;
1922 mResumedActivity = next;
1923 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08001924 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001925 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001926 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001927 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001928
1929 // Have the window manager re-evaluate the orientation of
1930 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001931 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001932 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001933 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001934 mService.mConfiguration,
1935 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1936 if (config != null) {
1937 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001938 }
Maxim Bogatov05075302015-05-19 18:33:08 -07001939 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001940 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001941
Craig Mautner525f3d92013-05-07 14:01:50 -07001942 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001943 // The configuration update wasn't able to keep the existing
1944 // instance of the activity, and instead started a new one.
1945 // We should be all done, but let's just make sure our activity
1946 // is still at the top and schedule another run if something
1947 // weird happened.
1948 ActivityRecord nextNext = topRunningActivityLocked(null);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001949 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001950 "Activity config changed during resume: " + next
1951 + ", new next: " + nextNext);
1952 if (nextNext != next) {
1953 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001954 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001955 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001956 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001957 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001958 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001959 return true;
1960 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001961 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001962 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001963 }
Craig Mautner58547802013-03-05 08:23:53 -08001964
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001965 try {
1966 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001967 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001968 if (a != null) {
1969 final int N = a.size();
1970 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001971 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
1972 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001973 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001974 }
1975 }
1976
1977 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001978 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001979 }
1980
Craig Mautner299f9602015-01-26 09:47:33 -08001981 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
1982 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001983
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001984 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001985 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001986 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001987 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07001988 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001989 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001990 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001991
Craig Mautner0eea92c2013-05-16 13:35:39 -07001992 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001993
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001994 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001995 } catch (Exception e) {
1996 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001997 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001998 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001999 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002000 if (lastStack != null) {
2001 lastStack.mResumedActivity = lastResumedActivity;
2002 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002003 Slog.i(TAG, "Restarting because process died: " + next);
2004 if (!next.hasBeenLaunched) {
2005 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002006 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2007 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002008 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002009 next.appToken, next.packageName, next.theme,
2010 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07002011 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2012 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002013 }
George Mount2c92c972014-03-20 09:38:23 -07002014 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002015 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002016 return true;
2017 }
2018
2019 // From this point on, if something goes wrong there is no way
2020 // to recover the activity.
2021 try {
2022 next.visible = true;
2023 completeResumeLocked(next);
2024 } catch (Exception e) {
2025 // If any exception gets thrown, toss away this
2026 // activity and try the next one.
2027 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002028 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002029 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002030 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002031 return true;
2032 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002033 next.stopped = false;
2034
2035 } else {
2036 // Whoops, need to restart this activity!
2037 if (!next.hasBeenLaunched) {
2038 next.hasBeenLaunched = true;
2039 } else {
2040 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002041 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002042 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002043 mService.compatibilityInfoForPackageLocked(
2044 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002045 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002046 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002047 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002048 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002049 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002050 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002051 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002052 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002053 }
2054
Craig Mautnercf910b02013-04-23 11:23:27 -07002055 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002056 return true;
2057 }
2058
riddle_hsuc215a4f2014-12-27 12:10:45 +08002059 private TaskRecord getNextTask(TaskRecord targetTask) {
2060 final int index = mTaskHistory.indexOf(targetTask);
2061 if (index >= 0) {
2062 final int numTasks = mTaskHistory.size();
2063 for (int i = index + 1; i < numTasks; ++i) {
2064 TaskRecord task = mTaskHistory.get(i);
2065 if (task.userId == targetTask.userId) {
2066 return task;
2067 }
2068 }
2069 }
2070 return null;
2071 }
2072
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002073 private void insertTaskAtPosition(TaskRecord task, int position) {
2074 if (position >= mTaskHistory.size()) {
2075 insertTaskAtTop(task, null);
2076 return;
2077 }
2078 // Calculate maximum possible position for this task.
2079 int maxPosition = mTaskHistory.size();
2080 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
2081 && task.topRunningActivityLocked(null) == null) {
2082 // Put non-current user tasks below current user tasks.
2083 while (maxPosition > 0) {
2084 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2085 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2086 || tmpTask.topRunningActivityLocked(null) == null) {
2087 break;
2088 }
2089 maxPosition--;
2090 }
2091 }
2092 position = Math.min(position, maxPosition);
2093 mTaskHistory.remove(task);
2094 mTaskHistory.add(position, task);
2095 updateTaskMovement(task, true);
2096 }
2097
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002098 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002099 // If the moving task is over home stack, transfer its return type to next task
2100 if (task.isOverHomeStack()) {
2101 final TaskRecord nextTask = getNextTask(task);
2102 if (nextTask != null) {
2103 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2104 }
2105 }
2106
Craig Mautner9c85c202013-10-04 20:11:26 -07002107 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002108 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002109 if (isOnHomeDisplay()) {
2110 ActivityStack lastStack = mStackSupervisor.getLastStack();
2111 final boolean fromHome = lastStack.isHomeStack();
2112 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002113 task.setTaskToReturnTo(fromHome
2114 ? lastStack.topTask() == null
2115 ? HOME_ACTIVITY_TYPE
2116 : lastStack.topTask().taskType
2117 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002118 }
2119 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002120 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002121 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002122
Craig Mautnerac6f8432013-07-17 13:24:59 -07002123 mTaskHistory.remove(task);
2124 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002125 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002126 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002127 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002128 || (newActivity == null && task.topRunningActivityLocked(null) == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002129 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002130 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002131 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002132 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002133 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002134 || tmpTask.topRunningActivityLocked(null) == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002135 break;
2136 }
2137 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002138 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002139 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002140 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002141 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002142 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002143
Craig Mautner8849a5e2013-04-02 16:41:03 -07002144 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002145 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002146 TaskRecord rTask = r.task;
2147 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002148 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2149 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002150 // Last activity in task had been removed or ActivityManagerService is reusing task.
2151 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002152 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002153 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002154 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002155 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002156 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002157 if (!newTask) {
2158 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002159 boolean startIt = true;
2160 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2161 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002162 if (task.getTopActivity() == null) {
2163 // All activities in task are finishing.
2164 continue;
2165 }
Craig Mautner70a86932013-02-28 22:37:44 -08002166 if (task == r.task) {
2167 // Here it is! Now, if this is not yet visible to the
2168 // user, then just add it without starting; it will
2169 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002170 if (!startIt) {
2171 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2172 + task, new RuntimeException("here").fillInStackTrace());
2173 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002174 r.putInHistory();
Wale Ogunwale706ed792015-08-02 10:29:44 -07002175 addAppToken(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002176 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002177 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002178 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002179 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002180 return;
2181 }
2182 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002183 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002184 startIt = false;
2185 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002186 }
2187 }
2188
2189 // Place a new activity at top of stack, so it is next to interact
2190 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002191
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002192 // If we are not placing the new activity frontmost, we do not want
2193 // to deliver the onUserLeaving callback to the actual frontmost
2194 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002195 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002196 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002197 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002198 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002199 }
Craig Mautner70a86932013-02-28 22:37:44 -08002200
2201 task = r.task;
2202
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002203 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002204 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002205 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002206 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002207 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002208
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002209 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002210 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002211 // We want to show the starting preview window if we are
2212 // switching to a new task, or the next activity's process is
2213 // not currently running.
2214 boolean showStartingIcon = newTask;
2215 ProcessRecord proc = r.app;
2216 if (proc == null) {
2217 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2218 }
2219 if (proc == null || proc.thread == null) {
2220 showStartingIcon = true;
2221 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002222 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002223 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002224 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002225 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002226 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002227 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002228 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002229 ? r.mLaunchTaskBehind
2230 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2231 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002232 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002233 mNoAnimActivities.remove(r);
2234 }
Wale Ogunwale706ed792015-08-02 10:29:44 -07002235 addAppToken(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002236 boolean doShow = true;
2237 if (newTask) {
2238 // Even though this activity is starting fresh, we still need
2239 // to reset it to make sure we apply affinities to move any
2240 // existing activities from other tasks in to it.
2241 // If the caller has requested that the target task be
2242 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002243 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002244 resetTaskIfNeededLocked(r, r);
2245 doShow = topRunningNonDelayedActivityLocked(null) == r;
2246 }
George Mount70778d72014-07-01 16:33:45 -07002247 } else if (options != null && new ActivityOptions(options).getAnimationType()
2248 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2249 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002250 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002251 if (r.mLaunchTaskBehind) {
2252 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2253 // tell WindowManager that r is visible even though it is at the back of the stack.
2254 mWindowManager.setAppVisibility(r.appToken, true);
2255 ensureActivitiesVisibleLocked(null, 0);
2256 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002257 // Figure out if we are transitioning from another activity that is
2258 // "has the same starting icon" as the next one. This allows the
2259 // window manager to keep the previous window it had previously
2260 // created, if it still had one.
2261 ActivityRecord prev = mResumedActivity;
2262 if (prev != null) {
2263 // We don't want to reuse the previous starting preview if:
2264 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002265 if (prev.task != r.task) {
2266 prev = null;
2267 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002268 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002269 else if (prev.nowVisible) {
2270 prev = null;
2271 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002272 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002273 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002274 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002275 mService.compatibilityInfoForPackageLocked(
2276 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002277 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002278 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002279 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002280 }
2281 } else {
2282 // If this is the first activity, don't do any fancy animations,
2283 // because there is nothing for it to animate on top of.
Wale Ogunwale706ed792015-08-02 10:29:44 -07002284 addAppToken(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002285 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002286 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002287 }
2288 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002289 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002290 }
2291
2292 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002293 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Chong Zhang45c25ce2015-08-10 22:18:26 -07002294 } else {
2295 addRecentActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002296 }
2297 }
2298
Dianne Hackbornbe707852011-11-11 14:32:10 -08002299 final void validateAppTokensLocked() {
2300 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002301 mValidateAppTokens.ensureCapacity(numActivities());
2302 final int numTasks = mTaskHistory.size();
2303 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2304 TaskRecord task = mTaskHistory.get(taskNdx);
2305 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002306 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002307 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002308 }
Craig Mautner000f0022013-02-26 15:04:29 -08002309 TaskGroup group = new TaskGroup();
2310 group.taskId = task.taskId;
2311 mValidateAppTokens.add(group);
2312 final int numActivities = activities.size();
2313 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2314 final ActivityRecord r = activities.get(activityNdx);
2315 group.tokens.add(r.appToken);
2316 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002317 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002318 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002319 }
2320
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002321 /**
2322 * Perform a reset of the given task, if needed as part of launching it.
2323 * Returns the new HistoryRecord at the top of the task.
2324 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002325 /**
2326 * Helper method for #resetTaskIfNeededLocked.
2327 * We are inside of the task being reset... we'll either finish this activity, push it out
2328 * for another task, or leave it as-is.
2329 * @param task The task containing the Activity (taskTop) that might be reset.
2330 * @param forceReset
2331 * @return An ActivityOptions that needs to be processed.
2332 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002333 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002334 ActivityOptions topOptions = null;
2335
2336 int replyChainEnd = -1;
2337 boolean canMoveOptions = true;
2338
2339 // We only do this for activities that are not the root of the task (since if we finish
2340 // the root, we may no longer have the task!).
2341 final ArrayList<ActivityRecord> activities = task.mActivities;
2342 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002343 final int rootActivityNdx = task.findEffectiveRootIndex();
2344 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002345 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002346 if (target.frontOfTask)
2347 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002348
2349 final int flags = target.info.flags;
2350 final boolean finishOnTaskLaunch =
2351 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2352 final boolean allowTaskReparenting =
2353 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2354 final boolean clearWhenTaskReset =
2355 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2356
2357 if (!finishOnTaskLaunch
2358 && !clearWhenTaskReset
2359 && target.resultTo != null) {
2360 // If this activity is sending a reply to a previous
2361 // activity, we can't do anything with it now until
2362 // we reach the start of the reply chain.
2363 // XXX note that we are assuming the result is always
2364 // to the previous activity, which is almost always
2365 // the case but we really shouldn't count on.
2366 if (replyChainEnd < 0) {
2367 replyChainEnd = i;
2368 }
2369 } else if (!finishOnTaskLaunch
2370 && !clearWhenTaskReset
2371 && allowTaskReparenting
2372 && target.taskAffinity != null
2373 && !target.taskAffinity.equals(task.affinity)) {
2374 // If this activity has an affinity for another
2375 // task, then we need to move it out of here. We will
2376 // move it as far out of the way as possible, to the
2377 // bottom of the activity stack. This also keeps it
2378 // correctly ordered with any activities we previously
2379 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002380 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002381 final ActivityRecord bottom =
2382 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002383 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002384 if (bottom != null && target.taskAffinity != null
2385 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002386 // If the activity currently at the bottom has the
2387 // same task affinity as the one we are moving,
2388 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002389 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002390 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002391 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002392 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002393 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002394 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002395 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002396 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002397 + " out to new task " + target.task);
2398 }
2399
Wale Ogunwale706ed792015-08-02 10:29:44 -07002400 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002401
Craig Mautner525f3d92013-05-07 14:01:50 -07002402 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002403 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2404 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002405 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002406 if (p.finishing) {
2407 continue;
2408 }
2409
Craig Mautnere3a74d52013-02-22 14:14:58 -08002410 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002411 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002412 topOptions = p.takeOptionsLocked();
2413 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002414 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002415 }
2416 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002417 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2418 "Removing activity " + p + " from task=" + task + " adding to task="
2419 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002420 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2421 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002422 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002423 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002424
Wale Ogunwale706ed792015-08-02 10:29:44 -07002425 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002426 }
2427
Wale Ogunwale706ed792015-08-02 10:29:44 -07002428 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002429 if (VALIDATE_TOKENS) {
2430 validateAppTokensLocked();
2431 }
2432
2433 replyChainEnd = -1;
2434 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2435 // If the activity should just be removed -- either
2436 // because it asks for it, or the task should be
2437 // cleared -- then finish it and anything that is
2438 // part of its reply chain.
2439 int end;
2440 if (clearWhenTaskReset) {
2441 // In this case, we want to finish this activity
2442 // and everything above it, so be sneaky and pretend
2443 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002444 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002445 } else if (replyChainEnd < 0) {
2446 end = i;
2447 } else {
2448 end = replyChainEnd;
2449 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002450 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002451 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002452 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002453 if (p.finishing) {
2454 continue;
2455 }
2456 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002457 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002458 topOptions = p.takeOptionsLocked();
2459 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002460 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002461 }
2462 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002463 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002464 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002465 if (finishActivityLocked(
2466 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002467 end--;
2468 srcPos--;
2469 }
2470 }
2471 replyChainEnd = -1;
2472 } else {
2473 // If we were in the middle of a chain, well the
2474 // activity that started it all doesn't want anything
2475 // special, so leave it all as-is.
2476 replyChainEnd = -1;
2477 }
2478 }
2479
2480 return topOptions;
2481 }
2482
2483 /**
2484 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2485 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2486 * @param affinityTask The task we are looking for an affinity to.
2487 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2488 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2489 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2490 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002491 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002492 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002493 int replyChainEnd = -1;
2494 final int taskId = task.taskId;
2495 final String taskAffinity = task.affinity;
2496
2497 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2498 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002499 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2500
2501 // Do not operate on or below the effective root Activity.
2502 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002503 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002504 if (target.frontOfTask)
2505 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002506
2507 final int flags = target.info.flags;
2508 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2509 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2510
2511 if (target.resultTo != null) {
2512 // If this activity is sending a reply to a previous
2513 // activity, we can't do anything with it now until
2514 // we reach the start of the reply chain.
2515 // XXX note that we are assuming the result is always
2516 // to the previous activity, which is almost always
2517 // the case but we really shouldn't count on.
2518 if (replyChainEnd < 0) {
2519 replyChainEnd = i;
2520 }
2521 } else if (topTaskIsHigher
2522 && allowTaskReparenting
2523 && taskAffinity != null
2524 && taskAffinity.equals(target.taskAffinity)) {
2525 // This activity has an affinity for our task. Either remove it if we are
2526 // clearing or move it over to our task. Note that
2527 // we currently punt on the case where we are resetting a
2528 // task that is not at the top but who has activities above
2529 // with an affinity to it... this is really not a normal
2530 // case, and we will need to later pull that task to the front
2531 // and usually at that point we will do the reset and pick
2532 // up those remaining activities. (This only happens if
2533 // someone starts an activity in a new task from an activity
2534 // in a task that is not currently on top.)
2535 if (forceReset || finishOnTaskLaunch) {
2536 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002537 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2538 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002539 for (int srcPos = start; srcPos >= i; --srcPos) {
2540 final ActivityRecord p = activities.get(srcPos);
2541 if (p.finishing) {
2542 continue;
2543 }
Todd Kennedy539db512014-12-15 09:57:55 -08002544 finishActivityLocked(
2545 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002546 }
2547 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002548 if (taskInsertionPoint < 0) {
2549 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002550
Craig Mautner77878772013-03-04 19:46:24 -08002551 }
Craig Mautner77878772013-03-04 19:46:24 -08002552
2553 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002554 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2555 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2556 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002557 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002558 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002559 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002560 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002561
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002562 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2563 "Removing and adding activity " + p + " to stack at " + task
2564 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002565 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2566 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002567 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002568 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002569 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002570 if (VALIDATE_TOKENS) {
2571 validateAppTokensLocked();
2572 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002573
2574 // Now we've moved it in to place... but what if this is
2575 // a singleTop activity and we have put it on top of another
2576 // instance of the same activity? Then we drop the instance
2577 // below so it remains singleTop.
2578 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2579 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002580 int targetNdx = taskActivities.indexOf(target);
2581 if (targetNdx > 0) {
2582 ActivityRecord p = taskActivities.get(targetNdx - 1);
2583 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002584 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2585 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002586 }
2587 }
2588 }
2589 }
2590
2591 replyChainEnd = -1;
2592 }
2593 }
Craig Mautner77878772013-03-04 19:46:24 -08002594 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002595 }
2596
Craig Mautner8849a5e2013-04-02 16:41:03 -07002597 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002598 ActivityRecord newActivity) {
2599 boolean forceReset =
2600 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2601 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2602 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2603 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2604 forceReset = true;
2605 }
2606 }
2607
2608 final TaskRecord task = taskTop.task;
2609
2610 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2611 * for remaining tasks. Used for later tasks to reparent to task. */
2612 boolean taskFound = false;
2613
2614 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2615 ActivityOptions topOptions = null;
2616
Craig Mautner77878772013-03-04 19:46:24 -08002617 // Preserve the location for reparenting in the new task.
2618 int reparentInsertionPoint = -1;
2619
Craig Mautnere3a74d52013-02-22 14:14:58 -08002620 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2621 final TaskRecord targetTask = mTaskHistory.get(i);
2622
2623 if (targetTask == task) {
2624 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2625 taskFound = true;
2626 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002627 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2628 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002629 }
2630 }
2631
Craig Mautner70a86932013-02-28 22:37:44 -08002632 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002633 if (taskNdx >= 0) {
2634 do {
2635 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2636 } while (taskTop == null && taskNdx >= 0);
2637 }
Craig Mautner70a86932013-02-28 22:37:44 -08002638
Craig Mautnere3a74d52013-02-22 14:14:58 -08002639 if (topOptions != null) {
2640 // If we got some ActivityOptions from an activity on top that
2641 // was removed from the task, propagate them to the new real top.
2642 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002643 taskTop.updateOptionsLocked(topOptions);
2644 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002645 topOptions.abort();
2646 }
2647 }
2648
2649 return taskTop;
2650 }
2651
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002652 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2653 String resultWho, int requestCode, int resultCode, Intent data) {
2654
2655 if (callingUid > 0) {
2656 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002657 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002658 }
2659
2660 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2661 + " : who=" + resultWho + " req=" + requestCode
2662 + " res=" + resultCode + " data=" + data);
2663 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2664 try {
2665 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2666 list.add(new ResultInfo(resultWho, requestCode,
2667 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002668 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002669 return;
2670 } catch (Exception e) {
2671 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2672 }
2673 }
2674
2675 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2676 }
2677
Craig Mautner299f9602015-01-26 09:47:33 -08002678 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002679 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2680 ActivityRecord next = topRunningActivityLocked(null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002681 final String myReason = reason + " adjustFocus";
Craig Mautner04f0b702013-10-22 12:31:01 -07002682 if (next != r) {
Wale Ogunwale61803ee2015-08-07 19:59:47 -07002683 if (next != null && mStackId == FREEFORM_WORKSPACE_STACK_ID) {
2684 // For freeform stack we always keep the focus within the stack as long as
2685 // there is a running activity in the stack that we can adjust focus to.
2686 mService.setFocusedActivityLocked(next, myReason);
2687 return;
2688 } else {
2689 final TaskRecord task = r.task;
2690 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2691 // For non-fullscreen stack, we want to move the focus to the next visible
2692 // stack to prevent the home screen from moving to the top and obscuring
2693 // other visible stacks.
2694 if (!mFullscreen
2695 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2696 return;
2697 }
2698 // Move the home stack to the top if this stack is fullscreen or there is no
2699 // other visible stack.
2700 if (mStackSupervisor.moveHomeStackTaskToTop(
2701 task.getTaskToReturnTo(), myReason)) {
2702 // Activity focus was already adjusted. Nothing else to do...
2703 return;
2704 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002705 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002706 }
2707 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002708
2709 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
Winson Chung648c83b2014-04-28 15:11:56 -07002710 if (top != null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002711 mService.setFocusedActivityLocked(top, myReason);
Winson Chung648c83b2014-04-28 15:11:56 -07002712 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002713 }
2714 }
2715
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002716 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2717 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2718 final String myReason = reason + " adjustFocusToNextVisibleStack";
2719 if (stack == null) {
2720 return false;
2721 }
2722 final ActivityRecord top = stack.topRunningActivityLocked(null);
2723 if (top == null) {
2724 return false;
2725 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002726 mService.setFocusedActivityLocked(top, myReason);
2727 return true;
2728 }
2729
Craig Mautnerf3333272013-04-22 10:55:53 -07002730 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002731 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002732 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2733 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2734 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002735 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002736 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07002737 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
2738 "stop-no-history", false)) {
2739 // Activity was finished, no need to continue trying to schedule stop.
2740 adjustFocusedActivityLocked(r, "stopActivityFinished");
2741 r.resumeKeyDispatchingLocked();
2742 return;
2743 }
Christopher Tated3f175c2012-06-14 14:16:54 -07002744 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002745 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002746 + " on stop because we're just sleeping");
2747 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002748 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002749 }
2750
2751 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002752 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002753 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002754 try {
2755 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002756 if (DEBUG_STATES) Slog.v(TAG_STATES,
2757 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002758 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002759 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2760 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002761 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002762 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002763 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002764 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002765 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002766 r.setSleeping(true);
2767 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002768 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002769 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002770 } catch (Exception e) {
2771 // Maybe just ignore exceptions here... if the process
2772 // has crashed, our death notification will clean things
2773 // up.
2774 Slog.w(TAG, "Exception thrown during pause", e);
2775 // Just in case, assume it to be stopped.
2776 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002777 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002778 r.state = ActivityState.STOPPED;
2779 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002780 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002781 }
2782 }
2783 }
2784 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002785
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002786 /**
2787 * @return Returns true if the activity is being finished, false if for
2788 * some reason it is being left as-is.
2789 */
2790 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002791 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002792 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002793 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
2794 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002795 + ", result=" + resultCode + ", data=" + resultData
2796 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002797 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002798 return false;
2799 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002800
Craig Mautnerd44711d2013-02-23 11:24:36 -08002801 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002802 return true;
2803 }
2804
Craig Mautnerd2328952013-03-05 12:46:26 -08002805 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002806 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2807 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2808 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2809 ActivityRecord r = activities.get(activityNdx);
2810 if (r.resultTo == self && r.requestCode == requestCode) {
2811 if ((r.resultWho == null && resultWho == null) ||
2812 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2813 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2814 false);
2815 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002816 }
2817 }
2818 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002819 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002820 }
2821
Todd Kennedy539db512014-12-15 09:57:55 -08002822 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002823 ActivityRecord r = topRunningActivityLocked(null);
2824 if (r != null && r.app == app) {
2825 // If the top running activity is from this crashing
2826 // process, then terminate it to avoid getting in a loop.
2827 Slog.w(TAG, " Force finishing activity "
2828 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002829 int taskNdx = mTaskHistory.indexOf(r.task);
2830 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002831 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002832 // Also terminate any activities below it that aren't yet
2833 // stopped, to avoid a situation where one will get
2834 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002835 --activityNdx;
2836 if (activityNdx < 0) {
2837 do {
2838 --taskNdx;
2839 if (taskNdx < 0) {
2840 break;
2841 }
2842 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2843 } while (activityNdx < 0);
2844 }
2845 if (activityNdx >= 0) {
2846 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002847 if (r.state == ActivityState.RESUMED
2848 || r.state == ActivityState.PAUSING
2849 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002850 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002851 Slog.w(TAG, " Force finishing activity "
2852 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002853 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002854 }
2855 }
2856 }
2857 }
2858 }
2859
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002860 final void finishVoiceTask(IVoiceInteractionSession session) {
2861 IBinder sessionBinder = session.asBinder();
2862 boolean didOne = false;
2863 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2864 TaskRecord tr = mTaskHistory.get(taskNdx);
2865 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2866 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2867 ActivityRecord r = tr.mActivities.get(activityNdx);
2868 if (!r.finishing) {
2869 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2870 false);
2871 didOne = true;
2872 }
2873 }
2874 }
2875 }
2876 if (didOne) {
2877 mService.updateOomAdjLocked();
2878 }
2879 }
2880
Craig Mautnerd2328952013-03-05 12:46:26 -08002881 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002882 ArrayList<ActivityRecord> activities = r.task.mActivities;
2883 for (int index = activities.indexOf(r); index >= 0; --index) {
2884 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002885 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002886 break;
2887 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002888 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002889 }
2890 return true;
2891 }
2892
Dianne Hackborn5c607432012-02-28 14:44:19 -08002893 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2894 // send the result
2895 ActivityRecord resultTo = r.resultTo;
2896 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002897 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08002898 + " who=" + r.resultWho + " req=" + r.requestCode
2899 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002900 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002901 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01002902 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002903 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002904 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002905 if (r.info.applicationInfo.uid > 0) {
2906 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2907 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002908 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002909 }
2910 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2911 resultData);
2912 r.resultTo = null;
2913 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002914 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002915
2916 // Make sure this HistoryRecord is not holding on to other resources,
2917 // because clients have remote IPC references to this object so we
2918 // can't assume that will go away and want to avoid circular IPC refs.
2919 r.results = null;
2920 r.pendingResults = null;
2921 r.newIntents = null;
2922 r.icicle = null;
2923 }
2924
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002925 /**
2926 * @return Returns true if this activity has been removed from the history
2927 * list, or false if it is still in the list and will be removed later.
2928 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002929 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2930 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002931 if (r.finishing) {
2932 Slog.w(TAG, "Duplicate finish request for " + r);
2933 return false;
2934 }
2935
Wale Ogunwale7d701172015-03-11 15:36:30 -07002936 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08002937 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002938 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002939 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002940 task.taskId, r.shortComponentName, reason);
2941 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002942 final int index = activities.indexOf(r);
2943 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002944 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002945 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002946 // If the caller asked that this activity (and all above it)
2947 // be cleared when the task is reset, don't lose that information,
2948 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002949 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002950 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002951 }
2952 }
2953
2954 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002955
Craig Mautner299f9602015-01-26 09:47:33 -08002956 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002957
Dianne Hackborn5c607432012-02-28 14:44:19 -08002958 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002959
Craig Mautnerde4ef022013-04-07 19:01:33 -07002960 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002961 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002962 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002963 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002964 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002965 ? AppTransition.TRANSIT_TASK_CLOSE
2966 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002967
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002968 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002969 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002970
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002971 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002972 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
2973 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
2974 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002975 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002976 }
2977
Craig Mautneraea74a52014-03-08 14:23:10 -08002978 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07002979 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08002980 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002981 } else if (r.state != ActivityState.PAUSING) {
2982 // If the activity is PAUSING, we will complete the finish once
2983 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002984 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002985 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002986 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002987 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002988 }
2989
2990 return false;
2991 }
2992
Craig Mautnerf3333272013-04-22 10:55:53 -07002993 static final int FINISH_IMMEDIATELY = 0;
2994 static final int FINISH_AFTER_PAUSE = 1;
2995 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002996
Craig Mautnerf3333272013-04-22 10:55:53 -07002997 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002998 // First things first: if this activity is currently visible,
2999 // and the resumed activity is not yet visible, then hold off on
3000 // finishing until the resumed one becomes visible.
3001 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003002 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
3003 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07003004 if (mStackSupervisor.mStoppingActivities.size() > 3
3005 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003006 // If we already have a few activities waiting to stop,
3007 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07003008 // them out. Or if r is the last of activity of the last task the stack
3009 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07003010 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003011 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003012 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003013 }
3014 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003015 if (DEBUG_STATES) Slog.v(TAG_STATES,
3016 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003017 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003018 if (oomAdj) {
3019 mService.updateOomAdjLocked();
3020 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003021 return r;
3022 }
3023
3024 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003025 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003026 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003027 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003028 if (mResumedActivity == r) {
3029 mResumedActivity = null;
3030 }
3031 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003032 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003033 r.state = ActivityState.FINISHING;
3034
3035 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003036 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003037 || prevState == ActivityState.STOPPED
3038 || prevState == ActivityState.INITIALIZING) {
3039 // If this activity is already stopped, we can just finish
3040 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003041 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003042 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003043 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003044 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003045 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003046 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003047 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3048 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003049 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003050 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003051
3052 // Need to go through the full pause cycle to get this
3053 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003054 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003055 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003056 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003057 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003058 return r;
3059 }
3060
Craig Mautneree36c772014-07-16 14:56:05 -07003061 void finishAllActivitiesLocked(boolean immediately) {
3062 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003063 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3064 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3065 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3066 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003067 noActivitiesInStack = false;
3068 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003069 continue;
3070 }
Craig Mautneree36c772014-07-16 14:56:05 -07003071 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003072 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3073 }
3074 }
Craig Mautneree36c772014-07-16 14:56:05 -07003075 if (noActivitiesInStack) {
3076 mActivityContainer.onTaskListEmptyLocked();
3077 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003078 }
3079
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003080 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3081 // Basic case: for simple app-centric recents, we need to recreate
3082 // the task if the affinity has changed.
3083 if (srec == null || srec.task.affinity == null ||
3084 !srec.task.affinity.equals(destAffinity)) {
3085 return true;
3086 }
3087 // Document-centric case: an app may be split in to multiple documents;
3088 // they need to re-create their task if this current activity is the root
3089 // of a document, unless simply finishing it will return them to the the
3090 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003091 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3092 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003093 // Okay, this activity is at the root of its task. What to do, what to do...
3094 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3095 // Finishing won't return to an application, so we need to recreate.
3096 return true;
3097 }
3098 // We now need to get the task below it to determine what to do.
3099 int taskIdx = mTaskHistory.indexOf(srec.task);
3100 if (taskIdx <= 0) {
3101 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3102 return false;
3103 }
3104 if (taskIdx == 0) {
3105 // At the bottom of the stack, nothing to go back to.
3106 return true;
3107 }
3108 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3109 if (!srec.task.affinity.equals(prevTask.affinity)) {
3110 // These are different apps, so need to recreate.
3111 return true;
3112 }
3113 }
3114 return false;
3115 }
3116
Wale Ogunwale7d701172015-03-11 15:36:30 -07003117 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003118 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003119 final TaskRecord task = srec.task;
3120 final ArrayList<ActivityRecord> activities = task.mActivities;
3121 final int start = activities.indexOf(srec);
3122 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003123 return false;
3124 }
3125 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003126 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003127 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003128 final ComponentName dest = destIntent.getComponent();
3129 if (start > 0 && dest != null) {
3130 for (int i = finishTo; i >= 0; i--) {
3131 ActivityRecord r = activities.get(i);
3132 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003133 r.info.name.equals(dest.getClassName())) {
3134 finishTo = i;
3135 parent = r;
3136 foundParentInTask = true;
3137 break;
3138 }
3139 }
3140 }
3141
3142 IActivityController controller = mService.mController;
3143 if (controller != null) {
3144 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3145 if (next != null) {
3146 // ask watcher if this is allowed
3147 boolean resumeOK = true;
3148 try {
3149 resumeOK = controller.activityResuming(next.packageName);
3150 } catch (RemoteException e) {
3151 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003152 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003153 }
3154
3155 if (!resumeOK) {
3156 return false;
3157 }
3158 }
3159 }
3160 final long origId = Binder.clearCallingIdentity();
3161 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003162 ActivityRecord r = activities.get(i);
3163 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003164 // Only return the supplied result for the first activity finished
3165 resultCode = Activity.RESULT_CANCELED;
3166 resultData = null;
3167 }
3168
3169 if (parent != null && foundParentInTask) {
3170 final int parentLaunchMode = parent.info.launchMode;
3171 final int destIntentFlags = destIntent.getFlags();
3172 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3173 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3174 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3175 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003176 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3177 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003178 } else {
3179 try {
3180 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3181 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003182 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003183 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003184 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07003185 -1, parent.launchedFromUid, 0, null, false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003186 foundParentInTask = res == ActivityManager.START_SUCCESS;
3187 } catch (RemoteException e) {
3188 foundParentInTask = false;
3189 }
3190 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003191 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003192 }
3193 }
3194 Binder.restoreCallingIdentity(origId);
3195 return foundParentInTask;
3196 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003197 /**
3198 * Perform the common clean-up of an activity record. This is called both
3199 * as part of destroyActivityLocked() (when destroying the client-side
3200 * representation) and cleaning things up as a result of its hosting
3201 * processing going away, in which case there is no remaining client-side
3202 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003203 *
3204 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003205 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003206 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3207 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003208 if (mResumedActivity == r) {
3209 mResumedActivity = null;
3210 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003211 if (mPausingActivity == r) {
3212 mPausingActivity = null;
3213 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003214 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003215
3216 r.configDestroy = false;
3217 r.frozenBeforeDestroy = false;
3218
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003219 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003220 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003221 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003222 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003223 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003224 }
3225
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003226 // Make sure this record is no longer in the pending finishes list.
3227 // This could happen, for example, if we are trimming activities
3228 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003229 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003230 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003231
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003232 // Remove any pending results.
3233 if (r.finishing && r.pendingResults != null) {
3234 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3235 PendingIntentRecord rec = apr.get();
3236 if (rec != null) {
3237 mService.cancelIntentSenderLocked(rec, false);
3238 }
3239 }
3240 r.pendingResults = null;
3241 }
3242
3243 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003244 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003245 }
3246
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003247 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003248 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003249 if (getVisibleBehindActivity() == r) {
3250 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003251 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003252 }
3253
3254 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003255 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003256 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003257 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003258 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003259 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003260 }
3261
Craig Mautner299f9602015-01-26 09:47:33 -08003262 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003263 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003264 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003265 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003266 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3267 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3268
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003269 r.takeFromHistory();
3270 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003271 if (DEBUG_STATES) Slog.v(TAG_STATES,
3272 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003273 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003274 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003275 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003276 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003277 if (VALIDATE_TOKENS) {
3278 validateAppTokensLocked();
3279 }
Craig Mautner312ba862014-02-10 17:55:01 -08003280 final TaskRecord task = r.task;
3281 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003282 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003283 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003284 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3285 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003286 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003287 }
Craig Mautner299f9602015-01-26 09:47:33 -08003288 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003289 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003290 cleanUpActivityServicesLocked(r);
3291 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003292 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003293
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003294 /**
3295 * Perform clean-up of service connections in an activity record.
3296 */
3297 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3298 // Throw away any services that have been bound by this activity.
3299 if (r.connections != null) {
3300 Iterator<ConnectionRecord> it = r.connections.iterator();
3301 while (it.hasNext()) {
3302 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003303 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003304 }
3305 r.connections = null;
3306 }
3307 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003308
Craig Mautneree2e45a2014-06-27 12:10:03 -07003309 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003310 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003311 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003312 mHandler.sendMessage(msg);
3313 }
3314
Craig Mautneree2e45a2014-06-27 12:10:03 -07003315 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003316 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003317 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003318 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3319 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3320 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3321 final ActivityRecord r = activities.get(activityNdx);
3322 if (r.finishing) {
3323 continue;
3324 }
3325 if (r.fullscreen) {
3326 lastIsOpaque = true;
3327 }
3328 if (owner != null && r.app != owner) {
3329 continue;
3330 }
3331 if (!lastIsOpaque) {
3332 continue;
3333 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003334 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003335 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003336 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003337 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003338 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003339 activityRemoved = true;
3340 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003341 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003342 }
3343 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003344 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003345 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003346 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003347 }
3348
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003349 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3350 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003351 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3352 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003353 + " pausing=" + mPausingActivity + " for reason " + reason);
3354 return destroyActivityLocked(r, true, reason);
3355 }
3356 return false;
3357 }
3358
3359 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3360 String reason) {
3361 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003362 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003363 int maxTasks = tasks.size() / 4;
3364 if (maxTasks < 1) {
3365 maxTasks = 1;
3366 }
3367 int numReleased = 0;
3368 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3369 final TaskRecord task = mTaskHistory.get(taskNdx);
3370 if (!tasks.contains(task)) {
3371 continue;
3372 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003373 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003374 int curNum = 0;
3375 final ArrayList<ActivityRecord> activities = task.mActivities;
3376 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3377 final ActivityRecord activity = activities.get(actNdx);
3378 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003379 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003380 + " in state " + activity.state + " resumed=" + mResumedActivity
3381 + " pausing=" + mPausingActivity + " for reason " + reason);
3382 destroyActivityLocked(activity, true, reason);
3383 if (activities.get(actNdx) != activity) {
3384 // Was removed from list, back up so we don't miss the next one.
3385 actNdx--;
3386 }
3387 curNum++;
3388 }
3389 }
3390 if (curNum > 0) {
3391 numReleased += curNum;
3392 maxTasks--;
3393 if (mTaskHistory.get(taskNdx) != task) {
3394 // The entire task got removed, back up so we don't miss the next one.
3395 taskNdx--;
3396 }
3397 }
3398 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003399 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3400 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003401 return numReleased;
3402 }
3403
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003404 /**
3405 * Destroy the current CLIENT SIDE instance of an activity. This may be
3406 * called both when actually finishing an activity, or when performing
3407 * a configuration switch where we destroy the current client-side object
3408 * but then create a new client-side object for this same HistoryRecord.
3409 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003410 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003411 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3412 "Removing activity from " + reason + ": token=" + r
3413 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003414 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003415 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003416 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003417
3418 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003419
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003420 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003421
3422 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003423
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003424 if (hadApp) {
3425 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003426 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003427 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3428 mService.mHeavyWeightProcess = null;
3429 mService.mHandler.sendEmptyMessage(
3430 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3431 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003432 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003433 // Update any services we are bound to that might care about whether
3434 // their client may have activities.
3435 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003436 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003437 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003438 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003439 }
3440 }
3441
3442 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003443
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003444 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003445 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003446 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003447 r.configChangeFlags);
3448 } catch (Exception e) {
3449 // We can just ignore exceptions here... if the process
3450 // has crashed, our death notification will clean things
3451 // up.
3452 //Slog.w(TAG, "Exception thrown during finish", e);
3453 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003454 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003455 removedFromHistory = true;
3456 skipDestroy = true;
3457 }
3458 }
3459
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003460 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003461
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003462 // If the activity is finishing, we need to wait on removing it
3463 // from the list to give it a chance to do its cleanup. During
3464 // that time it may make calls back with its token so we need to
3465 // be able to find it on the list and so we don't want to remove
3466 // it from the list yet. Otherwise, we can just immediately put
3467 // it in the destroyed state since we are not removing it from the
3468 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003469 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003470 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003471 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003472 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003473 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003474 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3475 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003476 if (DEBUG_STATES) Slog.v(TAG_STATES,
3477 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003478 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003479 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003480 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003481 }
3482 } else {
3483 // remove this record from the history.
3484 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003485 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003486 removedFromHistory = true;
3487 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003488 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003489 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003490 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003491 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003492 }
3493 }
3494
3495 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003496
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003497 if (!mLRUActivities.remove(r) && hadApp) {
3498 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3499 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003500
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003501 return removedFromHistory;
3502 }
3503
Craig Mautner299f9602015-01-26 09:47:33 -08003504 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003505 final long origId = Binder.clearCallingIdentity();
3506 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003507 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003508 if (r != null) {
3509 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003510 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003511 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003512
Wale Ogunwale60454db2015-01-23 16:05:07 -08003513 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003514 if (r.state == ActivityState.DESTROYING) {
3515 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003516 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003517 }
3518 }
Craig Mautner05d29032013-05-03 13:40:13 -07003519 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003520 } finally {
3521 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003522 }
3523 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003524
Todd Kennedyaab56db2015-01-30 09:39:53 -08003525 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003526 if (hasVisibleBehindActivity() &&
3527 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003528 if (r == topRunningActivityLocked(null)) {
3529 // Don't release the top activity if it has requested to run behind the next
3530 // activity.
3531 return;
3532 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003533 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003534 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003535 " thread=" + r.app.thread);
3536 if (r != null && r.app != null && r.app.thread != null) {
3537 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003538 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003539 } catch (RemoteException e) {
3540 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003541 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003542 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003543 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003544 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003545 }
3546 }
3547 }
3548
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003549 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003550 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3551 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003552 if (r != null) {
3553 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003554 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003555 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003556 }
3557 mStackSupervisor.resumeTopActivitiesLocked();
3558 }
3559
Jose Lima4b6c6692014-08-12 17:41:12 -07003560 boolean hasVisibleBehindActivity() {
3561 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003562 }
3563
Jose Lima4b6c6692014-08-12 17:41:12 -07003564 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003565 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003566 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003567 }
3568 }
3569
Jose Lima4b6c6692014-08-12 17:41:12 -07003570 ActivityRecord getVisibleBehindActivity() {
3571 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003572 }
3573
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003574 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3575 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003576 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003577 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3578 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003579 while (i > 0) {
3580 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003581 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003582 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003583 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003584 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003585 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003586 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003587 }
3588 }
3589 }
3590
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003591 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3592 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003593 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3594 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003595 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3596 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003597 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003598 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003599 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3600 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003601
3602 boolean hasVisibleActivities = false;
3603
3604 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003605 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003606 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3607 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003608 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3609 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3610 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3611 final ActivityRecord r = activities.get(activityNdx);
3612 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003613 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3614 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003615 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003616 if (r.visible) {
3617 hasVisibleActivities = true;
3618 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003619 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003620 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3621 // Don't currently have state for the activity, or
3622 // it is finishing -- always remove it.
3623 remove = true;
3624 } else if (r.launchCount > 2 &&
3625 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3626 // We have launched this activity too many times since it was
3627 // able to run, so give up and remove it.
3628 remove = true;
3629 } else {
3630 // The process may be gone, but the activity lives on!
3631 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003632 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003633 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003634 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3635 "Removing activity " + r + " from stack at " + i
3636 + ": haveState=" + r.haveState
3637 + " stateNotNeeded=" + r.stateNotNeeded
3638 + " finishing=" + r.finishing
3639 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003640 if (!r.finishing) {
3641 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3642 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3643 r.userId, System.identityHashCode(r),
3644 r.task.taskId, r.shortComponentName,
3645 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003646 if (r.state == ActivityState.RESUMED) {
3647 mService.updateUsageStats(r, false);
3648 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003649 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003650 } else {
3651 // We have the current state for this activity, so
3652 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003653 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3654 if (DEBUG_APP) Slog.v(TAG_APP,
3655 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003656 r.app = null;
3657 r.nowVisible = false;
3658 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003659 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003660 "App died, clearing saved state of " + r);
3661 r.icicle = null;
3662 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003663 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003664 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003665 if (remove) {
3666 removeActivityFromHistoryLocked(r, "appDied");
3667 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003668 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003669 }
3670 }
3671
3672 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003673 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003674
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003675 final void updateTransitLocked(int transit, Bundle options) {
3676 if (options != null) {
3677 ActivityRecord r = topRunningActivityLocked(null);
3678 if (r != null && r.state != ActivityState.RESUMED) {
3679 r.updateOptionsLocked(options);
3680 } else {
3681 ActivityOptions.abort(options);
3682 }
3683 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003684 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003685 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003686
Craig Mautner21d24a22014-04-23 11:45:37 -07003687 void updateTaskMovement(TaskRecord task, boolean toFront) {
3688 if (task.isPersistable) {
3689 task.mLastTimeMoved = System.currentTimeMillis();
3690 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3691 // recently will be most negative, tasks sent to the bottom before that will be less
3692 // negative. Similarly for recent tasks moved to the top which will be most positive.
3693 if (!toFront) {
3694 task.mLastTimeMoved *= -1;
3695 }
3696 }
3697 }
3698
Craig Mautner84984fa2014-06-19 11:19:20 -07003699 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003700 final int top = mTaskHistory.size() - 1;
3701 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3702 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003703 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003704 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3705 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003706 mTaskHistory.remove(taskNdx);
3707 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003708 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003709 return;
3710 }
3711 }
3712 }
3713
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003714 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003715 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003716 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003717
Craig Mautner11bf9a52013-02-19 14:08:51 -08003718 final int numTasks = mTaskHistory.size();
3719 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003720 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003721 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003722 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003723 ActivityOptions.abort(options);
3724 } else {
3725 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3726 }
3727 return;
3728 }
3729
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003730 if (timeTracker != null) {
3731 // The caller wants a time tracker associated with this task.
3732 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
3733 tr.mActivities.get(i).appTimeTracker = timeTracker;
3734 }
3735 }
3736
Craig Mautner11bf9a52013-02-19 14:08:51 -08003737 // Shift all activities with this task up to the top
3738 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003739 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003740
Chong Zhang45c25ce2015-08-10 22:18:26 -07003741 // Don't refocus if invisible to current user
3742 ActivityRecord top = tr.getTopActivity();
3743 if (!okToShowLocked(top)) {
3744 addRecentActivityLocked(top);
3745 ActivityOptions.abort(options);
3746 return;
3747 }
3748
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003749 // Set focus to the top running activity of this stack.
3750 ActivityRecord r = topRunningActivityLocked(null);
3751 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003752
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003753 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003754 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003755 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003756 if (r != null) {
3757 mNoAnimActivities.add(r);
3758 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003759 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003760 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003761 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003762 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003763
Craig Mautner05d29032013-05-03 13:40:13 -07003764 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003765 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003766
3767 if (VALIDATE_TOKENS) {
3768 validateAppTokensLocked();
3769 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003770 }
3771
3772 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003773 * Worker method for rearranging history stack. Implements the function of moving all
3774 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003775 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003776 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003777 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3778 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003779 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003780 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003781 * @return Returns true if the move completed, false if not.
3782 */
Craig Mautner299f9602015-01-26 09:47:33 -08003783 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003784 final TaskRecord tr = taskForIdLocked(taskId);
3785 if (tr == null) {
3786 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3787 return false;
3788 }
3789
3790 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003791 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003792
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003793 // If we have a watcher, preflight the move before committing to it. First check
3794 // for *other* available tasks, but if none are available, then try again allowing the
3795 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003796 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003797 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003798 if (next == null) {
3799 next = topRunningActivityLocked(null, 0);
3800 }
3801 if (next != null) {
3802 // ask watcher if this is allowed
3803 boolean moveOK = true;
3804 try {
3805 moveOK = mService.mController.activityResuming(next.packageName);
3806 } catch (RemoteException e) {
3807 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003808 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003809 }
3810 if (!moveOK) {
3811 return false;
3812 }
3813 }
3814 }
3815
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003816 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003817
riddle_hsuc215a4f2014-12-27 12:10:45 +08003818 boolean prevIsHome = false;
3819 if (tr.isOverHomeStack()) {
3820 final TaskRecord nextTask = getNextTask(tr);
3821 if (nextTask != null) {
3822 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3823 } else {
3824 prevIsHome = true;
3825 }
3826 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003827 mTaskHistory.remove(tr);
3828 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003829 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003830
Craig Mautnerc8143c62013-09-03 12:15:57 -07003831 // There is an assumption that moving a task to the back moves it behind the home activity.
3832 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003833 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003834 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3835 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003836 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003837 break;
3838 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003839 if (taskNdx == 1) {
3840 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003841 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003842 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003843 }
3844
Craig Mautner299f9602015-01-26 09:47:33 -08003845 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003846 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003847
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003848 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003849 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003850 }
3851
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003852 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
riddle_hsuc215a4f2014-12-27 12:10:45 +08003853 if (prevIsHome || task == tr && tr.isOverHomeStack()
3854 || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003855 if (!mService.mBooting && !mService.mBooted) {
3856 // Not ready yet!
3857 return false;
3858 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003859 final int taskToReturnTo = tr.getTaskToReturnTo();
3860 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003861 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003862 }
3863
Craig Mautner05d29032013-05-03 13:40:13 -07003864 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003865 return true;
3866 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003867
Craig Mautner8849a5e2013-04-02 16:41:03 -07003868 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003869 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003870 final Uri data = r.intent.getData();
3871 final String strData = data != null ? data.toSafeString() : null;
3872
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003873 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003874 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003875 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003876 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003877 }
3878
3879 /**
3880 * Make sure the given activity matches the current configuration. Returns
3881 * false if the activity had to be destroyed. Returns true if the
3882 * configuration is the same, or the activity will remain running as-is
3883 * for whatever reason. Ensures the HistoryRecord is updated with the
3884 * correct configuration and all other bookkeeping is handled.
3885 */
3886 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3887 int globalChanges) {
3888 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003889 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003890 "Skipping config check (will change): " + r);
3891 return true;
3892 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003893
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003894 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003895 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003896
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003897 // Short circuit: if the two configurations are the exact same
3898 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003899 final Configuration newConfig = mService.mConfiguration;
3900 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003901 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003902 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08003903 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003904 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003905 "Configuration unchanged in " + r);
3906 return true;
3907 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003908
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003909 // We don't worry about activities that are finishing.
3910 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003911 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003912 "Configuration doesn't matter in finishing " + r);
3913 r.stopFreezingScreenLocked(false);
3914 return true;
3915 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003916
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003917 // Okay we now are going to make this activity have the new config.
3918 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003919 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003920 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003921 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003922 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003923
Filip Gruszczynski23493322015-07-29 17:02:59 -07003924 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003925 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003926 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003927 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003928 "Configuration no differences in " + r);
3929 return true;
3930 }
3931
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003932 // If the activity isn't currently running, just leave the new
3933 // configuration and it will pick that up next time it starts.
3934 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003935 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003936 "Configuration doesn't matter not running " + r);
3937 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003938 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003939 return true;
3940 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003941
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003942 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003943 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
3944 "Checking to restart " + r.info.name + ": changed=0x"
3945 + Integer.toHexString(changes) + ", handles=0x"
3946 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig);
3947
Dianne Hackborne6676352011-06-01 16:51:20 -07003948 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003949 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3950 r.configChangeFlags |= changes;
3951 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003952 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003953 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003954 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003955 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003956 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003957 } else if (r.state == ActivityState.PAUSING) {
3958 // A little annoying: we are waiting for this activity to
3959 // finish pausing. Let's not do anything now, but just
3960 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003961 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003962 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003963 r.configDestroy = true;
3964 return true;
3965 } else if (r.state == ActivityState.RESUMED) {
3966 // Try to optimize this case: the configuration is changing
3967 // and we need to restart the top, resumed activity.
3968 // Instead of doing the normal handshaking, just say
3969 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003970 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003971 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003972 relaunchActivityLocked(r, r.configChangeFlags, true);
3973 r.configChangeFlags = 0;
3974 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003975 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003976 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003977 relaunchActivityLocked(r, r.configChangeFlags, false);
3978 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003979 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003980
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003981 // All done... tell the caller we weren't able to keep this
3982 // activity around.
3983 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003984 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003985
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003986 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003987 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003988 // changes is always sent to all processes when they happen so it can just use whatever
3989 // system level configuration it last got.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003990 if (r.app != null && r.app.thread != null) {
3991 try {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003992 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Sending new config to " + r);
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003993 r.app.thread.scheduleActivityConfigurationChanged(
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003994 r.appToken, new Configuration(taskConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003995 } catch (RemoteException e) {
3996 // If process died, whatever.
3997 }
3998 }
3999 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004000
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004001 return true;
4002 }
4003
Filip Gruszczynski23493322015-07-29 17:02:59 -07004004 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4005 Configuration oldTaskOverride) {
4006 // Determine what has changed. May be nothing, if this is a config
4007 // that has come back from the app after going idle. In that case
4008 // we just want to leave the official config object now in the
4009 // activity and do nothing else.
4010 int taskChanges = oldTaskOverride.diff(taskConfig);
4011 // We don't want to use size changes if they don't cross boundaries that are important to
4012 // the app.
4013 if ((taskChanges & ActivityInfo.CONFIG_SCREEN_SIZE) != 0) {
4014 final boolean crosses = record.crossesHorizontalSizeThreshold(
4015 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4016 || record.crossesVerticalSizeThreshold(
4017 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4018 if (!crosses) {
4019 taskChanges &= ~ActivityInfo.CONFIG_SCREEN_SIZE;
4020 }
4021 }
4022 if ((taskChanges & ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
4023 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4024 final int newSmallest = taskConfig.smallestScreenWidthDp;
4025 final boolean crosses = record.crossesHorizontalSizeThreshold(oldSmallest, newSmallest)
4026 || record.crossesVerticalSizeThreshold(oldSmallest, newSmallest);
4027 if (!crosses) {
4028 taskChanges &= ~ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
4029 }
4030 }
4031 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4032 }
4033
4034 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4035 Configuration oldTaskOverride, int taskChanges) {
4036 if (taskChanges == 0) {
4037 // {@link Configuration#diff} doesn't catch changes from unset values.
4038 // Check for changes we care about.
4039 if (oldTaskOverride.orientation != taskConfig.orientation) {
4040 taskChanges |= ActivityInfo.CONFIG_ORIENTATION;
4041 }
4042 // We want to explicitly track situations where the size configuration goes from
4043 // undefined to defined. We don't care about crossing the threshold in that case,
4044 // because there is no threshold.
4045 final int oldHeight = oldTaskOverride.screenHeightDp;
4046 final int newHeight = taskConfig.screenHeightDp;
4047 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4048 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4049 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
4050 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
4051 }
4052 final int oldWidth = oldTaskOverride.screenWidthDp;
4053 final int newWidth = taskConfig.screenWidthDp;
4054 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4055 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4056 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
4057 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
4058 }
4059 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4060 final int newSmallest = taskConfig.smallestScreenWidthDp;
4061 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4062 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4063 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
4064 taskChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
4065 }
4066 }
4067 return taskChanges;
4068 }
4069
Craig Mautner2568c3a2015-03-26 14:22:34 -07004070 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004071 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004072 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004073 if (andResume) {
4074 results = r.results;
4075 newIntents = r.newIntents;
4076 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004077 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4078 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004079 + " andResume=" + andResume);
4080 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004081 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004082 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004083
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004084 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004085
Craig Mautner34b73df2014-01-12 21:11:08 -08004086 mStackSupervisor.removeChildActivityContainers(r);
4087
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004088 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004089 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
4090 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004091 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004092 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4093 !andResume, new Configuration(mService.mConfiguration),
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004094 new Configuration(r.task.mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004095 // Note: don't need to call pauseIfSleepingLocked() here, because
4096 // the caller will only pass in 'andResume' if this activity is
4097 // currently resumed, which implies we aren't sleeping.
4098 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004099 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004100 }
4101
4102 if (andResume) {
4103 r.results = null;
4104 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004105 r.state = ActivityState.RESUMED;
4106 } else {
4107 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4108 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004109 }
4110
4111 return true;
4112 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004113
4114 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004115 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4116 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4117 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4118 final ActivityRecord r = activities.get(activityNdx);
4119 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004120 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004121 }
4122 if (r.fullscreen && !r.finishing) {
4123 return false;
4124 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004125 }
4126 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004127 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004128 if (r == null) {
4129 return false;
4130 }
4131 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4132 + " would have returned true for r=" + r);
4133 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004134 }
4135
4136 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004137 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4138 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4139 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4140 final ActivityRecord r = activities.get(activityNdx);
4141 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004142 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004143 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004144 }
4145 }
4146 }
4147
Wale Ogunwale540e1232015-05-01 15:35:39 -07004148 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4149 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004150 boolean didSomething = false;
4151 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004152 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004153 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4154 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4155 int numActivities = activities.size();
4156 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4157 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004158 final boolean sameComponent =
4159 (r.packageName.equals(packageName) && (filterByClasses == null
4160 || filterByClasses.contains(r.realActivity.getClassName())))
4161 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004162 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004163 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004164 && (r.app == null || evenPersistent || !r.app.persistent)) {
4165 if (!doit) {
4166 if (r.finishing) {
4167 // If this activity is just finishing, then it is not
4168 // interesting as far as something to stop.
4169 continue;
4170 }
4171 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004172 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004173 if (r.isHomeActivity()) {
4174 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4175 Slog.i(TAG, "Skip force-stop again " + r);
4176 continue;
4177 } else {
4178 homeActivity = r.realActivity;
4179 }
4180 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004181 didSomething = true;
4182 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004183 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004184 if (r.app != null) {
4185 r.app.removed = true;
4186 }
4187 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004188 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004189 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004190 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4191 true)) {
4192 // r has been deleted from mActivities, accommodate.
4193 --numActivities;
4194 --activityNdx;
4195 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004196 }
4197 }
4198 }
4199 return didSomething;
4200 }
4201
Dianne Hackborn09233282014-04-30 11:33:59 -07004202 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004203 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4204 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004205 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004206 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004207 if (task.getTopActivity() == null) {
4208 continue;
4209 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004210 ActivityRecord r = null;
4211 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004212 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004213 int numActivities = 0;
4214 int numRunning = 0;
4215 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004216 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004217 continue;
4218 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004219 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004220 tmp = activities.get(activityNdx);
4221 if (tmp.finishing) {
4222 continue;
4223 }
4224 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004225
Craig Mautneraab647e2013-02-28 16:31:36 -08004226 // Initialize state for next task if needed.
4227 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4228 top = r;
4229 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004230 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004231
4232 // Add 'r' into the current task.
4233 numActivities++;
4234 if (r.app != null && r.app.thread != null) {
4235 numRunning++;
4236 }
4237
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004238 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004239 TAG, r.intent.getComponent().flattenToShortString()
4240 + ": task=" + r.task);
4241 }
4242
4243 RunningTaskInfo ci = new RunningTaskInfo();
4244 ci.id = task.taskId;
4245 ci.baseActivity = r.intent.getComponent();
4246 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004247 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004248 if (focusedStack && topTask) {
4249 // Give the latest time to ensure foreground task can be sorted
4250 // at the first, because lastActiveTime of creating task is 0.
4251 ci.lastActiveTime = System.currentTimeMillis();
4252 topTask = false;
4253 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004254
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004255 if (top.task != null) {
4256 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004257 }
4258 ci.numActivities = numActivities;
4259 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004260 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004261 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004262 }
4263
4264 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004265 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004266 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004267 if (top >= 0) {
4268 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4269 int activityTop = activities.size() - 1;
4270 if (activityTop > 0) {
4271 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4272 "unhandled-back", true);
4273 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004274 }
4275 }
4276
Craig Mautner6b74cb52013-09-27 17:02:21 -07004277 /**
4278 * Reset local parameters because an app's activity died.
4279 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004280 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004281 */
4282 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004283 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004284 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004285 "App died while pausing: " + mPausingActivity);
4286 mPausingActivity = null;
4287 }
4288 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4289 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004290 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004291 }
4292
Craig Mautner19091252013-10-05 00:03:53 -07004293 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004294 }
4295
Craig Mautnercae015f2013-02-08 14:31:27 -08004296 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004297 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4298 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4299 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4300 final ActivityRecord r = activities.get(activityNdx);
4301 if (r.app == app) {
4302 Slog.w(TAG, " Force finishing activity "
4303 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004304 // Force the destroy to skip right to removal.
4305 r.app = null;
4306 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004307 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004308 }
4309 }
4310 }
4311
Dianne Hackborn390517b2013-05-30 15:03:32 -07004312 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004313 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004314 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004315 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4316 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004317 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4318 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004319 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004320 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004321 if (printed) {
4322 header = null;
4323 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004324 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004325 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004326 }
4327
4328 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4329 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4330
4331 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004332 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4333 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004334 }
4335 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004336 final int top = mTaskHistory.size() - 1;
4337 if (top >= 0) {
4338 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4339 int listTop = list.size() - 1;
4340 if (listTop >= 0) {
4341 activities.add(list.get(listTop));
4342 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004343 }
4344 } else {
4345 ItemMatcher matcher = new ItemMatcher();
4346 matcher.build(name);
4347
Craig Mautneraab647e2013-02-28 16:31:36 -08004348 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4349 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4350 if (matcher.match(r1, r1.intent.getComponent())) {
4351 activities.add(r1);
4352 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004353 }
4354 }
4355 }
4356
4357 return activities;
4358 }
4359
4360 ActivityRecord restartPackage(String packageName) {
4361 ActivityRecord starting = topRunningActivityLocked(null);
4362
4363 // All activities that came from the package must be
4364 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004365 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4366 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4367 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4368 final ActivityRecord a = activities.get(activityNdx);
4369 if (a.info.packageName.equals(packageName)) {
4370 a.forceNewConfig = true;
4371 if (starting != null && a == starting && a.visible) {
4372 a.startFreezingScreenLocked(starting.app,
4373 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4374 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004375 }
4376 }
4377 }
4378
4379 return starting;
4380 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004381
Craig Mautner299f9602015-01-26 09:47:33 -08004382 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale040b4702015-08-06 18:10:50 -07004383 removeTask(task, reason, !MOVING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004384 }
4385
Wale Ogunwale000957c2015-04-03 08:19:12 -07004386 /**
4387 * Removes the input task from this stack.
4388 * @param task to remove.
4389 * @param reason for removal.
Wale Ogunwale040b4702015-08-06 18:10:50 -07004390 * @param moving task to another stack. In the case we are moving we don't want to perform
4391 * some operations on the task like removing it from window manager or recents.
Wale Ogunwale000957c2015-04-03 08:19:12 -07004392 */
Wale Ogunwale040b4702015-08-06 18:10:50 -07004393 void removeTask(TaskRecord task, String reason, boolean moving) {
4394 if (!moving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004395 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004396 mWindowManager.removeTask(task.taskId);
4397 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004398
Craig Mautner04a0ea62014-01-13 12:51:26 -08004399 final ActivityRecord r = mResumedActivity;
4400 if (r != null && r.task == task) {
4401 mResumedActivity = null;
4402 }
4403
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004404 final int taskNdx = mTaskHistory.indexOf(task);
4405 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004406 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4407 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4408 if (!nextTask.isOverHomeStack()) {
4409 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4410 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004411 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004412 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004413 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004414
Wale Ogunwale040b4702015-08-06 18:10:50 -07004415 if (!moving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004416 final boolean isVoiceSession = task.voiceSession != null;
4417 if (isVoiceSession) {
4418 try {
4419 task.voiceSession.taskFinished(task.intent, task.taskId);
4420 } catch (RemoteException e) {
4421 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004422 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004423 if (task.autoRemoveFromRecents() || isVoiceSession) {
4424 // Task creator asked to remove this when done, or this task was a voice
4425 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004426 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004427 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004428 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004429 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004430
4431 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004432 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004433 final boolean notHomeStack = !isHomeStack();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004434 if (isOnHomeDisplay()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004435 String myReason = reason + " leftTaskHistoryEmpty";
4436 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
4437 mStackSupervisor.moveHomeStack(notHomeStack, myReason);
4438 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004439 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004440 if (mStacks != null) {
4441 mStacks.remove(this);
4442 mStacks.add(0, this);
4443 }
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004444 if (notHomeStack) {
4445 mActivityContainer.onTaskListEmptyLocked();
4446 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004447 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004448
4449 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004450 }
4451
Dianne Hackborn91097de2014-04-04 18:02:06 -07004452 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4453 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4454 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004455 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4456 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004457 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004458 return task;
4459 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004460
4461 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004462 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004463 }
4464
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004465 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004466 task.stack = this;
4467 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004468 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004469 } else {
4470 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004471 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004472 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004473 if (!moving && task.voiceSession != null) {
4474 try {
4475 task.voiceSession.taskStarted(task.intent, task.taskId);
4476 } catch (RemoteException e) {
4477 }
4478 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004479 }
4480
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004481 void positionTask(final TaskRecord task, int position, boolean moving) {
4482 task.stack = this;
4483 insertTaskAtPosition(task, position);
4484 if (!moving && task.voiceSession != null) {
4485 try {
4486 task.voiceSession.taskStarted(task.intent, task.taskId);
4487 } catch (RemoteException e) {
4488 }
4489 }
4490 }
4491
Wale Ogunwale706ed792015-08-02 10:29:44 -07004492 void addAppToken(ActivityRecord r, TaskRecord task) {
4493 final Rect bounds = task.getLaunchBounds();
4494 final Configuration config =
4495 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4496 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
4497 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
4498 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind,
4499 bounds);
4500 if (config != null) {
4501 task.updateOverrideConfiguration(config, bounds);
4502 }
4503 r.taskConfigOverride = task.mOverrideConfig;
4504 }
4505
4506 private void setAppTask(ActivityRecord r, TaskRecord task) {
4507 final Rect bounds = task.getLaunchBounds();
4508 final Configuration config =
4509 mWindowManager.setAppTask(r.appToken, task.taskId, task.getLaunchBounds());
4510 if (config != null) {
4511 task.updateOverrideConfiguration(config, bounds);
4512 }
4513 r.taskConfigOverride = task.mOverrideConfig;
4514 }
4515
Craig Mautnerc00204b2013-03-05 15:02:14 -08004516 public int getStackId() {
4517 return mStackId;
4518 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004519
4520 @Override
4521 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004522 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4523 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004524 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004525
Craig Mautner15df08a2015-04-01 12:17:18 -07004526 void onLockTaskPackagesUpdatedLocked() {
4527 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4528 mTaskHistory.get(taskNdx).setLockTaskAuth();
4529 }
4530 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004531}