blob: 404794090c082f8b0b5c0ee3b59220d131b502a1 [file] [log] [blame]
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
Craig Mautner0eea92c2013-05-16 13:35:39 -070019import static com.android.server.am.ActivityManagerService.TAG;
20import static com.android.server.am.ActivityManagerService.localLOGV;
21import static com.android.server.am.ActivityManagerService.DEBUG_CLEANUP;
22import static com.android.server.am.ActivityManagerService.DEBUG_CONFIGURATION;
23import static com.android.server.am.ActivityManagerService.DEBUG_PAUSE;
24import static com.android.server.am.ActivityManagerService.DEBUG_RESULTS;
25import static com.android.server.am.ActivityManagerService.DEBUG_STACK;
26import static com.android.server.am.ActivityManagerService.DEBUG_SWITCH;
27import static com.android.server.am.ActivityManagerService.DEBUG_TASKS;
28import static com.android.server.am.ActivityManagerService.DEBUG_TRANSITION;
29import static com.android.server.am.ActivityManagerService.DEBUG_USER_LEAVING;
30import static com.android.server.am.ActivityManagerService.DEBUG_VISBILITY;
31import static com.android.server.am.ActivityManagerService.VALIDATE_TOKENS;
32
33import static com.android.server.am.ActivityStackSupervisor.DEBUG_ADD_REMOVE;
34import static com.android.server.am.ActivityStackSupervisor.DEBUG_APP;
35import static com.android.server.am.ActivityStackSupervisor.DEBUG_SAVED_STATE;
36import static com.android.server.am.ActivityStackSupervisor.DEBUG_STATES;
Craig Mautnerde4ef022013-04-07 19:01:33 -070037import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
38
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070039import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070040import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080041import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080042import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080043import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080044import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070045import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070046
47import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070048import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070049import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080051import android.app.IActivityController;
Craig Mautnercae015f2013-02-08 14:31:27 -080052import android.app.IThumbnailReceiver;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070053import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080054import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070057import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080060import android.content.res.Resources;
61import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080062import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070064import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080065import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.os.Handler;
67import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090068import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.os.Message;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070070import android.os.RemoteException;
71import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080072import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070073import android.os.UserHandle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070074import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070075import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070076import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070077
Craig Mautnercae015f2013-02-08 14:31:27 -080078import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080079import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070080import java.lang.ref.WeakReference;
81import java.util.ArrayList;
82import java.util.Iterator;
83import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080084import java.util.Objects;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070085
86/**
87 * State and management of a single stack of activities.
88 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070089final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080090
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -070091 // Ticks during which we check progress while waiting for an app to launch.
92 static final int LAUNCH_TICK = 500;
93
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070094 // How long we wait until giving up on the last activity to pause. This
95 // is short because it directly impacts the responsiveness of starting the
96 // next activity.
97 static final int PAUSE_TIMEOUT = 500;
98
Dianne Hackborn162bc0e2012-04-09 14:06:16 -070099 // How long we wait for the activity to tell us it has stopped before
100 // giving up. This is a good amount of time because we really need this
101 // from the application in order to get its saved state.
102 static final int STOP_TIMEOUT = 10*1000;
103
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700104 // How long we wait until giving up on an activity telling us it has
105 // finished destroying itself.
106 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800107
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700108 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800109 // disabled.
110 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800111
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700112 // How long between activity launches that we consider safe to not warn
113 // the user about an unexpected activity being launched on top.
114 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800115
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700116 // Set to false to disable the preview that is shown while a new activity
117 // is being started.
118 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800119
Craig Mautner5eda9b32013-07-02 11:58:16 -0700120 // How long to wait for all background Activities to redraw following a call to
121 // convertToTranslucent().
122 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
123
John Reck172e87c2013-10-02 16:55:16 -0700124 static final boolean SCREENSHOT_FORCE_565 = ActivityManager
125 .isLowRamDeviceStatic() ? true : false;
126
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700127 enum ActivityState {
128 INITIALIZING,
129 RESUMED,
130 PAUSING,
131 PAUSED,
132 STOPPING,
133 STOPPED,
134 FINISHING,
135 DESTROYING,
136 DESTROYED
137 }
138
139 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700140 final WindowManagerService mWindowManager;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800141
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700142 /**
143 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800144 * running) activities. It contains #TaskRecord objects.
145 */
146 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
147
148 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800149 * Used for validating app tokens with window manager.
150 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800151 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800152
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700153 /**
154 * List of running activities, sorted by recent usage.
155 * The first entry in the list is the least recently used.
156 * It contains HistoryRecord objects.
157 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700158 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700159
160 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700161 * Animations that for the current transition have requested not to
162 * be considered for the transition animation.
163 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700164 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700165
166 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167 * When we are in the process of pausing an activity, before starting the
168 * next one, this variable holds the activity that is currently being paused.
169 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800170 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700171
172 /**
173 * This is the last activity that we put into the paused state. This is
174 * used to determine if we need to do an activity transition while sleeping,
175 * when we normally hold the top activity paused.
176 */
177 ActivityRecord mLastPausedActivity = null;
178
179 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700180 * Activities that specify No History must be removed once the user navigates away from them.
181 * If the device goes to sleep with such an activity in the paused state then we save it here
182 * and finish it later if another activity replaces it on wakeup.
183 */
184 ActivityRecord mLastNoHistoryActivity = null;
185
186 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700187 * Current activity that is resumed, or null if there is none.
188 */
189 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800190
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700191 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700192 * This is the last activity that has been started. It is only used to
193 * identify when multiple activities are started at once so that the user
194 * can be warned they may not be in the activity they think they are.
195 */
196 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800197
Craig Mautner5eda9b32013-07-02 11:58:16 -0700198 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
199 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
200 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
201 // Activity in mTranslucentActivityWaiting is notified via
202 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
203 // background activity being drawn then the same call will be made with a true value.
204 ActivityRecord mTranslucentActivityWaiting = null;
205 ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
206 new ArrayList<ActivityRecord>();
207
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700208 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700209 * Set when we know we are going to be calling updateConfiguration()
210 * soon, so want to skip intermediate config checks.
211 */
212 boolean mConfigWillChange;
213
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700214 long mLaunchStartTime = 0;
215 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800216
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800217 /**
Craig Mautnerb12428a2012-12-20 16:07:06 -0800218 * Save the most recent screenshot for reuse. This keeps Recents from taking two identical
219 * screenshots, one for the Recents thumbnail and one for the pauseActivity thumbnail.
220 */
221 private ActivityRecord mLastScreenshotActivity = null;
222 private Bitmap mLastScreenshotBitmap = null;
223
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800224 int mThumbnailWidth = -1;
225 int mThumbnailHeight = -1;
226
Craig Mautner858d8a62013-04-23 17:08:34 -0700227 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700228
Craig Mautnerc00204b2013-03-05 15:02:14 -0800229 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800230 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800231 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
232 ArrayList<ActivityStack> mStacks;
233 /** The attached Display's unique identifier, or -1 if detached */
234 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800235
Craig Mautner27084302013-03-25 08:05:25 -0700236 /** Run all ActivityStacks through this */
237 final ActivityStackSupervisor mStackSupervisor;
238
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700239 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700240 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
241 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
242 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
243 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700244 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700245
246 static class ScheduleDestroyArgs {
247 final ProcessRecord mOwner;
248 final boolean mOomAdj;
249 final String mReason;
250 ScheduleDestroyArgs(ProcessRecord owner, boolean oomAdj, String reason) {
251 mOwner = owner;
252 mOomAdj = oomAdj;
253 mReason = reason;
254 }
255 }
256
Zoran Marcetaf958b322012-08-09 20:27:12 +0900257 final Handler mHandler;
258
259 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700260 //public Handler() {
261 // if (localLOGV) Slog.v(TAG, "Handler started!");
262 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700263 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900264 super(looper);
265 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700266
Zoran Marcetaf958b322012-08-09 20:27:12 +0900267 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700268 public void handleMessage(Message msg) {
269 switch (msg.what) {
270 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800271 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700272 // We don't at this point know if the activity is fullscreen,
273 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800274 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700275 synchronized (mService) {
276 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700277 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700278 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700279 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800280 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700281 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700282 case LAUNCH_TICK_MSG: {
283 ActivityRecord r = (ActivityRecord)msg.obj;
284 synchronized (mService) {
285 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700286 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700287 }
288 }
289 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700290 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800291 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700292 // We don't at this point know if the activity is fullscreen,
293 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800294 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800295 synchronized (mService) {
296 activityDestroyedLocked(r != null ? r.appToken : null);
297 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700298 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700299 case STOP_TIMEOUT_MSG: {
300 ActivityRecord r = (ActivityRecord)msg.obj;
301 // We don't at this point know if the activity is fullscreen,
302 // so we need to be conservative and assume it isn't.
303 Slog.w(TAG, "Activity stop timeout for " + r);
304 synchronized (mService) {
305 if (r.isInHistory()) {
306 activityStoppedLocked(r, null, null, null);
307 }
308 }
309 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700310 case DESTROY_ACTIVITIES_MSG: {
311 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
312 synchronized (mService) {
313 destroyActivitiesLocked(args.mOwner, args.mOomAdj, args.mReason);
314 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700315 } break;
316 case TRANSLUCENT_TIMEOUT_MSG: {
317 synchronized (mService) {
318 notifyActivityDrawnLocked(null);
319 }
320 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700321 }
322 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800323 }
324
Craig Mautner34b73df2014-01-12 21:11:08 -0800325 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800326 int count = 0;
327 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
328 count += mTaskHistory.get(taskNdx).mActivities.size();
329 }
330 return count;
331 }
332
Craig Mautner4a1cb222013-12-04 16:14:06 -0800333 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer) {
334 mActivityContainer = activityContainer;
335 mStackSupervisor = activityContainer.getOuter();
336 mService = mStackSupervisor.mService;
337 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
338 mWindowManager = mService.mWindowManager;
339 mStackId = activityContainer.mStackId;
340 mCurrentUser = mService.mCurrentUserId;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700341 }
Craig Mautner5962b122012-10-05 14:45:52 -0700342
Craig Mautner6b74cb52013-09-27 17:02:21 -0700343 boolean okToShow(ActivityRecord r) {
Craig Mautner5962b122012-10-05 14:45:52 -0700344 return r.userId == mCurrentUser
345 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
346 }
347
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700348 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800349 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700350 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
351 if (r != null) {
352 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800353 }
354 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700355 return null;
356 }
357
358 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800359 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
360 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800361 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800362 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
363 ActivityRecord r = activities.get(activityNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800364 if (!r.finishing && !r.delayedResume && r != notTop && okToShow(r)) {
365 return r;
366 }
367 }
368 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700369 return null;
370 }
371
372 /**
373 * This is a simplified version of topRunningActivityLocked that provides a number of
374 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800375 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700376 * @param token If non-null, any history records matching this token will be skipped.
377 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800378 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700379 * @return Returns the HistoryRecord of the next activity on the stack.
380 */
381 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800382 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
383 TaskRecord task = mTaskHistory.get(taskNdx);
384 if (task.taskId == taskId) {
385 continue;
386 }
387 ArrayList<ActivityRecord> activities = task.mActivities;
388 for (int i = activities.size() - 1; i >= 0; --i) {
389 final ActivityRecord r = activities.get(i);
390 // Note: the taskId check depends on real taskId fields being non-zero
391 if (!r.finishing && (token != r.appToken) && okToShow(r)) {
392 return r;
393 }
394 }
395 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700396 return null;
397 }
398
Craig Mautner8849a5e2013-04-02 16:41:03 -0700399 final ActivityRecord topActivity() {
400 // Iterate to find the first non-empty task stack. Note that this code can
Craig Mautnerde4ef022013-04-07 19:01:33 -0700401 // be simplified once we stop storing tasks with empty mActivities lists.
Craig Mautner8849a5e2013-04-02 16:41:03 -0700402 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
403 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
404 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700405 return activities.get(activityNdx);
Craig Mautner8849a5e2013-04-02 16:41:03 -0700406 }
407 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700408 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700409 }
410
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700411 final TaskRecord topTask() {
412 final int size = mTaskHistory.size();
413 if (size > 0) {
414 return mTaskHistory.get(size - 1);
415 }
416 return null;
417 }
418
Craig Mautnerd2328952013-03-05 12:46:26 -0800419 TaskRecord taskForIdLocked(int id) {
420 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
421 final TaskRecord task = mTaskHistory.get(taskNdx);
422 if (task.taskId == id) {
423 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800424 }
425 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700426 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700427 }
428
Craig Mautnerd2328952013-03-05 12:46:26 -0800429 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800430 final ActivityRecord r = ActivityRecord.forToken(token);
Craig Mautnerd2328952013-03-05 12:46:26 -0800431 if (r != null) {
432 final TaskRecord task = r.task;
433 if (task.mActivities.contains(r) && mTaskHistory.contains(task)) {
434 if (task.stack != this) Slog.w(TAG,
435 "Illegal state! task does not point to stack it is in.");
436 return r;
437 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800438 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800439 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800440 }
441
Craig Mautner2420ead2013-04-01 17:13:20 -0700442 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700443 final boolean hadit = mLRUActivities.remove(r);
444 mLRUActivities.add(r);
445 return hadit;
446 }
447
Craig Mautnerde4ef022013-04-07 19:01:33 -0700448 final boolean isHomeStack() {
449 return mStackId == HOME_STACK_ID;
450 }
451
Craig Mautnere0a38842013-12-16 16:14:02 -0800452 final boolean isOnHomeDisplay() {
453 return isAttached() &&
454 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
455 }
456
457 final void moveToFront() {
458 if (isAttached()) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800459 if (isOnHomeDisplay()) {
460 mStackSupervisor.moveHomeStack(isHomeStack());
461 }
Craig Mautnerfefeef82014-01-10 08:40:23 -0800462 mStacks.remove(this);
463 mStacks.add(this);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800464 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800465 }
466
467 final boolean isAttached() {
468 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800469 }
470
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700471 /**
472 * Returns the top activity in any existing task matching the given
473 * Intent. Returns null if no such task is found.
474 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700475 ActivityRecord findTaskLocked(ActivityRecord target) {
476 Intent intent = target.intent;
477 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700478 ComponentName cls = intent.getComponent();
479 if (info.targetActivity != null) {
480 cls = new ComponentName(info.packageName, info.targetActivity);
481 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700482 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautner000f0022013-02-26 15:04:29 -0800483
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700484 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800485 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
486 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700487 if (task.userId != userId) {
488 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700489 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700490 continue;
491 }
Craig Mautner000f0022013-02-26 15:04:29 -0800492 final ActivityRecord r = task.getTopActivity();
493 if (r == null || r.finishing || r.userId != userId ||
494 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700495 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800496 continue;
497 }
498
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700499 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
500 + r.task.intent.getComponent().flattenToShortString()
501 + "/aff=" + r.task.affinity + " to new cls="
502 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Craig Mautner000f0022013-02-26 15:04:29 -0800503 if (task.affinity != null) {
504 if (task.affinity.equals(info.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700505 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700506 return r;
507 }
Craig Mautner000f0022013-02-26 15:04:29 -0800508 } else if (task.intent != null && task.intent.getComponent().equals(cls)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700509 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800510 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700511 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
512 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800513 return r;
514 } else if (task.affinityIntent != null
515 && task.affinityIntent.getComponent().equals(cls)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700516 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800517 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700518 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
519 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800520 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700521 } else if (DEBUG_TASKS) {
522 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700523 }
524 }
525
526 return null;
527 }
528
529 /**
530 * Returns the first activity (starting from the top of the stack) that
531 * is the same as the given activity. Returns null if no such activity
532 * is found.
533 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700534 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700535 ComponentName cls = intent.getComponent();
536 if (info.targetActivity != null) {
537 cls = new ComponentName(info.packageName, info.targetActivity);
538 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700539 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700540
Craig Mautner000f0022013-02-26 15:04:29 -0800541 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700542 TaskRecord task = mTaskHistory.get(taskNdx);
543 if (task.userId != mCurrentUser) {
544 return null;
545 }
546 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800547 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
548 ActivityRecord r = activities.get(activityNdx);
549 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700550 //Slog.i(TAG, "Found matching class!");
551 //dump();
552 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
553 return r;
554 }
555 }
556 }
557
558 return null;
559 }
560
Amith Yamasani742a6712011-05-04 14:49:28 -0700561 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700562 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700563 */
Craig Mautner93529a42013-10-04 15:03:13 -0700564 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800565 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700566 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800567 }
568 mCurrentUser = userId;
569
570 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800571 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800572 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700573 TaskRecord task = mTaskHistory.get(i);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800574 if (task.userId == userId) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700575 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
576 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800577 mTaskHistory.remove(i);
578 mTaskHistory.add(task);
579 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800580 // Use same value for i.
581 } else {
582 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800583 }
584 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700585 if (VALIDATE_TOKENS) {
586 validateAppTokensLocked();
587 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700588 }
589
Craig Mautner2420ead2013-04-01 17:13:20 -0700590 void minimalResumeActivityLocked(ActivityRecord r) {
591 r.state = ActivityState.RESUMED;
592 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
593 + " (starting new instance)");
594 r.stopped = false;
595 mResumedActivity = r;
596 r.task.touchActiveTime();
597 mService.addRecentTaskLocked(r.task);
598 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700599 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700600 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700601 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700602 }
603
Dianne Hackborncee04b52013-07-03 17:01:28 -0700604 private void startLaunchTraces() {
605 if (mFullyDrawnStartTime != 0) {
606 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
607 }
608 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
609 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
610 }
611
612 private void stopFullyDrawnTraceIfNeeded() {
613 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
614 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
615 mFullyDrawnStartTime = 0;
616 }
617 }
618
Craig Mautnere79d42682013-04-01 19:01:53 -0700619 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700620 if (r.displayStartTime == 0) {
621 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
622 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700623 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700624 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700625 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700626 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700627 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700628 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700629 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700630 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800631
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700632 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700633 // Make sure that there is no activity waiting for this to launch.
634 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
635 r.displayStartTime = r.fullyDrawnStartTime = 0;
636 } else {
637 mStackSupervisor.removeTimeoutsForActivityLocked(r);
638 mStackSupervisor.scheduleIdleTimeoutLocked(r);
639 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700640 }
641
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800642 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800643 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800644 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
645 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
646 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
647 activities.get(activityNdx).setSleeping(false);
648 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800649 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800650 }
651
Craig Mautner0eea92c2013-05-16 13:35:39 -0700652 /**
653 * @return true if something must be done before going to sleep.
654 */
655 boolean checkReadyForSleepLocked() {
656 if (mResumedActivity != null) {
657 // Still have something resumed; can't sleep until it is paused.
658 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
659 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
660 startPausingLocked(false, true);
661 return true;
662 }
663 if (mPausingActivity != null) {
664 // Still waiting for something to pause; can't sleep yet.
665 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
666 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800667 }
668
Craig Mautner0eea92c2013-05-16 13:35:39 -0700669 return false;
670 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800671
Craig Mautner0eea92c2013-05-16 13:35:39 -0700672 void goToSleep() {
673 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800674
Craig Mautner0eea92c2013-05-16 13:35:39 -0700675 // Make sure any stopped but visible activities are now sleeping.
676 // This ensures that the activity's onStop() is called.
677 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
678 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
679 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
680 final ActivityRecord r = activities.get(activityNdx);
681 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
682 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800683 }
684 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800685 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700686 }
Craig Mautner59c00972012-07-30 12:10:24 -0700687
Dianne Hackbornd2835932010-12-13 16:28:46 -0800688 public final Bitmap screenshotActivities(ActivityRecord who) {
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800689 if (who.noDisplay) {
690 return null;
691 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800692
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700693 TaskRecord tr = who.task;
Craig Mautner34740402013-10-11 11:05:35 -0700694 if (mService.getMostRecentTask() != tr && tr.intent != null &&
695 (tr.intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) != 0) {
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700696 // If this task is being excluded from recents, we don't want to take
697 // the expense of capturing a thumbnail, since we will never show it.
698 return null;
699 }
700
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800701 Resources res = mService.mContext.getResources();
702 int w = mThumbnailWidth;
703 int h = mThumbnailHeight;
704 if (w < 0) {
705 mThumbnailWidth = w =
706 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_width);
707 mThumbnailHeight = h =
708 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_height);
709 }
710
711 if (w > 0) {
Craig Mautnerb12428a2012-12-20 16:07:06 -0800712 if (who != mLastScreenshotActivity || mLastScreenshotBitmap == null
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700713 || mLastScreenshotActivity.state == ActivityState.RESUMED
Craig Mautnerb12428a2012-12-20 16:07:06 -0800714 || mLastScreenshotBitmap.getWidth() != w
715 || mLastScreenshotBitmap.getHeight() != h) {
716 mLastScreenshotActivity = who;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700717 mLastScreenshotBitmap = mWindowManager.screenshotApplications(
John Reck172e87c2013-10-02 16:55:16 -0700718 who.appToken, Display.DEFAULT_DISPLAY, w, h, SCREENSHOT_FORCE_565);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800719 }
720 if (mLastScreenshotBitmap != null) {
John Reck172e87c2013-10-02 16:55:16 -0700721 return mLastScreenshotBitmap.copy(mLastScreenshotBitmap.getConfig(), true);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800722 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800723 }
724 return null;
725 }
726
Craig Mautnercf910b02013-04-23 11:23:27 -0700727 final void startPausingLocked(boolean userLeaving, boolean uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800728 if (mPausingActivity != null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800729 Slog.e(TAG, "Trying to pause when pause is already pending for "
Craig Mautnere11f2b72013-04-01 12:37:17 -0700730 + mPausingActivity, new RuntimeException("here").fillInStackTrace());
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800731 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700732 ActivityRecord prev = mResumedActivity;
733 if (prev == null) {
Craig Mautnere11f2b72013-04-01 12:37:17 -0700734 Slog.e(TAG, "Trying to pause when nothing is resumed",
735 new RuntimeException("here").fillInStackTrace());
Craig Mautner05d29032013-05-03 13:40:13 -0700736 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700737 return;
738 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800739
740 if (mActivityContainer.mParentActivity == null) {
741 // Top level stack, not a child. Look for child stacks.
742 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping);
743 }
744
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700745 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
746 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700747 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800748 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700749 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700750 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
751 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700752 prev.state = ActivityState.PAUSING;
753 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700754 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700755 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
756 if (next == null || next.task != prev.task) {
757 prev.updateThumbnail(screenshotActivities(prev), null);
758 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700759 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700760
761 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800762
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700763 if (prev.app != null && prev.app.thread != null) {
764 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
765 try {
766 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700767 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700768 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700769 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800770 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
771 userLeaving, prev.configChangeFlags);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700772 } catch (Exception e) {
773 // Ignore exception, if process died other code will cleanup.
774 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800775 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700776 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700777 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700778 }
779 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800780 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700781 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700782 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700783 }
784
785 // If we are not going to sleep, we want to ensure the device is
786 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700787 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700788 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700789 }
790
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800791 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700792 // Have the window manager pause its key dispatching until the new
793 // activity has started. If we're pausing the activity just because
794 // the screen is being turned off and the UI is sleeping, don't interrupt
795 // key dispatch; the same activity will pick it up again on wakeup.
796 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800797 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700798 } else {
799 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
800 }
801
802 // Schedule a pause timeout in case the app doesn't respond.
803 // We don't give it much time because this directly impacts the
804 // responsiveness seen by the user.
805 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
806 msg.obj = prev;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700807 prev.pauseTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700808 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
809 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
810 } else {
811 // This activity failed to schedule the
812 // pause, so just treat it as being paused now.
813 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700814 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700815 }
816 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700817
Craig Mautnerd2328952013-03-05 12:46:26 -0800818 final void activityPausedLocked(IBinder token, boolean timeout) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700819 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800820 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700821
Craig Mautnerd2328952013-03-05 12:46:26 -0800822 final ActivityRecord r = isInStackLocked(token);
823 if (r != null) {
824 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
825 if (mPausingActivity == r) {
826 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
827 + (timeout ? " (due to timeout)" : " (pause complete)"));
828 r.state = ActivityState.PAUSED;
829 completePauseLocked();
830 } else {
831 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
832 r.userId, System.identityHashCode(r), r.shortComponentName,
833 mPausingActivity != null
834 ? mPausingActivity.shortComponentName : "(none)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700835 }
836 }
837 }
838
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700839 final void activityStoppedLocked(ActivityRecord r, Bundle icicle, Bitmap thumbnail,
840 CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700841 if (r.state != ActivityState.STOPPING) {
842 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
843 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
844 return;
845 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700846 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700847 if (icicle != null) {
848 // If icicle is null, this is happening due to a timeout, so we
849 // haven't really saved the state.
850 r.icicle = icicle;
851 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800852 r.launchCount = 0;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700853 r.updateThumbnail(thumbnail, description);
854 }
855 if (!r.stopped) {
856 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
857 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
858 r.stopped = true;
859 r.state = ActivityState.STOPPED;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700860 if (r.finishing) {
861 r.clearOptionsLocked();
862 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700863 if (r.configDestroy) {
864 destroyActivityLocked(r, true, false, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700865 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700866 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700867 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800868 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700869 }
870 }
871 }
872
Craig Mautnerc8143c62013-09-03 12:15:57 -0700873 private void completePauseLocked() {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800874 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700875 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800876
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800877 if (prev != null) {
878 if (prev.finishing) {
879 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700880 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800881 } else if (prev.app != null) {
882 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
883 if (prev.waitingVisible) {
884 prev.waitingVisible = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700885 mStackSupervisor.mWaitingVisibleActivities.remove(prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800886 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
887 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800888 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800889 if (prev.configDestroy) {
890 // The previous is being paused because the configuration
891 // is changing, which means it is actually stopping...
892 // To juggle the fact that we are also starting a new
893 // instance right now, we need to first completely stop
894 // the current instance before starting the new one.
895 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
896 destroyActivityLocked(prev, true, false, "pause-config");
897 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700898 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700899 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
900 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800901 // If we already have a few activities waiting to stop,
902 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700903 // them out. Or if r is the last of activity of the last task the stack
904 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800905 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700906 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800907 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700908 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800909 }
910 }
911 } else {
912 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
913 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800914 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800915 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700916 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800917
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700918 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
Craig Mautnere11f2b72013-04-01 12:37:17 -0700919 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner05d29032013-05-03 13:40:13 -0700920 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800921 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700922 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700923 ActivityRecord top = topStack.topRunningActivityLocked(null);
Dianne Hackborncc5a0552012-10-01 16:32:39 -0700924 if (top == null || (prev != null && top != prev)) {
925 // If there are no more activities available to run,
926 // do resume anyway to start something. Also if the top
927 // activity on the stack is not the just paused activity,
928 // we need to go ahead and resume it to ensure we complete
929 // an in-flight app switch.
Craig Mautner05d29032013-05-03 13:40:13 -0700930 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700931 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700932 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800933
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800934 if (prev != null) {
935 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700936
Craig Mautner525f3d92013-05-07 14:01:50 -0700937 if (prev.app != null && prev.cpuTimeAtResume > 0
938 && mService.mBatteryStatsService.isOnBattery()) {
939 long diff;
Dianne Hackbornd2932242013-08-05 18:18:42 -0700940 synchronized (mService.mProcessCpuThread) {
941 diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
Craig Mautner525f3d92013-05-07 14:01:50 -0700942 - prev.cpuTimeAtResume;
943 }
944 if (diff > 0) {
945 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
946 synchronized (bsi) {
947 BatteryStatsImpl.Uid.Proc ps =
948 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -0700949 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -0700950 if (ps != null) {
951 ps.addForegroundTimeLocked(diff);
952 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700953 }
954 }
955 }
Craig Mautner525f3d92013-05-07 14:01:50 -0700956 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700957 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700958 }
959
960 /**
961 * Once we know that we have asked an application to put an activity in
962 * the resumed state (either by launching it or explicitly telling it),
963 * this function updates the rest of our state to match that fact.
964 */
Craig Mautner525f3d92013-05-07 14:01:50 -0700965 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700966 next.idle = false;
967 next.results = null;
968 next.newIntents = null;
Craig Mautner07566322013-09-26 16:42:55 -0700969 if (next.nowVisible) {
970 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
971 mStackSupervisor.dismissKeyguard();
972 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700973
974 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -0700975 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700976
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700977 mStackSupervisor.reportResumedActivityLocked(next);
978
979 next.resumeKeyDispatchingLocked();
980 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700981
982 // Mark the point when the activity is resuming
983 // TODO: To be more accurate, the mark should be before the onCreate,
984 // not after the onResume. But for subsequent starts, onResume is fine.
985 if (next.app != null) {
Dianne Hackbornd2932242013-08-05 18:18:42 -0700986 synchronized (mService.mProcessCpuThread) {
987 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700988 }
989 } else {
990 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
991 }
992 }
993
Craig Mautner580ea812013-04-25 12:58:38 -0700994 /**
Craig Mautner39e1c5a2013-10-23 15:14:22 -0700995 * Determine if home should be visible below the passed record.
996 * @param record activity we are querying for.
997 * @return true if home is visible below the passed activity, false otherwise.
998 */
999 boolean isActivityOverHome(ActivityRecord record) {
1000 // Start at record and go down, look for either home or a visible fullscreen activity.
1001 final TaskRecord recordTask = record.task;
1002 for (int taskNdx = mTaskHistory.indexOf(recordTask); taskNdx >= 0; --taskNdx) {
1003 TaskRecord task = mTaskHistory.get(taskNdx);
1004 final ArrayList<ActivityRecord> activities = task.mActivities;
1005 final int startNdx =
1006 task == recordTask ? activities.indexOf(record) : activities.size() - 1;
1007 for (int activityNdx = startNdx; activityNdx >= 0; --activityNdx) {
1008 final ActivityRecord r = activities.get(activityNdx);
1009 if (r.isHomeActivity()) {
1010 return true;
1011 }
Craig Mautner76be9d22013-11-04 16:01:22 -08001012 if (!r.finishing && r.fullscreen) {
1013 // Passed activity is over a fullscreen activity.
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001014 return false;
1015 }
1016 }
1017 if (task.mOnTopOfHome) {
1018 // Got to the bottom of a task on top of home without finding a visible fullscreen
1019 // activity. Home is visible.
1020 return true;
1021 }
1022 }
1023 // Got to the bottom of this stack and still don't know. If this is over the home stack
1024 // then record is over home. May not work if we ever get more than two layers.
1025 return mStackSupervisor.isFrontStack(this);
1026 }
1027
1028 /**
Craig Mautner580ea812013-04-25 12:58:38 -07001029 * Version of ensureActivitiesVisible that can easily be called anywhere.
1030 */
1031 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1032 return ensureActivitiesVisibleLocked(starting, configChanges, false);
1033 }
1034
1035 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1036 boolean forceHomeShown) {
1037 ActivityRecord r = topRunningActivityLocked(null);
Craig Mautner525f3d92013-05-07 14:01:50 -07001038 return r != null &&
1039 ensureActivitiesVisibleLocked(r, starting, null, configChanges, forceHomeShown);
Craig Mautner580ea812013-04-25 12:58:38 -07001040 }
1041
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001042 /**
1043 * Make sure that all activities that need to be visible (that is, they
1044 * currently can be seen by the user) actually are.
1045 */
Craig Mautner580ea812013-04-25 12:58:38 -07001046 final boolean ensureActivitiesVisibleLocked(ActivityRecord top, ActivityRecord starting,
1047 String onlyThisProcess, int configChanges, boolean forceHomeShown) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001048 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001049 TAG, "ensureActivitiesVisible behind " + top
1050 + " configChanges=0x" + Integer.toHexString(configChanges));
1051
Craig Mautner5eda9b32013-07-02 11:58:16 -07001052 if (mTranslucentActivityWaiting != top) {
1053 mUndrawnActivitiesBelowTopTranslucent.clear();
1054 if (mTranslucentActivityWaiting != null) {
1055 // Call the callback with a timeout indication.
1056 notifyActivityDrawnLocked(null);
1057 mTranslucentActivityWaiting = null;
1058 }
1059 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1060 }
1061
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001062 // If the top activity is not fullscreen, then we need to
1063 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001064 boolean aboveTop = true;
Craig Mautner580ea812013-04-25 12:58:38 -07001065 boolean showHomeBehindStack = false;
1066 boolean behindFullscreen = !mStackSupervisor.isFrontStack(this) &&
1067 !(forceHomeShown && isHomeStack());
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001068 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001069 final TaskRecord task = mTaskHistory.get(taskNdx);
1070 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001071 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1072 final ActivityRecord r = activities.get(activityNdx);
1073 if (r.finishing) {
1074 continue;
1075 }
1076 if (aboveTop && r != top) {
1077 continue;
1078 }
1079 aboveTop = false;
1080 if (!behindFullscreen) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001081 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001082 TAG, "Make visible? " + r + " finishing=" + r.finishing
1083 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001084
Craig Mautnerd44711d2013-02-23 11:24:36 -08001085 final boolean doThisProcess = onlyThisProcess == null
1086 || onlyThisProcess.equals(r.processName);
1087
1088 // First: if this is not the current activity being started, make
1089 // sure it matches the current configuration.
1090 if (r != starting && doThisProcess) {
1091 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001092 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001093
1094 if (r.app == null || r.app.thread == null) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001095 if (onlyThisProcess == null || onlyThisProcess.equals(r.processName)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001096 // This activity needs to be visible, but isn't even
1097 // running... get it started, but don't resume it
1098 // at this point.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001099 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001100 if (r != starting) {
1101 r.startFreezingScreenLocked(r.app, configChanges);
1102 }
1103 if (!r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001104 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001105 TAG, "Starting and making visible: " + r);
louis_changd5c91ec2014-01-28 18:38:06 +08001106 r.visible = true;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001107 mWindowManager.setAppVisibility(r.appToken, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001108 }
1109 if (r != starting) {
Craig Mautnere79d42682013-04-01 19:01:53 -07001110 mStackSupervisor.startSpecificActivityLocked(r, false, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001111 }
1112 }
1113
1114 } else if (r.visible) {
1115 // If this activity is already visible, then there is nothing
1116 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001117 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001118 r.stopFreezingScreenLocked(false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001119
1120 } else if (onlyThisProcess == null) {
1121 // This activity is not currently visible, but is running.
1122 // Tell it to become visible.
1123 r.visible = true;
1124 if (r.state != ActivityState.RESUMED && r != starting) {
1125 // If this activity is paused, tell it
1126 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001127 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001128 TAG, "Making visible and scheduling visibility: " + r);
1129 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001130 if (mTranslucentActivityWaiting != null) {
1131 mUndrawnActivitiesBelowTopTranslucent.add(r);
1132 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001133 mWindowManager.setAppVisibility(r.appToken, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001134 r.sleeping = false;
1135 r.app.pendingUiClean = true;
1136 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1137 r.stopFreezingScreenLocked(false);
1138 } catch (Exception e) {
1139 // Just skip on any failure; we'll make it
1140 // visible when it next restarts.
1141 Slog.w(TAG, "Exception thrown making visibile: "
1142 + r.intent.getComponent(), e);
1143 }
1144 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001145 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001146
Craig Mautnerd44711d2013-02-23 11:24:36 -08001147 // Aggregate current change flags.
1148 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001149
Craig Mautnerd44711d2013-02-23 11:24:36 -08001150 if (r.fullscreen) {
1151 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001152 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1153 behindFullscreen = true;
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001154 } else if (isActivityOverHome(r)) {
1155 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
1156 showHomeBehindStack = true;
riddle_hsu446ef1d2014-01-09 20:24:34 +08001157 behindFullscreen = !isHomeStack() && r.frontOfTask && task.mOnTopOfHome;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001158 }
1159 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001160 if (DEBUG_VISBILITY) Slog.v(
1161 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1162 + " state=" + r.state
1163 + " behindFullscreen=" + behindFullscreen);
1164 // Now for any activities that aren't visible to the user, make
1165 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001166 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001167 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001168 r.visible = false;
1169 try {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001170 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001171 switch (r.state) {
1172 case STOPPING:
1173 case STOPPED:
1174 if (r.app != null && r.app.thread != null) {
1175 if (DEBUG_VISBILITY) Slog.v(
1176 TAG, "Scheduling invisibility: " + r);
1177 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1178 }
1179 break;
1180
1181 case INITIALIZING:
1182 case RESUMED:
1183 case PAUSING:
1184 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001185 // This case created for transitioning activities from
1186 // translucent to opaque {@link Activity#convertToOpaque}.
Craig Mautnere5273b42013-09-09 12:57:47 -07001187 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1188 mStackSupervisor.mStoppingActivities.add(r);
1189 }
1190 mStackSupervisor.scheduleIdleLocked();
Craig Mautner4addfc52013-06-25 08:05:45 -07001191 break;
1192
1193 default:
1194 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001195 }
1196 } catch (Exception e) {
1197 // Just skip on any failure; we'll make it
1198 // visible when it next restarts.
1199 Slog.w(TAG, "Exception thrown making hidden: "
1200 + r.intent.getComponent(), e);
1201 }
1202 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001203 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001204 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001205 }
1206 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001207 }
Craig Mautner580ea812013-04-25 12:58:38 -07001208 return showHomeBehindStack;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001209 }
Craig Mautner58547802013-03-05 08:23:53 -08001210
Craig Mautner5eda9b32013-07-02 11:58:16 -07001211 void convertToTranslucent(ActivityRecord r) {
1212 mTranslucentActivityWaiting = r;
1213 mUndrawnActivitiesBelowTopTranslucent.clear();
1214 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1215 }
1216
1217 /**
1218 * Called as activities below the top translucent activity are redrawn. When the last one is
1219 * redrawn notify the top activity by calling
1220 * {@link Activity#onTranslucentConversionComplete}.
1221 *
1222 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1223 * occurred and the activity will be notified immediately.
1224 */
1225 void notifyActivityDrawnLocked(ActivityRecord r) {
1226 if ((r == null)
1227 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1228 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1229 // The last undrawn activity below the top has just been drawn. If there is an
1230 // opaque activity at the top, notify it that it can become translucent safely now.
1231 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1232 mTranslucentActivityWaiting = null;
1233 mUndrawnActivitiesBelowTopTranslucent.clear();
1234 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1235
1236 if (waitingActivity != null && waitingActivity.app != null &&
1237 waitingActivity.app.thread != null) {
1238 try {
1239 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1240 waitingActivity.appToken, r != null);
1241 } catch (RemoteException e) {
1242 }
1243 }
1244 }
1245 }
1246
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001247 /**
1248 * Ensure that the top activity in the stack is resumed.
1249 *
1250 * @param prev The previously resumed activity, for when in the process
1251 * of pausing; can be null to call from elsewhere.
1252 *
1253 * @return Returns true if something is being resumed, or false if
1254 * nothing happened.
1255 */
1256 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001257 return resumeTopActivityLocked(prev, null);
1258 }
1259
1260 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001261 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1262
Craig Mautnerdf88d732014-01-27 09:21:32 -08001263 ActivityRecord parent = mActivityContainer.mParentActivity;
1264 if (parent != null && parent.state != ActivityState.RESUMED) {
1265 // Do not resume this stack if its parent is not resumed.
1266 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1267 return false;
1268 }
1269
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001270 // Find the first activity that is not finishing.
1271 ActivityRecord next = topRunningActivityLocked(null);
1272
1273 // Remember how we'll process this pause/resume situation, and ensure
1274 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001275 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1276 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001277
1278 if (next == null) {
1279 // There are no more activities! Let's just start up the
1280 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001281 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001282 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001283 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001284 // Only resume home if on home display
1285 return isOnHomeDisplay() && mStackSupervisor.resumeHomeActivity(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001286 }
1287
1288 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001289
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001290 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001291 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1292 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001293 // Make sure we have executed any pending transitions, since there
1294 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001295 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001296 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001297 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001298 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001299 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001300 return false;
1301 }
1302
Craig Mautner525f3d92013-05-07 14:01:50 -07001303 final TaskRecord nextTask = next.task;
1304 final TaskRecord prevTask = prev != null ? prev.task : null;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001305 if (prevTask != null && prevTask.mOnTopOfHome && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001306 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001307 if (prevTask == nextTask) {
Craig Mautner3b475fe2013-12-16 15:58:31 -08001308 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001309 } else if (prevTask != topTask()) {
Craig Mautnere418ecd2013-05-01 17:02:29 -07001310 // This task is going away but it was supposed to return to the home task.
1311 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001312 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001313 mTaskHistory.get(taskNdx).mOnTopOfHome = true;
Craig Mautnere418ecd2013-05-01 17:02:29 -07001314 } else {
Craig Mautnere0a38842013-12-16 16:14:02 -08001315 if (DEBUG_STATES && isOnHomeDisplay()) Slog.d(TAG,
1316 "resumeTopActivityLocked: Launching home next");
1317 // Only resume home if on home display
1318 return isOnHomeDisplay() && mStackSupervisor.resumeHomeActivity(prev);
Craig Mautnere418ecd2013-05-01 17:02:29 -07001319 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001320 }
1321
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001322 // If we are sleeping, and there is no resumed activity, and the top
1323 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001324 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001325 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001326 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001327 // Make sure we have executed any pending transitions, since there
1328 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001329 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001330 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001331 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001332 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001333 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001334 return false;
1335 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001336
1337 // Make sure that the user who owns this activity is started. If not,
1338 // we will just leave it as is because someone should be bringing
1339 // another user's activities to the top of the stack.
1340 if (mService.mStartedUsers.get(next.userId) == null) {
1341 Slog.w(TAG, "Skipping resume of top activity " + next
1342 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001343 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001344 return false;
1345 }
1346
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001347 // The activity may be waiting for stop, but that is no longer
1348 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001349 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001350 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001351 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001352 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001353
Dianne Hackborn84375872012-06-01 19:03:50 -07001354 next.updateOptionsLocked(options);
1355
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001356 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1357
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001358 // If we are currently pausing an activity, then don't do anything
1359 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001360 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001361 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1362 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001363 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001364 return false;
1365 }
1366
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001367 // Okay we are now going to start a switch, to 'next'. We may first
1368 // have to pause the current activity, but this is an important point
1369 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001370 // XXX "App Redirected" dialog is getting too many false positives
1371 // at this point, so turn off for now.
1372 if (false) {
1373 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1374 long now = SystemClock.uptimeMillis();
1375 final boolean inTime = mLastStartedActivity.startTime != 0
1376 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1377 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1378 final int nextUid = next.info.applicationInfo.uid;
1379 if (inTime && lastUid != nextUid
1380 && lastUid != next.launchedFromUid
1381 && mService.checkPermission(
1382 android.Manifest.permission.STOP_APP_SWITCHES,
1383 -1, next.launchedFromUid)
1384 != PackageManager.PERMISSION_GRANTED) {
1385 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1386 } else {
1387 next.startTime = now;
1388 mLastStartedActivity = next;
1389 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001390 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001391 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001392 mLastStartedActivity = next;
1393 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001394 }
Craig Mautner58547802013-03-05 08:23:53 -08001395
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001396 // We need to start pausing the current activity so the top one
1397 // can be resumed...
Craig Mautner5314a402013-09-26 12:40:16 -07001398 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving);
Craig Mautnereb957862013-04-24 15:34:32 -07001399 if (mResumedActivity != null) {
1400 pausing = true;
1401 startPausingLocked(userLeaving, false);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001402 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnereb957862013-04-24 15:34:32 -07001403 }
1404 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001405 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1406 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001407 // At this point we want to put the upcoming activity's process
1408 // at the top of the LRU list, since we know we will be needing it
1409 // very soon and it would be a waste to let it get killed if it
1410 // happens to be sitting towards the end.
1411 if (next.app != null && next.app.thread != null) {
1412 // No reason to do full oom adj update here; we'll let that
1413 // happen whenever it needs to later.
Dianne Hackborndb926082013-10-31 16:32:44 -07001414 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001415 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001416 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001417 return true;
1418 }
1419
Christopher Tated3f175c2012-06-14 14:16:54 -07001420 // If the most recent activity was noHistory but was only stopped rather
1421 // than stopped+finished because the device went to sleep, we need to make
1422 // sure to finish it as we're making a new activity topmost.
Craig Mautner0f922742013-08-06 08:44:42 -07001423 if (mService.mSleeping && mLastNoHistoryActivity != null &&
1424 !mLastNoHistoryActivity.finishing) {
1425 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1426 " on new resume");
1427 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
1428 null, "no-history", false);
1429 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001430 }
1431
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001432 if (prev != null && prev != next) {
1433 if (!prev.waitingVisible && next != null && !next.nowVisible) {
1434 prev.waitingVisible = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001435 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001436 if (DEBUG_SWITCH) Slog.v(
1437 TAG, "Resuming top, waiting visible to hide: " + prev);
1438 } else {
1439 // The next activity is already visible, so hide the previous
1440 // activity's windows right now so we can show the new one ASAP.
1441 // We only do this if the previous is finishing, which should mean
1442 // it is on top of the one being resumed so hiding it quickly
1443 // is good. Otherwise, we want to do the normal route of allowing
1444 // the resumed activity to be shown so we can decide if the
1445 // previous should actually be hidden depending on whether the
1446 // new one is found to be full-screen or not.
1447 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001448 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001449 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1450 + prev + ", waitingVisible="
1451 + (prev != null ? prev.waitingVisible : null)
1452 + ", nowVisible=" + next.nowVisible);
1453 } else {
1454 if (DEBUG_SWITCH) Slog.v(TAG, "Previous already visible but still waiting to hide: "
1455 + prev + ", waitingVisible="
1456 + (prev != null ? prev.waitingVisible : null)
1457 + ", nowVisible=" + next.nowVisible);
1458 }
1459 }
1460 }
1461
Dianne Hackborne7f97212011-02-24 14:40:20 -08001462 // Launching this app's activity, make sure the app is no longer
1463 // considered stopped.
1464 try {
1465 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001466 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001467 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001468 } catch (IllegalArgumentException e) {
1469 Slog.w(TAG, "Failed trying to unstop package "
1470 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001471 }
1472
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001473 // We are starting up the next activity, so tell the window manager
1474 // that the previous one will be hidden soon. This way it can know
1475 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001476 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001477 if (prev != null) {
1478 if (prev.finishing) {
1479 if (DEBUG_TRANSITION) Slog.v(TAG,
1480 "Prepare close transition: prev=" + prev);
1481 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001482 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001483 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001484 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001485 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001486 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1487 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001488 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001489 mWindowManager.setAppWillBeHidden(prev.appToken);
1490 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001491 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001492 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001493 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001494 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001495 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001496 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001497 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001498 ? AppTransition.TRANSIT_ACTIVITY_OPEN
1499 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001500 }
1501 }
1502 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001503 mWindowManager.setAppWillBeHidden(prev.appToken);
1504 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001505 }
Craig Mautner967212c2013-04-13 21:10:58 -07001506 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001507 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001508 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001509 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001510 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001511 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001512 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001513 }
1514 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001515 if (anim) {
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001516 next.applyOptionsLocked();
1517 } else {
1518 next.clearOptionsLocked();
1519 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001520
Craig Mautnercf910b02013-04-23 11:23:27 -07001521 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001522 if (next.app != null && next.app.thread != null) {
1523 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1524
1525 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001526 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001527
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001528 // schedule launch ticks to collect information about slow apps.
1529 next.startLaunchTickingLocked();
1530
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001531 ActivityRecord lastResumedActivity =
1532 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001533 ActivityState lastState = next.state;
1534
1535 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001536
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001537 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001538 next.state = ActivityState.RESUMED;
1539 mResumedActivity = next;
1540 next.task.touchActiveTime();
Craig Mautnerd2328952013-03-05 12:46:26 -08001541 mService.addRecentTaskLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001542 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001543 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001544 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001545
1546 // Have the window manager re-evaluate the orientation of
1547 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001548 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001549 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001550 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001551 mService.mConfiguration,
1552 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1553 if (config != null) {
1554 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001555 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001556 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001557 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001558
Craig Mautner525f3d92013-05-07 14:01:50 -07001559 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001560 // The configuration update wasn't able to keep the existing
1561 // instance of the activity, and instead started a new one.
1562 // We should be all done, but let's just make sure our activity
1563 // is still at the top and schedule another run if something
1564 // weird happened.
1565 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001566 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001567 "Activity config changed during resume: " + next
1568 + ", new next: " + nextNext);
1569 if (nextNext != next) {
1570 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001571 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001572 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001573 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001574 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001575 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001576 return true;
1577 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001578 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001579 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001580 }
Craig Mautner58547802013-03-05 08:23:53 -08001581
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001582 try {
1583 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001584 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001585 if (a != null) {
1586 final int N = a.size();
1587 if (!next.finishing && N > 0) {
1588 if (DEBUG_RESULTS) Slog.v(
1589 TAG, "Delivering results to " + next
1590 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001591 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001592 }
1593 }
1594
1595 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001596 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001597 }
1598
1599 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001600 next.userId, System.identityHashCode(next),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001601 next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001602
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001603 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001604 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001605 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001606 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
1607 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001608 mService.isNextTransitionForward());
Craig Mautner58547802013-03-05 08:23:53 -08001609
Craig Mautner0eea92c2013-05-16 13:35:39 -07001610 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001611
Craig Mautnerac6f8432013-07-17 13:24:59 -07001612 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001613 } catch (Exception e) {
1614 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001615 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1616 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001617 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001618 if (lastStack != null) {
1619 lastStack.mResumedActivity = lastResumedActivity;
1620 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001621 Slog.i(TAG, "Restarting because process died: " + next);
1622 if (!next.hasBeenLaunched) {
1623 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001624 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1625 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001626 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001627 next.appToken, next.packageName, next.theme,
1628 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001629 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1630 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001631 }
Craig Mautnere79d42682013-04-01 19:01:53 -07001632 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001633 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001634 return true;
1635 }
1636
1637 // From this point on, if something goes wrong there is no way
1638 // to recover the activity.
1639 try {
1640 next.visible = true;
1641 completeResumeLocked(next);
1642 } catch (Exception e) {
1643 // If any exception gets thrown, toss away this
1644 // activity and try the next one.
1645 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001646 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001647 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001648 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001649 return true;
1650 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001651 next.stopped = false;
1652
1653 } else {
1654 // Whoops, need to restart this activity!
1655 if (!next.hasBeenLaunched) {
1656 next.hasBeenLaunched = true;
1657 } else {
1658 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001659 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001660 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001661 mService.compatibilityInfoForPackageLocked(
1662 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001663 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001664 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001665 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001666 }
1667 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1668 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001669 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
Craig Mautnere79d42682013-04-01 19:01:53 -07001670 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001671 }
1672
Craig Mautnercf910b02013-04-23 11:23:27 -07001673 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001674 return true;
1675 }
1676
Craig Mautnerac6f8432013-07-17 13:24:59 -07001677 private void insertTaskAtTop(TaskRecord task) {
Craig Mautner9c85c202013-10-04 20:11:26 -07001678 // If this is being moved to the top by another activity or being launched from the home
1679 // activity, set mOnTopOfHome accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001680 if (isOnHomeDisplay()) {
1681 ActivityStack lastStack = mStackSupervisor.getLastStack();
1682 final boolean fromHome = lastStack.isHomeStack();
1683 if (!isHomeStack() && (fromHome || topTask() != task)) {
1684 task.mOnTopOfHome = fromHome;
1685 }
1686 } else {
1687 task.mOnTopOfHome = false;
Craig Mautner9c85c202013-10-04 20:11:26 -07001688 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001689
Craig Mautnerac6f8432013-07-17 13:24:59 -07001690 mTaskHistory.remove(task);
1691 // Now put task at top.
1692 int stackNdx = mTaskHistory.size();
1693 if (task.userId != mCurrentUser) {
1694 // Put non-current user tasks below current user tasks.
1695 while (--stackNdx >= 0) {
1696 if (mTaskHistory.get(stackNdx).userId != mCurrentUser) {
1697 break;
1698 }
1699 }
1700 ++stackNdx;
1701 }
1702 mTaskHistory.add(stackNdx, task);
1703 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001704
Craig Mautner8849a5e2013-04-02 16:41:03 -07001705 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001706 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001707 TaskRecord rTask = r.task;
1708 final int taskId = rTask.taskId;
1709 if (taskForIdLocked(taskId) == null || newTask) {
Craig Mautner77878772013-03-04 19:46:24 -08001710 // Last activity in task had been removed or ActivityManagerService is reusing task.
1711 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001712 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001713 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001714 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001715 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001716 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001717 if (!newTask) {
1718 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001719 boolean startIt = true;
1720 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1721 task = mTaskHistory.get(taskNdx);
1722 if (task == r.task) {
1723 // Here it is! Now, if this is not yet visible to the
1724 // user, then just add it without starting; it will
1725 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001726 if (!startIt) {
1727 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1728 + task, new RuntimeException("here").fillInStackTrace());
1729 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001730 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001731 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1732 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001733 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001734 r.userId, r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001735 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001736 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001737 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001738 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001739 return;
1740 }
1741 break;
Craig Mautner70a86932013-02-28 22:37:44 -08001742 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001743 startIt = false;
1744 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001745 }
1746 }
1747
1748 // Place a new activity at top of stack, so it is next to interact
1749 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08001750
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001751 // If we are not placing the new activity frontmost, we do not want
1752 // to deliver the onUserLeaving callback to the actual frontmost
1753 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08001754 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001755 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08001756 if (DEBUG_USER_LEAVING) Slog.v(TAG,
1757 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001758 }
Craig Mautner70a86932013-02-28 22:37:44 -08001759
1760 task = r.task;
1761
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001762 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08001763 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08001764 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08001765 task.addActivityToTop(r);
Craig Mautner3b475fe2013-12-16 15:58:31 -08001766 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08001767
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001768 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001769 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001770 // We want to show the starting preview window if we are
1771 // switching to a new task, or the next activity's process is
1772 // not currently running.
1773 boolean showStartingIcon = newTask;
1774 ProcessRecord proc = r.app;
1775 if (proc == null) {
1776 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
1777 }
1778 if (proc == null || proc.thread == null) {
1779 showStartingIcon = true;
1780 }
1781 if (DEBUG_TRANSITION) Slog.v(TAG,
1782 "Prepare open transition: starting " + r);
1783 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001784 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001785 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001786 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001787 mWindowManager.prepareAppTransition(newTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08001788 ? AppTransition.TRANSIT_TASK_OPEN
1789 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001790 mNoAnimActivities.remove(r);
1791 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001792 r.updateOptionsLocked(options);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001793 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08001794 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001795 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1796 r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001797 boolean doShow = true;
1798 if (newTask) {
1799 // Even though this activity is starting fresh, we still need
1800 // to reset it to make sure we apply affinities to move any
1801 // existing activities from other tasks in to it.
1802 // If the caller has requested that the target task be
1803 // reset, then do so.
1804 if ((r.intent.getFlags()
1805 &Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
1806 resetTaskIfNeededLocked(r, r);
1807 doShow = topRunningNonDelayedActivityLocked(null) == r;
1808 }
1809 }
1810 if (SHOW_APP_STARTING_PREVIEW && doShow) {
1811 // Figure out if we are transitioning from another activity that is
1812 // "has the same starting icon" as the next one. This allows the
1813 // window manager to keep the previous window it had previously
1814 // created, if it still had one.
1815 ActivityRecord prev = mResumedActivity;
1816 if (prev != null) {
1817 // We don't want to reuse the previous starting preview if:
1818 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07001819 if (prev.task != r.task) {
1820 prev = null;
1821 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001822 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07001823 else if (prev.nowVisible) {
1824 prev = null;
1825 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001826 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001827 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001828 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001829 mService.compatibilityInfoForPackageLocked(
1830 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001831 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08001832 prev != null ? prev.appToken : null, showStartingIcon);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001833 }
1834 } else {
1835 // If this is the first activity, don't do any fancy animations,
1836 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001837 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08001838 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001839 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1840 r.info.configChanges);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001841 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001842 }
1843 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001844 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001845 }
1846
1847 if (doResume) {
Craig Mautner858d8a62013-04-23 17:08:34 -07001848 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001849 }
1850 }
1851
Dianne Hackbornbe707852011-11-11 14:32:10 -08001852 final void validateAppTokensLocked() {
1853 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08001854 mValidateAppTokens.ensureCapacity(numActivities());
1855 final int numTasks = mTaskHistory.size();
1856 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
1857 TaskRecord task = mTaskHistory.get(taskNdx);
1858 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07001859 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08001860 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001861 }
Craig Mautner000f0022013-02-26 15:04:29 -08001862 TaskGroup group = new TaskGroup();
1863 group.taskId = task.taskId;
1864 mValidateAppTokens.add(group);
1865 final int numActivities = activities.size();
1866 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1867 final ActivityRecord r = activities.get(activityNdx);
1868 group.tokens.add(r.appToken);
1869 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08001870 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001871 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001872 }
1873
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001874 /**
1875 * Perform a reset of the given task, if needed as part of launching it.
1876 * Returns the new HistoryRecord at the top of the task.
1877 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08001878 /**
1879 * Helper method for #resetTaskIfNeededLocked.
1880 * We are inside of the task being reset... we'll either finish this activity, push it out
1881 * for another task, or leave it as-is.
1882 * @param task The task containing the Activity (taskTop) that might be reset.
1883 * @param forceReset
1884 * @return An ActivityOptions that needs to be processed.
1885 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001886 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001887 ActivityOptions topOptions = null;
1888
1889 int replyChainEnd = -1;
1890 boolean canMoveOptions = true;
1891
1892 // We only do this for activities that are not the root of the task (since if we finish
1893 // the root, we may no longer have the task!).
1894 final ArrayList<ActivityRecord> activities = task.mActivities;
1895 final int numActivities = activities.size();
1896 for (int i = numActivities - 1; i > 0; --i ) {
1897 ActivityRecord target = activities.get(i);
1898
1899 final int flags = target.info.flags;
1900 final boolean finishOnTaskLaunch =
1901 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
1902 final boolean allowTaskReparenting =
1903 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
1904 final boolean clearWhenTaskReset =
1905 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
1906
1907 if (!finishOnTaskLaunch
1908 && !clearWhenTaskReset
1909 && target.resultTo != null) {
1910 // If this activity is sending a reply to a previous
1911 // activity, we can't do anything with it now until
1912 // we reach the start of the reply chain.
1913 // XXX note that we are assuming the result is always
1914 // to the previous activity, which is almost always
1915 // the case but we really shouldn't count on.
1916 if (replyChainEnd < 0) {
1917 replyChainEnd = i;
1918 }
1919 } else if (!finishOnTaskLaunch
1920 && !clearWhenTaskReset
1921 && allowTaskReparenting
1922 && target.taskAffinity != null
1923 && !target.taskAffinity.equals(task.affinity)) {
1924 // If this activity has an affinity for another
1925 // task, then we need to move it out of here. We will
1926 // move it as far out of the way as possible, to the
1927 // bottom of the activity stack. This also keeps it
1928 // correctly ordered with any activities we previously
1929 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08001930 final ThumbnailHolder newThumbHolder;
1931 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07001932 final ActivityRecord bottom =
1933 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08001934 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07001935 if (bottom != null && target.taskAffinity != null
1936 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001937 // If the activity currently at the bottom has the
1938 // same task affinity as the one we are moving,
1939 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08001940 targetTask = bottom.task;
1941 newThumbHolder = bottom.thumbHolder == null ? targetTask : bottom.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001942 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07001943 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001944 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08001945 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
1946 null, false);
1947 newThumbHolder = targetTask;
1948 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001949 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
1950 + " out to new task " + target.task);
1951 }
1952
Craig Mautner329f4122013-11-07 09:10:42 -08001953 if (clearWhenTaskReset) {
1954 // This is the start of a new sub-task.
1955 if (target.thumbHolder == null) {
1956 target.thumbHolder = new ThumbnailHolder();
1957 }
1958 } else {
1959 target.thumbHolder = newThumbHolder;
1960 }
1961
Craig Mautnere3a74d52013-02-22 14:14:58 -08001962 final int targetTaskId = targetTask.taskId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001963 mWindowManager.setAppGroupId(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001964
Craig Mautner525f3d92013-05-07 14:01:50 -07001965 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001966 final int start = replyChainEnd < 0 ? i : replyChainEnd;
1967 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07001968 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001969 if (p.finishing) {
1970 continue;
1971 }
1972
Craig Mautner525f3d92013-05-07 14:01:50 -07001973 ThumbnailHolder curThumbHolder = p.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001974 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07001975 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001976 topOptions = p.takeOptionsLocked();
1977 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001978 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001979 }
1980 }
1981 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08001982 + task + " adding to task=" + targetTask
1983 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08001984 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
1985 + " out to target's task " + target.task);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001986 p.setTask(targetTask, curThumbHolder, false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001987 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08001988
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001989 mWindowManager.setAppGroupId(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001990 }
1991
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001992 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001993 if (VALIDATE_TOKENS) {
1994 validateAppTokensLocked();
1995 }
1996
1997 replyChainEnd = -1;
1998 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
1999 // If the activity should just be removed -- either
2000 // because it asks for it, or the task should be
2001 // cleared -- then finish it and anything that is
2002 // part of its reply chain.
2003 int end;
2004 if (clearWhenTaskReset) {
2005 // In this case, we want to finish this activity
2006 // and everything above it, so be sneaky and pretend
2007 // like these are all in the reply chain.
2008 end = numActivities - 1;
2009 } else if (replyChainEnd < 0) {
2010 end = i;
2011 } else {
2012 end = replyChainEnd;
2013 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002014 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002015 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002016 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002017 if (p.finishing) {
2018 continue;
2019 }
2020 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002021 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002022 topOptions = p.takeOptionsLocked();
2023 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002024 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002025 }
2026 }
Craig Mautner58547802013-03-05 08:23:53 -08002027 if (DEBUG_TASKS) Slog.w(TAG,
2028 "resetTaskIntendedTask: calling finishActivity on " + p);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002029 if (finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002030 end--;
2031 srcPos--;
2032 }
2033 }
2034 replyChainEnd = -1;
2035 } else {
2036 // If we were in the middle of a chain, well the
2037 // activity that started it all doesn't want anything
2038 // special, so leave it all as-is.
2039 replyChainEnd = -1;
2040 }
2041 }
2042
2043 return topOptions;
2044 }
2045
2046 /**
2047 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2048 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2049 * @param affinityTask The task we are looking for an affinity to.
2050 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2051 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2052 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2053 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002054 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002055 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002056 int replyChainEnd = -1;
2057 final int taskId = task.taskId;
2058 final String taskAffinity = task.affinity;
2059
2060 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2061 final int numActivities = activities.size();
2062 // Do not operate on the root Activity.
2063 for (int i = numActivities - 1; i > 0; --i) {
2064 ActivityRecord target = activities.get(i);
2065
2066 final int flags = target.info.flags;
2067 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2068 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2069
2070 if (target.resultTo != null) {
2071 // If this activity is sending a reply to a previous
2072 // activity, we can't do anything with it now until
2073 // we reach the start of the reply chain.
2074 // XXX note that we are assuming the result is always
2075 // to the previous activity, which is almost always
2076 // the case but we really shouldn't count on.
2077 if (replyChainEnd < 0) {
2078 replyChainEnd = i;
2079 }
2080 } else if (topTaskIsHigher
2081 && allowTaskReparenting
2082 && taskAffinity != null
2083 && taskAffinity.equals(target.taskAffinity)) {
2084 // This activity has an affinity for our task. Either remove it if we are
2085 // clearing or move it over to our task. Note that
2086 // we currently punt on the case where we are resetting a
2087 // task that is not at the top but who has activities above
2088 // with an affinity to it... this is really not a normal
2089 // case, and we will need to later pull that task to the front
2090 // and usually at that point we will do the reset and pick
2091 // up those remaining activities. (This only happens if
2092 // someone starts an activity in a new task from an activity
2093 // in a task that is not currently on top.)
2094 if (forceReset || finishOnTaskLaunch) {
2095 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2096 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2097 for (int srcPos = start; srcPos >= i; --srcPos) {
2098 final ActivityRecord p = activities.get(srcPos);
2099 if (p.finishing) {
2100 continue;
2101 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08002102 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002103 }
2104 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002105 if (taskInsertionPoint < 0) {
2106 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002107
Craig Mautner77878772013-03-04 19:46:24 -08002108 }
Craig Mautner77878772013-03-04 19:46:24 -08002109
2110 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2111 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2112 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2113 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002114 final ActivityRecord p = activities.get(srcPos);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002115 p.setTask(task, null, false);
Craig Mautner77878772013-03-04 19:46:24 -08002116 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002117
Craig Mautnere3a74d52013-02-22 14:14:58 -08002118 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2119 + " to stack at " + task,
2120 new RuntimeException("here").fillInStackTrace());
2121 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2122 + " in to resetting task " + task);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002123 mWindowManager.setAppGroupId(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002124 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002125 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002126 if (VALIDATE_TOKENS) {
2127 validateAppTokensLocked();
2128 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002129
2130 // Now we've moved it in to place... but what if this is
2131 // a singleTop activity and we have put it on top of another
2132 // instance of the same activity? Then we drop the instance
2133 // below so it remains singleTop.
2134 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2135 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002136 int targetNdx = taskActivities.indexOf(target);
2137 if (targetNdx > 0) {
2138 ActivityRecord p = taskActivities.get(targetNdx - 1);
2139 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002140 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2141 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002142 }
2143 }
2144 }
2145 }
2146
2147 replyChainEnd = -1;
2148 }
2149 }
Craig Mautner77878772013-03-04 19:46:24 -08002150 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002151 }
2152
Craig Mautner8849a5e2013-04-02 16:41:03 -07002153 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002154 ActivityRecord newActivity) {
2155 boolean forceReset =
2156 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2157 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2158 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2159 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2160 forceReset = true;
2161 }
2162 }
2163
2164 final TaskRecord task = taskTop.task;
2165
2166 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2167 * for remaining tasks. Used for later tasks to reparent to task. */
2168 boolean taskFound = false;
2169
2170 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2171 ActivityOptions topOptions = null;
2172
Craig Mautner77878772013-03-04 19:46:24 -08002173 // Preserve the location for reparenting in the new task.
2174 int reparentInsertionPoint = -1;
2175
Craig Mautnere3a74d52013-02-22 14:14:58 -08002176 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2177 final TaskRecord targetTask = mTaskHistory.get(i);
2178
2179 if (targetTask == task) {
2180 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2181 taskFound = true;
2182 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002183 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2184 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002185 }
2186 }
2187
Craig Mautner70a86932013-02-28 22:37:44 -08002188 int taskNdx = mTaskHistory.indexOf(task);
2189 do {
2190 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2191 } while (taskTop == null && taskNdx >= 0);
2192
Craig Mautnere3a74d52013-02-22 14:14:58 -08002193 if (topOptions != null) {
2194 // If we got some ActivityOptions from an activity on top that
2195 // was removed from the task, propagate them to the new real top.
2196 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002197 taskTop.updateOptionsLocked(topOptions);
2198 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002199 topOptions.abort();
2200 }
2201 }
2202
2203 return taskTop;
2204 }
2205
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002206 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2207 String resultWho, int requestCode, int resultCode, Intent data) {
2208
2209 if (callingUid > 0) {
2210 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Dianne Hackborn7e269642010-08-25 19:50:20 -07002211 data, r.getUriPermissionsLocked());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002212 }
2213
2214 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2215 + " : who=" + resultWho + " req=" + requestCode
2216 + " res=" + resultCode + " data=" + data);
2217 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2218 try {
2219 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2220 list.add(new ResultInfo(resultWho, requestCode,
2221 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002222 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002223 return;
2224 } catch (Exception e) {
2225 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2226 }
2227 }
2228
2229 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2230 }
2231
Craig Mautner04f0b702013-10-22 12:31:01 -07002232 private void adjustFocusedActivityLocked(ActivityRecord r) {
2233 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2234 ActivityRecord next = topRunningActivityLocked(null);
2235 if (next != r) {
2236 final TaskRecord task = r.task;
2237 if (r.frontOfTask && task == topTask() && task.mOnTopOfHome) {
2238 mStackSupervisor.moveHomeToTop();
2239 }
2240 }
2241 mService.setFocusedActivityLocked(mStackSupervisor.topRunningActivityLocked());
2242 }
2243 }
2244
Craig Mautnerf3333272013-04-22 10:55:53 -07002245 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002246 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2247 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2248 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2249 if (!r.finishing) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002250 if (!mService.mSleeping) {
2251 if (DEBUG_STATES) {
2252 Slog.d(TAG, "no-history finish of " + r);
2253 }
2254 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002255 "no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002256 } else {
2257 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2258 + " on stop because we're just sleeping");
2259 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002260 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002261 }
2262
2263 if (r.app != null && r.app.thread != null) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002264 adjustFocusedActivityLocked(r);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002265 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002266 try {
2267 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002268 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2269 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002270 r.state = ActivityState.STOPPING;
2271 if (DEBUG_VISBILITY) Slog.v(
2272 TAG, "Stopping visible=" + r.visible + " for " + r);
2273 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002274 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002275 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002276 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002277 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002278 r.setSleeping(true);
2279 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002280 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002281 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002282 } catch (Exception e) {
2283 // Maybe just ignore exceptions here... if the process
2284 // has crashed, our death notification will clean things
2285 // up.
2286 Slog.w(TAG, "Exception thrown during pause", e);
2287 // Just in case, assume it to be stopped.
2288 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002289 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002290 r.state = ActivityState.STOPPED;
2291 if (r.configDestroy) {
Dianne Hackborn28695e02011-11-02 21:59:51 -07002292 destroyActivityLocked(r, true, false, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002293 }
2294 }
2295 }
2296 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002297
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002298 /**
2299 * @return Returns true if the activity is being finished, false if for
2300 * some reason it is being left as-is.
2301 */
2302 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002303 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002304 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002305 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002306 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002307 + ", result=" + resultCode + ", data=" + resultData
2308 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002309 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002310 return false;
2311 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002312
Craig Mautnerd44711d2013-02-23 11:24:36 -08002313 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002314 return true;
2315 }
2316
Craig Mautnerd2328952013-03-05 12:46:26 -08002317 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002318 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2319 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2320 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2321 ActivityRecord r = activities.get(activityNdx);
2322 if (r.resultTo == self && r.requestCode == requestCode) {
2323 if ((r.resultWho == null && resultWho == null) ||
2324 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2325 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2326 false);
2327 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002328 }
2329 }
2330 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002331 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002332 }
2333
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002334 final void finishTopRunningActivityLocked(ProcessRecord app) {
2335 ActivityRecord r = topRunningActivityLocked(null);
2336 if (r != null && r.app == app) {
2337 // If the top running activity is from this crashing
2338 // process, then terminate it to avoid getting in a loop.
2339 Slog.w(TAG, " Force finishing activity "
2340 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002341 int taskNdx = mTaskHistory.indexOf(r.task);
2342 int activityNdx = r.task.mActivities.indexOf(r);
Craig Mautnerd2328952013-03-05 12:46:26 -08002343 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002344 // Also terminate any activities below it that aren't yet
2345 // stopped, to avoid a situation where one will get
2346 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002347 --activityNdx;
2348 if (activityNdx < 0) {
2349 do {
2350 --taskNdx;
2351 if (taskNdx < 0) {
2352 break;
2353 }
2354 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2355 } while (activityNdx < 0);
2356 }
2357 if (activityNdx >= 0) {
2358 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002359 if (r.state == ActivityState.RESUMED
2360 || r.state == ActivityState.PAUSING
2361 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002362 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002363 Slog.w(TAG, " Force finishing activity "
2364 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08002365 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002366 }
2367 }
2368 }
2369 }
2370 }
2371
Craig Mautnerd2328952013-03-05 12:46:26 -08002372 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002373 ArrayList<ActivityRecord> activities = r.task.mActivities;
2374 for (int index = activities.indexOf(r); index >= 0; --index) {
2375 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002376 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002377 break;
2378 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002379 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002380 }
2381 return true;
2382 }
2383
Dianne Hackborn5c607432012-02-28 14:44:19 -08002384 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2385 // send the result
2386 ActivityRecord resultTo = r.resultTo;
2387 if (resultTo != null) {
2388 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2389 + " who=" + r.resultWho + " req=" + r.requestCode
2390 + " res=" + resultCode + " data=" + resultData);
2391 if (r.info.applicationInfo.uid > 0) {
2392 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2393 resultTo.packageName, resultData,
2394 resultTo.getUriPermissionsLocked());
2395 }
2396 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2397 resultData);
2398 r.resultTo = null;
2399 }
2400 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2401
2402 // Make sure this HistoryRecord is not holding on to other resources,
2403 // because clients have remote IPC references to this object so we
2404 // can't assume that will go away and want to avoid circular IPC refs.
2405 r.results = null;
2406 r.pendingResults = null;
2407 r.newIntents = null;
2408 r.icicle = null;
2409 }
2410
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002411 /**
2412 * @return Returns true if this activity has been removed from the history
2413 * list, or false if it is still in the list and will be removed later.
2414 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002415 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2416 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002417 if (r.finishing) {
2418 Slog.w(TAG, "Duplicate finish request for " + r);
2419 return false;
2420 }
2421
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002422 r.makeFinishing();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002423 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002424 r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002425 r.task.taskId, r.shortComponentName, reason);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002426 final ArrayList<ActivityRecord> activities = r.task.mActivities;
2427 final int index = activities.indexOf(r);
2428 if (index < (activities.size() - 1)) {
Craig Mautner3b475fe2013-12-16 15:58:31 -08002429 r.task.setFrontOfTask();
Craig Mautnerd44711d2013-02-23 11:24:36 -08002430 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
2431 // If the caller asked that this activity (and all above it)
2432 // be cleared when the task is reset, don't lose that information,
2433 // but propagate it up to the next activity.
Craig Mautner3b475fe2013-12-16 15:58:31 -08002434 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002435 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002436 }
2437 }
2438
2439 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002440
2441 adjustFocusedActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002442
Dianne Hackborn5c607432012-02-28 14:44:19 -08002443 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002444
Craig Mautnerc8143c62013-09-03 12:15:57 -07002445 if (!mService.mPendingThumbnails.isEmpty()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002446 // There are clients waiting to receive thumbnails so, in case
2447 // this is an activity that someone is waiting for, add it
2448 // to the pending list so we can correctly update the clients.
Craig Mautnerf3333272013-04-22 10:55:53 -07002449 mStackSupervisor.mCancelledThumbnails.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002450 }
2451
Craig Mautnerde4ef022013-04-07 19:01:33 -07002452 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002453 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002454 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002455 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002456 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002457 ? AppTransition.TRANSIT_TASK_CLOSE
2458 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002459
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002460 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002461 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002462
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002463 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002464 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2465 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
2466 startPausingLocked(false, false);
2467 }
2468
2469 } else if (r.state != ActivityState.PAUSING) {
2470 // If the activity is PAUSING, we will complete the finish once
2471 // it is done pausing; else we can just directly finish it here.
2472 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002473 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002474 } else {
2475 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2476 }
2477
2478 return false;
2479 }
2480
Craig Mautnerf3333272013-04-22 10:55:53 -07002481 static final int FINISH_IMMEDIATELY = 0;
2482 static final int FINISH_AFTER_PAUSE = 1;
2483 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002484
Craig Mautnerf3333272013-04-22 10:55:53 -07002485 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002486 // First things first: if this activity is currently visible,
2487 // and the resumed activity is not yet visible, then hold off on
2488 // finishing until the resumed one becomes visible.
2489 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002490 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2491 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002492 if (mStackSupervisor.mStoppingActivities.size() > 3
2493 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002494 // If we already have a few activities waiting to stop,
2495 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002496 // them out. Or if r is the last of activity of the last task the stack
2497 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002498 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002499 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002500 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002501 }
2502 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002503 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2504 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002505 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002506 if (oomAdj) {
2507 mService.updateOomAdjLocked();
2508 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002509 return r;
2510 }
2511
2512 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002513 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002514 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002515 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002516 if (mResumedActivity == r) {
2517 mResumedActivity = null;
2518 }
2519 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002520 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002521 r.state = ActivityState.FINISHING;
2522
2523 if (mode == FINISH_IMMEDIATELY
2524 || prevState == ActivityState.STOPPED
2525 || prevState == ActivityState.INITIALIZING) {
2526 // If this activity is already stopped, we can just finish
2527 // it right now.
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002528 boolean activityRemoved = destroyActivityLocked(r, true,
2529 oomAdj, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002530 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002531 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002532 }
2533 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002534 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002535
2536 // Need to go through the full pause cycle to get this
2537 // activity into the stopped state and then finish it.
2538 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002539 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002540 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002541 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002542 return r;
2543 }
2544
Craig Mautnerd2328952013-03-05 12:46:26 -08002545 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002546 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002547 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002548 final TaskRecord task = srec.task;
2549 final ArrayList<ActivityRecord> activities = task.mActivities;
2550 final int start = activities.indexOf(srec);
2551 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002552 return false;
2553 }
2554 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002555 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002556 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002557 final ComponentName dest = destIntent.getComponent();
2558 if (start > 0 && dest != null) {
2559 for (int i = finishTo; i >= 0; i--) {
2560 ActivityRecord r = activities.get(i);
2561 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002562 r.info.name.equals(dest.getClassName())) {
2563 finishTo = i;
2564 parent = r;
2565 foundParentInTask = true;
2566 break;
2567 }
2568 }
2569 }
2570
2571 IActivityController controller = mService.mController;
2572 if (controller != null) {
2573 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2574 if (next != null) {
2575 // ask watcher if this is allowed
2576 boolean resumeOK = true;
2577 try {
2578 resumeOK = controller.activityResuming(next.packageName);
2579 } catch (RemoteException e) {
2580 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002581 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002582 }
2583
2584 if (!resumeOK) {
2585 return false;
2586 }
2587 }
2588 }
2589 final long origId = Binder.clearCallingIdentity();
2590 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002591 ActivityRecord r = activities.get(i);
2592 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002593 // Only return the supplied result for the first activity finished
2594 resultCode = Activity.RESULT_CANCELED;
2595 resultData = null;
2596 }
2597
2598 if (parent != null && foundParentInTask) {
2599 final int parentLaunchMode = parent.info.launchMode;
2600 final int destIntentFlags = destIntent.getFlags();
2601 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2602 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2603 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2604 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
2605 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent);
2606 } else {
2607 try {
2608 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2609 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002610 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002611 null, aInfo, parent.appToken, null,
2612 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Craig Mautnere0a38842013-12-16 16:14:02 -08002613 0, null, true, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002614 foundParentInTask = res == ActivityManager.START_SUCCESS;
2615 } catch (RemoteException e) {
2616 foundParentInTask = false;
2617 }
2618 requestFinishActivityLocked(parent.appToken, resultCode,
2619 resultData, "navigate-up", true);
2620 }
2621 }
2622 Binder.restoreCallingIdentity(origId);
2623 return foundParentInTask;
2624 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002625 /**
2626 * Perform the common clean-up of an activity record. This is called both
2627 * as part of destroyActivityLocked() (when destroying the client-side
2628 * representation) and cleaning things up as a result of its hosting
2629 * processing going away, in which case there is no remaining client-side
2630 * state to destroy so only the cleanup here is needed.
2631 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002632 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2633 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002634 if (mResumedActivity == r) {
2635 mResumedActivity = null;
2636 }
2637 if (mService.mFocusedActivity == r) {
2638 mService.mFocusedActivity = null;
2639 }
2640
2641 r.configDestroy = false;
2642 r.frozenBeforeDestroy = false;
2643
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002644 if (setState) {
2645 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
2646 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002647 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002648 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002649 }
2650
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002651 // Make sure this record is no longer in the pending finishes list.
2652 // This could happen, for example, if we are trimming activities
2653 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07002654 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002655 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07002656
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002657 // Remove any pending results.
2658 if (r.finishing && r.pendingResults != null) {
2659 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
2660 PendingIntentRecord rec = apr.get();
2661 if (rec != null) {
2662 mService.cancelIntentSenderLocked(rec, false);
2663 }
2664 }
2665 r.pendingResults = null;
2666 }
2667
2668 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07002669 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002670 }
2671
Craig Mautnerc8143c62013-09-03 12:15:57 -07002672 if (!mService.mPendingThumbnails.isEmpty()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002673 // There are clients waiting to receive thumbnails so, in case
2674 // this is an activity that someone is waiting for, add it
2675 // to the pending list so we can correctly update the clients.
Craig Mautnerf3333272013-04-22 10:55:53 -07002676 mStackSupervisor.mCancelledThumbnails.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002677 }
2678
2679 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002680 removeTimeoutsForActivityLocked(r);
2681 }
2682
2683 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07002684 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002685 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002686 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002687 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002688 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002689 }
2690
Craig Mautner04a0ea62014-01-13 12:51:26 -08002691 private void removeActivityFromHistoryLocked(ActivityRecord r) {
Craig Mautner34b73df2014-01-12 21:11:08 -08002692 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002693 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
2694 r.makeFinishing();
2695 if (DEBUG_ADD_REMOVE) {
2696 RuntimeException here = new RuntimeException("here");
2697 here.fillInStackTrace();
2698 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002699 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002700 final TaskRecord task = r.task;
2701 if (task != null && task.removeActivity(r)) {
Craig Mautnera9a3fb12013-04-18 10:01:00 -07002702 if (DEBUG_STACK) Slog.i(TAG,
2703 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautnere1db0dd2013-10-13 18:15:00 -07002704 if (mStackSupervisor.isFrontStack(this) && task == topTask() && task.mOnTopOfHome) {
Craig Mautner8e569572013-10-11 17:36:59 -07002705 mStackSupervisor.moveHomeToTop();
2706 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08002707 removeTask(task);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002708 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002709 r.takeFromHistory();
2710 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08002711 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002712 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002713 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002714 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002715 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002716 if (VALIDATE_TOKENS) {
2717 validateAppTokensLocked();
2718 }
2719 cleanUpActivityServicesLocked(r);
2720 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002721 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002722
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002723 /**
2724 * Perform clean-up of service connections in an activity record.
2725 */
2726 final void cleanUpActivityServicesLocked(ActivityRecord r) {
2727 // Throw away any services that have been bound by this activity.
2728 if (r.connections != null) {
2729 Iterator<ConnectionRecord> it = r.connections.iterator();
2730 while (it.hasNext()) {
2731 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07002732 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002733 }
2734 r.connections = null;
2735 }
2736 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002737
2738 final void scheduleDestroyActivities(ProcessRecord owner, boolean oomAdj, String reason) {
2739 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
2740 msg.obj = new ScheduleDestroyArgs(owner, oomAdj, reason);
2741 mHandler.sendMessage(msg);
2742 }
2743
Dianne Hackborn28695e02011-11-02 21:59:51 -07002744 final void destroyActivitiesLocked(ProcessRecord owner, boolean oomAdj, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002745 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002746 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002747 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2748 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2749 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2750 final ActivityRecord r = activities.get(activityNdx);
2751 if (r.finishing) {
2752 continue;
2753 }
2754 if (r.fullscreen) {
2755 lastIsOpaque = true;
2756 }
2757 if (owner != null && r.app != owner) {
2758 continue;
2759 }
2760 if (!lastIsOpaque) {
2761 continue;
2762 }
2763 // We can destroy this one if we have its icicle saved and
2764 // it is not in the process of pausing/stopping/finishing.
2765 if (r.app != null && r != mResumedActivity && r != mPausingActivity
2766 && r.haveState && !r.visible && r.stopped
2767 && r.state != ActivityState.DESTROYING
2768 && r.state != ActivityState.DESTROYED) {
2769 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
2770 + " resumed=" + mResumedActivity
2771 + " pausing=" + mPausingActivity);
2772 if (destroyActivityLocked(r, true, oomAdj, reason)) {
2773 activityRemoved = true;
2774 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002775 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002776 }
2777 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002778 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002779 mStackSupervisor.resumeTopActivitiesLocked();
2780
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002781 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002782 }
2783
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002784 /**
2785 * Destroy the current CLIENT SIDE instance of an activity. This may be
2786 * called both when actually finishing an activity, or when performing
2787 * a configuration switch where we destroy the current client-side object
2788 * but then create a new client-side object for this same HistoryRecord.
2789 */
2790 final boolean destroyActivityLocked(ActivityRecord r,
Dianne Hackborn28695e02011-11-02 21:59:51 -07002791 boolean removeFromApp, boolean oomAdj, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002792 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002793 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002794 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
2795 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002796 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07002797 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002798
2799 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002800
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002801 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002802
2803 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002804
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002805 if (hadApp) {
2806 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002807 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002808 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
2809 mService.mHeavyWeightProcess = null;
2810 mService.mHandler.sendEmptyMessage(
2811 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
2812 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07002813 if (r.app.activities.isEmpty()) {
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07002814 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07002815 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002816 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002817 }
2818 }
2819
2820 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002821
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002822 try {
2823 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002824 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002825 r.configChangeFlags);
2826 } catch (Exception e) {
2827 // We can just ignore exceptions here... if the process
2828 // has crashed, our death notification will clean things
2829 // up.
2830 //Slog.w(TAG, "Exception thrown during finish", e);
2831 if (r.finishing) {
2832 removeActivityFromHistoryLocked(r);
2833 removedFromHistory = true;
2834 skipDestroy = true;
2835 }
2836 }
2837
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002838 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002839
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002840 // If the activity is finishing, we need to wait on removing it
2841 // from the list to give it a chance to do its cleanup. During
2842 // that time it may make calls back with its token so we need to
2843 // be able to find it on the list and so we don't want to remove
2844 // it from the list yet. Otherwise, we can just immediately put
2845 // it in the destroyed state since we are not removing it from the
2846 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002847 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002848 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
2849 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002850 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002851 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002852 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
2853 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002854 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002855 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002856 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002857 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002858 }
2859 } else {
2860 // remove this record from the history.
2861 if (r.finishing) {
2862 removeActivityFromHistoryLocked(r);
2863 removedFromHistory = true;
2864 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002865 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002866 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002867 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002868 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002869 }
2870 }
2871
2872 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002873
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002874 if (!mLRUActivities.remove(r) && hadApp) {
2875 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
2876 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002877
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002878 return removedFromHistory;
2879 }
2880
Craig Mautnerd2328952013-03-05 12:46:26 -08002881 final void activityDestroyedLocked(IBinder token) {
2882 final long origId = Binder.clearCallingIdentity();
2883 try {
2884 ActivityRecord r = ActivityRecord.forToken(token);
2885 if (r != null) {
2886 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002887 }
Craig Mautnerd2328952013-03-05 12:46:26 -08002888
2889 if (isInStackLocked(token) != null) {
2890 if (r.state == ActivityState.DESTROYING) {
2891 cleanUpActivityLocked(r, true, false);
2892 removeActivityFromHistoryLocked(r);
2893 }
2894 }
Craig Mautner05d29032013-05-03 13:40:13 -07002895 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08002896 } finally {
2897 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002898 }
2899 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002900
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002901 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
2902 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002903 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002904 if (DEBUG_CLEANUP) Slog.v(
2905 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002906 + " with " + i + " entries");
2907 while (i > 0) {
2908 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002909 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002910 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002911 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002912 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002913 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002914 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002915 }
2916 }
2917 }
2918
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002919 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
2920 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07002921 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
2922 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07002923 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
2924 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07002925 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002926 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07002927 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
2928 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002929
2930 boolean hasVisibleActivities = false;
2931
2932 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08002933 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002934 if (DEBUG_CLEANUP) Slog.v(
2935 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08002936 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2937 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2938 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2939 final ActivityRecord r = activities.get(activityNdx);
2940 --i;
2941 if (DEBUG_CLEANUP) Slog.v(
2942 TAG, "Record #" + i + " " + r + ": app=" + r.app);
2943 if (r.app == app) {
2944 boolean remove;
2945 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
2946 // Don't currently have state for the activity, or
2947 // it is finishing -- always remove it.
2948 remove = true;
2949 } else if (r.launchCount > 2 &&
2950 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
2951 // We have launched this activity too many times since it was
2952 // able to run, so give up and remove it.
2953 remove = true;
2954 } else {
2955 // The process may be gone, but the activity lives on!
2956 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002957 }
Craig Mautner0247fc82013-02-28 14:32:06 -08002958 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002959 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002960 RuntimeException here = new RuntimeException("here");
2961 here.fillInStackTrace();
2962 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
2963 + ": haveState=" + r.haveState
2964 + " stateNotNeeded=" + r.stateNotNeeded
2965 + " finishing=" + r.finishing
2966 + " state=" + r.state, here);
2967 }
2968 if (!r.finishing) {
2969 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
2970 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
2971 r.userId, System.identityHashCode(r),
2972 r.task.taskId, r.shortComponentName,
2973 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07002974 if (r.state == ActivityState.RESUMED) {
2975 mService.updateUsageStats(r, false);
2976 }
Craig Mautner0247fc82013-02-28 14:32:06 -08002977 }
2978 removeActivityFromHistoryLocked(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002979
Craig Mautner0247fc82013-02-28 14:32:06 -08002980 } else {
2981 // We have the current state for this activity, so
2982 // it can be restarted later when needed.
2983 if (localLOGV) Slog.v(
2984 TAG, "Keeping entry, setting app to null");
2985 if (r.visible) {
2986 hasVisibleActivities = true;
2987 }
2988 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
2989 + r);
2990 r.app = null;
2991 r.nowVisible = false;
2992 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002993 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08002994 "App died, clearing saved state of " + r);
2995 r.icicle = null;
2996 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002997 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002998
Craig Mautnerd2328952013-03-05 12:46:26 -08002999 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003000 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003001 }
3002 }
3003
3004 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003005 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003006
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003007 final void updateTransitLocked(int transit, Bundle options) {
3008 if (options != null) {
3009 ActivityRecord r = topRunningActivityLocked(null);
3010 if (r != null && r.state != ActivityState.RESUMED) {
3011 r.updateOptionsLocked(options);
3012 } else {
3013 ActivityOptions.abort(options);
3014 }
3015 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003016 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003017 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003018
Craig Mautnera82aa092013-09-13 15:34:08 -07003019 void moveHomeTaskToTop() {
3020 final int top = mTaskHistory.size() - 1;
3021 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3022 final TaskRecord task = mTaskHistory.get(taskNdx);
3023 if (task.isHomeTask()) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -07003024 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG, "moveHomeTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003025 mTaskHistory.remove(taskNdx);
3026 mTaskHistory.add(top, task);
3027 mWindowManager.moveTaskToTop(task.taskId);
3028 return;
3029 }
3030 }
3031 }
3032
Craig Mautnercae015f2013-02-08 14:31:27 -08003033 final boolean findTaskToMoveToFrontLocked(int taskId, int flags, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003034 final TaskRecord task = taskForIdLocked(taskId);
3035 if (task != null) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003036 if ((flags & ActivityManager.MOVE_TASK_NO_USER_ACTION) == 0) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003037 mStackSupervisor.mUserLeaving = true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003038 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003039 if ((flags & ActivityManager.MOVE_TASK_WITH_HOME) != 0) {
3040 // Caller wants the home activity moved with it. To accomplish this,
Craig Mautnere418ecd2013-05-01 17:02:29 -07003041 // we'll just indicate that this task returns to the home task.
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003042 task.mOnTopOfHome = true;
Craig Mautneraab647e2013-02-28 16:31:36 -08003043 }
3044 moveTaskToFrontLocked(task, null, options);
3045 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003046 }
3047 return false;
3048 }
3049
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003050 final void moveTaskToFrontLocked(TaskRecord tr, ActivityRecord reason, Bundle options) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003051 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003052
Craig Mautner11bf9a52013-02-19 14:08:51 -08003053 final int numTasks = mTaskHistory.size();
3054 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003055 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003056 // nothing to do!
3057 if (reason != null &&
3058 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3059 ActivityOptions.abort(options);
3060 } else {
3061 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3062 }
3063 return;
3064 }
3065
Craig Mautnere0a38842013-12-16 16:14:02 -08003066 moveToFront();
Craig Mautnerfb1e20d2013-06-23 21:24:13 -07003067
Craig Mautner11bf9a52013-02-19 14:08:51 -08003068 // Shift all activities with this task up to the top
3069 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003070 insertTaskAtTop(tr);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003071
3072 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003073 if (reason != null &&
3074 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003075 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003076 ActivityRecord r = topRunningActivityLocked(null);
3077 if (r != null) {
3078 mNoAnimActivities.add(r);
3079 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003080 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003081 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003082 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003083 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003084
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003085 mWindowManager.moveTaskToTop(tr.taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003086
Craig Mautner05d29032013-05-03 13:40:13 -07003087 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003088 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003089
3090 if (VALIDATE_TOKENS) {
3091 validateAppTokensLocked();
3092 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003093 }
3094
3095 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003096 * Worker method for rearranging history stack. Implements the function of moving all
3097 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003098 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003099 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003100 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3101 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003102 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003103 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003104 * @return Returns true if the move completed, false if not.
3105 */
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003106 final boolean moveTaskToBackLocked(int taskId, ActivityRecord reason) {
3107 Slog.i(TAG, "moveTaskToBack: " + taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003108
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003109 // If we have a watcher, preflight the move before committing to it. First check
3110 // for *other* available tasks, but if none are available, then try again allowing the
3111 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003112 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003113 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003114 if (next == null) {
3115 next = topRunningActivityLocked(null, 0);
3116 }
3117 if (next != null) {
3118 // ask watcher if this is allowed
3119 boolean moveOK = true;
3120 try {
3121 moveOK = mService.mController.activityResuming(next.packageName);
3122 } catch (RemoteException e) {
3123 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003124 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003125 }
3126 if (!moveOK) {
3127 return false;
3128 }
3129 }
3130 }
3131
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003132 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003133 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003134
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003135 final TaskRecord tr = taskForIdLocked(taskId);
Craig Mautnerd2328952013-03-05 12:46:26 -08003136 if (tr == null) {
3137 return false;
3138 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003139
Craig Mautner11bf9a52013-02-19 14:08:51 -08003140 mTaskHistory.remove(tr);
3141 mTaskHistory.add(0, tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003142
Craig Mautnerc8143c62013-09-03 12:15:57 -07003143 // There is an assumption that moving a task to the back moves it behind the home activity.
3144 // We make sure here that some activity in the stack will launch home.
3145 ActivityRecord lastActivity = null;
3146 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003147 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3148 final TaskRecord task = mTaskHistory.get(taskNdx);
3149 if (task.mOnTopOfHome) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003150 break;
3151 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003152 if (taskNdx == 1) {
3153 // Set the last task before tr to go to home.
3154 task.mOnTopOfHome = true;
3155 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003156 }
3157
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003158 if (reason != null &&
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003159 (reason.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3160 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003161 ActivityRecord r = topRunningActivityLocked(null);
3162 if (r != null) {
3163 mNoAnimActivities.add(r);
3164 }
3165 } else {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003166 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003167 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003168 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003169
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003170 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003171 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003172 }
3173
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003174 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Craig Mautnere0a38842013-12-16 16:14:02 -08003175 if (task == tr && tr.mOnTopOfHome || numTasks <= 1 && isOnHomeDisplay()) {
Daniel 2 Olofsson9cdf9e52013-12-16 13:24:25 +01003176 tr.mOnTopOfHome = false;
Craig Mautner69ada552013-04-18 13:51:51 -07003177 return mStackSupervisor.resumeHomeActivity(null);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003178 }
3179
Craig Mautner05d29032013-05-03 13:40:13 -07003180 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003181 return true;
3182 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003183
Craig Mautner8849a5e2013-04-02 16:41:03 -07003184 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003185 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003186 final Uri data = r.intent.getData();
3187 final String strData = data != null ? data.toSafeString() : null;
3188
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003189 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003190 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003191 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003192 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003193 }
3194
3195 /**
3196 * Make sure the given activity matches the current configuration. Returns
3197 * false if the activity had to be destroyed. Returns true if the
3198 * configuration is the same, or the activity will remain running as-is
3199 * for whatever reason. Ensures the HistoryRecord is updated with the
3200 * correct configuration and all other bookkeeping is handled.
3201 */
3202 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3203 int globalChanges) {
3204 if (mConfigWillChange) {
3205 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3206 "Skipping config check (will change): " + r);
3207 return true;
3208 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003209
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003210 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3211 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003212
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003213 // Short circuit: if the two configurations are the exact same
3214 // object (the common case), then there is nothing to do.
3215 Configuration newConfig = mService.mConfiguration;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003216 if (r.configuration == newConfig && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003217 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3218 "Configuration unchanged in " + r);
3219 return true;
3220 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003221
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003222 // We don't worry about activities that are finishing.
3223 if (r.finishing) {
3224 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3225 "Configuration doesn't matter in finishing " + r);
3226 r.stopFreezingScreenLocked(false);
3227 return true;
3228 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003229
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003230 // Okay we now are going to make this activity have the new config.
3231 // But then we need to figure out how it needs to deal with that.
3232 Configuration oldConfig = r.configuration;
3233 r.configuration = newConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003234
3235 // Determine what has changed. May be nothing, if this is a config
3236 // that has come back from the app after going idle. In that case
3237 // we just want to leave the official config object now in the
3238 // activity and do nothing else.
3239 final int changes = oldConfig.diff(newConfig);
3240 if (changes == 0 && !r.forceNewConfig) {
3241 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3242 "Configuration no differences in " + r);
3243 return true;
3244 }
3245
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003246 // If the activity isn't currently running, just leave the new
3247 // configuration and it will pick that up next time it starts.
3248 if (r.app == null || r.app.thread == null) {
3249 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3250 "Configuration doesn't matter not running " + r);
3251 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003252 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003253 return true;
3254 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003255
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003256 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003257 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3258 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3259 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003260 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003261 + ", newConfig=" + newConfig);
3262 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003263 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003264 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3265 r.configChangeFlags |= changes;
3266 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003267 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003268 if (r.app == null || r.app.thread == null) {
3269 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003270 "Config is destroying non-running " + r);
Dianne Hackborn28695e02011-11-02 21:59:51 -07003271 destroyActivityLocked(r, true, false, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003272 } else if (r.state == ActivityState.PAUSING) {
3273 // A little annoying: we are waiting for this activity to
3274 // finish pausing. Let's not do anything now, but just
3275 // flag that it needs to be restarted when done pausing.
3276 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003277 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003278 r.configDestroy = true;
3279 return true;
3280 } else if (r.state == ActivityState.RESUMED) {
3281 // Try to optimize this case: the configuration is changing
3282 // and we need to restart the top, resumed activity.
3283 // Instead of doing the normal handshaking, just say
3284 // "restart!".
3285 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003286 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003287 relaunchActivityLocked(r, r.configChangeFlags, true);
3288 r.configChangeFlags = 0;
3289 } else {
3290 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003291 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003292 relaunchActivityLocked(r, r.configChangeFlags, false);
3293 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003294 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003295
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003296 // All done... tell the caller we weren't able to keep this
3297 // activity around.
3298 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003299 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003300
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003301 // Default case: the activity can handle this new configuration, so
3302 // hand it over. Note that we don't need to give it the new
3303 // configuration, since we always send configuration changes to all
3304 // process when they happen so it can just use whatever configuration
3305 // it last got.
3306 if (r.app != null && r.app.thread != null) {
3307 try {
3308 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003309 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003310 } catch (RemoteException e) {
3311 // If process died, whatever.
3312 }
3313 }
3314 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003315
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003316 return true;
3317 }
3318
Craig Mautnerc8143c62013-09-03 12:15:57 -07003319 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003320 int changes, boolean andResume) {
3321 List<ResultInfo> results = null;
3322 List<Intent> newIntents = null;
3323 if (andResume) {
3324 results = r.results;
3325 newIntents = r.newIntents;
3326 }
3327 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3328 + " with results=" + results + " newIntents=" + newIntents
3329 + " andResume=" + andResume);
3330 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003331 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003332 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003333
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003334 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003335
Craig Mautner34b73df2014-01-12 21:11:08 -08003336 mStackSupervisor.removeChildActivityContainers(r);
3337
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003338 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003339 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3340 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3341 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003342 r.forceNewConfig = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08003343 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents,
Dianne Hackborn813075a62011-11-14 17:45:19 -08003344 changes, !andResume, new Configuration(mService.mConfiguration));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003345 // Note: don't need to call pauseIfSleepingLocked() here, because
3346 // the caller will only pass in 'andResume' if this activity is
3347 // currently resumed, which implies we aren't sleeping.
3348 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003349 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003350 }
3351
3352 if (andResume) {
3353 r.results = null;
3354 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003355 r.state = ActivityState.RESUMED;
3356 } else {
3357 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3358 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003359 }
3360
3361 return true;
3362 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003363
3364 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003365 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3366 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3367 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3368 final ActivityRecord r = activities.get(activityNdx);
3369 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003370 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003371 }
3372 if (r.fullscreen && !r.finishing) {
3373 return false;
3374 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003375 }
3376 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003377 final ActivityRecord r = ActivityRecord.forToken(token);
3378 if (r == null) {
3379 return false;
3380 }
3381 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3382 + " would have returned true for r=" + r);
3383 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003384 }
3385
3386 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003387 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3388 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3389 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3390 final ActivityRecord r = activities.get(activityNdx);
3391 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003392 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003393 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003394 }
3395 }
3396 }
3397
3398 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3399 boolean didSomething = false;
3400 TaskRecord lastTask = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003401 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3402 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3403 int numActivities = activities.size();
3404 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3405 ActivityRecord r = activities.get(activityNdx);
3406 final boolean samePackage = r.packageName.equals(name)
3407 || (name == null && r.userId == userId);
3408 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3409 && (samePackage || r.task == lastTask)
3410 && (r.app == null || evenPersistent || !r.app.persistent)) {
3411 if (!doit) {
3412 if (r.finishing) {
3413 // If this activity is just finishing, then it is not
3414 // interesting as far as something to stop.
3415 continue;
3416 }
3417 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003418 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003419 didSomething = true;
3420 Slog.i(TAG, " Force finishing activity " + r);
3421 if (samePackage) {
3422 if (r.app != null) {
3423 r.app.removed = true;
3424 }
3425 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003426 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003427 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003428 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3429 true)) {
3430 // r has been deleted from mActivities, accommodate.
3431 --numActivities;
3432 --activityNdx;
3433 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003434 }
3435 }
3436 }
3437 return didSomething;
3438 }
3439
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003440 ActivityRecord getTasksLocked(IThumbnailReceiver receiver,
Craig Mautneraab647e2013-02-28 16:31:36 -08003441 PendingThumbnailsRecord pending, List<RunningTaskInfo> list) {
Craig Mautnercae015f2013-02-08 14:31:27 -08003442 ActivityRecord topRecord = null;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003443 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003444 final TaskRecord task = mTaskHistory.get(taskNdx);
3445 ActivityRecord r = null;
3446 ActivityRecord top = null;
3447 int numActivities = 0;
3448 int numRunning = 0;
3449 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003450 if (activities.isEmpty()) {
3451 continue;
3452 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003453 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3454 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003455
Craig Mautneraab647e2013-02-28 16:31:36 -08003456 // Initialize state for next task if needed.
3457 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3458 top = r;
3459 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003460 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003461
3462 // Add 'r' into the current task.
3463 numActivities++;
3464 if (r.app != null && r.app.thread != null) {
3465 numRunning++;
3466 }
3467
3468 if (localLOGV) Slog.v(
3469 TAG, r.intent.getComponent().flattenToShortString()
3470 + ": task=" + r.task);
3471 }
3472
3473 RunningTaskInfo ci = new RunningTaskInfo();
3474 ci.id = task.taskId;
3475 ci.baseActivity = r.intent.getComponent();
3476 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003477 ci.lastActiveTime = task.lastActiveTime;
3478
Craig Mautneraab647e2013-02-28 16:31:36 -08003479 if (top.thumbHolder != null) {
3480 ci.description = top.thumbHolder.lastDescription;
3481 }
3482 ci.numActivities = numActivities;
3483 ci.numRunning = numRunning;
3484 //System.out.println(
3485 // "#" + maxNum + ": " + " descr=" + ci.description);
3486 if (receiver != null) {
3487 if (localLOGV) Slog.v(
3488 TAG, "State=" + top.state + "Idle=" + top.idle
3489 + " app=" + top.app
3490 + " thr=" + (top.app != null ? top.app.thread : null));
3491 if (top.state == ActivityState.RESUMED || top.state == ActivityState.PAUSING) {
3492 if (top.idle && top.app != null && top.app.thread != null) {
3493 topRecord = top;
3494 } else {
3495 top.thumbnailNeeded = true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003496 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003497 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003498 pending.pendingRecords.add(top);
Craig Mautnercae015f2013-02-08 14:31:27 -08003499 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003500 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003501 }
3502 return topRecord;
3503 }
3504
3505 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003506 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003507 if (DEBUG_SWITCH) Slog.d(
3508 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003509 if (top >= 0) {
3510 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3511 int activityTop = activities.size() - 1;
3512 if (activityTop > 0) {
3513 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3514 "unhandled-back", true);
3515 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003516 }
3517 }
3518
Craig Mautner6b74cb52013-09-27 17:02:21 -07003519 /**
3520 * Reset local parameters because an app's activity died.
3521 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003522 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003523 */
3524 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003525 if (mPausingActivity != null && mPausingActivity.app == app) {
3526 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3527 "App died while pausing: " + mPausingActivity);
3528 mPausingActivity = null;
3529 }
3530 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3531 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003532 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003533 }
3534
Craig Mautner19091252013-10-05 00:03:53 -07003535 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003536 }
3537
Craig Mautnercae015f2013-02-08 14:31:27 -08003538 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003539 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3540 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3541 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3542 final ActivityRecord r = activities.get(activityNdx);
3543 if (r.app == app) {
3544 Slog.w(TAG, " Force finishing activity "
3545 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08003546 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003547 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003548 }
3549 }
3550 }
3551
Dianne Hackborn390517b2013-05-30 15:03:32 -07003552 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003553 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003554 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08003555 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3556 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07003557 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
3558 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003559 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07003560 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003561 if (printed) {
3562 header = null;
3563 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003564 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003565 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08003566 }
3567
3568 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
3569 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
3570
3571 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003572 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3573 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08003574 }
3575 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003576 final int top = mTaskHistory.size() - 1;
3577 if (top >= 0) {
3578 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
3579 int listTop = list.size() - 1;
3580 if (listTop >= 0) {
3581 activities.add(list.get(listTop));
3582 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003583 }
3584 } else {
3585 ItemMatcher matcher = new ItemMatcher();
3586 matcher.build(name);
3587
Craig Mautneraab647e2013-02-28 16:31:36 -08003588 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3589 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
3590 if (matcher.match(r1, r1.intent.getComponent())) {
3591 activities.add(r1);
3592 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003593 }
3594 }
3595 }
3596
3597 return activities;
3598 }
3599
3600 ActivityRecord restartPackage(String packageName) {
3601 ActivityRecord starting = topRunningActivityLocked(null);
3602
3603 // All activities that came from the package must be
3604 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08003605 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3606 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3607 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3608 final ActivityRecord a = activities.get(activityNdx);
3609 if (a.info.packageName.equals(packageName)) {
3610 a.forceNewConfig = true;
3611 if (starting != null && a == starting && a.visible) {
3612 a.startFreezingScreenLocked(starting.app,
3613 ActivityInfo.CONFIG_SCREEN_LAYOUT);
3614 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003615 }
3616 }
3617 }
3618
3619 return starting;
3620 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003621
Craig Mautner04a0ea62014-01-13 12:51:26 -08003622 void removeTask(TaskRecord task) {
3623 mWindowManager.removeTask(task.taskId);
3624 final ActivityRecord r = mResumedActivity;
3625 if (r != null && r.task == task) {
3626 mResumedActivity = null;
3627 }
3628
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003629 final int taskNdx = mTaskHistory.indexOf(task);
3630 final int topTaskNdx = mTaskHistory.size() - 1;
3631 if (task.mOnTopOfHome && taskNdx < topTaskNdx) {
3632 mTaskHistory.get(taskNdx + 1).mOnTopOfHome = true;
3633 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003634 mTaskHistory.remove(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08003635
3636 if (mTaskHistory.isEmpty()) {
3637 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
3638 if (isOnHomeDisplay()) {
3639 mStackSupervisor.moveHomeStack(!isHomeStack());
3640 }
Craig Mautner593a4e62014-01-15 17:55:51 -08003641 if (mStacks != null) {
3642 mStacks.remove(this);
3643 mStacks.add(0, this);
3644 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08003645 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003646 }
3647
Craig Mautnerde4ef022013-04-07 19:01:33 -07003648 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent, boolean toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003649 TaskRecord task = new TaskRecord(taskId, info, intent);
3650 addTask(task, toTop);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003651 return task;
3652 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08003653
3654 ArrayList<TaskRecord> getAllTasks() {
3655 return new ArrayList<TaskRecord>(mTaskHistory);
3656 }
3657
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07003658 void addTask(final TaskRecord task, final boolean toTop) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08003659 task.stack = this;
3660 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003661 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08003662 } else {
3663 mTaskHistory.add(0, task);
3664 }
3665 }
3666
3667 public int getStackId() {
3668 return mStackId;
3669 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003670
3671 @Override
3672 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07003673 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
3674 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07003675 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003676}