blob: 2e914aa3ceec009509e5650d795bc276e0c397e6 [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
Adam Powellcfbe9be2013-11-06 14:58:58 -080039import android.os.Trace;
40import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070041import com.android.internal.os.BatteryStatsImpl;
Craig Mautnerd74f7d72013-02-26 13:41:02 -080042import com.android.internal.util.Objects;
Kenny Rootadd58212013-05-07 09:47:34 -070043import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080044import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4b71aa12012-12-27 17:20:01 -080045import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080046import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070047import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070048
49import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070050import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070051import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070052import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080053import android.app.IActivityController;
Craig Mautnercae015f2013-02-08 14:31:27 -080054import android.app.IThumbnailReceiver;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080056import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070057import android.content.ComponentName;
58import android.content.Context;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070060import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070062import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080063import android.content.res.Resources;
64import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080065import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070067import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080068import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.os.Handler;
70import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090071import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070072import android.os.Message;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070073import android.os.RemoteException;
74import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080075import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070076import android.os.UserHandle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070077import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070079import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070080
Craig Mautnercae015f2013-02-08 14:31:27 -080081import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080082import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070083import java.lang.ref.WeakReference;
84import java.util.ArrayList;
85import java.util.Iterator;
86import java.util.List;
87
88/**
89 * State and management of a single stack of activities.
90 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070091final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080092
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -070093 // Ticks during which we check progress while waiting for an app to launch.
94 static final int LAUNCH_TICK = 500;
95
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070096 // How long we wait until giving up on the last activity to pause. This
97 // is short because it directly impacts the responsiveness of starting the
98 // next activity.
99 static final int PAUSE_TIMEOUT = 500;
100
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700101 // How long we wait for the activity to tell us it has stopped before
102 // giving up. This is a good amount of time because we really need this
103 // from the application in order to get its saved state.
104 static final int STOP_TIMEOUT = 10*1000;
105
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700106 // How long we wait until giving up on an activity telling us it has
107 // finished destroying itself.
108 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800109
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700110 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800111 // disabled.
112 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800113
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700114 // How long between activity launches that we consider safe to not warn
115 // the user about an unexpected activity being launched on top.
116 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800117
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700118 // Set to false to disable the preview that is shown while a new activity
119 // is being started.
120 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800121
Craig Mautner5eda9b32013-07-02 11:58:16 -0700122 // How long to wait for all background Activities to redraw following a call to
123 // convertToTranslucent().
124 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
125
Craig Mautnera61bc652013-10-28 15:43:18 -0700126 static final boolean SCREENSHOT_FORCE_565 = ActivityManager.isLowRamDeviceStatic();
John Reck172e87c2013-10-02 16:55:16 -0700127
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700128 enum ActivityState {
129 INITIALIZING,
130 RESUMED,
131 PAUSING,
132 PAUSED,
133 STOPPING,
134 STOPPED,
135 FINISHING,
136 DESTROYING,
137 DESTROYED
138 }
139
140 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700141 final WindowManagerService mWindowManager;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800142
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700143 final Context mContext;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800144
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700145 /**
146 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800147 * running) activities. It contains #TaskRecord objects.
148 */
149 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
150
151 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800152 * Used for validating app tokens with window manager.
153 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800154 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800155
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700156 /**
157 * List of running activities, sorted by recent usage.
158 * The first entry in the list is the least recently used.
159 * It contains HistoryRecord objects.
160 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700161 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700162
163 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700164 * Animations that for the current transition have requested not to
165 * be considered for the transition animation.
166 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700167 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700168
169 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170 * When we are in the process of pausing an activity, before starting the
171 * next one, this variable holds the activity that is currently being paused.
172 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800173 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700174
175 /**
176 * This is the last activity that we put into the paused state. This is
177 * used to determine if we need to do an activity transition while sleeping,
178 * when we normally hold the top activity paused.
179 */
180 ActivityRecord mLastPausedActivity = null;
181
182 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700183 * Activities that specify No History must be removed once the user navigates away from them.
184 * If the device goes to sleep with such an activity in the paused state then we save it here
185 * and finish it later if another activity replaces it on wakeup.
186 */
187 ActivityRecord mLastNoHistoryActivity = null;
188
189 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700190 * Current activity that is resumed, or null if there is none.
191 */
192 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800193
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700194 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700195 * This is the last activity that has been started. It is only used to
196 * identify when multiple activities are started at once so that the user
197 * can be warned they may not be in the activity they think they are.
198 */
199 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800200
Craig Mautner5eda9b32013-07-02 11:58:16 -0700201 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
202 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
203 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
204 // Activity in mTranslucentActivityWaiting is notified via
205 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
206 // background activity being drawn then the same call will be made with a true value.
207 ActivityRecord mTranslucentActivityWaiting = null;
208 ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
209 new ArrayList<ActivityRecord>();
210
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700211 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700212 * Set when we know we are going to be calling updateConfiguration()
213 * soon, so want to skip intermediate config checks.
214 */
215 boolean mConfigWillChange;
216
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700217 long mLaunchStartTime = 0;
218 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800219
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800220 /**
Craig Mautnerb12428a2012-12-20 16:07:06 -0800221 * Save the most recent screenshot for reuse. This keeps Recents from taking two identical
222 * screenshots, one for the Recents thumbnail and one for the pauseActivity thumbnail.
223 */
224 private ActivityRecord mLastScreenshotActivity = null;
225 private Bitmap mLastScreenshotBitmap = null;
226
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800227 int mThumbnailWidth = -1;
228 int mThumbnailHeight = -1;
229
Craig Mautner858d8a62013-04-23 17:08:34 -0700230 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700231
Craig Mautnerc00204b2013-03-05 15:02:14 -0800232 final int mStackId;
233
Craig Mautner27084302013-03-25 08:05:25 -0700234 /** Run all ActivityStacks through this */
235 final ActivityStackSupervisor mStackSupervisor;
236
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700237 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700238 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
239 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
240 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
241 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700242 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700243
244 static class ScheduleDestroyArgs {
245 final ProcessRecord mOwner;
246 final boolean mOomAdj;
247 final String mReason;
248 ScheduleDestroyArgs(ProcessRecord owner, boolean oomAdj, String reason) {
249 mOwner = owner;
250 mOomAdj = oomAdj;
251 mReason = reason;
252 }
253 }
254
Zoran Marcetaf958b322012-08-09 20:27:12 +0900255 final Handler mHandler;
256
257 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700258 //public Handler() {
259 // if (localLOGV) Slog.v(TAG, "Handler started!");
260 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700261 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900262 super(looper);
263 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700264
Zoran Marcetaf958b322012-08-09 20:27:12 +0900265 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700266 public void handleMessage(Message msg) {
267 switch (msg.what) {
268 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800269 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700270 // We don't at this point know if the activity is fullscreen,
271 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800272 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700273 synchronized (mService) {
274 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700275 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700276 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700277 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800278 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700279 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700280 case LAUNCH_TICK_MSG: {
281 ActivityRecord r = (ActivityRecord)msg.obj;
282 synchronized (mService) {
283 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700284 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700285 }
286 }
287 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700288 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800289 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700290 // We don't at this point know if the activity is fullscreen,
291 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800292 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800293 synchronized (mService) {
294 activityDestroyedLocked(r != null ? r.appToken : null);
295 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700296 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700297 case STOP_TIMEOUT_MSG: {
298 ActivityRecord r = (ActivityRecord)msg.obj;
299 // We don't at this point know if the activity is fullscreen,
300 // so we need to be conservative and assume it isn't.
301 Slog.w(TAG, "Activity stop timeout for " + r);
302 synchronized (mService) {
303 if (r.isInHistory()) {
304 activityStoppedLocked(r, null, null, null);
305 }
306 }
307 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700308 case DESTROY_ACTIVITIES_MSG: {
309 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
310 synchronized (mService) {
311 destroyActivitiesLocked(args.mOwner, args.mOomAdj, args.mReason);
312 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700313 } break;
314 case TRANSLUCENT_TIMEOUT_MSG: {
315 synchronized (mService) {
316 notifyActivityDrawnLocked(null);
317 }
318 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700319 }
320 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800321 }
322
Craig Mautner000f0022013-02-26 15:04:29 -0800323 private int numActivities() {
324 int count = 0;
325 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
326 count += mTaskHistory.get(taskNdx).mActivities.size();
327 }
328 return count;
329 }
330
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700331 ActivityStack(ActivityManagerService service, Context context, Looper looper, int stackId) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900332 mHandler = new ActivityStackHandler(looper);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700333 mService = service;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700334 mWindowManager = service.mWindowManager;
335 mStackSupervisor = service.mStackSupervisor;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700336 mContext = context;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800337 mStackId = stackId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700338 mCurrentUser = service.mCurrentUserId;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700339 }
Craig Mautner5962b122012-10-05 14:45:52 -0700340
Craig Mautner6b74cb52013-09-27 17:02:21 -0700341 boolean okToShow(ActivityRecord r) {
Craig Mautner5962b122012-10-05 14:45:52 -0700342 return r.userId == mCurrentUser
343 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
344 }
345
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700346 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800347 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700348 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
349 if (r != null) {
350 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800351 }
352 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700353 return null;
354 }
355
356 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800357 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
358 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800359 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800360 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
361 ActivityRecord r = activities.get(activityNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800362 if (!r.finishing && !r.delayedResume && r != notTop && okToShow(r)) {
363 return r;
364 }
365 }
366 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700367 return null;
368 }
369
370 /**
371 * This is a simplified version of topRunningActivityLocked that provides a number of
372 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800373 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700374 * @param token If non-null, any history records matching this token will be skipped.
375 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800376 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700377 * @return Returns the HistoryRecord of the next activity on the stack.
378 */
379 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800380 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
381 TaskRecord task = mTaskHistory.get(taskNdx);
382 if (task.taskId == taskId) {
383 continue;
384 }
385 ArrayList<ActivityRecord> activities = task.mActivities;
386 for (int i = activities.size() - 1; i >= 0; --i) {
387 final ActivityRecord r = activities.get(i);
388 // Note: the taskId check depends on real taskId fields being non-zero
389 if (!r.finishing && (token != r.appToken) && okToShow(r)) {
390 return r;
391 }
392 }
393 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700394 return null;
395 }
396
Craig Mautner8849a5e2013-04-02 16:41:03 -0700397 final ActivityRecord topActivity() {
398 // Iterate to find the first non-empty task stack. Note that this code can
Craig Mautnerde4ef022013-04-07 19:01:33 -0700399 // be simplified once we stop storing tasks with empty mActivities lists.
Craig Mautner8849a5e2013-04-02 16:41:03 -0700400 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
401 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautnera61bc652013-10-28 15:43:18 -0700402 final int topActivityNdx = activities.size() - 1;
403 if (topActivityNdx >= 0) {
404 return activities.get(topActivityNdx);
Craig Mautner8849a5e2013-04-02 16:41:03 -0700405 }
406 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700407 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700408 }
409
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700410 final TaskRecord topTask() {
411 final int size = mTaskHistory.size();
412 if (size > 0) {
413 return mTaskHistory.get(size - 1);
414 }
415 return null;
416 }
417
Craig Mautnerd2328952013-03-05 12:46:26 -0800418 TaskRecord taskForIdLocked(int id) {
419 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
420 final TaskRecord task = mTaskHistory.get(taskNdx);
421 if (task.taskId == id) {
422 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800423 }
424 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700425 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700426 }
427
Craig Mautnerd2328952013-03-05 12:46:26 -0800428 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800429 final ActivityRecord r = ActivityRecord.forToken(token);
Craig Mautnerd2328952013-03-05 12:46:26 -0800430 if (r != null) {
431 final TaskRecord task = r.task;
432 if (task.mActivities.contains(r) && mTaskHistory.contains(task)) {
433 if (task.stack != this) Slog.w(TAG,
434 "Illegal state! task does not point to stack it is in.");
435 return r;
436 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800437 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800438 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800439 }
440
Craig Mautner2420ead2013-04-01 17:13:20 -0700441 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700442 final boolean hadit = mLRUActivities.remove(r);
443 mLRUActivities.add(r);
444 return hadit;
445 }
446
Craig Mautnerde4ef022013-04-07 19:01:33 -0700447 final boolean isHomeStack() {
448 return mStackId == HOME_STACK_ID;
449 }
450
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700451 /**
452 * Returns the top activity in any existing task matching the given
453 * Intent. Returns null if no such task is found.
454 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700455 ActivityRecord findTaskLocked(ActivityRecord target) {
456 Intent intent = target.intent;
457 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700458 ComponentName cls = intent.getComponent();
459 if (info.targetActivity != null) {
460 cls = new ComponentName(info.packageName, info.targetActivity);
461 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700462 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautner000f0022013-02-26 15:04:29 -0800463
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700464 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800465 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
466 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700467 if (task.userId != userId) {
468 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700469 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700470 continue;
471 }
Craig Mautner000f0022013-02-26 15:04:29 -0800472 final ActivityRecord r = task.getTopActivity();
473 if (r == null || r.finishing || r.userId != userId ||
474 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700475 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800476 continue;
477 }
478
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700479 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
480 + r.task.intent.getComponent().flattenToShortString()
481 + "/aff=" + r.task.affinity + " to new cls="
482 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Craig Mautner000f0022013-02-26 15:04:29 -0800483 if (task.affinity != null) {
484 if (task.affinity.equals(info.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700485 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700486 return r;
487 }
Craig Mautner000f0022013-02-26 15:04:29 -0800488 } else if (task.intent != null && task.intent.getComponent().equals(cls)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700489 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800490 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700491 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
492 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800493 return r;
494 } else if (task.affinityIntent != null
495 && task.affinityIntent.getComponent().equals(cls)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700496 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800497 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700498 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
499 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800500 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700501 } else if (DEBUG_TASKS) {
502 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700503 }
504 }
505
506 return null;
507 }
508
509 /**
510 * Returns the first activity (starting from the top of the stack) that
511 * is the same as the given activity. Returns null if no such activity
512 * is found.
513 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700514 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700515 ComponentName cls = intent.getComponent();
516 if (info.targetActivity != null) {
517 cls = new ComponentName(info.packageName, info.targetActivity);
518 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700519 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700520
Craig Mautner000f0022013-02-26 15:04:29 -0800521 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700522 TaskRecord task = mTaskHistory.get(taskNdx);
523 if (task.userId != mCurrentUser) {
524 return null;
525 }
526 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800527 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
528 ActivityRecord r = activities.get(activityNdx);
529 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700530 //Slog.i(TAG, "Found matching class!");
531 //dump();
532 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
533 return r;
534 }
535 }
536 }
537
538 return null;
539 }
540
Amith Yamasani742a6712011-05-04 14:49:28 -0700541 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700542 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700543 */
Craig Mautner93529a42013-10-04 15:03:13 -0700544 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800545 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700546 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800547 }
548 mCurrentUser = userId;
549
550 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800551 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800552 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700553 TaskRecord task = mTaskHistory.get(i);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800554 if (task.userId == userId) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700555 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
556 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800557 mTaskHistory.remove(i);
558 mTaskHistory.add(task);
559 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800560 // Use same value for i.
561 } else {
562 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800563 }
564 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700565 if (VALIDATE_TOKENS) {
566 validateAppTokensLocked();
567 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700568 }
569
Craig Mautner2420ead2013-04-01 17:13:20 -0700570 void minimalResumeActivityLocked(ActivityRecord r) {
571 r.state = ActivityState.RESUMED;
572 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
573 + " (starting new instance)");
574 r.stopped = false;
575 mResumedActivity = r;
576 r.task.touchActiveTime();
577 mService.addRecentTaskLocked(r.task);
578 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700579 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700580 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700581 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700582 }
583
Dianne Hackborncee04b52013-07-03 17:01:28 -0700584 private void startLaunchTraces() {
585 if (mFullyDrawnStartTime != 0) {
586 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
587 }
588 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
589 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
590 }
591
592 private void stopFullyDrawnTraceIfNeeded() {
593 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
594 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
595 mFullyDrawnStartTime = 0;
596 }
597 }
598
Craig Mautnere79d42682013-04-01 19:01:53 -0700599 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700600 if (r.displayStartTime == 0) {
601 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
602 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700603 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700604 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700605 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700606 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700607 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700608 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700609 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700610 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800611
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700612 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700613 // Make sure that there is no activity waiting for this to launch.
614 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
615 r.displayStartTime = r.fullyDrawnStartTime = 0;
616 } else {
617 mStackSupervisor.removeTimeoutsForActivityLocked(r);
618 mStackSupervisor.scheduleIdleTimeoutLocked(r);
619 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700620 }
621
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800622 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800623 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800624 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
625 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
626 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
627 activities.get(activityNdx).setSleeping(false);
628 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800629 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800630 }
631
Craig Mautner0eea92c2013-05-16 13:35:39 -0700632 /**
633 * @return true if something must be done before going to sleep.
634 */
635 boolean checkReadyForSleepLocked() {
636 if (mResumedActivity != null) {
637 // Still have something resumed; can't sleep until it is paused.
638 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
639 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
640 startPausingLocked(false, true);
641 return true;
642 }
643 if (mPausingActivity != null) {
644 // Still waiting for something to pause; can't sleep yet.
645 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
646 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800647 }
648
Craig Mautner0eea92c2013-05-16 13:35:39 -0700649 return false;
650 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800651
Craig Mautner0eea92c2013-05-16 13:35:39 -0700652 void goToSleep() {
653 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800654
Craig Mautner0eea92c2013-05-16 13:35:39 -0700655 // Make sure any stopped but visible activities are now sleeping.
656 // This ensures that the activity's onStop() is called.
657 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
658 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
659 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
660 final ActivityRecord r = activities.get(activityNdx);
661 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
662 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800663 }
664 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800665 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700666 }
Craig Mautner59c00972012-07-30 12:10:24 -0700667
Dianne Hackbornd2835932010-12-13 16:28:46 -0800668 public final Bitmap screenshotActivities(ActivityRecord who) {
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800669 if (who.noDisplay) {
670 return null;
671 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800672
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700673 TaskRecord tr = who.task;
Craig Mautner34740402013-10-11 11:05:35 -0700674 if (mService.getMostRecentTask() != tr && tr.intent != null &&
675 (tr.intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) != 0) {
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700676 // If this task is being excluded from recents, we don't want to take
677 // the expense of capturing a thumbnail, since we will never show it.
678 return null;
679 }
680
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800681 Resources res = mService.mContext.getResources();
682 int w = mThumbnailWidth;
683 int h = mThumbnailHeight;
684 if (w < 0) {
685 mThumbnailWidth = w =
686 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_width);
687 mThumbnailHeight = h =
688 res.getDimensionPixelSize(com.android.internal.R.dimen.thumbnail_height);
689 }
690
691 if (w > 0) {
Craig Mautnerb12428a2012-12-20 16:07:06 -0800692 if (who != mLastScreenshotActivity || mLastScreenshotBitmap == null
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700693 || mLastScreenshotActivity.state == ActivityState.RESUMED
Craig Mautnerb12428a2012-12-20 16:07:06 -0800694 || mLastScreenshotBitmap.getWidth() != w
695 || mLastScreenshotBitmap.getHeight() != h) {
696 mLastScreenshotActivity = who;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700697 mLastScreenshotBitmap = mWindowManager.screenshotApplications(
John Reck172e87c2013-10-02 16:55:16 -0700698 who.appToken, Display.DEFAULT_DISPLAY, w, h, SCREENSHOT_FORCE_565);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800699 }
700 if (mLastScreenshotBitmap != null) {
John Reck172e87c2013-10-02 16:55:16 -0700701 return mLastScreenshotBitmap.copy(mLastScreenshotBitmap.getConfig(), true);
Craig Mautnerb12428a2012-12-20 16:07:06 -0800702 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800703 }
704 return null;
705 }
706
Craig Mautnercf910b02013-04-23 11:23:27 -0700707 final void startPausingLocked(boolean userLeaving, boolean uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800708 if (mPausingActivity != null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800709 Slog.e(TAG, "Trying to pause when pause is already pending for "
Craig Mautnere11f2b72013-04-01 12:37:17 -0700710 + mPausingActivity, new RuntimeException("here").fillInStackTrace());
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800711 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700712 ActivityRecord prev = mResumedActivity;
713 if (prev == null) {
Craig Mautnere11f2b72013-04-01 12:37:17 -0700714 Slog.e(TAG, "Trying to pause when nothing is resumed",
715 new RuntimeException("here").fillInStackTrace());
Craig Mautner05d29032013-05-03 13:40:13 -0700716 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700717 return;
718 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700719 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
720 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700721 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800722 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700723 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700724 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
725 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700726 prev.state = ActivityState.PAUSING;
727 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700728 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700729 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
730 if (next == null || next.task != prev.task) {
731 prev.updateThumbnail(screenshotActivities(prev), null);
732 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700733 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700734
735 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800736
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700737 if (prev.app != null && prev.app.thread != null) {
738 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
739 try {
740 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700741 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700742 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700743 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800744 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
745 userLeaving, prev.configChangeFlags);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700746 } catch (Exception e) {
747 // Ignore exception, if process died other code will cleanup.
748 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800749 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700750 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700751 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700752 }
753 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800754 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700755 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700756 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700757 }
758
759 // If we are not going to sleep, we want to ensure the device is
760 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700761 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700762 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700763 }
764
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800765 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700766 // Have the window manager pause its key dispatching until the new
767 // activity has started. If we're pausing the activity just because
768 // the screen is being turned off and the UI is sleeping, don't interrupt
769 // key dispatch; the same activity will pick it up again on wakeup.
770 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800771 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700772 } else {
773 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
774 }
775
776 // Schedule a pause timeout in case the app doesn't respond.
777 // We don't give it much time because this directly impacts the
778 // responsiveness seen by the user.
779 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
780 msg.obj = prev;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700781 prev.pauseTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700782 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
783 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
784 } else {
785 // This activity failed to schedule the
786 // pause, so just treat it as being paused now.
787 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700788 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700789 }
790 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700791
Craig Mautnerd2328952013-03-05 12:46:26 -0800792 final void activityPausedLocked(IBinder token, boolean timeout) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700793 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800794 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700795
Craig Mautnerd2328952013-03-05 12:46:26 -0800796 final ActivityRecord r = isInStackLocked(token);
797 if (r != null) {
798 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
799 if (mPausingActivity == r) {
800 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
801 + (timeout ? " (due to timeout)" : " (pause complete)"));
802 r.state = ActivityState.PAUSED;
803 completePauseLocked();
804 } else {
805 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
806 r.userId, System.identityHashCode(r), r.shortComponentName,
807 mPausingActivity != null
808 ? mPausingActivity.shortComponentName : "(none)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700809 }
810 }
811 }
812
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700813 final void activityStoppedLocked(ActivityRecord r, Bundle icicle, Bitmap thumbnail,
814 CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700815 if (r.state != ActivityState.STOPPING) {
816 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
817 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
818 return;
819 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700820 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700821 if (icicle != null) {
822 // If icicle is null, this is happening due to a timeout, so we
823 // haven't really saved the state.
824 r.icicle = icicle;
825 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800826 r.launchCount = 0;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700827 r.updateThumbnail(thumbnail, description);
828 }
829 if (!r.stopped) {
830 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
831 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
832 r.stopped = true;
833 r.state = ActivityState.STOPPED;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700834 if (r.finishing) {
835 r.clearOptionsLocked();
836 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700837 if (r.configDestroy) {
838 destroyActivityLocked(r, true, false, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700839 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700840 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700841 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800842 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700843 }
844 }
845 }
846
Craig Mautnerc8143c62013-09-03 12:15:57 -0700847 private void completePauseLocked() {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800848 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700849 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800850
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800851 if (prev != null) {
852 if (prev.finishing) {
853 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700854 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800855 } else if (prev.app != null) {
856 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
857 if (prev.waitingVisible) {
858 prev.waitingVisible = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700859 mStackSupervisor.mWaitingVisibleActivities.remove(prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800860 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
861 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800862 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800863 if (prev.configDestroy) {
864 // The previous is being paused because the configuration
865 // is changing, which means it is actually stopping...
866 // To juggle the fact that we are also starting a new
867 // instance right now, we need to first completely stop
868 // the current instance before starting the new one.
869 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
870 destroyActivityLocked(prev, true, false, "pause-config");
871 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700872 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700873 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
874 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800875 // If we already have a few activities waiting to stop,
876 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700877 // them out. Or if r is the last of activity of the last task the stack
878 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800879 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700880 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800881 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700882 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800883 }
884 }
885 } else {
886 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
887 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800888 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800889 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700890 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800891
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700892 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
Craig Mautnere11f2b72013-04-01 12:37:17 -0700893 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner05d29032013-05-03 13:40:13 -0700894 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800895 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700896 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700897 ActivityRecord top = topStack.topRunningActivityLocked(null);
Dianne Hackborncc5a0552012-10-01 16:32:39 -0700898 if (top == null || (prev != null && top != prev)) {
899 // If there are no more activities available to run,
900 // do resume anyway to start something. Also if the top
901 // activity on the stack is not the just paused activity,
902 // we need to go ahead and resume it to ensure we complete
903 // an in-flight app switch.
Craig Mautner05d29032013-05-03 13:40:13 -0700904 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700905 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700906 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800907
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800908 if (prev != null) {
909 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700910
Craig Mautner525f3d92013-05-07 14:01:50 -0700911 if (prev.app != null && prev.cpuTimeAtResume > 0
912 && mService.mBatteryStatsService.isOnBattery()) {
913 long diff;
Dianne Hackbornd2932242013-08-05 18:18:42 -0700914 synchronized (mService.mProcessCpuThread) {
915 diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
Craig Mautner525f3d92013-05-07 14:01:50 -0700916 - prev.cpuTimeAtResume;
917 }
918 if (diff > 0) {
919 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
920 synchronized (bsi) {
921 BatteryStatsImpl.Uid.Proc ps =
922 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -0700923 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -0700924 if (ps != null) {
925 ps.addForegroundTimeLocked(diff);
926 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700927 }
928 }
929 }
Craig Mautner525f3d92013-05-07 14:01:50 -0700930 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700931 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700932 }
933
934 /**
935 * Once we know that we have asked an application to put an activity in
936 * the resumed state (either by launching it or explicitly telling it),
937 * this function updates the rest of our state to match that fact.
938 */
Craig Mautner525f3d92013-05-07 14:01:50 -0700939 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700940 next.idle = false;
941 next.results = null;
942 next.newIntents = null;
Craig Mautner07566322013-09-26 16:42:55 -0700943 if (next.nowVisible) {
944 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
945 mStackSupervisor.dismissKeyguard();
946 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700947
948 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -0700949 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700950
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700951 mStackSupervisor.reportResumedActivityLocked(next);
952
953 next.resumeKeyDispatchingLocked();
954 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700955
956 // Mark the point when the activity is resuming
957 // TODO: To be more accurate, the mark should be before the onCreate,
958 // not after the onResume. But for subsequent starts, onResume is fine.
959 if (next.app != null) {
Dianne Hackbornd2932242013-08-05 18:18:42 -0700960 synchronized (mService.mProcessCpuThread) {
961 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700962 }
963 } else {
964 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
965 }
966 }
967
Craig Mautner580ea812013-04-25 12:58:38 -0700968 /**
Craig Mautner39e1c5a2013-10-23 15:14:22 -0700969 * Determine if home should be visible below the passed record.
970 * @param record activity we are querying for.
971 * @return true if home is visible below the passed activity, false otherwise.
972 */
973 boolean isActivityOverHome(ActivityRecord record) {
974 // Start at record and go down, look for either home or a visible fullscreen activity.
975 final TaskRecord recordTask = record.task;
976 for (int taskNdx = mTaskHistory.indexOf(recordTask); taskNdx >= 0; --taskNdx) {
977 TaskRecord task = mTaskHistory.get(taskNdx);
978 final ArrayList<ActivityRecord> activities = task.mActivities;
979 final int startNdx =
980 task == recordTask ? activities.indexOf(record) : activities.size() - 1;
981 for (int activityNdx = startNdx; activityNdx >= 0; --activityNdx) {
982 final ActivityRecord r = activities.get(activityNdx);
983 if (r.isHomeActivity()) {
984 return true;
985 }
Craig Mautner76be9d22013-11-04 16:01:22 -0800986 if (!r.finishing && r.fullscreen) {
987 // Passed activity is over a fullscreen activity.
Craig Mautner39e1c5a2013-10-23 15:14:22 -0700988 return false;
989 }
990 }
991 if (task.mOnTopOfHome) {
992 // Got to the bottom of a task on top of home without finding a visible fullscreen
993 // activity. Home is visible.
994 return true;
995 }
996 }
997 // Got to the bottom of this stack and still don't know. If this is over the home stack
998 // then record is over home. May not work if we ever get more than two layers.
999 return mStackSupervisor.isFrontStack(this);
1000 }
1001
1002 /**
Craig Mautner580ea812013-04-25 12:58:38 -07001003 * Version of ensureActivitiesVisible that can easily be called anywhere.
1004 */
1005 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1006 return ensureActivitiesVisibleLocked(starting, configChanges, false);
1007 }
1008
1009 final boolean ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1010 boolean forceHomeShown) {
1011 ActivityRecord r = topRunningActivityLocked(null);
Craig Mautner525f3d92013-05-07 14:01:50 -07001012 return r != null &&
1013 ensureActivitiesVisibleLocked(r, starting, null, configChanges, forceHomeShown);
Craig Mautner580ea812013-04-25 12:58:38 -07001014 }
1015
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001016 /**
1017 * Make sure that all activities that need to be visible (that is, they
1018 * currently can be seen by the user) actually are.
1019 */
Craig Mautner580ea812013-04-25 12:58:38 -07001020 final boolean ensureActivitiesVisibleLocked(ActivityRecord top, ActivityRecord starting,
1021 String onlyThisProcess, int configChanges, boolean forceHomeShown) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001022 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001023 TAG, "ensureActivitiesVisible behind " + top
1024 + " configChanges=0x" + Integer.toHexString(configChanges));
1025
Craig Mautner5eda9b32013-07-02 11:58:16 -07001026 if (mTranslucentActivityWaiting != top) {
1027 mUndrawnActivitiesBelowTopTranslucent.clear();
1028 if (mTranslucentActivityWaiting != null) {
1029 // Call the callback with a timeout indication.
1030 notifyActivityDrawnLocked(null);
1031 mTranslucentActivityWaiting = null;
1032 }
1033 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1034 }
1035
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001036 // If the top activity is not fullscreen, then we need to
1037 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001038 boolean aboveTop = true;
Craig Mautner580ea812013-04-25 12:58:38 -07001039 boolean showHomeBehindStack = false;
1040 boolean behindFullscreen = !mStackSupervisor.isFrontStack(this) &&
1041 !(forceHomeShown && isHomeStack());
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001042 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001043 final TaskRecord task = mTaskHistory.get(taskNdx);
1044 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001045 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1046 final ActivityRecord r = activities.get(activityNdx);
1047 if (r.finishing) {
1048 continue;
1049 }
1050 if (aboveTop && r != top) {
1051 continue;
1052 }
1053 aboveTop = false;
1054 if (!behindFullscreen) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001055 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001056 TAG, "Make visible? " + r + " finishing=" + r.finishing
1057 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001058
Craig Mautnerd44711d2013-02-23 11:24:36 -08001059 final boolean doThisProcess = onlyThisProcess == null
1060 || onlyThisProcess.equals(r.processName);
1061
1062 // First: if this is not the current activity being started, make
1063 // sure it matches the current configuration.
1064 if (r != starting && doThisProcess) {
1065 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001066 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001067
1068 if (r.app == null || r.app.thread == null) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001069 if (onlyThisProcess == null || onlyThisProcess.equals(r.processName)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001070 // This activity needs to be visible, but isn't even
1071 // running... get it started, but don't resume it
1072 // at this point.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001073 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001074 if (r != starting) {
1075 r.startFreezingScreenLocked(r.app, configChanges);
1076 }
1077 if (!r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001078 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001079 TAG, "Starting and making visible: " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001080 mWindowManager.setAppVisibility(r.appToken, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001081 }
1082 if (r != starting) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001083 mStackSupervisor.startSpecificActivityLocked(r, false, false, null);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001084 }
1085 }
1086
1087 } else if (r.visible) {
1088 // If this activity is already visible, then there is nothing
1089 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001090 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001091 r.stopFreezingScreenLocked(false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001092
1093 } else if (onlyThisProcess == null) {
1094 // This activity is not currently visible, but is running.
1095 // Tell it to become visible.
1096 r.visible = true;
1097 if (r.state != ActivityState.RESUMED && r != starting) {
1098 // If this activity is paused, tell it
1099 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001100 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001101 TAG, "Making visible and scheduling visibility: " + r);
1102 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001103 if (mTranslucentActivityWaiting != null) {
1104 mUndrawnActivitiesBelowTopTranslucent.add(r);
1105 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001106 mWindowManager.setAppVisibility(r.appToken, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001107 r.sleeping = false;
1108 r.app.pendingUiClean = true;
1109 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1110 r.stopFreezingScreenLocked(false);
1111 } catch (Exception e) {
1112 // Just skip on any failure; we'll make it
1113 // visible when it next restarts.
1114 Slog.w(TAG, "Exception thrown making visibile: "
1115 + r.intent.getComponent(), e);
1116 }
1117 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001118 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001119
Craig Mautnerd44711d2013-02-23 11:24:36 -08001120 // Aggregate current change flags.
1121 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001122
Craig Mautnerd44711d2013-02-23 11:24:36 -08001123 if (r.fullscreen) {
1124 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001125 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1126 behindFullscreen = true;
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001127 } else if (isActivityOverHome(r)) {
1128 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
1129 showHomeBehindStack = true;
Craig Mautnerf41bcd42013-11-07 11:51:29 -08001130 behindFullscreen = !isHomeStack();
Craig Mautnerd44711d2013-02-23 11:24:36 -08001131 }
1132 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001133 if (DEBUG_VISBILITY) Slog.v(
1134 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1135 + " state=" + r.state
1136 + " behindFullscreen=" + behindFullscreen);
1137 // Now for any activities that aren't visible to the user, make
1138 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001139 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001140 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001141 r.visible = false;
1142 try {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001143 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001144 switch (r.state) {
1145 case STOPPING:
1146 case STOPPED:
1147 if (r.app != null && r.app.thread != null) {
1148 if (DEBUG_VISBILITY) Slog.v(
1149 TAG, "Scheduling invisibility: " + r);
1150 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1151 }
1152 break;
1153
1154 case INITIALIZING:
1155 case RESUMED:
1156 case PAUSING:
1157 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001158 // This case created for transitioning activities from
1159 // translucent to opaque {@link Activity#convertToOpaque}.
Craig Mautnere5273b42013-09-09 12:57:47 -07001160 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1161 mStackSupervisor.mStoppingActivities.add(r);
1162 }
1163 mStackSupervisor.scheduleIdleLocked();
Craig Mautner4addfc52013-06-25 08:05:45 -07001164 break;
1165
1166 default:
1167 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001168 }
1169 } catch (Exception e) {
1170 // Just skip on any failure; we'll make it
1171 // visible when it next restarts.
1172 Slog.w(TAG, "Exception thrown making hidden: "
1173 + r.intent.getComponent(), e);
1174 }
1175 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001176 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001177 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001178 }
1179 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001180 }
Craig Mautner580ea812013-04-25 12:58:38 -07001181 return showHomeBehindStack;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001182 }
Craig Mautner58547802013-03-05 08:23:53 -08001183
Craig Mautner5eda9b32013-07-02 11:58:16 -07001184 void convertToTranslucent(ActivityRecord r) {
1185 mTranslucentActivityWaiting = r;
1186 mUndrawnActivitiesBelowTopTranslucent.clear();
1187 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1188 }
1189
1190 /**
1191 * Called as activities below the top translucent activity are redrawn. When the last one is
1192 * redrawn notify the top activity by calling
1193 * {@link Activity#onTranslucentConversionComplete}.
1194 *
1195 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1196 * occurred and the activity will be notified immediately.
1197 */
1198 void notifyActivityDrawnLocked(ActivityRecord r) {
1199 if ((r == null)
1200 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1201 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1202 // The last undrawn activity below the top has just been drawn. If there is an
1203 // opaque activity at the top, notify it that it can become translucent safely now.
1204 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1205 mTranslucentActivityWaiting = null;
1206 mUndrawnActivitiesBelowTopTranslucent.clear();
1207 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1208
1209 if (waitingActivity != null && waitingActivity.app != null &&
1210 waitingActivity.app.thread != null) {
1211 try {
1212 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1213 waitingActivity.appToken, r != null);
1214 } catch (RemoteException e) {
1215 }
1216 }
1217 }
1218 }
1219
Craig Mautnera61bc652013-10-28 15:43:18 -07001220 /** If any activities below the top running one are in the INITIALIZING state and they have a
1221 * starting window displayed then remove that starting window. It is possible that the activity
1222 * in this state will never resumed in which case that starting window will be orphaned. */
1223 void cancelInitializingActivities() {
1224 final ActivityRecord topActivity = topRunningActivityLocked(null);
1225 boolean aboveTop = true;
1226 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1227 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1228 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1229 final ActivityRecord r = activities.get(activityNdx);
1230 if (aboveTop) {
1231 if (r == topActivity) {
1232 aboveTop = false;
1233 }
1234 continue;
1235 }
1236
1237 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
1238 if (DEBUG_VISBILITY) Slog.w(TAG, "Found orphaned starting window " + r);
1239 r.mStartingWindowShown = false;
1240 mWindowManager.removeAppStartingWindow(r.appToken);
1241 }
1242 }
1243 }
1244 }
1245
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001246 /**
1247 * Ensure that the top activity in the stack is resumed.
1248 *
1249 * @param prev The previously resumed activity, for when in the process
1250 * of pausing; can be null to call from elsewhere.
1251 *
1252 * @return Returns true if something is being resumed, or false if
1253 * nothing happened.
1254 */
1255 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001256 return resumeTopActivityLocked(prev, null);
1257 }
1258
1259 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001260 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1261
Craig Mautnera61bc652013-10-28 15:43:18 -07001262 cancelInitializingActivities();
1263
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001264 // Find the first activity that is not finishing.
1265 ActivityRecord next = topRunningActivityLocked(null);
1266
1267 // Remember how we'll process this pause/resume situation, and ensure
1268 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001269 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1270 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001271
1272 if (next == null) {
1273 // There are no more activities! Let's just start up the
1274 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001275 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001276 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001277 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner69ada552013-04-18 13:51:51 -07001278 return mStackSupervisor.resumeHomeActivity(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001279 }
1280
1281 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001282
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001283 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001284 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1285 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001286 // Make sure we have executed any pending transitions, since there
1287 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001288 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001289 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001290 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001291 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001292 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001293 return false;
1294 }
1295
Craig Mautner525f3d92013-05-07 14:01:50 -07001296 final TaskRecord nextTask = next.task;
1297 final TaskRecord prevTask = prev != null ? prev.task : null;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001298 if (prevTask != null && prevTask.mOnTopOfHome && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001299 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001300 if (prevTask == nextTask) {
1301 ArrayList<ActivityRecord> activities = prevTask.mActivities;
1302 final int numActivities = activities.size();
1303 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1304 final ActivityRecord r = activities.get(activityNdx);
1305 // r is usually the same as next, but what if two activities were launched
1306 // before prev finished?
1307 if (!r.finishing) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001308 r.frontOfTask = true;
1309 break;
1310 }
1311 }
1312 } else if (prevTask != topTask()) {
Craig Mautnere418ecd2013-05-01 17:02:29 -07001313 // This task is going away but it was supposed to return to the home task.
1314 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001315 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001316 mTaskHistory.get(taskNdx).mOnTopOfHome = true;
Craig Mautnere418ecd2013-05-01 17:02:29 -07001317 } else {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001318 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Launching home next");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001319 return mStackSupervisor.resumeHomeActivity(prev);
1320 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001321 }
1322
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001323 // If we are sleeping, and there is no resumed activity, and the top
1324 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001325 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001326 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001327 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001328 // Make sure we have executed any pending transitions, since there
1329 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001330 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001331 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001332 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001333 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001334 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001335 return false;
1336 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001337
1338 // Make sure that the user who owns this activity is started. If not,
1339 // we will just leave it as is because someone should be bringing
1340 // another user's activities to the top of the stack.
1341 if (mService.mStartedUsers.get(next.userId) == null) {
1342 Slog.w(TAG, "Skipping resume of top activity " + next
1343 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001344 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001345 return false;
1346 }
1347
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001348 // The activity may be waiting for stop, but that is no longer
1349 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001350 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001351 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001352 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001353 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001354
Dianne Hackborn84375872012-06-01 19:03:50 -07001355 next.updateOptionsLocked(options);
1356
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001357 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1358
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001359 // If we are currently pausing an activity, then don't do anything
1360 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001361 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001362 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1363 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001364 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001365 return false;
1366 }
1367
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001368 // Okay we are now going to start a switch, to 'next'. We may first
1369 // have to pause the current activity, but this is an important point
1370 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001371 // XXX "App Redirected" dialog is getting too many false positives
1372 // at this point, so turn off for now.
1373 if (false) {
1374 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1375 long now = SystemClock.uptimeMillis();
1376 final boolean inTime = mLastStartedActivity.startTime != 0
1377 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1378 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1379 final int nextUid = next.info.applicationInfo.uid;
1380 if (inTime && lastUid != nextUid
1381 && lastUid != next.launchedFromUid
1382 && mService.checkPermission(
1383 android.Manifest.permission.STOP_APP_SWITCHES,
1384 -1, next.launchedFromUid)
1385 != PackageManager.PERMISSION_GRANTED) {
1386 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1387 } else {
1388 next.startTime = now;
1389 mLastStartedActivity = next;
1390 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001391 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001392 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001393 mLastStartedActivity = next;
1394 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001395 }
Craig Mautner58547802013-03-05 08:23:53 -08001396
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001397 // We need to start pausing the current activity so the top one
1398 // can be resumed...
Craig Mautner5314a402013-09-26 12:40:16 -07001399 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving);
Craig Mautnereb957862013-04-24 15:34:32 -07001400 if (mResumedActivity != null) {
1401 pausing = true;
1402 startPausingLocked(userLeaving, false);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001403 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnereb957862013-04-24 15:34:32 -07001404 }
1405 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001406 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1407 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001408 // At this point we want to put the upcoming activity's process
1409 // at the top of the LRU list, since we know we will be needing it
1410 // very soon and it would be a waste to let it get killed if it
1411 // happens to be sitting towards the end.
1412 if (next.app != null && next.app.thread != null) {
1413 // No reason to do full oom adj update here; we'll let that
1414 // happen whenever it needs to later.
Dianne Hackborndb926082013-10-31 16:32:44 -07001415 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001416 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001417 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001418 return true;
1419 }
1420
Christopher Tated3f175c2012-06-14 14:16:54 -07001421 // If the most recent activity was noHistory but was only stopped rather
1422 // than stopped+finished because the device went to sleep, we need to make
1423 // sure to finish it as we're making a new activity topmost.
Craig Mautner0f922742013-08-06 08:44:42 -07001424 if (mService.mSleeping && mLastNoHistoryActivity != null &&
1425 !mLastNoHistoryActivity.finishing) {
1426 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1427 " on new resume");
1428 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
1429 null, "no-history", false);
1430 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001431 }
1432
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001433 if (prev != null && prev != next) {
1434 if (!prev.waitingVisible && next != null && !next.nowVisible) {
1435 prev.waitingVisible = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001436 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001437 if (DEBUG_SWITCH) Slog.v(
1438 TAG, "Resuming top, waiting visible to hide: " + prev);
1439 } else {
1440 // The next activity is already visible, so hide the previous
1441 // activity's windows right now so we can show the new one ASAP.
1442 // We only do this if the previous is finishing, which should mean
1443 // it is on top of the one being resumed so hiding it quickly
1444 // is good. Otherwise, we want to do the normal route of allowing
1445 // the resumed activity to be shown so we can decide if the
1446 // previous should actually be hidden depending on whether the
1447 // new one is found to be full-screen or not.
1448 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001449 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001450 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1451 + prev + ", waitingVisible="
1452 + (prev != null ? prev.waitingVisible : null)
1453 + ", nowVisible=" + next.nowVisible);
1454 } else {
1455 if (DEBUG_SWITCH) Slog.v(TAG, "Previous already visible but still waiting to hide: "
1456 + prev + ", waitingVisible="
1457 + (prev != null ? prev.waitingVisible : null)
1458 + ", nowVisible=" + next.nowVisible);
1459 }
1460 }
1461 }
1462
Dianne Hackborne7f97212011-02-24 14:40:20 -08001463 // Launching this app's activity, make sure the app is no longer
1464 // considered stopped.
1465 try {
1466 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001467 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001468 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001469 } catch (IllegalArgumentException e) {
1470 Slog.w(TAG, "Failed trying to unstop package "
1471 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001472 }
1473
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001474 // We are starting up the next activity, so tell the window manager
1475 // that the previous one will be hidden soon. This way it can know
1476 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001477 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001478 if (prev != null) {
1479 if (prev.finishing) {
1480 if (DEBUG_TRANSITION) Slog.v(TAG,
1481 "Prepare close transition: prev=" + prev);
1482 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001483 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001484 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001485 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001486 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001487 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1488 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001489 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001490 mWindowManager.setAppWillBeHidden(prev.appToken);
1491 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001492 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001493 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001494 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001495 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001496 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001497 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001498 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001499 ? AppTransition.TRANSIT_ACTIVITY_OPEN
1500 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001501 }
1502 }
1503 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001504 mWindowManager.setAppWillBeHidden(prev.appToken);
1505 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001506 }
Craig Mautner967212c2013-04-13 21:10:58 -07001507 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001508 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001509 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001510 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001511 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001512 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001513 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001514 }
1515 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001516
1517 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001518 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001519 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1520 if (opts != null) {
1521 resumeAnimOptions = opts.toBundle();
1522 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001523 next.applyOptionsLocked();
1524 } else {
1525 next.clearOptionsLocked();
1526 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001527
Craig Mautnercf910b02013-04-23 11:23:27 -07001528 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001529 if (next.app != null && next.app.thread != null) {
1530 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1531
1532 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001533 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001534
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001535 // schedule launch ticks to collect information about slow apps.
1536 next.startLaunchTickingLocked();
1537
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001538 ActivityRecord lastResumedActivity =
1539 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001540 ActivityState lastState = next.state;
1541
1542 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001543
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001544 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001545 next.state = ActivityState.RESUMED;
1546 mResumedActivity = next;
1547 next.task.touchActiveTime();
Craig Mautnerd2328952013-03-05 12:46:26 -08001548 mService.addRecentTaskLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001549 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001550 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001551 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001552
1553 // Have the window manager re-evaluate the orientation of
1554 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001555 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001556 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001557 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001558 mService.mConfiguration,
1559 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1560 if (config != null) {
1561 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001562 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001563 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001564 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001565
Craig Mautner525f3d92013-05-07 14:01:50 -07001566 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001567 // The configuration update wasn't able to keep the existing
1568 // instance of the activity, and instead started a new one.
1569 // We should be all done, but let's just make sure our activity
1570 // is still at the top and schedule another run if something
1571 // weird happened.
1572 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001573 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001574 "Activity config changed during resume: " + next
1575 + ", new next: " + nextNext);
1576 if (nextNext != next) {
1577 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001578 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001579 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001580 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001581 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001582 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001583 return true;
1584 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001585 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001586 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001587 }
Craig Mautner58547802013-03-05 08:23:53 -08001588
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001589 try {
1590 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001591 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001592 if (a != null) {
1593 final int N = a.size();
1594 if (!next.finishing && N > 0) {
1595 if (DEBUG_RESULTS) Slog.v(
1596 TAG, "Delivering results to " + next
1597 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001598 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001599 }
1600 }
1601
1602 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001603 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001604 }
1605
1606 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001607 next.userId, System.identityHashCode(next),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001608 next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001609
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001610 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001611 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001612 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001613 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
1614 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001615 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001616
Craig Mautner0eea92c2013-05-16 13:35:39 -07001617 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001618
Craig Mautnerac6f8432013-07-17 13:24:59 -07001619 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001620 } catch (Exception e) {
1621 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001622 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1623 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001624 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001625 if (lastStack != null) {
1626 lastStack.mResumedActivity = lastResumedActivity;
1627 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001628 Slog.i(TAG, "Restarting because process died: " + next);
1629 if (!next.hasBeenLaunched) {
1630 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001631 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1632 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001633 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001634 next.appToken, next.packageName, next.theme,
1635 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001636 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1637 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001638 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001639 mStackSupervisor.startSpecificActivityLocked(next, true, false, resumeAnimOptions);
Craig Mautnercf910b02013-04-23 11:23:27 -07001640 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001641 return true;
1642 }
1643
1644 // From this point on, if something goes wrong there is no way
1645 // to recover the activity.
1646 try {
1647 next.visible = true;
1648 completeResumeLocked(next);
1649 } catch (Exception e) {
1650 // If any exception gets thrown, toss away this
1651 // activity and try the next one.
1652 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001653 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001654 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001655 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001656 return true;
1657 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001658 next.stopped = false;
1659
1660 } else {
1661 // Whoops, need to restart this activity!
1662 if (!next.hasBeenLaunched) {
1663 next.hasBeenLaunched = true;
1664 } else {
1665 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001666 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001667 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001668 mService.compatibilityInfoForPackageLocked(
1669 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001670 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001671 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001672 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001673 }
1674 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1675 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001676 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
Adam Powellcfbe9be2013-11-06 14:58:58 -08001677 mStackSupervisor.startSpecificActivityLocked(next, true, true, resumeAnimOptions);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001678 }
1679
Craig Mautnercf910b02013-04-23 11:23:27 -07001680 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001681 return true;
1682 }
1683
Craig Mautnerac6f8432013-07-17 13:24:59 -07001684 private void insertTaskAtTop(TaskRecord task) {
Craig Mautner9c85c202013-10-04 20:11:26 -07001685 // If this is being moved to the top by another activity or being launched from the home
1686 // activity, set mOnTopOfHome accordingly.
Craig Mautnerd99384d2013-10-14 07:09:18 -07001687 ActivityStack lastStack = mStackSupervisor.getLastStack();
1688 final boolean fromHome = lastStack == null ? true : lastStack.isHomeStack();
Craig Mautner9c85c202013-10-04 20:11:26 -07001689 if (!isHomeStack() && (fromHome || topTask() != task)) {
1690 task.mOnTopOfHome = fromHome;
1691 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001692
Craig Mautnerac6f8432013-07-17 13:24:59 -07001693 mTaskHistory.remove(task);
1694 // Now put task at top.
1695 int stackNdx = mTaskHistory.size();
1696 if (task.userId != mCurrentUser) {
1697 // Put non-current user tasks below current user tasks.
1698 while (--stackNdx >= 0) {
1699 if (mTaskHistory.get(stackNdx).userId != mCurrentUser) {
1700 break;
1701 }
1702 }
1703 ++stackNdx;
1704 }
1705 mTaskHistory.add(stackNdx, task);
1706 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001707
Craig Mautner8849a5e2013-04-02 16:41:03 -07001708 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001709 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001710 TaskRecord rTask = r.task;
1711 final int taskId = rTask.taskId;
1712 if (taskForIdLocked(taskId) == null || newTask) {
Craig Mautner77878772013-03-04 19:46:24 -08001713 // Last activity in task had been removed or ActivityManagerService is reusing task.
1714 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001715 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001716 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001717 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001718 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001719 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001720 if (!newTask) {
1721 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001722 boolean startIt = true;
1723 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1724 task = mTaskHistory.get(taskNdx);
1725 if (task == r.task) {
1726 // Here it is! Now, if this is not yet visible to the
1727 // user, then just add it without starting; it will
1728 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001729 if (!startIt) {
1730 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1731 + task, new RuntimeException("here").fillInStackTrace());
1732 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001733 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001734 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1735 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001736 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001737 r.userId, r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001738 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001739 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001740 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001741 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001742 return;
1743 }
1744 break;
Craig Mautner70a86932013-02-28 22:37:44 -08001745 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001746 startIt = false;
1747 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001748 }
1749 }
1750
1751 // Place a new activity at top of stack, so it is next to interact
1752 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08001753
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001754 // If we are not placing the new activity frontmost, we do not want
1755 // to deliver the onUserLeaving callback to the actual frontmost
1756 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08001757 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001758 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08001759 if (DEBUG_USER_LEAVING) Slog.v(TAG,
1760 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001761 }
Craig Mautner70a86932013-02-28 22:37:44 -08001762
1763 task = r.task;
1764
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001765 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08001766 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08001767 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08001768 task.addActivityToTop(r);
1769
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001770 r.putInHistory();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001771 r.frontOfTask = newTask;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001772 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001773 // We want to show the starting preview window if we are
1774 // switching to a new task, or the next activity's process is
1775 // not currently running.
1776 boolean showStartingIcon = newTask;
1777 ProcessRecord proc = r.app;
1778 if (proc == null) {
1779 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
1780 }
1781 if (proc == null || proc.thread == null) {
1782 showStartingIcon = true;
1783 }
1784 if (DEBUG_TRANSITION) Slog.v(TAG,
1785 "Prepare open transition: starting " + r);
1786 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001787 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001788 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001789 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001790 mWindowManager.prepareAppTransition(newTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08001791 ? AppTransition.TRANSIT_TASK_OPEN
1792 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001793 mNoAnimActivities.remove(r);
1794 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001795 r.updateOptionsLocked(options);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001796 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08001797 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001798 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1799 r.info.configChanges);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001800 boolean doShow = true;
1801 if (newTask) {
1802 // Even though this activity is starting fresh, we still need
1803 // to reset it to make sure we apply affinities to move any
1804 // existing activities from other tasks in to it.
1805 // If the caller has requested that the target task be
1806 // reset, then do so.
1807 if ((r.intent.getFlags()
1808 &Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
1809 resetTaskIfNeededLocked(r, r);
1810 doShow = topRunningNonDelayedActivityLocked(null) == r;
1811 }
1812 }
1813 if (SHOW_APP_STARTING_PREVIEW && doShow) {
1814 // Figure out if we are transitioning from another activity that is
1815 // "has the same starting icon" as the next one. This allows the
1816 // window manager to keep the previous window it had previously
1817 // created, if it still had one.
1818 ActivityRecord prev = mResumedActivity;
1819 if (prev != null) {
1820 // We don't want to reuse the previous starting preview if:
1821 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07001822 if (prev.task != r.task) {
1823 prev = null;
1824 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001825 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07001826 else if (prev.nowVisible) {
1827 prev = null;
1828 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001829 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001830 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001831 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001832 mService.compatibilityInfoForPackageLocked(
1833 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001834 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08001835 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07001836 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001837 }
1838 } else {
1839 // If this is the first activity, don't do any fancy animations,
1840 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001841 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08001842 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08001843 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
1844 r.info.configChanges);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001845 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001846 }
1847 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001848 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001849 }
1850
1851 if (doResume) {
Craig Mautner858d8a62013-04-23 17:08:34 -07001852 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001853 }
1854 }
1855
Dianne Hackbornbe707852011-11-11 14:32:10 -08001856 final void validateAppTokensLocked() {
1857 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08001858 mValidateAppTokens.ensureCapacity(numActivities());
1859 final int numTasks = mTaskHistory.size();
1860 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
1861 TaskRecord task = mTaskHistory.get(taskNdx);
1862 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07001863 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08001864 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08001865 }
Craig Mautner000f0022013-02-26 15:04:29 -08001866 TaskGroup group = new TaskGroup();
1867 group.taskId = task.taskId;
1868 mValidateAppTokens.add(group);
1869 final int numActivities = activities.size();
1870 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1871 final ActivityRecord r = activities.get(activityNdx);
1872 group.tokens.add(r.appToken);
1873 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08001874 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001875 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001876 }
1877
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001878 /**
1879 * Perform a reset of the given task, if needed as part of launching it.
1880 * Returns the new HistoryRecord at the top of the task.
1881 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08001882 /**
1883 * Helper method for #resetTaskIfNeededLocked.
1884 * We are inside of the task being reset... we'll either finish this activity, push it out
1885 * for another task, or leave it as-is.
1886 * @param task The task containing the Activity (taskTop) that might be reset.
1887 * @param forceReset
1888 * @return An ActivityOptions that needs to be processed.
1889 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001890 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001891 ActivityOptions topOptions = null;
1892
1893 int replyChainEnd = -1;
1894 boolean canMoveOptions = true;
1895
1896 // We only do this for activities that are not the root of the task (since if we finish
1897 // the root, we may no longer have the task!).
1898 final ArrayList<ActivityRecord> activities = task.mActivities;
1899 final int numActivities = activities.size();
1900 for (int i = numActivities - 1; i > 0; --i ) {
1901 ActivityRecord target = activities.get(i);
1902
1903 final int flags = target.info.flags;
1904 final boolean finishOnTaskLaunch =
1905 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
1906 final boolean allowTaskReparenting =
1907 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
1908 final boolean clearWhenTaskReset =
1909 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
1910
1911 if (!finishOnTaskLaunch
1912 && !clearWhenTaskReset
1913 && target.resultTo != null) {
1914 // If this activity is sending a reply to a previous
1915 // activity, we can't do anything with it now until
1916 // we reach the start of the reply chain.
1917 // XXX note that we are assuming the result is always
1918 // to the previous activity, which is almost always
1919 // the case but we really shouldn't count on.
1920 if (replyChainEnd < 0) {
1921 replyChainEnd = i;
1922 }
1923 } else if (!finishOnTaskLaunch
1924 && !clearWhenTaskReset
1925 && allowTaskReparenting
1926 && target.taskAffinity != null
1927 && !target.taskAffinity.equals(task.affinity)) {
1928 // If this activity has an affinity for another
1929 // task, then we need to move it out of here. We will
1930 // move it as far out of the way as possible, to the
1931 // bottom of the activity stack. This also keeps it
1932 // correctly ordered with any activities we previously
1933 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08001934 final ThumbnailHolder newThumbHolder;
1935 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07001936 final ActivityRecord bottom =
1937 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08001938 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07001939 if (bottom != null && target.taskAffinity != null
1940 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001941 // If the activity currently at the bottom has the
1942 // same task affinity as the one we are moving,
1943 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08001944 targetTask = bottom.task;
1945 newThumbHolder = bottom.thumbHolder == null ? targetTask : bottom.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001946 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07001947 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001948 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08001949 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
1950 null, false);
1951 newThumbHolder = targetTask;
1952 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001953 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
1954 + " out to new task " + target.task);
1955 }
1956
Craig Mautner329f4122013-11-07 09:10:42 -08001957 if (clearWhenTaskReset) {
1958 // This is the start of a new sub-task.
1959 if (target.thumbHolder == null) {
1960 target.thumbHolder = new ThumbnailHolder();
1961 }
1962 } else {
1963 target.thumbHolder = newThumbHolder;
1964 }
1965
Craig Mautnere3a74d52013-02-22 14:14:58 -08001966 final int targetTaskId = targetTask.taskId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001967 mWindowManager.setAppGroupId(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001968
Craig Mautner525f3d92013-05-07 14:01:50 -07001969 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001970 final int start = replyChainEnd < 0 ? i : replyChainEnd;
1971 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07001972 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001973 if (p.finishing) {
1974 continue;
1975 }
1976
Craig Mautner525f3d92013-05-07 14:01:50 -07001977 ThumbnailHolder curThumbHolder = p.thumbHolder;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001978 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07001979 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08001980 topOptions = p.takeOptionsLocked();
1981 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001982 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08001983 }
1984 }
1985 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08001986 + task + " adding to task=" + targetTask
1987 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08001988 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
1989 + " out to target's task " + target.task);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001990 p.setTask(targetTask, curThumbHolder, false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001991 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08001992
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001993 mWindowManager.setAppGroupId(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001994 }
1995
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001996 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08001997 if (VALIDATE_TOKENS) {
1998 validateAppTokensLocked();
1999 }
2000
2001 replyChainEnd = -1;
2002 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2003 // If the activity should just be removed -- either
2004 // because it asks for it, or the task should be
2005 // cleared -- then finish it and anything that is
2006 // part of its reply chain.
2007 int end;
2008 if (clearWhenTaskReset) {
2009 // In this case, we want to finish this activity
2010 // and everything above it, so be sneaky and pretend
2011 // like these are all in the reply chain.
2012 end = numActivities - 1;
2013 } else if (replyChainEnd < 0) {
2014 end = i;
2015 } else {
2016 end = replyChainEnd;
2017 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002018 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002019 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002020 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002021 if (p.finishing) {
2022 continue;
2023 }
2024 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002025 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002026 topOptions = p.takeOptionsLocked();
2027 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002028 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002029 }
2030 }
Craig Mautner58547802013-03-05 08:23:53 -08002031 if (DEBUG_TASKS) Slog.w(TAG,
2032 "resetTaskIntendedTask: calling finishActivity on " + p);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002033 if (finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002034 end--;
2035 srcPos--;
2036 }
2037 }
2038 replyChainEnd = -1;
2039 } else {
2040 // If we were in the middle of a chain, well the
2041 // activity that started it all doesn't want anything
2042 // special, so leave it all as-is.
2043 replyChainEnd = -1;
2044 }
2045 }
2046
2047 return topOptions;
2048 }
2049
2050 /**
2051 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2052 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2053 * @param affinityTask The task we are looking for an affinity to.
2054 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2055 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2056 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2057 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002058 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002059 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002060 int replyChainEnd = -1;
2061 final int taskId = task.taskId;
2062 final String taskAffinity = task.affinity;
2063
2064 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2065 final int numActivities = activities.size();
2066 // Do not operate on the root Activity.
2067 for (int i = numActivities - 1; i > 0; --i) {
2068 ActivityRecord target = activities.get(i);
2069
2070 final int flags = target.info.flags;
2071 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2072 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2073
2074 if (target.resultTo != null) {
2075 // If this activity is sending a reply to a previous
2076 // activity, we can't do anything with it now until
2077 // we reach the start of the reply chain.
2078 // XXX note that we are assuming the result is always
2079 // to the previous activity, which is almost always
2080 // the case but we really shouldn't count on.
2081 if (replyChainEnd < 0) {
2082 replyChainEnd = i;
2083 }
2084 } else if (topTaskIsHigher
2085 && allowTaskReparenting
2086 && taskAffinity != null
2087 && taskAffinity.equals(target.taskAffinity)) {
2088 // This activity has an affinity for our task. Either remove it if we are
2089 // clearing or move it over to our task. Note that
2090 // we currently punt on the case where we are resetting a
2091 // task that is not at the top but who has activities above
2092 // with an affinity to it... this is really not a normal
2093 // case, and we will need to later pull that task to the front
2094 // and usually at that point we will do the reset and pick
2095 // up those remaining activities. (This only happens if
2096 // someone starts an activity in a new task from an activity
2097 // in a task that is not currently on top.)
2098 if (forceReset || finishOnTaskLaunch) {
2099 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2100 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2101 for (int srcPos = start; srcPos >= i; --srcPos) {
2102 final ActivityRecord p = activities.get(srcPos);
2103 if (p.finishing) {
2104 continue;
2105 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08002106 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002107 }
2108 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002109 if (taskInsertionPoint < 0) {
2110 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002111
Craig Mautner77878772013-03-04 19:46:24 -08002112 }
Craig Mautner77878772013-03-04 19:46:24 -08002113
2114 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2115 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2116 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2117 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002118 final ActivityRecord p = activities.get(srcPos);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002119 p.setTask(task, null, false);
Craig Mautner77878772013-03-04 19:46:24 -08002120 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002121
Craig Mautnere3a74d52013-02-22 14:14:58 -08002122 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2123 + " to stack at " + task,
2124 new RuntimeException("here").fillInStackTrace());
2125 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2126 + " in to resetting task " + task);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002127 mWindowManager.setAppGroupId(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002128 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002129 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002130 if (VALIDATE_TOKENS) {
2131 validateAppTokensLocked();
2132 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002133
2134 // Now we've moved it in to place... but what if this is
2135 // a singleTop activity and we have put it on top of another
2136 // instance of the same activity? Then we drop the instance
2137 // below so it remains singleTop.
2138 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2139 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002140 int targetNdx = taskActivities.indexOf(target);
2141 if (targetNdx > 0) {
2142 ActivityRecord p = taskActivities.get(targetNdx - 1);
2143 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002144 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2145 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002146 }
2147 }
2148 }
2149 }
2150
2151 replyChainEnd = -1;
2152 }
2153 }
Craig Mautner77878772013-03-04 19:46:24 -08002154 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002155 }
2156
Craig Mautner8849a5e2013-04-02 16:41:03 -07002157 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002158 ActivityRecord newActivity) {
2159 boolean forceReset =
2160 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2161 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2162 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2163 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2164 forceReset = true;
2165 }
2166 }
2167
2168 final TaskRecord task = taskTop.task;
2169
2170 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2171 * for remaining tasks. Used for later tasks to reparent to task. */
2172 boolean taskFound = false;
2173
2174 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2175 ActivityOptions topOptions = null;
2176
Craig Mautner77878772013-03-04 19:46:24 -08002177 // Preserve the location for reparenting in the new task.
2178 int reparentInsertionPoint = -1;
2179
Craig Mautnere3a74d52013-02-22 14:14:58 -08002180 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2181 final TaskRecord targetTask = mTaskHistory.get(i);
2182
2183 if (targetTask == task) {
2184 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2185 taskFound = true;
2186 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002187 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2188 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002189 }
2190 }
2191
Craig Mautner70a86932013-02-28 22:37:44 -08002192 int taskNdx = mTaskHistory.indexOf(task);
2193 do {
2194 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2195 } while (taskTop == null && taskNdx >= 0);
2196
Craig Mautnere3a74d52013-02-22 14:14:58 -08002197 if (topOptions != null) {
2198 // If we got some ActivityOptions from an activity on top that
2199 // was removed from the task, propagate them to the new real top.
2200 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002201 taskTop.updateOptionsLocked(topOptions);
2202 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002203 topOptions.abort();
2204 }
2205 }
2206
2207 return taskTop;
2208 }
2209
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002210 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2211 String resultWho, int requestCode, int resultCode, Intent data) {
2212
2213 if (callingUid > 0) {
2214 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Dianne Hackborn7e269642010-08-25 19:50:20 -07002215 data, r.getUriPermissionsLocked());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002216 }
2217
2218 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2219 + " : who=" + resultWho + " req=" + requestCode
2220 + " res=" + resultCode + " data=" + data);
2221 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2222 try {
2223 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2224 list.add(new ResultInfo(resultWho, requestCode,
2225 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002226 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002227 return;
2228 } catch (Exception e) {
2229 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2230 }
2231 }
2232
2233 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2234 }
2235
Craig Mautner04f0b702013-10-22 12:31:01 -07002236 private void adjustFocusedActivityLocked(ActivityRecord r) {
2237 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2238 ActivityRecord next = topRunningActivityLocked(null);
2239 if (next != r) {
2240 final TaskRecord task = r.task;
2241 if (r.frontOfTask && task == topTask() && task.mOnTopOfHome) {
2242 mStackSupervisor.moveHomeToTop();
2243 }
2244 }
2245 mService.setFocusedActivityLocked(mStackSupervisor.topRunningActivityLocked());
2246 }
2247 }
2248
Craig Mautnerf3333272013-04-22 10:55:53 -07002249 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002250 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2251 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2252 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2253 if (!r.finishing) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002254 if (!mService.mSleeping) {
2255 if (DEBUG_STATES) {
2256 Slog.d(TAG, "no-history finish of " + r);
2257 }
2258 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002259 "no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002260 } else {
2261 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2262 + " on stop because we're just sleeping");
2263 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002264 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002265 }
2266
2267 if (r.app != null && r.app.thread != null) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002268 adjustFocusedActivityLocked(r);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002269 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002270 try {
2271 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002272 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2273 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002274 r.state = ActivityState.STOPPING;
2275 if (DEBUG_VISBILITY) Slog.v(
2276 TAG, "Stopping visible=" + r.visible + " for " + r);
2277 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002278 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002279 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002280 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002281 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002282 r.setSleeping(true);
2283 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002284 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002285 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002286 } catch (Exception e) {
2287 // Maybe just ignore exceptions here... if the process
2288 // has crashed, our death notification will clean things
2289 // up.
2290 Slog.w(TAG, "Exception thrown during pause", e);
2291 // Just in case, assume it to be stopped.
2292 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002293 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002294 r.state = ActivityState.STOPPED;
2295 if (r.configDestroy) {
Dianne Hackborn28695e02011-11-02 21:59:51 -07002296 destroyActivityLocked(r, true, false, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002297 }
2298 }
2299 }
2300 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002301
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002302 /**
2303 * @return Returns true if the activity is being finished, false if for
2304 * some reason it is being left as-is.
2305 */
2306 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002307 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002308 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002309 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002310 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002311 + ", result=" + resultCode + ", data=" + resultData
2312 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002313 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002314 return false;
2315 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002316
Craig Mautnerd44711d2013-02-23 11:24:36 -08002317 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002318 return true;
2319 }
2320
Craig Mautnerd2328952013-03-05 12:46:26 -08002321 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002322 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2323 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2324 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2325 ActivityRecord r = activities.get(activityNdx);
2326 if (r.resultTo == self && r.requestCode == requestCode) {
2327 if ((r.resultWho == null && resultWho == null) ||
2328 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2329 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2330 false);
2331 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002332 }
2333 }
2334 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002335 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002336 }
2337
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002338 final void finishTopRunningActivityLocked(ProcessRecord app) {
2339 ActivityRecord r = topRunningActivityLocked(null);
2340 if (r != null && r.app == app) {
2341 // If the top running activity is from this crashing
2342 // process, then terminate it to avoid getting in a loop.
2343 Slog.w(TAG, " Force finishing activity "
2344 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002345 int taskNdx = mTaskHistory.indexOf(r.task);
2346 int activityNdx = r.task.mActivities.indexOf(r);
Craig Mautnerd2328952013-03-05 12:46:26 -08002347 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002348 // Also terminate any activities below it that aren't yet
2349 // stopped, to avoid a situation where one will get
2350 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002351 --activityNdx;
2352 if (activityNdx < 0) {
2353 do {
2354 --taskNdx;
2355 if (taskNdx < 0) {
2356 break;
2357 }
2358 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2359 } while (activityNdx < 0);
2360 }
2361 if (activityNdx >= 0) {
2362 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002363 if (r.state == ActivityState.RESUMED
2364 || r.state == ActivityState.PAUSING
2365 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002366 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002367 Slog.w(TAG, " Force finishing activity "
2368 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08002369 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002370 }
2371 }
2372 }
2373 }
2374 }
2375
Craig Mautnerd2328952013-03-05 12:46:26 -08002376 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002377 ArrayList<ActivityRecord> activities = r.task.mActivities;
2378 for (int index = activities.indexOf(r); index >= 0; --index) {
2379 ActivityRecord cur = activities.get(index);
2380 if (!Objects.equal(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002381 break;
2382 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002383 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002384 }
2385 return true;
2386 }
2387
Dianne Hackborn5c607432012-02-28 14:44:19 -08002388 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2389 // send the result
2390 ActivityRecord resultTo = r.resultTo;
2391 if (resultTo != null) {
2392 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2393 + " who=" + r.resultWho + " req=" + r.requestCode
2394 + " res=" + resultCode + " data=" + resultData);
2395 if (r.info.applicationInfo.uid > 0) {
2396 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2397 resultTo.packageName, resultData,
2398 resultTo.getUriPermissionsLocked());
2399 }
2400 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2401 resultData);
2402 r.resultTo = null;
2403 }
2404 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2405
2406 // Make sure this HistoryRecord is not holding on to other resources,
2407 // because clients have remote IPC references to this object so we
2408 // can't assume that will go away and want to avoid circular IPC refs.
2409 r.results = null;
2410 r.pendingResults = null;
2411 r.newIntents = null;
2412 r.icicle = null;
2413 }
2414
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002415 /**
2416 * @return Returns true if this activity has been removed from the history
2417 * list, or false if it is still in the list and will be removed later.
2418 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002419 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2420 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002421 if (r.finishing) {
2422 Slog.w(TAG, "Duplicate finish request for " + r);
2423 return false;
2424 }
2425
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002426 r.makeFinishing();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002427 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002428 r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002429 r.task.taskId, r.shortComponentName, reason);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002430 final ArrayList<ActivityRecord> activities = r.task.mActivities;
2431 final int index = activities.indexOf(r);
2432 if (index < (activities.size() - 1)) {
2433 ActivityRecord next = activities.get(index+1);
2434 if (r.frontOfTask) {
2435 // The next activity is now the front of the task.
2436 next.frontOfTask = true;
2437 }
2438 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
2439 // If the caller asked that this activity (and all above it)
2440 // be cleared when the task is reset, don't lose that information,
2441 // but propagate it up to the next activity.
2442 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002443 }
2444 }
2445
2446 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002447
2448 adjustFocusedActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002449
Dianne Hackborn5c607432012-02-28 14:44:19 -08002450 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002451
Craig Mautnerc8143c62013-09-03 12:15:57 -07002452 if (!mService.mPendingThumbnails.isEmpty()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002453 // There are clients waiting to receive thumbnails so, in case
2454 // this is an activity that someone is waiting for, add it
2455 // to the pending list so we can correctly update the clients.
Craig Mautnerf3333272013-04-22 10:55:53 -07002456 mStackSupervisor.mCancelledThumbnails.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002457 }
2458
Craig Mautnerde4ef022013-04-07 19:01:33 -07002459 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002460 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002461 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002462 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002463 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002464 ? AppTransition.TRANSIT_TASK_CLOSE
2465 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002466
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002467 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002468 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002469
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002470 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002471 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2472 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
2473 startPausingLocked(false, false);
2474 }
2475
2476 } else if (r.state != ActivityState.PAUSING) {
2477 // If the activity is PAUSING, we will complete the finish once
2478 // it is done pausing; else we can just directly finish it here.
2479 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002480 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002481 } else {
2482 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2483 }
2484
2485 return false;
2486 }
2487
Craig Mautnerf3333272013-04-22 10:55:53 -07002488 static final int FINISH_IMMEDIATELY = 0;
2489 static final int FINISH_AFTER_PAUSE = 1;
2490 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002491
Craig Mautnerf3333272013-04-22 10:55:53 -07002492 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002493 // First things first: if this activity is currently visible,
2494 // and the resumed activity is not yet visible, then hold off on
2495 // finishing until the resumed one becomes visible.
2496 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002497 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2498 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002499 if (mStackSupervisor.mStoppingActivities.size() > 3
2500 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002501 // If we already have a few activities waiting to stop,
2502 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002503 // them out. Or if r is the last of activity of the last task the stack
2504 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002505 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002506 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002507 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002508 }
2509 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002510 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2511 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002512 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002513 if (oomAdj) {
2514 mService.updateOomAdjLocked();
2515 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002516 return r;
2517 }
2518
2519 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002520 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002521 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002522 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002523 if (mResumedActivity == r) {
2524 mResumedActivity = null;
2525 }
2526 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002527 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002528 r.state = ActivityState.FINISHING;
2529
2530 if (mode == FINISH_IMMEDIATELY
2531 || prevState == ActivityState.STOPPED
2532 || prevState == ActivityState.INITIALIZING) {
2533 // If this activity is already stopped, we can just finish
2534 // it right now.
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002535 boolean activityRemoved = destroyActivityLocked(r, true,
2536 oomAdj, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002537 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002538 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002539 }
2540 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002541 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002542
2543 // Need to go through the full pause cycle to get this
2544 // activity into the stopped state and then finish it.
2545 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002546 mStackSupervisor.mFinishingActivities.add(r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002547 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002548 return r;
2549 }
2550
Craig Mautnerd2328952013-03-05 12:46:26 -08002551 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002552 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002553 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002554 final TaskRecord task = srec.task;
2555 final ArrayList<ActivityRecord> activities = task.mActivities;
2556 final int start = activities.indexOf(srec);
2557 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002558 return false;
2559 }
2560 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002561 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002562 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002563 final ComponentName dest = destIntent.getComponent();
2564 if (start > 0 && dest != null) {
2565 for (int i = finishTo; i >= 0; i--) {
2566 ActivityRecord r = activities.get(i);
2567 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002568 r.info.name.equals(dest.getClassName())) {
2569 finishTo = i;
2570 parent = r;
2571 foundParentInTask = true;
2572 break;
2573 }
2574 }
2575 }
2576
2577 IActivityController controller = mService.mController;
2578 if (controller != null) {
2579 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2580 if (next != null) {
2581 // ask watcher if this is allowed
2582 boolean resumeOK = true;
2583 try {
2584 resumeOK = controller.activityResuming(next.packageName);
2585 } catch (RemoteException e) {
2586 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002587 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002588 }
2589
2590 if (!resumeOK) {
2591 return false;
2592 }
2593 }
2594 }
2595 final long origId = Binder.clearCallingIdentity();
2596 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002597 ActivityRecord r = activities.get(i);
2598 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002599 // Only return the supplied result for the first activity finished
2600 resultCode = Activity.RESULT_CANCELED;
2601 resultData = null;
2602 }
2603
2604 if (parent != null && foundParentInTask) {
2605 final int parentLaunchMode = parent.info.launchMode;
2606 final int destIntentFlags = destIntent.getFlags();
2607 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2608 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2609 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2610 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
2611 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent);
2612 } else {
2613 try {
2614 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2615 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002616 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002617 null, aInfo, parent.appToken, null,
2618 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
2619 0, null, true, null);
2620 foundParentInTask = res == ActivityManager.START_SUCCESS;
2621 } catch (RemoteException e) {
2622 foundParentInTask = false;
2623 }
2624 requestFinishActivityLocked(parent.appToken, resultCode,
2625 resultData, "navigate-up", true);
2626 }
2627 }
2628 Binder.restoreCallingIdentity(origId);
2629 return foundParentInTask;
2630 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002631 /**
2632 * Perform the common clean-up of an activity record. This is called both
2633 * as part of destroyActivityLocked() (when destroying the client-side
2634 * representation) and cleaning things up as a result of its hosting
2635 * processing going away, in which case there is no remaining client-side
2636 * state to destroy so only the cleanup here is needed.
2637 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002638 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2639 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002640 if (mResumedActivity == r) {
2641 mResumedActivity = null;
2642 }
2643 if (mService.mFocusedActivity == r) {
2644 mService.mFocusedActivity = null;
2645 }
2646
2647 r.configDestroy = false;
2648 r.frozenBeforeDestroy = false;
2649
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002650 if (setState) {
2651 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
2652 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002653 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002654 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002655 }
2656
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002657 // Make sure this record is no longer in the pending finishes list.
2658 // This could happen, for example, if we are trimming activities
2659 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07002660 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002661 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07002662
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002663 // Remove any pending results.
2664 if (r.finishing && r.pendingResults != null) {
2665 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
2666 PendingIntentRecord rec = apr.get();
2667 if (rec != null) {
2668 mService.cancelIntentSenderLocked(rec, false);
2669 }
2670 }
2671 r.pendingResults = null;
2672 }
2673
2674 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07002675 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002676 }
2677
Craig Mautnerc8143c62013-09-03 12:15:57 -07002678 if (!mService.mPendingThumbnails.isEmpty()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002679 // There are clients waiting to receive thumbnails so, in case
2680 // this is an activity that someone is waiting for, add it
2681 // to the pending list so we can correctly update the clients.
Craig Mautnerf3333272013-04-22 10:55:53 -07002682 mStackSupervisor.mCancelledThumbnails.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002683 }
2684
2685 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002686 removeTimeoutsForActivityLocked(r);
2687 }
2688
2689 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07002690 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002691 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002692 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07002693 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002694 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002695 }
2696
Dianne Hackborn5c607432012-02-28 14:44:19 -08002697 final void removeActivityFromHistoryLocked(ActivityRecord r) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002698 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
2699 r.makeFinishing();
2700 if (DEBUG_ADD_REMOVE) {
2701 RuntimeException here = new RuntimeException("here");
2702 here.fillInStackTrace();
2703 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002704 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002705 final TaskRecord task = r.task;
2706 if (task != null && task.removeActivity(r)) {
Craig Mautnera9a3fb12013-04-18 10:01:00 -07002707 if (DEBUG_STACK) Slog.i(TAG,
2708 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautnere1db0dd2013-10-13 18:15:00 -07002709 if (mStackSupervisor.isFrontStack(this) && task == topTask() && task.mOnTopOfHome) {
Craig Mautner8e569572013-10-11 17:36:59 -07002710 mStackSupervisor.moveHomeToTop();
2711 }
Craig Mautner2219b752013-10-12 11:26:08 -07002712 mStackSupervisor.removeTask(task);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002713 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002714 r.takeFromHistory();
2715 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08002716 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002717 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002718 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002719 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002720 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002721 if (VALIDATE_TOKENS) {
2722 validateAppTokensLocked();
2723 }
2724 cleanUpActivityServicesLocked(r);
2725 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002726 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002727
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002728 /**
2729 * Perform clean-up of service connections in an activity record.
2730 */
2731 final void cleanUpActivityServicesLocked(ActivityRecord r) {
2732 // Throw away any services that have been bound by this activity.
2733 if (r.connections != null) {
2734 Iterator<ConnectionRecord> it = r.connections.iterator();
2735 while (it.hasNext()) {
2736 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07002737 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002738 }
2739 r.connections = null;
2740 }
2741 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002742
2743 final void scheduleDestroyActivities(ProcessRecord owner, boolean oomAdj, String reason) {
2744 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
2745 msg.obj = new ScheduleDestroyArgs(owner, oomAdj, reason);
2746 mHandler.sendMessage(msg);
2747 }
2748
Dianne Hackborn28695e02011-11-02 21:59:51 -07002749 final void destroyActivitiesLocked(ProcessRecord owner, boolean oomAdj, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002750 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002751 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002752 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2753 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2754 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2755 final ActivityRecord r = activities.get(activityNdx);
2756 if (r.finishing) {
2757 continue;
2758 }
2759 if (r.fullscreen) {
2760 lastIsOpaque = true;
2761 }
2762 if (owner != null && r.app != owner) {
2763 continue;
2764 }
2765 if (!lastIsOpaque) {
2766 continue;
2767 }
2768 // We can destroy this one if we have its icicle saved and
2769 // it is not in the process of pausing/stopping/finishing.
2770 if (r.app != null && r != mResumedActivity && r != mPausingActivity
2771 && r.haveState && !r.visible && r.stopped
2772 && r.state != ActivityState.DESTROYING
2773 && r.state != ActivityState.DESTROYED) {
2774 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
2775 + " resumed=" + mResumedActivity
2776 + " pausing=" + mPausingActivity);
2777 if (destroyActivityLocked(r, true, oomAdj, reason)) {
2778 activityRemoved = true;
2779 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002780 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002781 }
2782 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002783 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002784 mStackSupervisor.resumeTopActivitiesLocked();
2785
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002786 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002787 }
2788
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002789 /**
2790 * Destroy the current CLIENT SIDE instance of an activity. This may be
2791 * called both when actually finishing an activity, or when performing
2792 * a configuration switch where we destroy the current client-side object
2793 * but then create a new client-side object for this same HistoryRecord.
2794 */
2795 final boolean destroyActivityLocked(ActivityRecord r,
Dianne Hackborn28695e02011-11-02 21:59:51 -07002796 boolean removeFromApp, boolean oomAdj, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002797 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07002798 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002799 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
2800 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002801 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07002802 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002803
2804 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002805
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002806 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002807
2808 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002809
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002810 if (hadApp) {
2811 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002812 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002813 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
2814 mService.mHeavyWeightProcess = null;
2815 mService.mHandler.sendEmptyMessage(
2816 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
2817 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07002818 if (r.app.activities.isEmpty()) {
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07002819 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07002820 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002821 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002822 }
2823 }
2824
2825 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002826
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002827 try {
2828 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002829 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002830 r.configChangeFlags);
2831 } catch (Exception e) {
2832 // We can just ignore exceptions here... if the process
2833 // has crashed, our death notification will clean things
2834 // up.
2835 //Slog.w(TAG, "Exception thrown during finish", e);
2836 if (r.finishing) {
2837 removeActivityFromHistoryLocked(r);
2838 removedFromHistory = true;
2839 skipDestroy = true;
2840 }
2841 }
2842
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002843 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002844
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002845 // If the activity is finishing, we need to wait on removing it
2846 // from the list to give it a chance to do its cleanup. During
2847 // that time it may make calls back with its token so we need to
2848 // be able to find it on the list and so we don't want to remove
2849 // it from the list yet. Otherwise, we can just immediately put
2850 // it in the destroyed state since we are not removing it from the
2851 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002852 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002853 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
2854 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002855 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002856 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002857 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
2858 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002859 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002860 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002861 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002862 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002863 }
2864 } else {
2865 // remove this record from the history.
2866 if (r.finishing) {
2867 removeActivityFromHistoryLocked(r);
2868 removedFromHistory = true;
2869 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002870 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002871 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002872 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002873 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002874 }
2875 }
2876
2877 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002878
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002879 if (!mLRUActivities.remove(r) && hadApp) {
2880 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
2881 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002882
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002883 return removedFromHistory;
2884 }
2885
Craig Mautnerd2328952013-03-05 12:46:26 -08002886 final void activityDestroyedLocked(IBinder token) {
2887 final long origId = Binder.clearCallingIdentity();
2888 try {
2889 ActivityRecord r = ActivityRecord.forToken(token);
2890 if (r != null) {
2891 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002892 }
Craig Mautnerd2328952013-03-05 12:46:26 -08002893
2894 if (isInStackLocked(token) != null) {
2895 if (r.state == ActivityState.DESTROYING) {
2896 cleanUpActivityLocked(r, true, false);
2897 removeActivityFromHistoryLocked(r);
2898 }
2899 }
Craig Mautner05d29032013-05-03 13:40:13 -07002900 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08002901 } finally {
2902 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002903 }
2904 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002905
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002906 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
2907 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002908 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002909 if (DEBUG_CLEANUP) Slog.v(
2910 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002911 + " with " + i + " entries");
2912 while (i > 0) {
2913 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002914 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002915 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002916 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002917 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002918 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002919 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002920 }
2921 }
2922 }
2923
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002924 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
2925 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07002926 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
2927 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07002928 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
2929 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07002930 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002931 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07002932 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
2933 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002934
2935 boolean hasVisibleActivities = false;
2936
2937 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08002938 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002939 if (DEBUG_CLEANUP) Slog.v(
2940 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08002941 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2942 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2943 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2944 final ActivityRecord r = activities.get(activityNdx);
2945 --i;
2946 if (DEBUG_CLEANUP) Slog.v(
2947 TAG, "Record #" + i + " " + r + ": app=" + r.app);
2948 if (r.app == app) {
2949 boolean remove;
2950 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
2951 // Don't currently have state for the activity, or
2952 // it is finishing -- always remove it.
2953 remove = true;
2954 } else if (r.launchCount > 2 &&
2955 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
2956 // We have launched this activity too many times since it was
2957 // able to run, so give up and remove it.
2958 remove = true;
2959 } else {
2960 // The process may be gone, but the activity lives on!
2961 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002962 }
Craig Mautner0247fc82013-02-28 14:32:06 -08002963 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002964 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002965 RuntimeException here = new RuntimeException("here");
2966 here.fillInStackTrace();
2967 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
2968 + ": haveState=" + r.haveState
2969 + " stateNotNeeded=" + r.stateNotNeeded
2970 + " finishing=" + r.finishing
2971 + " state=" + r.state, here);
2972 }
2973 if (!r.finishing) {
2974 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
2975 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
2976 r.userId, System.identityHashCode(r),
2977 r.task.taskId, r.shortComponentName,
2978 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07002979 if (r.state == ActivityState.RESUMED) {
2980 mService.updateUsageStats(r, false);
2981 }
Craig Mautner0247fc82013-02-28 14:32:06 -08002982 }
2983 removeActivityFromHistoryLocked(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002984
Craig Mautner0247fc82013-02-28 14:32:06 -08002985 } else {
2986 // We have the current state for this activity, so
2987 // it can be restarted later when needed.
2988 if (localLOGV) Slog.v(
2989 TAG, "Keeping entry, setting app to null");
2990 if (r.visible) {
2991 hasVisibleActivities = true;
2992 }
2993 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
2994 + r);
2995 r.app = null;
2996 r.nowVisible = false;
2997 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002998 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08002999 "App died, clearing saved state of " + r);
3000 r.icicle = null;
3001 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003002 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003003
Craig Mautnerd2328952013-03-05 12:46:26 -08003004 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003005 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003006 }
3007 }
3008
3009 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003010 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003011
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003012 final void updateTransitLocked(int transit, Bundle options) {
3013 if (options != null) {
3014 ActivityRecord r = topRunningActivityLocked(null);
3015 if (r != null && r.state != ActivityState.RESUMED) {
3016 r.updateOptionsLocked(options);
3017 } else {
3018 ActivityOptions.abort(options);
3019 }
3020 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003021 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003022 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003023
Craig Mautnera82aa092013-09-13 15:34:08 -07003024 void moveHomeTaskToTop() {
3025 final int top = mTaskHistory.size() - 1;
3026 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3027 final TaskRecord task = mTaskHistory.get(taskNdx);
3028 if (task.isHomeTask()) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -07003029 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG, "moveHomeTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003030 mTaskHistory.remove(taskNdx);
3031 mTaskHistory.add(top, task);
3032 mWindowManager.moveTaskToTop(task.taskId);
3033 return;
3034 }
3035 }
3036 }
3037
Craig Mautnercae015f2013-02-08 14:31:27 -08003038 final boolean findTaskToMoveToFrontLocked(int taskId, int flags, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003039 final TaskRecord task = taskForIdLocked(taskId);
3040 if (task != null) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003041 if ((flags & ActivityManager.MOVE_TASK_NO_USER_ACTION) == 0) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003042 mStackSupervisor.mUserLeaving = true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003043 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003044 if ((flags & ActivityManager.MOVE_TASK_WITH_HOME) != 0) {
3045 // Caller wants the home activity moved with it. To accomplish this,
Craig Mautnere418ecd2013-05-01 17:02:29 -07003046 // we'll just indicate that this task returns to the home task.
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003047 task.mOnTopOfHome = true;
Craig Mautneraab647e2013-02-28 16:31:36 -08003048 }
3049 moveTaskToFrontLocked(task, null, options);
3050 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003051 }
3052 return false;
3053 }
3054
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003055 final void moveTaskToFrontLocked(TaskRecord tr, ActivityRecord reason, Bundle options) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003056 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003057
Craig Mautner11bf9a52013-02-19 14:08:51 -08003058 final int numTasks = mTaskHistory.size();
3059 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003060 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003061 // nothing to do!
3062 if (reason != null &&
3063 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3064 ActivityOptions.abort(options);
3065 } else {
3066 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3067 }
3068 return;
3069 }
3070
Craig Mautnerfb1e20d2013-06-23 21:24:13 -07003071 mStackSupervisor.moveHomeStack(isHomeStack());
3072
Craig Mautner11bf9a52013-02-19 14:08:51 -08003073 // Shift all activities with this task up to the top
3074 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003075 insertTaskAtTop(tr);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003076
3077 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003078 if (reason != null &&
3079 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003080 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003081 ActivityRecord r = topRunningActivityLocked(null);
3082 if (r != null) {
3083 mNoAnimActivities.add(r);
3084 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003085 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003086 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003087 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003088 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003089
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003090 mWindowManager.moveTaskToTop(tr.taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003091
Craig Mautner05d29032013-05-03 13:40:13 -07003092 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003093 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003094
3095 if (VALIDATE_TOKENS) {
3096 validateAppTokensLocked();
3097 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003098 }
3099
3100 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003101 * Worker method for rearranging history stack. Implements the function of moving all
3102 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003103 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003104 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003105 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3106 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003107 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003108 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003109 * @return Returns true if the move completed, false if not.
3110 */
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003111 final boolean moveTaskToBackLocked(int taskId, ActivityRecord reason) {
3112 Slog.i(TAG, "moveTaskToBack: " + taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003113
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003114 // If we have a watcher, preflight the move before committing to it. First check
3115 // for *other* available tasks, but if none are available, then try again allowing the
3116 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003117 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003118 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003119 if (next == null) {
3120 next = topRunningActivityLocked(null, 0);
3121 }
3122 if (next != null) {
3123 // ask watcher if this is allowed
3124 boolean moveOK = true;
3125 try {
3126 moveOK = mService.mController.activityResuming(next.packageName);
3127 } catch (RemoteException e) {
3128 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003129 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003130 }
3131 if (!moveOK) {
3132 return false;
3133 }
3134 }
3135 }
3136
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003137 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003138 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003139
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003140 final TaskRecord tr = taskForIdLocked(taskId);
Craig Mautnerd2328952013-03-05 12:46:26 -08003141 if (tr == null) {
3142 return false;
3143 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003144
Craig Mautner11bf9a52013-02-19 14:08:51 -08003145 mTaskHistory.remove(tr);
3146 mTaskHistory.add(0, tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003147
Craig Mautnerc8143c62013-09-03 12:15:57 -07003148 // There is an assumption that moving a task to the back moves it behind the home activity.
3149 // We make sure here that some activity in the stack will launch home.
3150 ActivityRecord lastActivity = null;
3151 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003152 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3153 final TaskRecord task = mTaskHistory.get(taskNdx);
3154 if (task.mOnTopOfHome) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003155 break;
3156 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003157 if (taskNdx == 1) {
3158 // Set the last task before tr to go to home.
3159 task.mOnTopOfHome = true;
3160 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003161 }
3162
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003163 if (reason != null &&
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003164 (reason.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3165 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003166 ActivityRecord r = topRunningActivityLocked(null);
3167 if (r != null) {
3168 mNoAnimActivities.add(r);
3169 }
3170 } else {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003171 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003172 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003173 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003174
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003175 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003176 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003177 }
3178
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003179 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
3180 if (task == tr && task.mOnTopOfHome || numTasks <= 1) {
Craig Mautnerada62fc2013-11-13 15:06:15 -08003181 if (task != null) {
3182 task.mOnTopOfHome = false;
3183 }
Craig Mautner69ada552013-04-18 13:51:51 -07003184 return mStackSupervisor.resumeHomeActivity(null);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003185 }
3186
Craig Mautner05d29032013-05-03 13:40:13 -07003187 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003188 return true;
3189 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003190
Craig Mautner8849a5e2013-04-02 16:41:03 -07003191 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003192 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003193 final Uri data = r.intent.getData();
3194 final String strData = data != null ? data.toSafeString() : null;
3195
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003196 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003197 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003198 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003199 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003200 }
3201
3202 /**
3203 * Make sure the given activity matches the current configuration. Returns
3204 * false if the activity had to be destroyed. Returns true if the
3205 * configuration is the same, or the activity will remain running as-is
3206 * for whatever reason. Ensures the HistoryRecord is updated with the
3207 * correct configuration and all other bookkeeping is handled.
3208 */
3209 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3210 int globalChanges) {
3211 if (mConfigWillChange) {
3212 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3213 "Skipping config check (will change): " + r);
3214 return true;
3215 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003216
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003217 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3218 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003219
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003220 // Short circuit: if the two configurations are the exact same
3221 // object (the common case), then there is nothing to do.
3222 Configuration newConfig = mService.mConfiguration;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003223 if (r.configuration == newConfig && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003224 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3225 "Configuration unchanged in " + r);
3226 return true;
3227 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003228
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003229 // We don't worry about activities that are finishing.
3230 if (r.finishing) {
3231 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3232 "Configuration doesn't matter in finishing " + r);
3233 r.stopFreezingScreenLocked(false);
3234 return true;
3235 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003236
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003237 // Okay we now are going to make this activity have the new config.
3238 // But then we need to figure out how it needs to deal with that.
3239 Configuration oldConfig = r.configuration;
3240 r.configuration = newConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003241
3242 // Determine what has changed. May be nothing, if this is a config
3243 // that has come back from the app after going idle. In that case
3244 // we just want to leave the official config object now in the
3245 // activity and do nothing else.
3246 final int changes = oldConfig.diff(newConfig);
3247 if (changes == 0 && !r.forceNewConfig) {
3248 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3249 "Configuration no differences in " + r);
3250 return true;
3251 }
3252
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003253 // If the activity isn't currently running, just leave the new
3254 // configuration and it will pick that up next time it starts.
3255 if (r.app == null || r.app.thread == null) {
3256 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3257 "Configuration doesn't matter not running " + r);
3258 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003259 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003260 return true;
3261 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003262
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003263 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003264 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3265 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3266 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003267 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003268 + ", newConfig=" + newConfig);
3269 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003270 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003271 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3272 r.configChangeFlags |= changes;
3273 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003274 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003275 if (r.app == null || r.app.thread == null) {
3276 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003277 "Config is destroying non-running " + r);
Dianne Hackborn28695e02011-11-02 21:59:51 -07003278 destroyActivityLocked(r, true, false, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003279 } else if (r.state == ActivityState.PAUSING) {
3280 // A little annoying: we are waiting for this activity to
3281 // finish pausing. Let's not do anything now, but just
3282 // flag that it needs to be restarted when done pausing.
3283 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003284 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003285 r.configDestroy = true;
3286 return true;
3287 } else if (r.state == ActivityState.RESUMED) {
3288 // Try to optimize this case: the configuration is changing
3289 // and we need to restart the top, resumed activity.
3290 // Instead of doing the normal handshaking, just say
3291 // "restart!".
3292 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003293 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003294 relaunchActivityLocked(r, r.configChangeFlags, true);
3295 r.configChangeFlags = 0;
3296 } else {
3297 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003298 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003299 relaunchActivityLocked(r, r.configChangeFlags, false);
3300 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003301 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003302
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003303 // All done... tell the caller we weren't able to keep this
3304 // activity around.
3305 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003306 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003307
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003308 // Default case: the activity can handle this new configuration, so
3309 // hand it over. Note that we don't need to give it the new
3310 // configuration, since we always send configuration changes to all
3311 // process when they happen so it can just use whatever configuration
3312 // it last got.
3313 if (r.app != null && r.app.thread != null) {
3314 try {
3315 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003316 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003317 } catch (RemoteException e) {
3318 // If process died, whatever.
3319 }
3320 }
3321 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003322
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003323 return true;
3324 }
3325
Craig Mautnerc8143c62013-09-03 12:15:57 -07003326 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003327 int changes, boolean andResume) {
3328 List<ResultInfo> results = null;
3329 List<Intent> newIntents = null;
3330 if (andResume) {
3331 results = r.results;
3332 newIntents = r.newIntents;
3333 }
3334 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3335 + " with results=" + results + " newIntents=" + newIntents
3336 + " andResume=" + andResume);
3337 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003338 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003339 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003340
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003341 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003342
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003343 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003344 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3345 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3346 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003347 r.forceNewConfig = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08003348 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents,
Dianne Hackborn813075a62011-11-14 17:45:19 -08003349 changes, !andResume, new Configuration(mService.mConfiguration));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003350 // Note: don't need to call pauseIfSleepingLocked() here, because
3351 // the caller will only pass in 'andResume' if this activity is
3352 // currently resumed, which implies we aren't sleeping.
3353 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003354 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003355 }
3356
3357 if (andResume) {
3358 r.results = null;
3359 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003360 r.state = ActivityState.RESUMED;
3361 } else {
3362 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3363 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003364 }
3365
3366 return true;
3367 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003368
3369 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003370 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3371 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3372 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3373 final ActivityRecord r = activities.get(activityNdx);
3374 if (r.appToken == token) {
3375 return true;
3376 }
3377 if (r.fullscreen && !r.finishing) {
3378 return false;
3379 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003380 }
3381 }
3382 return true;
3383 }
3384
3385 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003386 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3387 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3388 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3389 final ActivityRecord r = activities.get(activityNdx);
3390 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003391 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003392 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003393 }
3394 }
3395 }
3396
3397 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3398 boolean didSomething = false;
3399 TaskRecord lastTask = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003400 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3401 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3402 int numActivities = activities.size();
3403 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3404 ActivityRecord r = activities.get(activityNdx);
3405 final boolean samePackage = r.packageName.equals(name)
3406 || (name == null && r.userId == userId);
3407 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3408 && (samePackage || r.task == lastTask)
3409 && (r.app == null || evenPersistent || !r.app.persistent)) {
3410 if (!doit) {
3411 if (r.finishing) {
3412 // If this activity is just finishing, then it is not
3413 // interesting as far as something to stop.
3414 continue;
3415 }
3416 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003417 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003418 didSomething = true;
3419 Slog.i(TAG, " Force finishing activity " + r);
3420 if (samePackage) {
3421 if (r.app != null) {
3422 r.app.removed = true;
3423 }
3424 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003425 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003426 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003427 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3428 true)) {
3429 // r has been deleted from mActivities, accommodate.
3430 --numActivities;
3431 --activityNdx;
3432 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003433 }
3434 }
3435 }
3436 return didSomething;
3437 }
3438
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003439 ActivityRecord getTasksLocked(IThumbnailReceiver receiver,
Craig Mautneraab647e2013-02-28 16:31:36 -08003440 PendingThumbnailsRecord pending, List<RunningTaskInfo> list) {
Craig Mautnercae015f2013-02-08 14:31:27 -08003441 ActivityRecord topRecord = null;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003442 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003443 final TaskRecord task = mTaskHistory.get(taskNdx);
3444 ActivityRecord r = null;
3445 ActivityRecord top = null;
3446 int numActivities = 0;
3447 int numRunning = 0;
3448 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003449 if (activities.isEmpty()) {
3450 continue;
3451 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003452 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3453 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003454
Craig Mautneraab647e2013-02-28 16:31:36 -08003455 // Initialize state for next task if needed.
3456 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3457 top = r;
3458 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003459 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003460
3461 // Add 'r' into the current task.
3462 numActivities++;
3463 if (r.app != null && r.app.thread != null) {
3464 numRunning++;
3465 }
3466
3467 if (localLOGV) Slog.v(
3468 TAG, r.intent.getComponent().flattenToShortString()
3469 + ": task=" + r.task);
3470 }
3471
3472 RunningTaskInfo ci = new RunningTaskInfo();
3473 ci.id = task.taskId;
3474 ci.baseActivity = r.intent.getComponent();
3475 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003476 ci.lastActiveTime = task.lastActiveTime;
3477
Craig Mautneraab647e2013-02-28 16:31:36 -08003478 if (top.thumbHolder != null) {
3479 ci.description = top.thumbHolder.lastDescription;
3480 }
3481 ci.numActivities = numActivities;
3482 ci.numRunning = numRunning;
3483 //System.out.println(
3484 // "#" + maxNum + ": " + " descr=" + ci.description);
3485 if (receiver != null) {
3486 if (localLOGV) Slog.v(
3487 TAG, "State=" + top.state + "Idle=" + top.idle
3488 + " app=" + top.app
3489 + " thr=" + (top.app != null ? top.app.thread : null));
3490 if (top.state == ActivityState.RESUMED || top.state == ActivityState.PAUSING) {
3491 if (top.idle && top.app != null && top.app.thread != null) {
3492 topRecord = top;
3493 } else {
3494 top.thumbnailNeeded = true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003495 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003496 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003497 pending.pendingRecords.add(top);
Craig Mautnercae015f2013-02-08 14:31:27 -08003498 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003499 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003500 }
3501 return topRecord;
3502 }
3503
3504 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003505 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003506 if (DEBUG_SWITCH) Slog.d(
3507 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003508 if (top >= 0) {
3509 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3510 int activityTop = activities.size() - 1;
3511 if (activityTop > 0) {
3512 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3513 "unhandled-back", true);
3514 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003515 }
3516 }
3517
Craig Mautner6b74cb52013-09-27 17:02:21 -07003518 /**
3519 * Reset local parameters because an app's activity died.
3520 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003521 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003522 */
3523 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003524 if (mPausingActivity != null && mPausingActivity.app == app) {
3525 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3526 "App died while pausing: " + mPausingActivity);
3527 mPausingActivity = null;
3528 }
3529 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3530 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003531 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003532 }
3533
Craig Mautner19091252013-10-05 00:03:53 -07003534 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003535 }
3536
Craig Mautnercae015f2013-02-08 14:31:27 -08003537 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003538 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3539 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3540 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3541 final ActivityRecord r = activities.get(activityNdx);
3542 if (r.app == app) {
3543 Slog.w(TAG, " Force finishing activity "
3544 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08003545 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003546 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003547 }
3548 }
3549 }
3550
Dianne Hackborn390517b2013-05-30 15:03:32 -07003551 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003552 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003553 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08003554 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3555 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07003556 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
3557 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003558 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07003559 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003560 if (printed) {
3561 header = null;
3562 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003563 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003564 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08003565 }
3566
3567 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
3568 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
3569
3570 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003571 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3572 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08003573 }
3574 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003575 final int top = mTaskHistory.size() - 1;
3576 if (top >= 0) {
3577 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
3578 int listTop = list.size() - 1;
3579 if (listTop >= 0) {
3580 activities.add(list.get(listTop));
3581 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003582 }
3583 } else {
3584 ItemMatcher matcher = new ItemMatcher();
3585 matcher.build(name);
3586
Craig Mautneraab647e2013-02-28 16:31:36 -08003587 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3588 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
3589 if (matcher.match(r1, r1.intent.getComponent())) {
3590 activities.add(r1);
3591 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003592 }
3593 }
3594 }
3595
3596 return activities;
3597 }
3598
3599 ActivityRecord restartPackage(String packageName) {
3600 ActivityRecord starting = topRunningActivityLocked(null);
3601
3602 // All activities that came from the package must be
3603 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08003604 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3605 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3606 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3607 final ActivityRecord a = activities.get(activityNdx);
3608 if (a.info.packageName.equals(packageName)) {
3609 a.forceNewConfig = true;
3610 if (starting != null && a == starting && a.visible) {
3611 a.startFreezingScreenLocked(starting.app,
3612 ActivityInfo.CONFIG_SCREEN_LAYOUT);
3613 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003614 }
3615 }
3616 }
3617
3618 return starting;
3619 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003620
Craig Mautnerde4ef022013-04-07 19:01:33 -07003621 boolean removeTask(TaskRecord task) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003622 final int taskNdx = mTaskHistory.indexOf(task);
3623 final int topTaskNdx = mTaskHistory.size() - 1;
3624 if (task.mOnTopOfHome && taskNdx < topTaskNdx) {
3625 mTaskHistory.get(taskNdx + 1).mOnTopOfHome = true;
3626 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003627 mTaskHistory.remove(task);
Craig Mautnerc8143c62013-09-03 12:15:57 -07003628 return mTaskHistory.isEmpty();
Craig Mautner0247fc82013-02-28 14:32:06 -08003629 }
3630
Craig Mautnerde4ef022013-04-07 19:01:33 -07003631 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent, boolean toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003632 TaskRecord task = new TaskRecord(taskId, info, intent);
3633 addTask(task, toTop);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08003634 return task;
3635 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08003636
3637 ArrayList<TaskRecord> getAllTasks() {
3638 return new ArrayList<TaskRecord>(mTaskHistory);
3639 }
3640
Craig Mautnerb3b36ba2013-05-20 13:21:10 -07003641 void addTask(final TaskRecord task, final boolean toTop) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08003642 task.stack = this;
3643 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07003644 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08003645 } else {
3646 mTaskHistory.add(0, task);
3647 }
3648 }
3649
3650 public int getStackId() {
3651 return mStackId;
3652 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003653
3654 @Override
3655 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07003656 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
3657 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07003658 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003659}