blob: 95eed1b0753142ec32dbdb63a7dadebc290e4da0 [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;
Craig Mautner6335fbc2014-06-13 17:18:47 -070035import static com.android.server.am.ActivityStackSupervisor.DEBUG_CONTAINERS;
Craig Mautner0eea92c2013-05-16 13:35:39 -070036import static com.android.server.am.ActivityStackSupervisor.DEBUG_SAVED_STATE;
37import static com.android.server.am.ActivityStackSupervisor.DEBUG_STATES;
Craig Mautnerde4ef022013-04-07 19:01:33 -070038import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
39
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070040import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070041import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080042import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080043import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080044import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080045import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070046import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070047
48import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070049import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070050import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070051import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080052import android.app.IActivityController;
Craig Mautnercae015f2013-02-08 14:31:27 -080053import android.app.IThumbnailReceiver;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080055import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070057import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070060import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080061import android.content.res.Resources;
62import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080063import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070064import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070065import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080066import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.os.Handler;
68import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090069import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070070import android.os.Message;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070071import android.os.RemoteException;
72import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080073import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070074import android.os.UserHandle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070075import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070076import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070077import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078
Craig Mautnercae015f2013-02-08 14:31:27 -080079import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080080import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070081import java.lang.ref.WeakReference;
82import java.util.ArrayList;
83import java.util.Iterator;
84import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080085import java.util.Objects;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
87/**
88 * State and management of a single stack of activities.
89 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070090final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080091
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -070092 // Ticks during which we check progress while waiting for an app to launch.
93 static final int LAUNCH_TICK = 500;
94
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070095 // How long we wait until giving up on the last activity to pause. This
96 // is short because it directly impacts the responsiveness of starting the
97 // next activity.
98 static final int PAUSE_TIMEOUT = 500;
99
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700100 // How long we wait for the activity to tell us it has stopped before
101 // giving up. This is a good amount of time because we really need this
102 // from the application in order to get its saved state.
103 static final int STOP_TIMEOUT = 10*1000;
104
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700105 // How long we wait until giving up on an activity telling us it has
106 // finished destroying itself.
107 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800108
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700109 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800110 // disabled.
111 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800112
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700113 // How long between activity launches that we consider safe to not warn
114 // the user about an unexpected activity being launched on top.
115 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800116
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700117 // Set to false to disable the preview that is shown while a new activity
118 // is being started.
119 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800120
Craig Mautner5eda9b32013-07-02 11:58:16 -0700121 // How long to wait for all background Activities to redraw following a call to
122 // convertToTranslucent().
123 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
124
John Reck172e87c2013-10-02 16:55:16 -0700125 static final boolean SCREENSHOT_FORCE_565 = ActivityManager
126 .isLowRamDeviceStatic() ? true : false;
127
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700128 enum ActivityState {
129 INITIALIZING,
130 RESUMED,
131 PAUSING,
132 PAUSED,
133 STOPPING,
134 STOPPED,
135 FINISHING,
136 DESTROYING,
137 DESTROYED
138 }
139
140 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700141 final WindowManagerService mWindowManager;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800142
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700143 /**
144 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800145 * running) activities. It contains #TaskRecord objects.
146 */
147 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
148
149 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800150 * Used for validating app tokens with window manager.
151 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800152 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800153
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700154 /**
155 * List of running activities, sorted by recent usage.
156 * The first entry in the list is the least recently used.
157 * It contains HistoryRecord objects.
158 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700159 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700160
161 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700162 * Animations that for the current transition have requested not to
163 * be considered for the transition animation.
164 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700165 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700166
167 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700168 * When we are in the process of pausing an activity, before starting the
169 * next one, this variable holds the activity that is currently being paused.
170 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800171 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700172
173 /**
174 * This is the last activity that we put into the paused state. This is
175 * used to determine if we need to do an activity transition while sleeping,
176 * when we normally hold the top activity paused.
177 */
178 ActivityRecord mLastPausedActivity = null;
179
180 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700181 * Activities that specify No History must be removed once the user navigates away from them.
182 * If the device goes to sleep with such an activity in the paused state then we save it here
183 * and finish it later if another activity replaces it on wakeup.
184 */
185 ActivityRecord mLastNoHistoryActivity = null;
186
187 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700188 * Current activity that is resumed, or null if there is none.
189 */
190 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800191
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700192 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700193 * This is the last activity that has been started. It is only used to
194 * identify when multiple activities are started at once so that the user
195 * can be warned they may not be in the activity they think they are.
196 */
197 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800198
Craig Mautner5eda9b32013-07-02 11:58:16 -0700199 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
200 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
201 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
202 // Activity in mTranslucentActivityWaiting is notified via
203 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
204 // background activity being drawn then the same call will be made with a true value.
205 ActivityRecord mTranslucentActivityWaiting = null;
206 ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
207 new ArrayList<ActivityRecord>();
208
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700209 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700210 * Set when we know we are going to be calling updateConfiguration()
211 * soon, so want to skip intermediate config checks.
212 */
213 boolean mConfigWillChange;
214
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700215 long mLaunchStartTime = 0;
216 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800217
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800218 /**
Craig Mautnerb12428a2012-12-20 16:07:06 -0800219 * Save the most recent screenshot for reuse. This keeps Recents from taking two identical
220 * screenshots, one for the Recents thumbnail and one for the pauseActivity thumbnail.
221 */
222 private ActivityRecord mLastScreenshotActivity = null;
223 private Bitmap mLastScreenshotBitmap = null;
224
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800225 int mThumbnailWidth = -1;
226 int mThumbnailHeight = -1;
227
Craig Mautner858d8a62013-04-23 17:08:34 -0700228 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700229
Craig Mautnerc00204b2013-03-05 15:02:14 -0800230 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800231 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800232 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
233 ArrayList<ActivityStack> mStacks;
234 /** The attached Display's unique identifier, or -1 if detached */
235 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800236
Craig Mautner27084302013-03-25 08:05:25 -0700237 /** Run all ActivityStacks through this */
238 final ActivityStackSupervisor mStackSupervisor;
239
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700240 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700241 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
242 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
243 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
244 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700245 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700246
247 static class ScheduleDestroyArgs {
248 final ProcessRecord mOwner;
249 final boolean mOomAdj;
250 final String mReason;
251 ScheduleDestroyArgs(ProcessRecord owner, boolean oomAdj, String reason) {
252 mOwner = owner;
253 mOomAdj = oomAdj;
254 mReason = reason;
255 }
256 }
257
Zoran Marcetaf958b322012-08-09 20:27:12 +0900258 final Handler mHandler;
259
260 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700261 //public Handler() {
262 // if (localLOGV) Slog.v(TAG, "Handler started!");
263 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700264 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900265 super(looper);
266 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700267
Zoran Marcetaf958b322012-08-09 20:27:12 +0900268 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700269 public void handleMessage(Message msg) {
270 switch (msg.what) {
271 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800272 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700273 // We don't at this point know if the activity is fullscreen,
274 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800275 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700276 synchronized (mService) {
277 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700278 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700279 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700280 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800281 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700282 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700283 case LAUNCH_TICK_MSG: {
284 ActivityRecord r = (ActivityRecord)msg.obj;
285 synchronized (mService) {
286 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700287 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700288 }
289 }
290 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700291 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800292 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700293 // We don't at this point know if the activity is fullscreen,
294 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800295 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800296 synchronized (mService) {
297 activityDestroyedLocked(r != null ? r.appToken : null);
298 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700299 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700300 case STOP_TIMEOUT_MSG: {
301 ActivityRecord r = (ActivityRecord)msg.obj;
302 // We don't at this point know if the activity is fullscreen,
303 // so we need to be conservative and assume it isn't.
304 Slog.w(TAG, "Activity stop timeout for " + r);
305 synchronized (mService) {
306 if (r.isInHistory()) {
307 activityStoppedLocked(r, null, null, null);
308 }
309 }
310 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700311 case DESTROY_ACTIVITIES_MSG: {
312 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
313 synchronized (mService) {
314 destroyActivitiesLocked(args.mOwner, args.mOomAdj, args.mReason);
315 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700316 } break;
317 case TRANSLUCENT_TIMEOUT_MSG: {
318 synchronized (mService) {
319 notifyActivityDrawnLocked(null);
320 }
321 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700322 }
323 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800324 }
325
Craig Mautner34b73df2014-01-12 21:11:08 -0800326 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800327 int count = 0;
328 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
329 count += mTaskHistory.get(taskNdx).mActivities.size();
330 }
331 return count;
332 }
333
Craig Mautner4a1cb222013-12-04 16:14:06 -0800334 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer) {
335 mActivityContainer = activityContainer;
336 mStackSupervisor = activityContainer.getOuter();
337 mService = mStackSupervisor.mService;
338 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
339 mWindowManager = mService.mWindowManager;
340 mStackId = activityContainer.mStackId;
341 mCurrentUser = mService.mCurrentUserId;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700342 }
Craig Mautner5962b122012-10-05 14:45:52 -0700343
Craig Mautner6b74cb52013-09-27 17:02:21 -0700344 boolean okToShow(ActivityRecord r) {
Craig Mautner5962b122012-10-05 14:45:52 -0700345 return r.userId == mCurrentUser
346 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
347 }
348
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700349 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800350 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700351 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
352 if (r != null) {
353 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800354 }
355 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700356 return null;
357 }
358
359 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800360 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
361 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800362 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800363 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
364 ActivityRecord r = activities.get(activityNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800365 if (!r.finishing && !r.delayedResume && r != notTop && okToShow(r)) {
366 return r;
367 }
368 }
369 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700370 return null;
371 }
372
373 /**
374 * This is a simplified version of topRunningActivityLocked that provides a number of
375 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800376 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700377 * @param token If non-null, any history records matching this token will be skipped.
378 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800379 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700380 * @return Returns the HistoryRecord of the next activity on the stack.
381 */
382 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800383 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
384 TaskRecord task = mTaskHistory.get(taskNdx);
385 if (task.taskId == taskId) {
386 continue;
387 }
388 ArrayList<ActivityRecord> activities = task.mActivities;
389 for (int i = activities.size() - 1; i >= 0; --i) {
390 final ActivityRecord r = activities.get(i);
391 // Note: the taskId check depends on real taskId fields being non-zero
392 if (!r.finishing && (token != r.appToken) && okToShow(r)) {
393 return r;
394 }
395 }
396 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700397 return null;
398 }
399
Craig Mautner8849a5e2013-04-02 16:41:03 -0700400 final ActivityRecord topActivity() {
401 // Iterate to find the first non-empty task stack. Note that this code can
Craig Mautnerde4ef022013-04-07 19:01:33 -0700402 // be simplified once we stop storing tasks with empty mActivities lists.
Craig Mautner8849a5e2013-04-02 16:41:03 -0700403 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
404 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
405 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700406 return activities.get(activityNdx);
Craig Mautner8849a5e2013-04-02 16:41:03 -0700407 }
408 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700409 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700410 }
411
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700412 final TaskRecord topTask() {
413 final int size = mTaskHistory.size();
414 if (size > 0) {
415 return mTaskHistory.get(size - 1);
416 }
417 return null;
418 }
419
Craig Mautnerd2328952013-03-05 12:46:26 -0800420 TaskRecord taskForIdLocked(int id) {
421 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
422 final TaskRecord task = mTaskHistory.get(taskNdx);
423 if (task.taskId == id) {
424 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800425 }
426 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700427 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700428 }
429
Craig Mautnerd2328952013-03-05 12:46:26 -0800430 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800431 final ActivityRecord r = ActivityRecord.forToken(token);
Craig Mautnerd2328952013-03-05 12:46:26 -0800432 if (r != null) {
433 final TaskRecord task = r.task;
434 if (task.mActivities.contains(r) && mTaskHistory.contains(task)) {
435 if (task.stack != this) Slog.w(TAG,
436 "Illegal state! task does not point to stack it is in.");
437 return r;
438 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800439 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800440 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800441 }
442
Craig Mautner2420ead2013-04-01 17:13:20 -0700443 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700444 final boolean hadit = mLRUActivities.remove(r);
445 mLRUActivities.add(r);
446 return hadit;
447 }
448
Craig Mautnerde4ef022013-04-07 19:01:33 -0700449 final boolean isHomeStack() {
450 return mStackId == HOME_STACK_ID;
451 }
452
Craig Mautnere0a38842013-12-16 16:14:02 -0800453 final boolean isOnHomeDisplay() {
454 return isAttached() &&
455 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
456 }
457
458 final void moveToFront() {
459 if (isAttached()) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800460 if (isOnHomeDisplay()) {
461 mStackSupervisor.moveHomeStack(isHomeStack());
462 }
Craig Mautnerfefeef82014-01-10 08:40:23 -0800463 mStacks.remove(this);
464 mStacks.add(this);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800465 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800466 }
467
468 final boolean isAttached() {
469 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800470 }
471
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700472 /**
473 * Returns the top activity in any existing task matching the given
474 * Intent. Returns null if no such task is found.
475 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700476 ActivityRecord findTaskLocked(ActivityRecord target) {
477 Intent intent = target.intent;
478 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700479 ComponentName cls = intent.getComponent();
480 if (info.targetActivity != null) {
481 cls = new ComponentName(info.packageName, info.targetActivity);
482 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700483 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautner000f0022013-02-26 15:04:29 -0800484
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700485 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800486 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
487 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700488 if (task.userId != userId) {
489 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700490 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700491 continue;
492 }
Craig Mautner000f0022013-02-26 15:04:29 -0800493 final ActivityRecord r = task.getTopActivity();
494 if (r == null || r.finishing || r.userId != userId ||
495 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700496 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800497 continue;
498 }
499
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700500 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
501 + r.task.intent.getComponent().flattenToShortString()
502 + "/aff=" + r.task.affinity + " to new cls="
503 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Craig Mautner000f0022013-02-26 15:04:29 -0800504 if (task.affinity != null) {
505 if (task.affinity.equals(info.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700506 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700507 return r;
508 }
Craig Mautner000f0022013-02-26 15:04:29 -0800509 } else if (task.intent != null && task.intent.getComponent().equals(cls)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700510 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800511 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700512 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
513 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800514 return r;
515 } else if (task.affinityIntent != null
516 && task.affinityIntent.getComponent().equals(cls)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700517 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800518 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700519 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
520 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800521 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700522 } else if (DEBUG_TASKS) {
523 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700524 }
525 }
526
527 return null;
528 }
529
530 /**
531 * Returns the first activity (starting from the top of the stack) that
532 * is the same as the given activity. Returns null if no such activity
533 * is found.
534 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700535 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700536 ComponentName cls = intent.getComponent();
537 if (info.targetActivity != null) {
538 cls = new ComponentName(info.packageName, info.targetActivity);
539 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700540 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700541
Craig Mautner000f0022013-02-26 15:04:29 -0800542 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700543 TaskRecord task = mTaskHistory.get(taskNdx);
544 if (task.userId != mCurrentUser) {
545 return null;
546 }
547 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800548 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
549 ActivityRecord r = activities.get(activityNdx);
550 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700551 //Slog.i(TAG, "Found matching class!");
552 //dump();
553 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
554 return r;
555 }
556 }
557 }
558
559 return null;
560 }
561
Amith Yamasani742a6712011-05-04 14:49:28 -0700562 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700563 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700564 */
Craig Mautner93529a42013-10-04 15:03:13 -0700565 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800566 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700567 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800568 }
569 mCurrentUser = userId;
570
571 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800572 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800573 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700574 TaskRecord task = mTaskHistory.get(i);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800575 if (task.userId == userId) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700576 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
577 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800578 mTaskHistory.remove(i);
579 mTaskHistory.add(task);
580 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800581 // Use same value for i.
582 } else {
583 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800584 }
585 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700586 if (VALIDATE_TOKENS) {
587 validateAppTokensLocked();
588 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700589 }
590
Craig Mautner2420ead2013-04-01 17:13:20 -0700591 void minimalResumeActivityLocked(ActivityRecord r) {
592 r.state = ActivityState.RESUMED;
593 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
594 + " (starting new instance)");
595 r.stopped = false;
596 mResumedActivity = r;
597 r.task.touchActiveTime();
598 mService.addRecentTaskLocked(r.task);
599 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700600 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700601 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700602 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700603 }
604
Dianne Hackborncee04b52013-07-03 17:01:28 -0700605 private void startLaunchTraces() {
606 if (mFullyDrawnStartTime != 0) {
607 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
608 }
609 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
610 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
611 }
612
613 private void stopFullyDrawnTraceIfNeeded() {
614 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
615 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
616 mFullyDrawnStartTime = 0;
617 }
618 }
619
Craig Mautnere79d42682013-04-01 19:01:53 -0700620 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700621 if (r.displayStartTime == 0) {
622 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
623 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700624 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700625 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700626 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700627 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700628 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700629 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700630 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700631 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800632
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700633 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700634 // Make sure that there is no activity waiting for this to launch.
635 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
636 r.displayStartTime = r.fullyDrawnStartTime = 0;
637 } else {
638 mStackSupervisor.removeTimeoutsForActivityLocked(r);
639 mStackSupervisor.scheduleIdleTimeoutLocked(r);
640 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700641 }
642
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800643 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800644 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800645 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
646 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
647 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
648 activities.get(activityNdx).setSleeping(false);
649 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800650 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800651 }
652
Craig Mautner0eea92c2013-05-16 13:35:39 -0700653 /**
654 * @return true if something must be done before going to sleep.
655 */
656 boolean checkReadyForSleepLocked() {
657 if (mResumedActivity != null) {
658 // Still have something resumed; can't sleep until it is paused.
659 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
660 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
661 startPausingLocked(false, true);
662 return true;
663 }
664 if (mPausingActivity != null) {
665 // Still waiting for something to pause; can't sleep yet.
666 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
667 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800668 }
669
Craig Mautner0eea92c2013-05-16 13:35:39 -0700670 return false;
671 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800672
Craig Mautner0eea92c2013-05-16 13:35:39 -0700673 void goToSleep() {
674 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800675
Craig Mautner0eea92c2013-05-16 13:35:39 -0700676 // Make sure any stopped but visible activities are now sleeping.
677 // This ensures that the activity's onStop() is called.
678 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
679 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
680 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
681 final ActivityRecord r = activities.get(activityNdx);
682 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
683 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800684 }
685 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800686 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700687 }
Craig Mautner59c00972012-07-30 12:10:24 -0700688
Dianne Hackbornd2835932010-12-13 16:28:46 -0800689 public final Bitmap screenshotActivities(ActivityRecord who) {
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800690 if (who.noDisplay) {
691 return null;
692 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800693
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700694 TaskRecord tr = who.task;
Craig Mautner34740402013-10-11 11:05:35 -0700695 if (mService.getMostRecentTask() != tr && tr.intent != null &&
696 (tr.intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) != 0) {
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700697 // If this task is being excluded from recents, we don't want to take
698 // the expense of capturing a thumbnail, since we will never show it.
699 return null;
700 }
701
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800702 Resources res = mService.mContext.getResources();
703 int w = mThumbnailWidth;
704 int h = mThumbnailHeight;
705 if (w < 0) {
706 mThumbnailWidth = w =
707 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_width);
708 mThumbnailHeight = h =
709 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_height);
710 }
711
712 if (w > 0) {
Craig Mautnerb12428a2012-12-20 16:07:06 -0800713 if (who != mLastScreenshotActivity || mLastScreenshotBitmap == null
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700714 || mLastScreenshotActivity.state == ActivityState.RESUMED
Craig Mautnerb12428a2012-12-20 16:07:06 -0800715 || mLastScreenshotBitmap.getWidth() != w
716 || mLastScreenshotBitmap.getHeight() != h) {
717 mLastScreenshotActivity = who;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700718 mLastScreenshotBitmap = mWindowManager.screenshotApplications(
John Reck172e87c2013-10-02 16:55:16 -0700719 who.appToken, Display.DEFAULT_DISPLAY, w, h, SCREENSHOT_FORCE_565);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800720 }
721 if (mLastScreenshotBitmap != null) {
John Reck172e87c2013-10-02 16:55:16 -0700722 return mLastScreenshotBitmap.copy(mLastScreenshotBitmap.getConfig(), true);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800723 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800724 }
725 return null;
726 }
727
Craig Mautnercf910b02013-04-23 11:23:27 -0700728 final void startPausingLocked(boolean userLeaving, boolean uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800729 if (mPausingActivity != null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800730 Slog.e(TAG, "Trying to pause when pause is already pending for "
Craig Mautnere11f2b72013-04-01 12:37:17 -0700731 + mPausingActivity, new RuntimeException("here").fillInStackTrace());
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800732 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700733 ActivityRecord prev = mResumedActivity;
734 if (prev == null) {
Craig Mautnere11f2b72013-04-01 12:37:17 -0700735 Slog.e(TAG, "Trying to pause when nothing is resumed",
736 new RuntimeException("here").fillInStackTrace());
Craig Mautner05d29032013-05-03 13:40:13 -0700737 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700738 return;
739 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800740
741 if (mActivityContainer.mParentActivity == null) {
742 // Top level stack, not a child. Look for child stacks.
743 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping);
744 }
745
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700746 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
747 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700748 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800749 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700750 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700751 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
752 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700753 prev.state = ActivityState.PAUSING;
754 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700755 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700756 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Michael Kolb5f6238e2014-07-09 16:02:49 -0700757 if (mService.mHasRecents && (next == null || next.task != prev.task)) {
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700758 prev.updateThumbnail(screenshotActivities(prev), null);
759 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700760 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700761
762 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800763
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700764 if (prev.app != null && prev.app.thread != null) {
765 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
766 try {
767 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700768 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700769 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700770 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800771 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
772 userLeaving, prev.configChangeFlags);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700773 } catch (Exception e) {
774 // Ignore exception, if process died other code will cleanup.
775 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800776 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700777 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700778 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700779 }
780 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800781 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700782 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700783 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700784 }
785
786 // If we are not going to sleep, we want to ensure the device is
787 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700788 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700789 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700790 }
791
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800792 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700793 // Have the window manager pause its key dispatching until the new
794 // activity has started. If we're pausing the activity just because
795 // the screen is being turned off and the UI is sleeping, don't interrupt
796 // key dispatch; the same activity will pick it up again on wakeup.
797 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800798 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700799 } else {
800 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
801 }
802
803 // Schedule a pause timeout in case the app doesn't respond.
804 // We don't give it much time because this directly impacts the
805 // responsiveness seen by the user.
806 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
807 msg.obj = prev;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700808 prev.pauseTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700809 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
810 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
811 } else {
812 // This activity failed to schedule the
813 // pause, so just treat it as being paused now.
814 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700815 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700816 }
817 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700818
Craig Mautnerd2328952013-03-05 12:46:26 -0800819 final void activityPausedLocked(IBinder token, boolean timeout) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700820 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800821 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700822
Craig Mautnerd2328952013-03-05 12:46:26 -0800823 final ActivityRecord r = isInStackLocked(token);
824 if (r != null) {
825 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
826 if (mPausingActivity == r) {
827 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
828 + (timeout ? " (due to timeout)" : " (pause complete)"));
829 r.state = ActivityState.PAUSED;
830 completePauseLocked();
831 } else {
832 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
833 r.userId, System.identityHashCode(r), r.shortComponentName,
834 mPausingActivity != null
835 ? mPausingActivity.shortComponentName : "(none)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700836 }
837 }
838 }
839
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700840 final void activityStoppedLocked(ActivityRecord r, Bundle icicle, Bitmap thumbnail,
841 CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700842 if (r.state != ActivityState.STOPPING) {
843 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
844 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
845 return;
846 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700847 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700848 if (icicle != null) {
849 // If icicle is null, this is happening due to a timeout, so we
850 // haven't really saved the state.
851 r.icicle = icicle;
852 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800853 r.launchCount = 0;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700854 r.updateThumbnail(thumbnail, description);
855 }
856 if (!r.stopped) {
857 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
858 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
859 r.stopped = true;
860 r.state = ActivityState.STOPPED;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700861 if (r.finishing) {
862 r.clearOptionsLocked();
863 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700864 if (r.configDestroy) {
865 destroyActivityLocked(r, true, false, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700866 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700867 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700868 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800869 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700870 }
871 }
872 }
873
Craig Mautnerc8143c62013-09-03 12:15:57 -0700874 private void completePauseLocked() {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800875 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700876 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800877
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800878 if (prev != null) {
879 if (prev.finishing) {
880 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700881 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800882 } else if (prev.app != null) {
883 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
884 if (prev.waitingVisible) {
885 prev.waitingVisible = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700886 mStackSupervisor.mWaitingVisibleActivities.remove(prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800887 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
888 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800889 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800890 if (prev.configDestroy) {
891 // The previous is being paused because the configuration
892 // is changing, which means it is actually stopping...
893 // To juggle the fact that we are also starting a new
894 // instance right now, we need to first completely stop
895 // the current instance before starting the new one.
896 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
897 destroyActivityLocked(prev, true, false, "pause-config");
898 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700899 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700900 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
901 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800902 // If we already have a few activities waiting to stop,
903 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700904 // them out. Or if r is the last of activity of the last task the stack
905 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800906 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700907 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800908 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700909 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800910 }
911 }
912 } else {
913 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
914 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800915 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800916 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700917 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800918
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700919 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
Craig Mautnere11f2b72013-04-01 12:37:17 -0700920 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner05d29032013-05-03 13:40:13 -0700921 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800922 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700923 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700924 ActivityRecord top = topStack.topRunningActivityLocked(null);
Dianne Hackborncc5a0552012-10-01 16:32:39 -0700925 if (top == null || (prev != null && top != prev)) {
926 // If there are no more activities available to run,
927 // do resume anyway to start something. Also if the top
928 // activity on the stack is not the just paused activity,
929 // we need to go ahead and resume it to ensure we complete
930 // an in-flight app switch.
Craig Mautner05d29032013-05-03 13:40:13 -0700931 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700932 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700933 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800934
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800935 if (prev != null) {
936 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700937
Craig Mautner525f3d92013-05-07 14:01:50 -0700938 if (prev.app != null && prev.cpuTimeAtResume > 0
939 && mService.mBatteryStatsService.isOnBattery()) {
940 long diff;
Dianne Hackbornd2932242013-08-05 18:18:42 -0700941 synchronized (mService.mProcessCpuThread) {
942 diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
Craig Mautner525f3d92013-05-07 14:01:50 -0700943 - prev.cpuTimeAtResume;
944 }
945 if (diff > 0) {
946 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
947 synchronized (bsi) {
948 BatteryStatsImpl.Uid.Proc ps =
949 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -0700950 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -0700951 if (ps != null) {
952 ps.addForegroundTimeLocked(diff);
953 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700954 }
955 }
956 }
Craig Mautner525f3d92013-05-07 14:01:50 -0700957 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700958 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700959 }
960
961 /**
962 * Once we know that we have asked an application to put an activity in
963 * the resumed state (either by launching it or explicitly telling it),
964 * this function updates the rest of our state to match that fact.
965 */
Craig Mautner525f3d92013-05-07 14:01:50 -0700966 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700967 next.idle = false;
968 next.results = null;
969 next.newIntents = null;
Craig Mautner07566322013-09-26 16:42:55 -0700970 if (next.nowVisible) {
971 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
972 mStackSupervisor.dismissKeyguard();
973 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700974
975 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -0700976 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700977
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700978 mStackSupervisor.reportResumedActivityLocked(next);
979
980 next.resumeKeyDispatchingLocked();
981 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700982
983 // Mark the point when the activity is resuming
984 // TODO: To be more accurate, the mark should be before the onCreate,
985 // not after the onResume. But for subsequent starts, onResume is fine.
986 if (next.app != null) {
Dianne Hackbornd2932242013-08-05 18:18:42 -0700987 synchronized (mService.mProcessCpuThread) {
988 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700989 }
990 } else {
991 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
992 }
993 }
994
Craig Mautner580ea812013-04-25 12:58:38 -0700995 /**
Craig Mautner39e1c5a2013-10-23 15:14:22 -0700996 * Determine if home should be visible below the passed record.
997 * @param record activity we are querying for.
998 * @return true if home is visible below the passed activity, false otherwise.
999 */
1000 boolean isActivityOverHome(ActivityRecord record) {
1001 // Start at record and go down, look for either home or a visible fullscreen activity.
1002 final TaskRecord recordTask = record.task;
1003 for (int taskNdx = mTaskHistory.indexOf(recordTask); taskNdx >= 0; --taskNdx) {
1004 TaskRecord task = mTaskHistory.get(taskNdx);
1005 final ArrayList<ActivityRecord> activities = task.mActivities;
1006 final int startNdx =
1007 task == recordTask ? activities.indexOf(record) : activities.size() - 1;
1008 for (int activityNdx = startNdx; activityNdx >= 0; --activityNdx) {
1009 final ActivityRecord r = activities.get(activityNdx);
1010 if (r.isHomeActivity()) {
1011 return true;
1012 }
Craig Mautner76be9d22013-11-04 16:01:22 -08001013 if (!r.finishing && r.fullscreen) {
1014 // Passed activity is over a fullscreen activity.
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001015 return false;
1016 }
1017 }
1018 if (task.mOnTopOfHome) {
1019 // Got to the bottom of a task on top of home without finding a visible fullscreen
1020 // activity. Home is visible.
1021 return true;
1022 }
1023 }
1024 // Got to the bottom of this stack and still don't know. If this is over the home stack
1025 // then record is over home. May not work if we ever get more than two layers.
1026 return mStackSupervisor.isFrontStack(this);
1027 }
1028
Craig Mautnere3a00d72014-04-16 08:31:19 -07001029 private void setVisibile(ActivityRecord r, boolean visible) {
1030 r.visible = visible;
1031 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001032 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001033 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001034 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001035 container.setVisible(visible);
1036 }
1037 }
1038
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001039 /**
Craig Mautner580ea812013-04-25 12:58:38 -07001040 * Version of ensureActivitiesVisible that can easily be called anywhere.
1041 */
1042 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1043 return ensureActivitiesVisibleLocked(starting, configChanges, false);
1044 }
1045
1046 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1047 boolean forceHomeShown) {
1048 ActivityRecord r = topRunningActivityLocked(null);
Craig Mautner525f3d92013-05-07 14:01:50 -07001049 return r != null &&
1050 ensureActivitiesVisibleLocked(r, starting, null, configChanges, forceHomeShown);
Craig Mautner580ea812013-04-25 12:58:38 -07001051 }
1052
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001053 /**
1054 * Make sure that all activities that need to be visible (that is, they
1055 * currently can be seen by the user) actually are.
1056 */
Craig Mautner580ea812013-04-25 12:58:38 -07001057 final boolean ensureActivitiesVisibleLocked(ActivityRecord top, ActivityRecord starting,
1058 String onlyThisProcess, int configChanges, boolean forceHomeShown) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001059 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001060 TAG, "ensureActivitiesVisible behind " + top
1061 + " configChanges=0x" + Integer.toHexString(configChanges));
1062
Craig Mautner5eda9b32013-07-02 11:58:16 -07001063 if (mTranslucentActivityWaiting != top) {
1064 mUndrawnActivitiesBelowTopTranslucent.clear();
1065 if (mTranslucentActivityWaiting != null) {
1066 // Call the callback with a timeout indication.
1067 notifyActivityDrawnLocked(null);
1068 mTranslucentActivityWaiting = null;
1069 }
1070 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1071 }
1072
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001073 // If the top activity is not fullscreen, then we need to
1074 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001075 boolean aboveTop = true;
Craig Mautner580ea812013-04-25 12:58:38 -07001076 boolean showHomeBehindStack = false;
1077 boolean behindFullscreen = !mStackSupervisor.isFrontStack(this) &&
1078 !(forceHomeShown && isHomeStack());
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001079 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001080 final TaskRecord task = mTaskHistory.get(taskNdx);
1081 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001082 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1083 final ActivityRecord r = activities.get(activityNdx);
1084 if (r.finishing) {
1085 continue;
1086 }
1087 if (aboveTop && r != top) {
1088 continue;
1089 }
1090 aboveTop = false;
1091 if (!behindFullscreen) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001092 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001093 TAG, "Make visible? " + r + " finishing=" + r.finishing
1094 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001095
Craig Mautnerd44711d2013-02-23 11:24:36 -08001096 final boolean doThisProcess = onlyThisProcess == null
1097 || onlyThisProcess.equals(r.processName);
1098
1099 // First: if this is not the current activity being started, make
1100 // sure it matches the current configuration.
1101 if (r != starting && doThisProcess) {
1102 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001103 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001104
1105 if (r.app == null || r.app.thread == null) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001106 if (onlyThisProcess == null || onlyThisProcess.equals(r.processName)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001107 // This activity needs to be visible, but isn't even
1108 // running... get it started, but don't resume it
1109 // at this point.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001110 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001111 if (r != starting) {
1112 r.startFreezingScreenLocked(r.app, configChanges);
1113 }
1114 if (!r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001115 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001116 TAG, "Starting and making visible: " + r);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001117 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001118 }
1119 if (r != starting) {
Craig Mautnere79d42682013-04-01 19:01:53 -07001120 mStackSupervisor.startSpecificActivityLocked(r, false, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001121 }
1122 }
1123
1124 } else if (r.visible) {
1125 // If this activity is already visible, then there is nothing
1126 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001127 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001128 r.stopFreezingScreenLocked(false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001129
1130 } else if (onlyThisProcess == null) {
1131 // This activity is not currently visible, but is running.
1132 // Tell it to become visible.
1133 r.visible = true;
1134 if (r.state != ActivityState.RESUMED && r != starting) {
1135 // If this activity is paused, tell it
1136 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001137 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001138 TAG, "Making visible and scheduling visibility: " + r);
1139 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001140 if (mTranslucentActivityWaiting != null) {
1141 mUndrawnActivitiesBelowTopTranslucent.add(r);
1142 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001143 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001144 r.sleeping = false;
1145 r.app.pendingUiClean = true;
1146 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1147 r.stopFreezingScreenLocked(false);
1148 } catch (Exception e) {
1149 // Just skip on any failure; we'll make it
1150 // visible when it next restarts.
1151 Slog.w(TAG, "Exception thrown making visibile: "
1152 + r.intent.getComponent(), e);
1153 }
1154 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001155 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001156
Craig Mautnerd44711d2013-02-23 11:24:36 -08001157 // Aggregate current change flags.
1158 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001159
Craig Mautnerd44711d2013-02-23 11:24:36 -08001160 if (r.fullscreen) {
1161 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001162 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1163 behindFullscreen = true;
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001164 } else if (isActivityOverHome(r)) {
1165 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
1166 showHomeBehindStack = true;
riddle_hsu446ef1d2014-01-09 20:24:34 +08001167 behindFullscreen = !isHomeStack() && r.frontOfTask && task.mOnTopOfHome;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001168 }
1169 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001170 if (DEBUG_VISBILITY) Slog.v(
1171 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1172 + " state=" + r.state
1173 + " behindFullscreen=" + behindFullscreen);
1174 // Now for any activities that aren't visible to the user, make
1175 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001176 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001177 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001178 try {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001179 setVisibile(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001180 switch (r.state) {
1181 case STOPPING:
1182 case STOPPED:
1183 if (r.app != null && r.app.thread != null) {
1184 if (DEBUG_VISBILITY) Slog.v(
1185 TAG, "Scheduling invisibility: " + r);
1186 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1187 }
1188 break;
1189
1190 case INITIALIZING:
1191 case RESUMED:
1192 case PAUSING:
1193 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001194 // This case created for transitioning activities from
1195 // translucent to opaque {@link Activity#convertToOpaque}.
Craig Mautnere5273b42013-09-09 12:57:47 -07001196 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1197 mStackSupervisor.mStoppingActivities.add(r);
1198 }
1199 mStackSupervisor.scheduleIdleLocked();
Craig Mautner4addfc52013-06-25 08:05:45 -07001200 break;
1201
1202 default:
1203 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001204 }
1205 } catch (Exception e) {
1206 // Just skip on any failure; we'll make it
1207 // visible when it next restarts.
1208 Slog.w(TAG, "Exception thrown making hidden: "
1209 + r.intent.getComponent(), e);
1210 }
1211 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001212 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001213 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001214 }
1215 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001216 }
Craig Mautner580ea812013-04-25 12:58:38 -07001217 return showHomeBehindStack;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001218 }
Craig Mautner58547802013-03-05 08:23:53 -08001219
Craig Mautner5eda9b32013-07-02 11:58:16 -07001220 void convertToTranslucent(ActivityRecord r) {
1221 mTranslucentActivityWaiting = r;
1222 mUndrawnActivitiesBelowTopTranslucent.clear();
1223 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1224 }
1225
1226 /**
1227 * Called as activities below the top translucent activity are redrawn. When the last one is
1228 * redrawn notify the top activity by calling
1229 * {@link Activity#onTranslucentConversionComplete}.
1230 *
1231 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1232 * occurred and the activity will be notified immediately.
1233 */
1234 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001235 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001236 if ((r == null)
1237 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1238 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1239 // The last undrawn activity below the top has just been drawn. If there is an
1240 // opaque activity at the top, notify it that it can become translucent safely now.
1241 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1242 mTranslucentActivityWaiting = null;
1243 mUndrawnActivitiesBelowTopTranslucent.clear();
1244 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1245
Craig Mautner71dd1b62014-02-18 15:48:52 -08001246 if (waitingActivity != null) {
1247 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1248 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1249 try {
1250 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1251 waitingActivity.appToken, r != null);
1252 } catch (RemoteException e) {
1253 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001254 }
1255 }
1256 }
1257 }
1258
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001259 /**
1260 * Ensure that the top activity in the stack is resumed.
1261 *
1262 * @param prev The previously resumed activity, for when in the process
1263 * of pausing; can be null to call from elsewhere.
1264 *
1265 * @return Returns true if something is being resumed, or false if
1266 * nothing happened.
1267 */
1268 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001269 return resumeTopActivityLocked(prev, null);
1270 }
1271
1272 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001273 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1274
Craig Mautnerdf88d732014-01-27 09:21:32 -08001275 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001276 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautner6335fbc2014-06-13 17:18:47 -07001277 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001278 // Do not resume this stack if its parent is not resumed.
1279 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1280 return false;
1281 }
1282
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001283 // Find the first activity that is not finishing.
1284 ActivityRecord next = topRunningActivityLocked(null);
1285
1286 // Remember how we'll process this pause/resume situation, and ensure
1287 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001288 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1289 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001290
1291 if (next == null) {
1292 // There are no more activities! Let's just start up the
1293 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001294 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001295 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001296 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001297 // Only resume home if on home display
1298 return isOnHomeDisplay() && mStackSupervisor.resumeHomeActivity(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001299 }
1300
1301 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001302
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001303 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001304 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1305 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001306 // Make sure we have executed any pending transitions, since there
1307 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001308 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001309 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001310 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001311 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001312 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001313 return false;
1314 }
1315
Craig Mautner525f3d92013-05-07 14:01:50 -07001316 final TaskRecord nextTask = next.task;
1317 final TaskRecord prevTask = prev != null ? prev.task : null;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001318 if (prevTask != null && prevTask.mOnTopOfHome && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001319 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001320 if (prevTask == nextTask) {
Craig Mautner3b475fe2013-12-16 15:58:31 -08001321 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001322 } else if (prevTask != topTask()) {
Craig Mautnere418ecd2013-05-01 17:02:29 -07001323 // This task is going away but it was supposed to return to the home task.
1324 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001325 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001326 mTaskHistory.get(taskNdx).mOnTopOfHome = true;
Craig Mautnere418ecd2013-05-01 17:02:29 -07001327 } else {
Craig Mautnere0a38842013-12-16 16:14:02 -08001328 if (DEBUG_STATES && isOnHomeDisplay()) Slog.d(TAG,
1329 "resumeTopActivityLocked: Launching home next");
1330 // Only resume home if on home display
1331 return isOnHomeDisplay() && mStackSupervisor.resumeHomeActivity(prev);
Craig Mautnere418ecd2013-05-01 17:02:29 -07001332 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001333 }
1334
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001335 // If we are sleeping, and there is no resumed activity, and the top
1336 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001337 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001338 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001339 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001340 // Make sure we have executed any pending transitions, since there
1341 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001342 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001343 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001344 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001345 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001346 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001347 return false;
1348 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001349
1350 // Make sure that the user who owns this activity is started. If not,
1351 // we will just leave it as is because someone should be bringing
1352 // another user's activities to the top of the stack.
1353 if (mService.mStartedUsers.get(next.userId) == null) {
1354 Slog.w(TAG, "Skipping resume of top activity " + next
1355 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001356 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001357 return false;
1358 }
1359
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001360 // The activity may be waiting for stop, but that is no longer
1361 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001362 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001363 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001364 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001365 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001366
Dianne Hackborn84375872012-06-01 19:03:50 -07001367 next.updateOptionsLocked(options);
1368
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001369 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1370
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001371 // If we are currently pausing an activity, then don't do anything
1372 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001373 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001374 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1375 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001376 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001377 return false;
1378 }
1379
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001380 // Okay we are now going to start a switch, to 'next'. We may first
1381 // have to pause the current activity, but this is an important point
1382 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001383 // XXX "App Redirected" dialog is getting too many false positives
1384 // at this point, so turn off for now.
1385 if (false) {
1386 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1387 long now = SystemClock.uptimeMillis();
1388 final boolean inTime = mLastStartedActivity.startTime != 0
1389 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1390 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1391 final int nextUid = next.info.applicationInfo.uid;
1392 if (inTime && lastUid != nextUid
1393 && lastUid != next.launchedFromUid
1394 && mService.checkPermission(
1395 android.Manifest.permission.STOP_APP_SWITCHES,
1396 -1, next.launchedFromUid)
1397 != PackageManager.PERMISSION_GRANTED) {
1398 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1399 } else {
1400 next.startTime = now;
1401 mLastStartedActivity = next;
1402 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001403 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001404 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001405 mLastStartedActivity = next;
1406 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001407 }
Craig Mautner58547802013-03-05 08:23:53 -08001408
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001409 // We need to start pausing the current activity so the top one
1410 // can be resumed...
Craig Mautner5314a402013-09-26 12:40:16 -07001411 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving);
Craig Mautnereb957862013-04-24 15:34:32 -07001412 if (mResumedActivity != null) {
1413 pausing = true;
1414 startPausingLocked(userLeaving, false);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001415 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnereb957862013-04-24 15:34:32 -07001416 }
1417 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001418 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1419 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001420 // At this point we want to put the upcoming activity's process
1421 // at the top of the LRU list, since we know we will be needing it
1422 // very soon and it would be a waste to let it get killed if it
1423 // happens to be sitting towards the end.
1424 if (next.app != null && next.app.thread != null) {
1425 // No reason to do full oom adj update here; we'll let that
1426 // happen whenever it needs to later.
Dianne Hackborndb926082013-10-31 16:32:44 -07001427 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001428 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001429 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001430 return true;
1431 }
1432
Christopher Tated3f175c2012-06-14 14:16:54 -07001433 // If the most recent activity was noHistory but was only stopped rather
1434 // than stopped+finished because the device went to sleep, we need to make
1435 // sure to finish it as we're making a new activity topmost.
Craig Mautner0f922742013-08-06 08:44:42 -07001436 if (mService.mSleeping && mLastNoHistoryActivity != null &&
1437 !mLastNoHistoryActivity.finishing) {
1438 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1439 " on new resume");
1440 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
1441 null, "no-history", false);
1442 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001443 }
1444
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001445 if (prev != null && prev != next) {
1446 if (!prev.waitingVisible && next != null && !next.nowVisible) {
1447 prev.waitingVisible = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001448 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001449 if (DEBUG_SWITCH) Slog.v(
1450 TAG, "Resuming top, waiting visible to hide: " + prev);
1451 } else {
1452 // The next activity is already visible, so hide the previous
1453 // activity's windows right now so we can show the new one ASAP.
1454 // We only do this if the previous is finishing, which should mean
1455 // it is on top of the one being resumed so hiding it quickly
1456 // is good. Otherwise, we want to do the normal route of allowing
1457 // the resumed activity to be shown so we can decide if the
1458 // previous should actually be hidden depending on whether the
1459 // new one is found to be full-screen or not.
1460 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001461 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001462 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1463 + prev + ", waitingVisible="
1464 + (prev != null ? prev.waitingVisible : null)
1465 + ", nowVisible=" + next.nowVisible);
1466 } else {
1467 if (DEBUG_SWITCH) Slog.v(TAG, "Previous already visible but still waiting to hide: "
1468 + prev + ", waitingVisible="
1469 + (prev != null ? prev.waitingVisible : null)
1470 + ", nowVisible=" + next.nowVisible);
1471 }
1472 }
1473 }
1474
Dianne Hackborne7f97212011-02-24 14:40:20 -08001475 // Launching this app's activity, make sure the app is no longer
1476 // considered stopped.
1477 try {
1478 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001479 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001480 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001481 } catch (IllegalArgumentException e) {
1482 Slog.w(TAG, "Failed trying to unstop package "
1483 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001484 }
1485
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001486 // We are starting up the next activity, so tell the window manager
1487 // that the previous one will be hidden soon. This way it can know
1488 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001489 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001490 if (prev != null) {
1491 if (prev.finishing) {
1492 if (DEBUG_TRANSITION) Slog.v(TAG,
1493 "Prepare close transition: prev=" + prev);
1494 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001495 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001496 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001497 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001498 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001499 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1500 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001501 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001502 mWindowManager.setAppWillBeHidden(prev.appToken);
1503 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001504 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001505 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001506 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001507 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001508 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001509 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001510 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001511 ? AppTransition.TRANSIT_ACTIVITY_OPEN
1512 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001513 }
1514 }
1515 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001516 mWindowManager.setAppWillBeHidden(prev.appToken);
1517 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001518 }
Craig Mautner967212c2013-04-13 21:10:58 -07001519 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001520 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001521 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001522 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001523 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001524 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001525 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001526 }
1527 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001528 if (anim) {
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001529 next.applyOptionsLocked();
1530 } else {
1531 next.clearOptionsLocked();
1532 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001533
Craig Mautnercf910b02013-04-23 11:23:27 -07001534 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001535 if (next.app != null && next.app.thread != null) {
1536 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1537
1538 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001539 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001540
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001541 // schedule launch ticks to collect information about slow apps.
1542 next.startLaunchTickingLocked();
1543
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001544 ActivityRecord lastResumedActivity =
1545 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001546 ActivityState lastState = next.state;
1547
1548 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001549
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001550 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001551 next.state = ActivityState.RESUMED;
1552 mResumedActivity = next;
1553 next.task.touchActiveTime();
Craig Mautnerd2328952013-03-05 12:46:26 -08001554 mService.addRecentTaskLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001555 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001556 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001557 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001558
1559 // Have the window manager re-evaluate the orientation of
1560 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001561 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001562 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001563 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001564 mService.mConfiguration,
1565 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1566 if (config != null) {
1567 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001568 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001569 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001570 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001571
Craig Mautner525f3d92013-05-07 14:01:50 -07001572 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001573 // The configuration update wasn't able to keep the existing
1574 // instance of the activity, and instead started a new one.
1575 // We should be all done, but let's just make sure our activity
1576 // is still at the top and schedule another run if something
1577 // weird happened.
1578 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001579 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001580 "Activity config changed during resume: " + next
1581 + ", new next: " + nextNext);
1582 if (nextNext != next) {
1583 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001584 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001585 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001586 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001587 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001588 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001589 return true;
1590 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001591 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001592 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001593 }
Craig Mautner58547802013-03-05 08:23:53 -08001594
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001595 try {
1596 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001597 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001598 if (a != null) {
1599 final int N = a.size();
1600 if (!next.finishing && N > 0) {
1601 if (DEBUG_RESULTS) Slog.v(
1602 TAG, "Delivering results to " + next
1603 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001604 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001605 }
1606 }
1607
1608 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001609 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001610 }
1611
1612 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001613 next.userId, System.identityHashCode(next),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001614 next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001615
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001616 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001617 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001618 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001619 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
1620 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001621 mService.isNextTransitionForward());
Craig Mautner58547802013-03-05 08:23:53 -08001622
Craig Mautner0eea92c2013-05-16 13:35:39 -07001623 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001624
Craig Mautnerac6f8432013-07-17 13:24:59 -07001625 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001626 } catch (Exception e) {
1627 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001628 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1629 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001630 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001631 if (lastStack != null) {
1632 lastStack.mResumedActivity = lastResumedActivity;
1633 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001634 Slog.i(TAG, "Restarting because process died: " + next);
1635 if (!next.hasBeenLaunched) {
1636 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001637 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1638 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001639 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001640 next.appToken, next.packageName, next.theme,
1641 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001642 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1643 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001644 }
Craig Mautnere79d42682013-04-01 19:01:53 -07001645 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001646 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001647 return true;
1648 }
1649
1650 // From this point on, if something goes wrong there is no way
1651 // to recover the activity.
1652 try {
1653 next.visible = true;
1654 completeResumeLocked(next);
1655 } catch (Exception e) {
1656 // If any exception gets thrown, toss away this
1657 // activity and try the next one.
1658 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001659 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001660 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001661 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001662 return true;
1663 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001664 next.stopped = false;
1665
1666 } else {
1667 // Whoops, need to restart this activity!
1668 if (!next.hasBeenLaunched) {
1669 next.hasBeenLaunched = true;
1670 } else {
1671 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001672 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001673 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001674 mService.compatibilityInfoForPackageLocked(
1675 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001676 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001677 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001678 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001679 }
1680 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1681 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001682 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
Craig Mautnere79d42682013-04-01 19:01:53 -07001683 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001684 }
1685
Craig Mautnercf910b02013-04-23 11:23:27 -07001686 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001687 return true;
1688 }
1689
Craig Mautnerac6f8432013-07-17 13:24:59 -07001690 private void insertTaskAtTop(TaskRecord task) {
Craig Mautner9c85c202013-10-04 20:11:26 -07001691 // If this is being moved to the top by another activity or being launched from the home
1692 // activity, set mOnTopOfHome accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001693 if (isOnHomeDisplay()) {
1694 ActivityStack lastStack = mStackSupervisor.getLastStack();
1695 final boolean fromHome = lastStack.isHomeStack();
1696 if (!isHomeStack() && (fromHome || topTask() != task)) {
1697 task.mOnTopOfHome = fromHome;
1698 }
1699 } else {
1700 task.mOnTopOfHome = false;
Craig Mautner9c85c202013-10-04 20:11:26 -07001701 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001702
Craig Mautnerac6f8432013-07-17 13:24:59 -07001703 mTaskHistory.remove(task);
1704 // Now put task at top.
1705 int stackNdx = mTaskHistory.size();
1706 if (task.userId != mCurrentUser) {
1707 // Put non-current user tasks below current user tasks.
1708 while (--stackNdx >= 0) {
1709 if (mTaskHistory.get(stackNdx).userId != mCurrentUser) {
1710 break;
1711 }
1712 }
1713 ++stackNdx;
1714 }
1715 mTaskHistory.add(stackNdx, task);
1716 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001717
Craig Mautner8849a5e2013-04-02 16:41:03 -07001718 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001719 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001720 TaskRecord rTask = r.task;
1721 final int taskId = rTask.taskId;
1722 if (taskForIdLocked(taskId) == null || newTask) {
Craig Mautner77878772013-03-04 19:46:24 -08001723 // Last activity in task had been removed or ActivityManagerService is reusing task.
1724 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001725 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001726 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001727 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001728 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001729 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001730 if (!newTask) {
1731 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001732 boolean startIt = true;
1733 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1734 task = mTaskHistory.get(taskNdx);
1735 if (task == r.task) {
1736 // Here it is! Now, if this is not yet visible to the
1737 // user, then just add it without starting; it will
1738 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001739 if (!startIt) {
1740 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1741 + task, new RuntimeException("here").fillInStackTrace());
1742 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001743 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001744 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1745 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001746 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001747 r.userId, r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001748 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001749 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001750 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001751 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001752 return;
1753 }
1754 break;
Craig Mautner70a86932013-02-28 22:37:44 -08001755 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001756 startIt = false;
1757 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001758 }
1759 }
1760
1761 // Place a new activity at top of stack, so it is next to interact
1762 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08001763
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001764 // If we are not placing the new activity frontmost, we do not want
1765 // to deliver the onUserLeaving callback to the actual frontmost
1766 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08001767 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001768 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08001769 if (DEBUG_USER_LEAVING) Slog.v(TAG,
1770 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001771 }
Craig Mautner70a86932013-02-28 22:37:44 -08001772
1773 task = r.task;
1774
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001775 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08001776 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08001777 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08001778 task.addActivityToTop(r);
Craig Mautner3b475fe2013-12-16 15:58:31 -08001779 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08001780
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001781 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001782 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001783 // We want to show the starting preview window if we are
1784 // switching to a new task, or the next activity's process is
1785 // not currently running.
1786 boolean showStartingIcon = newTask;
1787 ProcessRecord proc = r.app;
1788 if (proc == null) {
1789 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
1790 }
1791 if (proc == null || proc.thread == null) {
1792 showStartingIcon = true;
1793 }
1794 if (DEBUG_TRANSITION) Slog.v(TAG,
1795 "Prepare open transition: starting " + r);
1796 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001797 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001798 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001799 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001800 mWindowManager.prepareAppTransition(newTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08001801 ? AppTransition.TRANSIT_TASK_OPEN
1802 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001803 mNoAnimActivities.remove(r);
1804 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001805 r.updateOptionsLocked(options);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001806 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08001807 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001808 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1809 r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001810 boolean doShow = true;
1811 if (newTask) {
1812 // Even though this activity is starting fresh, we still need
1813 // to reset it to make sure we apply affinities to move any
1814 // existing activities from other tasks in to it.
1815 // If the caller has requested that the target task be
1816 // reset, then do so.
1817 if ((r.intent.getFlags()
1818 &Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
1819 resetTaskIfNeededLocked(r, r);
1820 doShow = topRunningNonDelayedActivityLocked(null) == r;
1821 }
1822 }
1823 if (SHOW_APP_STARTING_PREVIEW && doShow) {
1824 // Figure out if we are transitioning from another activity that is
1825 // "has the same starting icon" as the next one. This allows the
1826 // window manager to keep the previous window it had previously
1827 // created, if it still had one.
1828 ActivityRecord prev = mResumedActivity;
1829 if (prev != null) {
1830 // We don't want to reuse the previous starting preview if:
1831 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07001832 if (prev.task != r.task) {
1833 prev = null;
1834 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001835 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07001836 else if (prev.nowVisible) {
1837 prev = null;
1838 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001839 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001840 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001841 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001842 mService.compatibilityInfoForPackageLocked(
1843 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001844 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08001845 prev != null ? prev.appToken : null, showStartingIcon);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001846 }
1847 } else {
1848 // If this is the first activity, don't do any fancy animations,
1849 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001850 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08001851 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001852 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1853 r.info.configChanges);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001854 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001855 }
1856 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001857 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 }
1859
1860 if (doResume) {
Craig Mautner858d8a62013-04-23 17:08:34 -07001861 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001862 }
1863 }
1864
Dianne Hackbornbe707852011-11-11 14:32:10 -08001865 final void validateAppTokensLocked() {
1866 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08001867 mValidateAppTokens.ensureCapacity(numActivities());
1868 final int numTasks = mTaskHistory.size();
1869 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
1870 TaskRecord task = mTaskHistory.get(taskNdx);
1871 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07001872 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08001873 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001874 }
Craig Mautner000f0022013-02-26 15:04:29 -08001875 TaskGroup group = new TaskGroup();
1876 group.taskId = task.taskId;
1877 mValidateAppTokens.add(group);
1878 final int numActivities = activities.size();
1879 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1880 final ActivityRecord r = activities.get(activityNdx);
1881 group.tokens.add(r.appToken);
1882 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08001883 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001884 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001885 }
1886
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001887 /**
1888 * Perform a reset of the given task, if needed as part of launching it.
1889 * Returns the new HistoryRecord at the top of the task.
1890 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08001891 /**
1892 * Helper method for #resetTaskIfNeededLocked.
1893 * We are inside of the task being reset... we'll either finish this activity, push it out
1894 * for another task, or leave it as-is.
1895 * @param task The task containing the Activity (taskTop) that might be reset.
1896 * @param forceReset
1897 * @return An ActivityOptions that needs to be processed.
1898 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001899 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001900 ActivityOptions topOptions = null;
1901
1902 int replyChainEnd = -1;
1903 boolean canMoveOptions = true;
1904
1905 // We only do this for activities that are not the root of the task (since if we finish
1906 // the root, we may no longer have the task!).
1907 final ArrayList<ActivityRecord> activities = task.mActivities;
1908 final int numActivities = activities.size();
1909 for (int i = numActivities - 1; i > 0; --i ) {
1910 ActivityRecord target = activities.get(i);
1911
1912 final int flags = target.info.flags;
1913 final boolean finishOnTaskLaunch =
1914 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
1915 final boolean allowTaskReparenting =
1916 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
1917 final boolean clearWhenTaskReset =
1918 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
1919
1920 if (!finishOnTaskLaunch
1921 && !clearWhenTaskReset
1922 && target.resultTo != null) {
1923 // If this activity is sending a reply to a previous
1924 // activity, we can't do anything with it now until
1925 // we reach the start of the reply chain.
1926 // XXX note that we are assuming the result is always
1927 // to the previous activity, which is almost always
1928 // the case but we really shouldn't count on.
1929 if (replyChainEnd < 0) {
1930 replyChainEnd = i;
1931 }
1932 } else if (!finishOnTaskLaunch
1933 && !clearWhenTaskReset
1934 && allowTaskReparenting
1935 && target.taskAffinity != null
1936 && !target.taskAffinity.equals(task.affinity)) {
1937 // If this activity has an affinity for another
1938 // task, then we need to move it out of here. We will
1939 // move it as far out of the way as possible, to the
1940 // bottom of the activity stack. This also keeps it
1941 // correctly ordered with any activities we previously
1942 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08001943 final ThumbnailHolder newThumbHolder;
1944 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07001945 final ActivityRecord bottom =
1946 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08001947 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07001948 if (bottom != null && target.taskAffinity != null
1949 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001950 // If the activity currently at the bottom has the
1951 // same task affinity as the one we are moving,
1952 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08001953 targetTask = bottom.task;
1954 newThumbHolder = bottom.thumbHolder == null ? targetTask : bottom.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001955 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07001956 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001957 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08001958 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
1959 null, false);
1960 newThumbHolder = targetTask;
1961 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001962 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
1963 + " out to new task " + target.task);
1964 }
1965
Craig Mautner329f4122013-11-07 09:10:42 -08001966 if (clearWhenTaskReset) {
1967 // This is the start of a new sub-task.
1968 if (target.thumbHolder == null) {
1969 target.thumbHolder = new ThumbnailHolder();
1970 }
1971 } else {
1972 target.thumbHolder = newThumbHolder;
1973 }
1974
Craig Mautnere3a74d52013-02-22 14:14:58 -08001975 final int targetTaskId = targetTask.taskId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001976 mWindowManager.setAppGroupId(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001977
Craig Mautner525f3d92013-05-07 14:01:50 -07001978 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001979 final int start = replyChainEnd < 0 ? i : replyChainEnd;
1980 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07001981 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001982 if (p.finishing) {
1983 continue;
1984 }
1985
Craig Mautner525f3d92013-05-07 14:01:50 -07001986 ThumbnailHolder curThumbHolder = p.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001987 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07001988 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001989 topOptions = p.takeOptionsLocked();
1990 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001991 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001992 }
1993 }
1994 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08001995 + task + " adding to task=" + targetTask
1996 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08001997 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
1998 + " out to target's task " + target.task);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001999 p.setTask(targetTask, curThumbHolder, false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002000 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002001
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002002 mWindowManager.setAppGroupId(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002003 }
2004
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002005 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002006 if (VALIDATE_TOKENS) {
2007 validateAppTokensLocked();
2008 }
2009
2010 replyChainEnd = -1;
2011 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2012 // If the activity should just be removed -- either
2013 // because it asks for it, or the task should be
2014 // cleared -- then finish it and anything that is
2015 // part of its reply chain.
2016 int end;
2017 if (clearWhenTaskReset) {
2018 // In this case, we want to finish this activity
2019 // and everything above it, so be sneaky and pretend
2020 // like these are all in the reply chain.
2021 end = numActivities - 1;
2022 } else if (replyChainEnd < 0) {
2023 end = i;
2024 } else {
2025 end = replyChainEnd;
2026 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002027 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002028 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002029 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002030 if (p.finishing) {
2031 continue;
2032 }
2033 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002034 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002035 topOptions = p.takeOptionsLocked();
2036 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002037 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002038 }
2039 }
Craig Mautner58547802013-03-05 08:23:53 -08002040 if (DEBUG_TASKS) Slog.w(TAG,
2041 "resetTaskIntendedTask: calling finishActivity on " + p);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002042 if (finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002043 end--;
2044 srcPos--;
2045 }
2046 }
2047 replyChainEnd = -1;
2048 } else {
2049 // If we were in the middle of a chain, well the
2050 // activity that started it all doesn't want anything
2051 // special, so leave it all as-is.
2052 replyChainEnd = -1;
2053 }
2054 }
2055
2056 return topOptions;
2057 }
2058
2059 /**
2060 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2061 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2062 * @param affinityTask The task we are looking for an affinity to.
2063 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2064 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2065 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2066 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002067 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002068 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002069 int replyChainEnd = -1;
2070 final int taskId = task.taskId;
2071 final String taskAffinity = task.affinity;
2072
2073 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2074 final int numActivities = activities.size();
2075 // Do not operate on the root Activity.
2076 for (int i = numActivities - 1; i > 0; --i) {
2077 ActivityRecord target = activities.get(i);
2078
2079 final int flags = target.info.flags;
2080 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2081 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2082
2083 if (target.resultTo != null) {
2084 // If this activity is sending a reply to a previous
2085 // activity, we can't do anything with it now until
2086 // we reach the start of the reply chain.
2087 // XXX note that we are assuming the result is always
2088 // to the previous activity, which is almost always
2089 // the case but we really shouldn't count on.
2090 if (replyChainEnd < 0) {
2091 replyChainEnd = i;
2092 }
2093 } else if (topTaskIsHigher
2094 && allowTaskReparenting
2095 && taskAffinity != null
2096 && taskAffinity.equals(target.taskAffinity)) {
2097 // This activity has an affinity for our task. Either remove it if we are
2098 // clearing or move it over to our task. Note that
2099 // we currently punt on the case where we are resetting a
2100 // task that is not at the top but who has activities above
2101 // with an affinity to it... this is really not a normal
2102 // case, and we will need to later pull that task to the front
2103 // and usually at that point we will do the reset and pick
2104 // up those remaining activities. (This only happens if
2105 // someone starts an activity in a new task from an activity
2106 // in a task that is not currently on top.)
2107 if (forceReset || finishOnTaskLaunch) {
2108 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2109 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2110 for (int srcPos = start; srcPos >= i; --srcPos) {
2111 final ActivityRecord p = activities.get(srcPos);
2112 if (p.finishing) {
2113 continue;
2114 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08002115 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002116 }
2117 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002118 if (taskInsertionPoint < 0) {
2119 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002120
Craig Mautner77878772013-03-04 19:46:24 -08002121 }
Craig Mautner77878772013-03-04 19:46:24 -08002122
2123 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2124 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2125 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2126 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002127 final ActivityRecord p = activities.get(srcPos);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002128 p.setTask(task, null, false);
Craig Mautner77878772013-03-04 19:46:24 -08002129 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002130
Craig Mautnere3a74d52013-02-22 14:14:58 -08002131 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2132 + " to stack at " + task,
2133 new RuntimeException("here").fillInStackTrace());
2134 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2135 + " in to resetting task " + task);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002136 mWindowManager.setAppGroupId(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002137 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002138 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002139 if (VALIDATE_TOKENS) {
2140 validateAppTokensLocked();
2141 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002142
2143 // Now we've moved it in to place... but what if this is
2144 // a singleTop activity and we have put it on top of another
2145 // instance of the same activity? Then we drop the instance
2146 // below so it remains singleTop.
2147 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2148 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002149 int targetNdx = taskActivities.indexOf(target);
2150 if (targetNdx > 0) {
2151 ActivityRecord p = taskActivities.get(targetNdx - 1);
2152 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002153 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2154 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002155 }
2156 }
2157 }
2158 }
2159
2160 replyChainEnd = -1;
2161 }
2162 }
Craig Mautner77878772013-03-04 19:46:24 -08002163 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002164 }
2165
Craig Mautner8849a5e2013-04-02 16:41:03 -07002166 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002167 ActivityRecord newActivity) {
2168 boolean forceReset =
2169 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2170 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2171 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2172 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2173 forceReset = true;
2174 }
2175 }
2176
2177 final TaskRecord task = taskTop.task;
2178
2179 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2180 * for remaining tasks. Used for later tasks to reparent to task. */
2181 boolean taskFound = false;
2182
2183 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2184 ActivityOptions topOptions = null;
2185
Craig Mautner77878772013-03-04 19:46:24 -08002186 // Preserve the location for reparenting in the new task.
2187 int reparentInsertionPoint = -1;
2188
Craig Mautnere3a74d52013-02-22 14:14:58 -08002189 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2190 final TaskRecord targetTask = mTaskHistory.get(i);
2191
2192 if (targetTask == task) {
2193 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2194 taskFound = true;
2195 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002196 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2197 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002198 }
2199 }
2200
Craig Mautner70a86932013-02-28 22:37:44 -08002201 int taskNdx = mTaskHistory.indexOf(task);
2202 do {
2203 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2204 } while (taskTop == null && taskNdx >= 0);
2205
Craig Mautnere3a74d52013-02-22 14:14:58 -08002206 if (topOptions != null) {
2207 // If we got some ActivityOptions from an activity on top that
2208 // was removed from the task, propagate them to the new real top.
2209 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002210 taskTop.updateOptionsLocked(topOptions);
2211 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002212 topOptions.abort();
2213 }
2214 }
2215
2216 return taskTop;
2217 }
2218
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002219 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2220 String resultWho, int requestCode, int resultCode, Intent data) {
2221
2222 if (callingUid > 0) {
2223 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Dianne Hackborn7e269642010-08-25 19:50:20 -07002224 data, r.getUriPermissionsLocked());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002225 }
2226
2227 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2228 + " : who=" + resultWho + " req=" + requestCode
2229 + " res=" + resultCode + " data=" + data);
2230 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2231 try {
2232 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2233 list.add(new ResultInfo(resultWho, requestCode,
2234 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002235 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002236 return;
2237 } catch (Exception e) {
2238 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2239 }
2240 }
2241
2242 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2243 }
2244
Craig Mautner04f0b702013-10-22 12:31:01 -07002245 private void adjustFocusedActivityLocked(ActivityRecord r) {
2246 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2247 ActivityRecord next = topRunningActivityLocked(null);
2248 if (next != r) {
2249 final TaskRecord task = r.task;
2250 if (r.frontOfTask && task == topTask() && task.mOnTopOfHome) {
2251 mStackSupervisor.moveHomeToTop();
2252 }
2253 }
2254 mService.setFocusedActivityLocked(mStackSupervisor.topRunningActivityLocked());
2255 }
2256 }
2257
Craig Mautnerf3333272013-04-22 10:55:53 -07002258 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002259 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2260 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2261 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2262 if (!r.finishing) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002263 if (!mService.mSleeping) {
2264 if (DEBUG_STATES) {
2265 Slog.d(TAG, "no-history finish of " + r);
2266 }
2267 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002268 "no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002269 } else {
2270 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2271 + " on stop because we're just sleeping");
2272 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002273 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002274 }
2275
2276 if (r.app != null && r.app.thread != null) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002277 adjustFocusedActivityLocked(r);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002278 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002279 try {
2280 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002281 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2282 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002283 r.state = ActivityState.STOPPING;
2284 if (DEBUG_VISBILITY) Slog.v(
2285 TAG, "Stopping visible=" + r.visible + " for " + r);
2286 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002287 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002288 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002289 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002290 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002291 r.setSleeping(true);
2292 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002293 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002294 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002295 } catch (Exception e) {
2296 // Maybe just ignore exceptions here... if the process
2297 // has crashed, our death notification will clean things
2298 // up.
2299 Slog.w(TAG, "Exception thrown during pause", e);
2300 // Just in case, assume it to be stopped.
2301 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002302 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002303 r.state = ActivityState.STOPPED;
2304 if (r.configDestroy) {
Dianne Hackborn28695e02011-11-02 21:59:51 -07002305 destroyActivityLocked(r, true, false, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002306 }
2307 }
2308 }
2309 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002310
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002311 /**
2312 * @return Returns true if the activity is being finished, false if for
2313 * some reason it is being left as-is.
2314 */
2315 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002316 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002317 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002318 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002319 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002320 + ", result=" + resultCode + ", data=" + resultData
2321 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002322 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002323 return false;
2324 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002325
Craig Mautnerd44711d2013-02-23 11:24:36 -08002326 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002327 return true;
2328 }
2329
Craig Mautnerd2328952013-03-05 12:46:26 -08002330 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002331 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2332 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2333 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2334 ActivityRecord r = activities.get(activityNdx);
2335 if (r.resultTo == self && r.requestCode == requestCode) {
2336 if ((r.resultWho == null && resultWho == null) ||
2337 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2338 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2339 false);
2340 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002341 }
2342 }
2343 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002344 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002345 }
2346
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002347 final void finishTopRunningActivityLocked(ProcessRecord app) {
2348 ActivityRecord r = topRunningActivityLocked(null);
2349 if (r != null && r.app == app) {
2350 // If the top running activity is from this crashing
2351 // process, then terminate it to avoid getting in a loop.
2352 Slog.w(TAG, " Force finishing activity "
2353 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002354 int taskNdx = mTaskHistory.indexOf(r.task);
2355 int activityNdx = r.task.mActivities.indexOf(r);
Craig Mautnerd2328952013-03-05 12:46:26 -08002356 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002357 // Also terminate any activities below it that aren't yet
2358 // stopped, to avoid a situation where one will get
2359 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002360 --activityNdx;
2361 if (activityNdx < 0) {
2362 do {
2363 --taskNdx;
2364 if (taskNdx < 0) {
2365 break;
2366 }
2367 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2368 } while (activityNdx < 0);
2369 }
2370 if (activityNdx >= 0) {
2371 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002372 if (r.state == ActivityState.RESUMED
2373 || r.state == ActivityState.PAUSING
2374 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002375 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002376 Slog.w(TAG, " Force finishing activity "
2377 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08002378 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002379 }
2380 }
2381 }
2382 }
2383 }
2384
Craig Mautnerd2328952013-03-05 12:46:26 -08002385 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002386 ArrayList<ActivityRecord> activities = r.task.mActivities;
2387 for (int index = activities.indexOf(r); index >= 0; --index) {
2388 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002389 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002390 break;
2391 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002392 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002393 }
2394 return true;
2395 }
2396
Dianne Hackborn5c607432012-02-28 14:44:19 -08002397 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2398 // send the result
2399 ActivityRecord resultTo = r.resultTo;
2400 if (resultTo != null) {
2401 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2402 + " who=" + r.resultWho + " req=" + r.requestCode
2403 + " res=" + resultCode + " data=" + resultData);
2404 if (r.info.applicationInfo.uid > 0) {
2405 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2406 resultTo.packageName, resultData,
2407 resultTo.getUriPermissionsLocked());
2408 }
2409 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2410 resultData);
2411 r.resultTo = null;
2412 }
2413 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2414
2415 // Make sure this HistoryRecord is not holding on to other resources,
2416 // because clients have remote IPC references to this object so we
2417 // can't assume that will go away and want to avoid circular IPC refs.
2418 r.results = null;
2419 r.pendingResults = null;
2420 r.newIntents = null;
2421 r.icicle = null;
2422 }
2423
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002424 /**
2425 * @return Returns true if this activity has been removed from the history
2426 * list, or false if it is still in the list and will be removed later.
2427 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002428 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2429 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002430 if (r.finishing) {
2431 Slog.w(TAG, "Duplicate finish request for " + r);
2432 return false;
2433 }
2434
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002435 r.makeFinishing();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002436 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002437 r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002438 r.task.taskId, r.shortComponentName, reason);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002439 final ArrayList<ActivityRecord> activities = r.task.mActivities;
2440 final int index = activities.indexOf(r);
2441 if (index < (activities.size() - 1)) {
Craig Mautner3b475fe2013-12-16 15:58:31 -08002442 r.task.setFrontOfTask();
Craig Mautnerd44711d2013-02-23 11:24:36 -08002443 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
2444 // If the caller asked that this activity (and all above it)
2445 // be cleared when the task is reset, don't lose that information,
2446 // but propagate it up to the next activity.
Craig Mautner3b475fe2013-12-16 15:58:31 -08002447 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002448 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002449 }
2450 }
2451
2452 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002453
2454 adjustFocusedActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002455
Dianne Hackborn5c607432012-02-28 14:44:19 -08002456 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002457
Craig Mautnerc8143c62013-09-03 12:15:57 -07002458 if (!mService.mPendingThumbnails.isEmpty()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002459 // There are clients waiting to receive thumbnails so, in case
2460 // this is an activity that someone is waiting for, add it
2461 // to the pending list so we can correctly update the clients.
Craig Mautnerf3333272013-04-22 10:55:53 -07002462 mStackSupervisor.mCancelledThumbnails.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002463 }
2464
Craig Mautnerde4ef022013-04-07 19:01:33 -07002465 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002466 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002467 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002468 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002469 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002470 ? AppTransition.TRANSIT_TASK_CLOSE
2471 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002472
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002473 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002474 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002475
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002476 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002477 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2478 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
2479 startPausingLocked(false, false);
2480 }
2481
2482 } else if (r.state != ActivityState.PAUSING) {
2483 // If the activity is PAUSING, we will complete the finish once
2484 // it is done pausing; else we can just directly finish it here.
2485 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002486 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002487 } else {
2488 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2489 }
2490
2491 return false;
2492 }
2493
Craig Mautnerf3333272013-04-22 10:55:53 -07002494 static final int FINISH_IMMEDIATELY = 0;
2495 static final int FINISH_AFTER_PAUSE = 1;
2496 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002497
Craig Mautnerf3333272013-04-22 10:55:53 -07002498 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002499 // First things first: if this activity is currently visible,
2500 // and the resumed activity is not yet visible, then hold off on
2501 // finishing until the resumed one becomes visible.
2502 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002503 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2504 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002505 if (mStackSupervisor.mStoppingActivities.size() > 3
2506 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002507 // If we already have a few activities waiting to stop,
2508 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002509 // them out. Or if r is the last of activity of the last task the stack
2510 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002511 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002512 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002513 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002514 }
2515 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002516 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2517 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002518 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002519 if (oomAdj) {
2520 mService.updateOomAdjLocked();
2521 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002522 return r;
2523 }
2524
2525 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002526 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002527 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002528 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002529 if (mResumedActivity == r) {
2530 mResumedActivity = null;
2531 }
2532 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002533 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002534 r.state = ActivityState.FINISHING;
2535
2536 if (mode == FINISH_IMMEDIATELY
2537 || prevState == ActivityState.STOPPED
2538 || prevState == ActivityState.INITIALIZING) {
2539 // If this activity is already stopped, we can just finish
2540 // it right now.
Craig Mautner6335fbc2014-06-13 17:18:47 -07002541 r.makeFinishing();
2542 boolean activityRemoved = destroyActivityLocked(r, true, oomAdj, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002543 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002544 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002545 }
Craig Mautner6335fbc2014-06-13 17:18:47 -07002546 if (DEBUG_CONTAINERS) Slog.d(TAG,
2547 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2548 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002549 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002550 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002551
2552 // Need to go through the full pause cycle to get this
2553 // activity into the stopped state and then finish it.
2554 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002555 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002556 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002557 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002558 return r;
2559 }
2560
Craig Mautneree36c772014-07-16 14:56:05 -07002561 void finishAllActivitiesLocked(boolean immediately) {
2562 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002563 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2564 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2565 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2566 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002567 noActivitiesInStack = false;
2568 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002569 continue;
2570 }
Craig Mautneree36c772014-07-16 14:56:05 -07002571 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002572 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2573 }
2574 }
Craig Mautneree36c772014-07-16 14:56:05 -07002575 if (noActivitiesInStack) {
2576 mActivityContainer.onTaskListEmptyLocked();
2577 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002578 }
2579
Craig Mautnerd2328952013-03-05 12:46:26 -08002580 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002581 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002582 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002583 final TaskRecord task = srec.task;
2584 final ArrayList<ActivityRecord> activities = task.mActivities;
2585 final int start = activities.indexOf(srec);
2586 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002587 return false;
2588 }
2589 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002590 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002591 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002592 final ComponentName dest = destIntent.getComponent();
2593 if (start > 0 && dest != null) {
2594 for (int i = finishTo; i >= 0; i--) {
2595 ActivityRecord r = activities.get(i);
2596 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002597 r.info.name.equals(dest.getClassName())) {
2598 finishTo = i;
2599 parent = r;
2600 foundParentInTask = true;
2601 break;
2602 }
2603 }
2604 }
2605
2606 IActivityController controller = mService.mController;
2607 if (controller != null) {
2608 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2609 if (next != null) {
2610 // ask watcher if this is allowed
2611 boolean resumeOK = true;
2612 try {
2613 resumeOK = controller.activityResuming(next.packageName);
2614 } catch (RemoteException e) {
2615 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002616 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002617 }
2618
2619 if (!resumeOK) {
2620 return false;
2621 }
2622 }
2623 }
2624 final long origId = Binder.clearCallingIdentity();
2625 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002626 ActivityRecord r = activities.get(i);
2627 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002628 // Only return the supplied result for the first activity finished
2629 resultCode = Activity.RESULT_CANCELED;
2630 resultData = null;
2631 }
2632
2633 if (parent != null && foundParentInTask) {
2634 final int parentLaunchMode = parent.info.launchMode;
2635 final int destIntentFlags = destIntent.getFlags();
2636 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2637 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2638 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2639 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
2640 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent);
2641 } else {
2642 try {
2643 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2644 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002645 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002646 null, aInfo, parent.appToken, null,
2647 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Craig Mautnere0a38842013-12-16 16:14:02 -08002648 0, null, true, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002649 foundParentInTask = res == ActivityManager.START_SUCCESS;
2650 } catch (RemoteException e) {
2651 foundParentInTask = false;
2652 }
2653 requestFinishActivityLocked(parent.appToken, resultCode,
2654 resultData, "navigate-up", true);
2655 }
2656 }
2657 Binder.restoreCallingIdentity(origId);
2658 return foundParentInTask;
2659 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002660 /**
2661 * Perform the common clean-up of an activity record. This is called both
2662 * as part of destroyActivityLocked() (when destroying the client-side
2663 * representation) and cleaning things up as a result of its hosting
2664 * processing going away, in which case there is no remaining client-side
2665 * state to destroy so only the cleanup here is needed.
2666 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002667 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2668 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002669 if (mResumedActivity == r) {
2670 mResumedActivity = null;
2671 }
2672 if (mService.mFocusedActivity == r) {
2673 mService.mFocusedActivity = null;
2674 }
2675
2676 r.configDestroy = false;
2677 r.frozenBeforeDestroy = false;
2678
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002679 if (setState) {
2680 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
2681 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002682 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002683 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002684 }
2685
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002686 // Make sure this record is no longer in the pending finishes list.
2687 // This could happen, for example, if we are trimming activities
2688 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07002689 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002690 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautneree36c772014-07-16 14:56:05 -07002691 mStackSupervisor.removePendingActivityLaunchesLocked(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07002692
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002693 // Remove any pending results.
2694 if (r.finishing && r.pendingResults != null) {
2695 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
2696 PendingIntentRecord rec = apr.get();
2697 if (rec != null) {
2698 mService.cancelIntentSenderLocked(rec, false);
2699 }
2700 }
2701 r.pendingResults = null;
2702 }
2703
2704 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07002705 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002706 }
2707
Craig Mautnerc8143c62013-09-03 12:15:57 -07002708 if (!mService.mPendingThumbnails.isEmpty()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002709 // There are clients waiting to receive thumbnails so, in case
2710 // this is an activity that someone is waiting for, add it
2711 // to the pending list so we can correctly update the clients.
Craig Mautnerf3333272013-04-22 10:55:53 -07002712 mStackSupervisor.mCancelledThumbnails.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002713 }
2714
2715 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002716 removeTimeoutsForActivityLocked(r);
2717 }
2718
2719 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07002720 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002721 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002722 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002723 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002724 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002725 }
2726
Craig Mautner04a0ea62014-01-13 12:51:26 -08002727 private void removeActivityFromHistoryLocked(ActivityRecord r) {
Craig Mautner34b73df2014-01-12 21:11:08 -08002728 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002729 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
2730 r.makeFinishing();
2731 if (DEBUG_ADD_REMOVE) {
2732 RuntimeException here = new RuntimeException("here");
2733 here.fillInStackTrace();
2734 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002735 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002736 r.takeFromHistory();
2737 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08002738 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002739 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002740 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002741 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002742 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002743 if (VALIDATE_TOKENS) {
2744 validateAppTokensLocked();
2745 }
Craig Mautner312ba862014-02-10 17:55:01 -08002746 final TaskRecord task = r.task;
2747 if (task != null && task.removeActivity(r)) {
2748 if (DEBUG_STACK) Slog.i(TAG,
2749 "removeActivityFromHistoryLocked: last activity removed from " + this);
2750 if (mStackSupervisor.isFrontStack(this) && task == topTask() && task.mOnTopOfHome) {
2751 mStackSupervisor.moveHomeToTop();
2752 }
2753 removeTask(task);
2754 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002755 cleanUpActivityServicesLocked(r);
2756 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002757 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002758
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002759 /**
2760 * Perform clean-up of service connections in an activity record.
2761 */
2762 final void cleanUpActivityServicesLocked(ActivityRecord r) {
2763 // Throw away any services that have been bound by this activity.
2764 if (r.connections != null) {
2765 Iterator<ConnectionRecord> it = r.connections.iterator();
2766 while (it.hasNext()) {
2767 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07002768 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002769 }
2770 r.connections = null;
2771 }
2772 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002773
2774 final void scheduleDestroyActivities(ProcessRecord owner, boolean oomAdj, String reason) {
2775 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
2776 msg.obj = new ScheduleDestroyArgs(owner, oomAdj, reason);
2777 mHandler.sendMessage(msg);
2778 }
2779
Dianne Hackborn28695e02011-11-02 21:59:51 -07002780 final void destroyActivitiesLocked(ProcessRecord owner, boolean oomAdj, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002781 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002782 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002783 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2784 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2785 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2786 final ActivityRecord r = activities.get(activityNdx);
2787 if (r.finishing) {
2788 continue;
2789 }
2790 if (r.fullscreen) {
2791 lastIsOpaque = true;
2792 }
2793 if (owner != null && r.app != owner) {
2794 continue;
2795 }
2796 if (!lastIsOpaque) {
2797 continue;
2798 }
2799 // We can destroy this one if we have its icicle saved and
2800 // it is not in the process of pausing/stopping/finishing.
2801 if (r.app != null && r != mResumedActivity && r != mPausingActivity
2802 && r.haveState && !r.visible && r.stopped
2803 && r.state != ActivityState.DESTROYING
2804 && r.state != ActivityState.DESTROYED) {
2805 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
2806 + " resumed=" + mResumedActivity
2807 + " pausing=" + mPausingActivity);
2808 if (destroyActivityLocked(r, true, oomAdj, reason)) {
2809 activityRemoved = true;
2810 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002811 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002812 }
2813 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002814 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002815 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002816 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002817 }
2818
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002819 /**
2820 * Destroy the current CLIENT SIDE instance of an activity. This may be
2821 * called both when actually finishing an activity, or when performing
2822 * a configuration switch where we destroy the current client-side object
2823 * but then create a new client-side object for this same HistoryRecord.
2824 */
2825 final boolean destroyActivityLocked(ActivityRecord r,
Dianne Hackborn28695e02011-11-02 21:59:51 -07002826 boolean removeFromApp, boolean oomAdj, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002827 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002828 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002829 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
2830 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002831 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07002832 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002833
2834 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002835
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002836 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002837
2838 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002839
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002840 if (hadApp) {
2841 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002842 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002843 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
2844 mService.mHeavyWeightProcess = null;
2845 mService.mHandler.sendEmptyMessage(
2846 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
2847 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07002848 if (r.app.activities.isEmpty()) {
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07002849 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07002850 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002851 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002852 }
2853 }
2854
2855 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002856
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002857 try {
2858 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002859 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002860 r.configChangeFlags);
2861 } catch (Exception e) {
2862 // We can just ignore exceptions here... if the process
2863 // has crashed, our death notification will clean things
2864 // up.
2865 //Slog.w(TAG, "Exception thrown during finish", e);
2866 if (r.finishing) {
2867 removeActivityFromHistoryLocked(r);
2868 removedFromHistory = true;
2869 skipDestroy = true;
2870 }
2871 }
2872
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002873 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002874
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002875 // If the activity is finishing, we need to wait on removing it
2876 // from the list to give it a chance to do its cleanup. During
2877 // that time it may make calls back with its token so we need to
2878 // be able to find it on the list and so we don't want to remove
2879 // it from the list yet. Otherwise, we can just immediately put
2880 // it in the destroyed state since we are not removing it from the
2881 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002882 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002883 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
2884 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002885 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002886 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002887 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
2888 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002889 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002890 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002891 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002892 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002893 }
2894 } else {
2895 // remove this record from the history.
2896 if (r.finishing) {
2897 removeActivityFromHistoryLocked(r);
2898 removedFromHistory = true;
2899 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002900 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002901 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002902 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002903 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002904 }
2905 }
2906
2907 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002908
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002909 if (!mLRUActivities.remove(r) && hadApp) {
2910 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
2911 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002912
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002913 return removedFromHistory;
2914 }
2915
Craig Mautnerd2328952013-03-05 12:46:26 -08002916 final void activityDestroyedLocked(IBinder token) {
2917 final long origId = Binder.clearCallingIdentity();
2918 try {
2919 ActivityRecord r = ActivityRecord.forToken(token);
2920 if (r != null) {
2921 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002922 }
Craig Mautner6335fbc2014-06-13 17:18:47 -07002923 if (DEBUG_CONTAINERS) Slog.d(TAG, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08002924
2925 if (isInStackLocked(token) != null) {
2926 if (r.state == ActivityState.DESTROYING) {
2927 cleanUpActivityLocked(r, true, false);
2928 removeActivityFromHistoryLocked(r);
2929 }
2930 }
Craig Mautner05d29032013-05-03 13:40:13 -07002931 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08002932 } finally {
2933 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002934 }
2935 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002936
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002937 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
2938 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002939 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002940 if (DEBUG_CLEANUP) Slog.v(
2941 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002942 + " with " + i + " entries");
2943 while (i > 0) {
2944 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002945 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002946 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002947 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002948 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002949 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002950 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002951 }
2952 }
2953 }
2954
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002955 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
2956 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07002957 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
2958 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07002959 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
2960 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07002961 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002962 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07002963 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
2964 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002965
2966 boolean hasVisibleActivities = false;
2967
2968 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08002969 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002970 if (DEBUG_CLEANUP) Slog.v(
2971 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08002972 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2973 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2974 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2975 final ActivityRecord r = activities.get(activityNdx);
2976 --i;
2977 if (DEBUG_CLEANUP) Slog.v(
2978 TAG, "Record #" + i + " " + r + ": app=" + r.app);
2979 if (r.app == app) {
2980 boolean remove;
2981 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
2982 // Don't currently have state for the activity, or
2983 // it is finishing -- always remove it.
2984 remove = true;
2985 } else if (r.launchCount > 2 &&
2986 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
2987 // We have launched this activity too many times since it was
2988 // able to run, so give up and remove it.
2989 remove = true;
2990 } else {
2991 // The process may be gone, but the activity lives on!
2992 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002993 }
Craig Mautner0247fc82013-02-28 14:32:06 -08002994 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002995 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002996 RuntimeException here = new RuntimeException("here");
2997 here.fillInStackTrace();
2998 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
2999 + ": haveState=" + r.haveState
3000 + " stateNotNeeded=" + r.stateNotNeeded
3001 + " finishing=" + r.finishing
3002 + " state=" + r.state, here);
3003 }
3004 if (!r.finishing) {
3005 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3006 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3007 r.userId, System.identityHashCode(r),
3008 r.task.taskId, r.shortComponentName,
3009 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003010 if (r.state == ActivityState.RESUMED) {
3011 mService.updateUsageStats(r, false);
3012 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003013 }
3014 removeActivityFromHistoryLocked(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003015
Craig Mautner0247fc82013-02-28 14:32:06 -08003016 } else {
3017 // We have the current state for this activity, so
3018 // it can be restarted later when needed.
3019 if (localLOGV) Slog.v(
3020 TAG, "Keeping entry, setting app to null");
3021 if (r.visible) {
3022 hasVisibleActivities = true;
3023 }
3024 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3025 + r);
3026 r.app = null;
3027 r.nowVisible = false;
3028 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003029 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003030 "App died, clearing saved state of " + r);
3031 r.icicle = null;
3032 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003033 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003034
Craig Mautnerd2328952013-03-05 12:46:26 -08003035 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003036 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003037 }
3038 }
3039
3040 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003041 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003042
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003043 final void updateTransitLocked(int transit, Bundle options) {
3044 if (options != null) {
3045 ActivityRecord r = topRunningActivityLocked(null);
3046 if (r != null && r.state != ActivityState.RESUMED) {
3047 r.updateOptionsLocked(options);
3048 } else {
3049 ActivityOptions.abort(options);
3050 }
3051 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003052 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003053 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003054
Craig Mautnera82aa092013-09-13 15:34:08 -07003055 void moveHomeTaskToTop() {
3056 final int top = mTaskHistory.size() - 1;
3057 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3058 final TaskRecord task = mTaskHistory.get(taskNdx);
3059 if (task.isHomeTask()) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -07003060 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG, "moveHomeTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003061 mTaskHistory.remove(taskNdx);
3062 mTaskHistory.add(top, task);
3063 mWindowManager.moveTaskToTop(task.taskId);
3064 return;
3065 }
3066 }
3067 }
3068
Craig Mautnercae015f2013-02-08 14:31:27 -08003069 final boolean findTaskToMoveToFrontLocked(int taskId, int flags, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003070 final TaskRecord task = taskForIdLocked(taskId);
3071 if (task != null) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003072 if ((flags & ActivityManager.MOVE_TASK_NO_USER_ACTION) == 0) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003073 mStackSupervisor.mUserLeaving = true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003074 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003075 if ((flags & ActivityManager.MOVE_TASK_WITH_HOME) != 0) {
3076 // Caller wants the home activity moved with it. To accomplish this,
Craig Mautnere418ecd2013-05-01 17:02:29 -07003077 // we'll just indicate that this task returns to the home task.
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003078 task.mOnTopOfHome = true;
Craig Mautneraab647e2013-02-28 16:31:36 -08003079 }
3080 moveTaskToFrontLocked(task, null, options);
3081 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003082 }
3083 return false;
3084 }
3085
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003086 final void moveTaskToFrontLocked(TaskRecord tr, ActivityRecord reason, Bundle options) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003087 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003088
Craig Mautner11bf9a52013-02-19 14:08:51 -08003089 final int numTasks = mTaskHistory.size();
3090 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003091 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003092 // nothing to do!
3093 if (reason != null &&
3094 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3095 ActivityOptions.abort(options);
3096 } else {
3097 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3098 }
3099 return;
3100 }
3101
Craig Mautnere0a38842013-12-16 16:14:02 -08003102 moveToFront();
Craig Mautnerfb1e20d2013-06-23 21:24:13 -07003103
Craig Mautner11bf9a52013-02-19 14:08:51 -08003104 // Shift all activities with this task up to the top
3105 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003106 insertTaskAtTop(tr);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003107
3108 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003109 if (reason != null &&
3110 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003111 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003112 ActivityRecord r = topRunningActivityLocked(null);
3113 if (r != null) {
3114 mNoAnimActivities.add(r);
3115 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003116 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003117 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003118 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003119 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003120
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003121 mWindowManager.moveTaskToTop(tr.taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003122
Craig Mautner05d29032013-05-03 13:40:13 -07003123 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003124 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003125
3126 if (VALIDATE_TOKENS) {
3127 validateAppTokensLocked();
3128 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003129 }
3130
3131 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003132 * Worker method for rearranging history stack. Implements the function of moving all
3133 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003134 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003135 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003136 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3137 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003138 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003139 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003140 * @return Returns true if the move completed, false if not.
3141 */
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003142 final boolean moveTaskToBackLocked(int taskId, ActivityRecord reason) {
3143 Slog.i(TAG, "moveTaskToBack: " + taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003144
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003145 // If we have a watcher, preflight the move before committing to it. First check
3146 // for *other* available tasks, but if none are available, then try again allowing the
3147 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003148 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003149 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003150 if (next == null) {
3151 next = topRunningActivityLocked(null, 0);
3152 }
3153 if (next != null) {
3154 // ask watcher if this is allowed
3155 boolean moveOK = true;
3156 try {
3157 moveOK = mService.mController.activityResuming(next.packageName);
3158 } catch (RemoteException e) {
3159 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003160 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003161 }
3162 if (!moveOK) {
3163 return false;
3164 }
3165 }
3166 }
3167
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003168 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003169 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003170
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003171 final TaskRecord tr = taskForIdLocked(taskId);
Craig Mautnerd2328952013-03-05 12:46:26 -08003172 if (tr == null) {
3173 return false;
3174 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003175
Craig Mautner11bf9a52013-02-19 14:08:51 -08003176 mTaskHistory.remove(tr);
3177 mTaskHistory.add(0, tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003178
Craig Mautnerc8143c62013-09-03 12:15:57 -07003179 // There is an assumption that moving a task to the back moves it behind the home activity.
3180 // We make sure here that some activity in the stack will launch home.
3181 ActivityRecord lastActivity = null;
3182 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003183 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3184 final TaskRecord task = mTaskHistory.get(taskNdx);
3185 if (task.mOnTopOfHome) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003186 break;
3187 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003188 if (taskNdx == 1) {
3189 // Set the last task before tr to go to home.
3190 task.mOnTopOfHome = true;
3191 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003192 }
3193
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003194 if (reason != null &&
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003195 (reason.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3196 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003197 ActivityRecord r = topRunningActivityLocked(null);
3198 if (r != null) {
3199 mNoAnimActivities.add(r);
3200 }
3201 } else {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003202 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003203 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003204 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003205
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003206 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003207 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003208 }
3209
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003210 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Craig Mautnere0a38842013-12-16 16:14:02 -08003211 if (task == tr && tr.mOnTopOfHome || numTasks <= 1 && isOnHomeDisplay()) {
Daniel 2 Olofsson9cdf9e52013-12-16 13:24:25 +01003212 tr.mOnTopOfHome = false;
Craig Mautner69ada552013-04-18 13:51:51 -07003213 return mStackSupervisor.resumeHomeActivity(null);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003214 }
3215
Craig Mautner05d29032013-05-03 13:40:13 -07003216 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003217 return true;
3218 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003219
Craig Mautner8849a5e2013-04-02 16:41:03 -07003220 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003221 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003222 final Uri data = r.intent.getData();
3223 final String strData = data != null ? data.toSafeString() : null;
3224
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003225 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003226 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003227 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003228 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003229 }
3230
3231 /**
3232 * Make sure the given activity matches the current configuration. Returns
3233 * false if the activity had to be destroyed. Returns true if the
3234 * configuration is the same, or the activity will remain running as-is
3235 * for whatever reason. Ensures the HistoryRecord is updated with the
3236 * correct configuration and all other bookkeeping is handled.
3237 */
3238 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3239 int globalChanges) {
3240 if (mConfigWillChange) {
3241 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3242 "Skipping config check (will change): " + r);
3243 return true;
3244 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003245
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003246 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3247 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003248
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003249 // Short circuit: if the two configurations are the exact same
3250 // object (the common case), then there is nothing to do.
3251 Configuration newConfig = mService.mConfiguration;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003252 if (r.configuration == newConfig && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003253 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3254 "Configuration unchanged in " + r);
3255 return true;
3256 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003257
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003258 // We don't worry about activities that are finishing.
3259 if (r.finishing) {
3260 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3261 "Configuration doesn't matter in finishing " + r);
3262 r.stopFreezingScreenLocked(false);
3263 return true;
3264 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003265
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003266 // Okay we now are going to make this activity have the new config.
3267 // But then we need to figure out how it needs to deal with that.
3268 Configuration oldConfig = r.configuration;
3269 r.configuration = newConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003270
3271 // Determine what has changed. May be nothing, if this is a config
3272 // that has come back from the app after going idle. In that case
3273 // we just want to leave the official config object now in the
3274 // activity and do nothing else.
3275 final int changes = oldConfig.diff(newConfig);
3276 if (changes == 0 && !r.forceNewConfig) {
3277 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3278 "Configuration no differences in " + r);
3279 return true;
3280 }
3281
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003282 // If the activity isn't currently running, just leave the new
3283 // configuration and it will pick that up next time it starts.
3284 if (r.app == null || r.app.thread == null) {
3285 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3286 "Configuration doesn't matter not running " + r);
3287 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003288 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003289 return true;
3290 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003291
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003292 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003293 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3294 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3295 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003296 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003297 + ", newConfig=" + newConfig);
3298 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003299 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003300 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3301 r.configChangeFlags |= changes;
3302 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003303 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003304 if (r.app == null || r.app.thread == null) {
3305 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003306 "Config is destroying non-running " + r);
Dianne Hackborn28695e02011-11-02 21:59:51 -07003307 destroyActivityLocked(r, true, false, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003308 } else if (r.state == ActivityState.PAUSING) {
3309 // A little annoying: we are waiting for this activity to
3310 // finish pausing. Let's not do anything now, but just
3311 // flag that it needs to be restarted when done pausing.
3312 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003313 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003314 r.configDestroy = true;
3315 return true;
3316 } else if (r.state == ActivityState.RESUMED) {
3317 // Try to optimize this case: the configuration is changing
3318 // and we need to restart the top, resumed activity.
3319 // Instead of doing the normal handshaking, just say
3320 // "restart!".
3321 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003322 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003323 relaunchActivityLocked(r, r.configChangeFlags, true);
3324 r.configChangeFlags = 0;
3325 } else {
3326 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003327 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003328 relaunchActivityLocked(r, r.configChangeFlags, false);
3329 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003330 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003331
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003332 // All done... tell the caller we weren't able to keep this
3333 // activity around.
3334 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003335 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003336
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003337 // Default case: the activity can handle this new configuration, so
3338 // hand it over. Note that we don't need to give it the new
3339 // configuration, since we always send configuration changes to all
3340 // process when they happen so it can just use whatever configuration
3341 // it last got.
3342 if (r.app != null && r.app.thread != null) {
3343 try {
3344 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003345 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003346 } catch (RemoteException e) {
3347 // If process died, whatever.
3348 }
3349 }
3350 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003351
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003352 return true;
3353 }
3354
Craig Mautnerc8143c62013-09-03 12:15:57 -07003355 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003356 int changes, boolean andResume) {
3357 List<ResultInfo> results = null;
3358 List<Intent> newIntents = null;
3359 if (andResume) {
3360 results = r.results;
3361 newIntents = r.newIntents;
3362 }
3363 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3364 + " with results=" + results + " newIntents=" + newIntents
3365 + " andResume=" + andResume);
3366 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003367 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003368 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003369
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003370 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003371
Craig Mautner34b73df2014-01-12 21:11:08 -08003372 mStackSupervisor.removeChildActivityContainers(r);
3373
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003374 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003375 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3376 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3377 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003378 r.forceNewConfig = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08003379 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents,
Dianne Hackborn813075a62011-11-14 17:45:19 -08003380 changes, !andResume, new Configuration(mService.mConfiguration));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003381 // Note: don't need to call pauseIfSleepingLocked() here, because
3382 // the caller will only pass in 'andResume' if this activity is
3383 // currently resumed, which implies we aren't sleeping.
3384 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003385 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003386 }
3387
3388 if (andResume) {
3389 r.results = null;
3390 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003391 r.state = ActivityState.RESUMED;
3392 } else {
3393 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3394 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003395 }
3396
3397 return true;
3398 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003399
3400 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003401 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3402 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3403 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3404 final ActivityRecord r = activities.get(activityNdx);
3405 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003406 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003407 }
3408 if (r.fullscreen && !r.finishing) {
3409 return false;
3410 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003411 }
3412 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003413 final ActivityRecord r = ActivityRecord.forToken(token);
3414 if (r == null) {
3415 return false;
3416 }
3417 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3418 + " would have returned true for r=" + r);
3419 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003420 }
3421
3422 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003423 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3424 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3425 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3426 final ActivityRecord r = activities.get(activityNdx);
3427 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003428 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003429 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003430 }
3431 }
3432 }
3433
3434 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3435 boolean didSomething = false;
3436 TaskRecord lastTask = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003437 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3438 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3439 int numActivities = activities.size();
3440 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3441 ActivityRecord r = activities.get(activityNdx);
3442 final boolean samePackage = r.packageName.equals(name)
3443 || (name == null && r.userId == userId);
3444 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3445 && (samePackage || r.task == lastTask)
3446 && (r.app == null || evenPersistent || !r.app.persistent)) {
3447 if (!doit) {
3448 if (r.finishing) {
3449 // If this activity is just finishing, then it is not
3450 // interesting as far as something to stop.
3451 continue;
3452 }
3453 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003454 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003455 didSomething = true;
3456 Slog.i(TAG, " Force finishing activity " + r);
3457 if (samePackage) {
3458 if (r.app != null) {
3459 r.app.removed = true;
3460 }
3461 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003462 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003463 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003464 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3465 true)) {
3466 // r has been deleted from mActivities, accommodate.
3467 --numActivities;
3468 --activityNdx;
3469 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003470 }
3471 }
3472 }
3473 return didSomething;
3474 }
3475
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003476 ActivityRecord getTasksLocked(IThumbnailReceiver receiver,
Craig Mautneraab647e2013-02-28 16:31:36 -08003477 PendingThumbnailsRecord pending, List<RunningTaskInfo> list) {
Craig Mautnercae015f2013-02-08 14:31:27 -08003478 ActivityRecord topRecord = null;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003479 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003480 final TaskRecord task = mTaskHistory.get(taskNdx);
3481 ActivityRecord r = null;
3482 ActivityRecord top = null;
3483 int numActivities = 0;
3484 int numRunning = 0;
3485 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003486 if (activities.isEmpty()) {
3487 continue;
3488 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003489 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3490 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003491
Craig Mautneraab647e2013-02-28 16:31:36 -08003492 // Initialize state for next task if needed.
3493 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3494 top = r;
3495 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003496 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003497
3498 // Add 'r' into the current task.
3499 numActivities++;
3500 if (r.app != null && r.app.thread != null) {
3501 numRunning++;
3502 }
3503
3504 if (localLOGV) Slog.v(
3505 TAG, r.intent.getComponent().flattenToShortString()
3506 + ": task=" + r.task);
3507 }
3508
3509 RunningTaskInfo ci = new RunningTaskInfo();
3510 ci.id = task.taskId;
3511 ci.baseActivity = r.intent.getComponent();
3512 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003513 ci.lastActiveTime = task.lastActiveTime;
3514
Craig Mautneraab647e2013-02-28 16:31:36 -08003515 if (top.thumbHolder != null) {
3516 ci.description = top.thumbHolder.lastDescription;
3517 }
3518 ci.numActivities = numActivities;
3519 ci.numRunning = numRunning;
3520 //System.out.println(
3521 // "#" + maxNum + ": " + " descr=" + ci.description);
3522 if (receiver != null) {
3523 if (localLOGV) Slog.v(
3524 TAG, "State=" + top.state + "Idle=" + top.idle
3525 + " app=" + top.app
3526 + " thr=" + (top.app != null ? top.app.thread : null));
3527 if (top.state == ActivityState.RESUMED || top.state == ActivityState.PAUSING) {
3528 if (top.idle && top.app != null && top.app.thread != null) {
3529 topRecord = top;
3530 } else {
3531 top.thumbnailNeeded = true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003532 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003533 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003534 pending.pendingRecords.add(top);
Craig Mautnercae015f2013-02-08 14:31:27 -08003535 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003536 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003537 }
3538 return topRecord;
3539 }
3540
3541 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003542 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003543 if (DEBUG_SWITCH) Slog.d(
3544 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003545 if (top >= 0) {
3546 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3547 int activityTop = activities.size() - 1;
3548 if (activityTop > 0) {
3549 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3550 "unhandled-back", true);
3551 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003552 }
3553 }
3554
Craig Mautner6b74cb52013-09-27 17:02:21 -07003555 /**
3556 * Reset local parameters because an app's activity died.
3557 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003558 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003559 */
3560 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003561 if (mPausingActivity != null && mPausingActivity.app == app) {
3562 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3563 "App died while pausing: " + mPausingActivity);
3564 mPausingActivity = null;
3565 }
3566 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3567 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003568 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003569 }
3570
Craig Mautner19091252013-10-05 00:03:53 -07003571 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003572 }
3573
Craig Mautnercae015f2013-02-08 14:31:27 -08003574 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003575 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3576 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3577 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3578 final ActivityRecord r = activities.get(activityNdx);
3579 if (r.app == app) {
3580 Slog.w(TAG, " Force finishing activity "
3581 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07003582 // Force the destroy to skip right to removal.
3583 r.app = null;
3584 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003585 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003586 }
3587 }
3588 }
3589
Dianne Hackborn390517b2013-05-30 15:03:32 -07003590 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003591 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003592 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08003593 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3594 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07003595 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
3596 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003597 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07003598 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003599 if (printed) {
3600 header = null;
3601 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003602 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003603 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08003604 }
3605
3606 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
3607 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
3608
3609 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003610 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3611 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08003612 }
3613 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003614 final int top = mTaskHistory.size() - 1;
3615 if (top >= 0) {
3616 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
3617 int listTop = list.size() - 1;
3618 if (listTop >= 0) {
3619 activities.add(list.get(listTop));
3620 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003621 }
3622 } else {
3623 ItemMatcher matcher = new ItemMatcher();
3624 matcher.build(name);
3625
Craig Mautneraab647e2013-02-28 16:31:36 -08003626 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3627 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
3628 if (matcher.match(r1, r1.intent.getComponent())) {
3629 activities.add(r1);
3630 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003631 }
3632 }
3633 }
3634
3635 return activities;
3636 }
3637
3638 ActivityRecord restartPackage(String packageName) {
3639 ActivityRecord starting = topRunningActivityLocked(null);
3640
3641 // All activities that came from the package must be
3642 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08003643 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3644 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3645 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3646 final ActivityRecord a = activities.get(activityNdx);
3647 if (a.info.packageName.equals(packageName)) {
3648 a.forceNewConfig = true;
3649 if (starting != null && a == starting && a.visible) {
3650 a.startFreezingScreenLocked(starting.app,
3651 ActivityInfo.CONFIG_SCREEN_LAYOUT);
3652 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003653 }
3654 }
3655 }
3656
3657 return starting;
3658 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003659
Craig Mautner04a0ea62014-01-13 12:51:26 -08003660 void removeTask(TaskRecord task) {
3661 mWindowManager.removeTask(task.taskId);
3662 final ActivityRecord r = mResumedActivity;
3663 if (r != null && r.task == task) {
3664 mResumedActivity = null;
3665 }
3666
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003667 final int taskNdx = mTaskHistory.indexOf(task);
3668 final int topTaskNdx = mTaskHistory.size() - 1;
3669 if (task.mOnTopOfHome && taskNdx < topTaskNdx) {
3670 mTaskHistory.get(taskNdx + 1).mOnTopOfHome = true;
3671 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003672 mTaskHistory.remove(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08003673
3674 if (mTaskHistory.isEmpty()) {
3675 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
3676 if (isOnHomeDisplay()) {
3677 mStackSupervisor.moveHomeStack(!isHomeStack());
3678 }
Craig Mautner593a4e62014-01-15 17:55:51 -08003679 if (mStacks != null) {
3680 mStacks.remove(this);
3681 mStacks.add(0, this);
3682 }
Craig Mautner6335fbc2014-06-13 17:18:47 -07003683 mActivityContainer.onTaskListEmptyLocked();
Craig Mautner04a0ea62014-01-13 12:51:26 -08003684 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003685 }
3686
Craig Mautnerde4ef022013-04-07 19:01:33 -07003687 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent, boolean toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003688 TaskRecord task = new TaskRecord(taskId, info, intent);
3689 addTask(task, toTop);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003690 return task;
3691 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08003692
3693 ArrayList<TaskRecord> getAllTasks() {
3694 return new ArrayList<TaskRecord>(mTaskHistory);
3695 }
3696
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07003697 void addTask(final TaskRecord task, final boolean toTop) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08003698 task.stack = this;
3699 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003700 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08003701 } else {
3702 mTaskHistory.add(0, task);
3703 }
3704 }
3705
3706 public int getStackId() {
3707 return mStackId;
3708 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003709
3710 @Override
3711 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07003712 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
3713 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07003714 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003715}