blob: 48d16e0b95c90012dc7898bf1e84a3066146a65c [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
Craig Mautner0eea92c2013-05-16 13:35:39 -070019import static com.android.server.am.ActivityManagerService.TAG;
20import static com.android.server.am.ActivityManagerService.localLOGV;
21import static com.android.server.am.ActivityManagerService.DEBUG_CLEANUP;
22import static com.android.server.am.ActivityManagerService.DEBUG_CONFIGURATION;
23import static com.android.server.am.ActivityManagerService.DEBUG_PAUSE;
24import static com.android.server.am.ActivityManagerService.DEBUG_RESULTS;
25import static com.android.server.am.ActivityManagerService.DEBUG_STACK;
26import static com.android.server.am.ActivityManagerService.DEBUG_SWITCH;
27import static com.android.server.am.ActivityManagerService.DEBUG_TASKS;
28import static com.android.server.am.ActivityManagerService.DEBUG_TRANSITION;
29import static com.android.server.am.ActivityManagerService.DEBUG_USER_LEAVING;
30import static com.android.server.am.ActivityManagerService.DEBUG_VISBILITY;
31import static com.android.server.am.ActivityManagerService.VALIDATE_TOKENS;
32
33import static com.android.server.am.ActivityStackSupervisor.DEBUG_ADD_REMOVE;
34import static com.android.server.am.ActivityStackSupervisor.DEBUG_APP;
35import static com.android.server.am.ActivityStackSupervisor.DEBUG_SAVED_STATE;
36import static com.android.server.am.ActivityStackSupervisor.DEBUG_STATES;
Craig Mautnerde4ef022013-04-07 19:01:33 -070037import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
38
Craig Mautnerf4c909b2014-04-17 18:39:38 -070039import static com.android.server.am.ActivityStackSupervisor.ActivityContainer.CONTAINER_STATE_HAS_SURFACE;
40
Dianne Hackborn91097de2014-04-04 18:02:06 -070041import android.service.voice.IVoiceInteractionSession;
42import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070043import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070044import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080045import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080046import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080047import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080048import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070049import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050
51import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070052import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070053import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080055import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080057import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070060import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070062import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080063import android.content.res.Resources;
64import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080065import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070067import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080068import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.os.Handler;
70import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090071import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070072import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070073import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070074import android.os.RemoteException;
75import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080076import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070077import android.os.UserHandle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070079import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070080import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070081
Craig Mautnercae015f2013-02-08 14:31:27 -080082import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080083import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070084import java.lang.ref.WeakReference;
85import java.util.ArrayList;
86import java.util.Iterator;
87import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080088import java.util.Objects;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070089
90/**
91 * State and management of a single stack of activities.
92 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070093final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080094
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -070095 // Ticks during which we check progress while waiting for an app to launch.
96 static final int LAUNCH_TICK = 500;
97
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070098 // How long we wait until giving up on the last activity to pause. This
99 // is short because it directly impacts the responsiveness of starting the
100 // next activity.
101 static final int PAUSE_TIMEOUT = 500;
102
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700103 // How long we wait for the activity to tell us it has stopped before
104 // giving up. This is a good amount of time because we really need this
105 // from the application in order to get its saved state.
106 static final int STOP_TIMEOUT = 10*1000;
107
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700108 // How long we wait until giving up on an activity telling us it has
109 // finished destroying itself.
110 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800111
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700112 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800113 // disabled.
114 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800115
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700116 // How long between activity launches that we consider safe to not warn
117 // the user about an unexpected activity being launched on top.
118 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800119
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700120 // Set to false to disable the preview that is shown while a new activity
121 // is being started.
122 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800123
Craig Mautner5eda9b32013-07-02 11:58:16 -0700124 // How long to wait for all background Activities to redraw following a call to
125 // convertToTranslucent().
126 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
127
Craig Mautnera61bc652013-10-28 15:43:18 -0700128 static final boolean SCREENSHOT_FORCE_565 = ActivityManager.isLowRamDeviceStatic();
John Reck172e87c2013-10-02 16:55:16 -0700129
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700130 enum ActivityState {
131 INITIALIZING,
132 RESUMED,
133 PAUSING,
134 PAUSED,
135 STOPPING,
136 STOPPED,
137 FINISHING,
138 DESTROYING,
139 DESTROYED
140 }
141
142 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700143 final WindowManagerService mWindowManager;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800144
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700145 /**
146 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800147 * running) activities. It contains #TaskRecord objects.
148 */
149 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
150
151 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800152 * Used for validating app tokens with window manager.
153 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800154 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800155
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700156 /**
157 * List of running activities, sorted by recent usage.
158 * The first entry in the list is the least recently used.
159 * It contains HistoryRecord objects.
160 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700161 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700162
163 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700164 * Animations that for the current transition have requested not to
165 * be considered for the transition animation.
166 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700167 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700168
169 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170 * When we are in the process of pausing an activity, before starting the
171 * next one, this variable holds the activity that is currently being paused.
172 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800173 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700174
175 /**
176 * This is the last activity that we put into the paused state. This is
177 * used to determine if we need to do an activity transition while sleeping,
178 * when we normally hold the top activity paused.
179 */
180 ActivityRecord mLastPausedActivity = null;
181
182 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700183 * Activities that specify No History must be removed once the user navigates away from them.
184 * If the device goes to sleep with such an activity in the paused state then we save it here
185 * and finish it later if another activity replaces it on wakeup.
186 */
187 ActivityRecord mLastNoHistoryActivity = null;
188
189 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700190 * Current activity that is resumed, or null if there is none.
191 */
192 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800193
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700194 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700195 * This is the last activity that has been started. It is only used to
196 * identify when multiple activities are started at once so that the user
197 * can be warned they may not be in the activity they think they are.
198 */
199 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800200
Craig Mautner5eda9b32013-07-02 11:58:16 -0700201 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
202 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
203 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
204 // Activity in mTranslucentActivityWaiting is notified via
205 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
206 // background activity being drawn then the same call will be made with a true value.
207 ActivityRecord mTranslucentActivityWaiting = null;
208 ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
209 new ArrayList<ActivityRecord>();
210
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700211 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700212 * Set when we know we are going to be calling updateConfiguration()
213 * soon, so want to skip intermediate config checks.
214 */
215 boolean mConfigWillChange;
216
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700217 long mLaunchStartTime = 0;
218 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800219
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800220 /**
Craig Mautnerb12428a2012-12-20 16:07:06 -0800221 * Save the most recent screenshot for reuse. This keeps Recents from taking two identical
222 * screenshots, one for the Recents thumbnail and one for the pauseActivity thumbnail.
223 */
224 private ActivityRecord mLastScreenshotActivity = null;
225 private Bitmap mLastScreenshotBitmap = null;
226
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800227 int mThumbnailWidth = -1;
228 int mThumbnailHeight = -1;
229
Craig Mautner858d8a62013-04-23 17:08:34 -0700230 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700231
Craig Mautnerc00204b2013-03-05 15:02:14 -0800232 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800233 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800234 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
235 ArrayList<ActivityStack> mStacks;
236 /** The attached Display's unique identifier, or -1 if detached */
237 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800238
Craig Mautner27084302013-03-25 08:05:25 -0700239 /** Run all ActivityStacks through this */
240 final ActivityStackSupervisor mStackSupervisor;
241
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700242 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700243 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
244 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
245 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
246 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700247 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700248
249 static class ScheduleDestroyArgs {
250 final ProcessRecord mOwner;
251 final boolean mOomAdj;
252 final String mReason;
253 ScheduleDestroyArgs(ProcessRecord owner, boolean oomAdj, String reason) {
254 mOwner = owner;
255 mOomAdj = oomAdj;
256 mReason = reason;
257 }
258 }
259
Zoran Marcetaf958b322012-08-09 20:27:12 +0900260 final Handler mHandler;
261
262 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700263 //public Handler() {
264 // if (localLOGV) Slog.v(TAG, "Handler started!");
265 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700266 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900267 super(looper);
268 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700269
Zoran Marcetaf958b322012-08-09 20:27:12 +0900270 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700271 public void handleMessage(Message msg) {
272 switch (msg.what) {
273 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800274 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700275 // We don't at this point know if the activity is fullscreen,
276 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800277 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700278 synchronized (mService) {
279 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700280 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700281 }
Craig Mautnera0026042014-04-23 11:45:37 -0700282 activityPausedLocked(r.appToken, true, r.persistentState);
Craig Mautnerd2328952013-03-05 12:46:26 -0800283 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700284 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700285 case LAUNCH_TICK_MSG: {
286 ActivityRecord r = (ActivityRecord)msg.obj;
287 synchronized (mService) {
288 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700289 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700290 }
291 }
292 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700293 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800294 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700295 // We don't at this point know if the activity is fullscreen,
296 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800297 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800298 synchronized (mService) {
299 activityDestroyedLocked(r != null ? r.appToken : null);
300 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700301 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700302 case STOP_TIMEOUT_MSG: {
303 ActivityRecord r = (ActivityRecord)msg.obj;
304 // We don't at this point know if the activity is fullscreen,
305 // so we need to be conservative and assume it isn't.
306 Slog.w(TAG, "Activity stop timeout for " + r);
307 synchronized (mService) {
308 if (r.isInHistory()) {
309 activityStoppedLocked(r, null, null, null);
310 }
311 }
312 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700313 case DESTROY_ACTIVITIES_MSG: {
314 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
315 synchronized (mService) {
316 destroyActivitiesLocked(args.mOwner, args.mOomAdj, args.mReason);
317 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700318 } break;
319 case TRANSLUCENT_TIMEOUT_MSG: {
320 synchronized (mService) {
321 notifyActivityDrawnLocked(null);
322 }
323 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700324 }
325 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800326 }
327
Craig Mautner34b73df2014-01-12 21:11:08 -0800328 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800329 int count = 0;
330 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
331 count += mTaskHistory.get(taskNdx).mActivities.size();
332 }
333 return count;
334 }
335
Craig Mautner4a1cb222013-12-04 16:14:06 -0800336 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer) {
337 mActivityContainer = activityContainer;
338 mStackSupervisor = activityContainer.getOuter();
339 mService = mStackSupervisor.mService;
340 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
341 mWindowManager = mService.mWindowManager;
342 mStackId = activityContainer.mStackId;
343 mCurrentUser = mService.mCurrentUserId;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700344 }
Craig Mautner5962b122012-10-05 14:45:52 -0700345
Amith Yamasani734983f2014-03-04 16:48:05 -0800346 /**
Kenny Guy2a764942014-04-02 13:29:20 +0100347 * Checks whether the userid is a profile of the current user.
Amith Yamasani734983f2014-03-04 16:48:05 -0800348 */
Kenny Guy2a764942014-04-02 13:29:20 +0100349 private boolean isCurrentProfileLocked(int userId) {
Kenny Guyf4824a02014-04-02 19:17:41 +0100350 if (userId == mCurrentUser) return true;
Kenny Guy2a764942014-04-02 13:29:20 +0100351 for (int i = 0; i < mService.mCurrentProfileIds.length; i++) {
352 if (mService.mCurrentProfileIds[i] == userId) return true;
Amith Yamasani734983f2014-03-04 16:48:05 -0800353 }
354 return false;
355 }
356
357 boolean okToShowLocked(ActivityRecord r) {
Kenny Guy2a764942014-04-02 13:29:20 +0100358 return isCurrentProfileLocked(r.userId)
Craig Mautner5962b122012-10-05 14:45:52 -0700359 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
360 }
361
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700362 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800363 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700364 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
365 if (r != null) {
366 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800367 }
368 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700369 return null;
370 }
371
372 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800373 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
374 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800375 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800376 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
377 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800378 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800379 return r;
380 }
381 }
382 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700383 return null;
384 }
385
386 /**
387 * This is a simplified version of topRunningActivityLocked that provides a number of
388 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800389 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700390 * @param token If non-null, any history records matching this token will be skipped.
391 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800392 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700393 * @return Returns the HistoryRecord of the next activity on the stack.
394 */
395 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800396 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
397 TaskRecord task = mTaskHistory.get(taskNdx);
398 if (task.taskId == taskId) {
399 continue;
400 }
401 ArrayList<ActivityRecord> activities = task.mActivities;
402 for (int i = activities.size() - 1; i >= 0; --i) {
403 final ActivityRecord r = activities.get(i);
404 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800405 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800406 return r;
407 }
408 }
409 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700410 return null;
411 }
412
Craig Mautner8849a5e2013-04-02 16:41:03 -0700413 final ActivityRecord topActivity() {
414 // Iterate to find the first non-empty task stack. Note that this code can
Craig Mautnerde4ef022013-04-07 19:01:33 -0700415 // be simplified once we stop storing tasks with empty mActivities lists.
Craig Mautner8849a5e2013-04-02 16:41:03 -0700416 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
417 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautnera61bc652013-10-28 15:43:18 -0700418 final int topActivityNdx = activities.size() - 1;
419 if (topActivityNdx >= 0) {
420 return activities.get(topActivityNdx);
Craig Mautner8849a5e2013-04-02 16:41:03 -0700421 }
422 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700423 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700424 }
425
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700426 final TaskRecord topTask() {
427 final int size = mTaskHistory.size();
428 if (size > 0) {
429 return mTaskHistory.get(size - 1);
430 }
431 return null;
432 }
433
Craig Mautnerd2328952013-03-05 12:46:26 -0800434 TaskRecord taskForIdLocked(int id) {
435 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
436 final TaskRecord task = mTaskHistory.get(taskNdx);
437 if (task.taskId == id) {
438 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800439 }
440 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700441 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700442 }
443
Craig Mautnerd2328952013-03-05 12:46:26 -0800444 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800445 final ActivityRecord r = ActivityRecord.forToken(token);
Craig Mautnerd2328952013-03-05 12:46:26 -0800446 if (r != null) {
447 final TaskRecord task = r.task;
448 if (task.mActivities.contains(r) && mTaskHistory.contains(task)) {
449 if (task.stack != this) Slog.w(TAG,
450 "Illegal state! task does not point to stack it is in.");
451 return r;
452 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800453 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800454 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800455 }
456
Craig Mautner2420ead2013-04-01 17:13:20 -0700457 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700458 final boolean hadit = mLRUActivities.remove(r);
459 mLRUActivities.add(r);
460 return hadit;
461 }
462
Craig Mautnerde4ef022013-04-07 19:01:33 -0700463 final boolean isHomeStack() {
464 return mStackId == HOME_STACK_ID;
465 }
466
Craig Mautnere0a38842013-12-16 16:14:02 -0800467 final boolean isOnHomeDisplay() {
468 return isAttached() &&
469 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
470 }
471
472 final void moveToFront() {
473 if (isAttached()) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800474 if (isOnHomeDisplay()) {
475 mStackSupervisor.moveHomeStack(isHomeStack());
476 }
Craig Mautnerfefeef82014-01-10 08:40:23 -0800477 mStacks.remove(this);
478 mStacks.add(this);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800479 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800480 }
481
482 final boolean isAttached() {
483 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800484 }
485
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700486 /**
487 * Returns the top activity in any existing task matching the given
488 * Intent. Returns null if no such task is found.
489 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700490 ActivityRecord findTaskLocked(ActivityRecord target) {
491 Intent intent = target.intent;
492 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700493 ComponentName cls = intent.getComponent();
494 if (info.targetActivity != null) {
495 cls = new ComponentName(info.packageName, info.targetActivity);
496 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700497 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700498 boolean isDocument = intent != null & intent.isDocument();
499 // If documentData is non-null then it must match the existing task data.
500 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800501
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700502 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800503 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
504 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700505 if (task.voiceSession != null) {
506 // We never match voice sessions; those always run independently.
507 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": voice session");
508 continue;
509 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700510 if (task.userId != userId) {
511 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700512 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700513 continue;
514 }
Craig Mautner000f0022013-02-26 15:04:29 -0800515 final ActivityRecord r = task.getTopActivity();
516 if (r == null || r.finishing || r.userId != userId ||
517 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700518 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800519 continue;
520 }
521
Craig Mautnerd00f4742014-03-12 14:17:26 -0700522 final Intent taskIntent = task.intent;
523 final Intent affinityIntent = task.affinityIntent;
524 final boolean taskIsDocument;
525 final Uri taskDocumentData;
526 if (taskIntent != null && taskIntent.isDocument()) {
527 taskIsDocument = true;
528 taskDocumentData = taskIntent.getData();
529 } else if (affinityIntent != null && affinityIntent.isDocument()) {
530 taskIsDocument = true;
531 taskDocumentData = affinityIntent.getData();
532 } else {
533 taskIsDocument = false;
534 taskDocumentData = null;
535 }
536
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700537 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700538 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700539 + "/aff=" + r.task.affinity + " to new cls="
540 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700541 if (!isDocument && !taskIsDocument && task.affinity != null) {
542 if (task.affinity.equals(target.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700543 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700544 return r;
545 }
Craig Mautnerd00f4742014-03-12 14:17:26 -0700546 } else if (taskIntent != null && taskIntent.getComponent().equals(cls) &&
547 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700548 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800549 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700550 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
551 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800552 return r;
Craig Mautnerd00f4742014-03-12 14:17:26 -0700553 } else if (affinityIntent != null && affinityIntent.getComponent().equals(cls) &&
554 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700555 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800556 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700557 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
558 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800559 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700560 } else if (DEBUG_TASKS) {
561 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700562 }
563 }
564
565 return null;
566 }
567
568 /**
569 * Returns the first activity (starting from the top of the stack) that
570 * is the same as the given activity. Returns null if no such activity
571 * is found.
572 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700573 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700574 ComponentName cls = intent.getComponent();
575 if (info.targetActivity != null) {
576 cls = new ComponentName(info.packageName, info.targetActivity);
577 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700578 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700579
Craig Mautner000f0022013-02-26 15:04:29 -0800580 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700581 TaskRecord task = mTaskHistory.get(taskNdx);
Kenny Guy2a764942014-04-02 13:29:20 +0100582 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700583 return null;
584 }
585 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800586 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
587 ActivityRecord r = activities.get(activityNdx);
588 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700589 //Slog.i(TAG, "Found matching class!");
590 //dump();
591 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
592 return r;
593 }
594 }
595 }
596
597 return null;
598 }
599
Amith Yamasani742a6712011-05-04 14:49:28 -0700600 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700601 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700602 */
Craig Mautner93529a42013-10-04 15:03:13 -0700603 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800604 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700605 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800606 }
607 mCurrentUser = userId;
608
609 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800610 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800611 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700612 TaskRecord task = mTaskHistory.get(i);
Kenny Guy2a764942014-04-02 13:29:20 +0100613 if (isCurrentProfileLocked(task.userId)) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700614 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
615 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800616 mTaskHistory.remove(i);
617 mTaskHistory.add(task);
618 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800619 // Use same value for i.
620 } else {
621 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800622 }
623 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700624 if (VALIDATE_TOKENS) {
625 validateAppTokensLocked();
626 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700627 }
628
Craig Mautner2420ead2013-04-01 17:13:20 -0700629 void minimalResumeActivityLocked(ActivityRecord r) {
630 r.state = ActivityState.RESUMED;
631 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
632 + " (starting new instance)");
633 r.stopped = false;
634 mResumedActivity = r;
635 r.task.touchActiveTime();
636 mService.addRecentTaskLocked(r.task);
637 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700638 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700639 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700640 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700641 }
642
Dianne Hackborncee04b52013-07-03 17:01:28 -0700643 private void startLaunchTraces() {
644 if (mFullyDrawnStartTime != 0) {
645 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
646 }
647 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
648 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
649 }
650
651 private void stopFullyDrawnTraceIfNeeded() {
652 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
653 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
654 mFullyDrawnStartTime = 0;
655 }
656 }
657
Craig Mautnere79d42682013-04-01 19:01:53 -0700658 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700659 if (r.displayStartTime == 0) {
660 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
661 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700662 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700663 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700664 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700665 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700666 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700667 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700668 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700669 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800670
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700671 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700672 // Make sure that there is no activity waiting for this to launch.
673 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
674 r.displayStartTime = r.fullyDrawnStartTime = 0;
675 } else {
676 mStackSupervisor.removeTimeoutsForActivityLocked(r);
677 mStackSupervisor.scheduleIdleTimeoutLocked(r);
678 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700679 }
680
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800681 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800682 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800683 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
684 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
685 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
686 activities.get(activityNdx).setSleeping(false);
687 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800688 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800689 }
690
Craig Mautner0eea92c2013-05-16 13:35:39 -0700691 /**
692 * @return true if something must be done before going to sleep.
693 */
694 boolean checkReadyForSleepLocked() {
695 if (mResumedActivity != null) {
696 // Still have something resumed; can't sleep until it is paused.
697 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
698 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
699 startPausingLocked(false, true);
700 return true;
701 }
702 if (mPausingActivity != null) {
703 // Still waiting for something to pause; can't sleep yet.
704 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
705 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800706 }
707
Craig Mautner0eea92c2013-05-16 13:35:39 -0700708 return false;
709 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800710
Craig Mautner0eea92c2013-05-16 13:35:39 -0700711 void goToSleep() {
712 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800713
Craig Mautner0eea92c2013-05-16 13:35:39 -0700714 // Make sure any stopped but visible activities are now sleeping.
715 // This ensures that the activity's onStop() is called.
716 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
717 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
718 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
719 final ActivityRecord r = activities.get(activityNdx);
720 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
721 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800722 }
723 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800724 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700725 }
Craig Mautner59c00972012-07-30 12:10:24 -0700726
Dianne Hackbornd2835932010-12-13 16:28:46 -0800727 public final Bitmap screenshotActivities(ActivityRecord who) {
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800728 if (who.noDisplay) {
729 return null;
730 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800731
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700732 TaskRecord tr = who.task;
Craig Mautner34740402013-10-11 11:05:35 -0700733 if (mService.getMostRecentTask() != tr && tr.intent != null &&
734 (tr.intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) != 0) {
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700735 // If this task is being excluded from recents, we don't want to take
736 // the expense of capturing a thumbnail, since we will never show it.
737 return null;
738 }
739
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800740 Resources res = mService.mContext.getResources();
741 int w = mThumbnailWidth;
742 int h = mThumbnailHeight;
743 if (w < 0) {
Winson Chungf9f23142014-04-21 14:45:27 -0700744 Configuration config = res.getConfiguration();
745 boolean useAlternateRecents = (config.smallestScreenWidthDp < 600);
746 if (useAlternateRecents) {
Winson Chung303e1ff2014-03-07 15:06:19 -0800747 mThumbnailWidth = w =
748 res.getDimensionPixelSize(com.android.internal.R.dimen.recents_thumbnail_width);
749 mThumbnailHeight = h =
750 res.getDimensionPixelSize(com.android.internal.R.dimen.recents_thumbnail_height);
751 } else {
752 mThumbnailWidth = w =
753 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_width);
754 mThumbnailHeight = h =
755 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_height);
756 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800757 }
758
759 if (w > 0) {
Craig Mautnerb12428a2012-12-20 16:07:06 -0800760 if (who != mLastScreenshotActivity || mLastScreenshotBitmap == null
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700761 || mLastScreenshotActivity.state == ActivityState.RESUMED
Craig Mautnerb12428a2012-12-20 16:07:06 -0800762 || mLastScreenshotBitmap.getWidth() != w
763 || mLastScreenshotBitmap.getHeight() != h) {
764 mLastScreenshotActivity = who;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700765 mLastScreenshotBitmap = mWindowManager.screenshotApplications(
John Reck172e87c2013-10-02 16:55:16 -0700766 who.appToken, Display.DEFAULT_DISPLAY, w, h, SCREENSHOT_FORCE_565);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800767 }
768 if (mLastScreenshotBitmap != null) {
John Reck172e87c2013-10-02 16:55:16 -0700769 return mLastScreenshotBitmap.copy(mLastScreenshotBitmap.getConfig(), true);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800770 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800771 }
772 return null;
773 }
774
Craig Mautnercf910b02013-04-23 11:23:27 -0700775 final void startPausingLocked(boolean userLeaving, boolean uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800776 if (mPausingActivity != null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800777 Slog.e(TAG, "Trying to pause when pause is already pending for "
Craig Mautnere11f2b72013-04-01 12:37:17 -0700778 + mPausingActivity, new RuntimeException("here").fillInStackTrace());
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800779 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700780 ActivityRecord prev = mResumedActivity;
781 if (prev == null) {
Craig Mautnere11f2b72013-04-01 12:37:17 -0700782 Slog.e(TAG, "Trying to pause when nothing is resumed",
783 new RuntimeException("here").fillInStackTrace());
Craig Mautner05d29032013-05-03 13:40:13 -0700784 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700785 return;
786 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800787
788 if (mActivityContainer.mParentActivity == null) {
789 // Top level stack, not a child. Look for child stacks.
790 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping);
791 }
792
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700793 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
794 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700795 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800796 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700797 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700798 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
799 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700800 prev.state = ActivityState.PAUSING;
801 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700802 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700803 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Craig Mautnerf6ead5d62014-04-24 10:19:20 -0700804 if (next == null || next.noDisplay || next.task != prev.task) {
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700805 prev.updateThumbnail(screenshotActivities(prev), null);
806 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700807 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700808
809 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800810
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700811 if (prev.app != null && prev.app.thread != null) {
812 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
813 try {
814 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700815 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700816 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700817 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800818 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
819 userLeaving, prev.configChangeFlags);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700820 } catch (Exception e) {
821 // Ignore exception, if process died other code will cleanup.
822 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800823 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700824 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700825 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700826 }
827 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800828 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700829 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700830 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700831 }
832
833 // If we are not going to sleep, we want to ensure the device is
834 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700835 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700836 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700837 }
838
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800839 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700840 // Have the window manager pause its key dispatching until the new
841 // activity has started. If we're pausing the activity just because
842 // the screen is being turned off and the UI is sleeping, don't interrupt
843 // key dispatch; the same activity will pick it up again on wakeup.
844 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800845 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700846 } else {
847 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
848 }
849
850 // Schedule a pause timeout in case the app doesn't respond.
851 // We don't give it much time because this directly impacts the
852 // responsiveness seen by the user.
853 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
854 msg.obj = prev;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700855 prev.pauseTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700856 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
857 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
858 } else {
859 // This activity failed to schedule the
860 // pause, so just treat it as being paused now.
861 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700862 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700863 }
864 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700865
Craig Mautnera0026042014-04-23 11:45:37 -0700866 final void activityPausedLocked(IBinder token, boolean timeout,
867 PersistableBundle persistentState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700868 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800869 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700870
Craig Mautnerd2328952013-03-05 12:46:26 -0800871 final ActivityRecord r = isInStackLocked(token);
872 if (r != null) {
873 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Craig Mautnera0026042014-04-23 11:45:37 -0700874 r.persistentState = persistentState;
Craig Mautnerd2328952013-03-05 12:46:26 -0800875 if (mPausingActivity == r) {
876 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
877 + (timeout ? " (due to timeout)" : " (pause complete)"));
878 r.state = ActivityState.PAUSED;
879 completePauseLocked();
880 } else {
881 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
882 r.userId, System.identityHashCode(r), r.shortComponentName,
883 mPausingActivity != null
884 ? mPausingActivity.shortComponentName : "(none)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700885 }
886 }
887 }
888
Craig Mautnera0026042014-04-23 11:45:37 -0700889 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
890 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700891 if (r.state != ActivityState.STOPPING) {
892 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
893 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
894 return;
895 }
Craig Mautnera0026042014-04-23 11:45:37 -0700896 r.persistentState = persistentState;
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700897 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700898 if (icicle != null) {
899 // If icicle is null, this is happening due to a timeout, so we
900 // haven't really saved the state.
901 r.icicle = icicle;
902 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800903 r.launchCount = 0;
Craig Mautnera0026042014-04-23 11:45:37 -0700904 r.updateThumbnail(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700905 }
906 if (!r.stopped) {
907 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
908 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
909 r.stopped = true;
910 r.state = ActivityState.STOPPED;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700911 if (r.finishing) {
912 r.clearOptionsLocked();
913 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700914 if (r.configDestroy) {
915 destroyActivityLocked(r, true, false, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700916 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700917 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700918 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800919 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700920 }
921 }
922 }
923
Craig Mautnerc8143c62013-09-03 12:15:57 -0700924 private void completePauseLocked() {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800925 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700926 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800927
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800928 if (prev != null) {
929 if (prev.finishing) {
930 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700931 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800932 } else if (prev.app != null) {
933 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
934 if (prev.waitingVisible) {
935 prev.waitingVisible = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700936 mStackSupervisor.mWaitingVisibleActivities.remove(prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800937 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
938 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800939 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800940 if (prev.configDestroy) {
941 // The previous is being paused because the configuration
942 // is changing, which means it is actually stopping...
943 // To juggle the fact that we are also starting a new
944 // instance right now, we need to first completely stop
945 // the current instance before starting the new one.
946 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
947 destroyActivityLocked(prev, true, false, "pause-config");
948 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700949 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700950 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
951 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800952 // If we already have a few activities waiting to stop,
953 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700954 // them out. Or if r is the last of activity of the last task the stack
955 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800956 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700957 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800958 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700959 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800960 }
961 }
962 } else {
963 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
964 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800965 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800966 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700967 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800968
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700969 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
Craig Mautnere11f2b72013-04-01 12:37:17 -0700970 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner05d29032013-05-03 13:40:13 -0700971 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800972 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700973 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700974 ActivityRecord top = topStack.topRunningActivityLocked(null);
Dianne Hackborncc5a0552012-10-01 16:32:39 -0700975 if (top == null || (prev != null && top != prev)) {
976 // If there are no more activities available to run,
977 // do resume anyway to start something. Also if the top
978 // activity on the stack is not the just paused activity,
979 // we need to go ahead and resume it to ensure we complete
980 // an in-flight app switch.
Craig Mautner05d29032013-05-03 13:40:13 -0700981 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700982 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700983 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800984
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800985 if (prev != null) {
986 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700987
Craig Mautner525f3d92013-05-07 14:01:50 -0700988 if (prev.app != null && prev.cpuTimeAtResume > 0
989 && mService.mBatteryStatsService.isOnBattery()) {
990 long diff;
Dianne Hackbornd2932242013-08-05 18:18:42 -0700991 synchronized (mService.mProcessCpuThread) {
992 diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
Craig Mautner525f3d92013-05-07 14:01:50 -0700993 - prev.cpuTimeAtResume;
994 }
995 if (diff > 0) {
996 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
997 synchronized (bsi) {
998 BatteryStatsImpl.Uid.Proc ps =
999 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001000 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001001 if (ps != null) {
1002 ps.addForegroundTimeLocked(diff);
1003 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001004 }
1005 }
1006 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001007 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001008 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001009 }
1010
1011 /**
1012 * Once we know that we have asked an application to put an activity in
1013 * the resumed state (either by launching it or explicitly telling it),
1014 * this function updates the rest of our state to match that fact.
1015 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001016 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001017 next.idle = false;
1018 next.results = null;
1019 next.newIntents = null;
Craig Mautner07566322013-09-26 16:42:55 -07001020 if (next.nowVisible) {
1021 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
1022 mStackSupervisor.dismissKeyguard();
1023 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001024
1025 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001026 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001027
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001028 mStackSupervisor.reportResumedActivityLocked(next);
1029
1030 next.resumeKeyDispatchingLocked();
1031 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001032
1033 // Mark the point when the activity is resuming
1034 // TODO: To be more accurate, the mark should be before the onCreate,
1035 // not after the onResume. But for subsequent starts, onResume is fine.
1036 if (next.app != null) {
Dianne Hackbornd2932242013-08-05 18:18:42 -07001037 synchronized (mService.mProcessCpuThread) {
1038 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001039 }
1040 } else {
1041 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1042 }
1043 }
1044
Craig Mautner580ea812013-04-25 12:58:38 -07001045 /**
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001046 * Determine if home should be visible below the passed record.
1047 * @param record activity we are querying for.
1048 * @return true if home is visible below the passed activity, false otherwise.
1049 */
1050 boolean isActivityOverHome(ActivityRecord record) {
1051 // Start at record and go down, look for either home or a visible fullscreen activity.
1052 final TaskRecord recordTask = record.task;
1053 for (int taskNdx = mTaskHistory.indexOf(recordTask); taskNdx >= 0; --taskNdx) {
1054 TaskRecord task = mTaskHistory.get(taskNdx);
1055 final ArrayList<ActivityRecord> activities = task.mActivities;
1056 final int startNdx =
1057 task == recordTask ? activities.indexOf(record) : activities.size() - 1;
1058 for (int activityNdx = startNdx; activityNdx >= 0; --activityNdx) {
1059 final ActivityRecord r = activities.get(activityNdx);
1060 if (r.isHomeActivity()) {
1061 return true;
1062 }
Craig Mautner76be9d22013-11-04 16:01:22 -08001063 if (!r.finishing && r.fullscreen) {
1064 // Passed activity is over a fullscreen activity.
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001065 return false;
1066 }
1067 }
1068 if (task.mOnTopOfHome) {
1069 // Got to the bottom of a task on top of home without finding a visible fullscreen
1070 // activity. Home is visible.
1071 return true;
1072 }
1073 }
1074 // Got to the bottom of this stack and still don't know. If this is over the home stack
1075 // then record is over home. May not work if we ever get more than two layers.
1076 return mStackSupervisor.isFrontStack(this);
1077 }
1078
Craig Mautnere3a00d72014-04-16 08:31:19 -07001079 private void setVisibile(ActivityRecord r, boolean visible) {
1080 r.visible = visible;
1081 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001082 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001083 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001084 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001085 container.setVisible(visible);
1086 }
1087 }
1088
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001089 /**
Craig Mautner580ea812013-04-25 12:58:38 -07001090 * Version of ensureActivitiesVisible that can easily be called anywhere.
1091 */
1092 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1093 return ensureActivitiesVisibleLocked(starting, configChanges, false);
1094 }
1095
1096 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1097 boolean forceHomeShown) {
1098 ActivityRecord r = topRunningActivityLocked(null);
Craig Mautner525f3d92013-05-07 14:01:50 -07001099 return r != null &&
1100 ensureActivitiesVisibleLocked(r, starting, null, configChanges, forceHomeShown);
Craig Mautner580ea812013-04-25 12:58:38 -07001101 }
1102
Jose Lima7ba71252014-04-30 12:59:27 -07001103 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1104 // If so, this stack is hidden, otherwise it is visible.
1105 private boolean isStackVisible() {
1106 if (!isAttached()) {
1107 return false;
1108 }
1109
1110 if (mStackSupervisor.isFrontStack(this)) {
1111 return true;
1112 }
1113
1114 // Start at the task above this one and go up, looking for a visible
1115 // fullscreen activity, or a translucent activity that requested the
1116 // wallpaper to be shown behind it.
1117 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
1118 final ArrayList<TaskRecord> tasks = mStacks.get(i).getAllTasks();
1119 for (int taskNdx = 0; taskNdx < tasks.size(); taskNdx++) {
1120 final ArrayList<ActivityRecord> activities = tasks.get(taskNdx).mActivities;
1121 for (int activityNdx = 0; activityNdx < activities.size(); activityNdx++) {
1122 final ActivityRecord r = activities.get(activityNdx);
1123 if (!r.finishing && r.visible && r.fullscreen) {
1124 return false;
1125 }
1126 }
1127 }
1128 }
1129
1130 return true;
1131 }
1132
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001133 /**
1134 * Make sure that all activities that need to be visible (that is, they
1135 * currently can be seen by the user) actually are.
1136 */
Craig Mautner580ea812013-04-25 12:58:38 -07001137 final boolean ensureActivitiesVisibleLocked(ActivityRecord top, ActivityRecord starting,
1138 String onlyThisProcess, int configChanges, boolean forceHomeShown) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001139 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001140 TAG, "ensureActivitiesVisible behind " + top
1141 + " configChanges=0x" + Integer.toHexString(configChanges));
1142
Craig Mautner5eda9b32013-07-02 11:58:16 -07001143 if (mTranslucentActivityWaiting != top) {
1144 mUndrawnActivitiesBelowTopTranslucent.clear();
1145 if (mTranslucentActivityWaiting != null) {
1146 // Call the callback with a timeout indication.
1147 notifyActivityDrawnLocked(null);
1148 mTranslucentActivityWaiting = null;
1149 }
1150 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1151 }
1152
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001153 // If the top activity is not fullscreen, then we need to
1154 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001155 boolean aboveTop = true;
Craig Mautner580ea812013-04-25 12:58:38 -07001156 boolean showHomeBehindStack = false;
Jose Lima7ba71252014-04-30 12:59:27 -07001157 boolean behindFullscreen = !isStackVisible();
1158
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001159 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001160 final TaskRecord task = mTaskHistory.get(taskNdx);
1161 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001162 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1163 final ActivityRecord r = activities.get(activityNdx);
1164 if (r.finishing) {
1165 continue;
1166 }
1167 if (aboveTop && r != top) {
1168 continue;
1169 }
1170 aboveTop = false;
1171 if (!behindFullscreen) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001172 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001173 TAG, "Make visible? " + r + " finishing=" + r.finishing
1174 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001175
Craig Mautnerd44711d2013-02-23 11:24:36 -08001176 final boolean doThisProcess = onlyThisProcess == null
1177 || onlyThisProcess.equals(r.processName);
1178
1179 // First: if this is not the current activity being started, make
1180 // sure it matches the current configuration.
1181 if (r != starting && doThisProcess) {
1182 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001183 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001184
1185 if (r.app == null || r.app.thread == null) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001186 if (onlyThisProcess == null || onlyThisProcess.equals(r.processName)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001187 // This activity needs to be visible, but isn't even
1188 // running... get it started, but don't resume it
1189 // at this point.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001190 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001191 if (r != starting) {
1192 r.startFreezingScreenLocked(r.app, configChanges);
1193 }
1194 if (!r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001195 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001196 TAG, "Starting and making visible: " + r);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001197 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001198 }
1199 if (r != starting) {
George Mount2c92c972014-03-20 09:38:23 -07001200 mStackSupervisor.startSpecificActivityLocked(r, false, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001201 }
1202 }
1203
1204 } else if (r.visible) {
1205 // If this activity is already visible, then there is nothing
1206 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001207 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001208 r.stopFreezingScreenLocked(false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001209
1210 } else if (onlyThisProcess == null) {
1211 // This activity is not currently visible, but is running.
1212 // Tell it to become visible.
1213 r.visible = true;
1214 if (r.state != ActivityState.RESUMED && r != starting) {
1215 // If this activity is paused, tell it
1216 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001217 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001218 TAG, "Making visible and scheduling visibility: " + r);
1219 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001220 if (mTranslucentActivityWaiting != null) {
1221 mUndrawnActivitiesBelowTopTranslucent.add(r);
1222 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001223 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001224 r.sleeping = false;
1225 r.app.pendingUiClean = true;
1226 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1227 r.stopFreezingScreenLocked(false);
1228 } catch (Exception e) {
1229 // Just skip on any failure; we'll make it
1230 // visible when it next restarts.
1231 Slog.w(TAG, "Exception thrown making visibile: "
1232 + r.intent.getComponent(), e);
1233 }
1234 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001235 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001236
Craig Mautnerd44711d2013-02-23 11:24:36 -08001237 // Aggregate current change flags.
1238 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001239
Craig Mautnerd44711d2013-02-23 11:24:36 -08001240 if (r.fullscreen) {
1241 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001242 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1243 behindFullscreen = true;
Craig Mautner723f7bb2014-03-27 20:14:13 +00001244 showHomeBehindStack = false;
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001245 } else if (isActivityOverHome(r)) {
1246 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
1247 showHomeBehindStack = true;
riddle_hsu446ef1d2014-01-09 20:24:34 +08001248 behindFullscreen = !isHomeStack() && r.frontOfTask && task.mOnTopOfHome;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001249 }
1250 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001251 if (DEBUG_VISBILITY) Slog.v(
1252 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1253 + " state=" + r.state
1254 + " behindFullscreen=" + behindFullscreen);
1255 // Now for any activities that aren't visible to the user, make
1256 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001257 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001258 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001259 try {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001260 setVisibile(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001261 switch (r.state) {
1262 case STOPPING:
1263 case STOPPED:
1264 if (r.app != null && r.app.thread != null) {
1265 if (DEBUG_VISBILITY) Slog.v(
1266 TAG, "Scheduling invisibility: " + r);
1267 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1268 }
1269 break;
1270
1271 case INITIALIZING:
1272 case RESUMED:
1273 case PAUSING:
1274 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001275 // This case created for transitioning activities from
1276 // translucent to opaque {@link Activity#convertToOpaque}.
Craig Mautnere5273b42013-09-09 12:57:47 -07001277 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1278 mStackSupervisor.mStoppingActivities.add(r);
1279 }
1280 mStackSupervisor.scheduleIdleLocked();
Craig Mautner4addfc52013-06-25 08:05:45 -07001281 break;
1282
1283 default:
1284 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001285 }
1286 } catch (Exception e) {
1287 // Just skip on any failure; we'll make it
1288 // visible when it next restarts.
1289 Slog.w(TAG, "Exception thrown making hidden: "
1290 + r.intent.getComponent(), e);
1291 }
1292 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001293 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001294 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001295 }
1296 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001297 }
Craig Mautner580ea812013-04-25 12:58:38 -07001298 return showHomeBehindStack;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001299 }
Craig Mautner58547802013-03-05 08:23:53 -08001300
Craig Mautner5eda9b32013-07-02 11:58:16 -07001301 void convertToTranslucent(ActivityRecord r) {
1302 mTranslucentActivityWaiting = r;
1303 mUndrawnActivitiesBelowTopTranslucent.clear();
1304 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1305 }
1306
1307 /**
1308 * Called as activities below the top translucent activity are redrawn. When the last one is
1309 * redrawn notify the top activity by calling
1310 * {@link Activity#onTranslucentConversionComplete}.
1311 *
1312 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1313 * occurred and the activity will be notified immediately.
1314 */
1315 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001316 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001317 if ((r == null)
1318 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1319 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1320 // The last undrawn activity below the top has just been drawn. If there is an
1321 // opaque activity at the top, notify it that it can become translucent safely now.
1322 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1323 mTranslucentActivityWaiting = null;
1324 mUndrawnActivitiesBelowTopTranslucent.clear();
1325 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1326
Craig Mautner71dd1b62014-02-18 15:48:52 -08001327 if (waitingActivity != null) {
1328 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1329 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1330 try {
1331 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1332 waitingActivity.appToken, r != null);
1333 } catch (RemoteException e) {
1334 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001335 }
1336 }
1337 }
1338 }
1339
Craig Mautnera61bc652013-10-28 15:43:18 -07001340 /** If any activities below the top running one are in the INITIALIZING state and they have a
1341 * starting window displayed then remove that starting window. It is possible that the activity
1342 * in this state will never resumed in which case that starting window will be orphaned. */
1343 void cancelInitializingActivities() {
1344 final ActivityRecord topActivity = topRunningActivityLocked(null);
1345 boolean aboveTop = true;
1346 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1347 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1348 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1349 final ActivityRecord r = activities.get(activityNdx);
1350 if (aboveTop) {
1351 if (r == topActivity) {
1352 aboveTop = false;
1353 }
1354 continue;
1355 }
1356
1357 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
1358 if (DEBUG_VISBILITY) Slog.w(TAG, "Found orphaned starting window " + r);
1359 r.mStartingWindowShown = false;
1360 mWindowManager.removeAppStartingWindow(r.appToken);
1361 }
1362 }
1363 }
1364 }
1365
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001366 /**
1367 * Ensure that the top activity in the stack is resumed.
1368 *
1369 * @param prev The previously resumed activity, for when in the process
1370 * of pausing; can be null to call from elsewhere.
1371 *
1372 * @return Returns true if something is being resumed, or false if
1373 * nothing happened.
1374 */
1375 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001376 return resumeTopActivityLocked(prev, null);
1377 }
1378
1379 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001380 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1381
Craig Mautnerdf88d732014-01-27 09:21:32 -08001382 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001383 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautner6985bad2014-04-21 15:22:06 -07001384 !mActivityContainer.isAttached()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001385 // Do not resume this stack if its parent is not resumed.
1386 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1387 return false;
1388 }
1389
Craig Mautnera61bc652013-10-28 15:43:18 -07001390 cancelInitializingActivities();
1391
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001392 // Find the first activity that is not finishing.
1393 ActivityRecord next = topRunningActivityLocked(null);
1394
1395 // Remember how we'll process this pause/resume situation, and ensure
1396 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001397 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1398 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001399
1400 if (next == null) {
1401 // There are no more activities! Let's just start up the
1402 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001403 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001404 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001405 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001406 // Only resume home if on home display
1407 return isOnHomeDisplay() && mStackSupervisor.resumeHomeActivity(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001408 }
1409
1410 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001411
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001412 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001413 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1414 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001415 // Make sure we have executed any pending transitions, since there
1416 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001417 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001418 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001419 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001420 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001421 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001422 return false;
1423 }
1424
Craig Mautner525f3d92013-05-07 14:01:50 -07001425 final TaskRecord nextTask = next.task;
1426 final TaskRecord prevTask = prev != null ? prev.task : null;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001427 if (prevTask != null && prevTask.mOnTopOfHome && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001428 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001429 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001430 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001431 } else if (prevTask != topTask()) {
Craig Mautnere418ecd2013-05-01 17:02:29 -07001432 // This task is going away but it was supposed to return to the home task.
1433 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001434 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001435 mTaskHistory.get(taskNdx).mOnTopOfHome = true;
Craig Mautnere418ecd2013-05-01 17:02:29 -07001436 } else {
Craig Mautnere0a38842013-12-16 16:14:02 -08001437 if (DEBUG_STATES && isOnHomeDisplay()) Slog.d(TAG,
1438 "resumeTopActivityLocked: Launching home next");
1439 // Only resume home if on home display
1440 return isOnHomeDisplay() && mStackSupervisor.resumeHomeActivity(prev);
Craig Mautnere418ecd2013-05-01 17:02:29 -07001441 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001442 }
1443
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001444 // If we are sleeping, and there is no resumed activity, and the top
1445 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001446 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001447 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001448 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001449 // Make sure we have executed any pending transitions, since there
1450 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001451 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001452 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001453 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001454 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001455 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001456 return false;
1457 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001458
1459 // Make sure that the user who owns this activity is started. If not,
1460 // we will just leave it as is because someone should be bringing
1461 // another user's activities to the top of the stack.
1462 if (mService.mStartedUsers.get(next.userId) == null) {
1463 Slog.w(TAG, "Skipping resume of top activity " + next
1464 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001465 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001466 return false;
1467 }
1468
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001469 // The activity may be waiting for stop, but that is no longer
1470 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001471 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001472 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001473 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001474 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001475
Dianne Hackborn84375872012-06-01 19:03:50 -07001476 next.updateOptionsLocked(options);
1477
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001478 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1479
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001480 // If we are currently pausing an activity, then don't do anything
1481 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001482 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001483 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1484 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001485 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001486 return false;
1487 }
1488
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001489 // Okay we are now going to start a switch, to 'next'. We may first
1490 // have to pause the current activity, but this is an important point
1491 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001492 // XXX "App Redirected" dialog is getting too many false positives
1493 // at this point, so turn off for now.
1494 if (false) {
1495 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1496 long now = SystemClock.uptimeMillis();
1497 final boolean inTime = mLastStartedActivity.startTime != 0
1498 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1499 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1500 final int nextUid = next.info.applicationInfo.uid;
1501 if (inTime && lastUid != nextUid
1502 && lastUid != next.launchedFromUid
1503 && mService.checkPermission(
1504 android.Manifest.permission.STOP_APP_SWITCHES,
1505 -1, next.launchedFromUid)
1506 != PackageManager.PERMISSION_GRANTED) {
1507 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1508 } else {
1509 next.startTime = now;
1510 mLastStartedActivity = next;
1511 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001512 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001513 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001514 mLastStartedActivity = next;
1515 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001516 }
Craig Mautner58547802013-03-05 08:23:53 -08001517
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001518 // We need to start pausing the current activity so the top one
1519 // can be resumed...
Craig Mautner5314a402013-09-26 12:40:16 -07001520 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving);
Craig Mautnereb957862013-04-24 15:34:32 -07001521 if (mResumedActivity != null) {
1522 pausing = true;
1523 startPausingLocked(userLeaving, false);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001524 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnereb957862013-04-24 15:34:32 -07001525 }
1526 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001527 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1528 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001529 // At this point we want to put the upcoming activity's process
1530 // at the top of the LRU list, since we know we will be needing it
1531 // very soon and it would be a waste to let it get killed if it
1532 // happens to be sitting towards the end.
1533 if (next.app != null && next.app.thread != null) {
1534 // No reason to do full oom adj update here; we'll let that
1535 // happen whenever it needs to later.
Dianne Hackborndb926082013-10-31 16:32:44 -07001536 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001537 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001538 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001539 return true;
1540 }
1541
Christopher Tated3f175c2012-06-14 14:16:54 -07001542 // If the most recent activity was noHistory but was only stopped rather
1543 // than stopped+finished because the device went to sleep, we need to make
1544 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001545 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001546 !mLastNoHistoryActivity.finishing) {
1547 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1548 " on new resume");
1549 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
1550 null, "no-history", false);
1551 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001552 }
1553
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001554 if (prev != null && prev != next) {
1555 if (!prev.waitingVisible && next != null && !next.nowVisible) {
1556 prev.waitingVisible = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001557 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001558 if (DEBUG_SWITCH) Slog.v(
1559 TAG, "Resuming top, waiting visible to hide: " + prev);
1560 } else {
1561 // The next activity is already visible, so hide the previous
1562 // activity's windows right now so we can show the new one ASAP.
1563 // We only do this if the previous is finishing, which should mean
1564 // it is on top of the one being resumed so hiding it quickly
1565 // is good. Otherwise, we want to do the normal route of allowing
1566 // the resumed activity to be shown so we can decide if the
1567 // previous should actually be hidden depending on whether the
1568 // new one is found to be full-screen or not.
1569 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001570 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001571 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1572 + prev + ", waitingVisible="
1573 + (prev != null ? prev.waitingVisible : null)
1574 + ", nowVisible=" + next.nowVisible);
1575 } else {
1576 if (DEBUG_SWITCH) Slog.v(TAG, "Previous already visible but still waiting to hide: "
1577 + prev + ", waitingVisible="
1578 + (prev != null ? prev.waitingVisible : null)
1579 + ", nowVisible=" + next.nowVisible);
1580 }
1581 }
1582 }
1583
Dianne Hackborne7f97212011-02-24 14:40:20 -08001584 // Launching this app's activity, make sure the app is no longer
1585 // considered stopped.
1586 try {
1587 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001588 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001589 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001590 } catch (IllegalArgumentException e) {
1591 Slog.w(TAG, "Failed trying to unstop package "
1592 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001593 }
1594
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001595 // We are starting up the next activity, so tell the window manager
1596 // that the previous one will be hidden soon. This way it can know
1597 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001598 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001599 if (prev != null) {
1600 if (prev.finishing) {
1601 if (DEBUG_TRANSITION) Slog.v(TAG,
1602 "Prepare close transition: prev=" + prev);
1603 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001604 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001605 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001606 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001607 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001608 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1609 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001610 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001611 mWindowManager.setAppWillBeHidden(prev.appToken);
1612 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001613 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001614 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001615 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001616 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001617 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001618 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001619 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001620 ? AppTransition.TRANSIT_ACTIVITY_OPEN
1621 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001622 }
1623 }
1624 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001625 mWindowManager.setAppWillBeHidden(prev.appToken);
1626 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001627 }
Craig Mautner967212c2013-04-13 21:10:58 -07001628 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001629 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001630 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001631 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001632 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001633 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001634 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001635 }
1636 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001637
1638 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001639 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001640 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1641 if (opts != null) {
1642 resumeAnimOptions = opts.toBundle();
1643 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001644 next.applyOptionsLocked();
1645 } else {
1646 next.clearOptionsLocked();
1647 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001648
Craig Mautnercf910b02013-04-23 11:23:27 -07001649 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001650 if (next.app != null && next.app.thread != null) {
1651 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1652
1653 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001654 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001655
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001656 // schedule launch ticks to collect information about slow apps.
1657 next.startLaunchTickingLocked();
1658
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001659 ActivityRecord lastResumedActivity =
1660 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001661 ActivityState lastState = next.state;
1662
1663 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001664
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001665 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001666 next.state = ActivityState.RESUMED;
1667 mResumedActivity = next;
1668 next.task.touchActiveTime();
Craig Mautnerd2328952013-03-05 12:46:26 -08001669 mService.addRecentTaskLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001670 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001671 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001672 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001673
1674 // Have the window manager re-evaluate the orientation of
1675 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001676 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001677 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001678 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001679 mService.mConfiguration,
1680 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1681 if (config != null) {
1682 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001683 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001684 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001685 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001686
Craig Mautner525f3d92013-05-07 14:01:50 -07001687 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001688 // The configuration update wasn't able to keep the existing
1689 // instance of the activity, and instead started a new one.
1690 // We should be all done, but let's just make sure our activity
1691 // is still at the top and schedule another run if something
1692 // weird happened.
1693 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001694 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001695 "Activity config changed during resume: " + next
1696 + ", new next: " + nextNext);
1697 if (nextNext != next) {
1698 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001699 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001700 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001701 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001702 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001703 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001704 return true;
1705 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001706 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001707 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001708 }
Craig Mautner58547802013-03-05 08:23:53 -08001709
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001710 try {
1711 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001712 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001713 if (a != null) {
1714 final int N = a.size();
1715 if (!next.finishing && N > 0) {
1716 if (DEBUG_RESULTS) Slog.v(
1717 TAG, "Delivering results to " + next
1718 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001719 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001720 }
1721 }
1722
1723 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001724 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001725 }
1726
1727 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001728 next.userId, System.identityHashCode(next),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001729 next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001730
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001731 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001732 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001733 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001734 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
George Mount2c92c972014-03-20 09:38:23 -07001735 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001736 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001737 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001738
Craig Mautner0eea92c2013-05-16 13:35:39 -07001739 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001740
Craig Mautnerac6f8432013-07-17 13:24:59 -07001741 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001742 } catch (Exception e) {
1743 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001744 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1745 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001746 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001747 if (lastStack != null) {
1748 lastStack.mResumedActivity = lastResumedActivity;
1749 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001750 Slog.i(TAG, "Restarting because process died: " + next);
1751 if (!next.hasBeenLaunched) {
1752 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001753 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1754 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001755 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001756 next.appToken, next.packageName, next.theme,
1757 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001758 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1759 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001760 }
George Mount2c92c972014-03-20 09:38:23 -07001761 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001762 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001763 return true;
1764 }
1765
1766 // From this point on, if something goes wrong there is no way
1767 // to recover the activity.
1768 try {
1769 next.visible = true;
1770 completeResumeLocked(next);
1771 } catch (Exception e) {
1772 // If any exception gets thrown, toss away this
1773 // activity and try the next one.
1774 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001775 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001776 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001777 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001778 return true;
1779 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001780 next.stopped = false;
1781
1782 } else {
1783 // Whoops, need to restart this activity!
1784 if (!next.hasBeenLaunched) {
1785 next.hasBeenLaunched = true;
1786 } else {
1787 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001788 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001789 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001790 mService.compatibilityInfoForPackageLocked(
1791 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001792 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001793 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001794 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001795 }
1796 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1797 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001798 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07001799 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001800 }
1801
Craig Mautnercf910b02013-04-23 11:23:27 -07001802 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001803 return true;
1804 }
1805
Craig Mautnerac6f8432013-07-17 13:24:59 -07001806 private void insertTaskAtTop(TaskRecord task) {
Craig Mautner9c85c202013-10-04 20:11:26 -07001807 // If this is being moved to the top by another activity or being launched from the home
1808 // activity, set mOnTopOfHome accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001809 if (isOnHomeDisplay()) {
1810 ActivityStack lastStack = mStackSupervisor.getLastStack();
1811 final boolean fromHome = lastStack.isHomeStack();
1812 if (!isHomeStack() && (fromHome || topTask() != task)) {
1813 task.mOnTopOfHome = fromHome;
1814 }
1815 } else {
1816 task.mOnTopOfHome = false;
Craig Mautner9c85c202013-10-04 20:11:26 -07001817 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001818
Craig Mautnerac6f8432013-07-17 13:24:59 -07001819 mTaskHistory.remove(task);
1820 // Now put task at top.
1821 int stackNdx = mTaskHistory.size();
Kenny Guy2a764942014-04-02 13:29:20 +01001822 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001823 // Put non-current user tasks below current user tasks.
1824 while (--stackNdx >= 0) {
Kenny Guy2a764942014-04-02 13:29:20 +01001825 if (!isCurrentProfileLocked(mTaskHistory.get(stackNdx).userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001826 break;
1827 }
1828 }
1829 ++stackNdx;
1830 }
1831 mTaskHistory.add(stackNdx, task);
1832 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001833
Craig Mautner8849a5e2013-04-02 16:41:03 -07001834 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001835 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001836 TaskRecord rTask = r.task;
1837 final int taskId = rTask.taskId;
1838 if (taskForIdLocked(taskId) == null || newTask) {
Craig Mautner77878772013-03-04 19:46:24 -08001839 // Last activity in task had been removed or ActivityManagerService is reusing task.
1840 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001841 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001842 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001843 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001844 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001845 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001846 if (!newTask) {
1847 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001848 boolean startIt = true;
1849 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1850 task = mTaskHistory.get(taskNdx);
1851 if (task == r.task) {
1852 // Here it is! Now, if this is not yet visible to the
1853 // user, then just add it without starting; it will
1854 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001855 if (!startIt) {
1856 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1857 + task, new RuntimeException("here").fillInStackTrace());
1858 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001859 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001860 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1861 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001862 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001863 r.userId, r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001864 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001865 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001866 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001867 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001868 return;
1869 }
1870 break;
Craig Mautner70a86932013-02-28 22:37:44 -08001871 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001872 startIt = false;
1873 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001874 }
1875 }
1876
1877 // Place a new activity at top of stack, so it is next to interact
1878 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08001879
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001880 // If we are not placing the new activity frontmost, we do not want
1881 // to deliver the onUserLeaving callback to the actual frontmost
1882 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08001883 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001884 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08001885 if (DEBUG_USER_LEAVING) Slog.v(TAG,
1886 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001887 }
Craig Mautner70a86932013-02-28 22:37:44 -08001888
1889 task = r.task;
1890
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001891 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08001892 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08001893 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08001894 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001895 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08001896
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001897 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001898 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001899 // We want to show the starting preview window if we are
1900 // switching to a new task, or the next activity's process is
1901 // not currently running.
1902 boolean showStartingIcon = newTask;
1903 ProcessRecord proc = r.app;
1904 if (proc == null) {
1905 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
1906 }
1907 if (proc == null || proc.thread == null) {
1908 showStartingIcon = true;
1909 }
1910 if (DEBUG_TRANSITION) Slog.v(TAG,
1911 "Prepare open transition: starting " + r);
1912 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001913 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001914 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001915 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001916 mWindowManager.prepareAppTransition(newTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08001917 ? AppTransition.TRANSIT_TASK_OPEN
1918 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001919 mNoAnimActivities.remove(r);
1920 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001921 r.updateOptionsLocked(options);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001922 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08001923 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001924 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1925 r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001926 boolean doShow = true;
1927 if (newTask) {
1928 // Even though this activity is starting fresh, we still need
1929 // to reset it to make sure we apply affinities to move any
1930 // existing activities from other tasks in to it.
1931 // If the caller has requested that the target task be
1932 // reset, then do so.
1933 if ((r.intent.getFlags()
Craig Mautnerd00f4742014-03-12 14:17:26 -07001934 & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001935 resetTaskIfNeededLocked(r, r);
1936 doShow = topRunningNonDelayedActivityLocked(null) == r;
1937 }
1938 }
1939 if (SHOW_APP_STARTING_PREVIEW && doShow) {
1940 // Figure out if we are transitioning from another activity that is
1941 // "has the same starting icon" as the next one. This allows the
1942 // window manager to keep the previous window it had previously
1943 // created, if it still had one.
1944 ActivityRecord prev = mResumedActivity;
1945 if (prev != null) {
1946 // We don't want to reuse the previous starting preview if:
1947 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07001948 if (prev.task != r.task) {
1949 prev = null;
1950 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001951 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07001952 else if (prev.nowVisible) {
1953 prev = null;
1954 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001955 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001956 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001957 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001958 mService.compatibilityInfoForPackageLocked(
1959 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001960 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08001961 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07001962 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001963 }
1964 } else {
1965 // If this is the first activity, don't do any fancy animations,
1966 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001967 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08001968 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001969 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1970 r.info.configChanges);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001971 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001972 }
1973 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001974 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001975 }
1976
1977 if (doResume) {
Craig Mautner858d8a62013-04-23 17:08:34 -07001978 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001979 }
1980 }
1981
Dianne Hackbornbe707852011-11-11 14:32:10 -08001982 final void validateAppTokensLocked() {
1983 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08001984 mValidateAppTokens.ensureCapacity(numActivities());
1985 final int numTasks = mTaskHistory.size();
1986 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
1987 TaskRecord task = mTaskHistory.get(taskNdx);
1988 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07001989 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08001990 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001991 }
Craig Mautner000f0022013-02-26 15:04:29 -08001992 TaskGroup group = new TaskGroup();
1993 group.taskId = task.taskId;
1994 mValidateAppTokens.add(group);
1995 final int numActivities = activities.size();
1996 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1997 final ActivityRecord r = activities.get(activityNdx);
1998 group.tokens.add(r.appToken);
1999 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002000 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002001 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002002 }
2003
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002004 /**
2005 * Perform a reset of the given task, if needed as part of launching it.
2006 * Returns the new HistoryRecord at the top of the task.
2007 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002008 /**
2009 * Helper method for #resetTaskIfNeededLocked.
2010 * We are inside of the task being reset... we'll either finish this activity, push it out
2011 * for another task, or leave it as-is.
2012 * @param task The task containing the Activity (taskTop) that might be reset.
2013 * @param forceReset
2014 * @return An ActivityOptions that needs to be processed.
2015 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002016 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002017 ActivityOptions topOptions = null;
2018
2019 int replyChainEnd = -1;
2020 boolean canMoveOptions = true;
2021
2022 // We only do this for activities that are not the root of the task (since if we finish
2023 // the root, we may no longer have the task!).
2024 final ArrayList<ActivityRecord> activities = task.mActivities;
2025 final int numActivities = activities.size();
2026 for (int i = numActivities - 1; i > 0; --i ) {
2027 ActivityRecord target = activities.get(i);
2028
2029 final int flags = target.info.flags;
2030 final boolean finishOnTaskLaunch =
2031 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2032 final boolean allowTaskReparenting =
2033 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2034 final boolean clearWhenTaskReset =
2035 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2036
2037 if (!finishOnTaskLaunch
2038 && !clearWhenTaskReset
2039 && target.resultTo != null) {
2040 // If this activity is sending a reply to a previous
2041 // activity, we can't do anything with it now until
2042 // we reach the start of the reply chain.
2043 // XXX note that we are assuming the result is always
2044 // to the previous activity, which is almost always
2045 // the case but we really shouldn't count on.
2046 if (replyChainEnd < 0) {
2047 replyChainEnd = i;
2048 }
2049 } else if (!finishOnTaskLaunch
2050 && !clearWhenTaskReset
2051 && allowTaskReparenting
2052 && target.taskAffinity != null
2053 && !target.taskAffinity.equals(task.affinity)) {
2054 // If this activity has an affinity for another
2055 // task, then we need to move it out of here. We will
2056 // move it as far out of the way as possible, to the
2057 // bottom of the activity stack. This also keeps it
2058 // correctly ordered with any activities we previously
2059 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002060 final ThumbnailHolder newThumbHolder;
2061 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002062 final ActivityRecord bottom =
2063 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002064 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002065 if (bottom != null && target.taskAffinity != null
2066 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002067 // If the activity currently at the bottom has the
2068 // same task affinity as the one we are moving,
2069 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002070 targetTask = bottom.task;
2071 newThumbHolder = bottom.thumbHolder == null ? targetTask : bottom.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002072 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002073 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002074 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002075 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002076 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002077 newThumbHolder = targetTask;
2078 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002079 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
2080 + " out to new task " + target.task);
2081 }
2082
Craig Mautnerd00f4742014-03-12 14:17:26 -07002083 target.thumbHolder = newThumbHolder;
Craig Mautner329f4122013-11-07 09:10:42 -08002084
Craig Mautnere3a74d52013-02-22 14:14:58 -08002085 final int targetTaskId = targetTask.taskId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002086 mWindowManager.setAppGroupId(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002087
Craig Mautner525f3d92013-05-07 14:01:50 -07002088 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002089 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2090 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002091 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002092 if (p.finishing) {
2093 continue;
2094 }
2095
Craig Mautner525f3d92013-05-07 14:01:50 -07002096 ThumbnailHolder curThumbHolder = p.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002097 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002098 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002099 topOptions = p.takeOptionsLocked();
2100 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002101 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002102 }
2103 }
2104 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08002105 + task + " adding to task=" + targetTask
2106 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08002107 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
2108 + " out to target's task " + target.task);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002109 p.setTask(targetTask, curThumbHolder, false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002110 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002111
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002112 mWindowManager.setAppGroupId(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002113 }
2114
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002115 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002116 if (VALIDATE_TOKENS) {
2117 validateAppTokensLocked();
2118 }
2119
2120 replyChainEnd = -1;
2121 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2122 // If the activity should just be removed -- either
2123 // because it asks for it, or the task should be
2124 // cleared -- then finish it and anything that is
2125 // part of its reply chain.
2126 int end;
2127 if (clearWhenTaskReset) {
2128 // In this case, we want to finish this activity
2129 // and everything above it, so be sneaky and pretend
2130 // like these are all in the reply chain.
2131 end = numActivities - 1;
2132 } else if (replyChainEnd < 0) {
2133 end = i;
2134 } else {
2135 end = replyChainEnd;
2136 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002137 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002138 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002139 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002140 if (p.finishing) {
2141 continue;
2142 }
2143 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002144 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002145 topOptions = p.takeOptionsLocked();
2146 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002147 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002148 }
2149 }
Craig Mautner58547802013-03-05 08:23:53 -08002150 if (DEBUG_TASKS) Slog.w(TAG,
2151 "resetTaskIntendedTask: calling finishActivity on " + p);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002152 if (finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002153 end--;
2154 srcPos--;
2155 }
2156 }
2157 replyChainEnd = -1;
2158 } else {
2159 // If we were in the middle of a chain, well the
2160 // activity that started it all doesn't want anything
2161 // special, so leave it all as-is.
2162 replyChainEnd = -1;
2163 }
2164 }
2165
2166 return topOptions;
2167 }
2168
2169 /**
2170 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2171 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2172 * @param affinityTask The task we are looking for an affinity to.
2173 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2174 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2175 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2176 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002177 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002178 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002179 int replyChainEnd = -1;
2180 final int taskId = task.taskId;
2181 final String taskAffinity = task.affinity;
2182
2183 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2184 final int numActivities = activities.size();
2185 // Do not operate on the root Activity.
2186 for (int i = numActivities - 1; i > 0; --i) {
2187 ActivityRecord target = activities.get(i);
2188
2189 final int flags = target.info.flags;
2190 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2191 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2192
2193 if (target.resultTo != null) {
2194 // If this activity is sending a reply to a previous
2195 // activity, we can't do anything with it now until
2196 // we reach the start of the reply chain.
2197 // XXX note that we are assuming the result is always
2198 // to the previous activity, which is almost always
2199 // the case but we really shouldn't count on.
2200 if (replyChainEnd < 0) {
2201 replyChainEnd = i;
2202 }
2203 } else if (topTaskIsHigher
2204 && allowTaskReparenting
2205 && taskAffinity != null
2206 && taskAffinity.equals(target.taskAffinity)) {
2207 // This activity has an affinity for our task. Either remove it if we are
2208 // clearing or move it over to our task. Note that
2209 // we currently punt on the case where we are resetting a
2210 // task that is not at the top but who has activities above
2211 // with an affinity to it... this is really not a normal
2212 // case, and we will need to later pull that task to the front
2213 // and usually at that point we will do the reset and pick
2214 // up those remaining activities. (This only happens if
2215 // someone starts an activity in a new task from an activity
2216 // in a task that is not currently on top.)
2217 if (forceReset || finishOnTaskLaunch) {
2218 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2219 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2220 for (int srcPos = start; srcPos >= i; --srcPos) {
2221 final ActivityRecord p = activities.get(srcPos);
2222 if (p.finishing) {
2223 continue;
2224 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08002225 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002226 }
2227 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002228 if (taskInsertionPoint < 0) {
2229 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002230
Craig Mautner77878772013-03-04 19:46:24 -08002231 }
Craig Mautner77878772013-03-04 19:46:24 -08002232
2233 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2234 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2235 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2236 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002237 final ActivityRecord p = activities.get(srcPos);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002238 p.setTask(task, null, false);
Craig Mautner77878772013-03-04 19:46:24 -08002239 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002240
Craig Mautnere3a74d52013-02-22 14:14:58 -08002241 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2242 + " to stack at " + task,
2243 new RuntimeException("here").fillInStackTrace());
2244 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2245 + " in to resetting task " + task);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002246 mWindowManager.setAppGroupId(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002247 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002248 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002249 if (VALIDATE_TOKENS) {
2250 validateAppTokensLocked();
2251 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002252
2253 // Now we've moved it in to place... but what if this is
2254 // a singleTop activity and we have put it on top of another
2255 // instance of the same activity? Then we drop the instance
2256 // below so it remains singleTop.
2257 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2258 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002259 int targetNdx = taskActivities.indexOf(target);
2260 if (targetNdx > 0) {
2261 ActivityRecord p = taskActivities.get(targetNdx - 1);
2262 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002263 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2264 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002265 }
2266 }
2267 }
2268 }
2269
2270 replyChainEnd = -1;
2271 }
2272 }
Craig Mautner77878772013-03-04 19:46:24 -08002273 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002274 }
2275
Craig Mautner8849a5e2013-04-02 16:41:03 -07002276 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002277 ActivityRecord newActivity) {
2278 boolean forceReset =
2279 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2280 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2281 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2282 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2283 forceReset = true;
2284 }
2285 }
2286
2287 final TaskRecord task = taskTop.task;
2288
2289 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2290 * for remaining tasks. Used for later tasks to reparent to task. */
2291 boolean taskFound = false;
2292
2293 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2294 ActivityOptions topOptions = null;
2295
Craig Mautner77878772013-03-04 19:46:24 -08002296 // Preserve the location for reparenting in the new task.
2297 int reparentInsertionPoint = -1;
2298
Craig Mautnere3a74d52013-02-22 14:14:58 -08002299 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2300 final TaskRecord targetTask = mTaskHistory.get(i);
2301
2302 if (targetTask == task) {
2303 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2304 taskFound = true;
2305 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002306 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2307 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002308 }
2309 }
2310
Craig Mautner70a86932013-02-28 22:37:44 -08002311 int taskNdx = mTaskHistory.indexOf(task);
2312 do {
2313 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2314 } while (taskTop == null && taskNdx >= 0);
2315
Craig Mautnere3a74d52013-02-22 14:14:58 -08002316 if (topOptions != null) {
2317 // If we got some ActivityOptions from an activity on top that
2318 // was removed from the task, propagate them to the new real top.
2319 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002320 taskTop.updateOptionsLocked(topOptions);
2321 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002322 topOptions.abort();
2323 }
2324 }
2325
2326 return taskTop;
2327 }
2328
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002329 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2330 String resultWho, int requestCode, int resultCode, Intent data) {
2331
2332 if (callingUid > 0) {
2333 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Dianne Hackborn7e269642010-08-25 19:50:20 -07002334 data, r.getUriPermissionsLocked());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002335 }
2336
2337 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2338 + " : who=" + resultWho + " req=" + requestCode
2339 + " res=" + resultCode + " data=" + data);
2340 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2341 try {
2342 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2343 list.add(new ResultInfo(resultWho, requestCode,
2344 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002345 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002346 return;
2347 } catch (Exception e) {
2348 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2349 }
2350 }
2351
2352 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2353 }
2354
Craig Mautner04f0b702013-10-22 12:31:01 -07002355 private void adjustFocusedActivityLocked(ActivityRecord r) {
2356 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2357 ActivityRecord next = topRunningActivityLocked(null);
2358 if (next != r) {
2359 final TaskRecord task = r.task;
2360 if (r.frontOfTask && task == topTask() && task.mOnTopOfHome) {
2361 mStackSupervisor.moveHomeToTop();
2362 }
2363 }
Winson Chung648c83b2014-04-28 15:11:56 -07002364 ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2365 if (top != null) {
2366 mService.setFocusedActivityLocked(top);
2367 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002368 }
2369 }
2370
Craig Mautnerf3333272013-04-22 10:55:53 -07002371 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002372 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2373 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2374 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2375 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002376 if (!mService.isSleeping()) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002377 if (DEBUG_STATES) {
2378 Slog.d(TAG, "no-history finish of " + r);
2379 }
2380 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002381 "no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002382 } else {
2383 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2384 + " on stop because we're just sleeping");
2385 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002386 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002387 }
2388
2389 if (r.app != null && r.app.thread != null) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002390 adjustFocusedActivityLocked(r);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002391 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002392 try {
2393 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002394 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2395 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002396 r.state = ActivityState.STOPPING;
2397 if (DEBUG_VISBILITY) Slog.v(
2398 TAG, "Stopping visible=" + r.visible + " for " + r);
2399 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002400 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002401 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002402 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002403 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002404 r.setSleeping(true);
2405 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002406 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002407 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002408 } catch (Exception e) {
2409 // Maybe just ignore exceptions here... if the process
2410 // has crashed, our death notification will clean things
2411 // up.
2412 Slog.w(TAG, "Exception thrown during pause", e);
2413 // Just in case, assume it to be stopped.
2414 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002415 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002416 r.state = ActivityState.STOPPED;
2417 if (r.configDestroy) {
Dianne Hackborn28695e02011-11-02 21:59:51 -07002418 destroyActivityLocked(r, true, false, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002419 }
2420 }
2421 }
2422 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002423
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002424 /**
2425 * @return Returns true if the activity is being finished, false if for
2426 * some reason it is being left as-is.
2427 */
2428 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002429 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002430 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002431 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002432 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002433 + ", result=" + resultCode + ", data=" + resultData
2434 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002435 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002436 return false;
2437 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002438
Craig Mautnerd44711d2013-02-23 11:24:36 -08002439 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002440 return true;
2441 }
2442
Craig Mautnerd2328952013-03-05 12:46:26 -08002443 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002444 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2445 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2446 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2447 ActivityRecord r = activities.get(activityNdx);
2448 if (r.resultTo == self && r.requestCode == requestCode) {
2449 if ((r.resultWho == null && resultWho == null) ||
2450 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2451 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2452 false);
2453 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002454 }
2455 }
2456 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002457 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002458 }
2459
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002460 final void finishTopRunningActivityLocked(ProcessRecord app) {
2461 ActivityRecord r = topRunningActivityLocked(null);
2462 if (r != null && r.app == app) {
2463 // If the top running activity is from this crashing
2464 // process, then terminate it to avoid getting in a loop.
2465 Slog.w(TAG, " Force finishing activity "
2466 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002467 int taskNdx = mTaskHistory.indexOf(r.task);
2468 int activityNdx = r.task.mActivities.indexOf(r);
Craig Mautnerd2328952013-03-05 12:46:26 -08002469 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002470 // Also terminate any activities below it that aren't yet
2471 // stopped, to avoid a situation where one will get
2472 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002473 --activityNdx;
2474 if (activityNdx < 0) {
2475 do {
2476 --taskNdx;
2477 if (taskNdx < 0) {
2478 break;
2479 }
2480 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2481 } while (activityNdx < 0);
2482 }
2483 if (activityNdx >= 0) {
2484 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002485 if (r.state == ActivityState.RESUMED
2486 || r.state == ActivityState.PAUSING
2487 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002488 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002489 Slog.w(TAG, " Force finishing activity "
2490 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08002491 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002492 }
2493 }
2494 }
2495 }
2496 }
2497
Craig Mautnerd2328952013-03-05 12:46:26 -08002498 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002499 ArrayList<ActivityRecord> activities = r.task.mActivities;
2500 for (int index = activities.indexOf(r); index >= 0; --index) {
2501 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002502 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002503 break;
2504 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002505 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002506 }
2507 return true;
2508 }
2509
Dianne Hackborn5c607432012-02-28 14:44:19 -08002510 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2511 // send the result
2512 ActivityRecord resultTo = r.resultTo;
2513 if (resultTo != null) {
2514 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2515 + " who=" + r.resultWho + " req=" + r.requestCode
2516 + " res=" + resultCode + " data=" + resultData);
2517 if (r.info.applicationInfo.uid > 0) {
2518 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2519 resultTo.packageName, resultData,
2520 resultTo.getUriPermissionsLocked());
2521 }
2522 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2523 resultData);
2524 r.resultTo = null;
2525 }
2526 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2527
2528 // Make sure this HistoryRecord is not holding on to other resources,
2529 // because clients have remote IPC references to this object so we
2530 // can't assume that will go away and want to avoid circular IPC refs.
2531 r.results = null;
2532 r.pendingResults = null;
2533 r.newIntents = null;
2534 r.icicle = null;
2535 }
2536
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002537 /**
2538 * @return Returns true if this activity has been removed from the history
2539 * list, or false if it is still in the list and will be removed later.
2540 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002541 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2542 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002543 if (r.finishing) {
2544 Slog.w(TAG, "Duplicate finish request for " + r);
2545 return false;
2546 }
2547
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002548 r.makeFinishing();
Craig Mautneraea74a52014-03-08 14:23:10 -08002549 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002550 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002551 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002552 task.taskId, r.shortComponentName, reason);
2553 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002554 final int index = activities.indexOf(r);
2555 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002556 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002557 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002558 // If the caller asked that this activity (and all above it)
2559 // be cleared when the task is reset, don't lose that information,
2560 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002561 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002562 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002563 }
2564 }
2565
2566 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002567
2568 adjustFocusedActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002569
Dianne Hackborn5c607432012-02-28 14:44:19 -08002570 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002571
Craig Mautnerde4ef022013-04-07 19:01:33 -07002572 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002573 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002574 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002575 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002576 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002577 ? AppTransition.TRANSIT_TASK_CLOSE
2578 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002579
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002580 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002581 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002582
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002583 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002584 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2585 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
2586 startPausingLocked(false, false);
2587 }
2588
Craig Mautneraea74a52014-03-08 14:23:10 -08002589 if (endTask) {
2590 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
2591 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002592 } else if (r.state != ActivityState.PAUSING) {
2593 // If the activity is PAUSING, we will complete the finish once
2594 // it is done pausing; else we can just directly finish it here.
2595 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002596 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002597 } else {
2598 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2599 }
2600
2601 return false;
2602 }
2603
Craig Mautnerf3333272013-04-22 10:55:53 -07002604 static final int FINISH_IMMEDIATELY = 0;
2605 static final int FINISH_AFTER_PAUSE = 1;
2606 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002607
Craig Mautnerf3333272013-04-22 10:55:53 -07002608 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002609 // First things first: if this activity is currently visible,
2610 // and the resumed activity is not yet visible, then hold off on
2611 // finishing until the resumed one becomes visible.
2612 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002613 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2614 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002615 if (mStackSupervisor.mStoppingActivities.size() > 3
2616 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002617 // If we already have a few activities waiting to stop,
2618 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002619 // them out. Or if r is the last of activity of the last task the stack
2620 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002621 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002622 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002623 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002624 }
2625 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002626 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2627 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002628 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002629 if (oomAdj) {
2630 mService.updateOomAdjLocked();
2631 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002632 return r;
2633 }
2634
2635 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002636 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002637 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002638 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002639 if (mResumedActivity == r) {
2640 mResumedActivity = null;
2641 }
2642 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002643 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002644 r.state = ActivityState.FINISHING;
2645
2646 if (mode == FINISH_IMMEDIATELY
2647 || prevState == ActivityState.STOPPED
2648 || prevState == ActivityState.INITIALIZING) {
2649 // If this activity is already stopped, we can just finish
2650 // it right now.
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002651 boolean activityRemoved = destroyActivityLocked(r, true,
2652 oomAdj, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002653 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002654 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002655 }
2656 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002657 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002658
2659 // Need to go through the full pause cycle to get this
2660 // activity into the stopped state and then finish it.
2661 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002662 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002663 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002664 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002665 return r;
2666 }
2667
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002668 void finishAllActivitiesLocked() {
2669 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2670 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2671 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2672 final ActivityRecord r = activities.get(activityNdx);
2673 if (r.finishing) {
2674 continue;
2675 }
2676 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r);
2677 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2678 }
2679 }
2680 }
2681
Craig Mautnerd2328952013-03-05 12:46:26 -08002682 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002683 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002684 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002685 final TaskRecord task = srec.task;
2686 final ArrayList<ActivityRecord> activities = task.mActivities;
2687 final int start = activities.indexOf(srec);
2688 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002689 return false;
2690 }
2691 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002692 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002693 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002694 final ComponentName dest = destIntent.getComponent();
2695 if (start > 0 && dest != null) {
2696 for (int i = finishTo; i >= 0; i--) {
2697 ActivityRecord r = activities.get(i);
2698 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002699 r.info.name.equals(dest.getClassName())) {
2700 finishTo = i;
2701 parent = r;
2702 foundParentInTask = true;
2703 break;
2704 }
2705 }
2706 }
2707
2708 IActivityController controller = mService.mController;
2709 if (controller != null) {
2710 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2711 if (next != null) {
2712 // ask watcher if this is allowed
2713 boolean resumeOK = true;
2714 try {
2715 resumeOK = controller.activityResuming(next.packageName);
2716 } catch (RemoteException e) {
2717 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002718 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002719 }
2720
2721 if (!resumeOK) {
2722 return false;
2723 }
2724 }
2725 }
2726 final long origId = Binder.clearCallingIdentity();
2727 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002728 ActivityRecord r = activities.get(i);
2729 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002730 // Only return the supplied result for the first activity finished
2731 resultCode = Activity.RESULT_CANCELED;
2732 resultData = null;
2733 }
2734
2735 if (parent != null && foundParentInTask) {
2736 final int parentLaunchMode = parent.info.launchMode;
2737 final int destIntentFlags = destIntent.getFlags();
2738 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2739 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2740 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2741 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
2742 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent);
2743 } else {
2744 try {
2745 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2746 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002747 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002748 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002749 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Craig Mautnere0a38842013-12-16 16:14:02 -08002750 0, null, true, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002751 foundParentInTask = res == ActivityManager.START_SUCCESS;
2752 } catch (RemoteException e) {
2753 foundParentInTask = false;
2754 }
2755 requestFinishActivityLocked(parent.appToken, resultCode,
2756 resultData, "navigate-up", true);
2757 }
2758 }
2759 Binder.restoreCallingIdentity(origId);
2760 return foundParentInTask;
2761 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002762 /**
2763 * Perform the common clean-up of an activity record. This is called both
2764 * as part of destroyActivityLocked() (when destroying the client-side
2765 * representation) and cleaning things up as a result of its hosting
2766 * processing going away, in which case there is no remaining client-side
2767 * state to destroy so only the cleanup here is needed.
2768 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002769 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2770 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002771 if (mResumedActivity == r) {
2772 mResumedActivity = null;
2773 }
Craig Mautner1872ce32014-03-28 23:05:42 +00002774 if (mPausingActivity == r) {
2775 mPausingActivity = null;
2776 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07002777 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002778
2779 r.configDestroy = false;
2780 r.frozenBeforeDestroy = false;
2781
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002782 if (setState) {
2783 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
2784 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002785 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002786 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002787 }
2788
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002789 // Make sure this record is no longer in the pending finishes list.
2790 // This could happen, for example, if we are trimming activities
2791 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07002792 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002793 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07002794
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002795 // Remove any pending results.
2796 if (r.finishing && r.pendingResults != null) {
2797 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
2798 PendingIntentRecord rec = apr.get();
2799 if (rec != null) {
2800 mService.cancelIntentSenderLocked(rec, false);
2801 }
2802 }
2803 r.pendingResults = null;
2804 }
2805
2806 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07002807 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002808 }
2809
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002810 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002811 removeTimeoutsForActivityLocked(r);
2812 }
2813
2814 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07002815 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002816 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002817 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002818 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002819 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002820 }
2821
Craig Mautner04a0ea62014-01-13 12:51:26 -08002822 private void removeActivityFromHistoryLocked(ActivityRecord r) {
Craig Mautner34b73df2014-01-12 21:11:08 -08002823 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002824 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
2825 r.makeFinishing();
2826 if (DEBUG_ADD_REMOVE) {
2827 RuntimeException here = new RuntimeException("here");
2828 here.fillInStackTrace();
2829 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002830 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002831 r.takeFromHistory();
2832 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08002833 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002834 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002835 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002836 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002837 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002838 if (VALIDATE_TOKENS) {
2839 validateAppTokensLocked();
2840 }
Craig Mautner312ba862014-02-10 17:55:01 -08002841 final TaskRecord task = r.task;
2842 if (task != null && task.removeActivity(r)) {
2843 if (DEBUG_STACK) Slog.i(TAG,
2844 "removeActivityFromHistoryLocked: last activity removed from " + this);
2845 if (mStackSupervisor.isFrontStack(this) && task == topTask() && task.mOnTopOfHome) {
2846 mStackSupervisor.moveHomeToTop();
2847 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07002848 removeTask(task, false);
Craig Mautner312ba862014-02-10 17:55:01 -08002849 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002850 cleanUpActivityServicesLocked(r);
2851 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002852 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002853
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002854 /**
2855 * Perform clean-up of service connections in an activity record.
2856 */
2857 final void cleanUpActivityServicesLocked(ActivityRecord r) {
2858 // Throw away any services that have been bound by this activity.
2859 if (r.connections != null) {
2860 Iterator<ConnectionRecord> it = r.connections.iterator();
2861 while (it.hasNext()) {
2862 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07002863 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002864 }
2865 r.connections = null;
2866 }
2867 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002868
2869 final void scheduleDestroyActivities(ProcessRecord owner, boolean oomAdj, String reason) {
2870 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
2871 msg.obj = new ScheduleDestroyArgs(owner, oomAdj, reason);
2872 mHandler.sendMessage(msg);
2873 }
2874
Dianne Hackborn28695e02011-11-02 21:59:51 -07002875 final void destroyActivitiesLocked(ProcessRecord owner, boolean oomAdj, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002876 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002877 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002878 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2879 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2880 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2881 final ActivityRecord r = activities.get(activityNdx);
2882 if (r.finishing) {
2883 continue;
2884 }
2885 if (r.fullscreen) {
2886 lastIsOpaque = true;
2887 }
2888 if (owner != null && r.app != owner) {
2889 continue;
2890 }
2891 if (!lastIsOpaque) {
2892 continue;
2893 }
2894 // We can destroy this one if we have its icicle saved and
2895 // it is not in the process of pausing/stopping/finishing.
2896 if (r.app != null && r != mResumedActivity && r != mPausingActivity
2897 && r.haveState && !r.visible && r.stopped
2898 && r.state != ActivityState.DESTROYING
2899 && r.state != ActivityState.DESTROYED) {
2900 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
2901 + " resumed=" + mResumedActivity
2902 + " pausing=" + mPausingActivity);
2903 if (destroyActivityLocked(r, true, oomAdj, reason)) {
2904 activityRemoved = true;
2905 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002906 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002907 }
2908 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002909 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002910 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002911 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002912 }
2913
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002914 /**
2915 * Destroy the current CLIENT SIDE instance of an activity. This may be
2916 * called both when actually finishing an activity, or when performing
2917 * a configuration switch where we destroy the current client-side object
2918 * but then create a new client-side object for this same HistoryRecord.
2919 */
2920 final boolean destroyActivityLocked(ActivityRecord r,
Dianne Hackborn28695e02011-11-02 21:59:51 -07002921 boolean removeFromApp, boolean oomAdj, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002922 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002923 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002924 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
2925 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002926 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07002927 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002928
2929 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002930
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002931 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002932
2933 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002934
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002935 if (hadApp) {
2936 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002937 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002938 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
2939 mService.mHeavyWeightProcess = null;
2940 mService.mHandler.sendEmptyMessage(
2941 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
2942 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07002943 if (r.app.activities.isEmpty()) {
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07002944 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07002945 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002946 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002947 }
2948 }
2949
2950 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002951
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002952 try {
2953 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002954 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002955 r.configChangeFlags);
2956 } catch (Exception e) {
2957 // We can just ignore exceptions here... if the process
2958 // has crashed, our death notification will clean things
2959 // up.
2960 //Slog.w(TAG, "Exception thrown during finish", e);
2961 if (r.finishing) {
2962 removeActivityFromHistoryLocked(r);
2963 removedFromHistory = true;
2964 skipDestroy = true;
2965 }
2966 }
2967
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002968 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002969
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002970 // If the activity is finishing, we need to wait on removing it
2971 // from the list to give it a chance to do its cleanup. During
2972 // that time it may make calls back with its token so we need to
2973 // be able to find it on the list and so we don't want to remove
2974 // it from the list yet. Otherwise, we can just immediately put
2975 // it in the destroyed state since we are not removing it from the
2976 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002977 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002978 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
2979 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002980 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002981 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002982 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
2983 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002984 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002985 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002986 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002987 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002988 }
2989 } else {
2990 // remove this record from the history.
2991 if (r.finishing) {
2992 removeActivityFromHistoryLocked(r);
2993 removedFromHistory = true;
2994 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002995 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002996 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002997 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002998 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002999 }
3000 }
3001
3002 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003003
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003004 if (!mLRUActivities.remove(r) && hadApp) {
3005 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3006 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003007
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003008 return removedFromHistory;
3009 }
3010
Craig Mautnerd2328952013-03-05 12:46:26 -08003011 final void activityDestroyedLocked(IBinder token) {
3012 final long origId = Binder.clearCallingIdentity();
3013 try {
3014 ActivityRecord r = ActivityRecord.forToken(token);
3015 if (r != null) {
3016 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003017 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003018
3019 if (isInStackLocked(token) != null) {
3020 if (r.state == ActivityState.DESTROYING) {
3021 cleanUpActivityLocked(r, true, false);
3022 removeActivityFromHistoryLocked(r);
3023 }
3024 }
Craig Mautner05d29032013-05-03 13:40:13 -07003025 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003026 } finally {
3027 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003028 }
3029 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003030
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003031 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3032 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003033 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003034 if (DEBUG_CLEANUP) Slog.v(
3035 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003036 + " with " + i + " entries");
3037 while (i > 0) {
3038 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003039 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003040 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003041 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003042 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003043 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003044 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003045 }
3046 }
3047 }
3048
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003049 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3050 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003051 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3052 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003053 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3054 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003055 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003056 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003057 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3058 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003059
3060 boolean hasVisibleActivities = false;
3061
3062 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003063 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003064 if (DEBUG_CLEANUP) Slog.v(
3065 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003066 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3067 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3068 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3069 final ActivityRecord r = activities.get(activityNdx);
3070 --i;
3071 if (DEBUG_CLEANUP) Slog.v(
3072 TAG, "Record #" + i + " " + r + ": app=" + r.app);
3073 if (r.app == app) {
3074 boolean remove;
3075 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3076 // Don't currently have state for the activity, or
3077 // it is finishing -- always remove it.
3078 remove = true;
3079 } else if (r.launchCount > 2 &&
3080 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3081 // We have launched this activity too many times since it was
3082 // able to run, so give up and remove it.
3083 remove = true;
3084 } else {
3085 // The process may be gone, but the activity lives on!
3086 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003087 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003088 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003089 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003090 RuntimeException here = new RuntimeException("here");
3091 here.fillInStackTrace();
3092 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
3093 + ": haveState=" + r.haveState
3094 + " stateNotNeeded=" + r.stateNotNeeded
3095 + " finishing=" + r.finishing
3096 + " state=" + r.state, here);
3097 }
3098 if (!r.finishing) {
3099 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3100 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3101 r.userId, System.identityHashCode(r),
3102 r.task.taskId, r.shortComponentName,
3103 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003104 if (r.state == ActivityState.RESUMED) {
3105 mService.updateUsageStats(r, false);
3106 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003107 }
3108 removeActivityFromHistoryLocked(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003109
Craig Mautner0247fc82013-02-28 14:32:06 -08003110 } else {
3111 // We have the current state for this activity, so
3112 // it can be restarted later when needed.
3113 if (localLOGV) Slog.v(
3114 TAG, "Keeping entry, setting app to null");
3115 if (r.visible) {
3116 hasVisibleActivities = true;
3117 }
3118 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3119 + r);
3120 r.app = null;
3121 r.nowVisible = false;
3122 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003123 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003124 "App died, clearing saved state of " + r);
3125 r.icicle = null;
3126 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003127 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003128
Craig Mautnerd2328952013-03-05 12:46:26 -08003129 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003130 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003131 }
3132 }
3133
3134 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003135 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003136
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003137 final void updateTransitLocked(int transit, Bundle options) {
3138 if (options != null) {
3139 ActivityRecord r = topRunningActivityLocked(null);
3140 if (r != null && r.state != ActivityState.RESUMED) {
3141 r.updateOptionsLocked(options);
3142 } else {
3143 ActivityOptions.abort(options);
3144 }
3145 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003146 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003147 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003148
Craig Mautnera82aa092013-09-13 15:34:08 -07003149 void moveHomeTaskToTop() {
3150 final int top = mTaskHistory.size() - 1;
3151 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3152 final TaskRecord task = mTaskHistory.get(taskNdx);
3153 if (task.isHomeTask()) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -07003154 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG, "moveHomeTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003155 mTaskHistory.remove(taskNdx);
3156 mTaskHistory.add(top, task);
3157 mWindowManager.moveTaskToTop(task.taskId);
3158 return;
3159 }
3160 }
3161 }
3162
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003163 final void moveTaskToFrontLocked(TaskRecord tr, ActivityRecord reason, Bundle options) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003164 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003165
Craig Mautner11bf9a52013-02-19 14:08:51 -08003166 final int numTasks = mTaskHistory.size();
3167 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003168 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003169 // nothing to do!
3170 if (reason != null &&
3171 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3172 ActivityOptions.abort(options);
3173 } else {
3174 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3175 }
3176 return;
3177 }
3178
Craig Mautnere0a38842013-12-16 16:14:02 -08003179 moveToFront();
Craig Mautnerfb1e20d2013-06-23 21:24:13 -07003180
Craig Mautner11bf9a52013-02-19 14:08:51 -08003181 // Shift all activities with this task up to the top
3182 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003183 insertTaskAtTop(tr);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003184
3185 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003186 if (reason != null &&
3187 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003188 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003189 ActivityRecord r = topRunningActivityLocked(null);
3190 if (r != null) {
3191 mNoAnimActivities.add(r);
3192 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003193 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003194 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003195 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003196 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003197
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003198 mWindowManager.moveTaskToTop(tr.taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003199
Craig Mautner05d29032013-05-03 13:40:13 -07003200 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003201 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003202
3203 if (VALIDATE_TOKENS) {
3204 validateAppTokensLocked();
3205 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003206 }
3207
3208 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003209 * Worker method for rearranging history stack. Implements the function of moving all
3210 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003211 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003212 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003213 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3214 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003215 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003216 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003217 * @return Returns true if the move completed, false if not.
3218 */
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003219 final boolean moveTaskToBackLocked(int taskId, ActivityRecord reason) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003220 final TaskRecord tr = taskForIdLocked(taskId);
3221 if (tr == null) {
3222 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3223 return false;
3224 }
3225
3226 Slog.i(TAG, "moveTaskToBack: " + tr);
3227
3228 mStackSupervisor.endLockTaskModeIfTaskEnding(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003229
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003230 // If we have a watcher, preflight the move before committing to it. First check
3231 // for *other* available tasks, but if none are available, then try again allowing the
3232 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003233 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003234 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003235 if (next == null) {
3236 next = topRunningActivityLocked(null, 0);
3237 }
3238 if (next != null) {
3239 // ask watcher if this is allowed
3240 boolean moveOK = true;
3241 try {
3242 moveOK = mService.mController.activityResuming(next.packageName);
3243 } catch (RemoteException e) {
3244 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003245 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003246 }
3247 if (!moveOK) {
3248 return false;
3249 }
3250 }
3251 }
3252
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003253 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003254 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003255
Craig Mautner11bf9a52013-02-19 14:08:51 -08003256 mTaskHistory.remove(tr);
3257 mTaskHistory.add(0, tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003258
Craig Mautnerc8143c62013-09-03 12:15:57 -07003259 // There is an assumption that moving a task to the back moves it behind the home activity.
3260 // We make sure here that some activity in the stack will launch home.
3261 ActivityRecord lastActivity = null;
3262 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003263 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3264 final TaskRecord task = mTaskHistory.get(taskNdx);
3265 if (task.mOnTopOfHome) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003266 break;
3267 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003268 if (taskNdx == 1) {
3269 // Set the last task before tr to go to home.
3270 task.mOnTopOfHome = true;
3271 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003272 }
3273
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003274 if (reason != null &&
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003275 (reason.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3276 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003277 ActivityRecord r = topRunningActivityLocked(null);
3278 if (r != null) {
3279 mNoAnimActivities.add(r);
3280 }
3281 } else {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003282 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003283 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003284 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003285
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003286 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003287 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003288 }
3289
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003290 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Craig Mautnere0a38842013-12-16 16:14:02 -08003291 if (task == tr && tr.mOnTopOfHome || numTasks <= 1 && isOnHomeDisplay()) {
Daniel 2 Olofsson9cdf9e52013-12-16 13:24:25 +01003292 tr.mOnTopOfHome = false;
Craig Mautner69ada552013-04-18 13:51:51 -07003293 return mStackSupervisor.resumeHomeActivity(null);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003294 }
3295
Craig Mautner05d29032013-05-03 13:40:13 -07003296 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003297 return true;
3298 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003299
Craig Mautner8849a5e2013-04-02 16:41:03 -07003300 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003301 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003302 final Uri data = r.intent.getData();
3303 final String strData = data != null ? data.toSafeString() : null;
3304
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003305 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003306 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003307 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003308 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003309 }
3310
3311 /**
3312 * Make sure the given activity matches the current configuration. Returns
3313 * false if the activity had to be destroyed. Returns true if the
3314 * configuration is the same, or the activity will remain running as-is
3315 * for whatever reason. Ensures the HistoryRecord is updated with the
3316 * correct configuration and all other bookkeeping is handled.
3317 */
3318 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3319 int globalChanges) {
3320 if (mConfigWillChange) {
3321 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3322 "Skipping config check (will change): " + r);
3323 return true;
3324 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003325
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003326 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3327 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003328
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003329 // Short circuit: if the two configurations are the exact same
3330 // object (the common case), then there is nothing to do.
3331 Configuration newConfig = mService.mConfiguration;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003332 if (r.configuration == newConfig && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003333 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3334 "Configuration unchanged in " + r);
3335 return true;
3336 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003337
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003338 // We don't worry about activities that are finishing.
3339 if (r.finishing) {
3340 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3341 "Configuration doesn't matter in finishing " + r);
3342 r.stopFreezingScreenLocked(false);
3343 return true;
3344 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003345
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003346 // Okay we now are going to make this activity have the new config.
3347 // But then we need to figure out how it needs to deal with that.
3348 Configuration oldConfig = r.configuration;
3349 r.configuration = newConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003350
3351 // Determine what has changed. May be nothing, if this is a config
3352 // that has come back from the app after going idle. In that case
3353 // we just want to leave the official config object now in the
3354 // activity and do nothing else.
3355 final int changes = oldConfig.diff(newConfig);
3356 if (changes == 0 && !r.forceNewConfig) {
3357 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3358 "Configuration no differences in " + r);
3359 return true;
3360 }
3361
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003362 // If the activity isn't currently running, just leave the new
3363 // configuration and it will pick that up next time it starts.
3364 if (r.app == null || r.app.thread == null) {
3365 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3366 "Configuration doesn't matter not running " + r);
3367 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003368 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003369 return true;
3370 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003371
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003372 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003373 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3374 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3375 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003376 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003377 + ", newConfig=" + newConfig);
3378 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003379 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003380 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3381 r.configChangeFlags |= changes;
3382 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003383 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003384 if (r.app == null || r.app.thread == null) {
3385 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003386 "Config is destroying non-running " + r);
Dianne Hackborn28695e02011-11-02 21:59:51 -07003387 destroyActivityLocked(r, true, false, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003388 } else if (r.state == ActivityState.PAUSING) {
3389 // A little annoying: we are waiting for this activity to
3390 // finish pausing. Let's not do anything now, but just
3391 // flag that it needs to be restarted when done pausing.
3392 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003393 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003394 r.configDestroy = true;
3395 return true;
3396 } else if (r.state == ActivityState.RESUMED) {
3397 // Try to optimize this case: the configuration is changing
3398 // and we need to restart the top, resumed activity.
3399 // Instead of doing the normal handshaking, just say
3400 // "restart!".
3401 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003402 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003403 relaunchActivityLocked(r, r.configChangeFlags, true);
3404 r.configChangeFlags = 0;
3405 } else {
3406 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003407 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003408 relaunchActivityLocked(r, r.configChangeFlags, false);
3409 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003410 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003411
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003412 // All done... tell the caller we weren't able to keep this
3413 // activity around.
3414 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003415 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003416
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003417 // Default case: the activity can handle this new configuration, so
3418 // hand it over. Note that we don't need to give it the new
3419 // configuration, since we always send configuration changes to all
3420 // process when they happen so it can just use whatever configuration
3421 // it last got.
3422 if (r.app != null && r.app.thread != null) {
3423 try {
3424 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003425 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003426 } catch (RemoteException e) {
3427 // If process died, whatever.
3428 }
3429 }
3430 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003431
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003432 return true;
3433 }
3434
Craig Mautnerc8143c62013-09-03 12:15:57 -07003435 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003436 int changes, boolean andResume) {
3437 List<ResultInfo> results = null;
3438 List<Intent> newIntents = null;
3439 if (andResume) {
3440 results = r.results;
3441 newIntents = r.newIntents;
3442 }
3443 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3444 + " with results=" + results + " newIntents=" + newIntents
3445 + " andResume=" + andResume);
3446 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003447 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003448 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003449
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003450 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003451
Craig Mautner34b73df2014-01-12 21:11:08 -08003452 mStackSupervisor.removeChildActivityContainers(r);
3453
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003454 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003455 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3456 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3457 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003458 r.forceNewConfig = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08003459 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents,
Dianne Hackborn813075a62011-11-14 17:45:19 -08003460 changes, !andResume, new Configuration(mService.mConfiguration));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003461 // Note: don't need to call pauseIfSleepingLocked() here, because
3462 // the caller will only pass in 'andResume' if this activity is
3463 // currently resumed, which implies we aren't sleeping.
3464 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003465 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003466 }
3467
3468 if (andResume) {
3469 r.results = null;
3470 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003471 r.state = ActivityState.RESUMED;
3472 } else {
3473 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3474 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003475 }
3476
3477 return true;
3478 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003479
3480 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003481 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3482 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3483 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3484 final ActivityRecord r = activities.get(activityNdx);
3485 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003486 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003487 }
3488 if (r.fullscreen && !r.finishing) {
3489 return false;
3490 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003491 }
3492 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003493 final ActivityRecord r = ActivityRecord.forToken(token);
3494 if (r == null) {
3495 return false;
3496 }
3497 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3498 + " would have returned true for r=" + r);
3499 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003500 }
3501
3502 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003503 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3504 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3505 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3506 final ActivityRecord r = activities.get(activityNdx);
3507 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003508 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003509 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003510 }
3511 }
3512 }
3513
3514 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3515 boolean didSomething = false;
3516 TaskRecord lastTask = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003517 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3518 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3519 int numActivities = activities.size();
3520 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3521 ActivityRecord r = activities.get(activityNdx);
3522 final boolean samePackage = r.packageName.equals(name)
3523 || (name == null && r.userId == userId);
3524 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3525 && (samePackage || r.task == lastTask)
3526 && (r.app == null || evenPersistent || !r.app.persistent)) {
3527 if (!doit) {
3528 if (r.finishing) {
3529 // If this activity is just finishing, then it is not
3530 // interesting as far as something to stop.
3531 continue;
3532 }
3533 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003534 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003535 didSomething = true;
3536 Slog.i(TAG, " Force finishing activity " + r);
3537 if (samePackage) {
3538 if (r.app != null) {
3539 r.app.removed = true;
3540 }
3541 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003542 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003543 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003544 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3545 true)) {
3546 // r has been deleted from mActivities, accommodate.
3547 --numActivities;
3548 --activityNdx;
3549 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003550 }
3551 }
3552 }
3553 return didSomething;
3554 }
3555
Dianne Hackborn09233282014-04-30 11:33:59 -07003556 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003557 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003558 final TaskRecord task = mTaskHistory.get(taskNdx);
3559 ActivityRecord r = null;
3560 ActivityRecord top = null;
3561 int numActivities = 0;
3562 int numRunning = 0;
3563 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003564 if (activities.isEmpty()) {
3565 continue;
3566 }
Dianne Hackborn09233282014-04-30 11:33:59 -07003567 if (!allowed && !task.isHomeTask() && task.creatorUid != callingUid) {
3568 continue;
3569 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003570 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3571 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003572
Craig Mautneraab647e2013-02-28 16:31:36 -08003573 // Initialize state for next task if needed.
3574 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3575 top = r;
3576 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003577 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003578
3579 // Add 'r' into the current task.
3580 numActivities++;
3581 if (r.app != null && r.app.thread != null) {
3582 numRunning++;
3583 }
3584
3585 if (localLOGV) Slog.v(
3586 TAG, r.intent.getComponent().flattenToShortString()
3587 + ": task=" + r.task);
3588 }
3589
3590 RunningTaskInfo ci = new RunningTaskInfo();
3591 ci.id = task.taskId;
3592 ci.baseActivity = r.intent.getComponent();
3593 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003594 ci.lastActiveTime = task.lastActiveTime;
3595
Craig Mautneraab647e2013-02-28 16:31:36 -08003596 if (top.thumbHolder != null) {
3597 ci.description = top.thumbHolder.lastDescription;
3598 }
3599 ci.numActivities = numActivities;
3600 ci.numRunning = numRunning;
3601 //System.out.println(
3602 // "#" + maxNum + ": " + " descr=" + ci.description);
Craig Mautneraab647e2013-02-28 16:31:36 -08003603 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003604 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003605 }
3606
3607 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003608 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003609 if (DEBUG_SWITCH) Slog.d(
3610 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003611 if (top >= 0) {
3612 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3613 int activityTop = activities.size() - 1;
3614 if (activityTop > 0) {
3615 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3616 "unhandled-back", true);
3617 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003618 }
3619 }
3620
Craig Mautner6b74cb52013-09-27 17:02:21 -07003621 /**
3622 * Reset local parameters because an app's activity died.
3623 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003624 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003625 */
3626 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003627 if (mPausingActivity != null && mPausingActivity.app == app) {
3628 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3629 "App died while pausing: " + mPausingActivity);
3630 mPausingActivity = null;
3631 }
3632 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3633 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003634 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003635 }
3636
Craig Mautner19091252013-10-05 00:03:53 -07003637 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003638 }
3639
Craig Mautnercae015f2013-02-08 14:31:27 -08003640 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003641 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3642 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3643 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3644 final ActivityRecord r = activities.get(activityNdx);
3645 if (r.app == app) {
3646 Slog.w(TAG, " Force finishing activity "
3647 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08003648 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003649 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003650 }
3651 }
3652 }
3653
Dianne Hackborn390517b2013-05-30 15:03:32 -07003654 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003655 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003656 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08003657 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3658 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07003659 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
3660 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003661 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07003662 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003663 if (printed) {
3664 header = null;
3665 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003666 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003667 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08003668 }
3669
3670 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
3671 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
3672
3673 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003674 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3675 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08003676 }
3677 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003678 final int top = mTaskHistory.size() - 1;
3679 if (top >= 0) {
3680 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
3681 int listTop = list.size() - 1;
3682 if (listTop >= 0) {
3683 activities.add(list.get(listTop));
3684 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003685 }
3686 } else {
3687 ItemMatcher matcher = new ItemMatcher();
3688 matcher.build(name);
3689
Craig Mautneraab647e2013-02-28 16:31:36 -08003690 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3691 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
3692 if (matcher.match(r1, r1.intent.getComponent())) {
3693 activities.add(r1);
3694 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003695 }
3696 }
3697 }
3698
3699 return activities;
3700 }
3701
3702 ActivityRecord restartPackage(String packageName) {
3703 ActivityRecord starting = topRunningActivityLocked(null);
3704
3705 // All activities that came from the package must be
3706 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08003707 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3708 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3709 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3710 final ActivityRecord a = activities.get(activityNdx);
3711 if (a.info.packageName.equals(packageName)) {
3712 a.forceNewConfig = true;
3713 if (starting != null && a == starting && a.visible) {
3714 a.startFreezingScreenLocked(starting.app,
3715 ActivityInfo.CONFIG_SCREEN_LAYOUT);
3716 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003717 }
3718 }
3719 }
3720
3721 return starting;
3722 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003723
Dianne Hackbornc03c9162014-05-02 10:45:59 -07003724 void removeTask(TaskRecord task, boolean moving) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003725 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08003726 mWindowManager.removeTask(task.taskId);
3727 final ActivityRecord r = mResumedActivity;
3728 if (r != null && r.task == task) {
3729 mResumedActivity = null;
3730 }
3731
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003732 final int taskNdx = mTaskHistory.indexOf(task);
3733 final int topTaskNdx = mTaskHistory.size() - 1;
3734 if (task.mOnTopOfHome && taskNdx < topTaskNdx) {
3735 mTaskHistory.get(taskNdx + 1).mOnTopOfHome = true;
3736 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003737 mTaskHistory.remove(task);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07003738 if (!moving && task.voiceSession != null) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07003739 // This task was a voice interaction, so it should not remain on the
3740 // recent tasks list.
Dianne Hackbornc03c9162014-05-02 10:45:59 -07003741 try {
3742 task.voiceSession.taskFinished(task.intent, task.taskId);
3743 } catch (RemoteException e) {
3744 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003745 mService.mRecentTasks.remove(task);
3746 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08003747
3748 if (mTaskHistory.isEmpty()) {
3749 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
3750 if (isOnHomeDisplay()) {
3751 mStackSupervisor.moveHomeStack(!isHomeStack());
3752 }
Craig Mautner593a4e62014-01-15 17:55:51 -08003753 if (mStacks != null) {
3754 mStacks.remove(this);
3755 mStacks.add(0, this);
3756 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08003757 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003758 }
3759
Dianne Hackborn91097de2014-04-04 18:02:06 -07003760 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
3761 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
3762 boolean toTop) {
3763 TaskRecord task = new TaskRecord(taskId, info, intent, voiceSession, voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07003764 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003765 return task;
3766 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08003767
3768 ArrayList<TaskRecord> getAllTasks() {
3769 return new ArrayList<TaskRecord>(mTaskHistory);
3770 }
3771
Dianne Hackbornc03c9162014-05-02 10:45:59 -07003772 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08003773 task.stack = this;
3774 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003775 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08003776 } else {
3777 mTaskHistory.add(0, task);
3778 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07003779 if (!moving && task.voiceSession != null) {
3780 try {
3781 task.voiceSession.taskStarted(task.intent, task.taskId);
3782 } catch (RemoteException e) {
3783 }
3784 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08003785 }
3786
3787 public int getStackId() {
3788 return mStackId;
3789 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003790
3791 @Override
3792 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07003793 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
3794 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07003795 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003796}