blob: 50bbbc3b1a3e476c09e1cab4c79cb498183d1cf1 [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
Craig Mautner84984fa2014-06-19 11:19:20 -070033import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
34import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070035
Craig Mautner0eea92c2013-05-16 13:35:39 -070036import static com.android.server.am.ActivityStackSupervisor.DEBUG_ADD_REMOVE;
37import static com.android.server.am.ActivityStackSupervisor.DEBUG_APP;
Craig Mautnerd163e752014-06-13 17:18:47 -070038import static com.android.server.am.ActivityStackSupervisor.DEBUG_CONTAINERS;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070039import static com.android.server.am.ActivityStackSupervisor.DEBUG_RELEASE;
Craig Mautner0eea92c2013-05-16 13:35:39 -070040import static com.android.server.am.ActivityStackSupervisor.DEBUG_SAVED_STATE;
Winson Chung376543b2014-05-21 17:43:28 -070041import static com.android.server.am.ActivityStackSupervisor.DEBUG_SCREENSHOTS;
Craig Mautner0eea92c2013-05-16 13:35:39 -070042import static com.android.server.am.ActivityStackSupervisor.DEBUG_STATES;
Craig Mautnerde4ef022013-04-07 19:01:33 -070043import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
44
Dianne Hackborn89ad4562014-08-24 16:45:38 -070045import android.util.ArraySet;
Dianne Hackborn91097de2014-04-04 18:02:06 -070046import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080047import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070048import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070049import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080050import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080051import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080052import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080053import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070054import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055
56import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070057import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070058import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080060import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080062import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070064import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070065import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080068import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080069import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070070import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070071import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080072import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070073import android.os.Handler;
74import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090075import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070076import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070077import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.os.RemoteException;
79import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080080import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070081import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070082import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070083import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070084import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070085import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
Craig Mautnercae015f2013-02-08 14:31:27 -080087import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080088import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070089import java.lang.ref.WeakReference;
90import java.util.ArrayList;
91import java.util.Iterator;
92import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080093import java.util.Objects;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070094
95/**
96 * State and management of a single stack of activities.
97 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070098final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080099
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700100 // Ticks during which we check progress while waiting for an app to launch.
101 static final int LAUNCH_TICK = 500;
102
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700103 // How long we wait until giving up on the last activity to pause. This
104 // is short because it directly impacts the responsiveness of starting the
105 // next activity.
106 static final int PAUSE_TIMEOUT = 500;
107
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700108 // How long we wait for the activity to tell us it has stopped before
109 // giving up. This is a good amount of time because we really need this
110 // from the application in order to get its saved state.
111 static final int STOP_TIMEOUT = 10*1000;
112
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700113 // How long we wait until giving up on an activity telling us it has
114 // finished destroying itself.
115 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800116
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700117 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800118 // disabled.
119 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800120
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700121 // How long between activity launches that we consider safe to not warn
122 // the user about an unexpected activity being launched on top.
123 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800124
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700125 // Set to false to disable the preview that is shown while a new activity
126 // is being started.
127 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800128
Craig Mautner5eda9b32013-07-02 11:58:16 -0700129 // How long to wait for all background Activities to redraw following a call to
130 // convertToTranslucent().
131 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
132
Craig Mautnera61bc652013-10-28 15:43:18 -0700133 static final boolean SCREENSHOT_FORCE_565 = ActivityManager.isLowRamDeviceStatic();
John Reck172e87c2013-10-02 16:55:16 -0700134
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700135 enum ActivityState {
136 INITIALIZING,
137 RESUMED,
138 PAUSING,
139 PAUSED,
140 STOPPING,
141 STOPPED,
142 FINISHING,
143 DESTROYING,
144 DESTROYED
145 }
146
147 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700148 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800149 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800150
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700151 /**
152 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800153 * running) activities. It contains #TaskRecord objects.
154 */
155 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
156
157 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800158 * Used for validating app tokens with window manager.
159 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800160 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800161
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700162 /**
163 * List of running activities, sorted by recent usage.
164 * The first entry in the list is the least recently used.
165 * It contains HistoryRecord objects.
166 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700167 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700168
169 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170 * Animations that for the current transition have requested not to
171 * be considered for the transition animation.
172 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700173 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700174
175 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700176 * When we are in the process of pausing an activity, before starting the
177 * next one, this variable holds the activity that is currently being paused.
178 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800179 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700180
181 /**
182 * This is the last activity that we put into the paused state. This is
183 * used to determine if we need to do an activity transition while sleeping,
184 * when we normally hold the top activity paused.
185 */
186 ActivityRecord mLastPausedActivity = null;
187
188 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700189 * Activities that specify No History must be removed once the user navigates away from them.
190 * If the device goes to sleep with such an activity in the paused state then we save it here
191 * and finish it later if another activity replaces it on wakeup.
192 */
193 ActivityRecord mLastNoHistoryActivity = null;
194
195 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700196 * Current activity that is resumed, or null if there is none.
197 */
198 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800199
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700200 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700201 * This is the last activity that has been started. It is only used to
202 * identify when multiple activities are started at once so that the user
203 * can be warned they may not be in the activity they think they are.
204 */
205 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800206
Craig Mautner5eda9b32013-07-02 11:58:16 -0700207 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
208 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
209 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
210 // Activity in mTranslucentActivityWaiting is notified via
211 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
212 // background activity being drawn then the same call will be made with a true value.
213 ActivityRecord mTranslucentActivityWaiting = null;
Craig Mautnereb8abf72014-07-02 15:04:09 -0700214 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
Craig Mautner5eda9b32013-07-02 11:58:16 -0700215 new ArrayList<ActivityRecord>();
216
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700217 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700218 * Set when we know we are going to be calling updateConfiguration()
219 * soon, so want to skip intermediate config checks.
220 */
221 boolean mConfigWillChange;
222
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700223 long mLaunchStartTime = 0;
224 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800225
Craig Mautner858d8a62013-04-23 17:08:34 -0700226 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700227
Craig Mautnerc00204b2013-03-05 15:02:14 -0800228 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800229 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800230 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
231 ArrayList<ActivityStack> mStacks;
232 /** The attached Display's unique identifier, or -1 if detached */
233 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800234
Craig Mautner27084302013-03-25 08:05:25 -0700235 /** Run all ActivityStacks through this */
236 final ActivityStackSupervisor mStackSupervisor;
237
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700238 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700239 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
240 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
241 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
242 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700243 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700244 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700245 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700246
247 static class ScheduleDestroyArgs {
248 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700249 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700250 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700251 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700252 mReason = reason;
253 }
254 }
255
Zoran Marcetaf958b322012-08-09 20:27:12 +0900256 final Handler mHandler;
257
258 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700259 //public Handler() {
260 // if (localLOGV) Slog.v(TAG, "Handler started!");
261 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700262 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900263 super(looper);
264 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700265
Zoran Marcetaf958b322012-08-09 20:27:12 +0900266 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700267 public void handleMessage(Message msg) {
268 switch (msg.what) {
269 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800270 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700271 // We don't at this point know if the activity is fullscreen,
272 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800273 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700274 synchronized (mService) {
275 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700276 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700277 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700278 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800279 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700280 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700281 case LAUNCH_TICK_MSG: {
282 ActivityRecord r = (ActivityRecord)msg.obj;
283 synchronized (mService) {
284 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700285 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700286 }
287 }
288 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700289 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800290 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700291 // We don't at this point know if the activity is fullscreen,
292 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800293 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800294 synchronized (mService) {
295 activityDestroyedLocked(r != null ? r.appToken : null);
296 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700297 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700298 case STOP_TIMEOUT_MSG: {
299 ActivityRecord r = (ActivityRecord)msg.obj;
300 // We don't at this point know if the activity is fullscreen,
301 // so we need to be conservative and assume it isn't.
302 Slog.w(TAG, "Activity stop timeout for " + r);
303 synchronized (mService) {
304 if (r.isInHistory()) {
305 activityStoppedLocked(r, null, null, null);
306 }
307 }
308 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700309 case DESTROY_ACTIVITIES_MSG: {
310 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
311 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700312 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700313 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700314 } break;
315 case TRANSLUCENT_TIMEOUT_MSG: {
316 synchronized (mService) {
317 notifyActivityDrawnLocked(null);
318 }
319 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700320 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700321 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700322 final ActivityRecord r = getVisibleBehindActivity();
323 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700324 if (r != null) {
325 mService.killAppAtUsersRequest(r.app, null);
326 }
327 }
328 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700329 }
330 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800331 }
332
Craig Mautner34b73df2014-01-12 21:11:08 -0800333 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800334 int count = 0;
335 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
336 count += mTaskHistory.get(taskNdx).mActivities.size();
337 }
338 return count;
339 }
340
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800341 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
342 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800343 mActivityContainer = activityContainer;
344 mStackSupervisor = activityContainer.getOuter();
345 mService = mStackSupervisor.mService;
346 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
347 mWindowManager = mService.mWindowManager;
348 mStackId = activityContainer.mStackId;
349 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800350 mRecentTasks = recentTasks;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700351 }
Craig Mautner5962b122012-10-05 14:45:52 -0700352
Amith Yamasani734983f2014-03-04 16:48:05 -0800353 /**
Kenny Guy2a764942014-04-02 13:29:20 +0100354 * Checks whether the userid is a profile of the current user.
Amith Yamasani734983f2014-03-04 16:48:05 -0800355 */
Kenny Guy2a764942014-04-02 13:29:20 +0100356 private boolean isCurrentProfileLocked(int userId) {
Kenny Guyf4824a02014-04-02 19:17:41 +0100357 if (userId == mCurrentUser) return true;
Kenny Guy2a764942014-04-02 13:29:20 +0100358 for (int i = 0; i < mService.mCurrentProfileIds.length; i++) {
359 if (mService.mCurrentProfileIds[i] == userId) return true;
Amith Yamasani734983f2014-03-04 16:48:05 -0800360 }
361 return false;
362 }
363
364 boolean okToShowLocked(ActivityRecord r) {
Kenny Guy2a764942014-04-02 13:29:20 +0100365 return isCurrentProfileLocked(r.userId)
Craig Mautner5962b122012-10-05 14:45:52 -0700366 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
367 }
368
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700369 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800370 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700371 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
372 if (r != null) {
373 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800374 }
375 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700376 return null;
377 }
378
379 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800380 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
381 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800382 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800383 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
384 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800385 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800386 return r;
387 }
388 }
389 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700390 return null;
391 }
392
393 /**
394 * This is a simplified version of topRunningActivityLocked that provides a number of
395 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800396 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700397 * @param token If non-null, any history records matching this token will be skipped.
398 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800399 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700400 * @return Returns the HistoryRecord of the next activity on the stack.
401 */
402 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800403 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
404 TaskRecord task = mTaskHistory.get(taskNdx);
405 if (task.taskId == taskId) {
406 continue;
407 }
408 ArrayList<ActivityRecord> activities = task.mActivities;
409 for (int i = activities.size() - 1; i >= 0; --i) {
410 final ActivityRecord r = activities.get(i);
411 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800412 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800413 return r;
414 }
415 }
416 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700417 return null;
418 }
419
Craig Mautner8849a5e2013-04-02 16:41:03 -0700420 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700421 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
422 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700423 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
424 final ActivityRecord r = activities.get(activityNdx);
425 if (!r.finishing) {
426 return r;
427 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700428 }
429 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700430 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700431 }
432
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700433 final TaskRecord topTask() {
434 final int size = mTaskHistory.size();
435 if (size > 0) {
436 return mTaskHistory.get(size - 1);
437 }
438 return null;
439 }
440
Craig Mautnerd2328952013-03-05 12:46:26 -0800441 TaskRecord taskForIdLocked(int id) {
442 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
443 final TaskRecord task = mTaskHistory.get(taskNdx);
444 if (task.taskId == id) {
445 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800446 }
447 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700448 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700449 }
450
Craig Mautnerd2328952013-03-05 12:46:26 -0800451 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800452 final ActivityRecord r = ActivityRecord.forToken(token);
Craig Mautnerd2328952013-03-05 12:46:26 -0800453 if (r != null) {
454 final TaskRecord task = r.task;
Dianne Hackborn925e2b32014-09-03 16:40:49 -0700455 if (task != null && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800456 if (task.stack != this) Slog.w(TAG,
457 "Illegal state! task does not point to stack it is in.");
458 return r;
459 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800460 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800461 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800462 }
463
Craig Mautner2420ead2013-04-01 17:13:20 -0700464 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700465 final boolean hadit = mLRUActivities.remove(r);
466 mLRUActivities.add(r);
467 return hadit;
468 }
469
Craig Mautnerde4ef022013-04-07 19:01:33 -0700470 final boolean isHomeStack() {
471 return mStackId == HOME_STACK_ID;
472 }
473
Craig Mautnere0a38842013-12-16 16:14:02 -0800474 final boolean isOnHomeDisplay() {
475 return isAttached() &&
476 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
477 }
478
479 final void moveToFront() {
480 if (isAttached()) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800481 if (isOnHomeDisplay()) {
482 mStackSupervisor.moveHomeStack(isHomeStack());
483 }
Craig Mautnerfefeef82014-01-10 08:40:23 -0800484 mStacks.remove(this);
485 mStacks.add(this);
Craig Mautner6b904ef2014-12-17 15:45:03 -0800486 final TaskRecord task = topTask();
487 if (task != null) {
488 mWindowManager.moveTaskToTop(task.taskId);
489 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800490 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800491 }
492
493 final boolean isAttached() {
494 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800495 }
496
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700497 /**
498 * Returns the top activity in any existing task matching the given
499 * Intent. Returns null if no such task is found.
500 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700501 ActivityRecord findTaskLocked(ActivityRecord target) {
502 Intent intent = target.intent;
503 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700504 ComponentName cls = intent.getComponent();
505 if (info.targetActivity != null) {
506 cls = new ComponentName(info.packageName, info.targetActivity);
507 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700508 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700509 boolean isDocument = intent != null & intent.isDocument();
510 // If documentData is non-null then it must match the existing task data.
511 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800512
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700513 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800514 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
515 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700516 if (task.voiceSession != null) {
517 // We never match voice sessions; those always run independently.
518 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": voice session");
519 continue;
520 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700521 if (task.userId != userId) {
522 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700523 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700524 continue;
525 }
Craig Mautner000f0022013-02-26 15:04:29 -0800526 final ActivityRecord r = task.getTopActivity();
527 if (r == null || r.finishing || r.userId != userId ||
528 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700529 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800530 continue;
531 }
532
Craig Mautnerd00f4742014-03-12 14:17:26 -0700533 final Intent taskIntent = task.intent;
534 final Intent affinityIntent = task.affinityIntent;
535 final boolean taskIsDocument;
536 final Uri taskDocumentData;
537 if (taskIntent != null && taskIntent.isDocument()) {
538 taskIsDocument = true;
539 taskDocumentData = taskIntent.getData();
540 } else if (affinityIntent != null && affinityIntent.isDocument()) {
541 taskIsDocument = true;
542 taskDocumentData = affinityIntent.getData();
543 } else {
544 taskIsDocument = false;
545 taskDocumentData = null;
546 }
547
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700548 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700549 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700550 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700551 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700552 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
553 if (task.rootAffinity.equals(target.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700554 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700555 return r;
556 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700557 } else if (taskIntent != null && taskIntent.getComponent() != null &&
558 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700559 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700560 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800561 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700562 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
563 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800564 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700565 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
566 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700567 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700568 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800569 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700570 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
571 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800572 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700573 } else if (DEBUG_TASKS) {
574 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700575 }
576 }
577
578 return null;
579 }
580
581 /**
582 * Returns the first activity (starting from the top of the stack) that
583 * is the same as the given activity. Returns null if no such activity
584 * is found.
585 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700586 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700587 ComponentName cls = intent.getComponent();
588 if (info.targetActivity != null) {
589 cls = new ComponentName(info.packageName, info.targetActivity);
590 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700591 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700592
Craig Mautner000f0022013-02-26 15:04:29 -0800593 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700594 TaskRecord task = mTaskHistory.get(taskNdx);
Kenny Guy2a764942014-04-02 13:29:20 +0100595 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700596 return null;
597 }
598 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800599 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
600 ActivityRecord r = activities.get(activityNdx);
601 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700602 //Slog.i(TAG, "Found matching class!");
603 //dump();
604 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
605 return r;
606 }
607 }
608 }
609
610 return null;
611 }
612
Amith Yamasani742a6712011-05-04 14:49:28 -0700613 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700614 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700615 */
Craig Mautner93529a42013-10-04 15:03:13 -0700616 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800617 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700618 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800619 }
620 mCurrentUser = userId;
621
622 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800623 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800624 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700625 TaskRecord task = mTaskHistory.get(i);
Kenny Guy2a764942014-04-02 13:29:20 +0100626 if (isCurrentProfileLocked(task.userId)) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700627 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
628 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800629 mTaskHistory.remove(i);
630 mTaskHistory.add(task);
631 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800632 // Use same value for i.
633 } else {
634 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800635 }
636 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700637 if (VALIDATE_TOKENS) {
638 validateAppTokensLocked();
639 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700640 }
641
Craig Mautner2420ead2013-04-01 17:13:20 -0700642 void minimalResumeActivityLocked(ActivityRecord r) {
643 r.state = ActivityState.RESUMED;
644 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
645 + " (starting new instance)");
646 r.stopped = false;
647 mResumedActivity = r;
648 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800649 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700650 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700651 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700652 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700653 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700654 }
655
Dianne Hackborncee04b52013-07-03 17:01:28 -0700656 private void startLaunchTraces() {
657 if (mFullyDrawnStartTime != 0) {
658 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
659 }
660 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
661 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
662 }
663
664 private void stopFullyDrawnTraceIfNeeded() {
665 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
666 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
667 mFullyDrawnStartTime = 0;
668 }
669 }
670
Craig Mautnere79d42682013-04-01 19:01:53 -0700671 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700672 if (r.displayStartTime == 0) {
673 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
674 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700675 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700676 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700677 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700678 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700679 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700680 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700681 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700682 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800683
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700684 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700685 // Make sure that there is no activity waiting for this to launch.
686 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
687 r.displayStartTime = r.fullyDrawnStartTime = 0;
688 } else {
689 mStackSupervisor.removeTimeoutsForActivityLocked(r);
690 mStackSupervisor.scheduleIdleTimeoutLocked(r);
691 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700692 }
693
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800694 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800695 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800696 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
697 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
698 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
699 activities.get(activityNdx).setSleeping(false);
700 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800701 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800702 if (mPausingActivity != null) {
703 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
704 activityPausedLocked(mPausingActivity.appToken, true);
705 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800706 }
707
Craig Mautner0eea92c2013-05-16 13:35:39 -0700708 /**
709 * @return true if something must be done before going to sleep.
710 */
711 boolean checkReadyForSleepLocked() {
712 if (mResumedActivity != null) {
713 // Still have something resumed; can't sleep until it is paused.
714 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
715 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700716 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700717 return true;
718 }
719 if (mPausingActivity != null) {
720 // Still waiting for something to pause; can't sleep yet.
721 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
722 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800723 }
724
Craig Mautner0eea92c2013-05-16 13:35:39 -0700725 return false;
726 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800727
Craig Mautner0eea92c2013-05-16 13:35:39 -0700728 void goToSleep() {
729 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800730
Craig Mautner0eea92c2013-05-16 13:35:39 -0700731 // Make sure any stopped but visible activities are now sleeping.
732 // This ensures that the activity's onStop() is called.
733 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
734 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
735 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
736 final ActivityRecord r = activities.get(activityNdx);
737 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
738 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800739 }
740 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800741 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700742 }
Craig Mautner59c00972012-07-30 12:10:24 -0700743
Dianne Hackbornd2835932010-12-13 16:28:46 -0800744 public final Bitmap screenshotActivities(ActivityRecord who) {
Winson Chung376543b2014-05-21 17:43:28 -0700745 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800746 if (who.noDisplay) {
Winson Chung376543b2014-05-21 17:43:28 -0700747 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800748 return null;
749 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800750
Winson Chung083baf92014-07-11 10:32:42 -0700751 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700752 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800753 // we can just go ahead and skip taking the screenshot if this is the home stack.
754 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700755 return null;
756 }
757
Winson Chung48a10a52014-08-27 14:36:51 -0700758 int w = mService.mThumbnailWidth;
759 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800760 if (w > 0) {
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800761 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tTaking screenshot");
762 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
763 w, h, SCREENSHOT_FORCE_565);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800764 }
Winson Chung376543b2014-05-21 17:43:28 -0700765 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800766 return null;
767 }
768
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700769 /**
770 * Start pausing the currently resumed activity. It is an error to call this if there
771 * is already an activity being paused or there is no resumed activity.
772 *
773 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
774 * @param uiSleeping True if this is happening with the user interface going to sleep (the
775 * screen turning off).
776 * @param resuming True if this is being called as part of resuming the top activity, so
777 * we shouldn't try to instigate a resume here.
778 * @param dontWait True if the caller does not want to wait for the pause to complete. If
779 * set to true, we will immediately complete the pause here before returning.
780 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
781 * it to tell us when it is done.
782 */
783 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
784 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800785 if (mPausingActivity != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700786 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity);
787 completePauseLocked(false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800788 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700789 ActivityRecord prev = mResumedActivity;
790 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700791 if (!resuming) {
792 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
793 mStackSupervisor.resumeTopActivitiesLocked();
794 }
795 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700796 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800797
798 if (mActivityContainer.mParentActivity == null) {
799 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700800 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800801 }
802
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700803 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
804 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700805 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800806 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700807 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700808 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
809 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700810 prev.state = ActivityState.PAUSING;
811 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700812 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700813 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800814 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800815 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700816 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700817 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700818
819 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800820
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700821 if (prev.app != null && prev.app.thread != null) {
822 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
823 try {
824 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700825 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700826 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700827 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800828 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700829 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700830 } catch (Exception e) {
831 // Ignore exception, if process died other code will cleanup.
832 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800833 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700834 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700835 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700836 }
837 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800838 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700839 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700840 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700841 }
842
843 // If we are not going to sleep, we want to ensure the device is
844 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700845 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700846 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700847 }
848
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800849 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700850 // Have the window manager pause its key dispatching until the new
851 // activity has started. If we're pausing the activity just because
852 // the screen is being turned off and the UI is sleeping, don't interrupt
853 // key dispatch; the same activity will pick it up again on wakeup.
854 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800855 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700856 } else {
857 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
858 }
859
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700860 if (dontWait) {
861 // If the caller said they don't want to wait for the pause, then complete
862 // the pause now.
863 completePauseLocked(false);
864 return false;
865
866 } else {
867 // Schedule a pause timeout in case the app doesn't respond.
868 // We don't give it much time because this directly impacts the
869 // responsiveness seen by the user.
870 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
871 msg.obj = prev;
872 prev.pauseTime = SystemClock.uptimeMillis();
873 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
874 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
875 return true;
876 }
877
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700878 } else {
879 // This activity failed to schedule the
880 // pause, so just treat it as being paused now.
881 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700882 if (!resuming) {
883 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
884 }
885 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700886 }
887 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700888
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700889 final void activityPausedLocked(IBinder token, boolean timeout) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700890 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800891 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700892
Craig Mautnerd2328952013-03-05 12:46:26 -0800893 final ActivityRecord r = isInStackLocked(token);
894 if (r != null) {
895 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
896 if (mPausingActivity == r) {
897 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
898 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700899 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800900 } else {
901 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
902 r.userId, System.identityHashCode(r), r.shortComponentName,
903 mPausingActivity != null
904 ? mPausingActivity.shortComponentName : "(none)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700905 }
906 }
907 }
908
Craig Mautnera0026042014-04-23 11:45:37 -0700909 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
910 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700911 if (r.state != ActivityState.STOPPING) {
912 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
913 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
914 return;
915 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700916 if (persistentState != null) {
917 r.persistentState = persistentState;
918 mService.notifyTaskPersisterLocked(r.task, false);
919 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700920 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700921 if (icicle != null) {
922 // If icicle is null, this is happening due to a timeout, so we
923 // haven't really saved the state.
924 r.icicle = icicle;
925 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800926 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800927 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700928 }
929 if (!r.stopped) {
930 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
931 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
932 r.stopped = true;
933 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700934 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
935 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700936 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700937 if (r.finishing) {
938 r.clearOptionsLocked();
939 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700940 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700941 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700942 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700943 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700944 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800945 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700946 }
947 }
948 }
949
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700950 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800951 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700952 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800953
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800954 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700955 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800956 if (prev.finishing) {
957 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700958 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800959 } else if (prev.app != null) {
960 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -0800961 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800962 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
963 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800964 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800965 if (prev.configDestroy) {
966 // The previous is being paused because the configuration
967 // is changing, which means it is actually stopping...
968 // To juggle the fact that we are also starting a new
969 // instance right now, we need to first completely stop
970 // the current instance before starting the new one.
971 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700972 destroyActivityLocked(prev, true, "pause-config");
Jose Lima4b6c6692014-08-12 17:41:12 -0700973 } else if (!hasVisibleBehindActivity()) {
974 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -0700975 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700976 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700977 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
978 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800979 // If we already have a few activities waiting to stop,
980 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700981 // them out. Or if r is the last of activity of the last task the stack
982 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800983 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700984 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800985 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700986 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800987 }
988 }
989 } else {
990 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
991 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800992 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800993 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700994 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800995
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700996 if (resumeNext) {
997 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
998 if (!mService.isSleepingOrShuttingDown()) {
999 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1000 } else {
1001 mStackSupervisor.checkReadyForSleepLocked();
1002 ActivityRecord top = topStack.topRunningActivityLocked(null);
1003 if (top == null || (prev != null && top != prev)) {
1004 // If there are no more activities available to run,
1005 // do resume anyway to start something. Also if the top
1006 // activity on the stack is not the just paused activity,
1007 // we need to go ahead and resume it to ensure we complete
1008 // an in-flight app switch.
1009 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1010 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001011 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001012 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001013
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001014 if (prev != null) {
1015 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001016
Craig Mautner525f3d92013-05-07 14:01:50 -07001017 if (prev.app != null && prev.cpuTimeAtResume > 0
1018 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001019 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1020 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001021 if (diff > 0) {
1022 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1023 synchronized (bsi) {
1024 BatteryStatsImpl.Uid.Proc ps =
1025 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001026 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001027 if (ps != null) {
1028 ps.addForegroundTimeLocked(diff);
1029 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001030 }
1031 }
1032 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001033 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001034 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001035
1036 // Notfiy when the task stack has changed
1037 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001038 }
1039
1040 /**
1041 * Once we know that we have asked an application to put an activity in
1042 * the resumed state (either by launching it or explicitly telling it),
1043 * this function updates the rest of our state to match that fact.
1044 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001045 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001046 next.idle = false;
1047 next.results = null;
1048 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001049
1050 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1051 ProcessRecord app = next.task.mActivities.get(0).app;
1052 if (app != null && app != mService.mHomeProcess) {
1053 mService.mHomeProcess = app;
1054 }
1055 }
1056
Craig Mautner07566322013-09-26 16:42:55 -07001057 if (next.nowVisible) {
1058 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001059 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001060 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001061
1062 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001063 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001064
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001065 mStackSupervisor.reportResumedActivityLocked(next);
1066
1067 next.resumeKeyDispatchingLocked();
1068 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001069
1070 // Mark the point when the activity is resuming
1071 // TODO: To be more accurate, the mark should be before the onCreate,
1072 // not after the onResume. But for subsequent starts, onResume is fine.
1073 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001074 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001075 } else {
1076 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1077 }
Winson Chung376543b2014-05-21 17:43:28 -07001078
George Mount6ba042b2014-07-28 11:12:28 -07001079 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001080
1081 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1082 // When resuming an activity, require it to call requestVisibleBehind() again.
1083 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1084 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001085 }
1086
Craig Mautnere3a00d72014-04-16 08:31:19 -07001087 private void setVisibile(ActivityRecord r, boolean visible) {
1088 r.visible = visible;
1089 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001090 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001091 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001092 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001093 container.setVisible(visible);
1094 }
1095 }
1096
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001097 // Find the first visible activity above the passed activity and if it is translucent return it
1098 // otherwise return null;
1099 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1100 TaskRecord task = r.task;
1101 if (task == null) {
1102 return null;
1103 }
1104
1105 ActivityStack stack = task.stack;
1106 if (stack == null) {
1107 return null;
1108 }
1109
1110 int stackNdx = mStacks.indexOf(stack);
1111
1112 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1113 int taskNdx = tasks.indexOf(task);
1114
1115 ArrayList<ActivityRecord> activities = task.mActivities;
1116 int activityNdx = activities.indexOf(r) + 1;
1117
1118 final int numStacks = mStacks.size();
1119 while (stackNdx < numStacks) {
1120 tasks = mStacks.get(stackNdx).mTaskHistory;
1121 final int numTasks = tasks.size();
1122 while (taskNdx < numTasks) {
1123 activities = tasks.get(taskNdx).mActivities;
1124 final int numActivities = activities.size();
1125 while (activityNdx < numActivities) {
1126 final ActivityRecord activity = activities.get(activityNdx);
1127 if (!activity.finishing) {
1128 return activity.fullscreen ? null : activity;
1129 }
1130 ++activityNdx;
1131 }
1132 activityNdx = 0;
1133 ++taskNdx;
1134 }
1135 taskNdx = 0;
1136 ++stackNdx;
1137 }
1138
1139 return null;
1140 }
1141
Jose Lima7ba71252014-04-30 12:59:27 -07001142 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1143 // If so, this stack is hidden, otherwise it is visible.
1144 private boolean isStackVisible() {
1145 if (!isAttached()) {
1146 return false;
1147 }
1148
1149 if (mStackSupervisor.isFrontStack(this)) {
1150 return true;
1151 }
1152
Jose Lima729cb232014-05-05 15:59:40 -07001153 /**
1154 * Start at the task above this one and go up, looking for a visible
1155 * fullscreen activity, or a translucent activity that requested the
1156 * wallpaper to be shown behind it.
1157 */
Jose Lima7ba71252014-04-30 12:59:27 -07001158 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
1159 final ArrayList<TaskRecord> tasks = mStacks.get(i).getAllTasks();
1160 for (int taskNdx = 0; taskNdx < tasks.size(); taskNdx++) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001161 final TaskRecord task = tasks.get(taskNdx);
1162 final ArrayList<ActivityRecord> activities = task.mActivities;
Jose Lima7ba71252014-04-30 12:59:27 -07001163 for (int activityNdx = 0; activityNdx < activities.size(); activityNdx++) {
1164 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001165
1166 // Conditions for an activity to obscure the stack we're
1167 // examining:
1168 // 1. Not Finishing AND Visible AND:
1169 // 2. Either:
1170 // - Full Screen Activity OR
1171 // - On top of Home and our stack is NOT home
1172 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001173 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001174 return false;
1175 }
1176 }
1177 }
1178 }
1179
1180 return true;
1181 }
1182
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001183 /**
1184 * Make sure that all activities that need to be visible (that is, they
1185 * currently can be seen by the user) actually are.
1186 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001187 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1188 ActivityRecord top = topRunningActivityLocked(null);
1189 if (top == null) {
1190 return;
1191 }
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001192 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001193 TAG, "ensureActivitiesVisible behind " + top
1194 + " configChanges=0x" + Integer.toHexString(configChanges));
1195
Craig Mautner5eda9b32013-07-02 11:58:16 -07001196 if (mTranslucentActivityWaiting != top) {
1197 mUndrawnActivitiesBelowTopTranslucent.clear();
1198 if (mTranslucentActivityWaiting != null) {
1199 // Call the callback with a timeout indication.
1200 notifyActivityDrawnLocked(null);
1201 mTranslucentActivityWaiting = null;
1202 }
1203 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1204 }
1205
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001206 // If the top activity is not fullscreen, then we need to
1207 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001208 boolean aboveTop = true;
Jose Lima7ba71252014-04-30 12:59:27 -07001209 boolean behindFullscreen = !isStackVisible();
1210
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001211 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001212 final TaskRecord task = mTaskHistory.get(taskNdx);
1213 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001214 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1215 final ActivityRecord r = activities.get(activityNdx);
1216 if (r.finishing) {
1217 continue;
1218 }
1219 if (aboveTop && r != top) {
1220 continue;
1221 }
1222 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001223 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1224 // but must be drawn initially for the animation as though they were visible.
1225 if (!behindFullscreen || r.mLaunchTaskBehind) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001226 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001227 TAG, "Make visible? " + r + " finishing=" + r.finishing
1228 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001229
Craig Mautnerd44711d2013-02-23 11:24:36 -08001230 // First: if this is not the current activity being started, make
1231 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001232 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001233 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001234 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001235
1236 if (r.app == null || r.app.thread == null) {
Craig Mautnerbb742462014-07-07 15:28:55 -07001237 // This activity needs to be visible, but isn't even
1238 // running... get it started, but don't resume it
1239 // at this point.
1240 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
1241 if (r != starting) {
1242 r.startFreezingScreenLocked(r.app, configChanges);
1243 }
1244 if (!r.visible || r.mLaunchTaskBehind) {
1245 if (DEBUG_VISBILITY) Slog.v(
1246 TAG, "Starting and making visible: " + r);
1247 setVisibile(r, true);
1248 }
1249 if (r != starting) {
1250 mStackSupervisor.startSpecificActivityLocked(r, false, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001251 }
1252
1253 } else if (r.visible) {
1254 // If this activity is already visible, then there is nothing
1255 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001256 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001257 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001258 try {
George Mount6ba042b2014-07-28 11:12:28 -07001259 if (r.returningOptions != null) {
1260 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1261 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001262 }
1263 } catch(RemoteException e) {
1264 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001265 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001266 // This activity is not currently visible, but is running.
1267 // Tell it to become visible.
1268 r.visible = true;
1269 if (r.state != ActivityState.RESUMED && r != starting) {
1270 // If this activity is paused, tell it
1271 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001272 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001273 TAG, "Making visible and scheduling visibility: " + r);
1274 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001275 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001276 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001277 mUndrawnActivitiesBelowTopTranslucent.add(r);
1278 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001279 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001280 r.sleeping = false;
1281 r.app.pendingUiClean = true;
1282 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1283 r.stopFreezingScreenLocked(false);
1284 } catch (Exception e) {
1285 // Just skip on any failure; we'll make it
1286 // visible when it next restarts.
1287 Slog.w(TAG, "Exception thrown making visibile: "
1288 + r.intent.getComponent(), e);
1289 }
1290 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001291 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001292
Craig Mautnerd44711d2013-02-23 11:24:36 -08001293 // Aggregate current change flags.
1294 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001295
Craig Mautnerd44711d2013-02-23 11:24:36 -08001296 if (r.fullscreen) {
1297 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001298 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1299 behindFullscreen = true;
Craig Mautner84984fa2014-06-19 11:19:20 -07001300 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001301 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
Jose Lima729cb232014-05-05 15:59:40 -07001302 behindFullscreen = true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001303 }
1304 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001305 if (DEBUG_VISBILITY) Slog.v(
1306 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1307 + " state=" + r.state
1308 + " behindFullscreen=" + behindFullscreen);
1309 // Now for any activities that aren't visible to the user, make
1310 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001311 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001312 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001313 try {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001314 setVisibile(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001315 switch (r.state) {
1316 case STOPPING:
1317 case STOPPED:
1318 if (r.app != null && r.app.thread != null) {
1319 if (DEBUG_VISBILITY) Slog.v(
1320 TAG, "Scheduling invisibility: " + r);
1321 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1322 }
1323 break;
1324
1325 case INITIALIZING:
1326 case RESUMED:
1327 case PAUSING:
1328 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001329 // This case created for transitioning activities from
1330 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001331 if (getVisibleBehindActivity() == r) {
1332 releaseBackgroundResources();
Craig Mautneree2e45a2014-06-27 12:10:03 -07001333 } else {
1334 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1335 mStackSupervisor.mStoppingActivities.add(r);
1336 }
1337 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001338 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001339 break;
1340
1341 default:
1342 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001343 }
1344 } catch (Exception e) {
1345 // Just skip on any failure; we'll make it
1346 // visible when it next restarts.
1347 Slog.w(TAG, "Exception thrown making hidden: "
1348 + r.intent.getComponent(), e);
1349 }
1350 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001351 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001352 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001353 }
1354 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001355 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001356
1357 if (mTranslucentActivityWaiting != null &&
1358 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1359 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1360 notifyActivityDrawnLocked(null);
1361 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001362 }
Craig Mautner58547802013-03-05 08:23:53 -08001363
George Mount6ba042b2014-07-28 11:12:28 -07001364 void convertToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001365 mTranslucentActivityWaiting = r;
1366 mUndrawnActivitiesBelowTopTranslucent.clear();
1367 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1368 }
1369
1370 /**
1371 * Called as activities below the top translucent activity are redrawn. When the last one is
1372 * redrawn notify the top activity by calling
1373 * {@link Activity#onTranslucentConversionComplete}.
1374 *
1375 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1376 * occurred and the activity will be notified immediately.
1377 */
1378 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001379 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001380 if ((r == null)
1381 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1382 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1383 // The last undrawn activity below the top has just been drawn. If there is an
1384 // opaque activity at the top, notify it that it can become translucent safely now.
1385 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1386 mTranslucentActivityWaiting = null;
1387 mUndrawnActivitiesBelowTopTranslucent.clear();
1388 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1389
Craig Mautner71dd1b62014-02-18 15:48:52 -08001390 if (waitingActivity != null) {
1391 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1392 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1393 try {
1394 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1395 waitingActivity.appToken, r != null);
1396 } catch (RemoteException e) {
1397 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001398 }
1399 }
1400 }
1401 }
1402
Craig Mautnera61bc652013-10-28 15:43:18 -07001403 /** If any activities below the top running one are in the INITIALIZING state and they have a
1404 * starting window displayed then remove that starting window. It is possible that the activity
1405 * in this state will never resumed in which case that starting window will be orphaned. */
1406 void cancelInitializingActivities() {
1407 final ActivityRecord topActivity = topRunningActivityLocked(null);
1408 boolean aboveTop = true;
1409 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1410 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1411 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1412 final ActivityRecord r = activities.get(activityNdx);
1413 if (aboveTop) {
1414 if (r == topActivity) {
1415 aboveTop = false;
1416 }
1417 continue;
1418 }
1419
1420 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
1421 if (DEBUG_VISBILITY) Slog.w(TAG, "Found orphaned starting window " + r);
1422 r.mStartingWindowShown = false;
1423 mWindowManager.removeAppStartingWindow(r.appToken);
1424 }
1425 }
1426 }
1427 }
1428
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001429 /**
1430 * Ensure that the top activity in the stack is resumed.
1431 *
1432 * @param prev The previously resumed activity, for when in the process
1433 * of pausing; can be null to call from elsewhere.
1434 *
1435 * @return Returns true if something is being resumed, or false if
1436 * nothing happened.
1437 */
1438 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001439 return resumeTopActivityLocked(prev, null);
1440 }
1441
1442 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001443 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001444 // Don't even start recursing.
1445 return false;
1446 }
1447
1448 boolean result = false;
1449 try {
1450 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001451 mStackSupervisor.inResumeTopActivity = true;
1452 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1453 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001454 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001455 }
Craig Mautner544efa72014-09-04 16:41:20 -07001456 result = resumeTopActivityInnerLocked(prev, options);
1457 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001458 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001459 }
1460 return result;
1461 }
1462
1463 final boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001464 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1465
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001466 if (!mService.mBooting && !mService.mBooted) {
1467 // Not ready yet!
1468 return false;
1469 }
1470
Craig Mautnerdf88d732014-01-27 09:21:32 -08001471 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001472 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001473 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001474 // Do not resume this stack if its parent is not resumed.
1475 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1476 return false;
1477 }
1478
Craig Mautnera61bc652013-10-28 15:43:18 -07001479 cancelInitializingActivities();
1480
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001481 // Find the first activity that is not finishing.
1482 ActivityRecord next = topRunningActivityLocked(null);
1483
1484 // Remember how we'll process this pause/resume situation, and ensure
1485 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001486 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1487 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001488
Craig Mautner84984fa2014-06-19 11:19:20 -07001489 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001490 if (next == null) {
1491 // There are no more activities! Let's just start up the
1492 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001493 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001494 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001495 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001496 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001497 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1498 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1499 return isOnHomeDisplay() &&
1500 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001501 }
1502
1503 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001504
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001505 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001506 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1507 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001508 // Make sure we have executed any pending transitions, since there
1509 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001510 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001511 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001512 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001513 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001514 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001515 return false;
1516 }
1517
Craig Mautner525f3d92013-05-07 14:01:50 -07001518 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001519 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001520 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001521 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001522 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001523 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001524 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001525 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001526 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001527 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001528 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnere418ecd2013-05-01 17:02:29 -07001529 } else {
Craig Mautnere0a38842013-12-16 16:14:02 -08001530 if (DEBUG_STATES && isOnHomeDisplay()) Slog.d(TAG,
1531 "resumeTopActivityLocked: Launching home next");
1532 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001533 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1534 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1535 return isOnHomeDisplay() &&
1536 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev);
Craig Mautnere418ecd2013-05-01 17:02:29 -07001537 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001538 }
1539
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001540 // If we are sleeping, and there is no resumed activity, and the top
1541 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001542 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001543 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001544 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001545 // Make sure we have executed any pending transitions, since there
1546 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001547 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001548 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001549 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001550 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001551 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001552 return false;
1553 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001554
1555 // Make sure that the user who owns this activity is started. If not,
1556 // we will just leave it as is because someone should be bringing
1557 // another user's activities to the top of the stack.
1558 if (mService.mStartedUsers.get(next.userId) == null) {
1559 Slog.w(TAG, "Skipping resume of top activity " + next
1560 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001561 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001562 return false;
1563 }
1564
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001565 // The activity may be waiting for stop, but that is no longer
1566 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001567 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001568 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001569 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001570 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001571
1572 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1573
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001574 // If we are currently pausing an activity, then don't do anything
1575 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001576 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001577 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1578 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001579 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001580 return false;
1581 }
1582
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001583 // Okay we are now going to start a switch, to 'next'. We may first
1584 // have to pause the current activity, but this is an important point
1585 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001586 // XXX "App Redirected" dialog is getting too many false positives
1587 // at this point, so turn off for now.
1588 if (false) {
1589 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1590 long now = SystemClock.uptimeMillis();
1591 final boolean inTime = mLastStartedActivity.startTime != 0
1592 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1593 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1594 final int nextUid = next.info.applicationInfo.uid;
1595 if (inTime && lastUid != nextUid
1596 && lastUid != next.launchedFromUid
1597 && mService.checkPermission(
1598 android.Manifest.permission.STOP_APP_SWITCHES,
1599 -1, next.launchedFromUid)
1600 != PackageManager.PERMISSION_GRANTED) {
1601 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1602 } else {
1603 next.startTime = now;
1604 mLastStartedActivity = next;
1605 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001606 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001607 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001608 mLastStartedActivity = next;
1609 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001610 }
Craig Mautner58547802013-03-05 08:23:53 -08001611
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001612 // We need to start pausing the current activity so the top one
1613 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001614 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1615 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001616 if (mResumedActivity != null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001617 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001618 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001619 }
1620 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001621 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1622 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001623 // At this point we want to put the upcoming activity's process
1624 // at the top of the LRU list, since we know we will be needing it
1625 // very soon and it would be a waste to let it get killed if it
1626 // happens to be sitting towards the end.
1627 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001628 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001629 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001630 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001631 return true;
1632 }
1633
Christopher Tated3f175c2012-06-14 14:16:54 -07001634 // If the most recent activity was noHistory but was only stopped rather
1635 // than stopped+finished because the device went to sleep, we need to make
1636 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001637 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001638 !mLastNoHistoryActivity.finishing) {
1639 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1640 " on new resume");
1641 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001642 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001643 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001644 }
1645
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001646 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001647 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1648 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001649 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001650 if (DEBUG_SWITCH) Slog.v(
1651 TAG, "Resuming top, waiting visible to hide: " + prev);
1652 } else {
1653 // The next activity is already visible, so hide the previous
1654 // activity's windows right now so we can show the new one ASAP.
1655 // We only do this if the previous is finishing, which should mean
1656 // it is on top of the one being resumed so hiding it quickly
1657 // is good. Otherwise, we want to do the normal route of allowing
1658 // the resumed activity to be shown so we can decide if the
1659 // previous should actually be hidden depending on whether the
1660 // new one is found to be full-screen or not.
1661 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001662 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001663 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1664 + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001665 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001666 + ", nowVisible=" + next.nowVisible);
1667 } else {
Craig Mautner8c14c152015-01-15 17:32:07 -08001668 if (DEBUG_SWITCH) Slog.v(TAG,
1669 "Previous already visible but still waiting to hide: " + prev
1670 + ", waitingVisible="
1671 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1672 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001673 }
1674 }
1675 }
1676
Dianne Hackborne7f97212011-02-24 14:40:20 -08001677 // Launching this app's activity, make sure the app is no longer
1678 // considered stopped.
1679 try {
1680 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001681 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001682 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001683 } catch (IllegalArgumentException e) {
1684 Slog.w(TAG, "Failed trying to unstop package "
1685 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001686 }
1687
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001688 // We are starting up the next activity, so tell the window manager
1689 // that the previous one will be hidden soon. This way it can know
1690 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001691 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001692 if (prev != null) {
1693 if (prev.finishing) {
1694 if (DEBUG_TRANSITION) Slog.v(TAG,
1695 "Prepare close transition: prev=" + prev);
1696 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001697 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001698 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001699 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001700 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001701 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1702 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001703 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001704 mWindowManager.setAppWillBeHidden(prev.appToken);
1705 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001706 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001707 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001708 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001709 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001710 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001711 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001712 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001713 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001714 : next.mLaunchTaskBehind
1715 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1716 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001717 }
1718 }
1719 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001720 mWindowManager.setAppWillBeHidden(prev.appToken);
1721 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001722 }
Craig Mautner967212c2013-04-13 21:10:58 -07001723 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001724 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001725 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001726 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001727 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001728 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001729 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001730 }
1731 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001732
1733 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001734 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001735 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1736 if (opts != null) {
1737 resumeAnimOptions = opts.toBundle();
1738 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001739 next.applyOptionsLocked();
1740 } else {
1741 next.clearOptionsLocked();
1742 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001743
Craig Mautnercf910b02013-04-23 11:23:27 -07001744 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001745 if (next.app != null && next.app.thread != null) {
1746 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1747
1748 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001749 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001750
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001751 // schedule launch ticks to collect information about slow apps.
1752 next.startLaunchTickingLocked();
1753
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001754 ActivityRecord lastResumedActivity =
1755 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001756 ActivityState lastState = next.state;
1757
1758 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001759
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001760 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001761 next.state = ActivityState.RESUMED;
1762 mResumedActivity = next;
1763 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08001764 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001765 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001766 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001767 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001768
1769 // Have the window manager re-evaluate the orientation of
1770 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001771 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001772 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001773 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001774 mService.mConfiguration,
1775 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1776 if (config != null) {
1777 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001778 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001779 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001780 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001781
Craig Mautner525f3d92013-05-07 14:01:50 -07001782 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001783 // The configuration update wasn't able to keep the existing
1784 // instance of the activity, and instead started a new one.
1785 // We should be all done, but let's just make sure our activity
1786 // is still at the top and schedule another run if something
1787 // weird happened.
1788 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001789 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001790 "Activity config changed during resume: " + next
1791 + ", new next: " + nextNext);
1792 if (nextNext != next) {
1793 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001794 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001795 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001796 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001797 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001798 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001799 return true;
1800 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001801 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001802 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001803 }
Craig Mautner58547802013-03-05 08:23:53 -08001804
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001805 try {
1806 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001807 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001808 if (a != null) {
1809 final int N = a.size();
1810 if (!next.finishing && N > 0) {
1811 if (DEBUG_RESULTS) Slog.v(
1812 TAG, "Delivering results to " + next
1813 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001814 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001815 }
1816 }
1817
1818 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001819 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001820 }
1821
1822 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001823 next.userId, System.identityHashCode(next),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001824 next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001825
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001826 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001827 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001828 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001829 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
George Mount2c92c972014-03-20 09:38:23 -07001830 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001831 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001832 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001833
Craig Mautner0eea92c2013-05-16 13:35:39 -07001834 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001835
Craig Mautnerac6f8432013-07-17 13:24:59 -07001836 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001837 } catch (Exception e) {
1838 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001839 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1840 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001841 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001842 if (lastStack != null) {
1843 lastStack.mResumedActivity = lastResumedActivity;
1844 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001845 Slog.i(TAG, "Restarting because process died: " + next);
1846 if (!next.hasBeenLaunched) {
1847 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001848 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1849 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001850 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001851 next.appToken, next.packageName, next.theme,
1852 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001853 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1854 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001855 }
George Mount2c92c972014-03-20 09:38:23 -07001856 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001857 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 return true;
1859 }
1860
1861 // From this point on, if something goes wrong there is no way
1862 // to recover the activity.
1863 try {
1864 next.visible = true;
1865 completeResumeLocked(next);
1866 } catch (Exception e) {
1867 // If any exception gets thrown, toss away this
1868 // activity and try the next one.
1869 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001870 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001871 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001872 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001873 return true;
1874 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001875 next.stopped = false;
1876
1877 } else {
1878 // Whoops, need to restart this activity!
1879 if (!next.hasBeenLaunched) {
1880 next.hasBeenLaunched = true;
1881 } else {
1882 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001883 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001884 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001885 mService.compatibilityInfoForPackageLocked(
1886 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001887 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001888 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001889 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001890 }
1891 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1892 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001893 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07001894 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001895 }
1896
Craig Mautnercf910b02013-04-23 11:23:27 -07001897 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001898 return true;
1899 }
1900
Craig Mautnerac6f8432013-07-17 13:24:59 -07001901 private void insertTaskAtTop(TaskRecord task) {
Craig Mautner9c85c202013-10-04 20:11:26 -07001902 // If this is being moved to the top by another activity or being launched from the home
1903 // activity, set mOnTopOfHome accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001904 if (isOnHomeDisplay()) {
1905 ActivityStack lastStack = mStackSupervisor.getLastStack();
1906 final boolean fromHome = lastStack.isHomeStack();
1907 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07001908 task.setTaskToReturnTo(fromHome
1909 ? lastStack.topTask() == null
1910 ? HOME_ACTIVITY_TYPE
1911 : lastStack.topTask().taskType
1912 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08001913 }
1914 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07001915 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07001916 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001917
Craig Mautnerac6f8432013-07-17 13:24:59 -07001918 mTaskHistory.remove(task);
1919 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07001920 int taskNdx = mTaskHistory.size();
Kenny Guy2a764942014-04-02 13:29:20 +01001921 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001922 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07001923 while (--taskNdx >= 0) {
1924 if (!isCurrentProfileLocked(mTaskHistory.get(taskNdx).userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001925 break;
1926 }
1927 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001928 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07001929 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001930 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001931 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001932 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001933
Craig Mautner8849a5e2013-04-02 16:41:03 -07001934 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001935 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001936 TaskRecord rTask = r.task;
1937 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07001938 // mLaunchTaskBehind tasks get placed at the back of the task stack.
1939 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08001940 // Last activity in task had been removed or ActivityManagerService is reusing task.
1941 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001942 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001943 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001944 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001945 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001946 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001947 if (!newTask) {
1948 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001949 boolean startIt = true;
1950 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1951 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08001952 if (task.getTopActivity() == null) {
1953 // All activities in task are finishing.
1954 continue;
1955 }
Craig Mautner70a86932013-02-28 22:37:44 -08001956 if (task == r.task) {
1957 // Here it is! Now, if this is not yet visible to the
1958 // user, then just add it without starting; it will
1959 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001960 if (!startIt) {
1961 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1962 + task, new RuntimeException("here").fillInStackTrace());
1963 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001964 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001965 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1966 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001967 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautnerbb742462014-07-07 15:28:55 -07001968 r.userId, r.info.configChanges, task.voiceSession != null,
1969 r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001970 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001971 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001972 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001973 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001974 return;
1975 }
1976 break;
Craig Mautner70a86932013-02-28 22:37:44 -08001977 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001978 startIt = false;
1979 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001980 }
1981 }
1982
1983 // Place a new activity at top of stack, so it is next to interact
1984 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08001985
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001986 // If we are not placing the new activity frontmost, we do not want
1987 // to deliver the onUserLeaving callback to the actual frontmost
1988 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08001989 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001990 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08001991 if (DEBUG_USER_LEAVING) Slog.v(TAG,
1992 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001993 }
Craig Mautner70a86932013-02-28 22:37:44 -08001994
1995 task = r.task;
1996
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001997 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08001998 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08001999 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002000 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002001 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002002
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002003 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002004 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002005 // We want to show the starting preview window if we are
2006 // switching to a new task, or the next activity's process is
2007 // not currently running.
2008 boolean showStartingIcon = newTask;
2009 ProcessRecord proc = r.app;
2010 if (proc == null) {
2011 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2012 }
2013 if (proc == null || proc.thread == null) {
2014 showStartingIcon = true;
2015 }
2016 if (DEBUG_TRANSITION) Slog.v(TAG,
2017 "Prepare open transition: starting " + r);
2018 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002019 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002020 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002021 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002022 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002023 ? r.mLaunchTaskBehind
2024 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2025 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002026 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002027 mNoAnimActivities.remove(r);
2028 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002029 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08002030 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002031 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002032 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002033 boolean doShow = true;
2034 if (newTask) {
2035 // Even though this activity is starting fresh, we still need
2036 // to reset it to make sure we apply affinities to move any
2037 // existing activities from other tasks in to it.
2038 // If the caller has requested that the target task be
2039 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002040 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002041 resetTaskIfNeededLocked(r, r);
2042 doShow = topRunningNonDelayedActivityLocked(null) == r;
2043 }
George Mount70778d72014-07-01 16:33:45 -07002044 } else if (options != null && new ActivityOptions(options).getAnimationType()
2045 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2046 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002047 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002048 if (r.mLaunchTaskBehind) {
2049 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2050 // tell WindowManager that r is visible even though it is at the back of the stack.
2051 mWindowManager.setAppVisibility(r.appToken, true);
2052 ensureActivitiesVisibleLocked(null, 0);
2053 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002054 // Figure out if we are transitioning from another activity that is
2055 // "has the same starting icon" as the next one. This allows the
2056 // window manager to keep the previous window it had previously
2057 // created, if it still had one.
2058 ActivityRecord prev = mResumedActivity;
2059 if (prev != null) {
2060 // We don't want to reuse the previous starting preview if:
2061 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002062 if (prev.task != r.task) {
2063 prev = null;
2064 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002065 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002066 else if (prev.nowVisible) {
2067 prev = null;
2068 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002069 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002070 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002071 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002072 mService.compatibilityInfoForPackageLocked(
2073 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002074 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002075 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002076 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002077 }
2078 } else {
2079 // If this is the first activity, don't do any fancy animations,
2080 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002081 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08002082 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002083 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002084 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002085 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002086 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002087 }
2088 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002089 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002090 }
2091
2092 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002093 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002094 }
2095 }
2096
Dianne Hackbornbe707852011-11-11 14:32:10 -08002097 final void validateAppTokensLocked() {
2098 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002099 mValidateAppTokens.ensureCapacity(numActivities());
2100 final int numTasks = mTaskHistory.size();
2101 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2102 TaskRecord task = mTaskHistory.get(taskNdx);
2103 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002104 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002105 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002106 }
Craig Mautner000f0022013-02-26 15:04:29 -08002107 TaskGroup group = new TaskGroup();
2108 group.taskId = task.taskId;
2109 mValidateAppTokens.add(group);
2110 final int numActivities = activities.size();
2111 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2112 final ActivityRecord r = activities.get(activityNdx);
2113 group.tokens.add(r.appToken);
2114 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002115 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002116 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002117 }
2118
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002119 /**
2120 * Perform a reset of the given task, if needed as part of launching it.
2121 * Returns the new HistoryRecord at the top of the task.
2122 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002123 /**
2124 * Helper method for #resetTaskIfNeededLocked.
2125 * We are inside of the task being reset... we'll either finish this activity, push it out
2126 * for another task, or leave it as-is.
2127 * @param task The task containing the Activity (taskTop) that might be reset.
2128 * @param forceReset
2129 * @return An ActivityOptions that needs to be processed.
2130 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002131 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002132 ActivityOptions topOptions = null;
2133
2134 int replyChainEnd = -1;
2135 boolean canMoveOptions = true;
2136
2137 // We only do this for activities that are not the root of the task (since if we finish
2138 // the root, we may no longer have the task!).
2139 final ArrayList<ActivityRecord> activities = task.mActivities;
2140 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002141 final int rootActivityNdx = task.findEffectiveRootIndex();
2142 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002143 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002144 if (target.frontOfTask)
2145 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002146
2147 final int flags = target.info.flags;
2148 final boolean finishOnTaskLaunch =
2149 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2150 final boolean allowTaskReparenting =
2151 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2152 final boolean clearWhenTaskReset =
2153 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2154
2155 if (!finishOnTaskLaunch
2156 && !clearWhenTaskReset
2157 && target.resultTo != null) {
2158 // If this activity is sending a reply to a previous
2159 // activity, we can't do anything with it now until
2160 // we reach the start of the reply chain.
2161 // XXX note that we are assuming the result is always
2162 // to the previous activity, which is almost always
2163 // the case but we really shouldn't count on.
2164 if (replyChainEnd < 0) {
2165 replyChainEnd = i;
2166 }
2167 } else if (!finishOnTaskLaunch
2168 && !clearWhenTaskReset
2169 && allowTaskReparenting
2170 && target.taskAffinity != null
2171 && !target.taskAffinity.equals(task.affinity)) {
2172 // If this activity has an affinity for another
2173 // task, then we need to move it out of here. We will
2174 // move it as far out of the way as possible, to the
2175 // bottom of the activity stack. This also keeps it
2176 // correctly ordered with any activities we previously
2177 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002178 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002179 final ActivityRecord bottom =
2180 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002181 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002182 if (bottom != null && target.taskAffinity != null
2183 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002184 // If the activity currently at the bottom has the
2185 // same task affinity as the one we are moving,
2186 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002187 targetTask = bottom.task;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002188 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002189 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002190 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002191 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002192 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002193 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002194 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
2195 + " out to new task " + target.task);
2196 }
2197
Craig Mautnere3a74d52013-02-22 14:14:58 -08002198 final int targetTaskId = targetTask.taskId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002199 mWindowManager.setAppGroupId(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002200
Craig Mautner525f3d92013-05-07 14:01:50 -07002201 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002202 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2203 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002204 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002205 if (p.finishing) {
2206 continue;
2207 }
2208
Craig Mautnere3a74d52013-02-22 14:14:58 -08002209 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002210 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002211 topOptions = p.takeOptionsLocked();
2212 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002213 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002214 }
2215 }
2216 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08002217 + task + " adding to task=" + targetTask
2218 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08002219 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
2220 + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002221 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002222 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002223
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002224 mWindowManager.setAppGroupId(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002225 }
2226
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002227 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002228 if (VALIDATE_TOKENS) {
2229 validateAppTokensLocked();
2230 }
2231
2232 replyChainEnd = -1;
2233 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2234 // If the activity should just be removed -- either
2235 // because it asks for it, or the task should be
2236 // cleared -- then finish it and anything that is
2237 // part of its reply chain.
2238 int end;
2239 if (clearWhenTaskReset) {
2240 // In this case, we want to finish this activity
2241 // and everything above it, so be sneaky and pretend
2242 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002243 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002244 } else if (replyChainEnd < 0) {
2245 end = i;
2246 } else {
2247 end = replyChainEnd;
2248 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002249 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002250 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002251 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002252 if (p.finishing) {
2253 continue;
2254 }
2255 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002256 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002257 topOptions = p.takeOptionsLocked();
2258 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002259 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002260 }
2261 }
Craig Mautner58547802013-03-05 08:23:53 -08002262 if (DEBUG_TASKS) Slog.w(TAG,
2263 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002264 if (finishActivityLocked(
2265 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002266 end--;
2267 srcPos--;
2268 }
2269 }
2270 replyChainEnd = -1;
2271 } else {
2272 // If we were in the middle of a chain, well the
2273 // activity that started it all doesn't want anything
2274 // special, so leave it all as-is.
2275 replyChainEnd = -1;
2276 }
2277 }
2278
2279 return topOptions;
2280 }
2281
2282 /**
2283 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2284 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2285 * @param affinityTask The task we are looking for an affinity to.
2286 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2287 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2288 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2289 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002290 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002291 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002292 int replyChainEnd = -1;
2293 final int taskId = task.taskId;
2294 final String taskAffinity = task.affinity;
2295
2296 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2297 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002298 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2299
2300 // Do not operate on or below the effective root Activity.
2301 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002302 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002303 if (target.frontOfTask)
2304 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002305
2306 final int flags = target.info.flags;
2307 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2308 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2309
2310 if (target.resultTo != null) {
2311 // If this activity is sending a reply to a previous
2312 // activity, we can't do anything with it now until
2313 // we reach the start of the reply chain.
2314 // XXX note that we are assuming the result is always
2315 // to the previous activity, which is almost always
2316 // the case but we really shouldn't count on.
2317 if (replyChainEnd < 0) {
2318 replyChainEnd = i;
2319 }
2320 } else if (topTaskIsHigher
2321 && allowTaskReparenting
2322 && taskAffinity != null
2323 && taskAffinity.equals(target.taskAffinity)) {
2324 // This activity has an affinity for our task. Either remove it if we are
2325 // clearing or move it over to our task. Note that
2326 // we currently punt on the case where we are resetting a
2327 // task that is not at the top but who has activities above
2328 // with an affinity to it... this is really not a normal
2329 // case, and we will need to later pull that task to the front
2330 // and usually at that point we will do the reset and pick
2331 // up those remaining activities. (This only happens if
2332 // someone starts an activity in a new task from an activity
2333 // in a task that is not currently on top.)
2334 if (forceReset || finishOnTaskLaunch) {
2335 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2336 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2337 for (int srcPos = start; srcPos >= i; --srcPos) {
2338 final ActivityRecord p = activities.get(srcPos);
2339 if (p.finishing) {
2340 continue;
2341 }
Todd Kennedy539db512014-12-15 09:57:55 -08002342 finishActivityLocked(
2343 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002344 }
2345 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002346 if (taskInsertionPoint < 0) {
2347 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002348
Craig Mautner77878772013-03-04 19:46:24 -08002349 }
Craig Mautner77878772013-03-04 19:46:24 -08002350
2351 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2352 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2353 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2354 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002355 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002356 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002357 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002358
Craig Mautnere3a74d52013-02-22 14:14:58 -08002359 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2360 + " to stack at " + task,
2361 new RuntimeException("here").fillInStackTrace());
2362 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2363 + " in to resetting task " + task);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002364 mWindowManager.setAppGroupId(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002365 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002366 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002367 if (VALIDATE_TOKENS) {
2368 validateAppTokensLocked();
2369 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002370
2371 // Now we've moved it in to place... but what if this is
2372 // a singleTop activity and we have put it on top of another
2373 // instance of the same activity? Then we drop the instance
2374 // below so it remains singleTop.
2375 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2376 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002377 int targetNdx = taskActivities.indexOf(target);
2378 if (targetNdx > 0) {
2379 ActivityRecord p = taskActivities.get(targetNdx - 1);
2380 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002381 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2382 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002383 }
2384 }
2385 }
2386 }
2387
2388 replyChainEnd = -1;
2389 }
2390 }
Craig Mautner77878772013-03-04 19:46:24 -08002391 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002392 }
2393
Craig Mautner8849a5e2013-04-02 16:41:03 -07002394 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002395 ActivityRecord newActivity) {
2396 boolean forceReset =
2397 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2398 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2399 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2400 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2401 forceReset = true;
2402 }
2403 }
2404
2405 final TaskRecord task = taskTop.task;
2406
2407 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2408 * for remaining tasks. Used for later tasks to reparent to task. */
2409 boolean taskFound = false;
2410
2411 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2412 ActivityOptions topOptions = null;
2413
Craig Mautner77878772013-03-04 19:46:24 -08002414 // Preserve the location for reparenting in the new task.
2415 int reparentInsertionPoint = -1;
2416
Craig Mautnere3a74d52013-02-22 14:14:58 -08002417 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2418 final TaskRecord targetTask = mTaskHistory.get(i);
2419
2420 if (targetTask == task) {
2421 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2422 taskFound = true;
2423 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002424 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2425 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002426 }
2427 }
2428
Craig Mautner70a86932013-02-28 22:37:44 -08002429 int taskNdx = mTaskHistory.indexOf(task);
2430 do {
2431 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2432 } while (taskTop == null && taskNdx >= 0);
2433
Craig Mautnere3a74d52013-02-22 14:14:58 -08002434 if (topOptions != null) {
2435 // If we got some ActivityOptions from an activity on top that
2436 // was removed from the task, propagate them to the new real top.
2437 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002438 taskTop.updateOptionsLocked(topOptions);
2439 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002440 topOptions.abort();
2441 }
2442 }
2443
2444 return taskTop;
2445 }
2446
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002447 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2448 String resultWho, int requestCode, int resultCode, Intent data) {
2449
2450 if (callingUid > 0) {
2451 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002452 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002453 }
2454
2455 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2456 + " : who=" + resultWho + " req=" + requestCode
2457 + " res=" + resultCode + " data=" + data);
2458 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2459 try {
2460 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2461 list.add(new ResultInfo(resultWho, requestCode,
2462 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002463 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002464 return;
2465 } catch (Exception e) {
2466 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2467 }
2468 }
2469
2470 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2471 }
2472
Craig Mautner04f0b702013-10-22 12:31:01 -07002473 private void adjustFocusedActivityLocked(ActivityRecord r) {
2474 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2475 ActivityRecord next = topRunningActivityLocked(null);
2476 if (next != r) {
2477 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002478 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2479 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo());
Craig Mautner04f0b702013-10-22 12:31:01 -07002480 }
2481 }
Winson Chung648c83b2014-04-28 15:11:56 -07002482 ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2483 if (top != null) {
2484 mService.setFocusedActivityLocked(top);
2485 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002486 }
2487 }
2488
Craig Mautnerf3333272013-04-22 10:55:53 -07002489 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002490 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2491 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2492 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2493 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002494 if (!mService.isSleeping()) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002495 if (DEBUG_STATES) {
2496 Slog.d(TAG, "no-history finish of " + r);
2497 }
2498 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Todd Kennedy539db512014-12-15 09:57:55 -08002499 "stop-no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002500 } else {
2501 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2502 + " on stop because we're just sleeping");
2503 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002504 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002505 }
2506
2507 if (r.app != null && r.app.thread != null) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002508 adjustFocusedActivityLocked(r);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002509 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002510 try {
2511 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002512 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2513 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002514 r.state = ActivityState.STOPPING;
2515 if (DEBUG_VISBILITY) Slog.v(
2516 TAG, "Stopping visible=" + r.visible + " for " + r);
2517 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002518 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002519 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002520 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002521 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002522 r.setSleeping(true);
2523 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002524 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002525 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002526 } catch (Exception e) {
2527 // Maybe just ignore exceptions here... if the process
2528 // has crashed, our death notification will clean things
2529 // up.
2530 Slog.w(TAG, "Exception thrown during pause", e);
2531 // Just in case, assume it to be stopped.
2532 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002533 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002534 r.state = ActivityState.STOPPED;
2535 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002536 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002537 }
2538 }
2539 }
2540 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002541
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002542 /**
2543 * @return Returns true if the activity is being finished, false if for
2544 * some reason it is being left as-is.
2545 */
2546 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002547 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002548 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002549 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002550 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002551 + ", result=" + resultCode + ", data=" + resultData
2552 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002553 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002554 return false;
2555 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002556
Craig Mautnerd44711d2013-02-23 11:24:36 -08002557 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002558 return true;
2559 }
2560
Craig Mautnerd2328952013-03-05 12:46:26 -08002561 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002562 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2563 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2564 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2565 ActivityRecord r = activities.get(activityNdx);
2566 if (r.resultTo == self && r.requestCode == requestCode) {
2567 if ((r.resultWho == null && resultWho == null) ||
2568 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2569 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2570 false);
2571 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002572 }
2573 }
2574 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002575 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002576 }
2577
Todd Kennedy539db512014-12-15 09:57:55 -08002578 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002579 ActivityRecord r = topRunningActivityLocked(null);
2580 if (r != null && r.app == app) {
2581 // If the top running activity is from this crashing
2582 // process, then terminate it to avoid getting in a loop.
2583 Slog.w(TAG, " Force finishing activity "
2584 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002585 int taskNdx = mTaskHistory.indexOf(r.task);
2586 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002587 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002588 // Also terminate any activities below it that aren't yet
2589 // stopped, to avoid a situation where one will get
2590 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002591 --activityNdx;
2592 if (activityNdx < 0) {
2593 do {
2594 --taskNdx;
2595 if (taskNdx < 0) {
2596 break;
2597 }
2598 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2599 } while (activityNdx < 0);
2600 }
2601 if (activityNdx >= 0) {
2602 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002603 if (r.state == ActivityState.RESUMED
2604 || r.state == ActivityState.PAUSING
2605 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002606 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002607 Slog.w(TAG, " Force finishing activity "
2608 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002609 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002610 }
2611 }
2612 }
2613 }
2614 }
2615
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002616 final void finishVoiceTask(IVoiceInteractionSession session) {
2617 IBinder sessionBinder = session.asBinder();
2618 boolean didOne = false;
2619 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2620 TaskRecord tr = mTaskHistory.get(taskNdx);
2621 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2622 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2623 ActivityRecord r = tr.mActivities.get(activityNdx);
2624 if (!r.finishing) {
2625 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2626 false);
2627 didOne = true;
2628 }
2629 }
2630 }
2631 }
2632 if (didOne) {
2633 mService.updateOomAdjLocked();
2634 }
2635 }
2636
Craig Mautnerd2328952013-03-05 12:46:26 -08002637 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002638 ArrayList<ActivityRecord> activities = r.task.mActivities;
2639 for (int index = activities.indexOf(r); index >= 0; --index) {
2640 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002641 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002642 break;
2643 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002644 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002645 }
2646 return true;
2647 }
2648
Dianne Hackborn5c607432012-02-28 14:44:19 -08002649 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2650 // send the result
2651 ActivityRecord resultTo = r.resultTo;
2652 if (resultTo != null) {
2653 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2654 + " who=" + r.resultWho + " req=" + r.requestCode
2655 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002656 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002657 if (resultData != null) {
Nicolas Prevotd1c99b12014-07-04 16:56:17 +01002658 resultData.setContentUserHint(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002659 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002660 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002661 if (r.info.applicationInfo.uid > 0) {
2662 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2663 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002664 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002665 }
2666 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2667 resultData);
2668 r.resultTo = null;
2669 }
2670 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2671
2672 // Make sure this HistoryRecord is not holding on to other resources,
2673 // because clients have remote IPC references to this object so we
2674 // can't assume that will go away and want to avoid circular IPC refs.
2675 r.results = null;
2676 r.pendingResults = null;
2677 r.newIntents = null;
2678 r.icicle = null;
2679 }
2680
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002681 /**
2682 * @return Returns true if this activity has been removed from the history
2683 * list, or false if it is still in the list and will be removed later.
2684 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002685 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2686 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002687 if (r.finishing) {
2688 Slog.w(TAG, "Duplicate finish request for " + r);
2689 return false;
2690 }
2691
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002692 r.makeFinishing();
Craig Mautneraea74a52014-03-08 14:23:10 -08002693 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002694 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002695 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002696 task.taskId, r.shortComponentName, reason);
2697 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002698 final int index = activities.indexOf(r);
2699 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002700 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002701 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002702 // If the caller asked that this activity (and all above it)
2703 // be cleared when the task is reset, don't lose that information,
2704 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002705 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002706 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002707 }
2708 }
2709
2710 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002711
2712 adjustFocusedActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002713
Dianne Hackborn5c607432012-02-28 14:44:19 -08002714 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002715
Craig Mautnerde4ef022013-04-07 19:01:33 -07002716 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002717 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002718 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002719 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002720 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002721 ? AppTransition.TRANSIT_TASK_CLOSE
2722 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002723
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002724 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002725 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002726
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002727 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002728 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2729 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002730 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002731 }
2732
Craig Mautneraea74a52014-03-08 14:23:10 -08002733 if (endTask) {
2734 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
2735 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002736 } else if (r.state != ActivityState.PAUSING) {
2737 // If the activity is PAUSING, we will complete the finish once
2738 // it is done pausing; else we can just directly finish it here.
2739 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002740 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002741 } else {
2742 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2743 }
2744
2745 return false;
2746 }
2747
Craig Mautnerf3333272013-04-22 10:55:53 -07002748 static final int FINISH_IMMEDIATELY = 0;
2749 static final int FINISH_AFTER_PAUSE = 1;
2750 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002751
Craig Mautnerf3333272013-04-22 10:55:53 -07002752 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002753 // First things first: if this activity is currently visible,
2754 // and the resumed activity is not yet visible, then hold off on
2755 // finishing until the resumed one becomes visible.
2756 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002757 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2758 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002759 if (mStackSupervisor.mStoppingActivities.size() > 3
2760 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002761 // If we already have a few activities waiting to stop,
2762 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002763 // them out. Or if r is the last of activity of the last task the stack
2764 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002765 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002766 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002767 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002768 }
2769 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002770 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2771 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002772 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002773 if (oomAdj) {
2774 mService.updateOomAdjLocked();
2775 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002776 return r;
2777 }
2778
2779 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002780 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002781 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002782 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002783 if (mResumedActivity == r) {
2784 mResumedActivity = null;
2785 }
2786 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002787 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002788 r.state = ActivityState.FINISHING;
2789
2790 if (mode == FINISH_IMMEDIATELY
2791 || prevState == ActivityState.STOPPED
2792 || prevState == ActivityState.INITIALIZING) {
2793 // If this activity is already stopped, we can just finish
2794 // it right now.
Craig Mautnerd163e752014-06-13 17:18:47 -07002795 r.makeFinishing();
Craig Mautneree2e45a2014-06-27 12:10:03 -07002796 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002797 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002798 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002799 }
Craig Mautner8c14c152015-01-15 17:32:07 -08002800 if (DEBUG_CONTAINERS) Slog.d(TAG,
Craig Mautnerd163e752014-06-13 17:18:47 -07002801 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2802 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002803 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002804 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002805
2806 // Need to go through the full pause cycle to get this
2807 // activity into the stopped state and then finish it.
2808 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002809 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002810 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002811 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002812 return r;
2813 }
2814
Craig Mautneree36c772014-07-16 14:56:05 -07002815 void finishAllActivitiesLocked(boolean immediately) {
2816 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002817 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2818 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2819 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2820 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002821 noActivitiesInStack = false;
2822 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002823 continue;
2824 }
Craig Mautneree36c772014-07-16 14:56:05 -07002825 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002826 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2827 }
2828 }
Craig Mautneree36c772014-07-16 14:56:05 -07002829 if (noActivitiesInStack) {
2830 mActivityContainer.onTaskListEmptyLocked();
2831 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002832 }
2833
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002834 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
2835 // Basic case: for simple app-centric recents, we need to recreate
2836 // the task if the affinity has changed.
2837 if (srec == null || srec.task.affinity == null ||
2838 !srec.task.affinity.equals(destAffinity)) {
2839 return true;
2840 }
2841 // Document-centric case: an app may be split in to multiple documents;
2842 // they need to re-create their task if this current activity is the root
2843 // of a document, unless simply finishing it will return them to the the
2844 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07002845 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
2846 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002847 // Okay, this activity is at the root of its task. What to do, what to do...
2848 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
2849 // Finishing won't return to an application, so we need to recreate.
2850 return true;
2851 }
2852 // We now need to get the task below it to determine what to do.
2853 int taskIdx = mTaskHistory.indexOf(srec.task);
2854 if (taskIdx <= 0) {
2855 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
2856 return false;
2857 }
2858 if (taskIdx == 0) {
2859 // At the bottom of the stack, nothing to go back to.
2860 return true;
2861 }
2862 TaskRecord prevTask = mTaskHistory.get(taskIdx);
2863 if (!srec.task.affinity.equals(prevTask.affinity)) {
2864 // These are different apps, so need to recreate.
2865 return true;
2866 }
2867 }
2868 return false;
2869 }
2870
Craig Mautnerd2328952013-03-05 12:46:26 -08002871 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002872 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002873 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002874 final TaskRecord task = srec.task;
2875 final ArrayList<ActivityRecord> activities = task.mActivities;
2876 final int start = activities.indexOf(srec);
2877 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002878 return false;
2879 }
2880 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002881 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002882 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002883 final ComponentName dest = destIntent.getComponent();
2884 if (start > 0 && dest != null) {
2885 for (int i = finishTo; i >= 0; i--) {
2886 ActivityRecord r = activities.get(i);
2887 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002888 r.info.name.equals(dest.getClassName())) {
2889 finishTo = i;
2890 parent = r;
2891 foundParentInTask = true;
2892 break;
2893 }
2894 }
2895 }
2896
2897 IActivityController controller = mService.mController;
2898 if (controller != null) {
2899 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2900 if (next != null) {
2901 // ask watcher if this is allowed
2902 boolean resumeOK = true;
2903 try {
2904 resumeOK = controller.activityResuming(next.packageName);
2905 } catch (RemoteException e) {
2906 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002907 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002908 }
2909
2910 if (!resumeOK) {
2911 return false;
2912 }
2913 }
2914 }
2915 final long origId = Binder.clearCallingIdentity();
2916 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002917 ActivityRecord r = activities.get(i);
2918 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002919 // Only return the supplied result for the first activity finished
2920 resultCode = Activity.RESULT_CANCELED;
2921 resultData = null;
2922 }
2923
2924 if (parent != null && foundParentInTask) {
2925 final int parentLaunchMode = parent.info.launchMode;
2926 final int destIntentFlags = destIntent.getFlags();
2927 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2928 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2929 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2930 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08002931 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
2932 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002933 } else {
2934 try {
2935 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2936 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002937 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002938 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002939 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborn95465202014-09-15 16:21:55 -07002940 -1, parent.launchedFromUid, 0, null, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002941 foundParentInTask = res == ActivityManager.START_SUCCESS;
2942 } catch (RemoteException e) {
2943 foundParentInTask = false;
2944 }
2945 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08002946 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002947 }
2948 }
2949 Binder.restoreCallingIdentity(origId);
2950 return foundParentInTask;
2951 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002952 /**
2953 * Perform the common clean-up of an activity record. This is called both
2954 * as part of destroyActivityLocked() (when destroying the client-side
2955 * representation) and cleaning things up as a result of its hosting
2956 * processing going away, in which case there is no remaining client-side
2957 * state to destroy so only the cleanup here is needed.
2958 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002959 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2960 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002961 if (mResumedActivity == r) {
2962 mResumedActivity = null;
2963 }
Craig Mautner1872ce32014-03-28 23:05:42 +00002964 if (mPausingActivity == r) {
2965 mPausingActivity = null;
2966 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07002967 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002968
2969 r.configDestroy = false;
2970 r.frozenBeforeDestroy = false;
2971
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002972 if (setState) {
2973 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
2974 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002975 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002976 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002977 }
2978
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002979 // Make sure this record is no longer in the pending finishes list.
2980 // This could happen, for example, if we are trimming activities
2981 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07002982 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002983 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07002984
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002985 // Remove any pending results.
2986 if (r.finishing && r.pendingResults != null) {
2987 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
2988 PendingIntentRecord rec = apr.get();
2989 if (rec != null) {
2990 mService.cancelIntentSenderLocked(rec, false);
2991 }
2992 }
2993 r.pendingResults = null;
2994 }
2995
2996 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07002997 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002998 }
2999
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003000 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003001 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003002 if (getVisibleBehindActivity() == r) {
3003 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003004 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003005 }
3006
3007 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003008 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003009 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003010 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003011 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003012 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003013 }
3014
Craig Mautner04a0ea62014-01-13 12:51:26 -08003015 private void removeActivityFromHistoryLocked(ActivityRecord r) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003016 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003017 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
3018 r.makeFinishing();
3019 if (DEBUG_ADD_REMOVE) {
3020 RuntimeException here = new RuntimeException("here");
3021 here.fillInStackTrace();
3022 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003023 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003024 r.takeFromHistory();
3025 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003026 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003027 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003028 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003029 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003030 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003031 if (VALIDATE_TOKENS) {
3032 validateAppTokensLocked();
3033 }
Craig Mautner312ba862014-02-10 17:55:01 -08003034 final TaskRecord task = r.task;
3035 if (task != null && task.removeActivity(r)) {
3036 if (DEBUG_STACK) Slog.i(TAG,
3037 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003038 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3039 task.isOverHomeStack()) {
3040 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo());
Craig Mautner312ba862014-02-10 17:55:01 -08003041 }
Craig Mautner41db4a72014-05-07 17:20:56 -07003042 removeTask(task);
Craig Mautner312ba862014-02-10 17:55:01 -08003043 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003044 cleanUpActivityServicesLocked(r);
3045 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003046 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003047
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003048 /**
3049 * Perform clean-up of service connections in an activity record.
3050 */
3051 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3052 // Throw away any services that have been bound by this activity.
3053 if (r.connections != null) {
3054 Iterator<ConnectionRecord> it = r.connections.iterator();
3055 while (it.hasNext()) {
3056 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003057 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003058 }
3059 r.connections = null;
3060 }
3061 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003062
Craig Mautneree2e45a2014-06-27 12:10:03 -07003063 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003064 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003065 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003066 mHandler.sendMessage(msg);
3067 }
3068
Craig Mautneree2e45a2014-06-27 12:10:03 -07003069 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003070 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003071 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003072 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3073 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3074 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3075 final ActivityRecord r = activities.get(activityNdx);
3076 if (r.finishing) {
3077 continue;
3078 }
3079 if (r.fullscreen) {
3080 lastIsOpaque = true;
3081 }
3082 if (owner != null && r.app != owner) {
3083 continue;
3084 }
3085 if (!lastIsOpaque) {
3086 continue;
3087 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003088 if (r.isDestroyable()) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003089 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3090 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003091 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003092 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003093 activityRemoved = true;
3094 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003095 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003096 }
3097 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003098 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003099 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003100 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003101 }
3102
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003103 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3104 if (r.isDestroyable()) {
3105 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3106 + " resumed=" + mResumedActivity
3107 + " pausing=" + mPausingActivity + " for reason " + reason);
3108 return destroyActivityLocked(r, true, reason);
3109 }
3110 return false;
3111 }
3112
3113 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3114 String reason) {
3115 // Iterate over tasks starting at the back (oldest) first.
3116 if (DEBUG_RELEASE) Slog.d(TAG, "Trying to release some activities in " + app);
3117 int maxTasks = tasks.size() / 4;
3118 if (maxTasks < 1) {
3119 maxTasks = 1;
3120 }
3121 int numReleased = 0;
3122 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3123 final TaskRecord task = mTaskHistory.get(taskNdx);
3124 if (!tasks.contains(task)) {
3125 continue;
3126 }
3127 if (DEBUG_RELEASE) Slog.d(TAG, "Looking for activities to release in " + task);
3128 int curNum = 0;
3129 final ArrayList<ActivityRecord> activities = task.mActivities;
3130 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3131 final ActivityRecord activity = activities.get(actNdx);
3132 if (activity.app == app && activity.isDestroyable()) {
3133 if (DEBUG_RELEASE) Slog.v(TAG, "Destroying " + activity
3134 + " in state " + activity.state + " resumed=" + mResumedActivity
3135 + " pausing=" + mPausingActivity + " for reason " + reason);
3136 destroyActivityLocked(activity, true, reason);
3137 if (activities.get(actNdx) != activity) {
3138 // Was removed from list, back up so we don't miss the next one.
3139 actNdx--;
3140 }
3141 curNum++;
3142 }
3143 }
3144 if (curNum > 0) {
3145 numReleased += curNum;
3146 maxTasks--;
3147 if (mTaskHistory.get(taskNdx) != task) {
3148 // The entire task got removed, back up so we don't miss the next one.
3149 taskNdx--;
3150 }
3151 }
3152 }
3153 if (DEBUG_RELEASE) Slog.d(TAG, "Done releasing: did " + numReleased + " activities");
3154 return numReleased;
3155 }
3156
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003157 /**
3158 * Destroy the current CLIENT SIDE instance of an activity. This may be
3159 * called both when actually finishing an activity, or when performing
3160 * a configuration switch where we destroy the current client-side object
3161 * but then create a new client-side object for this same HistoryRecord.
3162 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003163 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003164 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003165 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003166 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
3167 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003168 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003169 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003170
3171 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003172
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003173 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003174
3175 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003176
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003177 if (hadApp) {
3178 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003179 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003180 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3181 mService.mHeavyWeightProcess = null;
3182 mService.mHandler.sendEmptyMessage(
3183 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3184 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003185 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003186 // Update any services we are bound to that might care about whether
3187 // their client may have activities.
3188 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003189 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003190 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003191 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003192 }
3193 }
3194
3195 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003196
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003197 try {
3198 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003199 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003200 r.configChangeFlags);
3201 } catch (Exception e) {
3202 // We can just ignore exceptions here... if the process
3203 // has crashed, our death notification will clean things
3204 // up.
3205 //Slog.w(TAG, "Exception thrown during finish", e);
3206 if (r.finishing) {
3207 removeActivityFromHistoryLocked(r);
3208 removedFromHistory = true;
3209 skipDestroy = true;
3210 }
3211 }
3212
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003213 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003214
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003215 // If the activity is finishing, we need to wait on removing it
3216 // from the list to give it a chance to do its cleanup. During
3217 // that time it may make calls back with its token so we need to
3218 // be able to find it on the list and so we don't want to remove
3219 // it from the list yet. Otherwise, we can just immediately put
3220 // it in the destroyed state since we are not removing it from the
3221 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003222 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003223 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
3224 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003225 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003226 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003227 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3228 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003229 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003230 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003231 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003232 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003233 }
3234 } else {
3235 // remove this record from the history.
3236 if (r.finishing) {
3237 removeActivityFromHistoryLocked(r);
3238 removedFromHistory = true;
3239 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003240 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003241 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003242 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003243 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003244 }
3245 }
3246
3247 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003248
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003249 if (!mLRUActivities.remove(r) && hadApp) {
3250 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3251 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003252
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003253 return removedFromHistory;
3254 }
3255
Craig Mautnerd2328952013-03-05 12:46:26 -08003256 final void activityDestroyedLocked(IBinder token) {
3257 final long origId = Binder.clearCallingIdentity();
3258 try {
3259 ActivityRecord r = ActivityRecord.forToken(token);
3260 if (r != null) {
3261 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003262 }
Craig Mautnerd163e752014-06-13 17:18:47 -07003263 if (DEBUG_CONTAINERS) Slog.d(TAG, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003264
3265 if (isInStackLocked(token) != null) {
3266 if (r.state == ActivityState.DESTROYING) {
3267 cleanUpActivityLocked(r, true, false);
3268 removeActivityFromHistoryLocked(r);
3269 }
3270 }
Craig Mautner05d29032013-05-03 13:40:13 -07003271 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003272 } finally {
3273 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003274 }
3275 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003276
Jose Lima4b6c6692014-08-12 17:41:12 -07003277 void releaseBackgroundResources() {
3278 if (hasVisibleBehindActivity() &&
3279 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
3280 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautner64ccb702014-10-01 09:38:40 -07003281 if (r == topRunningActivityLocked(null)) {
3282 // Don't release the top activity if it has requested to run behind the next
3283 // activity.
3284 return;
3285 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003286 if (DEBUG_STATES) Slog.d(TAG, "releaseBackgroundResources activtyDisplay=" +
3287 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003288 " thread=" + r.app.thread);
3289 if (r != null && r.app != null && r.app.thread != null) {
3290 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003291 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003292 } catch (RemoteException e) {
3293 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003294 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003295 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003296 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003297 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003298 }
3299 }
3300 }
3301
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003302 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003303 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3304 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003305 if (r != null) {
3306 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003307 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003308 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003309 }
3310 mStackSupervisor.resumeTopActivitiesLocked();
3311 }
3312
Jose Lima4b6c6692014-08-12 17:41:12 -07003313 boolean hasVisibleBehindActivity() {
3314 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003315 }
3316
Jose Lima4b6c6692014-08-12 17:41:12 -07003317 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003318 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003319 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003320 }
3321 }
3322
Jose Lima4b6c6692014-08-12 17:41:12 -07003323 ActivityRecord getVisibleBehindActivity() {
3324 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003325 }
3326
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003327 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3328 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003329 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003330 if (DEBUG_CLEANUP) Slog.v(
3331 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003332 + " with " + i + " entries");
3333 while (i > 0) {
3334 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003335 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003336 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003337 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003338 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003339 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003340 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003341 }
3342 }
3343 }
3344
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003345 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3346 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003347 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3348 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003349 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3350 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003351 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003352 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003353 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3354 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003355
3356 boolean hasVisibleActivities = false;
3357
3358 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003359 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003360 if (DEBUG_CLEANUP) Slog.v(
3361 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003362 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3363 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3364 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3365 final ActivityRecord r = activities.get(activityNdx);
3366 --i;
3367 if (DEBUG_CLEANUP) Slog.v(
3368 TAG, "Record #" + i + " " + r + ": app=" + r.app);
3369 if (r.app == app) {
3370 boolean remove;
3371 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3372 // Don't currently have state for the activity, or
3373 // it is finishing -- always remove it.
3374 remove = true;
3375 } else if (r.launchCount > 2 &&
3376 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3377 // We have launched this activity too many times since it was
3378 // able to run, so give up and remove it.
3379 remove = true;
3380 } else {
3381 // The process may be gone, but the activity lives on!
3382 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003383 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003384 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003385 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003386 RuntimeException here = new RuntimeException("here");
3387 here.fillInStackTrace();
3388 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
3389 + ": haveState=" + r.haveState
3390 + " stateNotNeeded=" + r.stateNotNeeded
3391 + " finishing=" + r.finishing
3392 + " state=" + r.state, here);
3393 }
3394 if (!r.finishing) {
3395 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3396 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3397 r.userId, System.identityHashCode(r),
3398 r.task.taskId, r.shortComponentName,
3399 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003400 if (r.state == ActivityState.RESUMED) {
3401 mService.updateUsageStats(r, false);
3402 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003403 }
3404 removeActivityFromHistoryLocked(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003405
Craig Mautner0247fc82013-02-28 14:32:06 -08003406 } else {
3407 // We have the current state for this activity, so
3408 // it can be restarted later when needed.
3409 if (localLOGV) Slog.v(
3410 TAG, "Keeping entry, setting app to null");
3411 if (r.visible) {
3412 hasVisibleActivities = true;
3413 }
3414 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3415 + r);
3416 r.app = null;
3417 r.nowVisible = false;
3418 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003419 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003420 "App died, clearing saved state of " + r);
3421 r.icicle = null;
3422 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003423 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003424
Craig Mautnerd2328952013-03-05 12:46:26 -08003425 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003426 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003427 }
3428 }
3429
3430 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003431 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003432
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003433 final void updateTransitLocked(int transit, Bundle options) {
3434 if (options != null) {
3435 ActivityRecord r = topRunningActivityLocked(null);
3436 if (r != null && r.state != ActivityState.RESUMED) {
3437 r.updateOptionsLocked(options);
3438 } else {
3439 ActivityOptions.abort(options);
3440 }
3441 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003442 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003443 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003444
Craig Mautner21d24a22014-04-23 11:45:37 -07003445 void updateTaskMovement(TaskRecord task, boolean toFront) {
3446 if (task.isPersistable) {
3447 task.mLastTimeMoved = System.currentTimeMillis();
3448 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3449 // recently will be most negative, tasks sent to the bottom before that will be less
3450 // negative. Similarly for recent tasks moved to the top which will be most positive.
3451 if (!toFront) {
3452 task.mLastTimeMoved *= -1;
3453 }
3454 }
3455 }
3456
Craig Mautner84984fa2014-06-19 11:19:20 -07003457 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003458 final int top = mTaskHistory.size() - 1;
3459 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3460 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003461 if (task.taskType == homeStackTaskType) {
3462 if (DEBUG_TASKS || DEBUG_STACK)
3463 Slog.d(TAG, "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003464 mTaskHistory.remove(taskNdx);
3465 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003466 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003467 mWindowManager.moveTaskToTop(task.taskId);
3468 return;
3469 }
3470 }
3471 }
3472
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003473 final void moveTaskToFrontLocked(TaskRecord tr, ActivityRecord reason, Bundle options) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003474 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003475
Craig Mautner11bf9a52013-02-19 14:08:51 -08003476 final int numTasks = mTaskHistory.size();
3477 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003478 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003479 // nothing to do!
3480 if (reason != null &&
3481 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3482 ActivityOptions.abort(options);
3483 } else {
3484 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3485 }
3486 return;
3487 }
3488
3489 // Shift all activities with this task up to the top
3490 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003491 insertTaskAtTop(tr);
Craig Mautner6b904ef2014-12-17 15:45:03 -08003492 moveToFront();
Craig Mautner11bf9a52013-02-19 14:08:51 -08003493
3494 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003495 if (reason != null &&
3496 (reason.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003497 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003498 ActivityRecord r = topRunningActivityLocked(null);
3499 if (r != null) {
3500 mNoAnimActivities.add(r);
3501 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003502 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003503 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003504 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003505 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003506
Craig Mautner05d29032013-05-03 13:40:13 -07003507 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003508 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003509
3510 if (VALIDATE_TOKENS) {
3511 validateAppTokensLocked();
3512 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003513 }
3514
3515 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003516 * Worker method for rearranging history stack. Implements the function of moving all
3517 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003518 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003519 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003520 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3521 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003522 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003523 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003524 * @return Returns true if the move completed, false if not.
3525 */
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003526 final boolean moveTaskToBackLocked(int taskId, ActivityRecord reason) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003527 final TaskRecord tr = taskForIdLocked(taskId);
3528 if (tr == null) {
3529 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3530 return false;
3531 }
3532
3533 Slog.i(TAG, "moveTaskToBack: " + tr);
3534
3535 mStackSupervisor.endLockTaskModeIfTaskEnding(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003536
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003537 // If we have a watcher, preflight the move before committing to it. First check
3538 // for *other* available tasks, but if none are available, then try again allowing the
3539 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003540 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003541 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003542 if (next == null) {
3543 next = topRunningActivityLocked(null, 0);
3544 }
3545 if (next != null) {
3546 // ask watcher if this is allowed
3547 boolean moveOK = true;
3548 try {
3549 moveOK = mService.mController.activityResuming(next.packageName);
3550 } catch (RemoteException e) {
3551 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003552 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003553 }
3554 if (!moveOK) {
3555 return false;
3556 }
3557 }
3558 }
3559
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003560 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003561 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003562
Craig Mautner11bf9a52013-02-19 14:08:51 -08003563 mTaskHistory.remove(tr);
3564 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003565 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003566
Craig Mautnerc8143c62013-09-03 12:15:57 -07003567 // There is an assumption that moving a task to the back moves it behind the home activity.
3568 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003569 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003570 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3571 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003572 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003573 break;
3574 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003575 if (taskNdx == 1) {
3576 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003577 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003578 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003579 }
3580
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003581 if (reason != null &&
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003582 (reason.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
3583 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003584 ActivityRecord r = topRunningActivityLocked(null);
3585 if (r != null) {
3586 mNoAnimActivities.add(r);
3587 }
3588 } else {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003589 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003590 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003591 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003592
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003593 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003594 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003595 }
3596
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003597 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Craig Mautner84984fa2014-06-19 11:19:20 -07003598 if (task == tr && tr.isOverHomeStack() || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003599 if (!mService.mBooting && !mService.mBooted) {
3600 // Not ready yet!
3601 return false;
3602 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003603 final int taskToReturnTo = tr.getTaskToReturnTo();
3604 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
3605 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003606 }
3607
Craig Mautner05d29032013-05-03 13:40:13 -07003608 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003609 return true;
3610 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003611
Craig Mautner8849a5e2013-04-02 16:41:03 -07003612 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003613 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003614 final Uri data = r.intent.getData();
3615 final String strData = data != null ? data.toSafeString() : null;
3616
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003617 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003618 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003619 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003620 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003621 }
3622
3623 /**
3624 * Make sure the given activity matches the current configuration. Returns
3625 * false if the activity had to be destroyed. Returns true if the
3626 * configuration is the same, or the activity will remain running as-is
3627 * for whatever reason. Ensures the HistoryRecord is updated with the
3628 * correct configuration and all other bookkeeping is handled.
3629 */
3630 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3631 int globalChanges) {
3632 if (mConfigWillChange) {
3633 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3634 "Skipping config check (will change): " + r);
3635 return true;
3636 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003637
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003638 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3639 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003640
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003641 // Short circuit: if the two configurations are the exact same
3642 // object (the common case), then there is nothing to do.
3643 Configuration newConfig = mService.mConfiguration;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003644 if (r.configuration == newConfig && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003645 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3646 "Configuration unchanged in " + r);
3647 return true;
3648 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003649
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003650 // We don't worry about activities that are finishing.
3651 if (r.finishing) {
3652 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3653 "Configuration doesn't matter in finishing " + r);
3654 r.stopFreezingScreenLocked(false);
3655 return true;
3656 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003657
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003658 // Okay we now are going to make this activity have the new config.
3659 // But then we need to figure out how it needs to deal with that.
3660 Configuration oldConfig = r.configuration;
3661 r.configuration = newConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003662
3663 // Determine what has changed. May be nothing, if this is a config
3664 // that has come back from the app after going idle. In that case
3665 // we just want to leave the official config object now in the
3666 // activity and do nothing else.
3667 final int changes = oldConfig.diff(newConfig);
3668 if (changes == 0 && !r.forceNewConfig) {
3669 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3670 "Configuration no differences in " + r);
3671 return true;
3672 }
3673
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003674 // If the activity isn't currently running, just leave the new
3675 // configuration and it will pick that up next time it starts.
3676 if (r.app == null || r.app.thread == null) {
3677 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3678 "Configuration doesn't matter not running " + r);
3679 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003680 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003681 return true;
3682 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003683
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003684 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003685 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3686 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3687 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003688 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003689 + ", newConfig=" + newConfig);
3690 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003691 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003692 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3693 r.configChangeFlags |= changes;
3694 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003695 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003696 if (r.app == null || r.app.thread == null) {
3697 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003698 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003699 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003700 } else if (r.state == ActivityState.PAUSING) {
3701 // A little annoying: we are waiting for this activity to
3702 // finish pausing. Let's not do anything now, but just
3703 // flag that it needs to be restarted when done pausing.
3704 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003705 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003706 r.configDestroy = true;
3707 return true;
3708 } else if (r.state == ActivityState.RESUMED) {
3709 // Try to optimize this case: the configuration is changing
3710 // and we need to restart the top, resumed activity.
3711 // Instead of doing the normal handshaking, just say
3712 // "restart!".
3713 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003714 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003715 relaunchActivityLocked(r, r.configChangeFlags, true);
3716 r.configChangeFlags = 0;
3717 } else {
3718 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003719 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003720 relaunchActivityLocked(r, r.configChangeFlags, false);
3721 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003722 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003723
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003724 // All done... tell the caller we weren't able to keep this
3725 // activity around.
3726 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003727 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003728
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003729 // Default case: the activity can handle this new configuration, so
3730 // hand it over. Note that we don't need to give it the new
3731 // configuration, since we always send configuration changes to all
3732 // process when they happen so it can just use whatever configuration
3733 // it last got.
3734 if (r.app != null && r.app.thread != null) {
3735 try {
3736 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003737 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003738 } catch (RemoteException e) {
3739 // If process died, whatever.
3740 }
3741 }
3742 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003743
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003744 return true;
3745 }
3746
Craig Mautnerc8143c62013-09-03 12:15:57 -07003747 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003748 int changes, boolean andResume) {
3749 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003750 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003751 if (andResume) {
3752 results = r.results;
3753 newIntents = r.newIntents;
3754 }
3755 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3756 + " with results=" + results + " newIntents=" + newIntents
3757 + " andResume=" + andResume);
3758 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003759 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003760 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003761
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003762 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003763
Craig Mautner34b73df2014-01-12 21:11:08 -08003764 mStackSupervisor.removeChildActivityContainers(r);
3765
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003766 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003767 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3768 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3769 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003770 r.forceNewConfig = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08003771 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents,
Dianne Hackborn813075a62011-11-14 17:45:19 -08003772 changes, !andResume, new Configuration(mService.mConfiguration));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003773 // Note: don't need to call pauseIfSleepingLocked() here, because
3774 // the caller will only pass in 'andResume' if this activity is
3775 // currently resumed, which implies we aren't sleeping.
3776 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003777 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003778 }
3779
3780 if (andResume) {
3781 r.results = null;
3782 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003783 r.state = ActivityState.RESUMED;
3784 } else {
3785 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3786 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003787 }
3788
3789 return true;
3790 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003791
3792 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003793 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3794 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3795 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3796 final ActivityRecord r = activities.get(activityNdx);
3797 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003798 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003799 }
3800 if (r.fullscreen && !r.finishing) {
3801 return false;
3802 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003803 }
3804 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003805 final ActivityRecord r = ActivityRecord.forToken(token);
3806 if (r == null) {
3807 return false;
3808 }
3809 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3810 + " would have returned true for r=" + r);
3811 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003812 }
3813
3814 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003815 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3816 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3817 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3818 final ActivityRecord r = activities.get(activityNdx);
3819 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003820 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003821 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003822 }
3823 }
3824 }
3825
3826 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3827 boolean didSomething = false;
3828 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003829 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003830 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3831 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3832 int numActivities = activities.size();
3833 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3834 ActivityRecord r = activities.get(activityNdx);
3835 final boolean samePackage = r.packageName.equals(name)
3836 || (name == null && r.userId == userId);
3837 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3838 && (samePackage || r.task == lastTask)
3839 && (r.app == null || evenPersistent || !r.app.persistent)) {
3840 if (!doit) {
3841 if (r.finishing) {
3842 // If this activity is just finishing, then it is not
3843 // interesting as far as something to stop.
3844 continue;
3845 }
3846 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003847 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003848 if (r.isHomeActivity()) {
3849 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
3850 Slog.i(TAG, "Skip force-stop again " + r);
3851 continue;
3852 } else {
3853 homeActivity = r.realActivity;
3854 }
3855 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003856 didSomething = true;
3857 Slog.i(TAG, " Force finishing activity " + r);
3858 if (samePackage) {
3859 if (r.app != null) {
3860 r.app.removed = true;
3861 }
3862 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003863 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003864 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003865 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3866 true)) {
3867 // r has been deleted from mActivities, accommodate.
3868 --numActivities;
3869 --activityNdx;
3870 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003871 }
3872 }
3873 }
3874 return didSomething;
3875 }
3876
Dianne Hackborn09233282014-04-30 11:33:59 -07003877 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003878 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003879 final TaskRecord task = mTaskHistory.get(taskNdx);
3880 ActivityRecord r = null;
3881 ActivityRecord top = null;
3882 int numActivities = 0;
3883 int numRunning = 0;
3884 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003885 if (activities.isEmpty()) {
3886 continue;
3887 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07003888 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07003889 continue;
3890 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003891 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3892 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003893
Craig Mautneraab647e2013-02-28 16:31:36 -08003894 // Initialize state for next task if needed.
3895 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3896 top = r;
3897 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003898 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003899
3900 // Add 'r' into the current task.
3901 numActivities++;
3902 if (r.app != null && r.app.thread != null) {
3903 numRunning++;
3904 }
3905
3906 if (localLOGV) Slog.v(
3907 TAG, r.intent.getComponent().flattenToShortString()
3908 + ": task=" + r.task);
3909 }
3910
3911 RunningTaskInfo ci = new RunningTaskInfo();
3912 ci.id = task.taskId;
3913 ci.baseActivity = r.intent.getComponent();
3914 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003915 ci.lastActiveTime = task.lastActiveTime;
3916
Craig Mautnerc0ffce52014-07-01 12:38:52 -07003917 if (top.task != null) {
3918 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08003919 }
3920 ci.numActivities = numActivities;
3921 ci.numRunning = numRunning;
3922 //System.out.println(
3923 // "#" + maxNum + ": " + " descr=" + ci.description);
Craig Mautneraab647e2013-02-28 16:31:36 -08003924 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003925 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003926 }
3927
3928 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003929 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003930 if (DEBUG_SWITCH) Slog.d(
3931 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003932 if (top >= 0) {
3933 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3934 int activityTop = activities.size() - 1;
3935 if (activityTop > 0) {
3936 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3937 "unhandled-back", true);
3938 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003939 }
3940 }
3941
Craig Mautner6b74cb52013-09-27 17:02:21 -07003942 /**
3943 * Reset local parameters because an app's activity died.
3944 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003945 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003946 */
3947 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003948 if (mPausingActivity != null && mPausingActivity.app == app) {
3949 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3950 "App died while pausing: " + mPausingActivity);
3951 mPausingActivity = null;
3952 }
3953 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3954 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003955 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003956 }
3957
Craig Mautner19091252013-10-05 00:03:53 -07003958 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003959 }
3960
Craig Mautnercae015f2013-02-08 14:31:27 -08003961 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003962 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3963 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3964 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3965 final ActivityRecord r = activities.get(activityNdx);
3966 if (r.app == app) {
3967 Slog.w(TAG, " Force finishing activity "
3968 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07003969 // Force the destroy to skip right to removal.
3970 r.app = null;
3971 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003972 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003973 }
3974 }
3975 }
3976
Dianne Hackborn390517b2013-05-30 15:03:32 -07003977 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003978 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003979 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08003980 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3981 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07003982 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
3983 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003984 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07003985 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003986 if (printed) {
3987 header = null;
3988 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003989 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003990 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08003991 }
3992
3993 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
3994 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
3995
3996 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003997 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3998 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08003999 }
4000 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004001 final int top = mTaskHistory.size() - 1;
4002 if (top >= 0) {
4003 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4004 int listTop = list.size() - 1;
4005 if (listTop >= 0) {
4006 activities.add(list.get(listTop));
4007 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004008 }
4009 } else {
4010 ItemMatcher matcher = new ItemMatcher();
4011 matcher.build(name);
4012
Craig Mautneraab647e2013-02-28 16:31:36 -08004013 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4014 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4015 if (matcher.match(r1, r1.intent.getComponent())) {
4016 activities.add(r1);
4017 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004018 }
4019 }
4020 }
4021
4022 return activities;
4023 }
4024
4025 ActivityRecord restartPackage(String packageName) {
4026 ActivityRecord starting = topRunningActivityLocked(null);
4027
4028 // All activities that came from the package must be
4029 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004030 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4031 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4032 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4033 final ActivityRecord a = activities.get(activityNdx);
4034 if (a.info.packageName.equals(packageName)) {
4035 a.forceNewConfig = true;
4036 if (starting != null && a == starting && a.visible) {
4037 a.startFreezingScreenLocked(starting.app,
4038 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4039 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004040 }
4041 }
4042 }
4043
4044 return starting;
4045 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004046
Craig Mautner41db4a72014-05-07 17:20:56 -07004047 void removeTask(TaskRecord task) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004048 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08004049 mWindowManager.removeTask(task.taskId);
4050 final ActivityRecord r = mResumedActivity;
4051 if (r != null && r.task == task) {
4052 mResumedActivity = null;
4053 }
4054
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004055 final int taskNdx = mTaskHistory.indexOf(task);
4056 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004057 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4058 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4059 if (!nextTask.isOverHomeStack()) {
4060 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4061 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004062 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004063 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004064 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004065
4066 if (task.mActivities.isEmpty()) {
4067 final boolean isVoiceSession = task.voiceSession != null;
4068 if (isVoiceSession) {
4069 try {
4070 task.voiceSession.taskFinished(task.intent, task.taskId);
4071 } catch (RemoteException e) {
4072 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004073 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004074 if (task.autoRemoveFromRecents() || isVoiceSession) {
4075 // Task creator asked to remove this when done, or this task was a voice
4076 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004077 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004078 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004079 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004080 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004081
4082 if (mTaskHistory.isEmpty()) {
4083 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
4084 if (isOnHomeDisplay()) {
4085 mStackSupervisor.moveHomeStack(!isHomeStack());
4086 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004087 if (mStacks != null) {
4088 mStacks.remove(this);
4089 mStacks.add(0, this);
4090 }
Craig Mautnerd163e752014-06-13 17:18:47 -07004091 mActivityContainer.onTaskListEmptyLocked();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004092 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004093 }
4094
Dianne Hackborn91097de2014-04-04 18:02:06 -07004095 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4096 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4097 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004098 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4099 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004100 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004101 return task;
4102 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004103
4104 ArrayList<TaskRecord> getAllTasks() {
4105 return new ArrayList<TaskRecord>(mTaskHistory);
4106 }
4107
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004108 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004109 task.stack = this;
4110 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07004111 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004112 } else {
4113 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004114 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004115 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004116 if (!moving && task.voiceSession != null) {
4117 try {
4118 task.voiceSession.taskStarted(task.intent, task.taskId);
4119 } catch (RemoteException e) {
4120 }
4121 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004122 }
4123
4124 public int getStackId() {
4125 return mStackId;
4126 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004127
4128 @Override
4129 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004130 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4131 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004132 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004133}